29 lines · plain
1// RUN: llvm-tblgen %s | FileCheck %s2// XFAIL: vg_leak3 4// CHECK: ADDPSrr5// CHECK-NOT: ADDPSrr6 7class Instruction<bits<4> opc, string Name> {8 bits<4> opcode = opc;9 string name = Name;10}11 12multiclass basic_r<bits<4> opc> {13 def rr : Instruction<opc, "rr">;14 def rm : Instruction<opc, "rm">;15}16 17multiclass basic_s<bits<4> opc> {18 defm SS : basic_r<opc>;19 defm SD : basic_r<opc>;20}21 22multiclass basic_p<bits<4> opc> {23 defm PS : basic_r<opc>;24 defm PD : basic_r<opc>;25}26 27defm ADD : basic_s<0xf>, basic_p<0xf>;28defm SUB : basic_s<0xe>, basic_p<0xe>;29