Home | History | Annotate | Download | only in TableGen

Lines Matching full:opcode

15 class Inst<bits<8> opcode, dag oopnds, dag iopnds, string asmstr, 
17 bits<8> Opcode = opcode;
66 multiclass arith<bits<8> opcode, string asmstr, string Intr> {
67 def PS : Inst<opcode, (outs VR128:$dst), (ins VR128:$src1, VR128:$src2),
71 def PD : Inst<opcode, (outs VR128:$dst), (ins VR128:$src1, VR128:$src2),
78 class IntInst<bits<8> opcode, string asmstr, Intrinsic Intr> :
79 Inst<opcode,(outs VR128:$dst), (ins VR128:$src1, VR128:$src2),
84 multiclass arith_int<bits<8> opcode, string asmstr, string Intr> {
85 def PS_Int : IntInst<opcode, asmstr, !cast<Intrinsic>(!strconcat(Intr, "_ps"))>;
87 def PD_Int : IntInst<opcode, asmstr, !cast<Intrinsic>(!strconcat(Intr, "_pd"))>;