Instead of using isDummyPhiInstr, we just compare the opcode with V9::PHI.
[oota-llvm.git] / lib / Target / SparcV8 / SparcV8InstrInfo.td
1 //===- SparcV8Instrs.td - Target Description for SparcV8 Target -----------===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This file describes the SparcV8 instructions in TableGen format.
11 //
12 //===----------------------------------------------------------------------===//
13
14 //===----------------------------------------------------------------------===//
15 // Instruction format superclass
16 //===----------------------------------------------------------------------===//
17
18 class InstV8 : Instruction {          // SparcV8 instruction baseline
19   field bits<32> Inst;
20
21   let Namespace = "V8";
22
23   bits<2> op;
24   let Inst{31-30} = op;               // Top two bits are the 'op' field
25
26   // Bit attributes specific to SparcV8 instructions
27   bit isPasi       = 0; // Does this instruction affect an alternate addr space?
28   bit isPrivileged = 0; // Is this a privileged instruction?
29 }
30
31 include "SparcV8InstrInfo_F2.td"
32 include "SparcV8InstrInfo_F3.td"
33
34 //===----------------------------------------------------------------------===//
35 // Instructions
36 //===----------------------------------------------------------------------===//
37
38 // Pseudo instructions.
39 class PseudoInstV8<string nm> : InstV8  {
40   let Name = nm;
41 }
42 def PHI : PseudoInstV8<"PHI">;
43 def ADJCALLSTACKDOWN : PseudoInstV8<"ADJCALLSTACKDOWN">;
44 def ADJCALLSTACKUP : PseudoInstV8<"ADJCALLSTACKUP">;
45 def IMPLICIT_USE : PseudoInstV8<"IMPLICIT_USE">;
46 def IMPLICIT_DEF : PseudoInstV8<"IMPLICIT_DEF">;
47
48 // Section A.3 - Synthetic Instructions, p. 85
49 // special cases of JMPL:
50 let isReturn = 1, isTerminator = 1, simm13 = 8 in
51   def RET : F3_2<2, 0b111000, "ret">;
52 let isReturn = 1, isTerminator = 1, simm13 = 8 in
53   def RETL: F3_2<2, 0b111000, "retl">;
54 // CMP is a special case of SUBCC where destination is ignored, by setting it to
55 // %g0 (hardwired zero).
56 // FIXME: should keep track of the fact that it defs the integer condition codes
57 let rd = 0 in
58   def CMPri: F3_2<2, 0b010100, "cmp">;
59
60 // Section B.1 - Load Integer Instructions, p. 90
61 def LDSB: F3_2<3, 0b001001, "ldsb">;
62 def LDSH: F3_2<3, 0b001010, "ldsh">;
63 def LDUB: F3_2<3, 0b000001, "ldub">;
64 def LDUH: F3_2<3, 0b000010, "lduh">;
65 def LD  : F3_2<3, 0b000000, "ld">;
66 def LDD : F3_2<3, 0b000011, "ldd">;
67
68 // Section B.2 - Load Floating-point Instructions, p. 92
69 def LDFrr  : F3_1<3, 0b100000, "ld">;
70 def LDFri  : F3_2<3, 0b100000, "ld">;
71 def LDDFrr : F3_1<3, 0b100011, "ldd">;
72 def LDDFri : F3_2<3, 0b100011, "ldd">;
73 def LDFSRrr: F3_1<3, 0b100001, "ld">;
74 def LDFSRri: F3_2<3, 0b100001, "ld">;
75
76 // Section B.4 - Store Integer Instructions, p. 95
77 def STB : F3_2<3, 0b000101, "stb">;
78 def STH : F3_2<3, 0b000110, "sth">;
79 def ST  : F3_2<3, 0b000100, "st">;
80 def STD : F3_2<3, 0b000111, "std">;
81
82 // Section B.5 - Store Floating-point Instructions, p. 97
83 def STFrr   : F3_1<3, 0b100100, "st">;
84 def STFri   : F3_2<3, 0b100100, "st">;
85 def STDFrr  : F3_1<3, 0b100111, "std">;
86 def STDFri  : F3_2<3, 0b100111, "std">;
87 def STFSRrr : F3_1<3, 0b100101, "st">;
88 def STFSRri : F3_2<3, 0b100101, "st">;
89 def STDFQrr : F3_1<3, 0b100110, "std">;
90 def STDFQri : F3_2<3, 0b100110, "std">;
91
92 // Section B.9 - SETHI Instruction, p. 104
93 def SETHIi: F2_1<0b100, "sethi">;
94
95 // Section B.10 - NOP Instruction, p. 105
96 // (It's a special case of SETHI)
97 let rd = 0, imm = 0 in
98   def NOP : F2_1<0b100, "nop">;
99
100 // Section B.11 - Logical Instructions, p. 106
101 def ANDrr : F3_1<2, 0b000001, "and">;
102 def ANDri : F3_2<2, 0b000001, "and">;
103 def ORrr  : F3_1<2, 0b000010, "or">;
104 def ORri  : F3_2<2, 0b000010, "or">;
105 def XORrr : F3_1<2, 0b000011, "xor">;
106 def XORri : F3_2<2, 0b000011, "xor">;
107
108 // Section B.12 - Shift Instructions, p. 107
109 def SLLrr : F3_1<2, 0b100101, "sll">;
110 def SLLri : F3_2<2, 0b100101, "sll">;
111 def SRLrr : F3_1<2, 0b100110, "srl">;
112 def SRLri : F3_2<2, 0b100110, "srl">;
113 def SRArr : F3_1<2, 0b100111, "sra">;
114 def SRAri : F3_2<2, 0b100111, "sra">;
115
116 // Section B.13 - Add Instructions, p. 108
117 def ADDrr : F3_1<2, 0b000000, "add">;
118 def ADDri : F3_2<2, 0b000000, "add">;
119
120 // Section B.15 - Subtract Instructions, p. 110
121 def SUBrr   : F3_1<2, 0b000100, "sub">;
122 def SUBCCrr : F3_1<2, 0b010100, "subcc">;
123 def SUBCCri : F3_2<2, 0b010100, "subcc">;
124
125 // Section B.18 - Multiply Instructions, p. 113
126 def UMULrr : F3_1<2, 0b001010, "umul">;
127 def SMULrr : F3_1<2, 0b001011, "smul">;
128
129 // Section B.19 - Divide Instructions, p. 115
130 def UDIVrr   : F3_1<2, 0b001110, "udiv">;
131 def UDIVri   : F3_2<2, 0b001110, "udiv">;
132 def SDIVrr   : F3_1<2, 0b001111, "sdiv">;
133 def SDIVri   : F3_2<2, 0b001111, "sdiv">;
134 def UDIVCCrr : F3_1<2, 0b011110, "udivcc">;
135 def UDIVCCri : F3_2<2, 0b011110, "udivcc">;
136 def SDIVCCrr : F3_1<2, 0b011111, "sdivcc">;
137 def SDIVCCri : F3_2<2, 0b011111, "sdivcc">;
138
139 // Section B.20 - SAVE and RESTORE, p. 117
140 def SAVErr    : F3_1<2, 0b111100, "save">;           // save    r, r, r
141 def SAVEri    : F3_2<2, 0b111100, "save">;           // save    r, i, r
142 def RESTORErr : F3_1<2, 0b111101, "restore">;        // restore r, r, r
143 def RESTOREri : F3_2<2, 0b111101, "restore">;        // restore r, i, r
144
145 // Section B.21 - Branch on Integer Condition Codes Instructions, p. 119
146
147 // conditional branch class:
148 class BranchV8<bits<4> cc, string nm> : F2_2<cc, 0b010, nm> {
149   let isBranch = 1;
150   let isTerminator = 1;
151 }
152
153 let isBarrier = 1 in
154   def BA   : BranchV8<0b1000, "ba">;
155 def BN   : BranchV8<0b0000, "bn">;
156 def BNE  : BranchV8<0b1001, "bne">;
157 def BE   : BranchV8<0b0001, "be">;
158 def BG   : BranchV8<0b1010, "bg">;
159 def BLE  : BranchV8<0b0010, "ble">;
160 def BGE  : BranchV8<0b1011, "bge">;
161 def BL   : BranchV8<0b0011, "bl">;
162 def BGU  : BranchV8<0b1100, "bgu">;
163 def BLEU : BranchV8<0b0100, "bleu">;
164 def BCC  : BranchV8<0b1101, "bcc">;
165 def BCS  : BranchV8<0b0101, "bcs">;
166
167 // Section B.22 - Branch on Floating-point Condition Codes Instructions, p. 121
168
169 // floating-point conditional branch class:
170 class FPBranchV8<bits<4> cc, string nm> : F2_2<cc, 0b110, nm> {
171   let isBranch = 1;
172   let isTerminator = 1;
173 }
174
175 def FBA  : FPBranchV8<0b1000, "fba">;
176 def FBN  : FPBranchV8<0b0000, "fbn">;
177 def FBU  : FPBranchV8<0b0111, "fbu">;
178 def FBG  : FPBranchV8<0b0110, "fbg">;
179 def FBUG : FPBranchV8<0b0101, "fbug">;
180 def FBL  : FPBranchV8<0b0100, "fbl">;
181 def FBUL : FPBranchV8<0b0011, "fbul">;
182 def FBLG : FPBranchV8<0b0010, "fblg">;
183 def FBNE : FPBranchV8<0b0001, "fbne">;
184 def FBE  : FPBranchV8<0b1001, "fbe">;
185 def FBUE : FPBranchV8<0b1010, "fbue">;
186 def FBGE : FPBranchV8<0b1011, "fbge">;
187 def FBUGE: FPBranchV8<0b1100, "fbuge">;
188 def FBLE : FPBranchV8<0b1101, "fble">;
189 def FBULE: FPBranchV8<0b1110, "fbule">;
190 def FBO  : FPBranchV8<0b1111, "fbo">;
191
192 // Section B.24 - Call and Link Instruction, p. 125
193 // This is the only Format 1 instruction
194 def CALL : InstV8 {
195   bits<30> disp;
196   let op = 1;
197   let Inst{29-0} = disp;
198   let Name = "call";
199   let isCall = 1;
200 }
201
202 // Section B.25 - Jump and Link, p. 126
203 let isCall = 1 in
204   def JMPLrr : F3_1<2, 0b111000, "jmpl">;              // jmpl [rs1+rs2], rd
205
206 // Section B.29 - Write State Register Instructions
207 def WRrr : F3_1<2, 0b110000, "wr">;                    // wr rs1, rs2, rd
208 def WRri : F3_2<2, 0b110000, "wr">;                    // wr rs1, imm, rd
209
210 // Convert Integer to Floating-point Instructions, p. 141
211 def FITOS : F3_3<2, 0b110100, 0b011000100, "fitos">;
212 def FITOD : F3_3<2, 0b110100, 0b011001000, "fitos">;
213
214 // Convert between Floating-point Formats Instructions, p. 143
215 def FSTOD : F3_3<2, 0b110100, 0b011001001, "fstod">;
216 def FDTOS : F3_3<2, 0b110100, 0b011000110, "fdtos">;
217
218 // Floating-point Move Instructions, p. 144
219 def FMOVS : F3_3<2, 0b110100, 0b000000001, "fmovs">;
220 def FNEGS : F3_3<2, 0b110100, 0b000000101, "fnegs">;
221 def FABSS : F3_3<2, 0b110100, 0b000001001, "fabss">;
222
223 // Floating-point Add and Subtract Instructions, p. 146
224 def FADDS  : F3_3<2, 0b110100, 0b001000001, "fadds">;
225 def FADDD  : F3_3<2, 0b110100, 0b001000010, "faddd">;
226 def FSUBS  : F3_3<2, 0b110100, 0b001000101, "fsubs">;
227 def FSUBD  : F3_3<2, 0b110100, 0b001000110, "fsubd">;
228
229 // Floating-point Multiply and Divide Instructions, p. 147
230 def FMULS  : F3_3<2, 0b110100, 0b001001001, "fmuls">;
231 def FMULD  : F3_3<2, 0b110100, 0b001001010, "fmuld">;
232 def FSMULD : F3_3<2, 0b110100, 0b001101001, "fsmuld">;
233 def FDIVS  : F3_3<2, 0b110100, 0b001001101, "fdivs">;
234 def FDIVD  : F3_3<2, 0b110100, 0b001001110, "fdivd">;
235
236 // Floating-point Compare Instructions, p. 148
237 // Note: the 2nd template arg is different for these guys
238 def FCMPS  : F3_3<2, 0b110101, 0b001010001, "fcmps">;
239 def FCMPD  : F3_3<2, 0b110101, 0b001010010, "fcmpd">;
240 def FCMPES : F3_3<2, 0b110101, 0b001010101, "fcmpes">;
241 def FCMPED : F3_3<2, 0b110101, 0b001010110, "fcmped">;
242