s/tblgen/llvm-tblgen/g in a few missed places, including the tests
[oota-llvm.git] / test / TableGen / cast.td
1 // RUN: llvm-tblgen %s | grep {add_ps} | count 3
2 // XFAIL: vg_leak
3
4 class ValueType<int size, int value> {
5   int Size = size;
6   int Value = value;
7 }
8
9 def v2i64  : ValueType<128, 22>;   //  2 x i64 vector value
10 def v2f64  : ValueType<128, 28>;   //  2 x f64 vector value
11
12 class Intrinsic<string name> {
13   string Name = name;
14 }
15
16 class Inst<bits<8> opcode, dag oopnds, dag iopnds, string asmstr, 
17            list<dag> pattern> {
18   bits<8> Opcode = opcode;
19   dag OutOperands = oopnds;
20   dag InOperands = iopnds;
21   string AssemblyString = asmstr;
22   list<dag> Pattern = pattern;
23 }
24
25 def ops;
26 def outs;
27 def ins;
28
29 def set;
30
31 // Define registers
32 class Register<string n> {
33   string Name = n;
34 }
35
36 class RegisterClass<list<ValueType> regTypes, list<Register> regList> {
37   list<ValueType> RegTypes = regTypes;
38   list<Register> MemberList = regList;
39 }
40
41 def XMM0: Register<"xmm0">;
42 def XMM1: Register<"xmm1">;
43 def XMM2: Register<"xmm2">;
44 def XMM3: Register<"xmm3">;
45 def XMM4: Register<"xmm4">;
46 def XMM5: Register<"xmm5">;
47 def XMM6: Register<"xmm6">;
48 def XMM7: Register<"xmm7">;
49 def XMM8:  Register<"xmm8">;
50 def XMM9:  Register<"xmm9">;
51 def XMM10: Register<"xmm10">;
52 def XMM11: Register<"xmm11">;
53 def XMM12: Register<"xmm12">;
54 def XMM13: Register<"xmm13">;
55 def XMM14: Register<"xmm14">;
56 def XMM15: Register<"xmm15">;
57
58 def VR128 : RegisterClass<[v2i64, v2f64],
59                           [XMM0, XMM1, XMM2, XMM3, XMM4, XMM5, XMM6, XMM7,
60                            XMM8, XMM9, XMM10, XMM11,
61                            XMM12, XMM13, XMM14, XMM15]>;
62
63 // Define intrinsics
64 def int_x86_sse2_add_ps : Intrinsic<"addps">;
65 def int_x86_sse2_add_pd : Intrinsic<"addpd">;
66
67 multiclass arith<bits<8> opcode, string asmstr, string Intr> {
68   def PS : Inst<opcode, (outs VR128:$dst), (ins VR128:$src1, VR128:$src2),
69                  !strconcat(asmstr, "\t$dst, $src1, $src2"),
70                  [(set VR128:$dst, (!cast<Intrinsic>(!strconcat(Intr, "_ps")) VR128:$src1, VR128:$src2))]>;
71
72   def PD : Inst<opcode, (outs VR128:$dst), (ins VR128:$src1, VR128:$src2),
73                  !strconcat(asmstr, "\t$dst, $src1, $src2"),
74                  [(set VR128:$dst, (!cast<Intrinsic>(!strconcat(Intr, "_pd")) VR128:$src1, VR128:$src2))]>;
75 }
76
77 defm ADD : arith<0x58, "add", "int_x86_sse2_add">;
78
79 class IntInst<bits<8> opcode, string asmstr, Intrinsic Intr> :
80   Inst<opcode,(outs VR128:$dst), (ins VR128:$src1, VR128:$src2),
81        !strconcat(asmstr, "\t$dst, $src1, $src2"),
82        [(set VR128:$dst, (Intr VR128:$src1, VR128:$src2))]>;
83
84
85 multiclass arith_int<bits<8> opcode, string asmstr, string Intr> {
86   def PS_Int : IntInst<opcode, asmstr, !cast<Intrinsic>(!strconcat(Intr, "_ps"))>;
87
88   def PD_Int : IntInst<opcode, asmstr, !cast<Intrinsic>(!strconcat(Intr, "_pd"))>;
89 }
90
91 defm ADD : arith_int<0x58, "add", "int_x86_sse2_add">;