blob: 6b95d1e1dd196e538a8d781ebe495b428a39c77c [file] [log] [blame]
Chris Lattner23e70eb2010-08-17 16:20:04 +00001//===- MipsInstrInfo.td - Mips Register defs ---------------*- tablegen -*-===//
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00002//
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 Lopes9e030612010-11-09 17:25:34 +000022def SDT_MipsSelectCC : SDTypeProfile<1, 3, [SDTCisSameAs<0, 2>,
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +000023 SDTCisSameAs<2, 3>, SDTCisInt<1>]>;
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +000024def SDT_MipsCMov : SDTypeProfile<1, 4, [SDTCisSameAs<0, 1>,
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +000025 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 Lopes9e030612010-11-09 17:25:34 +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 Lopes9e030612010-11-09 17:25:34 +000035// Hi and Lo nodes are used to handle global addresses. Used on
36// MipsISelLowering to lower stuff like GlobalAddress, ExternalSymbol
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +000037// 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 Lopes9e030612010-11-09 17:25:34 +000043def MipsRet : SDNode<"MipsISD::Ret", SDT_MipsRet, [SDNPHasChain,
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000044 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 Lopes7d5652d2010-11-12 00:38:32 +000065def IsMips32 : Predicate<"Subtarget.isMips32()">;
Bruno Cardoso Lopese78080c2007-10-09 02:55:31 +000066
67//===----------------------------------------------------------------------===//
68// Mips Operand, Complex Patterns and Transformations Definitions.
69//===----------------------------------------------------------------------===//
70
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000071// Instruction operand types
72def brtarget : Operand<OtherVT>;
73def calltarget : Operand<i32>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000074def simm16 : Operand<i32>;
Eric Christopher3c999a22007-10-26 04:00:13 +000075def shamt : Operand<i32>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000076
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +000077// Unsigned Operand
78def uimm16 : Operand<i32> {
79 let PrintMethod = "printUnsignedImm";
80}
81
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000082// Address operand
83def mem : Operand<i32> {
84 let PrintMethod = "printMemOperand";
85 let MIOperandInfo = (ops simm16, CPURegs);
86}
87
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000088// Transformation Function - get the lower 16 bits.
89def LO16 : SDNodeXForm<imm, [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000090 return getI32Imm((unsigned)N->getZExtValue() & 0xFFFF);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000091}]>;
92
93// Transformation Function - get the higher 16 bits.
94def HI16 : SDNodeXForm<imm, [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000095 return getI32Imm((unsigned)N->getZExtValue() >> 16);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000096}]>;
97
98// Node immediate fits as 16-bit sign extended on target immediate.
99// e.g. addi, andi
Jakob Stoklund Olesen7552a3d2010-08-18 23:56:46 +0000100def immSExt16 : PatLeaf<(imm), [{ return isInt<16>(N->getSExtValue()); }]>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000101
102// Node immediate fits as 16-bit zero extended on target immediate.
103// The LO16 param means that only the lower 16 bits of the node
104// immediate are caught.
105// e.g. addiu, sltiu
106def immZExt16 : PatLeaf<(imm), [{
Owen Anderson825b72b2009-08-11 20:47:22 +0000107 if (N->getValueType(0) == MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000108 return (uint32_t)N->getZExtValue() == (unsigned short)N->getZExtValue();
Eric Christopher3c999a22007-10-26 04:00:13 +0000109 else
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000110 return (uint64_t)N->getZExtValue() == (unsigned short)N->getZExtValue();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000111}], LO16>;
112
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000113// shamt field must fit in 5 bits.
114def immZExt5 : PatLeaf<(imm), [{
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000115 return N->getZExtValue() == ((N->getZExtValue()) & 0x1f) ;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000116}]>;
117
Eric Christopher3c999a22007-10-26 04:00:13 +0000118// Mips Address Mode! SDNode frameindex could possibily be a match
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000119// since load and store instructions from stack used it.
Chris Lattnereb079a32010-02-14 21:53:19 +0000120def addr : ComplexPattern<iPTR, 2, "SelectAddr", [frameindex], []>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000121
122//===----------------------------------------------------------------------===//
123// Instructions specific format
124//===----------------------------------------------------------------------===//
125
126// Arithmetic 3 register operands
Eric Christopher3c999a22007-10-26 04:00:13 +0000127let isCommutable = 1 in
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000128class ArithR<bits<6> op, bits<6> func, string instr_asm, SDNode OpNode,
Eric Christopher3c999a22007-10-26 04:00:13 +0000129 InstrItinClass itin>:
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000130 FR<op, func, (outs CPURegs:$dst), (ins CPURegs:$b, CPURegs:$c),
131 !strconcat(instr_asm, "\t$dst, $b, $c"),
132 [(set CPURegs:$dst, (OpNode CPURegs:$b, CPURegs:$c))], itin>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000133
Eric Christopher3c999a22007-10-26 04:00:13 +0000134let isCommutable = 1 in
135class ArithOverflowR<bits<6> op, bits<6> func, string instr_asm>:
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000136 FR<op, func, (outs CPURegs:$dst), (ins CPURegs:$b, CPURegs:$c),
137 !strconcat(instr_asm, "\t$dst, $b, $c"), [], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000138
139// Arithmetic 2 register operands
Eric Christopher3c999a22007-10-26 04:00:13 +0000140class ArithI<bits<6> op, string instr_asm, SDNode OpNode,
141 Operand Od, PatLeaf imm_type> :
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000142 FI<op, (outs CPURegs:$dst), (ins CPURegs:$b, Od:$c),
143 !strconcat(instr_asm, "\t$dst, $b, $c"),
144 [(set CPURegs:$dst, (OpNode CPURegs:$b, imm_type:$c))], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000145
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000146class ArithOverflowI<bits<6> op, string instr_asm, SDNode OpNode,
147 Operand Od, PatLeaf imm_type> :
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000148 FI<op, (outs CPURegs:$dst), (ins CPURegs:$b, Od:$c),
149 !strconcat(instr_asm, "\t$dst, $b, $c"), [], IIAlu>;
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000150
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000151// Arithmetic Multiply ADD/SUB
152let rd=0 in
Eric Christopher3c999a22007-10-26 04:00:13 +0000153class MArithR<bits<6> func, string instr_asm> :
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000154 FR<0x1c, func, (outs CPURegs:$rs), (ins CPURegs:$rt),
155 !strconcat(instr_asm, "\t$rs, $rt"), [], IIImul>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000156
157// Logical
158class LogicR<bits<6> func, string instr_asm, SDNode OpNode>:
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000159 FR<0x00, func, (outs CPURegs:$dst), (ins CPURegs:$b, CPURegs:$c),
160 !strconcat(instr_asm, "\t$dst, $b, $c"),
161 [(set CPURegs:$dst, (OpNode CPURegs:$b, CPURegs:$c))], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000162
163class LogicI<bits<6> op, string instr_asm, SDNode OpNode>:
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000164 FI<op, (outs CPURegs:$dst), (ins CPURegs:$b, uimm16:$c),
165 !strconcat(instr_asm, "\t$dst, $b, $c"),
166 [(set CPURegs:$dst, (OpNode CPURegs:$b, immZExt16:$c))], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000167
168class LogicNOR<bits<6> op, bits<6> func, string instr_asm>:
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000169 FR<op, func, (outs CPURegs:$dst), (ins CPURegs:$b, CPURegs:$c),
170 !strconcat(instr_asm, "\t$dst, $b, $c"),
171 [(set CPURegs:$dst, (not (or CPURegs:$b, CPURegs:$c)))], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000172
173// Shifts
174let rt = 0 in
175class LogicR_shift_imm<bits<6> func, string instr_asm, SDNode OpNode>:
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000176 FR<0x00, func, (outs CPURegs:$dst), (ins CPURegs:$b, shamt:$c),
177 !strconcat(instr_asm, "\t$dst, $b, $c"),
178 [(set CPURegs:$dst, (OpNode CPURegs:$b, immZExt5:$c))], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000179
180class LogicR_shift_reg<bits<6> func, string instr_asm, SDNode OpNode>:
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000181 FR<0x00, func, (outs CPURegs:$dst), (ins CPURegs:$b, CPURegs:$c),
182 !strconcat(instr_asm, "\t$dst, $b, $c"),
183 [(set CPURegs:$dst, (OpNode CPURegs:$b, CPURegs:$c))], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000184
185// Load Upper Imediate
186class LoadUpper<bits<6> op, string instr_asm>:
187 FI< op,
Evan Cheng64d80e32007-07-19 01:14:50 +0000188 (outs CPURegs:$dst),
189 (ins uimm16:$imm),
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000190 !strconcat(instr_asm, "\t$dst, $imm"),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000191 [], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000192
Eric Christopher3c999a22007-10-26 04:00:13 +0000193// Memory Load/Store
Dan Gohman15511cf2008-12-03 18:15:48 +0000194let canFoldAsLoad = 1, hasDelaySlot = 1 in
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000195class LoadM<bits<6> op, string instr_asm, PatFrag OpNode>:
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000196 FI<op, (outs CPURegs:$dst), (ins mem:$addr),
197 !strconcat(instr_asm, "\t$dst, $addr"),
198 [(set CPURegs:$dst, (OpNode addr:$addr))], IILoad>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000199
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000200class StoreM<bits<6> op, string instr_asm, PatFrag OpNode>:
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000201 FI<op, (outs), (ins CPURegs:$dst, mem:$addr),
202 !strconcat(instr_asm, "\t$dst, $addr"),
203 [(OpNode CPURegs:$dst, addr:$addr)], IIStore>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000204
205// Conditional Branch
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000206let isBranch = 1, isTerminator=1, hasDelaySlot = 1 in {
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000207class CBranch<bits<6> op, string instr_asm, PatFrag cond_op>:
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000208 FI<op, (outs), (ins CPURegs:$a, CPURegs:$b, brtarget:$offset),
209 !strconcat(instr_asm, "\t$a, $b, $offset"),
210 [(brcond (cond_op CPURegs:$a, CPURegs:$b), bb:$offset)],
211 IIBranch>;
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000212
213class CBranchZero<bits<6> op, string instr_asm, PatFrag cond_op>:
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000214 FI<op, (outs), (ins CPURegs:$src, brtarget:$offset),
215 !strconcat(instr_asm, "\t$src, $offset"),
216 [(brcond (cond_op CPURegs:$src, 0), bb:$offset)],
217 IIBranch>;
Eric Christopher3c999a22007-10-26 04:00:13 +0000218}
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000219
Eric Christopher3c999a22007-10-26 04:00:13 +0000220// SetCC
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000221class SetCC_R<bits<6> op, bits<6> func, string instr_asm,
222 PatFrag cond_op>:
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000223 FR<op, func, (outs CPURegs:$dst), (ins CPURegs:$b, CPURegs:$c),
224 !strconcat(instr_asm, "\t$dst, $b, $c"),
225 [(set CPURegs:$dst, (cond_op CPURegs:$b, CPURegs:$c))],
226 IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000227
228class SetCC_I<bits<6> op, string instr_asm, PatFrag cond_op,
229 Operand Od, PatLeaf imm_type>:
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000230 FI<op, (outs CPURegs:$dst), (ins CPURegs:$b, Od:$c),
231 !strconcat(instr_asm, "\t$dst, $b, $c"),
232 [(set CPURegs:$dst, (cond_op CPURegs:$b, imm_type:$c))],
233 IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000234
235// Unconditional branch
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000236let isBranch=1, isTerminator=1, isBarrier=1, hasDelaySlot = 1 in
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000237class JumpFJ<bits<6> op, string instr_asm>:
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000238 FJ<op, (outs), (ins brtarget:$target),
239 !strconcat(instr_asm, "\t$target"), [(br bb:$target)], IIBranch>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000240
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000241let isBranch=1, isTerminator=1, isBarrier=1, rd=0, hasDelaySlot = 1 in
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000242class JumpFR<bits<6> op, bits<6> func, string instr_asm>:
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000243 FR<op, func, (outs), (ins CPURegs:$target),
244 !strconcat(instr_asm, "\t$target"), [(brind CPURegs:$target)], IIBranch>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000245
246// Jump and Link (Call)
Eric Christopher3c999a22007-10-26 04:00:13 +0000247let isCall=1, hasDelaySlot=1,
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000248 // All calls clobber the non-callee saved registers...
Jakob Stoklund Olesende12e432010-02-17 20:18:50 +0000249 Defs = [AT, V0, V1, A0, A1, A2, A3, T0, T1, T2, T3, T4, T5, T6, T7, T8, T9,
250 K0, K1, D0, D1, D2, D3, D4, D5, D6, D7, D8, D9], Uses = [GP] in {
Eric Christopher3c999a22007-10-26 04:00:13 +0000251 class JumpLink<bits<6> op, string instr_asm>:
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000252 FJ<op, (outs), (ins calltarget:$target, variable_ops),
253 !strconcat(instr_asm, "\t$target"), [(MipsJmpLink imm:$target)],
254 IIBranch>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000255
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000256 let rd=31 in
257 class JumpLinkReg<bits<6> op, bits<6> func, string instr_asm>:
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000258 FR<op, func, (outs), (ins CPURegs:$rs, variable_ops),
259 !strconcat(instr_asm, "\t$rs"), [(MipsJmpLink CPURegs:$rs)], IIBranch>;
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000260
261 class BranchLink<string instr_asm>:
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000262 FI<0x1, (outs), (ins CPURegs:$rs, brtarget:$target, variable_ops),
263 !strconcat(instr_asm, "\t$rs, $target"), [], IIBranch>;
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000264}
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000265
Eric Christopher3c999a22007-10-26 04:00:13 +0000266// Mul, Div
267class MulDiv<bits<6> func, string instr_asm, InstrItinClass itin>:
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000268 FR<0x00, func, (outs), (ins CPURegs:$a, CPURegs:$b),
269 !strconcat(instr_asm, "\t$a, $b"), [], itin>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000270
Eric Christopher3c999a22007-10-26 04:00:13 +0000271// Move from Hi/Lo
Bruno Cardoso Lopes91ef8492008-08-02 19:42:36 +0000272class MoveFromLOHI<bits<6> func, string instr_asm>:
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000273 FR<0x00, func, (outs CPURegs:$dst), (ins),
274 !strconcat(instr_asm, "\t$dst"), [], IIHiLo>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000275
Bruno Cardoso Lopes91ef8492008-08-02 19:42:36 +0000276class MoveToLOHI<bits<6> func, string instr_asm>:
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000277 FR<0x00, func, (outs), (ins CPURegs:$src),
278 !strconcat(instr_asm, "\t$src"), [], IIHiLo>;
Bruno Cardoso Lopes91ef8492008-08-02 19:42:36 +0000279
Eric Christopher3c999a22007-10-26 04:00:13 +0000280class EffectiveAddress<string instr_asm> :
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000281 FI<0x09, (outs CPURegs:$dst), (ins mem:$addr),
282 instr_asm, [(set CPURegs:$dst, addr:$addr)], IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000283
Bruno Cardoso Lopes65ad4522008-08-08 06:16:31 +0000284// Count Leading Ones/Zeros in Word
Bruno Cardoso Lopesc4bb67c2010-11-10 02:13:22 +0000285class CountLeading<bits<6> func, string instr_asm, list<dag> pattern>:
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000286 FR<0x1c, func, (outs CPURegs:$dst), (ins CPURegs:$src),
Bruno Cardoso Lopesc4bb67c2010-11-10 02:13:22 +0000287 !strconcat(instr_asm, "\t$dst, $src"), pattern, IIAlu>,
288 Requires<[HasBitCount]> {
289 let shamt = 0;
290 let rt = rd;
291}
Bruno Cardoso Lopes65ad4522008-08-08 06:16:31 +0000292
293// Sign Extend in Register.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000294class SignExtInReg<bits<6> func, string instr_asm, ValueType vt>:
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000295 FR<0x3f, func, (outs CPURegs:$dst), (ins CPURegs:$src),
296 !strconcat(instr_asm, "\t$dst, $src"),
297 [(set CPURegs:$dst, (sext_inreg CPURegs:$src, vt))], NoItinerary>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000298
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000299// Byte Swap
300class ByteSwap<bits<6> func, string instr_asm>:
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000301 FR<0x1f, func, (outs CPURegs:$dst), (ins CPURegs:$src),
302 !strconcat(instr_asm, "\t$dst, $src"),
303 [(set CPURegs:$dst, (bswap CPURegs:$src))], NoItinerary>;
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000304
305// Conditional Move
306class CondMov<bits<6> func, string instr_asm, PatLeaf MovCode>:
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000307 FR<0x00, func, (outs CPURegs:$dst), (ins CPURegs:$F, CPURegs:$T,
308 CPURegs:$cond), !strconcat(instr_asm, "\t$dst, $T, $cond"),
309 [(set CPURegs:$dst, (MipsCMov CPURegs:$F, CPURegs:$T,
310 CPURegs:$cond, MovCode))], NoItinerary>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000311
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000312//===----------------------------------------------------------------------===//
313// Pseudo instructions
314//===----------------------------------------------------------------------===//
315
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000316// As stack alignment is always done with addiu, we need a 16-bit immediate
Evan Cheng071a2792007-09-11 19:55:27 +0000317let Defs = [SP], Uses = [SP] in {
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000318def ADJCALLSTACKDOWN : MipsPseudo<(outs), (ins uimm16:$amt),
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000319 "!ADJCALLSTACKDOWN $amt",
Chris Lattnere563bbc2008-10-11 22:08:30 +0000320 [(callseq_start timm:$amt)]>;
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000321def ADJCALLSTACKUP : MipsPseudo<(outs), (ins uimm16:$amt1, uimm16:$amt2),
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000322 "!ADJCALLSTACKUP $amt1",
Chris Lattnere563bbc2008-10-11 22:08:30 +0000323 [(callseq_end timm:$amt1, timm:$amt2)]>;
Evan Cheng071a2792007-09-11 19:55:27 +0000324}
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000325
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000326// Some assembly macros need to avoid pseudoinstructions and assembler
327// automatic reodering, we should reorder ourselves.
328def MACRO : MipsPseudo<(outs), (ins), ".set\tmacro", []>;
329def REORDER : MipsPseudo<(outs), (ins), ".set\treorder", []>;
330def NOMACRO : MipsPseudo<(outs), (ins), ".set\tnomacro", []>;
331def NOREORDER : MipsPseudo<(outs), (ins), ".set\tnoreorder", []>;
332
Eric Christopher3c999a22007-10-26 04:00:13 +0000333// When handling PIC code the assembler needs .cpload and .cprestore
334// directives. If the real instructions corresponding these directives
335// are used, we have the same behavior, but get also a bunch of warnings
Bruno Cardoso Lopese78080c2007-10-09 02:55:31 +0000336// from the assembler.
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000337def CPLOAD : MipsPseudo<(outs), (ins CPURegs:$picreg), ".cpload\t$picreg", []>;
338def CPRESTORE : MipsPseudo<(outs), (ins uimm16:$loc), ".cprestore\t$loc\n", []>;
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000339
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000340// The supported Mips ISAs dont have any instruction close to the SELECT_CC
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000341// operation. The solution is to create a Mips pseudo SELECT_CC instruction
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000342// (MipsSelectCC), use LowerSELECT_CC to generate this instruction and finally
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000343// replace it for real supported nodes into EmitInstrWithCustomInserter
Dan Gohman533297b2009-10-29 18:10:34 +0000344let usesCustomInserter = 1 in {
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000345 class PseudoSelCC<RegisterClass RC, string asmstr>:
346 MipsPseudo<(outs RC:$dst), (ins CPURegs:$CmpRes, RC:$T, RC:$F), asmstr,
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000347 [(set RC:$dst, (MipsSelectCC CPURegs:$CmpRes, RC:$T, RC:$F))]>;
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000348}
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000349
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000350def Select_CC : PseudoSelCC<CPURegs, "# MipsSelect_CC_i32">;
351
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000352//===----------------------------------------------------------------------===//
353// Instruction definition
354//===----------------------------------------------------------------------===//
355
356//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000357// MipsI Instructions
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000358//===----------------------------------------------------------------------===//
359
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000360/// Arithmetic Instructions (ALU Immediate)
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000361def ADDiu : ArithI<0x09, "addiu", add, simm16, immSExt16>;
362def ADDi : ArithOverflowI<0x08, "addi", add, simm16, immSExt16>;
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000363def SLTi : SetCC_I<0x0a, "slti", setlt, simm16, immSExt16>;
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000364def SLTiu : SetCC_I<0x0b, "sltiu", setult, simm16, immSExt16>;
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000365def ANDi : LogicI<0x0c, "andi", and>;
366def ORi : LogicI<0x0d, "ori", or>;
367def XORi : LogicI<0x0e, "xori", xor>;
368def LUi : LoadUpper<0x0f, "lui">;
369
370/// Arithmetic Instructions (3-Operand, R-Type)
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000371def ADDu : ArithR<0x00, 0x21, "addu", add, IIAlu>;
372def SUBu : ArithR<0x00, 0x23, "subu", sub, IIAlu>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000373def ADD : ArithOverflowR<0x00, 0x20, "add">;
374def SUB : ArithOverflowR<0x00, 0x22, "sub">;
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000375def SLT : SetCC_R<0x00, 0x2a, "slt", setlt>;
376def SLTu : SetCC_R<0x00, 0x2b, "sltu", setult>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000377def AND : LogicR<0x24, "and", and>;
378def OR : LogicR<0x25, "or", or>;
379def XOR : LogicR<0x26, "xor", xor>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000380def NOR : LogicNOR<0x00, 0x27, "nor">;
381
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000382/// Shift Instructions
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000383def SLL : LogicR_shift_imm<0x00, "sll", shl>;
384def SRL : LogicR_shift_imm<0x02, "srl", srl>;
385def SRA : LogicR_shift_imm<0x03, "sra", sra>;
386def SLLV : LogicR_shift_reg<0x04, "sllv", shl>;
387def SRLV : LogicR_shift_reg<0x06, "srlv", srl>;
388def SRAV : LogicR_shift_reg<0x07, "srav", sra>;
389
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000390/// Load and Store Instructions
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000391def LB : LoadM<0x20, "lb", sextloadi8>;
392def LBu : LoadM<0x24, "lbu", zextloadi8>;
393def LH : LoadM<0x21, "lh", sextloadi16>;
394def LHu : LoadM<0x25, "lhu", zextloadi16>;
395def LW : LoadM<0x23, "lw", load>;
396def SB : StoreM<0x28, "sb", truncstorei8>;
397def SH : StoreM<0x29, "sh", truncstorei16>;
398def SW : StoreM<0x2b, "sw", store>;
399
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000400/// Jump and Branch Instructions
401def J : JumpFJ<0x02, "j">;
402def JR : JumpFR<0x00, 0x08, "jr">;
403def JAL : JumpLink<0x03, "jal">;
404def JALR : JumpLinkReg<0x00, 0x09, "jalr">;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000405def BEQ : CBranch<0x04, "beq", seteq>;
406def BNE : CBranch<0x05, "bne", setne>;
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000407
Eric Christopher3c999a22007-10-26 04:00:13 +0000408let rt=1 in
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000409 def BGEZ : CBranchZero<0x01, "bgez", setge>;
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000410
411let rt=0 in {
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000412 def BGTZ : CBranchZero<0x07, "bgtz", setgt>;
413 def BLEZ : CBranchZero<0x07, "blez", setle>;
414 def BLTZ : CBranchZero<0x01, "bltz", setlt>;
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000415}
416
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000417def BGEZAL : BranchLink<"bgezal">;
418def BLTZAL : BranchLink<"bltzal">;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000419
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000420let isReturn=1, isTerminator=1, hasDelaySlot=1,
421 isBarrier=1, hasCtrlDep=1, rs=0, rt=0, shamt=0 in
422 def RET : FR <0x00, 0x02, (outs), (ins CPURegs:$target),
423 "jr\t$target", [(MipsRet CPURegs:$target)], IIBranch>;
424
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000425/// Multiply and Divide Instructions.
Bruno Cardoso Lopes91ef8492008-08-02 19:42:36 +0000426let Defs = [HI, LO] in {
427 def MULT : MulDiv<0x18, "mult", IIImul>;
428 def MULTu : MulDiv<0x19, "multu", IIImul>;
429 def DIV : MulDiv<0x1a, "div", IIIdiv>;
430 def DIVu : MulDiv<0x1b, "divu", IIIdiv>;
431}
432
433let Defs = [HI] in
434 def MTHI : MoveToLOHI<0x11, "mthi">;
435let Defs = [LO] in
436 def MTLO : MoveToLOHI<0x13, "mtlo">;
437
438let Uses = [HI] in
439 def MFHI : MoveFromLOHI<0x10, "mfhi">;
440let Uses = [LO] in
441 def MFLO : MoveFromLOHI<0x12, "mflo">;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000442
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000443/// Sign Ext In Register Instructions.
444let Predicates = [HasSEInReg] in {
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +0000445 let shamt = 0x10, rs = 0 in
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000446 def SEB : SignExtInReg<0x21, "seb", i8>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000447
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +0000448 let shamt = 0x18, rs = 0 in
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000449 def SEH : SignExtInReg<0x20, "seh", i16>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000450}
451
Bruno Cardoso Lopes65ad4522008-08-08 06:16:31 +0000452/// Count Leading
Bruno Cardoso Lopesc4bb67c2010-11-10 02:13:22 +0000453def CLZ : CountLeading<0b100000, "clz",
454 [(set CPURegs:$dst, (ctlz CPURegs:$src))]>;
455def CLO : CountLeading<0b100001, "clo",
456 [(set CPURegs:$dst, (ctlz (not CPURegs:$src)))]>;
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000457
458/// Byte Swap
459let Predicates = [HasSwap] in {
460 let shamt = 0x3, rs = 0 in
461 def WSBW : ByteSwap<0x20, "wsbw">;
462}
463
464/// Conditional Move
465def MIPS_CMOV_ZERO : PatLeaf<(i32 0)>;
466def MIPS_CMOV_NZERO : PatLeaf<(i32 1)>;
467
Eric Christopherc452d792010-06-21 20:19:21 +0000468let Predicates = [HasCondMov], Constraints = "$F = $dst" in {
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000469 def MOVN : CondMov<0x0a, "movn", MIPS_CMOV_NZERO>;
470 def MOVZ : CondMov<0x0b, "movz", MIPS_CMOV_ZERO>;
Bruno Cardoso Lopes65ad4522008-08-08 06:16:31 +0000471}
472
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000473/// No operation
474let addr=0 in
475 def NOP : FJ<0, (outs), (ins), "nop", [], IIAlu>;
476
Eric Christopher3c999a22007-10-26 04:00:13 +0000477// FrameIndexes are legalized when they are operands from load/store
Bruno Cardoso Lopesb42abeb2007-09-24 20:15:11 +0000478// instructions. The same not happens for stack address copies, so an
479// add op with mem ComplexPattern is used and the stack address copy
480// can be matched. It's similar to Sparc LEA_ADDRi
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +0000481def LEA_ADDiu : EffectiveAddress<"addiu\t$dst, ${addr:stackloc}">;
Bruno Cardoso Lopesb42abeb2007-09-24 20:15:11 +0000482
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000483// MADD*/MSUB* are not part of MipsI either.
484//def MADD : MArithR<0x00, "madd">;
485//def MADDU : MArithR<0x01, "maddu">;
486//def MSUB : MArithR<0x04, "msub">;
487//def MSUBU : MArithR<0x05, "msubu">;
488
Bruno Cardoso Lopesf7d66f72008-07-30 16:58:59 +0000489// MUL is a assembly macro in the current used ISAs. In recent ISA's
490// it is a real instruction.
Bruno Cardoso Lopes7d5652d2010-11-12 00:38:32 +0000491def MUL : ArithR<0x1c, 0x02, "mul", mul, IIImul>, Requires<[IsMips32]>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000492
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000493//===----------------------------------------------------------------------===//
494// Arbitrary patterns that map to one or more instructions
495//===----------------------------------------------------------------------===//
496
497// Small immediates
Eric Christopher3c999a22007-10-26 04:00:13 +0000498def : Pat<(i32 immSExt16:$in),
Bruno Cardoso Lopes332a3d22007-07-11 22:47:02 +0000499 (ADDiu ZERO, imm:$in)>;
Eric Christopher3c999a22007-10-26 04:00:13 +0000500def : Pat<(i32 immZExt16:$in),
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000501 (ORi ZERO, imm:$in)>;
502
503// Arbitrary immediates
504def : Pat<(i32 imm:$imm),
505 (ORi (LUi (HI16 imm:$imm)), (LO16 imm:$imm))>;
506
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000507// Carry patterns
508def : Pat<(subc CPURegs:$lhs, CPURegs:$rhs),
509 (SUBu CPURegs:$lhs, CPURegs:$rhs)>;
510def : Pat<(addc CPURegs:$lhs, CPURegs:$rhs),
511 (ADDu CPURegs:$lhs, CPURegs:$rhs)>;
512def : Pat<(addc CPURegs:$src, imm:$imm),
513 (ADDiu CPURegs:$src, imm:$imm)>;
514
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000515// Call
516def : Pat<(MipsJmpLink (i32 tglobaladdr:$dst)),
517 (JAL tglobaladdr:$dst)>;
518def : Pat<(MipsJmpLink (i32 texternalsym:$dst)),
519 (JAL texternalsym:$dst)>;
Chris Lattnere0d27532010-02-28 07:23:21 +0000520//def : Pat<(MipsJmpLink CPURegs:$dst),
521// (JALR CPURegs:$dst)>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000522
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000523// hi/lo relocs
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000524def : Pat<(MipsHi tglobaladdr:$in), (LUi tglobaladdr:$in)>;
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000525def : Pat<(add CPURegs:$hi, (MipsLo tglobaladdr:$lo)),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000526 (ADDiu CPURegs:$hi, tglobaladdr:$lo)>;
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000527
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000528def : Pat<(MipsHi tjumptable:$in), (LUi tjumptable:$in)>;
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000529def : Pat<(add CPURegs:$hi, (MipsLo tjumptable:$lo)),
530 (ADDiu CPURegs:$hi, tjumptable:$lo)>;
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000531
532def : Pat<(MipsHi tconstpool:$in), (LUi tconstpool:$in)>;
533def : Pat<(add CPURegs:$hi, (MipsLo tconstpool:$lo)),
534 (ADDiu CPURegs:$hi, tconstpool:$lo)>;
535
536// gp_rel relocs
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000537def : Pat<(add CPURegs:$gp, (MipsGPRel tglobaladdr:$in)),
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000538 (ADDiu CPURegs:$gp, tglobaladdr:$in)>;
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000539def : Pat<(add CPURegs:$gp, (MipsGPRel tconstpool:$in)),
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000540 (ADDiu CPURegs:$gp, tconstpool:$in)>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000541
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000542// Mips does not have "not", so we expand our way
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000543def : Pat<(not CPURegs:$in),
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000544 (NOR CPURegs:$in, ZERO)>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000545
Eric Christopher3c999a22007-10-26 04:00:13 +0000546// extended load and stores
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000547def : Pat<(extloadi1 addr:$src), (LBu addr:$src)>;
548def : Pat<(extloadi8 addr:$src), (LBu addr:$src)>;
549def : Pat<(extloadi16 addr:$src), (LHu addr:$src)>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000550
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000551// peepholes
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000552def : Pat<(store (i32 0), addr:$dst), (SW ZERO, addr:$dst)>;
553
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000554// brcond patterns
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000555def : Pat<(brcond (setne CPURegs:$lhs, 0), bb:$dst),
Bruno Cardoso Lopes332a3d22007-07-11 22:47:02 +0000556 (BNE CPURegs:$lhs, ZERO, bb:$dst)>;
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000557def : Pat<(brcond (seteq CPURegs:$lhs, 0), bb:$dst),
558 (BEQ CPURegs:$lhs, ZERO, bb:$dst)>;
Bruno Cardoso Lopes332a3d22007-07-11 22:47:02 +0000559
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000560def : Pat<(brcond (setge CPURegs:$lhs, CPURegs:$rhs), bb:$dst),
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000561 (BEQ (SLT CPURegs:$lhs, CPURegs:$rhs), ZERO, bb:$dst)>;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000562def : Pat<(brcond (setuge CPURegs:$lhs, CPURegs:$rhs), bb:$dst),
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000563 (BEQ (SLTu CPURegs:$lhs, CPURegs:$rhs), ZERO, bb:$dst)>;
564def : Pat<(brcond (setge CPURegs:$lhs, immSExt16:$rhs), bb:$dst),
565 (BEQ (SLTi CPURegs:$lhs, immSExt16:$rhs), ZERO, bb:$dst)>;
566def : Pat<(brcond (setuge CPURegs:$lhs, immSExt16:$rhs), bb:$dst),
567 (BEQ (SLTiu CPURegs:$lhs, immSExt16:$rhs), ZERO, bb:$dst)>;
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000568
569def : Pat<(brcond (setle CPURegs:$lhs, CPURegs:$rhs), bb:$dst),
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000570 (BEQ (SLT CPURegs:$rhs, CPURegs:$lhs), ZERO, bb:$dst)>;
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000571def : Pat<(brcond (setule CPURegs:$lhs, CPURegs:$rhs), bb:$dst),
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000572 (BEQ (SLTu CPURegs:$rhs, CPURegs:$lhs), ZERO, bb:$dst)>;
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000573
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000574def : Pat<(brcond CPURegs:$cond, bb:$dst),
575 (BNE CPURegs:$cond, ZERO, bb:$dst)>;
576
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000577// select patterns
578def : Pat<(select (setge CPURegs:$lhs, CPURegs:$rhs), CPURegs:$T, CPURegs:$F),
579 (MOVZ CPURegs:$F, CPURegs:$T, (SLT CPURegs:$lhs, CPURegs:$rhs))>;
580def : Pat<(select (setuge CPURegs:$lhs, CPURegs:$rhs), CPURegs:$T, CPURegs:$F),
581 (MOVZ CPURegs:$F, CPURegs:$T, (SLTu CPURegs:$lhs, CPURegs:$rhs))>;
582def : Pat<(select (setge CPURegs:$lhs, immSExt16:$rhs), CPURegs:$T, CPURegs:$F),
583 (MOVZ CPURegs:$F, CPURegs:$T, (SLTi CPURegs:$lhs, immSExt16:$rhs))>;
584def : Pat<(select (setuge CPURegs:$lh, immSExt16:$rh), CPURegs:$T, CPURegs:$F),
585 (MOVZ CPURegs:$F, CPURegs:$T, (SLTiu CPURegs:$lh, immSExt16:$rh))>;
586
587def : Pat<(select (setle CPURegs:$lhs, CPURegs:$rhs), CPURegs:$T, CPURegs:$F),
588 (MOVZ CPURegs:$F, CPURegs:$T, (SLT CPURegs:$rhs, CPURegs:$lhs))>;
589def : Pat<(select (setule CPURegs:$lhs, CPURegs:$rhs), CPURegs:$T, CPURegs:$F),
590 (MOVZ CPURegs:$F, CPURegs:$T, (SLTu CPURegs:$rhs, CPURegs:$lhs))>;
591
592def : Pat<(select (seteq CPURegs:$lhs, CPURegs:$rhs), CPURegs:$T, CPURegs:$F),
593 (MOVZ CPURegs:$F, CPURegs:$T, (XOR CPURegs:$lhs, CPURegs:$rhs))>;
594def : Pat<(select (setne CPURegs:$lhs, CPURegs:$rhs), CPURegs:$T, CPURegs:$F),
595 (MOVN CPURegs:$F, CPURegs:$T, (XOR CPURegs:$lhs, CPURegs:$rhs))>;
596
Bruno Cardoso Lopes9e030612010-11-09 17:25:34 +0000597def : Pat<(select CPURegs:$cond, CPURegs:$T, CPURegs:$F),
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000598 (MOVN CPURegs:$F, CPURegs:$T, CPURegs:$cond)>;
599
Bruno Cardoso Lopesab8d53a2010-12-07 19:00:20 +0000600// select patterns with got access
601def : Pat<(select (setne CPURegs:$lhs, CPURegs:$rhs),
602 (i32 tglobaladdr:$T), CPURegs:$F),
603 (MOVN CPURegs:$F, (ADDiu GP, tglobaladdr:$T),
604 (XOR CPURegs:$lhs, CPURegs:$rhs))>;
605
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000606// setcc patterns
607def : Pat<(seteq CPURegs:$lhs, CPURegs:$rhs),
608 (SLTu (XOR CPURegs:$lhs, CPURegs:$rhs), 1)>;
609def : Pat<(setne CPURegs:$lhs, CPURegs:$rhs),
610 (SLTu ZERO, (XOR CPURegs:$lhs, CPURegs:$rhs))>;
611
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000612def : Pat<(setle CPURegs:$lhs, CPURegs:$rhs),
613 (XORi (SLT CPURegs:$rhs, CPURegs:$lhs), 1)>;
614def : Pat<(setule CPURegs:$lhs, CPURegs:$rhs),
615 (XORi (SLTu CPURegs:$rhs, CPURegs:$lhs), 1)>;
616
617def : Pat<(setgt CPURegs:$lhs, CPURegs:$rhs),
618 (SLT CPURegs:$rhs, CPURegs:$lhs)>;
619def : Pat<(setugt CPURegs:$lhs, CPURegs:$rhs),
620 (SLTu CPURegs:$rhs, CPURegs:$lhs)>;
621
622def : Pat<(setge CPURegs:$lhs, CPURegs:$rhs),
623 (XORi (SLT CPURegs:$lhs, CPURegs:$rhs), 1)>;
624def : Pat<(setuge CPURegs:$lhs, CPURegs:$rhs),
625 (XORi (SLTu CPURegs:$lhs, CPURegs:$rhs), 1)>;
626
Bruno Cardoso Lopes97105362007-08-18 02:37:46 +0000627def : Pat<(setge CPURegs:$lhs, immSExt16:$rhs),
628 (XORi (SLTi CPURegs:$lhs, immSExt16:$rhs), 1)>;
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000629def : Pat<(setuge CPURegs:$lhs, immSExt16:$rhs),
630 (XORi (SLTiu CPURegs:$lhs, immSExt16:$rhs), 1)>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000631
632//===----------------------------------------------------------------------===//
633// Floating Point Support
634//===----------------------------------------------------------------------===//
635
636include "MipsInstrFPU.td"
637