blob: bbee7430f5d167d165e22aaa463e9f88acfb0771 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// This test describes how we eventually want to describe instructions in
2// the target independent code generators.
3// RUN: tblgen %s
4
5// Target indep stuff.
6class Instruction { // Would have other stuff eventually
7 bit isTwoAddress = 0;
8 string AssemblyString;
9}
10class RegisterClass;
11
12class RTLNode;
13
14def ops; // Marker for operand list.
15
16// Various expressions used in RTL descriptions.
17def imm8 : RTLNode;
18def imm32 : RTLNode;
19def addr : RTLNode;
20
21def set : RTLNode;
22def signext : RTLNode;
23def zeroext : RTLNode;
24def plus : RTLNode;
25def and : RTLNode;
26def xor : RTLNode;
27def shl : RTLNode;
28def load : RTLNode;
29def store : RTLNode;
30def unspec : RTLNode;
31
32// Start of X86 specific stuff.
33
34def R8 : RegisterClass;
35def R16 : RegisterClass;
36def R32 : RegisterClass;
37
38def CL; // As are currently defined
39def AL;
40def AX;
41def EDX;
42
43class Format<bits<5> val> {
44 bits<5> Value = val;
45}
46
47def Pseudo : Format<0>; def RawFrm : Format<1>;
48def AddRegFrm : Format<2>; def MRMDestReg : Format<3>;
49def MRMDestMem : Format<4>; def MRMSrcReg : Format<5>;
50def MRMSrcMem : Format<6>;
51def MRM0r : Format<16>; def MRM1r : Format<17>; def MRM2r : Format<18>;
52def MRM3r : Format<19>; def MRM4r : Format<20>; def MRM5r : Format<21>;
53def MRM6r : Format<22>; def MRM7r : Format<23>;
54def MRM0m : Format<24>; def MRM1m : Format<25>; def MRM2m : Format<26>;
55def MRM3m : Format<27>; def MRM4m : Format<28>; def MRM5m : Format<29>;
56def MRM6m : Format<30>; def MRM7m : Format<31>;
57
58
59class Inst<dag opnds, string asmstr, bits<8> opcode,
60 Format f, list<dag> rtl> : Instruction {
61 dag Operands = opnds;
62 string AssemblyString = asmstr;
63 bits<8> Opcode = opcode;
64 Format Format = f;
65 list<dag> RTL = rtl;
66}
67
68
69// Start of instruction definitions, the real point of this file.
70//
71// Note that these patterns show a couple of important things:
72// 1. The order and contents of the operands of the MachineInstr are
73// described here. Eventually we can do away with this when everything
74// is generated from the description.
75// 2. The asm string is captured here, which makes it possible to get rid of
76// a ton of hacks in the various printers and a bunch of flags.
77// 3. Target specific properties (e.g. Format) can still be captured as
78// needed.
79// 4. We capture the behavior of the instruction with a simplified RTL-like
80// expression.
81// 5. The use/def properties for each operand are automatically inferred from
82// the pattern.
83// 6. Address expressions should become first-class entities.
84
85// Simple copy instruction. isMoveInstr could easily be inferred from this,
86// as could MRegisterInfo::copyRegToReg.
87def MOV8rr : Inst<(ops R8:$dst, R8:$src),
88 "mov $dst, $src", 0x88, MRMDestReg,
89 [(set R8:$dst, R8:$src)]>;
90
91// Simple immediate initialization.
92def MOV8ri : Inst<(ops R8:$dst, imm8:$src),
93 "mov $dst, $src", 0xB0, AddRegFrm,
94 [(set R8:$dst, imm8:$src)]>;
95
96// Two address instructions are described as three-addr instructions, with
97// the special target-independent isTwoAddress flag set. The asm pattern
98// should not refer to the $src1, this would be enforced by the
99// TargetInstrInfo tablegen backend.
100let isTwoAddress = 1 in
101def AND8rr : Inst<(ops R8:$dst, R8:$src1, R8:$src2),
102 "and $dst, $src2", 0x20, MRMDestReg,
103 [(set R8:$dst, (and R8:$src1, R8:$src2))]>;
104
105// Instructions that have explicit uses/defs make them explicit in the RTL.
106// Instructions that need extra stuff emitted in the assembly can, trivially.
107let isTwoAddress = 1 in
108def SHL32rCL : Inst<(ops R32:$dst, R32:$src),
109 "shl $dst, CL", 0xD2, MRM4r,
110 [(set R32:$dst, (shl R32:$src, CL))]>;
111
112// The RTL list is a list, allowing complex instructions to be defined easily.
113// Temporary 'internal' registers can be used to break instructions appart.
114let isTwoAddress = 1 in
115def XOR32mi : Inst<(ops addr:$addr, imm32:$imm),
116 "xor $dst, $src2", 0x81, MRM6m,
117 [(set R32:$tmp1, (load addr:$addr)),
118 (set R32:$tmp2, (xor R32:$tmp1, imm32:$imm)),
119 (store addr:$addr, R32:$tmp2)]>;
120
121// Alternatively, if each tmporary register is only used once, the instruction
122// can just be described in nested form. This would be the canonical
123// representation the target generator would convert the above into. Pick your
124// favorite indentation scheme.
125let isTwoAddress = 1 in
126def AND32mr : Inst<(ops addr:$addr, R32:$src),
127 "xor $dst, $src2", 0x81, MRM6m,
128 [(store addr:$addr,
129 (and
130 (load addr:$addr),
131 R32:$src)
132 )
133 ]>;
134
135// Describing complex instructions is not too hard! Note how implicit uses/defs
136// become explicit here.
137def CBW : Inst<(ops),
138 "cbw", 0x98, RawFrm,
139 [(set AX, (signext AL))]>;
140
141// Noop, does nothing.
142def NOOP : Inst<(ops), "nop", 0x90, RawFrm, []>;
143
144
145// Instructions that don't expect optimization can use unspec.
146def IN8rr : Inst<(ops), "in AL, EDX", 0xEC, RawFrm,
147 [(set AL, (unspec EDX))]>;
148