blob: 5751f6f02608cafbf339f1471137ac8d9335d0df [file] [log] [blame]
Misha Brukmane07c2aa2004-02-25 21:02:21 +00001//===- SparcV8Instrs.td - Target Description for SparcV8 Target -----------===//
Brian Gaekee785e532004-02-25 19:28:19 +00002//
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//
Misha Brukmane07c2aa2004-02-25 21:02:21 +000010// This file describes the SparcV8 instructions in TableGen format.
Brian Gaekee785e532004-02-25 19:28:19 +000011//
12//===----------------------------------------------------------------------===//
13
Misha Brukmane07c2aa2004-02-25 21:02:21 +000014//===----------------------------------------------------------------------===//
Misha Brukman23e6c1f2004-02-26 00:37:12 +000015// Instruction format superclass
Misha Brukmane07c2aa2004-02-25 21:02:21 +000016//===----------------------------------------------------------------------===//
17
18class 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?
Brian Gaekee785e532004-02-25 19:28:19 +000029}
30
Misha Brukmanc42077d2004-09-22 21:38:42 +000031include "SparcV8InstrFormats.td"
Brian Gaekee785e532004-02-25 19:28:19 +000032
Misha Brukman23e6c1f2004-02-26 00:37:12 +000033//===----------------------------------------------------------------------===//
34// Instructions
35//===----------------------------------------------------------------------===//
36
Chris Lattner275f6452004-02-28 19:37:18 +000037// Pseudo instructions.
Brian Gaeke7c4676f2004-07-16 10:32:10 +000038class PseudoInstV8<string nm> : InstV8 {
39 let Name = nm;
Chris Lattner275f6452004-02-28 19:37:18 +000040}
Brian Gaeke7c4676f2004-07-16 10:32:10 +000041def PHI : PseudoInstV8<"PHI">;
42def ADJCALLSTACKDOWN : PseudoInstV8<"ADJCALLSTACKDOWN">;
43def ADJCALLSTACKUP : PseudoInstV8<"ADJCALLSTACKUP">;
44def IMPLICIT_USE : PseudoInstV8<"IMPLICIT_USE">;
45def IMPLICIT_DEF : PseudoInstV8<"IMPLICIT_DEF">;
Brian Gaekea036b532004-09-29 03:27:29 +000046def FpMOVD : PseudoInstV8<"FpMOVD">; // pseudo 64-bit double move
Chris Lattner275f6452004-02-28 19:37:18 +000047
Brian Gaekea8056fa2004-03-06 05:32:13 +000048// Section A.3 - Synthetic Instructions, p. 85
Brian Gaekec3e97012004-05-08 04:21:32 +000049// special cases of JMPL:
Brian Gaeked7bf5012004-09-30 04:04:48 +000050let isReturn = 1, isTerminator = 1, hasDelaySlot = 1, simm13 = 8 in
Brian Gaekea8056fa2004-03-06 05:32:13 +000051 def RET : F3_2<2, 0b111000, "ret">;
Brian Gaeked7bf5012004-09-30 04:04:48 +000052let isReturn = 1, isTerminator = 1, hasDelaySlot = 1, simm13 = 8 in
Brian Gaeke8542e082004-04-02 20:53:37 +000053 def RETL: F3_2<2, 0b111000, "retl">;
Brian Gaekec3e97012004-05-08 04:21:32 +000054// 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
57let rd = 0 in
58 def CMPri: F3_2<2, 0b010100, "cmp">;
Brian Gaeke8542e082004-04-02 20:53:37 +000059
60// Section B.1 - Load Integer Instructions, p. 90
Brian Gaekee7f9e0b2004-06-24 07:36:59 +000061def LDSB: F3_2<3, 0b001001, "ldsb">;
62def LDSH: F3_2<3, 0b001010, "ldsh">;
63def LDUB: F3_2<3, 0b000001, "ldub">;
64def LDUH: F3_2<3, 0b000010, "lduh">;
65def LD : F3_2<3, 0b000000, "ld">;
66def LDD : F3_2<3, 0b000011, "ldd">;
Brian Gaeke8542e082004-04-02 20:53:37 +000067
Brian Gaeke562d5b02004-06-18 05:19:27 +000068// Section B.2 - Load Floating-point Instructions, p. 92
Brian Gaekee7f9e0b2004-06-24 07:36:59 +000069def LDFrr : F3_1<3, 0b100000, "ld">;
70def LDFri : F3_2<3, 0b100000, "ld">;
71def LDDFrr : F3_1<3, 0b100011, "ldd">;
72def LDDFri : F3_2<3, 0b100011, "ldd">;
73def LDFSRrr: F3_1<3, 0b100001, "ld">;
74def LDFSRri: F3_2<3, 0b100001, "ld">;
Brian Gaeke562d5b02004-06-18 05:19:27 +000075
Brian Gaeke8542e082004-04-02 20:53:37 +000076// Section B.4 - Store Integer Instructions, p. 95
Brian Gaekee7f9e0b2004-06-24 07:36:59 +000077def STB : F3_2<3, 0b000101, "stb">;
78def STH : F3_2<3, 0b000110, "sth">;
79def ST : F3_2<3, 0b000100, "st">;
80def STD : F3_2<3, 0b000111, "std">;
81
82// Section B.5 - Store Floating-point Instructions, p. 97
83def STFrr : F3_1<3, 0b100100, "st">;
84def STFri : F3_2<3, 0b100100, "st">;
85def STDFrr : F3_1<3, 0b100111, "std">;
86def STDFri : F3_2<3, 0b100111, "std">;
87def STFSRrr : F3_1<3, 0b100101, "st">;
88def STFSRri : F3_2<3, 0b100101, "st">;
89def STDFQrr : F3_1<3, 0b100110, "std">;
90def STDFQri : F3_2<3, 0b100110, "std">;
Misha Brukman23e6c1f2004-02-26 00:37:12 +000091
Brian Gaeke775158d2004-03-04 04:37:45 +000092// Section B.9 - SETHI Instruction, p. 104
Brian Gaekee8061732004-03-04 00:56:25 +000093def SETHIi: F2_1<0b100, "sethi">;
94
Brian Gaeke8542e082004-04-02 20:53:37 +000095// Section B.10 - NOP Instruction, p. 105
96// (It's a special case of SETHI)
97let rd = 0, imm = 0 in
98 def NOP : F2_1<0b100, "nop">;
99
Brian Gaekebc1d27a2004-03-03 23:03:14 +0000100// Section B.11 - Logical Instructions, p. 106
Chris Lattner22ede702004-04-07 04:06:46 +0000101def ANDrr : F3_1<2, 0b000001, "and">;
Brian Gaekebc1d27a2004-03-03 23:03:14 +0000102def ANDri : F3_2<2, 0b000001, "and">;
103def ORrr : F3_1<2, 0b000010, "or">;
Brian Gaekee8061732004-03-04 00:56:25 +0000104def ORri : F3_2<2, 0b000010, "or">;
Chris Lattner22ede702004-04-07 04:06:46 +0000105def XORrr : F3_1<2, 0b000011, "xor">;
106def XORri : F3_2<2, 0b000011, "xor">;
Brian Gaekebc1d27a2004-03-03 23:03:14 +0000107
108// Section B.12 - Shift Instructions, p. 107
Chris Lattnera562efc2004-04-07 04:26:57 +0000109def SLLrr : F3_1<2, 0b100101, "sll">;
110def SLLri : F3_2<2, 0b100101, "sll">;
111def SRLrr : F3_1<2, 0b100110, "srl">;
112def SRLri : F3_2<2, 0b100110, "srl">;
113def SRArr : F3_1<2, 0b100111, "sra">;
114def SRAri : F3_2<2, 0b100111, "sra">;
Brian Gaekebc1d27a2004-03-03 23:03:14 +0000115
116// Section B.13 - Add Instructions, p. 108
117def ADDrr : F3_1<2, 0b000000, "add">;
Brian Gaeke6b1d2fa2004-05-08 05:26:55 +0000118def ADDri : F3_2<2, 0b000000, "add">;
Brian Gaekebc1d27a2004-03-03 23:03:14 +0000119
Brian Gaeke775158d2004-03-04 04:37:45 +0000120// Section B.15 - Subtract Instructions, p. 110
Chris Lattner61790472004-04-07 05:04:01 +0000121def SUBrr : F3_1<2, 0b000100, "sub">;
122def SUBCCrr : F3_1<2, 0b010100, "subcc">;
Brian Gaekec3e97012004-05-08 04:21:32 +0000123def SUBCCri : F3_2<2, 0b010100, "subcc">;
Brian Gaeke775158d2004-03-04 04:37:45 +0000124
Brian Gaeke032f80f2004-03-16 22:37:13 +0000125// Section B.18 - Multiply Instructions, p. 113
126def UMULrr : F3_1<2, 0b001010, "umul">;
127def SMULrr : F3_1<2, 0b001011, "smul">;
128
Brian Gaekee88c9dc2004-04-07 04:01:00 +0000129// Section B.19 - Divide Instructions, p. 115
Chris Lattner22ede702004-04-07 04:06:46 +0000130def UDIVrr : F3_1<2, 0b001110, "udiv">;
131def UDIVri : F3_2<2, 0b001110, "udiv">;
132def SDIVrr : F3_1<2, 0b001111, "sdiv">;
133def SDIVri : F3_2<2, 0b001111, "sdiv">;
134def UDIVCCrr : F3_1<2, 0b011110, "udivcc">;
135def UDIVCCri : F3_2<2, 0b011110, "udivcc">;
136def SDIVCCrr : F3_1<2, 0b011111, "sdivcc">;
137def SDIVCCri : F3_2<2, 0b011111, "sdivcc">;
Brian Gaekee88c9dc2004-04-07 04:01:00 +0000138
Brian Gaekea8056fa2004-03-06 05:32:13 +0000139// Section B.20 - SAVE and RESTORE, p. 117
140def SAVErr : F3_1<2, 0b111100, "save">; // save r, r, r
141def SAVEri : F3_2<2, 0b111100, "save">; // save r, i, r
142def RESTORErr : F3_1<2, 0b111101, "restore">; // restore r, r, r
143def RESTOREri : F3_2<2, 0b111101, "restore">; // restore r, i, r
144
Brian Gaekec3e97012004-05-08 04:21:32 +0000145// Section B.21 - Branch on Integer Condition Codes Instructions, p. 119
Brian Gaeke070bb4a2004-06-17 22:34:29 +0000146
147// conditional branch class:
148class BranchV8<bits<4> cc, string nm> : F2_2<cc, 0b010, nm> {
149 let isBranch = 1;
150 let isTerminator = 1;
Brian Gaeked7bf5012004-09-30 04:04:48 +0000151 let hasDelaySlot = 1;
Brian Gaeke070bb4a2004-06-17 22:34:29 +0000152}
Chris Lattner0f6eab32004-07-31 02:24:37 +0000153
154let isBarrier = 1 in
155 def BA : BranchV8<0b1000, "ba">;
Brian Gaeke070bb4a2004-06-17 22:34:29 +0000156def BN : BranchV8<0b0000, "bn">;
157def BNE : BranchV8<0b1001, "bne">;
158def BE : BranchV8<0b0001, "be">;
159def BG : BranchV8<0b1010, "bg">;
160def BLE : BranchV8<0b0010, "ble">;
161def BGE : BranchV8<0b1011, "bge">;
162def BL : BranchV8<0b0011, "bl">;
163def BGU : BranchV8<0b1100, "bgu">;
164def BLEU : BranchV8<0b0100, "bleu">;
165def BCC : BranchV8<0b1101, "bcc">;
166def BCS : BranchV8<0b0101, "bcs">;
Brian Gaekec3e97012004-05-08 04:21:32 +0000167
Brian Gaeke4185d032004-07-08 09:08:22 +0000168// Section B.22 - Branch on Floating-point Condition Codes Instructions, p. 121
169
170// floating-point conditional branch class:
171class FPBranchV8<bits<4> cc, string nm> : F2_2<cc, 0b110, nm> {
172 let isBranch = 1;
173 let isTerminator = 1;
Brian Gaeked7bf5012004-09-30 04:04:48 +0000174 let hasDelaySlot = 1;
Brian Gaeke4185d032004-07-08 09:08:22 +0000175}
176
177def FBA : FPBranchV8<0b1000, "fba">;
178def FBN : FPBranchV8<0b0000, "fbn">;
179def FBU : FPBranchV8<0b0111, "fbu">;
180def FBG : FPBranchV8<0b0110, "fbg">;
181def FBUG : FPBranchV8<0b0101, "fbug">;
182def FBL : FPBranchV8<0b0100, "fbl">;
183def FBUL : FPBranchV8<0b0011, "fbul">;
184def FBLG : FPBranchV8<0b0010, "fblg">;
185def FBNE : FPBranchV8<0b0001, "fbne">;
186def FBE : FPBranchV8<0b1001, "fbe">;
187def FBUE : FPBranchV8<0b1010, "fbue">;
188def FBGE : FPBranchV8<0b1011, "fbge">;
189def FBUGE: FPBranchV8<0b1100, "fbuge">;
190def FBLE : FPBranchV8<0b1101, "fble">;
191def FBULE: FPBranchV8<0b1110, "fbule">;
192def FBO : FPBranchV8<0b1111, "fbo">;
193
Brian Gaeke8542e082004-04-02 20:53:37 +0000194// Section B.24 - Call and Link Instruction, p. 125
Brian Gaekea8056fa2004-03-06 05:32:13 +0000195// This is the only Format 1 instruction
Brian Gaeked7bf5012004-09-30 04:04:48 +0000196let Defs = [O0, O1, O2, O3, O4, O5], hasDelaySlot = 1, isCall = 1 in {
197 // pc-relative call:
Brian Gaeke374b36d2004-09-29 20:45:05 +0000198 def CALL : InstV8 {
199 bits<30> disp;
200 let op = 1;
201 let Inst{29-0} = disp;
202 let Name = "call";
203 }
Brian Gaeked7bf5012004-09-30 04:04:48 +0000204 // indirect call:
Brian Gaekef89cc652004-06-18 06:28:10 +0000205 def JMPLrr : F3_1<2, 0b111000, "jmpl">; // jmpl [rs1+rs2], rd
Brian Gaeke374b36d2004-09-29 20:45:05 +0000206}
Misha Brukman23e6c1f2004-02-26 00:37:12 +0000207
Chris Lattner22ede702004-04-07 04:06:46 +0000208// Section B.29 - Write State Register Instructions
209def WRrr : F3_1<2, 0b110000, "wr">; // wr rs1, rs2, rd
210def WRri : F3_2<2, 0b110000, "wr">; // wr rs1, imm, rd
Chris Lattner61790472004-04-07 05:04:01 +0000211
Brian Gaekec53105c2004-06-27 22:53:56 +0000212// Convert Integer to Floating-point Instructions, p. 141
213def FITOS : F3_3<2, 0b110100, 0b011000100, "fitos">;
Brian Gaeke22ad67d2004-09-29 19:59:07 +0000214def FITOD : F3_3<2, 0b110100, 0b011001000, "fitod">;
Brian Gaekec53105c2004-06-27 22:53:56 +0000215
Brian Gaeke57ff2e32004-06-24 21:22:09 +0000216// Convert between Floating-point Formats Instructions, p. 143
217def FSTOD : F3_3<2, 0b110100, 0b011001001, "fstod">;
218def FDTOS : F3_3<2, 0b110100, 0b011000110, "fdtos">;
219
Brian Gaekef89cc652004-06-18 06:28:10 +0000220// Floating-point Move Instructions, p. 144
221def FMOVS : F3_3<2, 0b110100, 0b000000001, "fmovs">;
222def FNEGS : F3_3<2, 0b110100, 0b000000101, "fnegs">;
223def FABSS : F3_3<2, 0b110100, 0b000001001, "fabss">;
224
Brian Gaekec53105c2004-06-27 22:53:56 +0000225// Floating-point Add and Subtract Instructions, p. 146
226def FADDS : F3_3<2, 0b110100, 0b001000001, "fadds">;
227def FADDD : F3_3<2, 0b110100, 0b001000010, "faddd">;
228def FSUBS : F3_3<2, 0b110100, 0b001000101, "fsubs">;
229def FSUBD : F3_3<2, 0b110100, 0b001000110, "fsubd">;
230
231// Floating-point Multiply and Divide Instructions, p. 147
232def FMULS : F3_3<2, 0b110100, 0b001001001, "fmuls">;
233def FMULD : F3_3<2, 0b110100, 0b001001010, "fmuld">;
234def FSMULD : F3_3<2, 0b110100, 0b001101001, "fsmuld">;
235def FDIVS : F3_3<2, 0b110100, 0b001001101, "fdivs">;
236def FDIVD : F3_3<2, 0b110100, 0b001001110, "fdivd">;
Brian Gaeke57ff2e32004-06-24 21:22:09 +0000237
Brian Gaeke4185d032004-07-08 09:08:22 +0000238// Floating-point Compare Instructions, p. 148
Brian Gaeked7bf5012004-09-30 04:04:48 +0000239// Note: the 2nd template arg is different for these guys.
240// Note 2: the result of a FCMP is not available until the 2nd cycle
241// after the instr is retired, but there is no interlock. This behavior
242// is modelled as a delay slot.
243let hasDelaySlot = 1 in {
244 def FCMPS : F3_3<2, 0b110101, 0b001010001, "fcmps">;
245 def FCMPD : F3_3<2, 0b110101, 0b001010010, "fcmpd">;
246 def FCMPES : F3_3<2, 0b110101, 0b001010101, "fcmpes">;
247 def FCMPED : F3_3<2, 0b110101, 0b001010110, "fcmped">;
248}
Brian Gaeke4185d032004-07-08 09:08:22 +0000249