[InstCombine] Signed saturation patterns
[llvm-core.git] / test / TableGen / DefmInsideMultiClass.td
blobd34974de02950a519fdaf0d612ac7834691021cd
1 // RUN: llvm-tblgen %s | FileCheck %s
2 // XFAIL: vg_leak
4 // CHECK: ADDPSrr
5 // CHECK-NOT: ADDPSrr
7 class Instruction<bits<4> opc, string Name> {
8   bits<4> opcode = opc;
9   string name = Name;
12 multiclass basic_r<bits<4> opc> {
13   def rr : Instruction<opc, "rr">;
14   def rm : Instruction<opc, "rm">;
17 multiclass basic_s<bits<4> opc> {
18   defm SS : basic_r<opc>;
19   defm SD : basic_r<opc>;
22 multiclass basic_p<bits<4> opc> {
23   defm PS : basic_r<opc>;
24   defm PD : basic_r<opc>;
27 defm ADD : basic_s<0xf>, basic_p<0xf>;
28 defm SUB : basic_s<0xe>, basic_p<0xe>;