[llvm-commits] [llvm] r99326 - in /llvm/trunk/lib/Target/ARM: ARMInstrFormats.td ARMInstrNEON.td

Bob Wilson bob.wilson at apple.com
Wed Mar 24 10:55:25 PDT 2010


On Mar 24, 2010, at 10:49 AM, Johnny Chen wrote:

> I originally meant NVCVTFrm to cover all NEON vcvt instructions, and the upcoming patch uses
> NVCVTFrm for "Convert, with fractional bits immediate".

The "VCVT with immediate" format must be distinct.  The VCVT format you have now is used for the _other_ VCVT instructions (with no immediates).  There is no need for that.  Please revert this patch.

> 
> This patch is more complex and involves more new formats.  So I will keep the NVCVTFrm and
> remove N2V2 so that NVCVTFrm only covers vcvt with fractional bits immediate.
> 
> How's that?

No, we need to resolve the current set of changes before adding more on top.

> 
> On Mar 24, 2010, at 10:27 AM, Bob Wilson wrote:
> 
>> 
>> On Mar 23, 2010, at 5:54 PM, Johnny Chen wrote:
>> 
>>> I will rename NVdVmImmFrm to the more proper N2RegFrm.
>> 
>> OK, thanks.  (It would be helpful to keep this discussion threaded so I can keep track of which patches have been reviewed.  You're replying here to my review of r99326 with a comment that responds to my feedback on r99322.)
>> 
>>> N2V2 is still necessary, though, because of N2VS, N2VD, N2VQ, which are for vcvt instructions.
>> 
>> The N2V2 class is identical to the existing N2V class except that you've added a Format argument.  Just add the Format argument to N2V and then you don't need to make a new class.
>> 
>> I have a further comment about adding a new format for VCVT.  This should not be necessary, since the VCVT instructions that you've changed here have the same basic 2-register encoding format as other instructions like VMVN, VNEG, etc.  If you still think it is needed, please explain.  Otherwise, please revert this patch (r99326).
>> 
>>> 
>>> On Mar 23, 2010, at 2:45 PM, Bob Wilson wrote:
>>> 
>>>> 
>>>> On Mar 23, 2010, at 2:25 PM, Johnny Chen wrote:
>>>> 
>>>>> Author: johnny
>>>>> Date: Tue Mar 23 16:25:38 2010
>>>>> New Revision: 99326
>>>>> 
>>>>> URL: http://llvm.org/viewvc/llvm-project?rev=99326&view=rev
>>>>> Log:
>>>>> Add New NEON Format NVdVmVCVTFrm.
>>>>> Converted some of the NEON vcvt instructions to this format.
>>>>> 
>>>>> Modified:
>>>>> llvm/trunk/lib/Target/ARM/ARMInstrFormats.td
>>>>> llvm/trunk/lib/Target/ARM/ARMInstrNEON.td
>>>>> 
>>>>> Modified: llvm/trunk/lib/Target/ARM/ARMInstrFormats.td
>>>>> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMInstrFormats.td?rev=99326&r1=99325&r2=99326&view=diff
>>>>> ==============================================================================
>>>>> --- llvm/trunk/lib/Target/ARM/ARMInstrFormats.td (original)
>>>>> +++ llvm/trunk/lib/Target/ARM/ARMInstrFormats.td Tue Mar 23 16:25:38 2010
>>>>> @@ -62,6 +62,7 @@
>>>>> def NLdStFrm                : Format<31>;
>>>>> def NVdImmFrm               : Format<32>;
>>>>> def NVdVmImmFrm             : Format<33>;
>>>>> +def NVdVmVCVTFrm            : Format<34>;
>>>> 
>>>> How about "NVCVTFrm"?
>>>> 
>>>> 
>>>>> 
>>>>> // Misc flags.
>>>>> 
>>>>> 
>>>>> Modified: llvm/trunk/lib/Target/ARM/ARMInstrNEON.td
>>>>> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMInstrNEON.td?rev=99326&r1=99325&r2=99326&view=diff
>>>>> ==============================================================================
>>>>> --- llvm/trunk/lib/Target/ARM/ARMInstrNEON.td (original)
>>>>> +++ llvm/trunk/lib/Target/ARM/ARMInstrNEON.td Tue Mar 23 16:25:38 2010
>>>>> @@ -853,25 +853,40 @@
>>>>> // Instruction Classes
>>>>> //===----------------------------------------------------------------------===//
>>>>> 
>>>>> +// Same as N2V except that it doesn't pass a default NVdVmImmFrm to NDataI.
>>>>> +class N2V2<bits<2> op24_23, bits<2> op21_20, bits<2> op19_18, bits<2> op17_16,
>>>>> +          bits<5> op11_7, bit op6, bit op4,
>>>>> +          dag oops, dag iops, Format f, InstrItinClass itin,
>>>>> +          string opc, string dt, string asm, string cstr, list<dag> pattern>
>>>>> +  : NDataI<oops, iops, f, itin, opc, dt, asm, cstr, pattern> {
>>>>> +  let Inst{24-23} = op24_23;
>>>>> +  let Inst{21-20} = op21_20;
>>>>> +  let Inst{19-18} = op19_18;
>>>>> +  let Inst{17-16} = op17_16;
>>>>> +  let Inst{11-7} = op11_7;
>>>>> +  let Inst{6} = op6;
>>>>> +  let Inst{4} = op4;
>>>>> +}
>>>>> +
>>>> 
>>>> This should not be necessary.  You should not have added the NVdVmImmFrm for N2V to begin with (per my earlier comments).  Please remove this class.
>>>> 
>>>> 
>>>>> // Basic 2-register operations: single-, double- and quad-register.
>>>>> class N2VS<bits<2> op24_23, bits<2> op21_20, bits<2> op19_18,
>>>>>        bits<2> op17_16, bits<5> op11_7, bit op4, string OpcodeStr,
>>>>>        string Dt, ValueType ResTy, ValueType OpTy, SDNode OpNode>
>>>>> -  : N2V<op24_23, op21_20, op19_18, op17_16, op11_7, 0, op4,
>>>>> -        (outs DPR_VFP2:$dst), (ins DPR_VFP2:$src),
>>>>> -        IIC_VUNAD, OpcodeStr, Dt, "$dst, $src", "", []>;
>>>>> +  : N2V2<op24_23, op21_20, op19_18, op17_16, op11_7, 0, op4,
>>>>> +         (outs DPR_VFP2:$dst), (ins DPR_VFP2:$src), NVdVmVCVTFrm,
>>>>> +         IIC_VUNAD, OpcodeStr, Dt, "$dst, $src", "", []>;
>>>>> class N2VD<bits<2> op24_23, bits<2> op21_20, bits<2> op19_18,
>>>>>        bits<2> op17_16, bits<5> op11_7, bit op4, string OpcodeStr,
>>>>>        string Dt, ValueType ResTy, ValueType OpTy, SDNode OpNode>
>>>>> -  : N2V<op24_23, op21_20, op19_18, op17_16, op11_7, 0, op4, (outs DPR:$dst),
>>>>> -        (ins DPR:$src), IIC_VUNAD, OpcodeStr, Dt, "$dst, $src", "",
>>>>> -        [(set DPR:$dst, (ResTy (OpNode (OpTy DPR:$src))))]>;
>>>>> +  : N2V2<op24_23, op21_20, op19_18, op17_16, op11_7, 0, op4, (outs DPR:$dst),
>>>>> +         (ins DPR:$src), NVdVmVCVTFrm, IIC_VUNAD, OpcodeStr, Dt,"$dst, $src","",
>>>>> +         [(set DPR:$dst, (ResTy (OpNode (OpTy DPR:$src))))]>;
>>>>> class N2VQ<bits<2> op24_23, bits<2> op21_20, bits<2> op19_18,
>>>>>        bits<2> op17_16, bits<5> op11_7, bit op4, string OpcodeStr,
>>>>>        string Dt, ValueType ResTy, ValueType OpTy, SDNode OpNode>
>>>>> -  : N2V<op24_23, op21_20, op19_18, op17_16, op11_7, 1, op4, (outs QPR:$dst),
>>>>> -        (ins QPR:$src), IIC_VUNAQ, OpcodeStr, Dt, "$dst, $src", "",
>>>>> -        [(set QPR:$dst, (ResTy (OpNode (OpTy QPR:$src))))]>;
>>>>> +  : N2V2<op24_23, op21_20, op19_18, op17_16, op11_7, 1, op4, (outs QPR:$dst),
>>>>> +         (ins QPR:$src), NVdVmVCVTFrm, IIC_VUNAQ, OpcodeStr, Dt,"$dst, $src","",
>>>>> +         [(set QPR:$dst, (ResTy (OpNode (OpTy QPR:$src))))]>;
>>>>> 
>>>>> // Basic 2-register intrinsics, both double- and quad-register.
>>>>> class N2VDInt<bits<2> op24_23, bits<2> op21_20, bits<2> op19_18,
>>>>> 
>>>>> 
>>>>> _______________________________________________
>>>>> llvm-commits mailing list
>>>>> llvm-commits at cs.uiuc.edu
>>>>> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
>>>> 
>>> 
>> 
> 





More information about the llvm-commits mailing list