blob: 4cde36d18881e033245e74738b82fe6d997d44e7 [file] [log] [blame]
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001//===- MipsInstrInfo.td - Mips Register defs --------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00007//
8//===----------------------------------------------------------------------===//
9
10//===----------------------------------------------------------------------===//
11// Instruction format superclass
12//===----------------------------------------------------------------------===//
13
14include "MipsInstrFormats.td"
15
16//===----------------------------------------------------------------------===//
17// Mips profiles and nodes
18//===----------------------------------------------------------------------===//
19
20// Call
21def SDT_MipsJmpLink : SDTypeProfile<0, 1, [SDTCisVT<0, iPTR>]>;
22def MipsJmpLink : SDNode<"MipsISD::JmpLink",SDT_MipsJmpLink, [SDNPHasChain,
23 SDNPOutFlag]>;
24
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +000025// Hi and Lo nodes are used to handle global addresses. Used on
26// MipsISelLowering to lower stuff like GlobalAddress, ExternalSymbol
27// static model. (nothing to do with Mips Registers Hi and Lo)
28def MipsHi : SDNode<"MipsISD::Hi", SDTIntUnaryOp, [SDNPOutFlag]>;
29def MipsLo : SDNode<"MipsISD::Lo", SDTIntUnaryOp>;
Bruno Cardoso Lopese78080c2007-10-09 02:55:31 +000030
Eric Christopher3c999a22007-10-26 04:00:13 +000031// Return
32def SDT_MipsRet : SDTypeProfile<0, 1, [SDTCisInt<0>]>;
33def MipsRet : SDNode<"MipsISD::Ret", SDT_MipsRet, [SDNPHasChain,
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000034 SDNPOptInFlag]>;
35
36// These are target-independent nodes, but have target-specific formats.
Bill Wendlingc69107c2007-11-13 09:19:02 +000037def SDT_MipsCallSeqStart : SDCallSeqStart<[SDTCisVT<0, i32>]>;
38def SDT_MipsCallSeqEnd : SDCallSeqEnd<[SDTCisVT<0, i32>,
39 SDTCisVT<1, i32>]>;
Bill Wendling0f8d9c02007-11-13 00:44:25 +000040
Bill Wendlingc69107c2007-11-13 09:19:02 +000041def callseq_start : SDNode<"ISD::CALLSEQ_START", SDT_MipsCallSeqStart,
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000042 [SDNPHasChain, SDNPOutFlag]>;
Bill Wendlingc69107c2007-11-13 09:19:02 +000043def callseq_end : SDNode<"ISD::CALLSEQ_END", SDT_MipsCallSeqEnd,
Bill Wendling0f8d9c02007-11-13 00:44:25 +000044 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000045
Bruno Cardoso Lopese78080c2007-10-09 02:55:31 +000046//===----------------------------------------------------------------------===//
47// Mips Instruction Predicate Definitions.
48//===----------------------------------------------------------------------===//
49def IsStatic : Predicate<"TM.getRelocationModel() == Reloc::Static">;
50
51//===----------------------------------------------------------------------===//
52// Mips Operand, Complex Patterns and Transformations Definitions.
53//===----------------------------------------------------------------------===//
54
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000055// Instruction operand types
56def brtarget : Operand<OtherVT>;
57def calltarget : Operand<i32>;
58def uimm16 : Operand<i32>;
59def simm16 : Operand<i32>;
Eric Christopher3c999a22007-10-26 04:00:13 +000060def shamt : Operand<i32>;
Bruno Cardoso Lopese78080c2007-10-09 02:55:31 +000061def addrlabel : Operand<i32>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000062
63// Address operand
64def mem : Operand<i32> {
65 let PrintMethod = "printMemOperand";
66 let MIOperandInfo = (ops simm16, CPURegs);
67}
68
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000069// Transformation Function - get the lower 16 bits.
70def LO16 : SDNodeXForm<imm, [{
71 return getI32Imm((unsigned)N->getValue() & 0xFFFF);
72}]>;
73
74// Transformation Function - get the higher 16 bits.
75def HI16 : SDNodeXForm<imm, [{
76 return getI32Imm((unsigned)N->getValue() >> 16);
77}]>;
78
79// Node immediate fits as 16-bit sign extended on target immediate.
80// e.g. addi, andi
81def immSExt16 : PatLeaf<(imm), [{
82 if (N->getValueType(0) == MVT::i32)
83 return (int32_t)N->getValue() == (short)N->getValue();
Eric Christopher3c999a22007-10-26 04:00:13 +000084 else
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000085 return (int64_t)N->getValue() == (short)N->getValue();
86}]>;
87
88// Node immediate fits as 16-bit zero extended on target immediate.
89// The LO16 param means that only the lower 16 bits of the node
90// immediate are caught.
91// e.g. addiu, sltiu
92def immZExt16 : PatLeaf<(imm), [{
Bruno Cardoso Lopes332a3d22007-07-11 22:47:02 +000093 if (N->getValueType(0) == MVT::i32)
94 return (uint32_t)N->getValue() == (unsigned short)N->getValue();
Eric Christopher3c999a22007-10-26 04:00:13 +000095 else
Bruno Cardoso Lopes332a3d22007-07-11 22:47:02 +000096 return (uint64_t)N->getValue() == (unsigned short)N->getValue();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000097}], LO16>;
98
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +000099// Node immediate fits as 32-bit zero extended on target immediate.
100//def immZExt32 : PatLeaf<(imm), [{
101// return (uint64_t)N->getValue() == (uint32_t)N->getValue();
102//}], LO16>;
103
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000104// shamt field must fit in 5 bits.
105def immZExt5 : PatLeaf<(imm), [{
106 return N->getValue() == ((N->getValue()) & 0x1f) ;
107}]>;
108
Eric Christopher3c999a22007-10-26 04:00:13 +0000109// Mips Address Mode! SDNode frameindex could possibily be a match
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000110// since load and store instructions from stack used it.
111def addr : ComplexPattern<i32, 2, "SelectAddr", [frameindex], []>;
112
113//===----------------------------------------------------------------------===//
114// Instructions specific format
115//===----------------------------------------------------------------------===//
116
117// Arithmetic 3 register operands
Eric Christopher3c999a22007-10-26 04:00:13 +0000118let isCommutable = 1 in
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000119class ArithR<bits<6> op, bits<6> func, string instr_asm, SDNode OpNode,
Eric Christopher3c999a22007-10-26 04:00:13 +0000120 InstrItinClass itin>:
121 FR< op,
122 func,
123 (outs CPURegs:$dst),
124 (ins CPURegs:$b, CPURegs:$c),
125 !strconcat(instr_asm, " $dst, $b, $c"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000126 [(set CPURegs:$dst, (OpNode CPURegs:$b, CPURegs:$c))], itin>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000127
Eric Christopher3c999a22007-10-26 04:00:13 +0000128let isCommutable = 1 in
129class ArithOverflowR<bits<6> op, bits<6> func, string instr_asm>:
130 FR< op,
131 func,
132 (outs CPURegs:$dst),
133 (ins CPURegs:$b, CPURegs:$c),
134 !strconcat(instr_asm, " $dst, $b, $c"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000135 [], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000136
137// Arithmetic 2 register operands
138let isCommutable = 1 in
Eric Christopher3c999a22007-10-26 04:00:13 +0000139class ArithI<bits<6> op, string instr_asm, SDNode OpNode,
140 Operand Od, PatLeaf imm_type> :
141 FI< op,
142 (outs CPURegs:$dst),
143 (ins CPURegs:$b, Od:$c),
144 !strconcat(instr_asm, " $dst, $b, $c"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000145 [(set CPURegs:$dst, (OpNode CPURegs:$b, imm_type:$c))], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000146
147// Arithmetic Multiply ADD/SUB
148let rd=0 in
Eric Christopher3c999a22007-10-26 04:00:13 +0000149class MArithR<bits<6> func, string instr_asm> :
150 FR< 0x1c,
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000151 func,
Eric Christopher3c999a22007-10-26 04:00:13 +0000152 (outs CPURegs:$rs),
153 (ins CPURegs:$rt),
154 !strconcat(instr_asm, " $rs, $rt"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000155 [], IIImul>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000156
157// Logical
158class LogicR<bits<6> func, string instr_asm, SDNode OpNode>:
Eric Christopher3c999a22007-10-26 04:00:13 +0000159 FR< 0x00,
160 func,
161 (outs CPURegs:$dst),
162 (ins CPURegs:$b, CPURegs:$c),
163 !strconcat(instr_asm, " $dst, $b, $c"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000164 [(set CPURegs:$dst, (OpNode CPURegs:$b, CPURegs:$c))], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000165
166class LogicI<bits<6> op, string instr_asm, SDNode OpNode>:
167 FI< op,
Evan Cheng64d80e32007-07-19 01:14:50 +0000168 (outs CPURegs:$dst),
169 (ins CPURegs:$b, uimm16:$c),
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000170 !strconcat(instr_asm, " $dst, $b, $c"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000171 [(set CPURegs:$dst, (OpNode CPURegs:$b, immSExt16:$c))], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000172
173class LogicNOR<bits<6> op, bits<6> func, string instr_asm>:
Eric Christopher3c999a22007-10-26 04:00:13 +0000174 FR< op,
175 func,
176 (outs CPURegs:$dst),
177 (ins CPURegs:$b, CPURegs:$c),
178 !strconcat(instr_asm, " $dst, $b, $c"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000179 [(set CPURegs:$dst, (not (or CPURegs:$b, CPURegs:$c)))], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000180
181// Shifts
182let rt = 0 in
183class LogicR_shift_imm<bits<6> func, string instr_asm, SDNode OpNode>:
Eric Christopher3c999a22007-10-26 04:00:13 +0000184 FR< 0x00,
185 func,
Evan Cheng64d80e32007-07-19 01:14:50 +0000186 (outs CPURegs:$dst),
187 (ins CPURegs:$b, shamt:$c),
Eric Christopher3c999a22007-10-26 04:00:13 +0000188 !strconcat(instr_asm, " $dst, $b, $c"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000189 [(set CPURegs:$dst, (OpNode CPURegs:$b, immZExt5:$c))], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000190
191class LogicR_shift_reg<bits<6> func, string instr_asm, SDNode OpNode>:
Eric Christopher3c999a22007-10-26 04:00:13 +0000192 FR< 0x00,
193 func,
Evan Cheng64d80e32007-07-19 01:14:50 +0000194 (outs CPURegs:$dst),
195 (ins CPURegs:$b, CPURegs:$c),
Eric Christopher3c999a22007-10-26 04:00:13 +0000196 !strconcat(instr_asm, " $dst, $b, $c"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000197 [(set CPURegs:$dst, (OpNode CPURegs:$b, CPURegs:$c))], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000198
199// Load Upper Imediate
200class LoadUpper<bits<6> op, string instr_asm>:
201 FI< op,
Evan Cheng64d80e32007-07-19 01:14:50 +0000202 (outs CPURegs:$dst),
203 (ins uimm16:$imm),
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000204 !strconcat(instr_asm, " $dst, $imm"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000205 [], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000206
Eric Christopher3c999a22007-10-26 04:00:13 +0000207// Memory Load/Store
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000208let isLoad = 1, hasDelaySlot = 1 in
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000209class LoadM<bits<6> op, string instr_asm, PatFrag OpNode>:
210 FI< op,
Evan Cheng64d80e32007-07-19 01:14:50 +0000211 (outs CPURegs:$dst),
212 (ins mem:$addr),
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000213 !strconcat(instr_asm, " $dst, $addr"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000214 [(set CPURegs:$dst, (OpNode addr:$addr))], IILoad>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000215
216let isStore = 1 in
217class StoreM<bits<6> op, string instr_asm, PatFrag OpNode>:
218 FI< op,
Evan Cheng64d80e32007-07-19 01:14:50 +0000219 (outs),
220 (ins CPURegs:$dst, mem:$addr),
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000221 !strconcat(instr_asm, " $dst, $addr"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000222 [(OpNode CPURegs:$dst, addr:$addr)], IIStore>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000223
224// Conditional Branch
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000225let isBranch = 1, isTerminator=1, hasDelaySlot = 1 in {
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000226class CBranch<bits<6> op, string instr_asm, PatFrag cond_op>:
227 FI< op,
Evan Cheng64d80e32007-07-19 01:14:50 +0000228 (outs),
229 (ins CPURegs:$a, CPURegs:$b, brtarget:$offset),
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000230 !strconcat(instr_asm, " $a, $b, $offset"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000231 [(brcond (cond_op CPURegs:$a, CPURegs:$b), bb:$offset)],
232 IIBranch>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000233
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000234
235class CBranchZero<bits<6> op, string instr_asm, PatFrag cond_op>:
236 FI< op,
237 (outs),
238 (ins CPURegs:$src, brtarget:$offset),
239 !strconcat(instr_asm, " $src, $offset"),
240 [(brcond (cond_op CPURegs:$src, 0), bb:$offset)],
241 IIBranch>;
Eric Christopher3c999a22007-10-26 04:00:13 +0000242}
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000243
Eric Christopher3c999a22007-10-26 04:00:13 +0000244// SetCC
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000245class SetCC_R<bits<6> op, bits<6> func, string instr_asm,
246 PatFrag cond_op>:
247 FR< op,
248 func,
Evan Cheng64d80e32007-07-19 01:14:50 +0000249 (outs CPURegs:$dst),
250 (ins CPURegs:$b, CPURegs:$c),
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000251 !strconcat(instr_asm, " $dst, $b, $c"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000252 [(set CPURegs:$dst, (cond_op CPURegs:$b, CPURegs:$c))],
253 IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000254
255class SetCC_I<bits<6> op, string instr_asm, PatFrag cond_op,
256 Operand Od, PatLeaf imm_type>:
257 FI< op,
Evan Cheng64d80e32007-07-19 01:14:50 +0000258 (outs CPURegs:$dst),
259 (ins CPURegs:$b, Od:$c),
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000260 !strconcat(instr_asm, " $dst, $b, $c"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000261 [(set CPURegs:$dst, (cond_op CPURegs:$b, imm_type:$c))],
262 IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000263
264// Unconditional branch
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000265let isBranch=1, isTerminator=1, isBarrier=1, hasDelaySlot = 1 in
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000266class JumpFJ<bits<6> op, string instr_asm>:
267 FJ< op,
Evan Cheng64d80e32007-07-19 01:14:50 +0000268 (outs),
269 (ins brtarget:$target),
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000270 !strconcat(instr_asm, " $target"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000271 [(br bb:$target)], IIBranch>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000272
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000273let isBranch=1, isTerminator=1, isBarrier=1, rd=0, hasDelaySlot = 1 in
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000274class JumpFR<bits<6> op, bits<6> func, string instr_asm>:
275 FR< op,
276 func,
Evan Cheng64d80e32007-07-19 01:14:50 +0000277 (outs),
278 (ins CPURegs:$target),
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000279 !strconcat(instr_asm, " $target"),
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000280 [(brind CPURegs:$target)], IIBranch>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000281
282// Jump and Link (Call)
Eric Christopher3c999a22007-10-26 04:00:13 +0000283let isCall=1, hasDelaySlot=1,
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000284 // All calls clobber the non-callee saved registers...
Eric Christopher3c999a22007-10-26 04:00:13 +0000285 Defs = [AT, V0, V1, A0, A1, A2, A3, T0, T1, T2,
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000286 T3, T4, T5, T6, T7, T8, T9, K0, K1], Uses = [GP] in {
Eric Christopher3c999a22007-10-26 04:00:13 +0000287 class JumpLink<bits<6> op, string instr_asm>:
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000288 FJ< op,
289 (outs),
290 (ins calltarget:$target),
291 !strconcat(instr_asm, " $target"),
292 [(MipsJmpLink imm:$target)], IIBranch>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000293
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000294 let rd=31 in
295 class JumpLinkReg<bits<6> op, bits<6> func, string instr_asm>:
296 FR< op,
297 func,
298 (outs),
299 (ins CPURegs:$rs),
300 !strconcat(instr_asm, " $rs"),
301 [(MipsJmpLink CPURegs:$rs)], IIBranch>;
302
303 class BranchLink<string instr_asm>:
304 FI< 0x1,
305 (outs),
306 (ins CPURegs:$rs, brtarget:$target),
307 !strconcat(instr_asm, " $rs, $target"),
308 [], IIBranch>;
309}
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000310
Eric Christopher3c999a22007-10-26 04:00:13 +0000311// Mul, Div
312class MulDiv<bits<6> func, string instr_asm, InstrItinClass itin>:
313 FR< 0x00,
314 func,
Evan Cheng64d80e32007-07-19 01:14:50 +0000315 (outs),
Eric Christopher3c999a22007-10-26 04:00:13 +0000316 (ins CPURegs:$a, CPURegs:$b),
317 !strconcat(instr_asm, " $a, $b"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000318 [], itin>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000319
Eric Christopher3c999a22007-10-26 04:00:13 +0000320// Move from Hi/Lo
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000321class MoveFromTo<bits<6> func, string instr_asm>:
Eric Christopher3c999a22007-10-26 04:00:13 +0000322 FR< 0x00,
323 func,
324 (outs CPURegs:$dst),
Evan Cheng64d80e32007-07-19 01:14:50 +0000325 (ins),
Eric Christopher3c999a22007-10-26 04:00:13 +0000326 !strconcat(instr_asm, " $dst"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000327 [], IIHiLo>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000328
329// Count Leading Ones/Zeros in Word
330class CountLeading<bits<6> func, string instr_asm>:
Eric Christopher3c999a22007-10-26 04:00:13 +0000331 FR< 0x1c,
332 func,
333 (outs CPURegs:$dst),
334 (ins CPURegs:$src),
335 !strconcat(instr_asm, " $dst, $src"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000336 [], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000337
Eric Christopher3c999a22007-10-26 04:00:13 +0000338class EffectiveAddress<string instr_asm> :
339 FI<0x09,
340 (outs CPURegs:$dst),
Bruno Cardoso Lopesb42abeb2007-09-24 20:15:11 +0000341 (ins mem:$addr),
342 instr_asm,
343 [(set CPURegs:$dst, addr:$addr)], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000344
345//===----------------------------------------------------------------------===//
346// Pseudo instructions
347//===----------------------------------------------------------------------===//
348
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000349// As stack alignment is always done with addiu, we need a 16-bit immediate
Evan Cheng071a2792007-09-11 19:55:27 +0000350let Defs = [SP], Uses = [SP] in {
Bruno Cardoso Lopese78080c2007-10-09 02:55:31 +0000351def ADJCALLSTACKDOWN : PseudoInstMips<(outs), (ins uimm16:$amt),
352 "!ADJCALLSTACKDOWN $amt",
353 [(callseq_start imm:$amt)]>;
Bill Wendling0f8d9c02007-11-13 00:44:25 +0000354def ADJCALLSTACKUP : PseudoInstMips<(outs), (ins uimm16:$amt1, uimm16:$amt2),
355 "!ADJCALLSTACKUP $amt1",
356 [(callseq_end imm:$amt1, imm:$amt2)]>;
Evan Cheng071a2792007-09-11 19:55:27 +0000357}
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000358
Evan Cheng6e141fd2007-12-12 23:12:09 +0000359let isImplicitDef = 1 in
Bruno Cardoso Lopese78080c2007-10-09 02:55:31 +0000360def IMPLICIT_DEF_CPURegs : PseudoInstMips<(outs CPURegs:$dst), (ins),
361 "!IMPLICIT_DEF $dst",
362 [(set CPURegs:$dst, (undef))]>;
363
Eric Christopher3c999a22007-10-26 04:00:13 +0000364// When handling PIC code the assembler needs .cpload and .cprestore
365// directives. If the real instructions corresponding these directives
366// are used, we have the same behavior, but get also a bunch of warnings
Bruno Cardoso Lopese78080c2007-10-09 02:55:31 +0000367// from the assembler.
Eric Christopher3c999a22007-10-26 04:00:13 +0000368def CPLOAD: PseudoInstMips<(outs), (ins CPURegs:$reg),
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000369 ".set noreorder\n\t.cpload $reg\n\t.set reorder\n", []>;
Eric Christopher3c999a22007-10-26 04:00:13 +0000370def CPRESTORE: PseudoInstMips<(outs), (ins uimm16:$loc),
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000371 ".cprestore $loc\n", []>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000372
373//===----------------------------------------------------------------------===//
374// Instruction definition
375//===----------------------------------------------------------------------===//
376
377//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000378// MipsI Instructions
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000379//===----------------------------------------------------------------------===//
380
381// Arithmetic
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000382
383// ADDiu just accept 16-bit immediates but we handle this on Pat's.
384// immZExt32 is used here so it can match GlobalAddress immediates.
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000385def ADDiu : ArithI<0x09, "addiu", add, uimm16, immZExt16>;
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000386def ADDi : ArithI<0x08, "addi", add, simm16, immSExt16>;
387def MUL : ArithR<0x1c, 0x02, "mul", mul, IIImul>;
388def ADDu : ArithR<0x00, 0x21, "addu", add, IIAlu>;
389def SUBu : ArithR<0x00, 0x23, "subu", sub, IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000390def ADD : ArithOverflowR<0x00, 0x20, "add">;
391def SUB : ArithOverflowR<0x00, 0x22, "sub">;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000392
393// Logical
394def AND : LogicR<0x24, "and", and>;
395def OR : LogicR<0x25, "or", or>;
396def XOR : LogicR<0x26, "xor", xor>;
397def ANDi : LogicI<0x0c, "andi", and>;
398def ORi : LogicI<0x0d, "ori", or>;
399def XORi : LogicI<0x0e, "xori", xor>;
400def NOR : LogicNOR<0x00, 0x27, "nor">;
401
Eric Christopher3c999a22007-10-26 04:00:13 +0000402// Shifts
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000403def SLL : LogicR_shift_imm<0x00, "sll", shl>;
404def SRL : LogicR_shift_imm<0x02, "srl", srl>;
405def SRA : LogicR_shift_imm<0x03, "sra", sra>;
406def SLLV : LogicR_shift_reg<0x04, "sllv", shl>;
407def SRLV : LogicR_shift_reg<0x06, "srlv", srl>;
408def SRAV : LogicR_shift_reg<0x07, "srav", sra>;
409
410// Load Upper Immediate
411def LUi : LoadUpper<0x0f, "lui">;
412
413// Load/Store
414def LB : LoadM<0x20, "lb", sextloadi8>;
415def LBu : LoadM<0x24, "lbu", zextloadi8>;
416def LH : LoadM<0x21, "lh", sextloadi16>;
417def LHu : LoadM<0x25, "lhu", zextloadi16>;
418def LW : LoadM<0x23, "lw", load>;
419def SB : StoreM<0x28, "sb", truncstorei8>;
420def SH : StoreM<0x29, "sh", truncstorei16>;
421def SW : StoreM<0x2b, "sw", store>;
422
423// Conditional Branch
424def BEQ : CBranch<0x04, "beq", seteq>;
425def BNE : CBranch<0x05, "bne", setne>;
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000426
Eric Christopher3c999a22007-10-26 04:00:13 +0000427let rt=1 in
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000428def BGEZ : CBranchZero<0x01, "bgez", setge>;
429
430let rt=0 in {
431def BGTZ : CBranchZero<0x07, "bgtz", setgt>;
432def BLEZ : CBranchZero<0x07, "blez", setle>;
433def BLTZ : CBranchZero<0x01, "bltz", setlt>;
434}
435
436// Set Condition Code
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000437def SLT : SetCC_R<0x00, 0x2a, "slt", setlt>;
438def SLTu : SetCC_R<0x00, 0x2b, "sltu", setult>;
439def SLTi : SetCC_I<0x0a, "slti", setlt, simm16, immSExt16>;
440def SLTiu : SetCC_I<0x0b, "sltiu", setult, uimm16, immZExt16>;
441
442// Unconditional jump
443def J : JumpFJ<0x02, "j">;
444def JR : JumpFR<0x00, 0x08, "jr">;
445
446// Jump and Link (Call)
447def JAL : JumpLink<0x03, "jal">;
448def JALR : JumpLinkReg<0x00, 0x09, "jalr">;
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000449def BGEZAL : BranchLink<"bgezal">;
450def BLTZAL : BranchLink<"bltzal">;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000451
452// MulDiv and Move From Hi/Lo operations, have
453// their correpondent SDNodes created on ISelDAG.
454// Special Mul, Div operations
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000455def MULT : MulDiv<0x18, "mult", IIImul>;
456def MULTu : MulDiv<0x19, "multu", IIImul>;
457def DIV : MulDiv<0x1a, "div", IIIdiv>;
458def DIVu : MulDiv<0x1b, "divu", IIIdiv>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000459
Eric Christopher3c999a22007-10-26 04:00:13 +0000460// Move From Hi/Lo
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000461def MFHI : MoveFromTo<0x10, "mfhi">;
462def MFLO : MoveFromTo<0x12, "mflo">;
463def MTHI : MoveFromTo<0x11, "mthi">;
464def MTLO : MoveFromTo<0x13, "mtlo">;
465
466// Count Leading
Eric Christopher3c999a22007-10-26 04:00:13 +0000467// CLO/CLZ are part of the newer MIPS32(tm) instruction
468// set and not older Mips I keep this for future use
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000469// though.
Eric Christopher3c999a22007-10-26 04:00:13 +0000470//def CLO : CountLeading<0x21, "clo">;
471//def CLZ : CountLeading<0x20, "clz">;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000472
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000473// MADD*/MSUB* are not part of MipsI either.
474//def MADD : MArithR<0x00, "madd">;
475//def MADDU : MArithR<0x01, "maddu">;
476//def MSUB : MArithR<0x04, "msub">;
477//def MSUBU : MArithR<0x05, "msubu">;
478
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000479// No operation
480let addr=0 in
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000481def NOP : FJ<0, (outs), (ins), "nop", [], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000482
Eric Christopher3c999a22007-10-26 04:00:13 +0000483// Ret instruction - as mips does not have "ret" a
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000484// jr $ra must be generated.
Evan Chengffbacca2007-07-21 00:34:19 +0000485let isReturn=1, isTerminator=1, hasDelaySlot=1,
Eric Christopher3c999a22007-10-26 04:00:13 +0000486 isBarrier=1, hasCtrlDep=1, rs=0, rt=0, shamt=0 in
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000487{
Evan Cheng64d80e32007-07-19 01:14:50 +0000488 def RET : FR <0x00, 0x02, (outs), (ins CPURegs:$target),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000489 "jr $target", [(MipsRet CPURegs:$target)], IIBranch>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000490}
491
Eric Christopher3c999a22007-10-26 04:00:13 +0000492// FrameIndexes are legalized when they are operands from load/store
Bruno Cardoso Lopesb42abeb2007-09-24 20:15:11 +0000493// instructions. The same not happens for stack address copies, so an
494// add op with mem ComplexPattern is used and the stack address copy
495// can be matched. It's similar to Sparc LEA_ADDRi
496def LEA_ADDiu : EffectiveAddress<"addiu $dst, ${addr:stackloc}">;
497
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000498//===----------------------------------------------------------------------===//
499// Arbitrary patterns that map to one or more instructions
500//===----------------------------------------------------------------------===//
501
502// Small immediates
Eric Christopher3c999a22007-10-26 04:00:13 +0000503def : Pat<(i32 immSExt16:$in),
Bruno Cardoso Lopes332a3d22007-07-11 22:47:02 +0000504 (ADDiu ZERO, imm:$in)>;
Eric Christopher3c999a22007-10-26 04:00:13 +0000505def : Pat<(i32 immZExt16:$in),
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000506 (ORi ZERO, imm:$in)>;
507
508// Arbitrary immediates
509def : Pat<(i32 imm:$imm),
510 (ORi (LUi (HI16 imm:$imm)), (LO16 imm:$imm))>;
511
512// Call
513def : Pat<(MipsJmpLink (i32 tglobaladdr:$dst)),
514 (JAL tglobaladdr:$dst)>;
515def : Pat<(MipsJmpLink (i32 texternalsym:$dst)),
516 (JAL texternalsym:$dst)>;
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000517def : Pat<(MipsJmpLink CPURegs:$dst),
518 (JALR CPURegs:$dst)>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000519
520// GlobalAddress, Constant Pool, ExternalSymbol, and JumpTable
521def : Pat<(MipsHi tglobaladdr:$in), (LUi tglobaladdr:$in)>;
522def : Pat<(MipsLo tglobaladdr:$in), (ADDiu ZERO, tglobaladdr:$in)>;
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000523def : Pat<(add CPURegs:$hi, (MipsLo tglobaladdr:$lo)),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000524 (ADDiu CPURegs:$hi, tglobaladdr:$lo)>;
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000525def : Pat<(MipsHi tjumptable:$in), (LUi tjumptable:$in)>;
526def : Pat<(MipsLo tjumptable:$in), (ADDiu ZERO, tjumptable:$in)>;
527def : Pat<(add CPURegs:$hi, (MipsLo tjumptable:$lo)),
528 (ADDiu CPURegs:$hi, tjumptable:$lo)>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000529
Eric Christopher3c999a22007-10-26 04:00:13 +0000530// Mips does not have not, so we increase the operation
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000531def : Pat<(not CPURegs:$in),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000532 (NOR CPURegs:$in, ZERO)>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000533
Eric Christopher3c999a22007-10-26 04:00:13 +0000534// extended load and stores
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000535def : Pat<(i32 (extloadi1 addr:$src)), (LBu addr:$src)>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000536def : Pat<(i32 (extloadi8 addr:$src)), (LBu addr:$src)>;
537def : Pat<(i32 (extloadi16 addr:$src)), (LHu addr:$src)>;
Eric Christopher3c999a22007-10-26 04:00:13 +0000538def : Pat<(truncstorei1 CPURegs:$src, addr:$addr),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000539 (SB CPURegs:$src, addr:$addr)>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000540
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000541// some peepholes
542def : Pat<(store (i32 0), addr:$dst), (SW ZERO, addr:$dst)>;
543
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000544///
545/// brcond patterns
546///
547
548// direct match equal/notequal zero branches
549def : Pat<(brcond (setne CPURegs:$lhs, 0), bb:$dst),
Bruno Cardoso Lopes332a3d22007-07-11 22:47:02 +0000550 (BNE CPURegs:$lhs, ZERO, bb:$dst)>;
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000551def : Pat<(brcond (seteq CPURegs:$lhs, 0), bb:$dst),
552 (BEQ CPURegs:$lhs, ZERO, bb:$dst)>;
Bruno Cardoso Lopes332a3d22007-07-11 22:47:02 +0000553
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000554def : Pat<(brcond (setge CPURegs:$lhs, CPURegs:$rhs), bb:$dst),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000555 (BGEZ (SUB CPURegs:$lhs, CPURegs:$rhs), bb:$dst)>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000556def : Pat<(brcond (setuge CPURegs:$lhs, CPURegs:$rhs), bb:$dst),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000557 (BGEZ (SUBu CPURegs:$lhs, CPURegs:$rhs), bb:$dst)>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000558
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000559def : Pat<(brcond (setgt CPURegs:$lhs, CPURegs:$rhs), bb:$dst),
560 (BGTZ (SUB CPURegs:$lhs, CPURegs:$rhs), bb:$dst)>;
561def : Pat<(brcond (setugt CPURegs:$lhs, CPURegs:$rhs), bb:$dst),
562 (BGTZ (SUBu CPURegs:$lhs, CPURegs:$rhs), bb:$dst)>;
563
564def : Pat<(brcond (setle CPURegs:$lhs, CPURegs:$rhs), bb:$dst),
565 (BLEZ (SUB CPURegs:$lhs, CPURegs:$rhs), bb:$dst)>;
566def : Pat<(brcond (setule CPURegs:$lhs, CPURegs:$rhs), bb:$dst),
567 (BLEZ (SUBu CPURegs:$lhs, CPURegs:$rhs), bb:$dst)>;
568
569def : Pat<(brcond (setlt CPURegs:$lhs, immSExt16:$rhs), bb:$dst),
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000570 (BNE (SLTi CPURegs:$lhs, immSExt16:$rhs), ZERO, bb:$dst)>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000571def : Pat<(brcond (setult CPURegs:$lhs, immZExt16:$rhs), bb:$dst),
572 (BNE (SLTiu CPURegs:$lhs, immZExt16:$rhs), ZERO, bb:$dst)>;
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000573def : Pat<(brcond (setlt CPURegs:$lhs, CPURegs:$rhs), bb:$dst),
574 (BNE (SLT CPURegs:$lhs, CPURegs:$rhs), ZERO, bb:$dst)>;
575def : Pat<(brcond (setult CPURegs:$lhs, CPURegs:$rhs), bb:$dst),
576 (BNE (SLTu CPURegs:$lhs, CPURegs:$rhs), ZERO, bb:$dst)>;
577
578def : Pat<(brcond (setlt CPURegs:$lhs, CPURegs:$rhs), bb:$dst),
579 (BLTZ (SUB CPURegs:$lhs, CPURegs:$rhs), bb:$dst)>;
580def : Pat<(brcond (setult CPURegs:$lhs, CPURegs:$rhs), bb:$dst),
581 (BLTZ (SUBu CPURegs:$lhs, CPURegs:$rhs), bb:$dst)>;
582
583// generic brcond pattern
584def : Pat<(brcond CPURegs:$cond, bb:$dst),
585 (BNE CPURegs:$cond, ZERO, bb:$dst)>;
586
587///
Eric Christopher3c999a22007-10-26 04:00:13 +0000588/// setcc patterns, only matched when there
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000589/// is no brcond following a setcc operation
590///
591
592// setcc 2 register operands
593def : Pat<(setle CPURegs:$lhs, CPURegs:$rhs),
594 (XORi (SLT CPURegs:$rhs, CPURegs:$lhs), 1)>;
595def : Pat<(setule CPURegs:$lhs, CPURegs:$rhs),
596 (XORi (SLTu CPURegs:$rhs, CPURegs:$lhs), 1)>;
597
598def : Pat<(setgt CPURegs:$lhs, CPURegs:$rhs),
599 (SLT CPURegs:$rhs, CPURegs:$lhs)>;
600def : Pat<(setugt CPURegs:$lhs, CPURegs:$rhs),
601 (SLTu CPURegs:$rhs, CPURegs:$lhs)>;
602
603def : Pat<(setge CPURegs:$lhs, CPURegs:$rhs),
604 (XORi (SLT CPURegs:$lhs, CPURegs:$rhs), 1)>;
605def : Pat<(setuge CPURegs:$lhs, CPURegs:$rhs),
606 (XORi (SLTu CPURegs:$lhs, CPURegs:$rhs), 1)>;
607
608def : Pat<(setne CPURegs:$lhs, CPURegs:$rhs),
Eric Christopher3c999a22007-10-26 04:00:13 +0000609 (OR (SLT CPURegs:$lhs, CPURegs:$rhs),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000610 (SLT CPURegs:$rhs, CPURegs:$lhs))>;
611
612def : Pat<(seteq CPURegs:$lhs, CPURegs:$rhs),
Eric Christopher3c999a22007-10-26 04:00:13 +0000613 (XORi (OR (SLT CPURegs:$lhs, CPURegs:$rhs),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000614 (SLT CPURegs:$rhs, CPURegs:$lhs)), 1)>;
Eric Christopher3c999a22007-10-26 04:00:13 +0000615
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000616// setcc reg/imm operands
617def : Pat<(setge CPURegs:$lhs, immSExt16:$rhs),
618 (XORi (SLTi CPURegs:$lhs, immSExt16:$rhs), 1)>;
619def : Pat<(setuge CPURegs:$lhs, immZExt16:$rhs),
620 (XORi (SLTiu CPURegs:$lhs, immZExt16:$rhs), 1)>;