blob: 2b9e94191dbac8d565711e05386b3199f81499c7 [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
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000020def SDT_MipsRet : SDTypeProfile<0, 1, [SDTCisInt<0>]>;
21def SDT_MipsJmpLink : SDTypeProfile<0, 1, [SDTCisVT<0, iPTR>]>;
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +000022def SDT_MipsSelectCC : SDTypeProfile<1, 3, [SDTCisSameAs<0, 2>,
23 SDTCisSameAs<2, 3>, SDTCisInt<1>]>;
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +000024def SDT_MipsCMov : SDTypeProfile<1, 4, [SDTCisSameAs<0, 1>,
25 SDTCisSameAs<1, 2>, SDTCisSameAs<3, 4>,
26 SDTCisInt<4>]>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000027def SDT_MipsCallSeqStart : SDCallSeqStart<[SDTCisVT<0, i32>]>;
28def SDT_MipsCallSeqEnd : SDCallSeqEnd<[SDTCisVT<0, i32>, SDTCisVT<1, i32>]>;
29
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000030// Call
Bruno Cardoso Lopes9201b102010-01-19 17:00:43 +000031def MipsJmpLink : SDNode<"MipsISD::JmpLink",SDT_MipsJmpLink,
Chris Lattner60e9eac2010-03-19 05:33:51 +000032 [SDNPHasChain, SDNPOutFlag, SDNPOptInFlag,
33 SDNPVariadic]>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000034
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +000035// Hi and Lo nodes are used to handle global addresses. Used on
36// MipsISelLowering to lower stuff like GlobalAddress, ExternalSymbol
37// static model. (nothing to do with Mips Registers Hi and Lo)
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +000038def MipsHi : SDNode<"MipsISD::Hi", SDTIntUnaryOp>;
39def MipsLo : SDNode<"MipsISD::Lo", SDTIntUnaryOp>;
40def MipsGPRel : SDNode<"MipsISD::GPRel", SDTIntUnaryOp>;
Bruno Cardoso Lopese78080c2007-10-09 02:55:31 +000041
Eric Christopher3c999a22007-10-26 04:00:13 +000042// Return
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000043def MipsRet : SDNode<"MipsISD::Ret", SDT_MipsRet, [SDNPHasChain,
44 SDNPOptInFlag]>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000045
46// These are target-independent nodes, but have target-specific formats.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000047def callseq_start : SDNode<"ISD::CALLSEQ_START", SDT_MipsCallSeqStart,
48 [SDNPHasChain, SDNPOutFlag]>;
49def callseq_end : SDNode<"ISD::CALLSEQ_END", SDT_MipsCallSeqEnd,
50 [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
Bill Wendling0f8d9c02007-11-13 00:44:25 +000051
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000052// Select Condition Code
53def MipsSelectCC : SDNode<"MipsISD::SelectCC", SDT_MipsSelectCC>;
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +000054
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +000055// Conditional Move
56def MipsCMov : SDNode<"MipsISD::CMov", SDT_MipsCMov>;
57
Bruno Cardoso Lopese78080c2007-10-09 02:55:31 +000058//===----------------------------------------------------------------------===//
59// Mips Instruction Predicate Definitions.
60//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes65ad4522008-08-08 06:16:31 +000061def HasSEInReg : Predicate<"Subtarget.hasSEInReg()">;
62def HasBitCount : Predicate<"Subtarget.hasBitCount()">;
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +000063def HasSwap : Predicate<"Subtarget.hasSwap()">;
64def HasCondMov : Predicate<"Subtarget.hasCondMov()">;
Bruno Cardoso Lopese78080c2007-10-09 02:55:31 +000065
66//===----------------------------------------------------------------------===//
67// Mips Operand, Complex Patterns and Transformations Definitions.
68//===----------------------------------------------------------------------===//
69
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000070// Instruction operand types
71def brtarget : Operand<OtherVT>;
72def calltarget : Operand<i32>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000073def simm16 : Operand<i32>;
Eric Christopher3c999a22007-10-26 04:00:13 +000074def shamt : Operand<i32>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000075
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +000076// Unsigned Operand
77def uimm16 : Operand<i32> {
78 let PrintMethod = "printUnsignedImm";
79}
80
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000081// Address operand
82def mem : Operand<i32> {
83 let PrintMethod = "printMemOperand";
84 let MIOperandInfo = (ops simm16, CPURegs);
85}
86
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000087// Transformation Function - get the lower 16 bits.
88def LO16 : SDNodeXForm<imm, [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000089 return getI32Imm((unsigned)N->getZExtValue() & 0xFFFF);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000090}]>;
91
92// Transformation Function - get the higher 16 bits.
93def HI16 : SDNodeXForm<imm, [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000094 return getI32Imm((unsigned)N->getZExtValue() >> 16);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000095}]>;
96
97// Node immediate fits as 16-bit sign extended on target immediate.
98// e.g. addi, andi
99def immSExt16 : PatLeaf<(imm), [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000100 if (N->getValueType(0) == MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000101 return (int32_t)N->getZExtValue() == (short)N->getZExtValue();
Eric Christopher3c999a22007-10-26 04:00:13 +0000102 else
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000103 return (int64_t)N->getZExtValue() == (short)N->getZExtValue();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000104}]>;
105
106// Node immediate fits as 16-bit zero extended on target immediate.
107// The LO16 param means that only the lower 16 bits of the node
108// immediate are caught.
109// e.g. addiu, sltiu
110def immZExt16 : PatLeaf<(imm), [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000111 if (N->getValueType(0) == MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000112 return (uint32_t)N->getZExtValue() == (unsigned short)N->getZExtValue();
Eric Christopher3c999a22007-10-26 04:00:13 +0000113 else
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000114 return (uint64_t)N->getZExtValue() == (unsigned short)N->getZExtValue();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000115}], LO16>;
116
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000117// shamt field must fit in 5 bits.
118def immZExt5 : PatLeaf<(imm), [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000119 return N->getZExtValue() == ((N->getZExtValue()) & 0x1f) ;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000120}]>;
121
Eric Christopher3c999a22007-10-26 04:00:13 +0000122// Mips Address Mode! SDNode frameindex could possibily be a match
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000123// since load and store instructions from stack used it.
Chris Lattnereb079a32010-02-14 21:53:19 +0000124def addr : ComplexPattern<iPTR, 2, "SelectAddr", [frameindex], []>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000125
126//===----------------------------------------------------------------------===//
127// Instructions specific format
128//===----------------------------------------------------------------------===//
129
130// Arithmetic 3 register operands
Eric Christopher3c999a22007-10-26 04:00:13 +0000131let isCommutable = 1 in
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000132class ArithR<bits<6> op, bits<6> func, string instr_asm, SDNode OpNode,
Eric Christopher3c999a22007-10-26 04:00:13 +0000133 InstrItinClass itin>:
134 FR< op,
135 func,
136 (outs CPURegs:$dst),
137 (ins CPURegs:$b, CPURegs:$c),
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000138 !strconcat(instr_asm, "\t$dst, $b, $c"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000139 [(set CPURegs:$dst, (OpNode CPURegs:$b, CPURegs:$c))], itin>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000140
Eric Christopher3c999a22007-10-26 04:00:13 +0000141let isCommutable = 1 in
142class ArithOverflowR<bits<6> op, bits<6> func, string instr_asm>:
143 FR< op,
144 func,
145 (outs CPURegs:$dst),
146 (ins CPURegs:$b, CPURegs:$c),
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000147 !strconcat(instr_asm, "\t$dst, $b, $c"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000148 [], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000149
150// Arithmetic 2 register operands
Eric Christopher3c999a22007-10-26 04:00:13 +0000151class ArithI<bits<6> op, string instr_asm, SDNode OpNode,
152 Operand Od, PatLeaf imm_type> :
153 FI< op,
154 (outs CPURegs:$dst),
155 (ins CPURegs:$b, Od:$c),
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000156 !strconcat(instr_asm, "\t$dst, $b, $c"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000157 [(set CPURegs:$dst, (OpNode CPURegs:$b, imm_type:$c))], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000158
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000159class ArithOverflowI<bits<6> op, string instr_asm, SDNode OpNode,
160 Operand Od, PatLeaf imm_type> :
161 FI< op,
162 (outs CPURegs:$dst),
163 (ins CPURegs:$b, Od:$c),
164 !strconcat(instr_asm, "\t$dst, $b, $c"),
165 [], IIAlu>;
166
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000167// Arithmetic Multiply ADD/SUB
168let rd=0 in
Eric Christopher3c999a22007-10-26 04:00:13 +0000169class MArithR<bits<6> func, string instr_asm> :
170 FR< 0x1c,
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000171 func,
Eric Christopher3c999a22007-10-26 04:00:13 +0000172 (outs CPURegs:$rs),
173 (ins CPURegs:$rt),
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000174 !strconcat(instr_asm, "\t$rs, $rt"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000175 [], IIImul>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000176
177// Logical
178class LogicR<bits<6> func, string instr_asm, SDNode OpNode>:
Eric Christopher3c999a22007-10-26 04:00:13 +0000179 FR< 0x00,
180 func,
181 (outs CPURegs:$dst),
182 (ins CPURegs:$b, CPURegs:$c),
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000183 !strconcat(instr_asm, "\t$dst, $b, $c"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000184 [(set CPURegs:$dst, (OpNode CPURegs:$b, CPURegs:$c))], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000185
186class LogicI<bits<6> op, string instr_asm, SDNode OpNode>:
187 FI< op,
Evan Cheng64d80e32007-07-19 01:14:50 +0000188 (outs CPURegs:$dst),
189 (ins CPURegs:$b, uimm16:$c),
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000190 !strconcat(instr_asm, "\t$dst, $b, $c"),
Bruno Cardoso Lopes0af5e092008-06-06 06:37:31 +0000191 [(set CPURegs:$dst, (OpNode CPURegs:$b, immZExt16:$c))], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000192
193class LogicNOR<bits<6> op, bits<6> func, string instr_asm>:
Eric Christopher3c999a22007-10-26 04:00:13 +0000194 FR< op,
195 func,
196 (outs CPURegs:$dst),
197 (ins CPURegs:$b, CPURegs:$c),
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000198 !strconcat(instr_asm, "\t$dst, $b, $c"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000199 [(set CPURegs:$dst, (not (or CPURegs:$b, CPURegs:$c)))], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000200
201// Shifts
202let rt = 0 in
203class LogicR_shift_imm<bits<6> func, string instr_asm, SDNode OpNode>:
Eric Christopher3c999a22007-10-26 04:00:13 +0000204 FR< 0x00,
205 func,
Evan Cheng64d80e32007-07-19 01:14:50 +0000206 (outs CPURegs:$dst),
207 (ins CPURegs:$b, shamt:$c),
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000208 !strconcat(instr_asm, "\t$dst, $b, $c"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000209 [(set CPURegs:$dst, (OpNode CPURegs:$b, immZExt5:$c))], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000210
211class LogicR_shift_reg<bits<6> func, string instr_asm, SDNode OpNode>:
Eric Christopher3c999a22007-10-26 04:00:13 +0000212 FR< 0x00,
213 func,
Evan Cheng64d80e32007-07-19 01:14:50 +0000214 (outs CPURegs:$dst),
215 (ins CPURegs:$b, CPURegs:$c),
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000216 !strconcat(instr_asm, "\t$dst, $b, $c"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000217 [(set CPURegs:$dst, (OpNode CPURegs:$b, CPURegs:$c))], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000218
219// Load Upper Imediate
220class LoadUpper<bits<6> op, string instr_asm>:
221 FI< op,
Evan Cheng64d80e32007-07-19 01:14:50 +0000222 (outs CPURegs:$dst),
223 (ins uimm16:$imm),
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000224 !strconcat(instr_asm, "\t$dst, $imm"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000225 [], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000226
Eric Christopher3c999a22007-10-26 04:00:13 +0000227// Memory Load/Store
Dan Gohman15511cf2008-12-03 18:15:48 +0000228let canFoldAsLoad = 1, hasDelaySlot = 1 in
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000229class LoadM<bits<6> op, string instr_asm, PatFrag OpNode>:
230 FI< op,
Evan Cheng64d80e32007-07-19 01:14:50 +0000231 (outs CPURegs:$dst),
232 (ins mem:$addr),
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000233 !strconcat(instr_asm, "\t$dst, $addr"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000234 [(set CPURegs:$dst, (OpNode addr:$addr))], IILoad>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000235
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000236class StoreM<bits<6> op, string instr_asm, PatFrag OpNode>:
237 FI< op,
Evan Cheng64d80e32007-07-19 01:14:50 +0000238 (outs),
239 (ins CPURegs:$dst, mem:$addr),
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000240 !strconcat(instr_asm, "\t$dst, $addr"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000241 [(OpNode CPURegs:$dst, addr:$addr)], IIStore>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000242
243// Conditional Branch
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000244let isBranch = 1, isTerminator=1, hasDelaySlot = 1 in {
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000245class CBranch<bits<6> op, string instr_asm, PatFrag cond_op>:
246 FI< op,
Evan Cheng64d80e32007-07-19 01:14:50 +0000247 (outs),
248 (ins CPURegs:$a, CPURegs:$b, brtarget:$offset),
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000249 !strconcat(instr_asm, "\t$a, $b, $offset"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000250 [(brcond (cond_op CPURegs:$a, CPURegs:$b), bb:$offset)],
251 IIBranch>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000252
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000253
254class CBranchZero<bits<6> op, string instr_asm, PatFrag cond_op>:
255 FI< op,
256 (outs),
257 (ins CPURegs:$src, brtarget:$offset),
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000258 !strconcat(instr_asm, "\t$src, $offset"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000259 [(brcond (cond_op CPURegs:$src, 0), bb:$offset)],
260 IIBranch>;
Eric Christopher3c999a22007-10-26 04:00:13 +0000261}
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000262
Eric Christopher3c999a22007-10-26 04:00:13 +0000263// SetCC
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000264class SetCC_R<bits<6> op, bits<6> func, string instr_asm,
265 PatFrag cond_op>:
266 FR< op,
267 func,
Evan Cheng64d80e32007-07-19 01:14:50 +0000268 (outs CPURegs:$dst),
269 (ins CPURegs:$b, CPURegs:$c),
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000270 !strconcat(instr_asm, "\t$dst, $b, $c"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000271 [(set CPURegs:$dst, (cond_op CPURegs:$b, CPURegs:$c))],
272 IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000273
274class SetCC_I<bits<6> op, string instr_asm, PatFrag cond_op,
275 Operand Od, PatLeaf imm_type>:
276 FI< op,
Evan Cheng64d80e32007-07-19 01:14:50 +0000277 (outs CPURegs:$dst),
278 (ins CPURegs:$b, Od:$c),
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000279 !strconcat(instr_asm, "\t$dst, $b, $c"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000280 [(set CPURegs:$dst, (cond_op CPURegs:$b, imm_type:$c))],
281 IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000282
283// Unconditional branch
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000284let isBranch=1, isTerminator=1, isBarrier=1, hasDelaySlot = 1 in
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000285class JumpFJ<bits<6> op, string instr_asm>:
286 FJ< op,
Evan Cheng64d80e32007-07-19 01:14:50 +0000287 (outs),
288 (ins brtarget:$target),
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000289 !strconcat(instr_asm, "\t$target"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000290 [(br bb:$target)], IIBranch>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000291
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000292let isBranch=1, isTerminator=1, isBarrier=1, rd=0, hasDelaySlot = 1 in
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000293class JumpFR<bits<6> op, bits<6> func, string instr_asm>:
294 FR< op,
295 func,
Evan Cheng64d80e32007-07-19 01:14:50 +0000296 (outs),
297 (ins CPURegs:$target),
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000298 !strconcat(instr_asm, "\t$target"),
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000299 [(brind CPURegs:$target)], IIBranch>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000300
301// Jump and Link (Call)
Eric Christopher3c999a22007-10-26 04:00:13 +0000302let isCall=1, hasDelaySlot=1,
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000303 // All calls clobber the non-callee saved registers...
Jakob Stoklund Olesende12e432010-02-17 20:18:50 +0000304 Defs = [AT, V0, V1, A0, A1, A2, A3, T0, T1, T2, T3, T4, T5, T6, T7, T8, T9,
305 K0, K1, D0, D1, D2, D3, D4, D5, D6, D7, D8, D9], Uses = [GP] in {
Eric Christopher3c999a22007-10-26 04:00:13 +0000306 class JumpLink<bits<6> op, string instr_asm>:
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000307 FJ< op,
308 (outs),
Bruno Cardoso Lopes9201b102010-01-19 17:00:43 +0000309 (ins calltarget:$target, variable_ops),
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000310 !strconcat(instr_asm, "\t$target"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000311 [(MipsJmpLink imm:$target)], IIBranch>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000312
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000313 let rd=31 in
314 class JumpLinkReg<bits<6> op, bits<6> func, string instr_asm>:
315 FR< op,
316 func,
317 (outs),
Bruno Cardoso Lopes9201b102010-01-19 17:00:43 +0000318 (ins CPURegs:$rs, variable_ops),
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000319 !strconcat(instr_asm, "\t$rs"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000320 [(MipsJmpLink CPURegs:$rs)], IIBranch>;
321
322 class BranchLink<string instr_asm>:
323 FI< 0x1,
324 (outs),
Bruno Cardoso Lopes9201b102010-01-19 17:00:43 +0000325 (ins CPURegs:$rs, brtarget:$target, variable_ops),
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000326 !strconcat(instr_asm, "\t$rs, $target"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000327 [], IIBranch>;
328}
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000329
Eric Christopher3c999a22007-10-26 04:00:13 +0000330// Mul, Div
331class MulDiv<bits<6> func, string instr_asm, InstrItinClass itin>:
332 FR< 0x00,
333 func,
Evan Cheng64d80e32007-07-19 01:14:50 +0000334 (outs),
Eric Christopher3c999a22007-10-26 04:00:13 +0000335 (ins CPURegs:$a, CPURegs:$b),
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000336 !strconcat(instr_asm, "\t$a, $b"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000337 [], itin>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000338
Eric Christopher3c999a22007-10-26 04:00:13 +0000339// Move from Hi/Lo
Bruno Cardoso Lopes91ef8492008-08-02 19:42:36 +0000340class MoveFromLOHI<bits<6> func, string instr_asm>:
Eric Christopher3c999a22007-10-26 04:00:13 +0000341 FR< 0x00,
342 func,
343 (outs CPURegs:$dst),
Evan Cheng64d80e32007-07-19 01:14:50 +0000344 (ins),
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000345 !strconcat(instr_asm, "\t$dst"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000346 [], IIHiLo>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000347
Bruno Cardoso Lopes91ef8492008-08-02 19:42:36 +0000348class MoveToLOHI<bits<6> func, string instr_asm>:
349 FR< 0x00,
350 func,
351 (outs),
352 (ins CPURegs:$src),
353 !strconcat(instr_asm, "\t$src"),
354 [], IIHiLo>;
355
Eric Christopher3c999a22007-10-26 04:00:13 +0000356class EffectiveAddress<string instr_asm> :
357 FI<0x09,
358 (outs CPURegs:$dst),
Bruno Cardoso Lopesb42abeb2007-09-24 20:15:11 +0000359 (ins mem:$addr),
360 instr_asm,
361 [(set CPURegs:$dst, addr:$addr)], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000362
Bruno Cardoso Lopes65ad4522008-08-08 06:16:31 +0000363// Count Leading Ones/Zeros in Word
364class CountLeading<bits<6> func, string instr_asm, SDNode CountOp>:
365 FR< 0x1c, func, (outs CPURegs:$dst), (ins CPURegs:$src),
366 !strconcat(instr_asm, "\t$dst, $src"),
367 [(set CPURegs:$dst, (CountOp CPURegs:$src))], IIAlu>;
368
369// Sign Extend in Register.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000370class SignExtInReg<bits<6> func, string instr_asm, ValueType vt>:
371 FR< 0x3f, func, (outs CPURegs:$dst), (ins CPURegs:$src),
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000372 !strconcat(instr_asm, "\t$dst, $src"),
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000373 [(set CPURegs:$dst, (sext_inreg CPURegs:$src, vt))], NoItinerary>;
374
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000375// Byte Swap
376class ByteSwap<bits<6> func, string instr_asm>:
377 FR< 0x1f, func, (outs CPURegs:$dst), (ins CPURegs:$src),
378 !strconcat(instr_asm, "\t$dst, $src"),
379 [(set CPURegs:$dst, (bswap CPURegs:$src))], NoItinerary>;
380
381// Conditional Move
382class CondMov<bits<6> func, string instr_asm, PatLeaf MovCode>:
383 FR< 0x00, func, (outs CPURegs:$dst), (ins CPURegs:$F, CPURegs:$T,
384 CPURegs:$cond), !strconcat(instr_asm, "\t$dst, $T, $cond"),
385 [(set CPURegs:$dst, (MipsCMov CPURegs:$F, CPURegs:$T,
386 CPURegs:$cond, MovCode))], NoItinerary>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000387
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000388//===----------------------------------------------------------------------===//
389// Pseudo instructions
390//===----------------------------------------------------------------------===//
391
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000392// As stack alignment is always done with addiu, we need a 16-bit immediate
Evan Cheng071a2792007-09-11 19:55:27 +0000393let Defs = [SP], Uses = [SP] in {
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000394def ADJCALLSTACKDOWN : MipsPseudo<(outs), (ins uimm16:$amt),
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000395 "!ADJCALLSTACKDOWN $amt",
Chris Lattnere563bbc2008-10-11 22:08:30 +0000396 [(callseq_start timm:$amt)]>;
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000397def ADJCALLSTACKUP : MipsPseudo<(outs), (ins uimm16:$amt1, uimm16:$amt2),
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000398 "!ADJCALLSTACKUP $amt1",
Chris Lattnere563bbc2008-10-11 22:08:30 +0000399 [(callseq_end timm:$amt1, timm:$amt2)]>;
Evan Cheng071a2792007-09-11 19:55:27 +0000400}
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000401
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000402// Some assembly macros need to avoid pseudoinstructions and assembler
403// automatic reodering, we should reorder ourselves.
404def MACRO : MipsPseudo<(outs), (ins), ".set\tmacro", []>;
405def REORDER : MipsPseudo<(outs), (ins), ".set\treorder", []>;
406def NOMACRO : MipsPseudo<(outs), (ins), ".set\tnomacro", []>;
407def NOREORDER : MipsPseudo<(outs), (ins), ".set\tnoreorder", []>;
408
Eric Christopher3c999a22007-10-26 04:00:13 +0000409// When handling PIC code the assembler needs .cpload and .cprestore
410// directives. If the real instructions corresponding these directives
411// are used, we have the same behavior, but get also a bunch of warnings
Bruno Cardoso Lopese78080c2007-10-09 02:55:31 +0000412// from the assembler.
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000413def CPLOAD : MipsPseudo<(outs), (ins CPURegs:$picreg), ".cpload\t$picreg", []>;
414def CPRESTORE : MipsPseudo<(outs), (ins uimm16:$loc), ".cprestore\t$loc\n", []>;
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000415
416// The supported Mips ISAs dont have any instruction close to the SELECT_CC
417// operation. The solution is to create a Mips pseudo SELECT_CC instruction
418// (MipsSelectCC), use LowerSELECT_CC to generate this instruction and finally
419// replace it for real supported nodes into EmitInstrWithCustomInserter
Dan Gohman533297b2009-10-29 18:10:34 +0000420let usesCustomInserter = 1 in {
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000421 class PseudoSelCC<RegisterClass RC, string asmstr>:
422 MipsPseudo<(outs RC:$dst), (ins CPURegs:$CmpRes, RC:$T, RC:$F), asmstr,
423 [(set RC:$dst, (MipsSelectCC CPURegs:$CmpRes, RC:$T, RC:$F))]>;
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000424}
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000425
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000426def Select_CC : PseudoSelCC<CPURegs, "# MipsSelect_CC_i32">;
427
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000428//===----------------------------------------------------------------------===//
429// Instruction definition
430//===----------------------------------------------------------------------===//
431
432//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000433// MipsI Instructions
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000434//===----------------------------------------------------------------------===//
435
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000436/// Arithmetic Instructions (ALU Immediate)
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000437def ADDiu : ArithI<0x09, "addiu", add, simm16, immSExt16>;
438def ADDi : ArithOverflowI<0x08, "addi", add, simm16, immSExt16>;
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000439def SLTi : SetCC_I<0x0a, "slti", setlt, simm16, immSExt16>;
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000440def SLTiu : SetCC_I<0x0b, "sltiu", setult, simm16, immSExt16>;
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000441def ANDi : LogicI<0x0c, "andi", and>;
442def ORi : LogicI<0x0d, "ori", or>;
443def XORi : LogicI<0x0e, "xori", xor>;
444def LUi : LoadUpper<0x0f, "lui">;
445
446/// Arithmetic Instructions (3-Operand, R-Type)
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000447def ADDu : ArithR<0x00, 0x21, "addu", add, IIAlu>;
448def SUBu : ArithR<0x00, 0x23, "subu", sub, IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000449def ADD : ArithOverflowR<0x00, 0x20, "add">;
450def SUB : ArithOverflowR<0x00, 0x22, "sub">;
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000451def SLT : SetCC_R<0x00, 0x2a, "slt", setlt>;
452def SLTu : SetCC_R<0x00, 0x2b, "sltu", setult>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000453def AND : LogicR<0x24, "and", and>;
454def OR : LogicR<0x25, "or", or>;
455def XOR : LogicR<0x26, "xor", xor>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000456def NOR : LogicNOR<0x00, 0x27, "nor">;
457
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000458/// Shift Instructions
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000459def SLL : LogicR_shift_imm<0x00, "sll", shl>;
460def SRL : LogicR_shift_imm<0x02, "srl", srl>;
461def SRA : LogicR_shift_imm<0x03, "sra", sra>;
462def SLLV : LogicR_shift_reg<0x04, "sllv", shl>;
463def SRLV : LogicR_shift_reg<0x06, "srlv", srl>;
464def SRAV : LogicR_shift_reg<0x07, "srav", sra>;
465
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000466/// Load and Store Instructions
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000467def LB : LoadM<0x20, "lb", sextloadi8>;
468def LBu : LoadM<0x24, "lbu", zextloadi8>;
469def LH : LoadM<0x21, "lh", sextloadi16>;
470def LHu : LoadM<0x25, "lhu", zextloadi16>;
471def LW : LoadM<0x23, "lw", load>;
472def SB : StoreM<0x28, "sb", truncstorei8>;
473def SH : StoreM<0x29, "sh", truncstorei16>;
474def SW : StoreM<0x2b, "sw", store>;
475
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000476/// Jump and Branch Instructions
477def J : JumpFJ<0x02, "j">;
478def JR : JumpFR<0x00, 0x08, "jr">;
479def JAL : JumpLink<0x03, "jal">;
480def JALR : JumpLinkReg<0x00, 0x09, "jalr">;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000481def BEQ : CBranch<0x04, "beq", seteq>;
482def BNE : CBranch<0x05, "bne", setne>;
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000483
Eric Christopher3c999a22007-10-26 04:00:13 +0000484let rt=1 in
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000485 def BGEZ : CBranchZero<0x01, "bgez", setge>;
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000486
487let rt=0 in {
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000488 def BGTZ : CBranchZero<0x07, "bgtz", setgt>;
489 def BLEZ : CBranchZero<0x07, "blez", setle>;
490 def BLTZ : CBranchZero<0x01, "bltz", setlt>;
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000491}
492
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000493def BGEZAL : BranchLink<"bgezal">;
494def BLTZAL : BranchLink<"bltzal">;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000495
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000496let isReturn=1, isTerminator=1, hasDelaySlot=1,
497 isBarrier=1, hasCtrlDep=1, rs=0, rt=0, shamt=0 in
498 def RET : FR <0x00, 0x02, (outs), (ins CPURegs:$target),
499 "jr\t$target", [(MipsRet CPURegs:$target)], IIBranch>;
500
501/// Multiply and Divide Instructions.
Bruno Cardoso Lopes91ef8492008-08-02 19:42:36 +0000502let Defs = [HI, LO] in {
503 def MULT : MulDiv<0x18, "mult", IIImul>;
504 def MULTu : MulDiv<0x19, "multu", IIImul>;
505 def DIV : MulDiv<0x1a, "div", IIIdiv>;
506 def DIVu : MulDiv<0x1b, "divu", IIIdiv>;
507}
508
509let Defs = [HI] in
510 def MTHI : MoveToLOHI<0x11, "mthi">;
511let Defs = [LO] in
512 def MTLO : MoveToLOHI<0x13, "mtlo">;
513
514let Uses = [HI] in
515 def MFHI : MoveFromLOHI<0x10, "mfhi">;
516let Uses = [LO] in
517 def MFLO : MoveFromLOHI<0x12, "mflo">;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000518
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000519/// Sign Ext In Register Instructions.
520let Predicates = [HasSEInReg] in {
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +0000521 let shamt = 0x10, rs = 0 in
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000522 def SEB : SignExtInReg<0x21, "seb", i8>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000523
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +0000524 let shamt = 0x18, rs = 0 in
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000525 def SEH : SignExtInReg<0x20, "seh", i16>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000526}
527
Bruno Cardoso Lopes65ad4522008-08-08 06:16:31 +0000528/// Count Leading
529let Predicates = [HasBitCount] in {
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000530 let rt = 0 in
531 def CLZ : CountLeading<0b010110, "clz", ctlz>;
532}
533
534/// Byte Swap
535let Predicates = [HasSwap] in {
536 let shamt = 0x3, rs = 0 in
537 def WSBW : ByteSwap<0x20, "wsbw">;
538}
539
540/// Conditional Move
541def MIPS_CMOV_ZERO : PatLeaf<(i32 0)>;
542def MIPS_CMOV_NZERO : PatLeaf<(i32 1)>;
543
544let Predicates = [HasCondMov], isTwoAddress = 1 in {
545 def MOVN : CondMov<0x0a, "movn", MIPS_CMOV_NZERO>;
546 def MOVZ : CondMov<0x0b, "movz", MIPS_CMOV_ZERO>;
Bruno Cardoso Lopes65ad4522008-08-08 06:16:31 +0000547}
548
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000549/// No operation
550let addr=0 in
551 def NOP : FJ<0, (outs), (ins), "nop", [], IIAlu>;
552
Eric Christopher3c999a22007-10-26 04:00:13 +0000553// FrameIndexes are legalized when they are operands from load/store
Bruno Cardoso Lopesb42abeb2007-09-24 20:15:11 +0000554// instructions. The same not happens for stack address copies, so an
555// add op with mem ComplexPattern is used and the stack address copy
556// can be matched. It's similar to Sparc LEA_ADDRi
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000557def LEA_ADDiu : EffectiveAddress<"addiu\t$dst, ${addr:stackloc}">;
Bruno Cardoso Lopesb42abeb2007-09-24 20:15:11 +0000558
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000559// MADD*/MSUB* are not part of MipsI either.
560//def MADD : MArithR<0x00, "madd">;
561//def MADDU : MArithR<0x01, "maddu">;
562//def MSUB : MArithR<0x04, "msub">;
563//def MSUBU : MArithR<0x05, "msubu">;
564
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000565// MUL is a assembly macro in the current used ISAs. In recent ISA's
566// it is a real instruction.
567//def MUL : ArithR<0x1c, 0x02, "mul", mul, IIImul>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000568
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000569//===----------------------------------------------------------------------===//
570// Arbitrary patterns that map to one or more instructions
571//===----------------------------------------------------------------------===//
572
573// Small immediates
Eric Christopher3c999a22007-10-26 04:00:13 +0000574def : Pat<(i32 immSExt16:$in),
Bruno Cardoso Lopes332a3d22007-07-11 22:47:02 +0000575 (ADDiu ZERO, imm:$in)>;
Eric Christopher3c999a22007-10-26 04:00:13 +0000576def : Pat<(i32 immZExt16:$in),
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000577 (ORi ZERO, imm:$in)>;
578
579// Arbitrary immediates
580def : Pat<(i32 imm:$imm),
581 (ORi (LUi (HI16 imm:$imm)), (LO16 imm:$imm))>;
582
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000583// Carry patterns
584def : Pat<(subc CPURegs:$lhs, CPURegs:$rhs),
585 (SUBu CPURegs:$lhs, CPURegs:$rhs)>;
586def : Pat<(addc CPURegs:$lhs, CPURegs:$rhs),
587 (ADDu CPURegs:$lhs, CPURegs:$rhs)>;
588def : Pat<(addc CPURegs:$src, imm:$imm),
589 (ADDiu CPURegs:$src, imm:$imm)>;
590
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000591// Call
592def : Pat<(MipsJmpLink (i32 tglobaladdr:$dst)),
593 (JAL tglobaladdr:$dst)>;
594def : Pat<(MipsJmpLink (i32 texternalsym:$dst)),
595 (JAL texternalsym:$dst)>;
Chris Lattnere0d27532010-02-28 07:23:21 +0000596//def : Pat<(MipsJmpLink CPURegs:$dst),
597// (JALR CPURegs:$dst)>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000598
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000599// hi/lo relocs
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000600def : Pat<(MipsHi tglobaladdr:$in), (LUi tglobaladdr:$in)>;
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000601def : Pat<(add CPURegs:$hi, (MipsLo tglobaladdr:$lo)),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000602 (ADDiu CPURegs:$hi, tglobaladdr:$lo)>;
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000603
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000604def : Pat<(MipsHi tjumptable:$in), (LUi tjumptable:$in)>;
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000605def : Pat<(add CPURegs:$hi, (MipsLo tjumptable:$lo)),
606 (ADDiu CPURegs:$hi, tjumptable:$lo)>;
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000607
608def : Pat<(MipsHi tconstpool:$in), (LUi tconstpool:$in)>;
609def : Pat<(add CPURegs:$hi, (MipsLo tconstpool:$lo)),
610 (ADDiu CPURegs:$hi, tconstpool:$lo)>;
611
612// gp_rel relocs
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000613def : Pat<(add CPURegs:$gp, (MipsGPRel tglobaladdr:$in)),
614 (ADDiu CPURegs:$gp, tglobaladdr:$in)>;
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000615def : Pat<(add CPURegs:$gp, (MipsGPRel tconstpool:$in)),
616 (ADDiu CPURegs:$gp, tconstpool:$in)>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000617
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000618// Mips does not have "not", so we expand our way
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000619def : Pat<(not CPURegs:$in),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000620 (NOR CPURegs:$in, ZERO)>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000621
Eric Christopher3c999a22007-10-26 04:00:13 +0000622// extended load and stores
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000623def : Pat<(extloadi1 addr:$src), (LBu addr:$src)>;
624def : Pat<(extloadi8 addr:$src), (LBu addr:$src)>;
625def : Pat<(extloadi16 addr:$src), (LHu addr:$src)>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000626
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000627// peepholes
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000628def : Pat<(store (i32 0), addr:$dst), (SW ZERO, addr:$dst)>;
629
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000630// brcond patterns
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000631def : Pat<(brcond (setne CPURegs:$lhs, 0), bb:$dst),
Bruno Cardoso Lopes332a3d22007-07-11 22:47:02 +0000632 (BNE CPURegs:$lhs, ZERO, bb:$dst)>;
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000633def : Pat<(brcond (seteq CPURegs:$lhs, 0), bb:$dst),
634 (BEQ CPURegs:$lhs, ZERO, bb:$dst)>;
Bruno Cardoso Lopes332a3d22007-07-11 22:47:02 +0000635
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000636def : Pat<(brcond (setge CPURegs:$lhs, CPURegs:$rhs), bb:$dst),
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000637 (BEQ (SLT CPURegs:$lhs, CPURegs:$rhs), ZERO, bb:$dst)>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000638def : Pat<(brcond (setuge CPURegs:$lhs, CPURegs:$rhs), bb:$dst),
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000639 (BEQ (SLTu CPURegs:$lhs, CPURegs:$rhs), ZERO, bb:$dst)>;
640def : Pat<(brcond (setge CPURegs:$lhs, immSExt16:$rhs), bb:$dst),
641 (BEQ (SLTi CPURegs:$lhs, immSExt16:$rhs), ZERO, bb:$dst)>;
642def : Pat<(brcond (setuge CPURegs:$lhs, immSExt16:$rhs), bb:$dst),
643 (BEQ (SLTiu CPURegs:$lhs, immSExt16:$rhs), ZERO, bb:$dst)>;
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000644
645def : Pat<(brcond (setle CPURegs:$lhs, CPURegs:$rhs), bb:$dst),
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000646 (BEQ (SLT CPURegs:$rhs, CPURegs:$lhs), ZERO, bb:$dst)>;
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000647def : Pat<(brcond (setule CPURegs:$lhs, CPURegs:$rhs), bb:$dst),
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000648 (BEQ (SLTu CPURegs:$rhs, CPURegs:$lhs), ZERO, bb:$dst)>;
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000649
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000650def : Pat<(brcond CPURegs:$cond, bb:$dst),
651 (BNE CPURegs:$cond, ZERO, bb:$dst)>;
652
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000653// select patterns
654def : Pat<(select (setge CPURegs:$lhs, CPURegs:$rhs), CPURegs:$T, CPURegs:$F),
655 (MOVZ CPURegs:$F, CPURegs:$T, (SLT CPURegs:$lhs, CPURegs:$rhs))>;
656def : Pat<(select (setuge CPURegs:$lhs, CPURegs:$rhs), CPURegs:$T, CPURegs:$F),
657 (MOVZ CPURegs:$F, CPURegs:$T, (SLTu CPURegs:$lhs, CPURegs:$rhs))>;
658def : Pat<(select (setge CPURegs:$lhs, immSExt16:$rhs), CPURegs:$T, CPURegs:$F),
659 (MOVZ CPURegs:$F, CPURegs:$T, (SLTi CPURegs:$lhs, immSExt16:$rhs))>;
660def : Pat<(select (setuge CPURegs:$lh, immSExt16:$rh), CPURegs:$T, CPURegs:$F),
661 (MOVZ CPURegs:$F, CPURegs:$T, (SLTiu CPURegs:$lh, immSExt16:$rh))>;
662
663def : Pat<(select (setle CPURegs:$lhs, CPURegs:$rhs), CPURegs:$T, CPURegs:$F),
664 (MOVZ CPURegs:$F, CPURegs:$T, (SLT CPURegs:$rhs, CPURegs:$lhs))>;
665def : Pat<(select (setule CPURegs:$lhs, CPURegs:$rhs), CPURegs:$T, CPURegs:$F),
666 (MOVZ CPURegs:$F, CPURegs:$T, (SLTu CPURegs:$rhs, CPURegs:$lhs))>;
667
668def : Pat<(select (seteq CPURegs:$lhs, CPURegs:$rhs), CPURegs:$T, CPURegs:$F),
669 (MOVZ CPURegs:$F, CPURegs:$T, (XOR CPURegs:$lhs, CPURegs:$rhs))>;
670def : Pat<(select (setne CPURegs:$lhs, CPURegs:$rhs), CPURegs:$T, CPURegs:$F),
671 (MOVN CPURegs:$F, CPURegs:$T, (XOR CPURegs:$lhs, CPURegs:$rhs))>;
672
673def : Pat<(select CPURegs:$cond, CPURegs:$T, CPURegs:$F),
674 (MOVN CPURegs:$F, CPURegs:$T, CPURegs:$cond)>;
675
676// setcc patterns
677def : Pat<(seteq CPURegs:$lhs, CPURegs:$rhs),
678 (SLTu (XOR CPURegs:$lhs, CPURegs:$rhs), 1)>;
679def : Pat<(setne CPURegs:$lhs, CPURegs:$rhs),
680 (SLTu ZERO, (XOR CPURegs:$lhs, CPURegs:$rhs))>;
681
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000682def : Pat<(setle CPURegs:$lhs, CPURegs:$rhs),
683 (XORi (SLT CPURegs:$rhs, CPURegs:$lhs), 1)>;
684def : Pat<(setule CPURegs:$lhs, CPURegs:$rhs),
685 (XORi (SLTu CPURegs:$rhs, CPURegs:$lhs), 1)>;
686
687def : Pat<(setgt CPURegs:$lhs, CPURegs:$rhs),
688 (SLT CPURegs:$rhs, CPURegs:$lhs)>;
689def : Pat<(setugt CPURegs:$lhs, CPURegs:$rhs),
690 (SLTu CPURegs:$rhs, CPURegs:$lhs)>;
691
692def : Pat<(setge CPURegs:$lhs, CPURegs:$rhs),
693 (XORi (SLT CPURegs:$lhs, CPURegs:$rhs), 1)>;
694def : Pat<(setuge CPURegs:$lhs, CPURegs:$rhs),
695 (XORi (SLTu CPURegs:$lhs, CPURegs:$rhs), 1)>;
696
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000697def : Pat<(setge CPURegs:$lhs, immSExt16:$rhs),
698 (XORi (SLTi CPURegs:$lhs, immSExt16:$rhs), 1)>;
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000699def : Pat<(setuge CPURegs:$lhs, immSExt16:$rhs),
700 (XORi (SLTiu CPURegs:$lhs, immSExt16:$rhs), 1)>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000701
702//===----------------------------------------------------------------------===//
703// Floating Point Support
704//===----------------------------------------------------------------------===//
705
706include "MipsInstrFPU.td"
707