blob: d34974de02950a519fdaf0d612ac7834691021cd [file] [log] [blame]
Bill Wendlingb4be7f62013-08-22 20:46:05 +00001// RUN: llvm-tblgen %s | FileCheck %s
NAKAMURA Takumia22657f2013-11-10 14:26:08 +00002// XFAIL: vg_leak
Bill Wendlingb4be7f62013-08-22 20:46:05 +00003
4// CHECK: ADDPSrr
5// CHECK-NOT: ADDPSrr
Bruno Cardoso Lopes270562b2010-06-05 02:11:52 +00006
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>;