Use instr mapping for microMIPS in llvm-mc.
[oota-llvm.git] / lib / Target / Mips / MipsInstrInfo.td
1 //===- MipsInstrInfo.td - Target Description for Mips Target -*- tablegen -*-=//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the Mips implementation of the TargetInstrInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14
15 //===----------------------------------------------------------------------===//
16 // Mips profiles and nodes
17 //===----------------------------------------------------------------------===//
18
19 def SDT_MipsJmpLink      : SDTypeProfile<0, 1, [SDTCisVT<0, iPTR>]>;
20 def SDT_MipsCMov         : SDTypeProfile<1, 4, [SDTCisSameAs<0, 1>,
21                                                 SDTCisSameAs<1, 2>,
22                                                 SDTCisSameAs<3, 4>,
23                                                 SDTCisInt<4>]>;
24 def SDT_MipsCallSeqStart : SDCallSeqStart<[SDTCisVT<0, i32>]>;
25 def SDT_MipsCallSeqEnd   : SDCallSeqEnd<[SDTCisVT<0, i32>, SDTCisVT<1, i32>]>;
26 def SDT_MFLOHI : SDTypeProfile<1, 1, [SDTCisInt<0>, SDTCisVT<1, untyped>]>;
27 def SDT_MTLOHI : SDTypeProfile<1, 2, [SDTCisVT<0, untyped>,
28                                       SDTCisInt<1>, SDTCisSameAs<1, 2>]>;
29 def SDT_MipsMultDiv : SDTypeProfile<1, 2, [SDTCisVT<0, untyped>, SDTCisInt<1>,
30                                     SDTCisSameAs<1, 2>]>;
31 def SDT_MipsMAddMSub : SDTypeProfile<1, 3,
32                                      [SDTCisVT<0, untyped>, SDTCisSameAs<0, 3>,
33                                       SDTCisVT<1, i32>, SDTCisSameAs<1, 2>]>;
34 def SDT_MipsDivRem16 : SDTypeProfile<0, 2, [SDTCisInt<0>, SDTCisSameAs<0, 1>]>;
35
36 def SDT_MipsThreadPointer : SDTypeProfile<1, 0, [SDTCisPtrTy<0>]>;
37
38 def SDT_Sync             : SDTypeProfile<0, 1, [SDTCisVT<0, i32>]>;
39
40 def SDT_Ext : SDTypeProfile<1, 3, [SDTCisInt<0>, SDTCisSameAs<0, 1>,
41                                    SDTCisVT<2, i32>, SDTCisSameAs<2, 3>]>;
42 def SDT_Ins : SDTypeProfile<1, 4, [SDTCisInt<0>, SDTCisSameAs<0, 1>,
43                                    SDTCisVT<2, i32>, SDTCisSameAs<2, 3>,
44                                    SDTCisSameAs<0, 4>]>;
45
46 def SDTMipsLoadLR  : SDTypeProfile<1, 2,
47                                    [SDTCisInt<0>, SDTCisPtrTy<1>,
48                                     SDTCisSameAs<0, 2>]>;
49
50 // Call
51 def MipsJmpLink : SDNode<"MipsISD::JmpLink",SDT_MipsJmpLink,
52                          [SDNPHasChain, SDNPOutGlue, SDNPOptInGlue,
53                           SDNPVariadic]>;
54
55 // Tail call
56 def MipsTailCall : SDNode<"MipsISD::TailCall", SDT_MipsJmpLink,
57                           [SDNPHasChain, SDNPOptInGlue, SDNPVariadic]>;
58
59 // Hi and Lo nodes are used to handle global addresses. Used on
60 // MipsISelLowering to lower stuff like GlobalAddress, ExternalSymbol
61 // static model. (nothing to do with Mips Registers Hi and Lo)
62 def MipsHi    : SDNode<"MipsISD::Hi", SDTIntUnaryOp>;
63 def MipsLo    : SDNode<"MipsISD::Lo", SDTIntUnaryOp>;
64 def MipsGPRel : SDNode<"MipsISD::GPRel", SDTIntUnaryOp>;
65
66 // TlsGd node is used to handle General Dynamic TLS
67 def MipsTlsGd : SDNode<"MipsISD::TlsGd", SDTIntUnaryOp>;
68
69 // TprelHi and TprelLo nodes are used to handle Local Exec TLS
70 def MipsTprelHi    : SDNode<"MipsISD::TprelHi", SDTIntUnaryOp>;
71 def MipsTprelLo    : SDNode<"MipsISD::TprelLo", SDTIntUnaryOp>;
72
73 // Thread pointer
74 def MipsThreadPointer: SDNode<"MipsISD::ThreadPointer", SDT_MipsThreadPointer>;
75
76 // Return
77 def MipsRet : SDNode<"MipsISD::Ret", SDTNone,
78                      [SDNPHasChain, SDNPOptInGlue, SDNPVariadic]>;
79
80 // These are target-independent nodes, but have target-specific formats.
81 def callseq_start : SDNode<"ISD::CALLSEQ_START", SDT_MipsCallSeqStart,
82                            [SDNPHasChain, SDNPSideEffect, SDNPOutGlue]>;
83 def callseq_end   : SDNode<"ISD::CALLSEQ_END", SDT_MipsCallSeqEnd,
84                            [SDNPHasChain, SDNPSideEffect,
85                             SDNPOptInGlue, SDNPOutGlue]>;
86
87 // Nodes used to extract LO/HI registers.
88 def MipsMFHI : SDNode<"MipsISD::MFHI", SDT_MFLOHI>;
89 def MipsMFLO : SDNode<"MipsISD::MFLO", SDT_MFLOHI>;
90
91 // Node used to insert 32-bit integers to LOHI register pair.
92 def MipsMTLOHI : SDNode<"MipsISD::MTLOHI", SDT_MTLOHI>;
93
94 // Mult nodes.
95 def MipsMult  : SDNode<"MipsISD::Mult", SDT_MipsMultDiv>;
96 def MipsMultu : SDNode<"MipsISD::Multu", SDT_MipsMultDiv>;
97
98 // MAdd*/MSub* nodes
99 def MipsMAdd  : SDNode<"MipsISD::MAdd", SDT_MipsMAddMSub>;
100 def MipsMAddu : SDNode<"MipsISD::MAddu", SDT_MipsMAddMSub>;
101 def MipsMSub  : SDNode<"MipsISD::MSub", SDT_MipsMAddMSub>;
102 def MipsMSubu : SDNode<"MipsISD::MSubu", SDT_MipsMAddMSub>;
103
104 // DivRem(u) nodes
105 def MipsDivRem    : SDNode<"MipsISD::DivRem", SDT_MipsMultDiv>;
106 def MipsDivRemU   : SDNode<"MipsISD::DivRemU", SDT_MipsMultDiv>;
107 def MipsDivRem16  : SDNode<"MipsISD::DivRem16", SDT_MipsDivRem16,
108                            [SDNPOutGlue]>;
109 def MipsDivRemU16 : SDNode<"MipsISD::DivRemU16", SDT_MipsDivRem16,
110                            [SDNPOutGlue]>;
111
112 // Target constant nodes that are not part of any isel patterns and remain
113 // unchanged can cause instructions with illegal operands to be emitted.
114 // Wrapper node patterns give the instruction selector a chance to replace
115 // target constant nodes that would otherwise remain unchanged with ADDiu
116 // nodes. Without these wrapper node patterns, the following conditional move
117 // instruction is emitted when function cmov2 in test/CodeGen/Mips/cmov.ll is
118 // compiled:
119 //  movn  %got(d)($gp), %got(c)($gp), $4
120 // This instruction is illegal since movn can take only register operands.
121
122 def MipsWrapper    : SDNode<"MipsISD::Wrapper", SDTIntBinOp>;
123
124 def MipsSync : SDNode<"MipsISD::Sync", SDT_Sync, [SDNPHasChain,SDNPSideEffect]>;
125
126 def MipsExt :  SDNode<"MipsISD::Ext", SDT_Ext>;
127 def MipsIns :  SDNode<"MipsISD::Ins", SDT_Ins>;
128
129 def MipsLWL : SDNode<"MipsISD::LWL", SDTMipsLoadLR,
130                      [SDNPHasChain, SDNPMayLoad, SDNPMemOperand]>;
131 def MipsLWR : SDNode<"MipsISD::LWR", SDTMipsLoadLR,
132                      [SDNPHasChain, SDNPMayLoad, SDNPMemOperand]>;
133 def MipsSWL : SDNode<"MipsISD::SWL", SDTStore,
134                      [SDNPHasChain, SDNPMayStore, SDNPMemOperand]>;
135 def MipsSWR : SDNode<"MipsISD::SWR", SDTStore,
136                      [SDNPHasChain, SDNPMayStore, SDNPMemOperand]>;
137 def MipsLDL : SDNode<"MipsISD::LDL", SDTMipsLoadLR,
138                      [SDNPHasChain, SDNPMayLoad, SDNPMemOperand]>;
139 def MipsLDR : SDNode<"MipsISD::LDR", SDTMipsLoadLR,
140                      [SDNPHasChain, SDNPMayLoad, SDNPMemOperand]>;
141 def MipsSDL : SDNode<"MipsISD::SDL", SDTStore,
142                      [SDNPHasChain, SDNPMayStore, SDNPMemOperand]>;
143 def MipsSDR : SDNode<"MipsISD::SDR", SDTStore,
144                      [SDNPHasChain, SDNPMayStore, SDNPMemOperand]>;
145
146 //===----------------------------------------------------------------------===//
147 // Mips Instruction Predicate Definitions.
148 //===----------------------------------------------------------------------===//
149 def HasSEInReg  :     Predicate<"Subtarget.hasSEInReg()">,
150                       AssemblerPredicate<"FeatureSEInReg">;
151 def HasBitCount :     Predicate<"Subtarget.hasBitCount()">,
152                       AssemblerPredicate<"FeatureBitCount">;
153 def HasSwap     :     Predicate<"Subtarget.hasSwap()">,
154                       AssemblerPredicate<"FeatureSwap">;
155 def HasCondMov  :     Predicate<"Subtarget.hasCondMov()">,
156                       AssemblerPredicate<"FeatureCondMov">;
157 def HasFPIdx    :     Predicate<"Subtarget.hasFPIdx()">,
158                       AssemblerPredicate<"FeatureFPIdx">;
159 def HasMips32    :    Predicate<"Subtarget.hasMips32()">,
160                       AssemblerPredicate<"FeatureMips32">;
161 def HasMips32r2  :    Predicate<"Subtarget.hasMips32r2()">,
162                       AssemblerPredicate<"FeatureMips32r2">;
163 def HasMips64    :    Predicate<"Subtarget.hasMips64()">,
164                       AssemblerPredicate<"FeatureMips64">;
165 def NotMips64    :    Predicate<"!Subtarget.hasMips64()">,
166                       AssemblerPredicate<"!FeatureMips64">;
167 def HasMips64r2  :    Predicate<"Subtarget.hasMips64r2()">,
168                       AssemblerPredicate<"FeatureMips64r2">;
169 def IsN64       :     Predicate<"Subtarget.isABI_N64()">,
170                       AssemblerPredicate<"FeatureN64">;
171 def NotN64      :     Predicate<"!Subtarget.isABI_N64()">,
172                       AssemblerPredicate<"!FeatureN64">;
173 def InMips16Mode :    Predicate<"Subtarget.inMips16Mode()">,
174                       AssemblerPredicate<"FeatureMips16">;
175 def RelocStatic :     Predicate<"TM.getRelocationModel() == Reloc::Static">,
176                       AssemblerPredicate<"FeatureMips32">;
177 def RelocPIC    :     Predicate<"TM.getRelocationModel() == Reloc::PIC_">,
178                       AssemblerPredicate<"FeatureMips32">;
179 def NoNaNsFPMath :    Predicate<"TM.Options.NoNaNsFPMath">,
180                       AssemblerPredicate<"FeatureMips32">;
181 def HasStdEnc :       Predicate<"Subtarget.hasStandardEncoding()">,
182                       AssemblerPredicate<"!FeatureMips16">;
183 def NotDSP :          Predicate<"!Subtarget.hasDSP()">;
184 def InMicroMips    :  Predicate<"Subtarget.inMicroMipsMode()">,
185                       AssemblerPredicate<"FeatureMicroMips">;
186 def NotInMicroMips :  Predicate<"!Subtarget.inMicroMipsMode()">,
187                       AssemblerPredicate<"!FeatureMicroMips">;
188 def IsLE           :  Predicate<"Subtarget.isLittle()">;
189 def IsBE           :  Predicate<"!Subtarget.isLittle()">;
190
191 class MipsPat<dag pattern, dag result> : Pat<pattern, result> {
192   let Predicates = [HasStdEnc];
193 }
194
195 class IsCommutable {
196   bit isCommutable = 1;
197 }
198
199 class IsBranch {
200   bit isBranch = 1;
201 }
202
203 class IsReturn {
204   bit isReturn = 1;
205 }
206
207 class IsCall {
208   bit isCall = 1;
209 }
210
211 class IsTailCall {
212   bit isCall = 1;
213   bit isTerminator = 1;
214   bit isReturn = 1;
215   bit isBarrier = 1;
216   bit hasExtraSrcRegAllocReq = 1;
217   bit isCodeGenOnly = 1;
218 }
219
220 class IsAsCheapAsAMove {
221   bit isAsCheapAsAMove = 1;
222 }
223
224 class NeverHasSideEffects {
225   bit neverHasSideEffects = 1;
226 }
227
228 //===----------------------------------------------------------------------===//
229 // Instruction format superclass
230 //===----------------------------------------------------------------------===//
231
232 include "MipsInstrFormats.td"
233
234 //===----------------------------------------------------------------------===//
235 // Mips Operand, Complex Patterns and Transformations Definitions.
236 //===----------------------------------------------------------------------===//
237
238 // Instruction operand types
239 def jmptarget   : Operand<OtherVT> {
240   let EncoderMethod = "getJumpTargetOpValue";
241 }
242 def brtarget    : Operand<OtherVT> {
243   let EncoderMethod = "getBranchTargetOpValue";
244   let OperandType = "OPERAND_PCREL";
245   let DecoderMethod = "DecodeBranchTarget";
246 }
247 def calltarget  : Operand<iPTR> {
248   let EncoderMethod = "getJumpTargetOpValue";
249 }
250
251 def simm16      : Operand<i32> {
252   let DecoderMethod= "DecodeSimm16";
253 }
254
255 def simm20      : Operand<i32> {
256 }
257
258 def uimm20      : Operand<i32> {
259 }
260
261 def uimm10      : Operand<i32> {
262 }
263
264 def simm16_64   : Operand<i64> {
265   let DecoderMethod = "DecodeSimm16";
266 }
267
268 // Unsigned Operand
269 def uimm5       : Operand<i32> {
270   let PrintMethod = "printUnsignedImm";
271 }
272
273 def uimm6 : Operand<i32> {
274   let PrintMethod = "printUnsignedImm";
275 }
276
277 def uimm16      : Operand<i32> {
278   let PrintMethod = "printUnsignedImm";
279 }
280
281 def pcrel16      : Operand<i32> {
282 }
283
284 def MipsMemAsmOperand : AsmOperandClass {
285   let Name = "Mem";
286   let ParserMethod = "parseMemOperand";
287 }
288
289 def MipsInvertedImmoperand : AsmOperandClass {
290   let Name = "InvNum";
291   let RenderMethod = "addImmOperands";
292   let ParserMethod = "parseInvNum";
293 }
294
295 def PtrRegAsmOperand : AsmOperandClass {
296   let Name = "PtrReg";
297   let ParserMethod = "parsePtrReg";
298 }
299
300
301 def InvertedImOperand : Operand<i32> {
302   let ParserMatchClass = MipsInvertedImmoperand;
303 }
304
305 // Address operand
306 def mem : Operand<iPTR> {
307   let PrintMethod = "printMemOperand";
308   let MIOperandInfo = (ops ptr_rc, simm16);
309   let EncoderMethod = "getMemEncoding";
310   let ParserMatchClass = MipsMemAsmOperand;
311   let OperandType = "OPERAND_MEMORY";
312 }
313
314 def mem_ea : Operand<iPTR> {
315   let PrintMethod = "printMemOperandEA";
316   let MIOperandInfo = (ops ptr_rc, simm16);
317   let EncoderMethod = "getMemEncoding";
318   let OperandType = "OPERAND_MEMORY";
319 }
320
321 def PtrRC : Operand<iPTR> {
322   let MIOperandInfo = (ops ptr_rc);
323   let DecoderMethod = "DecodePtrRegisterClass";
324   let ParserMatchClass = PtrRegAsmOperand;
325 }
326
327 // size operand of ext instruction
328 def size_ext : Operand<i32> {
329   let EncoderMethod = "getSizeExtEncoding";
330   let DecoderMethod = "DecodeExtSize";
331 }
332
333 // size operand of ins instruction
334 def size_ins : Operand<i32> {
335   let EncoderMethod = "getSizeInsEncoding";
336   let DecoderMethod = "DecodeInsSize";
337 }
338
339 // Transformation Function - get the lower 16 bits.
340 def LO16 : SDNodeXForm<imm, [{
341   return getImm(N, N->getZExtValue() & 0xFFFF);
342 }]>;
343
344 // Transformation Function - get the higher 16 bits.
345 def HI16 : SDNodeXForm<imm, [{
346   return getImm(N, (N->getZExtValue() >> 16) & 0xFFFF);
347 }]>;
348
349 // Plus 1.
350 def Plus1 : SDNodeXForm<imm, [{ return getImm(N, N->getSExtValue() + 1); }]>;
351
352 // Node immediate fits as 16-bit sign extended on target immediate.
353 // e.g. addi, andi
354 def immSExt8  : PatLeaf<(imm), [{ return isInt<8>(N->getSExtValue()); }]>;
355
356 // Node immediate fits as 16-bit sign extended on target immediate.
357 // e.g. addi, andi
358 def immSExt16  : PatLeaf<(imm), [{ return isInt<16>(N->getSExtValue()); }]>;
359
360 // Node immediate fits as 15-bit sign extended on target immediate.
361 // e.g. addi, andi
362 def immSExt15  : PatLeaf<(imm), [{ return isInt<15>(N->getSExtValue()); }]>;
363
364 // Node immediate fits as 16-bit zero extended on target immediate.
365 // The LO16 param means that only the lower 16 bits of the node
366 // immediate are caught.
367 // e.g. addiu, sltiu
368 def immZExt16  : PatLeaf<(imm), [{
369   if (N->getValueType(0) == MVT::i32)
370     return (uint32_t)N->getZExtValue() == (unsigned short)N->getZExtValue();
371   else
372     return (uint64_t)N->getZExtValue() == (unsigned short)N->getZExtValue();
373 }], LO16>;
374
375 // Immediate can be loaded with LUi (32-bit int with lower 16-bit cleared).
376 def immLow16Zero : PatLeaf<(imm), [{
377   int64_t Val = N->getSExtValue();
378   return isInt<32>(Val) && !(Val & 0xffff);
379 }]>;
380
381 // shamt field must fit in 5 bits.
382 def immZExt5 : ImmLeaf<i32, [{return Imm == (Imm & 0x1f);}]>;
383
384 // True if (N + 1) fits in 16-bit field.
385 def immSExt16Plus1 : PatLeaf<(imm), [{
386   return isInt<17>(N->getSExtValue()) && isInt<16>(N->getSExtValue() + 1);
387 }]>;
388
389 // Mips Address Mode! SDNode frameindex could possibily be a match
390 // since load and store instructions from stack used it.
391 def addr :
392   ComplexPattern<iPTR, 2, "selectIntAddr", [frameindex]>;
393
394 def addrRegImm :
395   ComplexPattern<iPTR, 2, "selectAddrRegImm", [frameindex]>;
396
397 def addrRegReg :
398   ComplexPattern<iPTR, 2, "selectAddrRegReg", [frameindex]>;
399
400 def addrDefault :
401   ComplexPattern<iPTR, 2, "selectAddrDefault", [frameindex]>;
402
403 //===----------------------------------------------------------------------===//
404 // Instructions specific format
405 //===----------------------------------------------------------------------===//
406
407 // Arithmetic and logical instructions with 3 register operands.
408 class ArithLogicR<string opstr, RegisterOperand RO, bit isComm = 0,
409                   InstrItinClass Itin = NoItinerary,
410                   SDPatternOperator OpNode = null_frag>:
411   InstSE<(outs RO:$rd), (ins RO:$rs, RO:$rt),
412          !strconcat(opstr, "\t$rd, $rs, $rt"),
413          [(set RO:$rd, (OpNode RO:$rs, RO:$rt))], Itin, FrmR, opstr> {
414   let isCommutable = isComm;
415   let isReMaterializable = 1;
416 }
417
418 // Arithmetic and logical instructions with 2 register operands.
419 class ArithLogicI<string opstr, Operand Od, RegisterOperand RO,
420                   InstrItinClass Itin = NoItinerary,
421                   SDPatternOperator imm_type = null_frag,
422                   SDPatternOperator OpNode = null_frag> :
423   InstSE<(outs RO:$rt), (ins RO:$rs, Od:$imm16),
424          !strconcat(opstr, "\t$rt, $rs, $imm16"),
425          [(set RO:$rt, (OpNode RO:$rs, imm_type:$imm16))],
426          Itin, FrmI, opstr> {
427   let isReMaterializable = 1;
428   let TwoOperandAliasConstraint = "$rs = $rt";
429 }
430
431 // Arithmetic Multiply ADD/SUB
432 class MArithR<string opstr, bit isComm = 0> :
433   InstSE<(outs), (ins GPR32Opnd:$rs, GPR32Opnd:$rt),
434          !strconcat(opstr, "\t$rs, $rt"), [], IIImult, FrmR, opstr> {
435   let Defs = [HI0, LO0];
436   let Uses = [HI0, LO0];
437   let isCommutable = isComm;
438 }
439
440 //  Logical
441 class LogicNOR<string opstr, RegisterOperand RO>:
442   InstSE<(outs RO:$rd), (ins RO:$rs, RO:$rt),
443          !strconcat(opstr, "\t$rd, $rs, $rt"),
444          [(set RO:$rd, (not (or RO:$rs, RO:$rt)))], IIArith, FrmR, opstr> {
445   let isCommutable = 1;
446 }
447
448 // Shifts
449 class shift_rotate_imm<string opstr, Operand ImmOpnd,
450                        RegisterOperand RO, SDPatternOperator OpNode = null_frag,
451                        SDPatternOperator PF = null_frag> :
452   InstSE<(outs RO:$rd), (ins RO:$rt, ImmOpnd:$shamt),
453          !strconcat(opstr, "\t$rd, $rt, $shamt"),
454          [(set RO:$rd, (OpNode RO:$rt, PF:$shamt))], IIArith, FrmR, opstr>;
455
456 class shift_rotate_reg<string opstr, RegisterOperand RO,
457                        SDPatternOperator OpNode = null_frag>:
458   InstSE<(outs RO:$rd), (ins RO:$rt, GPR32Opnd:$rs),
459          !strconcat(opstr, "\t$rd, $rt, $rs"),
460          [(set RO:$rd, (OpNode RO:$rt, GPR32Opnd:$rs))], IIArith, FrmR, opstr>;
461
462 // Load Upper Imediate
463 class LoadUpper<string opstr, RegisterOperand RO, Operand Imm>:
464   InstSE<(outs RO:$rt), (ins Imm:$imm16), !strconcat(opstr, "\t$rt, $imm16"),
465          [], IIArith, FrmI, opstr>, IsAsCheapAsAMove {
466   let neverHasSideEffects = 1;
467   let isReMaterializable = 1;
468 }
469
470 // Memory Load/Store
471 class Load<string opstr, DAGOperand RO, SDPatternOperator OpNode = null_frag,
472            InstrItinClass Itin = NoItinerary, ComplexPattern Addr = addr> :
473   InstSE<(outs RO:$rt), (ins mem:$addr), !strconcat(opstr, "\t$rt, $addr"),
474          [(set RO:$rt, (OpNode Addr:$addr))], Itin, FrmI, opstr> {
475   let DecoderMethod = "DecodeMem";
476   let canFoldAsLoad = 1;
477   let mayLoad = 1;
478 }
479
480 class Store<string opstr, DAGOperand RO, SDPatternOperator OpNode = null_frag,
481             InstrItinClass Itin = NoItinerary, ComplexPattern Addr = addr> :
482   InstSE<(outs), (ins RO:$rt, mem:$addr), !strconcat(opstr, "\t$rt, $addr"),
483          [(OpNode RO:$rt, Addr:$addr)], Itin, FrmI, opstr> {
484   let DecoderMethod = "DecodeMem";
485   let mayStore = 1;
486 }
487
488 // Load/Store Left/Right
489 let canFoldAsLoad = 1 in
490 class LoadLeftRight<string opstr, SDNode OpNode, RegisterOperand RO,
491                     InstrItinClass Itin> :
492   InstSE<(outs RO:$rt), (ins mem:$addr, RO:$src),
493          !strconcat(opstr, "\t$rt, $addr"),
494          [(set RO:$rt, (OpNode addr:$addr, RO:$src))], Itin, FrmI> {
495   let DecoderMethod = "DecodeMem";
496   string Constraints = "$src = $rt";
497 }
498
499 class StoreLeftRight<string opstr, SDNode OpNode, RegisterOperand RO,
500                      InstrItinClass Itin> :
501   InstSE<(outs), (ins RO:$rt, mem:$addr), !strconcat(opstr, "\t$rt, $addr"),
502          [(OpNode RO:$rt, addr:$addr)], Itin, FrmI> {
503   let DecoderMethod = "DecodeMem";
504 }
505
506 // Conditional Branch
507 class CBranch<string opstr, DAGOperand opnd, PatFrag cond_op,
508               RegisterOperand RO> :
509   InstSE<(outs), (ins RO:$rs, RO:$rt, opnd:$offset),
510          !strconcat(opstr, "\t$rs, $rt, $offset"),
511          [(brcond (i32 (cond_op RO:$rs, RO:$rt)), bb:$offset)], IIBranch,
512          FrmI, opstr> {
513   let isBranch = 1;
514   let isTerminator = 1;
515   let hasDelaySlot = 1;
516   let Defs = [AT];
517 }
518
519 class CBranchZero<string opstr, DAGOperand opnd, PatFrag cond_op,
520                   RegisterOperand RO> :
521   InstSE<(outs), (ins RO:$rs, opnd:$offset),
522          !strconcat(opstr, "\t$rs, $offset"),
523          [(brcond (i32 (cond_op RO:$rs, 0)), bb:$offset)], IIBranch,
524          FrmI, opstr> {
525   let isBranch = 1;
526   let isTerminator = 1;
527   let hasDelaySlot = 1;
528   let Defs = [AT];
529 }
530
531 // SetCC
532 class SetCC_R<string opstr, PatFrag cond_op, RegisterOperand RO> :
533   InstSE<(outs GPR32Opnd:$rd), (ins RO:$rs, RO:$rt),
534          !strconcat(opstr, "\t$rd, $rs, $rt"),
535          [(set GPR32Opnd:$rd, (cond_op RO:$rs, RO:$rt))],
536          IIslt, FrmR, opstr>;
537
538 class SetCC_I<string opstr, PatFrag cond_op, Operand Od, PatLeaf imm_type,
539               RegisterOperand RO>:
540   InstSE<(outs GPR32Opnd:$rt), (ins RO:$rs, Od:$imm16),
541          !strconcat(opstr, "\t$rt, $rs, $imm16"),
542          [(set GPR32Opnd:$rt, (cond_op RO:$rs, imm_type:$imm16))],
543          IIslt, FrmI, opstr>;
544
545 // Jump
546 class JumpFJ<DAGOperand opnd, string opstr, SDPatternOperator operator,
547              SDPatternOperator targetoperator, string bopstr> :
548   InstSE<(outs), (ins opnd:$target), !strconcat(opstr, "\t$target"),
549          [(operator targetoperator:$target)], IIBranch, FrmJ, bopstr> {
550   let isTerminator=1;
551   let isBarrier=1;
552   let hasDelaySlot = 1;
553   let DecoderMethod = "DecodeJumpTarget";
554   let Defs = [AT];
555 }
556
557 // Unconditional branch
558 class UncondBranch<Instruction BEQInst> :
559   PseudoSE<(outs), (ins brtarget:$offset), [(br bb:$offset)], IIBranch>,
560   PseudoInstExpansion<(BEQInst ZERO, ZERO, brtarget:$offset)> {
561   let isBranch = 1;
562   let isTerminator = 1;
563   let isBarrier = 1;
564   let hasDelaySlot = 1;
565   let Predicates = [RelocPIC, HasStdEnc];
566   let Defs = [AT];
567 }
568
569 // Base class for indirect branch and return instruction classes.
570 let isTerminator=1, isBarrier=1, hasDelaySlot = 1 in
571 class JumpFR<string opstr, RegisterOperand RO,
572              SDPatternOperator operator = null_frag>:
573   InstSE<(outs), (ins RO:$rs), "jr\t$rs", [(operator RO:$rs)], IIBranch,
574          FrmR, opstr>;
575
576 // Indirect branch
577 class IndirectBranch<string opstr, RegisterOperand RO> :
578       JumpFR<opstr, RO, brind> {
579   let isBranch = 1;
580   let isIndirectBranch = 1;
581 }
582
583 // Return instruction
584 class RetBase<string opstr, RegisterOperand RO>: JumpFR<opstr, RO> {
585   let isReturn = 1;
586   let isCodeGenOnly = 1;
587   let hasCtrlDep = 1;
588   let hasExtraSrcRegAllocReq = 1;
589 }
590
591 // Jump and Link (Call)
592 let isCall=1, hasDelaySlot=1, Defs = [RA] in {
593   class JumpLink<string opstr, DAGOperand opnd> :
594     InstSE<(outs), (ins opnd:$target), !strconcat(opstr, "\t$target"),
595            [(MipsJmpLink imm:$target)], IIBranch, FrmJ, opstr> {
596     let DecoderMethod = "DecodeJumpTarget";
597   }
598
599   class JumpLinkRegPseudo<RegisterOperand RO, Instruction JALRInst,
600                           Register RetReg, RegisterOperand ResRO = RO>:
601     PseudoSE<(outs), (ins RO:$rs), [(MipsJmpLink RO:$rs)], IIBranch>,
602     PseudoInstExpansion<(JALRInst RetReg, ResRO:$rs)>;
603
604   class JumpLinkReg<string opstr, RegisterOperand RO>:
605     InstSE<(outs RO:$rd), (ins RO:$rs), !strconcat(opstr, "\t$rd, $rs"),
606            [], IIBranch, FrmR, opstr>;
607
608   class BGEZAL_FT<string opstr, DAGOperand opnd, RegisterOperand RO> :
609     InstSE<(outs), (ins RO:$rs, opnd:$offset),
610            !strconcat(opstr, "\t$rs, $offset"), [], IIBranch, FrmI, opstr>;
611
612 }
613
614 class BAL_BR_Pseudo<Instruction RealInst> :
615   PseudoSE<(outs), (ins brtarget:$offset), [], IIBranch>,
616   PseudoInstExpansion<(RealInst ZERO, brtarget:$offset)> {
617   let isBranch = 1;
618   let isTerminator = 1;
619   let isBarrier = 1;
620   let hasDelaySlot = 1;
621   let Defs = [RA];
622 }
623
624 // Syscall
625 class SYS_FT<string opstr> :
626   InstSE<(outs), (ins uimm20:$code_),
627          !strconcat(opstr, "\t$code_"), [], NoItinerary, FrmI>;
628 // Break
629 class BRK_FT<string opstr> :
630   InstSE<(outs), (ins uimm10:$code_1, uimm10:$code_2),
631          !strconcat(opstr, "\t$code_1, $code_2"), [], NoItinerary, FrmOther>;
632
633 // (D)Eret
634 class ER_FT<string opstr> :
635   InstSE<(outs), (ins),
636          opstr, [], NoItinerary, FrmOther>;
637
638 // Interrupts
639 class DEI_FT<string opstr, RegisterOperand RO> :
640   InstSE<(outs RO:$rt), (ins),
641          !strconcat(opstr, "\t$rt"), [], NoItinerary, FrmOther>;
642
643 // Wait
644 class WAIT_FT<string opstr> :
645   InstSE<(outs), (ins), opstr, [], NoItinerary, FrmOther> {
646   let Inst{31-26} = 0x10;
647   let Inst{25}    = 1;
648   let Inst{24-6}  = 0;
649   let Inst{5-0}   = 0x20;
650 }
651
652 // Sync
653 let hasSideEffects = 1 in
654 class SYNC_FT :
655   InstSE<(outs), (ins i32imm:$stype), "sync $stype", [(MipsSync imm:$stype)],
656          NoItinerary, FrmOther>;
657
658 let hasSideEffects = 1 in
659 class TEQ_FT<string opstr, RegisterOperand RO> :
660   InstSE<(outs), (ins RO:$rs, RO:$rt, uimm16:$code_),
661          !strconcat(opstr, "\t$rs, $rt, $code_"), [], NoItinerary,
662          FrmI, opstr>;
663
664 class TEQI_FT<string opstr, RegisterOperand RO> :
665   InstSE<(outs), (ins RO:$rs, uimm16:$imm16),
666          !strconcat(opstr, "\t$rs, $imm16"), [], NoItinerary, FrmOther, opstr>;
667 // Mul, Div
668 class Mult<string opstr, InstrItinClass itin, RegisterOperand RO,
669            list<Register> DefRegs> :
670   InstSE<(outs), (ins RO:$rs, RO:$rt), !strconcat(opstr, "\t$rs, $rt"), [],
671          itin, FrmR, opstr> {
672   let isCommutable = 1;
673   let Defs = DefRegs;
674   let neverHasSideEffects = 1;
675 }
676
677 // Pseudo multiply/divide instruction with explicit accumulator register
678 // operands.
679 class MultDivPseudo<Instruction RealInst, RegisterClass R0, RegisterOperand R1,
680                     SDPatternOperator OpNode, InstrItinClass Itin,
681                     bit IsComm = 1, bit HasSideEffects = 0,
682                     bit UsesCustomInserter = 0> :
683   PseudoSE<(outs R0:$ac), (ins R1:$rs, R1:$rt),
684            [(set R0:$ac, (OpNode R1:$rs, R1:$rt))], Itin>,
685   PseudoInstExpansion<(RealInst R1:$rs, R1:$rt)> {
686   let isCommutable = IsComm;
687   let hasSideEffects = HasSideEffects;
688   let usesCustomInserter = UsesCustomInserter;
689 }
690
691 // Pseudo multiply add/sub instruction with explicit accumulator register
692 // operands.
693 class MAddSubPseudo<Instruction RealInst, SDPatternOperator OpNode>
694   : PseudoSE<(outs ACC64:$ac),
695              (ins GPR32Opnd:$rs, GPR32Opnd:$rt, ACC64:$acin),
696              [(set ACC64:$ac,
697               (OpNode GPR32Opnd:$rs, GPR32Opnd:$rt, ACC64:$acin))],
698              IIImult>,
699     PseudoInstExpansion<(RealInst GPR32Opnd:$rs, GPR32Opnd:$rt)> {
700   string Constraints = "$acin = $ac";
701 }
702
703 class Div<string opstr, InstrItinClass itin, RegisterOperand RO,
704           list<Register> DefRegs> :
705   InstSE<(outs), (ins RO:$rs, RO:$rt), !strconcat(opstr, "\t$$zero, $rs, $rt"),
706          [], itin, FrmR, opstr> {
707   let Defs = DefRegs;
708 }
709
710 // Move from Hi/Lo
711 class PseudoMFLOHI<RegisterClass DstRC, RegisterClass SrcRC, SDNode OpNode>
712   : PseudoSE<(outs DstRC:$rd), (ins SrcRC:$hilo),
713              [(set DstRC:$rd, (OpNode SrcRC:$hilo))], IIHiLo>;
714
715 class MoveFromLOHI<string opstr, RegisterOperand RO, Register UseReg>:
716   InstSE<(outs RO:$rd), (ins), !strconcat(opstr, "\t$rd"), [], IIHiLo, FrmR,
717          opstr> {
718   let Uses = [UseReg];
719   let neverHasSideEffects = 1;
720 }
721
722 class PseudoMTLOHI<RegisterClass DstRC, RegisterClass SrcRC>
723   : PseudoSE<(outs DstRC:$lohi), (ins SrcRC:$lo, SrcRC:$hi),
724              [(set DstRC:$lohi, (MipsMTLOHI SrcRC:$lo, SrcRC:$hi))], IIHiLo>;
725
726 class MoveToLOHI<string opstr, RegisterOperand RO, list<Register> DefRegs>:
727   InstSE<(outs), (ins RO:$rs), !strconcat(opstr, "\t$rs"), [], IIHiLo,
728   FrmR, opstr> {
729   let Defs = DefRegs;
730   let neverHasSideEffects = 1;
731 }
732
733 class EffectiveAddress<string opstr, RegisterOperand RO> :
734   InstSE<(outs RO:$rt), (ins mem_ea:$addr), !strconcat(opstr, "\t$rt, $addr"),
735          [(set RO:$rt, addr:$addr)], NoItinerary, FrmI> {
736   let isCodeGenOnly = 1;
737   let DecoderMethod = "DecodeMem";
738 }
739
740 // Count Leading Ones/Zeros in Word
741 class CountLeading0<string opstr, RegisterOperand RO>:
742   InstSE<(outs RO:$rd), (ins RO:$rs), !strconcat(opstr, "\t$rd, $rs"),
743          [(set RO:$rd, (ctlz RO:$rs))], IIArith, FrmR, opstr>,
744   Requires<[HasBitCount, HasStdEnc]>;
745
746 class CountLeading1<string opstr, RegisterOperand RO>:
747   InstSE<(outs RO:$rd), (ins RO:$rs), !strconcat(opstr, "\t$rd, $rs"),
748          [(set RO:$rd, (ctlz (not RO:$rs)))], IIArith, FrmR, opstr>,
749   Requires<[HasBitCount, HasStdEnc]>;
750
751
752 // Sign Extend in Register.
753 class SignExtInReg<string opstr, ValueType vt, RegisterOperand RO> :
754   InstSE<(outs RO:$rd), (ins RO:$rt), !strconcat(opstr, "\t$rd, $rt"),
755          [(set RO:$rd, (sext_inreg RO:$rt, vt))], IIseb, FrmR, opstr> {
756   let Predicates = [HasSEInReg, HasStdEnc];
757 }
758
759 // Subword Swap
760 class SubwordSwap<string opstr, RegisterOperand RO>:
761   InstSE<(outs RO:$rd), (ins RO:$rt), !strconcat(opstr, "\t$rd, $rt"), [],
762          NoItinerary, FrmR, opstr> {
763   let Predicates = [HasSwap, HasStdEnc];
764   let neverHasSideEffects = 1;
765 }
766
767 // Read Hardware
768 class ReadHardware<RegisterOperand CPURegOperand, RegisterOperand RO> :
769   InstSE<(outs CPURegOperand:$rt), (ins RO:$rd), "rdhwr\t$rt, $rd", [],
770          IIArith, FrmR>;
771
772 // Ext and Ins
773 class ExtBase<string opstr, RegisterOperand RO, Operand PosOpnd,
774               SDPatternOperator Op = null_frag>:
775   InstSE<(outs RO:$rt), (ins RO:$rs, PosOpnd:$pos, size_ext:$size),
776          !strconcat(opstr, " $rt, $rs, $pos, $size"),
777          [(set RO:$rt, (Op RO:$rs, imm:$pos, imm:$size))], NoItinerary,
778          FrmR, opstr> {
779   let Predicates = [HasMips32r2, HasStdEnc];
780 }
781
782 class InsBase<string opstr, RegisterOperand RO, Operand PosOpnd,
783               SDPatternOperator Op = null_frag>:
784   InstSE<(outs RO:$rt), (ins RO:$rs, PosOpnd:$pos, size_ins:$size, RO:$src),
785          !strconcat(opstr, " $rt, $rs, $pos, $size"),
786          [(set RO:$rt, (Op RO:$rs, imm:$pos, imm:$size, RO:$src))],
787          NoItinerary, FrmR, opstr> {
788   let Predicates = [HasMips32r2, HasStdEnc];
789   let Constraints = "$src = $rt";
790 }
791
792 // Atomic instructions with 2 source operands (ATOMIC_SWAP & ATOMIC_LOAD_*).
793 class Atomic2Ops<PatFrag Op, RegisterClass DRC> :
794   PseudoSE<(outs DRC:$dst), (ins PtrRC:$ptr, DRC:$incr),
795            [(set DRC:$dst, (Op iPTR:$ptr, DRC:$incr))]>;
796
797 // Atomic Compare & Swap.
798 class AtomicCmpSwap<PatFrag Op, RegisterClass DRC> :
799   PseudoSE<(outs DRC:$dst), (ins PtrRC:$ptr, DRC:$cmp, DRC:$swap),
800            [(set DRC:$dst, (Op iPTR:$ptr, DRC:$cmp, DRC:$swap))]>;
801
802 class LLBase<string opstr, RegisterOperand RO> :
803   InstSE<(outs RO:$rt), (ins mem:$addr), !strconcat(opstr, "\t$rt, $addr"),
804          [], NoItinerary, FrmI> {
805   let DecoderMethod = "DecodeMem";
806   let mayLoad = 1;
807 }
808
809 class SCBase<string opstr, RegisterOperand RO> :
810   InstSE<(outs RO:$dst), (ins RO:$rt, mem:$addr),
811          !strconcat(opstr, "\t$rt, $addr"), [], NoItinerary, FrmI> {
812   let DecoderMethod = "DecodeMem";
813   let mayStore = 1;
814   let Constraints = "$rt = $dst";
815 }
816
817 class MFC3OP<string asmstr, RegisterOperand RO> :
818   InstSE<(outs RO:$rt, RO:$rd, uimm16:$sel), (ins),
819          !strconcat(asmstr, "\t$rt, $rd, $sel"), [], NoItinerary, FrmFR>;
820
821 class TrapBase<Instruction RealInst>
822   : PseudoSE<(outs), (ins), [(trap)], NoItinerary>,
823     PseudoInstExpansion<(RealInst 0, 0)> {
824   let isBarrier = 1;
825   let isTerminator = 1;
826   let isCodeGenOnly = 1;
827 }
828
829 //===----------------------------------------------------------------------===//
830 // Pseudo instructions
831 //===----------------------------------------------------------------------===//
832
833 // Return RA.
834 let isReturn=1, isTerminator=1, hasDelaySlot=1, isBarrier=1, hasCtrlDep=1 in
835 def RetRA : PseudoSE<(outs), (ins), [(MipsRet)]>;
836
837 let Defs = [SP], Uses = [SP], hasSideEffects = 1 in {
838 def ADJCALLSTACKDOWN : MipsPseudo<(outs), (ins i32imm:$amt),
839                                   [(callseq_start timm:$amt)]>;
840 def ADJCALLSTACKUP   : MipsPseudo<(outs), (ins i32imm:$amt1, i32imm:$amt2),
841                                   [(callseq_end timm:$amt1, timm:$amt2)]>;
842 }
843
844 let usesCustomInserter = 1 in {
845   def ATOMIC_LOAD_ADD_I8   : Atomic2Ops<atomic_load_add_8, GPR32>;
846   def ATOMIC_LOAD_ADD_I16  : Atomic2Ops<atomic_load_add_16, GPR32>;
847   def ATOMIC_LOAD_ADD_I32  : Atomic2Ops<atomic_load_add_32, GPR32>;
848   def ATOMIC_LOAD_SUB_I8   : Atomic2Ops<atomic_load_sub_8, GPR32>;
849   def ATOMIC_LOAD_SUB_I16  : Atomic2Ops<atomic_load_sub_16, GPR32>;
850   def ATOMIC_LOAD_SUB_I32  : Atomic2Ops<atomic_load_sub_32, GPR32>;
851   def ATOMIC_LOAD_AND_I8   : Atomic2Ops<atomic_load_and_8, GPR32>;
852   def ATOMIC_LOAD_AND_I16  : Atomic2Ops<atomic_load_and_16, GPR32>;
853   def ATOMIC_LOAD_AND_I32  : Atomic2Ops<atomic_load_and_32, GPR32>;
854   def ATOMIC_LOAD_OR_I8    : Atomic2Ops<atomic_load_or_8, GPR32>;
855   def ATOMIC_LOAD_OR_I16   : Atomic2Ops<atomic_load_or_16, GPR32>;
856   def ATOMIC_LOAD_OR_I32   : Atomic2Ops<atomic_load_or_32, GPR32>;
857   def ATOMIC_LOAD_XOR_I8   : Atomic2Ops<atomic_load_xor_8, GPR32>;
858   def ATOMIC_LOAD_XOR_I16  : Atomic2Ops<atomic_load_xor_16, GPR32>;
859   def ATOMIC_LOAD_XOR_I32  : Atomic2Ops<atomic_load_xor_32, GPR32>;
860   def ATOMIC_LOAD_NAND_I8  : Atomic2Ops<atomic_load_nand_8, GPR32>;
861   def ATOMIC_LOAD_NAND_I16 : Atomic2Ops<atomic_load_nand_16, GPR32>;
862   def ATOMIC_LOAD_NAND_I32 : Atomic2Ops<atomic_load_nand_32, GPR32>;
863
864   def ATOMIC_SWAP_I8       : Atomic2Ops<atomic_swap_8, GPR32>;
865   def ATOMIC_SWAP_I16      : Atomic2Ops<atomic_swap_16, GPR32>;
866   def ATOMIC_SWAP_I32      : Atomic2Ops<atomic_swap_32, GPR32>;
867
868   def ATOMIC_CMP_SWAP_I8   : AtomicCmpSwap<atomic_cmp_swap_8, GPR32>;
869   def ATOMIC_CMP_SWAP_I16  : AtomicCmpSwap<atomic_cmp_swap_16, GPR32>;
870   def ATOMIC_CMP_SWAP_I32  : AtomicCmpSwap<atomic_cmp_swap_32, GPR32>;
871 }
872
873 /// Pseudo instructions for loading and storing accumulator registers.
874 let isPseudo = 1, isCodeGenOnly = 1 in {
875   def LOAD_ACC64  : Load<"", ACC64>;
876   def STORE_ACC64 : Store<"", ACC64>;
877 }
878
879 //===----------------------------------------------------------------------===//
880 // Instruction definition
881 //===----------------------------------------------------------------------===//
882 //===----------------------------------------------------------------------===//
883 // MipsI Instructions
884 //===----------------------------------------------------------------------===//
885
886 /// Arithmetic Instructions (ALU Immediate)
887 def ADDiu : MMRel, ArithLogicI<"addiu", simm16, GPR32Opnd, IIArith, immSExt16,
888                                add>,
889             ADDI_FM<0x9>, IsAsCheapAsAMove;
890 def ADDi  : MMRel, ArithLogicI<"addi", simm16, GPR32Opnd>, ADDI_FM<0x8>;
891 def SLTi  : MMRel, SetCC_I<"slti", setlt, simm16, immSExt16, GPR32Opnd>,
892             SLTI_FM<0xa>;
893 def SLTiu : MMRel, SetCC_I<"sltiu", setult, simm16, immSExt16, GPR32Opnd>,
894             SLTI_FM<0xb>;
895 def ANDi  : MMRel, ArithLogicI<"andi", uimm16, GPR32Opnd, IILogic, immZExt16,
896                                and>,
897             ADDI_FM<0xc>;
898 def ORi   : MMRel, ArithLogicI<"ori", uimm16, GPR32Opnd, IILogic, immZExt16,
899                                or>,
900             ADDI_FM<0xd>;
901 def XORi  : MMRel, ArithLogicI<"xori", uimm16, GPR32Opnd, IILogic, immZExt16,
902                                xor>,
903             ADDI_FM<0xe>;
904 def LUi   : MMRel, LoadUpper<"lui", GPR32Opnd, uimm16>, LUI_FM;
905
906 /// Arithmetic Instructions (3-Operand, R-Type)
907 def ADDu  : MMRel, ArithLogicR<"addu", GPR32Opnd, 1, IIArith, add>,
908             ADD_FM<0, 0x21>;
909 def SUBu  : MMRel, ArithLogicR<"subu", GPR32Opnd, 0, IIArith, sub>,
910             ADD_FM<0, 0x23>;
911 let Defs = [HI0, LO0] in
912 def MUL   : MMRel, ArithLogicR<"mul", GPR32Opnd, 1, IIImul, mul>,
913             ADD_FM<0x1c, 2>;
914 def ADD   : MMRel, ArithLogicR<"add", GPR32Opnd>, ADD_FM<0, 0x20>;
915 def SUB   : MMRel, ArithLogicR<"sub", GPR32Opnd>, ADD_FM<0, 0x22>;
916 def SLT   : MMRel, SetCC_R<"slt", setlt, GPR32Opnd>, ADD_FM<0, 0x2a>;
917 def SLTu  : MMRel, SetCC_R<"sltu", setult, GPR32Opnd>, ADD_FM<0, 0x2b>;
918 def AND   : MMRel, ArithLogicR<"and", GPR32Opnd, 1, IILogic, and>,
919             ADD_FM<0, 0x24>;
920 def OR    : MMRel, ArithLogicR<"or", GPR32Opnd, 1, IILogic, or>,
921             ADD_FM<0, 0x25>;
922 def XOR   : MMRel, ArithLogicR<"xor", GPR32Opnd, 1, IILogic, xor>,
923             ADD_FM<0, 0x26>;
924 def NOR   : MMRel, LogicNOR<"nor", GPR32Opnd>, ADD_FM<0, 0x27>;
925
926 /// Shift Instructions
927 def SLL  : MMRel, shift_rotate_imm<"sll", uimm5, GPR32Opnd, shl, immZExt5>,
928            SRA_FM<0, 0>;
929 def SRL  : MMRel, shift_rotate_imm<"srl", uimm5, GPR32Opnd, srl, immZExt5>,
930            SRA_FM<2, 0>;
931 def SRA  : MMRel, shift_rotate_imm<"sra", uimm5, GPR32Opnd, sra, immZExt5>,
932            SRA_FM<3, 0>;
933 def SLLV : MMRel, shift_rotate_reg<"sllv", GPR32Opnd, shl>, SRLV_FM<4, 0>;
934 def SRLV : MMRel, shift_rotate_reg<"srlv", GPR32Opnd, srl>, SRLV_FM<6, 0>;
935 def SRAV : MMRel, shift_rotate_reg<"srav", GPR32Opnd, sra>, SRLV_FM<7, 0>;
936
937 // Rotate Instructions
938 let Predicates = [HasMips32r2, HasStdEnc] in {
939   def ROTR  : MMRel, shift_rotate_imm<"rotr", uimm5, GPR32Opnd, rotr,
940                                       immZExt5>,
941               SRA_FM<2, 1>;
942   def ROTRV : MMRel, shift_rotate_reg<"rotrv", GPR32Opnd, rotr>,
943               SRLV_FM<6, 1>;
944 }
945
946 /// Load and Store Instructions
947 ///  aligned
948 def LB  : Load<"lb", GPR32Opnd, sextloadi8, IILoad>, MMRel, LW_FM<0x20>;
949 def LBu : Load<"lbu", GPR32Opnd, zextloadi8, IILoad, addrDefault>, MMRel,
950           LW_FM<0x24>;
951 def LH  : Load<"lh", GPR32Opnd, sextloadi16, IILoad, addrDefault>, MMRel,
952           LW_FM<0x21>;
953 def LHu : Load<"lhu", GPR32Opnd, zextloadi16, IILoad>, MMRel, LW_FM<0x25>;
954 def LW  : Load<"lw", GPR32Opnd, load, IILoad, addrDefault>, MMRel,
955           LW_FM<0x23>;
956 def SB  : Store<"sb", GPR32Opnd, truncstorei8, IIStore>, MMRel, LW_FM<0x28>;
957 def SH  : Store<"sh", GPR32Opnd, truncstorei16, IIStore>, MMRel, LW_FM<0x29>;
958 def SW  : Store<"sw", GPR32Opnd, store, IIStore>, MMRel, LW_FM<0x2b>;
959
960 /// load/store left/right
961 let Predicates = [NotInMicroMips] in {
962 def LWL : LoadLeftRight<"lwl", MipsLWL, GPR32Opnd, IILoad>, LW_FM<0x22>;
963 def LWR : LoadLeftRight<"lwr", MipsLWR, GPR32Opnd, IILoad>, LW_FM<0x26>;
964 def SWL : StoreLeftRight<"swl", MipsSWL, GPR32Opnd, IIStore>, LW_FM<0x2a>;
965 def SWR : StoreLeftRight<"swr", MipsSWR, GPR32Opnd, IIStore>, LW_FM<0x2e>;
966 }
967
968 def SYNC : SYNC_FT, SYNC_FM;
969 def TEQ : MMRel, TEQ_FT<"teq", GPR32Opnd>, TEQ_FM<0x34>;
970 def TGE : MMRel, TEQ_FT<"tge", GPR32Opnd>, TEQ_FM<0x30>;
971 def TGEU : MMRel, TEQ_FT<"tgeu", GPR32Opnd>, TEQ_FM<0x31>;
972 def TLT : MMRel, TEQ_FT<"tlt", GPR32Opnd>, TEQ_FM<0x32>;
973 def TLTU : MMRel, TEQ_FT<"tltu", GPR32Opnd>, TEQ_FM<0x33>;
974 def TNE : MMRel, TEQ_FT<"tne", GPR32Opnd>, TEQ_FM<0x36>;
975
976 def TEQI : MMRel, TEQI_FT<"teqi", GPR32Opnd>, TEQI_FM<0xc>;
977 def TGEI : MMRel, TEQI_FT<"tgei", GPR32Opnd>, TEQI_FM<0x8>;
978 def TGEIU : MMRel, TEQI_FT<"tgeiu", GPR32Opnd>, TEQI_FM<0x9>;
979 def TLTI : MMRel, TEQI_FT<"tlti", GPR32Opnd>, TEQI_FM<0xa>;
980 def TTLTIU : MMRel, TEQI_FT<"tltiu", GPR32Opnd>, TEQI_FM<0xb>;
981 def TNEI : MMRel, TEQI_FT<"tnei", GPR32Opnd>, TEQI_FM<0xe>;
982
983 def BREAK : BRK_FT<"break">, BRK_FM<0xd>;
984 def SYSCALL : SYS_FT<"syscall">, SYS_FM<0xc>;
985 def TRAP : TrapBase<BREAK>;
986
987 def ERET : ER_FT<"eret">, ER_FM<0x18>;
988 def DERET : ER_FT<"deret">, ER_FM<0x1f>;
989
990 def EI : DEI_FT<"ei", GPR32Opnd>, EI_FM<1>;
991 def DI : DEI_FT<"di", GPR32Opnd>, EI_FM<0>;
992
993 def WAIT : WAIT_FT<"wait">;
994
995 /// Load-linked, Store-conditional
996 def LL : LLBase<"ll", GPR32Opnd>, LW_FM<0x30>;
997 def SC : SCBase<"sc", GPR32Opnd>, LW_FM<0x38>;
998
999 /// Jump and Branch Instructions
1000 def J       : MMRel, JumpFJ<jmptarget, "j", br, bb, "j">, FJ<2>,
1001               Requires<[RelocStatic, HasStdEnc]>, IsBranch;
1002 def JR      : MMRel, IndirectBranch<"jr", GPR32Opnd>, MTLO_FM<8>;
1003 def BEQ     : MMRel, CBranch<"beq", brtarget, seteq, GPR32Opnd>, BEQ_FM<4>;
1004 def BNE     : MMRel, CBranch<"bne", brtarget, setne, GPR32Opnd>, BEQ_FM<5>;
1005 def BGEZ    : MMRel, CBranchZero<"bgez", brtarget, setge, GPR32Opnd>,
1006               BGEZ_FM<1, 1>;
1007 def BGTZ    : MMRel, CBranchZero<"bgtz", brtarget, setgt, GPR32Opnd>,
1008               BGEZ_FM<7, 0>;
1009 def BLEZ    : MMRel, CBranchZero<"blez", brtarget, setle, GPR32Opnd>,
1010               BGEZ_FM<6, 0>;
1011 def BLTZ    : MMRel, CBranchZero<"bltz", brtarget, setlt, GPR32Opnd>,
1012               BGEZ_FM<1, 0>;
1013 def B       : UncondBranch<BEQ>;
1014
1015 def JAL  : MMRel, JumpLink<"jal", calltarget>, FJ<3>;
1016 def JALR : MMRel, JumpLinkReg<"jalr", GPR32Opnd>, JALR_FM;
1017 def JALRPseudo : JumpLinkRegPseudo<GPR32Opnd, JALR, RA>;
1018 def BGEZAL : MMRel, BGEZAL_FT<"bgezal", brtarget, GPR32Opnd>, BGEZAL_FM<0x11>;
1019 def BLTZAL : MMRel, BGEZAL_FT<"bltzal", brtarget, GPR32Opnd>, BGEZAL_FM<0x10>;
1020 def BAL_BR : BAL_BR_Pseudo<BGEZAL>;
1021 def TAILCALL : MMRel, JumpFJ<calltarget, "j", MipsTailCall, imm, "tcall">,
1022                FJ<2>, IsTailCall;
1023 def TAILCALL_R : MMRel, JumpFR<"tcallr", GPR32Opnd, MipsTailCall>, MTLO_FM<8>,
1024                  IsTailCall;
1025
1026 def RET : MMRel, RetBase<"ret", GPR32Opnd>, MTLO_FM<8>;
1027
1028 // Exception handling related node and instructions.
1029 // The conversion sequence is:
1030 // ISD::EH_RETURN -> MipsISD::EH_RETURN ->
1031 // MIPSeh_return -> (stack change + indirect branch)
1032 //
1033 // MIPSeh_return takes the place of regular return instruction
1034 // but takes two arguments (V1, V0) which are used for storing
1035 // the offset and return address respectively.
1036 def SDT_MipsEHRET : SDTypeProfile<0, 2, [SDTCisInt<0>, SDTCisPtrTy<1>]>;
1037
1038 def MIPSehret : SDNode<"MipsISD::EH_RETURN", SDT_MipsEHRET,
1039                       [SDNPHasChain, SDNPOptInGlue, SDNPVariadic]>;
1040
1041 let Uses = [V0, V1], isTerminator = 1, isReturn = 1, isBarrier = 1 in {
1042   def MIPSeh_return32 : MipsPseudo<(outs), (ins GPR32:$spoff, GPR32:$dst),
1043                                 [(MIPSehret GPR32:$spoff, GPR32:$dst)]>;
1044   def MIPSeh_return64 : MipsPseudo<(outs), (ins GPR64:$spoff,
1045                                                 GPR64:$dst),
1046                                 [(MIPSehret GPR64:$spoff, GPR64:$dst)]>;
1047 }
1048
1049 /// Multiply and Divide Instructions.
1050 def MULT  : MMRel, Mult<"mult", IIImult, GPR32Opnd, [HI0, LO0]>,
1051             MULT_FM<0, 0x18>;
1052 def MULTu : MMRel, Mult<"multu", IIImult, GPR32Opnd, [HI0, LO0]>,
1053             MULT_FM<0, 0x19>;
1054 def SDIV  : MMRel, Div<"div", IIIdiv, GPR32Opnd, [HI0, LO0]>,
1055             MULT_FM<0, 0x1a>;
1056 def UDIV  : MMRel, Div<"divu", IIIdiv, GPR32Opnd, [HI0, LO0]>,
1057             MULT_FM<0, 0x1b>;
1058
1059 def MTHI : MMRel, MoveToLOHI<"mthi", GPR32Opnd, [HI0]>, MTLO_FM<0x11>;
1060 def MTLO : MMRel, MoveToLOHI<"mtlo", GPR32Opnd, [LO0]>, MTLO_FM<0x13>;
1061 def MFHI : MMRel, MoveFromLOHI<"mfhi", GPR32Opnd, AC0>, MFLO_FM<0x10>;
1062 def MFLO : MMRel, MoveFromLOHI<"mflo", GPR32Opnd, AC0>, MFLO_FM<0x12>;
1063
1064 /// Sign Ext In Register Instructions.
1065 def SEB : MMRel, SignExtInReg<"seb", i8, GPR32Opnd>, SEB_FM<0x10, 0x20>;
1066 def SEH : MMRel, SignExtInReg<"seh", i16, GPR32Opnd>, SEB_FM<0x18, 0x20>;
1067
1068 /// Count Leading
1069 def CLZ : MMRel, CountLeading0<"clz", GPR32Opnd>, CLO_FM<0x20>;
1070 def CLO : MMRel, CountLeading1<"clo", GPR32Opnd>, CLO_FM<0x21>;
1071
1072 /// Word Swap Bytes Within Halfwords
1073 def WSBH : MMRel, SubwordSwap<"wsbh", GPR32Opnd>, SEB_FM<2, 0x20>;
1074
1075 /// No operation.
1076 def NOP : PseudoSE<(outs), (ins), []>, PseudoInstExpansion<(SLL ZERO, ZERO, 0)>;
1077
1078 // FrameIndexes are legalized when they are operands from load/store
1079 // instructions. The same not happens for stack address copies, so an
1080 // add op with mem ComplexPattern is used and the stack address copy
1081 // can be matched. It's similar to Sparc LEA_ADDRi
1082 def LEA_ADDiu : EffectiveAddress<"addiu", GPR32Opnd>, LW_FM<9>;
1083
1084 // MADD*/MSUB*
1085 def MADD  : MMRel, MArithR<"madd", 1>, MULT_FM<0x1c, 0>;
1086 def MADDU : MMRel, MArithR<"maddu", 1>, MULT_FM<0x1c, 1>;
1087 def MSUB  : MMRel, MArithR<"msub">, MULT_FM<0x1c, 4>;
1088 def MSUBU : MMRel, MArithR<"msubu">, MULT_FM<0x1c, 5>;
1089
1090 let Predicates = [HasStdEnc, NotDSP] in {
1091 def PseudoMULT  : MultDivPseudo<MULT, ACC64, GPR32Opnd, MipsMult, IIImult>;
1092 def PseudoMULTu : MultDivPseudo<MULTu, ACC64, GPR32Opnd, MipsMultu, IIImult>;
1093 def PseudoMFHI : PseudoMFLOHI<GPR32, ACC64, MipsMFHI>;
1094 def PseudoMFLO : PseudoMFLOHI<GPR32, ACC64, MipsMFLO>;
1095 def PseudoMTLOHI : PseudoMTLOHI<ACC64, GPR32>;
1096 def PseudoMADD  : MAddSubPseudo<MADD, MipsMAdd>;
1097 def PseudoMADDU : MAddSubPseudo<MADDU, MipsMAddu>;
1098 def PseudoMSUB  : MAddSubPseudo<MSUB, MipsMSub>;
1099 def PseudoMSUBU : MAddSubPseudo<MSUBU, MipsMSubu>;
1100 }
1101
1102 def PseudoSDIV : MultDivPseudo<SDIV, ACC64, GPR32Opnd, MipsDivRem, IIIdiv,
1103                                0, 1, 1>;
1104 def PseudoUDIV : MultDivPseudo<UDIV, ACC64, GPR32Opnd, MipsDivRemU, IIIdiv,
1105                                0, 1, 1>;
1106
1107 def RDHWR : ReadHardware<GPR32Opnd, HWRegsOpnd>, RDHWR_FM;
1108
1109 def EXT : MMRel, ExtBase<"ext", GPR32Opnd, uimm5, MipsExt>, EXT_FM<0>;
1110 def INS : MMRel, InsBase<"ins", GPR32Opnd, uimm5, MipsIns>, EXT_FM<4>;
1111
1112 /// Move Control Registers From/To CPU Registers
1113 def MFC0 : MFC3OP<"mfc0", GPR32Opnd>, MFC3OP_FM<0x10, 0>;
1114 def MTC0 : MFC3OP<"mtc0", GPR32Opnd>, MFC3OP_FM<0x10, 4>;
1115 def MFC2 : MFC3OP<"mfc2", GPR32Opnd>, MFC3OP_FM<0x12, 0>;
1116 def MTC2 : MFC3OP<"mtc2", GPR32Opnd>, MFC3OP_FM<0x12, 4>;
1117
1118 //===----------------------------------------------------------------------===//
1119 // Instruction aliases
1120 //===----------------------------------------------------------------------===//
1121 def : InstAlias<"move $dst, $src",
1122                 (ADDu GPR32Opnd:$dst, GPR32Opnd:$src,ZERO), 1>,
1123       Requires<[NotMips64]>;
1124 def : InstAlias<"bal $offset", (BGEZAL ZERO, brtarget:$offset), 0>;
1125 def : InstAlias<"addu $rs, $rt, $imm",
1126                 (ADDiu GPR32Opnd:$rs, GPR32Opnd:$rt, simm16:$imm), 0>;
1127 def : InstAlias<"add $rs, $rt, $imm",
1128                 (ADDi GPR32Opnd:$rs, GPR32Opnd:$rt, simm16:$imm), 0>;
1129 def : InstAlias<"and $rs, $rt, $imm",
1130                 (ANDi GPR32Opnd:$rs, GPR32Opnd:$rt, simm16:$imm), 0>;
1131 def : InstAlias<"j $rs", (JR GPR32Opnd:$rs), 0>;
1132 def : InstAlias<"jalr $rs", (JALR RA, GPR32Opnd:$rs), 0>;
1133 def : InstAlias<"jal $rs", (JALR RA, GPR32Opnd:$rs), 0>;
1134 def : InstAlias<"jal $rd,$rs", (JALR GPR32Opnd:$rd, GPR32Opnd:$rs), 0>;
1135 def : InstAlias<"not $rt, $rs",
1136                 (NOR GPR32Opnd:$rt, GPR32Opnd:$rs, ZERO), 0>;
1137 def : InstAlias<"neg $rt, $rs",
1138                 (SUB GPR32Opnd:$rt, ZERO, GPR32Opnd:$rs), 1>;
1139 def : InstAlias<"negu $rt, $rs",
1140                 (SUBu GPR32Opnd:$rt, ZERO, GPR32Opnd:$rs), 1>;
1141 def : InstAlias<"slt $rs, $rt, $imm",
1142                 (SLTi GPR32Opnd:$rs, GPR32Opnd:$rt, simm16:$imm), 0>;
1143 def : InstAlias<"xor $rs, $rt, $imm",
1144                 (XORi GPR32Opnd:$rs, GPR32Opnd:$rt, uimm16:$imm), 0>;
1145 def : InstAlias<"or $rs, $rt, $imm",
1146                 (ORi GPR32Opnd:$rs, GPR32Opnd:$rt, uimm16:$imm), 0>;
1147 def : InstAlias<"nop", (SLL ZERO, ZERO, 0), 1>;
1148 def : InstAlias<"mfc0 $rt, $rd", (MFC0 GPR32Opnd:$rt, GPR32Opnd:$rd, 0), 0>;
1149 def : InstAlias<"mtc0 $rt, $rd", (MTC0 GPR32Opnd:$rt, GPR32Opnd:$rd, 0), 0>;
1150 def : InstAlias<"mfc2 $rt, $rd", (MFC2 GPR32Opnd:$rt, GPR32Opnd:$rd, 0), 0>;
1151 def : InstAlias<"mtc2 $rt, $rd", (MTC2 GPR32Opnd:$rt, GPR32Opnd:$rd, 0), 0>;
1152 def : InstAlias<"b $offset", (BEQ ZERO, ZERO, brtarget:$offset), 0>;
1153 def : InstAlias<"bnez $rs,$offset",
1154                 (BNE GPR32Opnd:$rs, ZERO, brtarget:$offset), 0>;
1155 def : InstAlias<"beqz $rs,$offset",
1156                 (BEQ GPR32Opnd:$rs, ZERO, brtarget:$offset), 0>;
1157 def : InstAlias<"syscall", (SYSCALL 0), 1>;
1158
1159 def : InstAlias<"break $imm", (BREAK uimm10:$imm, 0), 1>;
1160 def : InstAlias<"break", (BREAK 0, 0), 1>;
1161 def : InstAlias<"ei", (EI ZERO), 1>;
1162 def : InstAlias<"di", (DI ZERO), 1>;
1163
1164 def  : InstAlias<"teq $rs, $rt", (TEQ GPR32Opnd:$rs, GPR32Opnd:$rt, 0), 1>;
1165 def  : InstAlias<"tge $rs, $rt", (TGE GPR32Opnd:$rs, GPR32Opnd:$rt, 0), 1>;
1166 def  : InstAlias<"tgeu $rs, $rt", (TGEU GPR32Opnd:$rs, GPR32Opnd:$rt, 0), 1>;
1167 def  : InstAlias<"tlt $rs, $rt", (TLT GPR32Opnd:$rs, GPR32Opnd:$rt, 0), 1>;
1168 def  : InstAlias<"tltu $rs, $rt", (TLTU GPR32Opnd:$rs, GPR32Opnd:$rt, 0), 1>;
1169 def  : InstAlias<"tne $rs, $rt", (TNE GPR32Opnd:$rs, GPR32Opnd:$rt, 0), 1>;
1170 def : InstAlias<"sub, $rd, $rs, $imm",
1171                 (ADDi GPR32Opnd:$rd, GPR32Opnd:$rs, InvertedImOperand:$imm)>;
1172 def : InstAlias<"subu, $rd, $rs, $imm",
1173                 (ADDiu GPR32Opnd:$rd, GPR32Opnd:$rs, InvertedImOperand:$imm)>;
1174
1175 //===----------------------------------------------------------------------===//
1176 // Assembler Pseudo Instructions
1177 //===----------------------------------------------------------------------===//
1178
1179 class LoadImm32< string instr_asm, Operand Od, RegisterOperand RO> :
1180   MipsAsmPseudoInst<(outs RO:$rt), (ins Od:$imm32),
1181                      !strconcat(instr_asm, "\t$rt, $imm32")> ;
1182 def LoadImm32Reg : LoadImm32<"li", uimm5, GPR32Opnd>;
1183
1184 class LoadAddress<string instr_asm, Operand MemOpnd, RegisterOperand RO> :
1185   MipsAsmPseudoInst<(outs RO:$rt), (ins MemOpnd:$addr),
1186                      !strconcat(instr_asm, "\t$rt, $addr")> ;
1187 def LoadAddr32Reg : LoadAddress<"la", mem, GPR32Opnd>;
1188
1189 class LoadAddressImm<string instr_asm, Operand Od, RegisterOperand RO> :
1190   MipsAsmPseudoInst<(outs RO:$rt), (ins Od:$imm32),
1191                      !strconcat(instr_asm, "\t$rt, $imm32")> ;
1192 def LoadAddr32Imm : LoadAddressImm<"la", uimm5, GPR32Opnd>;
1193
1194 //===----------------------------------------------------------------------===//
1195 //  Arbitrary patterns that map to one or more instructions
1196 //===----------------------------------------------------------------------===//
1197
1198 // Load/store pattern templates.
1199 class LoadRegImmPat<Instruction LoadInst, ValueType ValTy, PatFrag Node> :
1200   MipsPat<(ValTy (Node addrRegImm:$a)), (LoadInst addrRegImm:$a)>;
1201
1202 class StoreRegImmPat<Instruction StoreInst, ValueType ValTy> :
1203   MipsPat<(store ValTy:$v, addrRegImm:$a), (StoreInst ValTy:$v, addrRegImm:$a)>;
1204
1205 // Small immediates
1206 def : MipsPat<(i32 immSExt16:$in),
1207               (ADDiu ZERO, imm:$in)>;
1208 def : MipsPat<(i32 immZExt16:$in),
1209               (ORi ZERO, imm:$in)>;
1210 def : MipsPat<(i32 immLow16Zero:$in),
1211               (LUi (HI16 imm:$in))>;
1212
1213 // Arbitrary immediates
1214 def : MipsPat<(i32 imm:$imm),
1215           (ORi (LUi (HI16 imm:$imm)), (LO16 imm:$imm))>;
1216
1217 // Carry MipsPatterns
1218 def : MipsPat<(subc GPR32:$lhs, GPR32:$rhs),
1219               (SUBu GPR32:$lhs, GPR32:$rhs)>;
1220 let Predicates = [HasStdEnc, NotDSP] in {
1221   def : MipsPat<(addc GPR32:$lhs, GPR32:$rhs),
1222                 (ADDu GPR32:$lhs, GPR32:$rhs)>;
1223   def : MipsPat<(addc  GPR32:$src, immSExt16:$imm),
1224                 (ADDiu GPR32:$src, imm:$imm)>;
1225 }
1226
1227 // Call
1228 def : MipsPat<(MipsJmpLink (i32 tglobaladdr:$dst)),
1229               (JAL tglobaladdr:$dst)>;
1230 def : MipsPat<(MipsJmpLink (i32 texternalsym:$dst)),
1231               (JAL texternalsym:$dst)>;
1232 //def : MipsPat<(MipsJmpLink GPR32:$dst),
1233 //              (JALR GPR32:$dst)>;
1234
1235 // Tail call
1236 def : MipsPat<(MipsTailCall (iPTR tglobaladdr:$dst)),
1237               (TAILCALL tglobaladdr:$dst)>;
1238 def : MipsPat<(MipsTailCall (iPTR texternalsym:$dst)),
1239               (TAILCALL texternalsym:$dst)>;
1240 // hi/lo relocs
1241 def : MipsPat<(MipsHi tglobaladdr:$in), (LUi tglobaladdr:$in)>;
1242 def : MipsPat<(MipsHi tblockaddress:$in), (LUi tblockaddress:$in)>;
1243 def : MipsPat<(MipsHi tjumptable:$in), (LUi tjumptable:$in)>;
1244 def : MipsPat<(MipsHi tconstpool:$in), (LUi tconstpool:$in)>;
1245 def : MipsPat<(MipsHi tglobaltlsaddr:$in), (LUi tglobaltlsaddr:$in)>;
1246 def : MipsPat<(MipsHi texternalsym:$in), (LUi texternalsym:$in)>;
1247
1248 def : MipsPat<(MipsLo tglobaladdr:$in), (ADDiu ZERO, tglobaladdr:$in)>;
1249 def : MipsPat<(MipsLo tblockaddress:$in), (ADDiu ZERO, tblockaddress:$in)>;
1250 def : MipsPat<(MipsLo tjumptable:$in), (ADDiu ZERO, tjumptable:$in)>;
1251 def : MipsPat<(MipsLo tconstpool:$in), (ADDiu ZERO, tconstpool:$in)>;
1252 def : MipsPat<(MipsLo tglobaltlsaddr:$in), (ADDiu ZERO, tglobaltlsaddr:$in)>;
1253 def : MipsPat<(MipsLo texternalsym:$in), (ADDiu ZERO, texternalsym:$in)>;
1254
1255 def : MipsPat<(add GPR32:$hi, (MipsLo tglobaladdr:$lo)),
1256               (ADDiu GPR32:$hi, tglobaladdr:$lo)>;
1257 def : MipsPat<(add GPR32:$hi, (MipsLo tblockaddress:$lo)),
1258               (ADDiu GPR32:$hi, tblockaddress:$lo)>;
1259 def : MipsPat<(add GPR32:$hi, (MipsLo tjumptable:$lo)),
1260               (ADDiu GPR32:$hi, tjumptable:$lo)>;
1261 def : MipsPat<(add GPR32:$hi, (MipsLo tconstpool:$lo)),
1262               (ADDiu GPR32:$hi, tconstpool:$lo)>;
1263 def : MipsPat<(add GPR32:$hi, (MipsLo tglobaltlsaddr:$lo)),
1264               (ADDiu GPR32:$hi, tglobaltlsaddr:$lo)>;
1265
1266 // gp_rel relocs
1267 def : MipsPat<(add GPR32:$gp, (MipsGPRel tglobaladdr:$in)),
1268               (ADDiu GPR32:$gp, tglobaladdr:$in)>;
1269 def : MipsPat<(add GPR32:$gp, (MipsGPRel tconstpool:$in)),
1270               (ADDiu GPR32:$gp, tconstpool:$in)>;
1271
1272 // wrapper_pic
1273 class WrapperPat<SDNode node, Instruction ADDiuOp, RegisterClass RC>:
1274       MipsPat<(MipsWrapper RC:$gp, node:$in),
1275               (ADDiuOp RC:$gp, node:$in)>;
1276
1277 def : WrapperPat<tglobaladdr, ADDiu, GPR32>;
1278 def : WrapperPat<tconstpool, ADDiu, GPR32>;
1279 def : WrapperPat<texternalsym, ADDiu, GPR32>;
1280 def : WrapperPat<tblockaddress, ADDiu, GPR32>;
1281 def : WrapperPat<tjumptable, ADDiu, GPR32>;
1282 def : WrapperPat<tglobaltlsaddr, ADDiu, GPR32>;
1283
1284 // Mips does not have "not", so we expand our way
1285 def : MipsPat<(not GPR32:$in),
1286               (NOR GPR32Opnd:$in, ZERO)>;
1287
1288 // extended loads
1289 let Predicates = [HasStdEnc] in {
1290   def : MipsPat<(i32 (extloadi1  addr:$src)), (LBu addr:$src)>;
1291   def : MipsPat<(i32 (extloadi8  addr:$src)), (LBu addr:$src)>;
1292   def : MipsPat<(i32 (extloadi16 addr:$src)), (LHu addr:$src)>;
1293 }
1294
1295 // peepholes
1296 let Predicates = [HasStdEnc] in
1297 def : MipsPat<(store (i32 0), addr:$dst), (SW ZERO, addr:$dst)>;
1298
1299 // brcond patterns
1300 multiclass BrcondPats<RegisterClass RC, Instruction BEQOp, Instruction BNEOp,
1301                       Instruction SLTOp, Instruction SLTuOp, Instruction SLTiOp,
1302                       Instruction SLTiuOp, Register ZEROReg> {
1303 def : MipsPat<(brcond (i32 (setne RC:$lhs, 0)), bb:$dst),
1304               (BNEOp RC:$lhs, ZEROReg, bb:$dst)>;
1305 def : MipsPat<(brcond (i32 (seteq RC:$lhs, 0)), bb:$dst),
1306               (BEQOp RC:$lhs, ZEROReg, bb:$dst)>;
1307
1308 def : MipsPat<(brcond (i32 (setge RC:$lhs, RC:$rhs)), bb:$dst),
1309               (BEQ (SLTOp RC:$lhs, RC:$rhs), ZERO, bb:$dst)>;
1310 def : MipsPat<(brcond (i32 (setuge RC:$lhs, RC:$rhs)), bb:$dst),
1311               (BEQ (SLTuOp RC:$lhs, RC:$rhs), ZERO, bb:$dst)>;
1312 def : MipsPat<(brcond (i32 (setge RC:$lhs, immSExt16:$rhs)), bb:$dst),
1313               (BEQ (SLTiOp RC:$lhs, immSExt16:$rhs), ZERO, bb:$dst)>;
1314 def : MipsPat<(brcond (i32 (setuge RC:$lhs, immSExt16:$rhs)), bb:$dst),
1315               (BEQ (SLTiuOp RC:$lhs, immSExt16:$rhs), ZERO, bb:$dst)>;
1316 def : MipsPat<(brcond (i32 (setgt RC:$lhs, immSExt16Plus1:$rhs)), bb:$dst),
1317               (BEQ (SLTiOp RC:$lhs, (Plus1 imm:$rhs)), ZERO, bb:$dst)>;
1318 def : MipsPat<(brcond (i32 (setugt RC:$lhs, immSExt16Plus1:$rhs)), bb:$dst),
1319               (BEQ (SLTiuOp RC:$lhs, (Plus1 imm:$rhs)), ZERO, bb:$dst)>;
1320
1321 def : MipsPat<(brcond (i32 (setle RC:$lhs, RC:$rhs)), bb:$dst),
1322               (BEQ (SLTOp RC:$rhs, RC:$lhs), ZERO, bb:$dst)>;
1323 def : MipsPat<(brcond (i32 (setule RC:$lhs, RC:$rhs)), bb:$dst),
1324               (BEQ (SLTuOp RC:$rhs, RC:$lhs), ZERO, bb:$dst)>;
1325
1326 def : MipsPat<(brcond RC:$cond, bb:$dst),
1327               (BNEOp RC:$cond, ZEROReg, bb:$dst)>;
1328 }
1329
1330 defm : BrcondPats<GPR32, BEQ, BNE, SLT, SLTu, SLTi, SLTiu, ZERO>;
1331
1332 def : MipsPat<(brcond (i32 (setlt i32:$lhs, 1)), bb:$dst),
1333               (BLEZ i32:$lhs, bb:$dst)>;
1334 def : MipsPat<(brcond (i32 (setgt i32:$lhs, -1)), bb:$dst),
1335               (BGEZ i32:$lhs, bb:$dst)>;
1336
1337 // setcc patterns
1338 multiclass SeteqPats<RegisterClass RC, Instruction SLTiuOp, Instruction XOROp,
1339                      Instruction SLTuOp, Register ZEROReg> {
1340   def : MipsPat<(seteq RC:$lhs, 0),
1341                 (SLTiuOp RC:$lhs, 1)>;
1342   def : MipsPat<(setne RC:$lhs, 0),
1343                 (SLTuOp ZEROReg, RC:$lhs)>;
1344   def : MipsPat<(seteq RC:$lhs, RC:$rhs),
1345                 (SLTiuOp (XOROp RC:$lhs, RC:$rhs), 1)>;
1346   def : MipsPat<(setne RC:$lhs, RC:$rhs),
1347                 (SLTuOp ZEROReg, (XOROp RC:$lhs, RC:$rhs))>;
1348 }
1349
1350 multiclass SetlePats<RegisterClass RC, Instruction SLTOp, Instruction SLTuOp> {
1351   def : MipsPat<(setle RC:$lhs, RC:$rhs),
1352                 (XORi (SLTOp RC:$rhs, RC:$lhs), 1)>;
1353   def : MipsPat<(setule RC:$lhs, RC:$rhs),
1354                 (XORi (SLTuOp RC:$rhs, RC:$lhs), 1)>;
1355 }
1356
1357 multiclass SetgtPats<RegisterClass RC, Instruction SLTOp, Instruction SLTuOp> {
1358   def : MipsPat<(setgt RC:$lhs, RC:$rhs),
1359                 (SLTOp RC:$rhs, RC:$lhs)>;
1360   def : MipsPat<(setugt RC:$lhs, RC:$rhs),
1361                 (SLTuOp RC:$rhs, RC:$lhs)>;
1362 }
1363
1364 multiclass SetgePats<RegisterClass RC, Instruction SLTOp, Instruction SLTuOp> {
1365   def : MipsPat<(setge RC:$lhs, RC:$rhs),
1366                 (XORi (SLTOp RC:$lhs, RC:$rhs), 1)>;
1367   def : MipsPat<(setuge RC:$lhs, RC:$rhs),
1368                 (XORi (SLTuOp RC:$lhs, RC:$rhs), 1)>;
1369 }
1370
1371 multiclass SetgeImmPats<RegisterClass RC, Instruction SLTiOp,
1372                         Instruction SLTiuOp> {
1373   def : MipsPat<(setge RC:$lhs, immSExt16:$rhs),
1374                 (XORi (SLTiOp RC:$lhs, immSExt16:$rhs), 1)>;
1375   def : MipsPat<(setuge RC:$lhs, immSExt16:$rhs),
1376                 (XORi (SLTiuOp RC:$lhs, immSExt16:$rhs), 1)>;
1377 }
1378
1379 defm : SeteqPats<GPR32, SLTiu, XOR, SLTu, ZERO>;
1380 defm : SetlePats<GPR32, SLT, SLTu>;
1381 defm : SetgtPats<GPR32, SLT, SLTu>;
1382 defm : SetgePats<GPR32, SLT, SLTu>;
1383 defm : SetgeImmPats<GPR32, SLTi, SLTiu>;
1384
1385 // bswap pattern
1386 def : MipsPat<(bswap GPR32:$rt), (ROTR (WSBH GPR32:$rt), 16)>;
1387
1388 // Load halfword/word patterns.
1389 let AddedComplexity = 40 in {
1390   let Predicates = [HasStdEnc] in {
1391     def : LoadRegImmPat<LBu, i32, zextloadi8>;
1392     def : LoadRegImmPat<LH, i32, sextloadi16>;
1393     def : LoadRegImmPat<LW, i32, load>;
1394   }
1395 }
1396
1397 //===----------------------------------------------------------------------===//
1398 // Floating Point Support
1399 //===----------------------------------------------------------------------===//
1400
1401 include "MipsInstrFPU.td"
1402 include "Mips64InstrInfo.td"
1403 include "MipsCondMov.td"
1404
1405 //
1406 // Mips16
1407
1408 include "Mips16InstrFormats.td"
1409 include "Mips16InstrInfo.td"
1410
1411 // DSP
1412 include "MipsDSPInstrFormats.td"
1413 include "MipsDSPInstrInfo.td"
1414
1415 // MSA
1416 include "MipsMSAInstrFormats.td"
1417 include "MipsMSAInstrInfo.td"
1418
1419 // Micromips
1420 include "MicroMipsInstrFormats.td"
1421 include "MicroMipsInstrInfo.td"