Home | History | Annotate | Download | only in TableGen

Lines Matching full:asmstr

15 class Inst<bits<8> opcode, dag oopnds, dag iopnds, string asmstr, 
20 string AssemblyString = asmstr;
66 multiclass arith<bits<8> opcode, string asmstr, string Intr> {
68 !strconcat(asmstr, "\t$dst, $src1, $src2"),
72 !strconcat(asmstr, "\t$dst, $src1, $src2"),
78 class IntInst<bits<8> opcode, string asmstr, Intrinsic Intr> :
80 !strconcat(asmstr, "\t$dst, $src1, $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"))>;