[mips] Fold FeatureSEInReg into FeatureMips32r2
[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 HasBitCount :     Predicate<"Subtarget.hasBitCount()">,
150                       AssemblerPredicate<"FeatureBitCount">;
151 def HasMips2     :    Predicate<"Subtarget.hasMips2()">,
152                       AssemblerPredicate<"FeatureMips2">;
153 def HasMips3_32  :    Predicate<"Subtarget.hasMips3_32()">,
154                       AssemblerPredicate<"FeatureMips3_32">;
155 def HasMips3     :    Predicate<"Subtarget.hasMips3()">,
156                       AssemblerPredicate<"FeatureMips3">;
157 def HasMips4_32  :    Predicate<"Subtarget.hasMips4_32()">,
158                       AssemblerPredicate<"FeatureMips4_32">;
159 def HasMips4_32r2 :   Predicate<"Subtarget.hasMips4_32r2()">,
160                       AssemblerPredicate<"FeatureMips4_32r2">;
161 def HasMips32    :    Predicate<"Subtarget.hasMips32()">,
162                       AssemblerPredicate<"FeatureMips32">;
163 def HasMips32r2  :    Predicate<"Subtarget.hasMips32r2()">,
164                       AssemblerPredicate<"FeatureMips32r2">;
165 def IsGP64bit    :    Predicate<"Subtarget.isGP64bit()">,
166                       AssemblerPredicate<"FeatureGP64Bit">;
167 def IsGP32bit    :    Predicate<"!Subtarget.isGP64bit()">,
168                       AssemblerPredicate<"!FeatureGP64Bit">;
169 def HasMips64    :    Predicate<"Subtarget.hasMips64()">,
170                       AssemblerPredicate<"FeatureMips64">;
171 def IsGP32       :    Predicate<"!Subtarget.isGP64()">,
172                       AssemblerPredicate<"!FeatureGP64Bit">;
173 def IsGP64       :    Predicate<"Subtarget.isGP64()">,
174                       AssemblerPredicate<"FeatureGP64Bit">;
175 def HasMips64r2  :    Predicate<"Subtarget.hasMips64r2()">,
176                       AssemblerPredicate<"FeatureMips64r2">;
177 def IsN64       :     Predicate<"Subtarget.isABI_N64()">,
178                       AssemblerPredicate<"FeatureN64">;
179 def InMips16Mode :    Predicate<"Subtarget.inMips16Mode()">,
180                       AssemblerPredicate<"FeatureMips16">;
181 def HasCnMips    :    Predicate<"Subtarget.hasCnMips()">,
182                       AssemblerPredicate<"FeatureCnMips">;
183 def RelocStatic :     Predicate<"TM.getRelocationModel() == Reloc::Static">,
184                       AssemblerPredicate<"FeatureMips32">;
185 def RelocPIC    :     Predicate<"TM.getRelocationModel() == Reloc::PIC_">,
186                       AssemblerPredicate<"FeatureMips32">;
187 def NoNaNsFPMath :    Predicate<"TM.Options.NoNaNsFPMath">;
188 def HasStdEnc :       Predicate<"Subtarget.hasStandardEncoding()">,
189                       AssemblerPredicate<"!FeatureMips16">;
190 def NotDSP :          Predicate<"!Subtarget.hasDSP()">;
191 def InMicroMips    :  Predicate<"Subtarget.inMicroMipsMode()">,
192                       AssemblerPredicate<"FeatureMicroMips">;
193 def NotInMicroMips :  Predicate<"!Subtarget.inMicroMipsMode()">,
194                       AssemblerPredicate<"!FeatureMicroMips">;
195 def IsLE           :  Predicate<"Subtarget.isLittle()">;
196 def IsBE           :  Predicate<"!Subtarget.isLittle()">;
197 def IsNotNaCl    :    Predicate<"!Subtarget.isTargetNaCl()">;
198
199 //===----------------------------------------------------------------------===//
200 // Mips GPR size adjectives.
201 // They are mutually exclusive.
202 //===----------------------------------------------------------------------===//
203
204 class GPR_64 { list<Predicate> GPRPredicates = [IsGP64bit]; }
205
206 //===----------------------------------------------------------------------===//
207 // Mips ISA/ASE membership and instruction group membership adjectives.
208 // They are mutually exclusive.
209 //===----------------------------------------------------------------------===//
210
211 class ISA_MIPS2    { list<Predicate> InsnPredicates = [HasMips2]; }
212 class ISA_MIPS3    { list<Predicate> InsnPredicates = [HasMips3]; }
213 class ISA_MIPS32R2 { list<Predicate> InsnPredicates = [HasMips32r2]; }
214 class ISA_MIPS64R2 { list<Predicate> InsnPredicates = [HasMips64r2]; }
215
216 // The portions of MIPS-III that were also added to MIPS32
217 class INSN_MIPS3_32 { list<Predicate> InsnPredicates = [HasMips3_32]; }
218
219 // The portions of MIPS-IV that were also added to MIPS32
220 class INSN_MIPS4_32 { list<Predicate> InsnPredicates = [HasMips4_32]; }
221
222 // The portions of MIPS-IV that were also added to MIPS32R2
223 class INSN_MIPS4_32R2 { list<Predicate> InsnPredicates = [HasMips4_32r2]; }
224
225 //===----------------------------------------------------------------------===//
226
227 class MipsPat<dag pattern, dag result> : Pat<pattern, result>, PredicateControl {
228   let EncodingPredicates = [HasStdEnc];
229 }
230
231 class MipsInstAlias<string Asm, dag Result, bit Emit = 0b1> :
232   InstAlias<Asm, Result, Emit>, PredicateControl;
233
234 class IsCommutable {
235   bit isCommutable = 1;
236 }
237
238 class IsBranch {
239   bit isBranch = 1;
240 }
241
242 class IsReturn {
243   bit isReturn = 1;
244 }
245
246 class IsCall {
247   bit isCall = 1;
248 }
249
250 class IsTailCall {
251   bit isCall = 1;
252   bit isTerminator = 1;
253   bit isReturn = 1;
254   bit isBarrier = 1;
255   bit hasExtraSrcRegAllocReq = 1;
256   bit isCodeGenOnly = 1;
257 }
258
259 class IsAsCheapAsAMove {
260   bit isAsCheapAsAMove = 1;
261 }
262
263 class NeverHasSideEffects {
264   bit neverHasSideEffects = 1;
265 }
266
267 //===----------------------------------------------------------------------===//
268 // Instruction format superclass
269 //===----------------------------------------------------------------------===//
270
271 include "MipsInstrFormats.td"
272
273 //===----------------------------------------------------------------------===//
274 // Mips Operand, Complex Patterns and Transformations Definitions.
275 //===----------------------------------------------------------------------===//
276
277 def MipsJumpTargetAsmOperand : AsmOperandClass {
278   let Name = "JumpTarget";
279   let ParserMethod = "ParseJumpTarget";
280   let PredicateMethod = "isImm";
281   let RenderMethod = "addImmOperands";
282 }
283
284 // Instruction operand types
285 def jmptarget   : Operand<OtherVT> {
286   let EncoderMethod = "getJumpTargetOpValue";
287   let ParserMatchClass = MipsJumpTargetAsmOperand;
288 }
289 def brtarget    : Operand<OtherVT> {
290   let EncoderMethod = "getBranchTargetOpValue";
291   let OperandType = "OPERAND_PCREL";
292   let DecoderMethod = "DecodeBranchTarget";
293   let ParserMatchClass = MipsJumpTargetAsmOperand;
294 }
295 def calltarget  : Operand<iPTR> {
296   let EncoderMethod = "getJumpTargetOpValue";
297   let ParserMatchClass = MipsJumpTargetAsmOperand;
298 }
299
300 def simm10 : Operand<i32>;
301
302 def simm16      : Operand<i32> {
303   let DecoderMethod= "DecodeSimm16";
304 }
305
306 def simm20      : Operand<i32> {
307 }
308
309 def uimm20      : Operand<i32> {
310 }
311
312 def uimm10      : Operand<i32> {
313 }
314
315 def simm16_64   : Operand<i64> {
316   let DecoderMethod = "DecodeSimm16";
317 }
318
319 // Zero
320 def uimmz       : Operand<i32> {
321   let PrintMethod = "printUnsignedImm";
322 }
323
324 // Unsigned Operand
325 def uimm5       : Operand<i32> {
326   let PrintMethod = "printUnsignedImm";
327 }
328
329 def uimm6 : Operand<i32> {
330   let PrintMethod = "printUnsignedImm";
331 }
332
333 def uimm16      : Operand<i32> {
334   let PrintMethod = "printUnsignedImm";
335 }
336
337 def pcrel16      : Operand<i32> {
338 }
339
340 def MipsMemAsmOperand : AsmOperandClass {
341   let Name = "Mem";
342   let ParserMethod = "parseMemOperand";
343 }
344
345 def MipsInvertedImmoperand : AsmOperandClass {
346   let Name = "InvNum";
347   let RenderMethod = "addImmOperands";
348   let ParserMethod = "parseInvNum";
349 }
350
351 def InvertedImOperand : Operand<i32> {
352   let ParserMatchClass = MipsInvertedImmoperand;
353 }
354
355 def InvertedImOperand64 : Operand<i64> {
356   let ParserMatchClass = MipsInvertedImmoperand;
357 }
358
359 class mem_generic : Operand<iPTR> {
360   let PrintMethod = "printMemOperand";
361   let MIOperandInfo = (ops ptr_rc, simm16);
362   let EncoderMethod = "getMemEncoding";
363   let ParserMatchClass = MipsMemAsmOperand;
364   let OperandType = "OPERAND_MEMORY";
365 }
366
367 // Address operand
368 def mem : mem_generic;
369
370 // MSA specific address operand
371 def mem_msa : mem_generic {
372   let MIOperandInfo = (ops ptr_rc, simm10);
373   let EncoderMethod = "getMSAMemEncoding";
374 }
375
376 def mem_ea : Operand<iPTR> {
377   let PrintMethod = "printMemOperandEA";
378   let MIOperandInfo = (ops ptr_rc, simm16);
379   let EncoderMethod = "getMemEncoding";
380   let OperandType = "OPERAND_MEMORY";
381 }
382
383 def PtrRC : Operand<iPTR> {
384   let MIOperandInfo = (ops ptr_rc);
385   let DecoderMethod = "DecodePtrRegisterClass";
386   let ParserMatchClass = GPR32AsmOperand;
387 }
388
389 // size operand of ext instruction
390 def size_ext : Operand<i32> {
391   let EncoderMethod = "getSizeExtEncoding";
392   let DecoderMethod = "DecodeExtSize";
393 }
394
395 // size operand of ins instruction
396 def size_ins : Operand<i32> {
397   let EncoderMethod = "getSizeInsEncoding";
398   let DecoderMethod = "DecodeInsSize";
399 }
400
401 // Transformation Function - get the lower 16 bits.
402 def LO16 : SDNodeXForm<imm, [{
403   return getImm(N, N->getZExtValue() & 0xFFFF);
404 }]>;
405
406 // Transformation Function - get the higher 16 bits.
407 def HI16 : SDNodeXForm<imm, [{
408   return getImm(N, (N->getZExtValue() >> 16) & 0xFFFF);
409 }]>;
410
411 // Plus 1.
412 def Plus1 : SDNodeXForm<imm, [{ return getImm(N, N->getSExtValue() + 1); }]>;
413
414 // Node immediate is zero (e.g. insve.d)
415 def immz : PatLeaf<(imm), [{ return N->getSExtValue() == 0; }]>;
416
417 // Node immediate fits as 16-bit sign extended on target immediate.
418 // e.g. addi, andi
419 def immSExt8  : PatLeaf<(imm), [{ return isInt<8>(N->getSExtValue()); }]>;
420
421 // Node immediate fits as 16-bit sign extended on target immediate.
422 // e.g. addi, andi
423 def immSExt16  : PatLeaf<(imm), [{ return isInt<16>(N->getSExtValue()); }]>;
424
425 // Node immediate fits as 15-bit sign extended on target immediate.
426 // e.g. addi, andi
427 def immSExt15  : PatLeaf<(imm), [{ return isInt<15>(N->getSExtValue()); }]>;
428
429 // Node immediate fits as 16-bit zero extended on target immediate.
430 // The LO16 param means that only the lower 16 bits of the node
431 // immediate are caught.
432 // e.g. addiu, sltiu
433 def immZExt16  : PatLeaf<(imm), [{
434   if (N->getValueType(0) == MVT::i32)
435     return (uint32_t)N->getZExtValue() == (unsigned short)N->getZExtValue();
436   else
437     return (uint64_t)N->getZExtValue() == (unsigned short)N->getZExtValue();
438 }], LO16>;
439
440 // Immediate can be loaded with LUi (32-bit int with lower 16-bit cleared).
441 def immLow16Zero : PatLeaf<(imm), [{
442   int64_t Val = N->getSExtValue();
443   return isInt<32>(Val) && !(Val & 0xffff);
444 }]>;
445
446 // shamt field must fit in 5 bits.
447 def immZExt5 : ImmLeaf<i32, [{return Imm == (Imm & 0x1f);}]>;
448
449 // True if (N + 1) fits in 16-bit field.
450 def immSExt16Plus1 : PatLeaf<(imm), [{
451   return isInt<17>(N->getSExtValue()) && isInt<16>(N->getSExtValue() + 1);
452 }]>;
453
454 // Mips Address Mode! SDNode frameindex could possibily be a match
455 // since load and store instructions from stack used it.
456 def addr :
457   ComplexPattern<iPTR, 2, "selectIntAddr", [frameindex]>;
458
459 def addrRegImm :
460   ComplexPattern<iPTR, 2, "selectAddrRegImm", [frameindex]>;
461
462 def addrRegReg :
463   ComplexPattern<iPTR, 2, "selectAddrRegReg", [frameindex]>;
464
465 def addrDefault :
466   ComplexPattern<iPTR, 2, "selectAddrDefault", [frameindex]>;
467
468 def addrimm10 : ComplexPattern<iPTR, 2, "selectIntAddrMSA", [frameindex]>;
469
470 //===----------------------------------------------------------------------===//
471 // Instructions specific format
472 //===----------------------------------------------------------------------===//
473
474 // Arithmetic and logical instructions with 3 register operands.
475 class ArithLogicR<string opstr, RegisterOperand RO, bit isComm = 0,
476                   InstrItinClass Itin = NoItinerary,
477                   SDPatternOperator OpNode = null_frag>:
478   InstSE<(outs RO:$rd), (ins RO:$rs, RO:$rt),
479          !strconcat(opstr, "\t$rd, $rs, $rt"),
480          [(set RO:$rd, (OpNode RO:$rs, RO:$rt))], Itin, FrmR, opstr> {
481   let isCommutable = isComm;
482   let isReMaterializable = 1;
483   let TwoOperandAliasConstraint = "$rd = $rs";
484 }
485
486 // Arithmetic and logical instructions with 2 register operands.
487 class ArithLogicI<string opstr, Operand Od, RegisterOperand RO,
488                   InstrItinClass Itin = NoItinerary,
489                   SDPatternOperator imm_type = null_frag,
490                   SDPatternOperator OpNode = null_frag> :
491   InstSE<(outs RO:$rt), (ins RO:$rs, Od:$imm16),
492          !strconcat(opstr, "\t$rt, $rs, $imm16"),
493          [(set RO:$rt, (OpNode RO:$rs, imm_type:$imm16))],
494          Itin, FrmI, opstr> {
495   let isReMaterializable = 1;
496   let TwoOperandAliasConstraint = "$rs = $rt";
497 }
498
499 // Arithmetic Multiply ADD/SUB
500 class MArithR<string opstr, InstrItinClass itin, bit isComm = 0> :
501   InstSE<(outs), (ins GPR32Opnd:$rs, GPR32Opnd:$rt),
502          !strconcat(opstr, "\t$rs, $rt"), [], itin, FrmR, opstr> {
503   let Defs = [HI0, LO0];
504   let Uses = [HI0, LO0];
505   let isCommutable = isComm;
506 }
507
508 //  Logical
509 class LogicNOR<string opstr, RegisterOperand RO>:
510   InstSE<(outs RO:$rd), (ins RO:$rs, RO:$rt),
511          !strconcat(opstr, "\t$rd, $rs, $rt"),
512          [(set RO:$rd, (not (or RO:$rs, RO:$rt)))], II_NOR, FrmR, opstr> {
513   let isCommutable = 1;
514 }
515
516 // Shifts
517 class shift_rotate_imm<string opstr, Operand ImmOpnd,
518                        RegisterOperand RO, InstrItinClass itin,
519                        SDPatternOperator OpNode = null_frag,
520                        SDPatternOperator PF = null_frag> :
521   InstSE<(outs RO:$rd), (ins RO:$rt, ImmOpnd:$shamt),
522          !strconcat(opstr, "\t$rd, $rt, $shamt"),
523          [(set RO:$rd, (OpNode RO:$rt, PF:$shamt))], itin, FrmR, opstr> {
524   let TwoOperandAliasConstraint = "$rt = $rd";
525 }
526
527 class shift_rotate_reg<string opstr, RegisterOperand RO, InstrItinClass itin,
528                        SDPatternOperator OpNode = null_frag>:
529   InstSE<(outs RO:$rd), (ins RO:$rt, GPR32Opnd:$rs),
530          !strconcat(opstr, "\t$rd, $rt, $rs"),
531          [(set RO:$rd, (OpNode RO:$rt, GPR32Opnd:$rs))], itin, FrmR,
532          opstr>;
533
534 // Load Upper Imediate
535 class LoadUpper<string opstr, RegisterOperand RO, Operand Imm>:
536   InstSE<(outs RO:$rt), (ins Imm:$imm16), !strconcat(opstr, "\t$rt, $imm16"),
537          [], II_LUI, FrmI, opstr>, IsAsCheapAsAMove {
538   let neverHasSideEffects = 1;
539   let isReMaterializable = 1;
540 }
541
542 // Memory Load/Store
543 class Load<string opstr, DAGOperand RO, SDPatternOperator OpNode = null_frag,
544            InstrItinClass Itin = NoItinerary, ComplexPattern Addr = addr> :
545   InstSE<(outs RO:$rt), (ins mem:$addr), !strconcat(opstr, "\t$rt, $addr"),
546          [(set RO:$rt, (OpNode Addr:$addr))], Itin, FrmI, opstr> {
547   let DecoderMethod = "DecodeMem";
548   let canFoldAsLoad = 1;
549   let mayLoad = 1;
550 }
551
552 class Store<string opstr, DAGOperand RO, SDPatternOperator OpNode = null_frag,
553             InstrItinClass Itin = NoItinerary, ComplexPattern Addr = addr> :
554   InstSE<(outs), (ins RO:$rt, mem:$addr), !strconcat(opstr, "\t$rt, $addr"),
555          [(OpNode RO:$rt, Addr:$addr)], Itin, FrmI, opstr> {
556   let DecoderMethod = "DecodeMem";
557   let mayStore = 1;
558 }
559
560 // Load/Store Left/Right
561 let canFoldAsLoad = 1 in
562 class LoadLeftRight<string opstr, SDNode OpNode, RegisterOperand RO,
563                     InstrItinClass Itin> :
564   InstSE<(outs RO:$rt), (ins mem:$addr, RO:$src),
565          !strconcat(opstr, "\t$rt, $addr"),
566          [(set RO:$rt, (OpNode addr:$addr, RO:$src))], Itin, FrmI> {
567   let DecoderMethod = "DecodeMem";
568   string Constraints = "$src = $rt";
569 }
570
571 class StoreLeftRight<string opstr, SDNode OpNode, RegisterOperand RO,
572                      InstrItinClass Itin> :
573   InstSE<(outs), (ins RO:$rt, mem:$addr), !strconcat(opstr, "\t$rt, $addr"),
574          [(OpNode RO:$rt, addr:$addr)], Itin, FrmI> {
575   let DecoderMethod = "DecodeMem";
576 }
577
578 // Conditional Branch
579 class CBranch<string opstr, DAGOperand opnd, PatFrag cond_op,
580               RegisterOperand RO> :
581   InstSE<(outs), (ins RO:$rs, RO:$rt, opnd:$offset),
582          !strconcat(opstr, "\t$rs, $rt, $offset"),
583          [(brcond (i32 (cond_op RO:$rs, RO:$rt)), bb:$offset)], IIBranch,
584          FrmI, opstr> {
585   let isBranch = 1;
586   let isTerminator = 1;
587   let hasDelaySlot = 1;
588   let Defs = [AT];
589 }
590
591 class CBranchZero<string opstr, DAGOperand opnd, PatFrag cond_op,
592                   RegisterOperand RO> :
593   InstSE<(outs), (ins RO:$rs, opnd:$offset),
594          !strconcat(opstr, "\t$rs, $offset"),
595          [(brcond (i32 (cond_op RO:$rs, 0)), bb:$offset)], IIBranch,
596          FrmI, opstr> {
597   let isBranch = 1;
598   let isTerminator = 1;
599   let hasDelaySlot = 1;
600   let Defs = [AT];
601 }
602
603 // SetCC
604 class SetCC_R<string opstr, PatFrag cond_op, RegisterOperand RO> :
605   InstSE<(outs GPR32Opnd:$rd), (ins RO:$rs, RO:$rt),
606          !strconcat(opstr, "\t$rd, $rs, $rt"),
607          [(set GPR32Opnd:$rd, (cond_op RO:$rs, RO:$rt))],
608          II_SLT_SLTU, FrmR, opstr>;
609
610 class SetCC_I<string opstr, PatFrag cond_op, Operand Od, PatLeaf imm_type,
611               RegisterOperand RO>:
612   InstSE<(outs GPR32Opnd:$rt), (ins RO:$rs, Od:$imm16),
613          !strconcat(opstr, "\t$rt, $rs, $imm16"),
614          [(set GPR32Opnd:$rt, (cond_op RO:$rs, imm_type:$imm16))],
615          II_SLTI_SLTIU, FrmI, opstr>;
616
617 // Jump
618 class JumpFJ<DAGOperand opnd, string opstr, SDPatternOperator operator,
619              SDPatternOperator targetoperator, string bopstr> :
620   InstSE<(outs), (ins opnd:$target), !strconcat(opstr, "\t$target"),
621          [(operator targetoperator:$target)], IIBranch, FrmJ, bopstr> {
622   let isTerminator=1;
623   let isBarrier=1;
624   let hasDelaySlot = 1;
625   let DecoderMethod = "DecodeJumpTarget";
626   let Defs = [AT];
627 }
628
629 // Unconditional branch
630 class UncondBranch<Instruction BEQInst> :
631   PseudoSE<(outs), (ins brtarget:$offset), [(br bb:$offset)], IIBranch>,
632   PseudoInstExpansion<(BEQInst ZERO, ZERO, brtarget:$offset)> {
633   let isBranch = 1;
634   let isTerminator = 1;
635   let isBarrier = 1;
636   let hasDelaySlot = 1;
637   let AdditionalPredicates = [RelocPIC];
638   let Defs = [AT];
639 }
640
641 // Base class for indirect branch and return instruction classes.
642 let isTerminator=1, isBarrier=1, hasDelaySlot = 1 in
643 class JumpFR<string opstr, RegisterOperand RO,
644              SDPatternOperator operator = null_frag>:
645   InstSE<(outs), (ins RO:$rs), "jr\t$rs", [(operator RO:$rs)], IIBranch,
646          FrmR, opstr>;
647
648 // Indirect branch
649 class IndirectBranch<string opstr, RegisterOperand RO> :
650       JumpFR<opstr, RO, brind> {
651   let isBranch = 1;
652   let isIndirectBranch = 1;
653 }
654
655 // Return instruction
656 class RetBase<string opstr, RegisterOperand RO>: JumpFR<opstr, RO> {
657   let isReturn = 1;
658   let isCodeGenOnly = 1;
659   let hasCtrlDep = 1;
660   let hasExtraSrcRegAllocReq = 1;
661 }
662
663 // Jump and Link (Call)
664 let isCall=1, hasDelaySlot=1, Defs = [RA] in {
665   class JumpLink<string opstr, DAGOperand opnd> :
666     InstSE<(outs), (ins opnd:$target), !strconcat(opstr, "\t$target"),
667            [(MipsJmpLink imm:$target)], IIBranch, FrmJ, opstr> {
668     let DecoderMethod = "DecodeJumpTarget";
669   }
670
671   class JumpLinkRegPseudo<RegisterOperand RO, Instruction JALRInst,
672                           Register RetReg, RegisterOperand ResRO = RO>:
673     PseudoSE<(outs), (ins RO:$rs), [(MipsJmpLink RO:$rs)], IIBranch>,
674     PseudoInstExpansion<(JALRInst RetReg, ResRO:$rs)>;
675
676   class JumpLinkReg<string opstr, RegisterOperand RO>:
677     InstSE<(outs RO:$rd), (ins RO:$rs), !strconcat(opstr, "\t$rd, $rs"),
678            [], IIBranch, FrmR>;
679
680   class BGEZAL_FT<string opstr, DAGOperand opnd, RegisterOperand RO> :
681     InstSE<(outs), (ins RO:$rs, opnd:$offset),
682            !strconcat(opstr, "\t$rs, $offset"), [], IIBranch, FrmI, opstr>;
683
684 }
685
686 let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, hasDelaySlot = 1,
687     hasExtraSrcRegAllocReq = 1, Defs = [AT] in {
688   class TailCall<Instruction JumpInst> :
689     PseudoSE<(outs), (ins calltarget:$target), [], IIBranch>,
690     PseudoInstExpansion<(JumpInst jmptarget:$target)>;
691
692   class TailCallReg<RegisterOperand RO, Instruction JRInst,
693                     RegisterOperand ResRO = RO> :
694     PseudoSE<(outs), (ins RO:$rs), [(MipsTailCall RO:$rs)], IIBranch>,
695     PseudoInstExpansion<(JRInst ResRO:$rs)>;
696 }
697
698 class BAL_BR_Pseudo<Instruction RealInst> :
699   PseudoSE<(outs), (ins brtarget:$offset), [], IIBranch>,
700   PseudoInstExpansion<(RealInst ZERO, brtarget:$offset)> {
701   let isBranch = 1;
702   let isTerminator = 1;
703   let isBarrier = 1;
704   let hasDelaySlot = 1;
705   let Defs = [RA];
706 }
707
708 // Syscall
709 class SYS_FT<string opstr> :
710   InstSE<(outs), (ins uimm20:$code_),
711          !strconcat(opstr, "\t$code_"), [], NoItinerary, FrmI, opstr>;
712 // Break
713 class BRK_FT<string opstr> :
714   InstSE<(outs), (ins uimm10:$code_1, uimm10:$code_2),
715          !strconcat(opstr, "\t$code_1, $code_2"), [], NoItinerary,
716          FrmOther, opstr>;
717
718 // (D)Eret
719 class ER_FT<string opstr> :
720   InstSE<(outs), (ins),
721          opstr, [], NoItinerary, FrmOther, opstr>;
722
723 // Interrupts
724 class DEI_FT<string opstr, RegisterOperand RO> :
725   InstSE<(outs RO:$rt), (ins),
726          !strconcat(opstr, "\t$rt"), [], NoItinerary, FrmOther, opstr>;
727
728 // Wait
729 class WAIT_FT<string opstr> :
730   InstSE<(outs), (ins), opstr, [], NoItinerary, FrmOther, opstr>;
731
732 // Sync
733 let hasSideEffects = 1 in
734 class SYNC_FT<string opstr> :
735   InstSE<(outs), (ins i32imm:$stype), "sync $stype", [(MipsSync imm:$stype)],
736          NoItinerary, FrmOther, opstr>;
737
738 let hasSideEffects = 1 in
739 class TEQ_FT<string opstr, RegisterOperand RO> :
740   InstSE<(outs), (ins RO:$rs, RO:$rt, uimm16:$code_),
741          !strconcat(opstr, "\t$rs, $rt, $code_"), [], NoItinerary,
742          FrmI, opstr>;
743
744 class TEQI_FT<string opstr, RegisterOperand RO> :
745   InstSE<(outs), (ins RO:$rs, uimm16:$imm16),
746          !strconcat(opstr, "\t$rs, $imm16"), [], NoItinerary, FrmOther, opstr>;
747 // Mul, Div
748 class Mult<string opstr, InstrItinClass itin, RegisterOperand RO,
749            list<Register> DefRegs> :
750   InstSE<(outs), (ins RO:$rs, RO:$rt), !strconcat(opstr, "\t$rs, $rt"), [],
751          itin, FrmR, opstr> {
752   let isCommutable = 1;
753   let Defs = DefRegs;
754   let neverHasSideEffects = 1;
755 }
756
757 // Pseudo multiply/divide instruction with explicit accumulator register
758 // operands.
759 class MultDivPseudo<Instruction RealInst, RegisterClass R0, RegisterOperand R1,
760                     SDPatternOperator OpNode, InstrItinClass Itin,
761                     bit IsComm = 1, bit HasSideEffects = 0,
762                     bit UsesCustomInserter = 0> :
763   PseudoSE<(outs R0:$ac), (ins R1:$rs, R1:$rt),
764            [(set R0:$ac, (OpNode R1:$rs, R1:$rt))], Itin>,
765   PseudoInstExpansion<(RealInst R1:$rs, R1:$rt)> {
766   let isCommutable = IsComm;
767   let hasSideEffects = HasSideEffects;
768   let usesCustomInserter = UsesCustomInserter;
769 }
770
771 // Pseudo multiply add/sub instruction with explicit accumulator register
772 // operands.
773 class MAddSubPseudo<Instruction RealInst, SDPatternOperator OpNode,
774                     InstrItinClass itin>
775   : PseudoSE<(outs ACC64:$ac),
776              (ins GPR32Opnd:$rs, GPR32Opnd:$rt, ACC64:$acin),
777              [(set ACC64:$ac,
778               (OpNode GPR32Opnd:$rs, GPR32Opnd:$rt, ACC64:$acin))],
779              itin>,
780     PseudoInstExpansion<(RealInst GPR32Opnd:$rs, GPR32Opnd:$rt)> {
781   string Constraints = "$acin = $ac";
782 }
783
784 class Div<string opstr, InstrItinClass itin, RegisterOperand RO,
785           list<Register> DefRegs> :
786   InstSE<(outs), (ins RO:$rs, RO:$rt), !strconcat(opstr, "\t$$zero, $rs, $rt"),
787          [], itin, FrmR, opstr> {
788   let Defs = DefRegs;
789 }
790
791 // Move from Hi/Lo
792 class PseudoMFLOHI<RegisterClass DstRC, RegisterClass SrcRC, SDNode OpNode>
793   : PseudoSE<(outs DstRC:$rd), (ins SrcRC:$hilo),
794              [(set DstRC:$rd, (OpNode SrcRC:$hilo))], II_MFHI_MFLO>;
795
796 class MoveFromLOHI<string opstr, RegisterOperand RO, Register UseReg>:
797   InstSE<(outs RO:$rd), (ins), !strconcat(opstr, "\t$rd"), [], II_MFHI_MFLO,
798          FrmR, opstr> {
799   let Uses = [UseReg];
800   let neverHasSideEffects = 1;
801 }
802
803 class PseudoMTLOHI<RegisterClass DstRC, RegisterClass SrcRC>
804   : PseudoSE<(outs DstRC:$lohi), (ins SrcRC:$lo, SrcRC:$hi),
805              [(set DstRC:$lohi, (MipsMTLOHI SrcRC:$lo, SrcRC:$hi))],
806              II_MTHI_MTLO>;
807
808 class MoveToLOHI<string opstr, RegisterOperand RO, list<Register> DefRegs>:
809   InstSE<(outs), (ins RO:$rs), !strconcat(opstr, "\t$rs"), [], II_MTHI_MTLO,
810   FrmR, opstr> {
811   let Defs = DefRegs;
812   let neverHasSideEffects = 1;
813 }
814
815 class EffectiveAddress<string opstr, RegisterOperand RO> :
816   InstSE<(outs RO:$rt), (ins mem_ea:$addr), !strconcat(opstr, "\t$rt, $addr"),
817          [(set RO:$rt, addr:$addr)], NoItinerary, FrmI,
818          !strconcat(opstr, "_lea")> {
819   let isCodeGenOnly = 1;
820   let DecoderMethod = "DecodeMem";
821 }
822
823 // Count Leading Ones/Zeros in Word
824 class CountLeading0<string opstr, RegisterOperand RO>:
825   InstSE<(outs RO:$rd), (ins RO:$rs), !strconcat(opstr, "\t$rd, $rs"),
826          [(set RO:$rd, (ctlz RO:$rs))], II_CLZ, FrmR, opstr>,
827   AdditionalRequires<[HasBitCount]>;
828
829 class CountLeading1<string opstr, RegisterOperand RO>:
830   InstSE<(outs RO:$rd), (ins RO:$rs), !strconcat(opstr, "\t$rd, $rs"),
831          [(set RO:$rd, (ctlz (not RO:$rs)))], II_CLO, FrmR, opstr>,
832   AdditionalRequires<[HasBitCount]>;
833
834 // Sign Extend in Register.
835 class SignExtInReg<string opstr, ValueType vt, RegisterOperand RO,
836                    InstrItinClass itin> :
837   InstSE<(outs RO:$rd), (ins RO:$rt), !strconcat(opstr, "\t$rd, $rt"),
838          [(set RO:$rd, (sext_inreg RO:$rt, vt))], itin, FrmR, opstr>;
839
840 // Subword Swap
841 class SubwordSwap<string opstr, RegisterOperand RO>:
842   InstSE<(outs RO:$rd), (ins RO:$rt), !strconcat(opstr, "\t$rd, $rt"), [],
843          NoItinerary, FrmR, opstr> {
844   let neverHasSideEffects = 1;
845 }
846
847 // Read Hardware
848 class ReadHardware<RegisterOperand CPURegOperand, RegisterOperand RO> :
849   InstSE<(outs CPURegOperand:$rt), (ins RO:$rd), "rdhwr\t$rt, $rd", [],
850          II_RDHWR, FrmR>;
851
852 // Ext and Ins
853 class ExtBase<string opstr, RegisterOperand RO, Operand PosOpnd,
854               SDPatternOperator Op = null_frag>:
855   InstSE<(outs RO:$rt), (ins RO:$rs, PosOpnd:$pos, size_ext:$size),
856          !strconcat(opstr, " $rt, $rs, $pos, $size"),
857          [(set RO:$rt, (Op RO:$rs, imm:$pos, imm:$size))], NoItinerary,
858          FrmR, opstr>, ISA_MIPS32R2;
859
860 class InsBase<string opstr, RegisterOperand RO, Operand PosOpnd,
861               SDPatternOperator Op = null_frag>:
862   InstSE<(outs RO:$rt), (ins RO:$rs, PosOpnd:$pos, size_ins:$size, RO:$src),
863          !strconcat(opstr, " $rt, $rs, $pos, $size"),
864          [(set RO:$rt, (Op RO:$rs, imm:$pos, imm:$size, RO:$src))],
865          NoItinerary, FrmR, opstr>, ISA_MIPS32R2 {
866   let Constraints = "$src = $rt";
867 }
868
869 // Atomic instructions with 2 source operands (ATOMIC_SWAP & ATOMIC_LOAD_*).
870 class Atomic2Ops<PatFrag Op, RegisterClass DRC> :
871   PseudoSE<(outs DRC:$dst), (ins PtrRC:$ptr, DRC:$incr),
872            [(set DRC:$dst, (Op iPTR:$ptr, DRC:$incr))]>;
873
874 // Atomic Compare & Swap.
875 class AtomicCmpSwap<PatFrag Op, RegisterClass DRC> :
876   PseudoSE<(outs DRC:$dst), (ins PtrRC:$ptr, DRC:$cmp, DRC:$swap),
877            [(set DRC:$dst, (Op iPTR:$ptr, DRC:$cmp, DRC:$swap))]>;
878
879 class LLBase<string opstr, RegisterOperand RO> :
880   InstSE<(outs RO:$rt), (ins mem:$addr), !strconcat(opstr, "\t$rt, $addr"),
881          [], NoItinerary, FrmI> {
882   let DecoderMethod = "DecodeMem";
883   let mayLoad = 1;
884 }
885
886 class SCBase<string opstr, RegisterOperand RO> :
887   InstSE<(outs RO:$dst), (ins RO:$rt, mem:$addr),
888          !strconcat(opstr, "\t$rt, $addr"), [], NoItinerary, FrmI> {
889   let DecoderMethod = "DecodeMem";
890   let mayStore = 1;
891   let Constraints = "$rt = $dst";
892 }
893
894 class MFC3OP<string asmstr, RegisterOperand RO> :
895   InstSE<(outs RO:$rt, RO:$rd, uimm16:$sel), (ins),
896          !strconcat(asmstr, "\t$rt, $rd, $sel"), [], NoItinerary, FrmFR>;
897
898 class TrapBase<Instruction RealInst>
899   : PseudoSE<(outs), (ins), [(trap)], NoItinerary>,
900     PseudoInstExpansion<(RealInst 0, 0)> {
901   let isBarrier = 1;
902   let isTerminator = 1;
903   let isCodeGenOnly = 1;
904 }
905
906 //===----------------------------------------------------------------------===//
907 // Pseudo instructions
908 //===----------------------------------------------------------------------===//
909
910 // Return RA.
911 let isReturn=1, isTerminator=1, hasDelaySlot=1, isBarrier=1, hasCtrlDep=1 in
912 def RetRA : PseudoSE<(outs), (ins), [(MipsRet)]>;
913
914 let Defs = [SP], Uses = [SP], hasSideEffects = 1 in {
915 def ADJCALLSTACKDOWN : MipsPseudo<(outs), (ins i32imm:$amt),
916                                   [(callseq_start timm:$amt)]>;
917 def ADJCALLSTACKUP   : MipsPseudo<(outs), (ins i32imm:$amt1, i32imm:$amt2),
918                                   [(callseq_end timm:$amt1, timm:$amt2)]>;
919 }
920
921 let usesCustomInserter = 1 in {
922   def ATOMIC_LOAD_ADD_I8   : Atomic2Ops<atomic_load_add_8, GPR32>;
923   def ATOMIC_LOAD_ADD_I16  : Atomic2Ops<atomic_load_add_16, GPR32>;
924   def ATOMIC_LOAD_ADD_I32  : Atomic2Ops<atomic_load_add_32, GPR32>;
925   def ATOMIC_LOAD_SUB_I8   : Atomic2Ops<atomic_load_sub_8, GPR32>;
926   def ATOMIC_LOAD_SUB_I16  : Atomic2Ops<atomic_load_sub_16, GPR32>;
927   def ATOMIC_LOAD_SUB_I32  : Atomic2Ops<atomic_load_sub_32, GPR32>;
928   def ATOMIC_LOAD_AND_I8   : Atomic2Ops<atomic_load_and_8, GPR32>;
929   def ATOMIC_LOAD_AND_I16  : Atomic2Ops<atomic_load_and_16, GPR32>;
930   def ATOMIC_LOAD_AND_I32  : Atomic2Ops<atomic_load_and_32, GPR32>;
931   def ATOMIC_LOAD_OR_I8    : Atomic2Ops<atomic_load_or_8, GPR32>;
932   def ATOMIC_LOAD_OR_I16   : Atomic2Ops<atomic_load_or_16, GPR32>;
933   def ATOMIC_LOAD_OR_I32   : Atomic2Ops<atomic_load_or_32, GPR32>;
934   def ATOMIC_LOAD_XOR_I8   : Atomic2Ops<atomic_load_xor_8, GPR32>;
935   def ATOMIC_LOAD_XOR_I16  : Atomic2Ops<atomic_load_xor_16, GPR32>;
936   def ATOMIC_LOAD_XOR_I32  : Atomic2Ops<atomic_load_xor_32, GPR32>;
937   def ATOMIC_LOAD_NAND_I8  : Atomic2Ops<atomic_load_nand_8, GPR32>;
938   def ATOMIC_LOAD_NAND_I16 : Atomic2Ops<atomic_load_nand_16, GPR32>;
939   def ATOMIC_LOAD_NAND_I32 : Atomic2Ops<atomic_load_nand_32, GPR32>;
940
941   def ATOMIC_SWAP_I8       : Atomic2Ops<atomic_swap_8, GPR32>;
942   def ATOMIC_SWAP_I16      : Atomic2Ops<atomic_swap_16, GPR32>;
943   def ATOMIC_SWAP_I32      : Atomic2Ops<atomic_swap_32, GPR32>;
944
945   def ATOMIC_CMP_SWAP_I8   : AtomicCmpSwap<atomic_cmp_swap_8, GPR32>;
946   def ATOMIC_CMP_SWAP_I16  : AtomicCmpSwap<atomic_cmp_swap_16, GPR32>;
947   def ATOMIC_CMP_SWAP_I32  : AtomicCmpSwap<atomic_cmp_swap_32, GPR32>;
948 }
949
950 /// Pseudo instructions for loading and storing accumulator registers.
951 let isPseudo = 1, isCodeGenOnly = 1 in {
952   def LOAD_ACC64  : Load<"", ACC64>;
953   def STORE_ACC64 : Store<"", ACC64>;
954 }
955
956 // We need these two pseudo instructions to avoid offset calculation for long
957 // branches.  See the comment in file MipsLongBranch.cpp for detailed
958 // explanation.
959
960 // Expands to: lui $dst, %hi($tgt - $baltgt)
961 def LONG_BRANCH_LUi : PseudoSE<(outs GPR32Opnd:$dst),
962   (ins brtarget:$tgt, brtarget:$baltgt), []>;
963
964 // Expands to: addiu $dst, $src, %lo($tgt - $baltgt)
965 def LONG_BRANCH_ADDiu : PseudoSE<(outs GPR32Opnd:$dst),
966   (ins GPR32Opnd:$src, brtarget:$tgt, brtarget:$baltgt), []>;
967
968 //===----------------------------------------------------------------------===//
969 // Instruction definition
970 //===----------------------------------------------------------------------===//
971 //===----------------------------------------------------------------------===//
972 // MipsI Instructions
973 //===----------------------------------------------------------------------===//
974
975 /// Arithmetic Instructions (ALU Immediate)
976 def ADDiu : MMRel, ArithLogicI<"addiu", simm16, GPR32Opnd, II_ADDIU, immSExt16,
977                                add>,
978             ADDI_FM<0x9>, IsAsCheapAsAMove;
979 def ADDi  : MMRel, ArithLogicI<"addi", simm16, GPR32Opnd>, ADDI_FM<0x8>;
980 def SLTi  : MMRel, SetCC_I<"slti", setlt, simm16, immSExt16, GPR32Opnd>,
981             SLTI_FM<0xa>;
982 def SLTiu : MMRel, SetCC_I<"sltiu", setult, simm16, immSExt16, GPR32Opnd>,
983             SLTI_FM<0xb>;
984 def ANDi  : MMRel, ArithLogicI<"andi", uimm16, GPR32Opnd, II_ANDI, immZExt16,
985                                and>,
986             ADDI_FM<0xc>;
987 def ORi   : MMRel, ArithLogicI<"ori", uimm16, GPR32Opnd, II_ORI, immZExt16,
988                                or>,
989             ADDI_FM<0xd>;
990 def XORi  : MMRel, ArithLogicI<"xori", uimm16, GPR32Opnd, II_XORI, immZExt16,
991                                xor>,
992             ADDI_FM<0xe>;
993 def LUi   : MMRel, LoadUpper<"lui", GPR32Opnd, uimm16>, LUI_FM;
994
995 /// Arithmetic Instructions (3-Operand, R-Type)
996 def ADDu  : MMRel, ArithLogicR<"addu", GPR32Opnd, 1, II_ADDU, add>,
997             ADD_FM<0, 0x21>;
998 def SUBu  : MMRel, ArithLogicR<"subu", GPR32Opnd, 0, II_SUBU, sub>,
999             ADD_FM<0, 0x23>;
1000 let Defs = [HI0, LO0] in
1001 def MUL   : MMRel, ArithLogicR<"mul", GPR32Opnd, 1, II_MUL, mul>,
1002             ADD_FM<0x1c, 2>;
1003 def ADD   : MMRel, ArithLogicR<"add", GPR32Opnd>, ADD_FM<0, 0x20>;
1004 def SUB   : MMRel, ArithLogicR<"sub", GPR32Opnd>, ADD_FM<0, 0x22>;
1005 def SLT   : MMRel, SetCC_R<"slt", setlt, GPR32Opnd>, ADD_FM<0, 0x2a>;
1006 def SLTu  : MMRel, SetCC_R<"sltu", setult, GPR32Opnd>, ADD_FM<0, 0x2b>;
1007 def AND   : MMRel, ArithLogicR<"and", GPR32Opnd, 1, II_AND, and>,
1008             ADD_FM<0, 0x24>;
1009 def OR    : MMRel, ArithLogicR<"or", GPR32Opnd, 1, II_OR, or>,
1010             ADD_FM<0, 0x25>;
1011 def XOR   : MMRel, ArithLogicR<"xor", GPR32Opnd, 1, II_XOR, xor>,
1012             ADD_FM<0, 0x26>;
1013 def NOR   : MMRel, LogicNOR<"nor", GPR32Opnd>, ADD_FM<0, 0x27>;
1014
1015 /// Shift Instructions
1016 def SLL  : MMRel, shift_rotate_imm<"sll", uimm5, GPR32Opnd, II_SLL, shl,
1017                                    immZExt5>, SRA_FM<0, 0>;
1018 def SRL  : MMRel, shift_rotate_imm<"srl", uimm5, GPR32Opnd, II_SRL, srl,
1019                                    immZExt5>, SRA_FM<2, 0>;
1020 def SRA  : MMRel, shift_rotate_imm<"sra", uimm5, GPR32Opnd, II_SRA, sra,
1021                                    immZExt5>, SRA_FM<3, 0>;
1022 def SLLV : MMRel, shift_rotate_reg<"sllv", GPR32Opnd, II_SLLV, shl>,
1023            SRLV_FM<4, 0>;
1024 def SRLV : MMRel, shift_rotate_reg<"srlv", GPR32Opnd, II_SRLV, srl>,
1025            SRLV_FM<6, 0>;
1026 def SRAV : MMRel, shift_rotate_reg<"srav", GPR32Opnd, II_SRAV, sra>,
1027            SRLV_FM<7, 0>;
1028
1029 // Rotate Instructions
1030 def ROTR  : MMRel, shift_rotate_imm<"rotr", uimm5, GPR32Opnd, II_ROTR, rotr,
1031                                     immZExt5>,
1032             SRA_FM<2, 1>, ISA_MIPS32R2;
1033 def ROTRV : MMRel, shift_rotate_reg<"rotrv", GPR32Opnd, II_ROTRV, rotr>,
1034             SRLV_FM<6, 1>, ISA_MIPS32R2;
1035
1036 /// Load and Store Instructions
1037 ///  aligned
1038 def LB  : Load<"lb", GPR32Opnd, sextloadi8, II_LB>, MMRel, LW_FM<0x20>;
1039 def LBu : Load<"lbu", GPR32Opnd, zextloadi8, II_LBU, addrDefault>, MMRel,
1040           LW_FM<0x24>;
1041 def LH  : Load<"lh", GPR32Opnd, sextloadi16, II_LH, addrDefault>, MMRel,
1042           LW_FM<0x21>;
1043 def LHu : Load<"lhu", GPR32Opnd, zextloadi16, II_LHU>, MMRel, LW_FM<0x25>;
1044 def LW  : Load<"lw", GPR32Opnd, load, II_LW, addrDefault>, MMRel,
1045           LW_FM<0x23>;
1046 def SB  : Store<"sb", GPR32Opnd, truncstorei8, II_SB>, MMRel, LW_FM<0x28>;
1047 def SH  : Store<"sh", GPR32Opnd, truncstorei16, II_SH>, MMRel, LW_FM<0x29>;
1048 def SW  : Store<"sw", GPR32Opnd, store, II_SW>, MMRel, LW_FM<0x2b>;
1049
1050 /// load/store left/right
1051 let EncodingPredicates = []<Predicate>, // FIXME: Lack of HasStdEnc is probably a bug
1052     AdditionalPredicates = [NotInMicroMips] in {
1053 def LWL : LoadLeftRight<"lwl", MipsLWL, GPR32Opnd, II_LWL>, LW_FM<0x22>;
1054 def LWR : LoadLeftRight<"lwr", MipsLWR, GPR32Opnd, II_LWR>, LW_FM<0x26>;
1055 def SWL : StoreLeftRight<"swl", MipsSWL, GPR32Opnd, II_SWL>, LW_FM<0x2a>;
1056 def SWR : StoreLeftRight<"swr", MipsSWR, GPR32Opnd, II_SWR>, LW_FM<0x2e>;
1057 }
1058
1059 def SYNC : MMRel, SYNC_FT<"sync">, SYNC_FM;
1060 def TEQ : MMRel, TEQ_FT<"teq", GPR32Opnd>, TEQ_FM<0x34>;
1061 def TGE : MMRel, TEQ_FT<"tge", GPR32Opnd>, TEQ_FM<0x30>;
1062 def TGEU : MMRel, TEQ_FT<"tgeu", GPR32Opnd>, TEQ_FM<0x31>;
1063 def TLT : MMRel, TEQ_FT<"tlt", GPR32Opnd>, TEQ_FM<0x32>;
1064 def TLTU : MMRel, TEQ_FT<"tltu", GPR32Opnd>, TEQ_FM<0x33>;
1065 def TNE : MMRel, TEQ_FT<"tne", GPR32Opnd>, TEQ_FM<0x36>;
1066
1067 def TEQI : MMRel, TEQI_FT<"teqi", GPR32Opnd>, TEQI_FM<0xc>, ISA_MIPS2;
1068 def TGEI : MMRel, TEQI_FT<"tgei", GPR32Opnd>, TEQI_FM<0x8>, ISA_MIPS2;
1069 def TGEIU : MMRel, TEQI_FT<"tgeiu", GPR32Opnd>, TEQI_FM<0x9>, ISA_MIPS2;
1070 def TLTI : MMRel, TEQI_FT<"tlti", GPR32Opnd>, TEQI_FM<0xa>, ISA_MIPS2;
1071 def TTLTIU : MMRel, TEQI_FT<"tltiu", GPR32Opnd>, TEQI_FM<0xb>, ISA_MIPS2;
1072 def TNEI : MMRel, TEQI_FT<"tnei", GPR32Opnd>, TEQI_FM<0xe>, ISA_MIPS2;
1073
1074 def BREAK : MMRel, BRK_FT<"break">, BRK_FM<0xd>;
1075 def SYSCALL : MMRel, SYS_FT<"syscall">, SYS_FM<0xc>;
1076 def TRAP : TrapBase<BREAK>;
1077
1078 def ERET : MMRel, ER_FT<"eret">, ER_FM<0x18>, INSN_MIPS3_32;
1079 def DERET : MMRel, ER_FT<"deret">, ER_FM<0x1f>;
1080
1081 def EI : MMRel, DEI_FT<"ei", GPR32Opnd>, EI_FM<1>;
1082 def DI : MMRel, DEI_FT<"di", GPR32Opnd>, EI_FM<0>;
1083
1084 let EncodingPredicates = []<Predicate>, // FIXME: Lack of HasStdEnc is probably a bug
1085     AdditionalPredicates = [NotInMicroMips] in {
1086 def WAIT : WAIT_FT<"wait">, WAIT_FM;
1087
1088 /// Load-linked, Store-conditional
1089 def LL : LLBase<"ll", GPR32Opnd>, LW_FM<0x30>, ISA_MIPS2;
1090 def SC : SCBase<"sc", GPR32Opnd>, LW_FM<0x38>, ISA_MIPS2;
1091 }
1092
1093 /// Jump and Branch Instructions
1094 def J       : MMRel, JumpFJ<jmptarget, "j", br, bb, "j">, FJ<2>,
1095               AdditionalRequires<[RelocStatic]>, IsBranch;
1096 def JR      : MMRel, IndirectBranch<"jr", GPR32Opnd>, MTLO_FM<8>;
1097 def BEQ     : MMRel, CBranch<"beq", brtarget, seteq, GPR32Opnd>, BEQ_FM<4>;
1098 def BNE     : MMRel, CBranch<"bne", brtarget, setne, GPR32Opnd>, BEQ_FM<5>;
1099 def BGEZ    : MMRel, CBranchZero<"bgez", brtarget, setge, GPR32Opnd>,
1100               BGEZ_FM<1, 1>;
1101 def BGTZ    : MMRel, CBranchZero<"bgtz", brtarget, setgt, GPR32Opnd>,
1102               BGEZ_FM<7, 0>;
1103 def BLEZ    : MMRel, CBranchZero<"blez", brtarget, setle, GPR32Opnd>,
1104               BGEZ_FM<6, 0>;
1105 def BLTZ    : MMRel, CBranchZero<"bltz", brtarget, setlt, GPR32Opnd>,
1106               BGEZ_FM<1, 0>;
1107 def B       : UncondBranch<BEQ>;
1108
1109 def JAL  : MMRel, JumpLink<"jal", calltarget>, FJ<3>;
1110 let AdditionalPredicates = [NotInMicroMips] in {
1111 def JALR : JumpLinkReg<"jalr", GPR32Opnd>, JALR_FM;
1112 def JALRPseudo : JumpLinkRegPseudo<GPR32Opnd, JALR, RA>;
1113 }
1114 def JALX  : JumpLink<"jalx", calltarget>, FJ<0x1D>;
1115 def BGEZAL : MMRel, BGEZAL_FT<"bgezal", brtarget, GPR32Opnd>, BGEZAL_FM<0x11>;
1116 def BLTZAL : MMRel, BGEZAL_FT<"bltzal", brtarget, GPR32Opnd>, BGEZAL_FM<0x10>;
1117 def BAL_BR : BAL_BR_Pseudo<BGEZAL>;
1118 def TAILCALL : TailCall<J>;
1119 def TAILCALL_R : TailCallReg<GPR32Opnd, JR>;
1120
1121 def RET : MMRel, RetBase<"ret", GPR32Opnd>, MTLO_FM<8>;
1122
1123 // Exception handling related node and instructions.
1124 // The conversion sequence is:
1125 // ISD::EH_RETURN -> MipsISD::EH_RETURN ->
1126 // MIPSeh_return -> (stack change + indirect branch)
1127 //
1128 // MIPSeh_return takes the place of regular return instruction
1129 // but takes two arguments (V1, V0) which are used for storing
1130 // the offset and return address respectively.
1131 def SDT_MipsEHRET : SDTypeProfile<0, 2, [SDTCisInt<0>, SDTCisPtrTy<1>]>;
1132
1133 def MIPSehret : SDNode<"MipsISD::EH_RETURN", SDT_MipsEHRET,
1134                       [SDNPHasChain, SDNPOptInGlue, SDNPVariadic]>;
1135
1136 let Uses = [V0, V1], isTerminator = 1, isReturn = 1, isBarrier = 1 in {
1137   def MIPSeh_return32 : MipsPseudo<(outs), (ins GPR32:$spoff, GPR32:$dst),
1138                                 [(MIPSehret GPR32:$spoff, GPR32:$dst)]>;
1139   def MIPSeh_return64 : MipsPseudo<(outs), (ins GPR64:$spoff,
1140                                                 GPR64:$dst),
1141                                 [(MIPSehret GPR64:$spoff, GPR64:$dst)]>;
1142 }
1143
1144 /// Multiply and Divide Instructions.
1145 def MULT  : MMRel, Mult<"mult", II_MULT, GPR32Opnd, [HI0, LO0]>,
1146             MULT_FM<0, 0x18>;
1147 def MULTu : MMRel, Mult<"multu", II_MULTU, GPR32Opnd, [HI0, LO0]>,
1148             MULT_FM<0, 0x19>;
1149 def SDIV  : MMRel, Div<"div", II_DIV, GPR32Opnd, [HI0, LO0]>,
1150             MULT_FM<0, 0x1a>;
1151 def UDIV  : MMRel, Div<"divu", II_DIVU, GPR32Opnd, [HI0, LO0]>,
1152             MULT_FM<0, 0x1b>;
1153
1154 def MTHI : MMRel, MoveToLOHI<"mthi", GPR32Opnd, [HI0]>, MTLO_FM<0x11>;
1155 def MTLO : MMRel, MoveToLOHI<"mtlo", GPR32Opnd, [LO0]>, MTLO_FM<0x13>;
1156 let EncodingPredicates = []<Predicate>, // FIXME: Lack of HasStdEnc is probably a bug
1157     AdditionalPredicates = [NotInMicroMips] in {
1158 def MFHI : MMRel, MoveFromLOHI<"mfhi", GPR32Opnd, AC0>, MFLO_FM<0x10>;
1159 def MFLO : MMRel, MoveFromLOHI<"mflo", GPR32Opnd, AC0>, MFLO_FM<0x12>;
1160 }
1161
1162 /// Sign Ext In Register Instructions.
1163 def SEB : MMRel, SignExtInReg<"seb", i8, GPR32Opnd, II_SEB>,
1164           SEB_FM<0x10, 0x20>, ISA_MIPS32R2;
1165 def SEH : MMRel, SignExtInReg<"seh", i16, GPR32Opnd, II_SEH>,
1166           SEB_FM<0x18, 0x20>, ISA_MIPS32R2;
1167
1168 /// Count Leading
1169 def CLZ : MMRel, CountLeading0<"clz", GPR32Opnd>, CLO_FM<0x20>;
1170 def CLO : MMRel, CountLeading1<"clo", GPR32Opnd>, CLO_FM<0x21>;
1171
1172 /// Word Swap Bytes Within Halfwords
1173 def WSBH : MMRel, SubwordSwap<"wsbh", GPR32Opnd>, SEB_FM<2, 0x20>, ISA_MIPS32R2;
1174
1175 /// No operation.
1176 def NOP : PseudoSE<(outs), (ins), []>, PseudoInstExpansion<(SLL ZERO, ZERO, 0)>;
1177
1178 // FrameIndexes are legalized when they are operands from load/store
1179 // instructions. The same not happens for stack address copies, so an
1180 // add op with mem ComplexPattern is used and the stack address copy
1181 // can be matched. It's similar to Sparc LEA_ADDRi
1182 def LEA_ADDiu : MMRel, EffectiveAddress<"addiu", GPR32Opnd>, LW_FM<9>;
1183
1184 // MADD*/MSUB*
1185 def MADD  : MMRel, MArithR<"madd", II_MADD, 1>, MULT_FM<0x1c, 0>;
1186 def MADDU : MMRel, MArithR<"maddu", II_MADDU, 1>, MULT_FM<0x1c, 1>;
1187 def MSUB  : MMRel, MArithR<"msub", II_MSUB>, MULT_FM<0x1c, 4>;
1188 def MSUBU : MMRel, MArithR<"msubu", II_MSUBU>, MULT_FM<0x1c, 5>;
1189
1190 let AdditionalPredicates = [NotDSP] in {
1191 def PseudoMULT  : MultDivPseudo<MULT, ACC64, GPR32Opnd, MipsMult, II_MULT>;
1192 def PseudoMULTu : MultDivPseudo<MULTu, ACC64, GPR32Opnd, MipsMultu, II_MULTU>;
1193 def PseudoMFHI : PseudoMFLOHI<GPR32, ACC64, MipsMFHI>;
1194 def PseudoMFLO : PseudoMFLOHI<GPR32, ACC64, MipsMFLO>;
1195 def PseudoMTLOHI : PseudoMTLOHI<ACC64, GPR32>;
1196 def PseudoMADD  : MAddSubPseudo<MADD, MipsMAdd, II_MADD>;
1197 def PseudoMADDU : MAddSubPseudo<MADDU, MipsMAddu, II_MADDU>;
1198 def PseudoMSUB  : MAddSubPseudo<MSUB, MipsMSub, II_MSUB>;
1199 def PseudoMSUBU : MAddSubPseudo<MSUBU, MipsMSubu, II_MSUBU>;
1200 }
1201
1202 def PseudoSDIV : MultDivPseudo<SDIV, ACC64, GPR32Opnd, MipsDivRem, II_DIV,
1203                                0, 1, 1>;
1204 def PseudoUDIV : MultDivPseudo<UDIV, ACC64, GPR32Opnd, MipsDivRemU, II_DIVU,
1205                                0, 1, 1>;
1206
1207 def RDHWR : ReadHardware<GPR32Opnd, HWRegsOpnd>, RDHWR_FM;
1208
1209 def EXT : MMRel, ExtBase<"ext", GPR32Opnd, uimm5, MipsExt>, EXT_FM<0>;
1210 def INS : MMRel, InsBase<"ins", GPR32Opnd, uimm5, MipsIns>, EXT_FM<4>;
1211
1212 /// Move Control Registers From/To CPU Registers
1213 def MFC0 : MFC3OP<"mfc0", GPR32Opnd>, MFC3OP_FM<0x10, 0>;
1214 def MTC0 : MFC3OP<"mtc0", GPR32Opnd>, MFC3OP_FM<0x10, 4>;
1215 def MFC2 : MFC3OP<"mfc2", GPR32Opnd>, MFC3OP_FM<0x12, 0>;
1216 def MTC2 : MFC3OP<"mtc2", GPR32Opnd>, MFC3OP_FM<0x12, 4>;
1217
1218 class Barrier<string asmstr> : InstSE<(outs), (ins), asmstr, [], NoItinerary,
1219                                       FrmOther>;
1220 def SSNOP : Barrier<"ssnop">, BARRIER_FM<1>;
1221 def EHB : Barrier<"ehb">, BARRIER_FM<3>;
1222 def PAUSE : Barrier<"pause">, BARRIER_FM<5>, ISA_MIPS32R2;
1223
1224 class TLB<string asmstr> : InstSE<(outs), (ins), asmstr, [], NoItinerary,
1225                                       FrmOther>;
1226 def TLBP : TLB<"tlbp">, COP0_TLB_FM<0x08>;
1227 def TLBR : TLB<"tlbr">, COP0_TLB_FM<0x01>;
1228 def TLBWI : TLB<"tlbwi">, COP0_TLB_FM<0x02>;
1229 def TLBWR : TLB<"tlbwr">, COP0_TLB_FM<0x06>;
1230
1231 //===----------------------------------------------------------------------===//
1232 // Instruction aliases
1233 //===----------------------------------------------------------------------===//
1234 def : MipsInstAlias<"move $dst, $src",
1235                     (ADDu GPR32Opnd:$dst, GPR32Opnd:$src,ZERO), 1>,
1236       Requires<[IsGP32, NotInMicroMips]>;
1237 def : MipsInstAlias<"bal $offset", (BGEZAL ZERO, brtarget:$offset), 0>;
1238 def : MipsInstAlias<"addu $rs, $rt, $imm",
1239                     (ADDiu GPR32Opnd:$rs, GPR32Opnd:$rt, simm16:$imm), 0>;
1240 def : MipsInstAlias<"add $rs, $rt, $imm",
1241                     (ADDi GPR32Opnd:$rs, GPR32Opnd:$rt, simm16:$imm), 0>;
1242 def : MipsInstAlias<"and $rs, $rt, $imm",
1243                     (ANDi GPR32Opnd:$rs, GPR32Opnd:$rt, simm16:$imm), 0>;
1244 def : MipsInstAlias<"j $rs", (JR GPR32Opnd:$rs), 0>;
1245 let Predicates = [NotInMicroMips] in {
1246 def : MipsInstAlias<"jalr $rs", (JALR RA, GPR32Opnd:$rs), 0>;
1247 }
1248 def : MipsInstAlias<"jal $rs", (JALR RA, GPR32Opnd:$rs), 0>;
1249 def : MipsInstAlias<"jal $rd,$rs", (JALR GPR32Opnd:$rd, GPR32Opnd:$rs), 0>;
1250 def : MipsInstAlias<"not $rt, $rs",
1251                     (NOR GPR32Opnd:$rt, GPR32Opnd:$rs, ZERO), 0>;
1252 def : MipsInstAlias<"neg $rt, $rs",
1253                     (SUB GPR32Opnd:$rt, ZERO, GPR32Opnd:$rs), 1>;
1254 def : MipsInstAlias<"negu $rt",
1255                     (SUBu GPR32Opnd:$rt, ZERO, GPR32Opnd:$rt), 0>;
1256 def : MipsInstAlias<"negu $rt, $rs",
1257                     (SUBu GPR32Opnd:$rt, ZERO, GPR32Opnd:$rs), 1>;
1258 def : MipsInstAlias<"slt $rs, $rt, $imm",
1259                     (SLTi GPR32Opnd:$rs, GPR32Opnd:$rt, simm16:$imm), 0>;
1260 def : MipsInstAlias<"sltu $rt, $rs, $imm",
1261                     (SLTiu GPR32Opnd:$rt, GPR32Opnd:$rs, simm16:$imm), 0>;
1262 def : MipsInstAlias<"xor $rs, $rt, $imm",
1263                     (XORi GPR32Opnd:$rs, GPR32Opnd:$rt, uimm16:$imm), 0>;
1264 def : MipsInstAlias<"or $rs, $rt, $imm",
1265                     (ORi GPR32Opnd:$rs, GPR32Opnd:$rt, uimm16:$imm), 0>;
1266 def : MipsInstAlias<"nop", (SLL ZERO, ZERO, 0), 1>;
1267 def : MipsInstAlias<"mfc0 $rt, $rd", (MFC0 GPR32Opnd:$rt, GPR32Opnd:$rd, 0), 0>;
1268 def : MipsInstAlias<"mtc0 $rt, $rd", (MTC0 GPR32Opnd:$rt, GPR32Opnd:$rd, 0), 0>;
1269 def : MipsInstAlias<"mfc2 $rt, $rd", (MFC2 GPR32Opnd:$rt, GPR32Opnd:$rd, 0), 0>;
1270 def : MipsInstAlias<"mtc2 $rt, $rd", (MTC2 GPR32Opnd:$rt, GPR32Opnd:$rd, 0), 0>;
1271 def : MipsInstAlias<"b $offset", (BEQ ZERO, ZERO, brtarget:$offset), 0>;
1272 def : MipsInstAlias<"bnez $rs,$offset",
1273                     (BNE GPR32Opnd:$rs, ZERO, brtarget:$offset), 0>;
1274 def : MipsInstAlias<"beqz $rs,$offset",
1275                     (BEQ GPR32Opnd:$rs, ZERO, brtarget:$offset), 0>;
1276 def : MipsInstAlias<"syscall", (SYSCALL 0), 1>;
1277     
1278 def : MipsInstAlias<"break $imm", (BREAK uimm10:$imm, 0), 1>;
1279 def : MipsInstAlias<"break", (BREAK 0, 0), 1>;
1280 def : MipsInstAlias<"ei", (EI ZERO), 1>;
1281 def : MipsInstAlias<"di", (DI ZERO), 1>;
1282
1283 def  : MipsInstAlias<"teq $rs, $rt", (TEQ GPR32Opnd:$rs, GPR32Opnd:$rt, 0), 1>;
1284 def  : MipsInstAlias<"tge $rs, $rt", (TGE GPR32Opnd:$rs, GPR32Opnd:$rt, 0), 1>;
1285 def  : MipsInstAlias<"tgeu $rs, $rt", (TGEU GPR32Opnd:$rs, GPR32Opnd:$rt, 0),
1286                      1>;
1287 def  : MipsInstAlias<"tlt $rs, $rt", (TLT GPR32Opnd:$rs, GPR32Opnd:$rt, 0), 1>;
1288 def  : MipsInstAlias<"tltu $rs, $rt", (TLTU GPR32Opnd:$rs, GPR32Opnd:$rt, 0),
1289                      1>;
1290 def  : MipsInstAlias<"tne $rs, $rt", (TNE GPR32Opnd:$rs, GPR32Opnd:$rt, 0), 1>;
1291 def  : MipsInstAlias<"sll $rd, $rt, $rs",
1292                      (SLLV GPR32Opnd:$rd, GPR32Opnd:$rt, GPR32Opnd:$rs), 0>;
1293 def : MipsInstAlias<"sub, $rd, $rs, $imm",
1294                     (ADDi GPR32Opnd:$rd, GPR32Opnd:$rs,
1295                           InvertedImOperand:$imm)>;
1296 def : MipsInstAlias<"sub $rs, $imm",
1297                     (ADDi GPR32Opnd:$rs, GPR32Opnd:$rs, InvertedImOperand:$imm),
1298                     0>;
1299 def : MipsInstAlias<"subu, $rd, $rs, $imm",
1300                     (ADDiu GPR32Opnd:$rd, GPR32Opnd:$rs,
1301                            InvertedImOperand:$imm)>;
1302 def : MipsInstAlias<"subu $rs, $imm", (ADDiu GPR32Opnd:$rs, GPR32Opnd:$rs,
1303                                              InvertedImOperand:$imm), 0>;
1304 def : MipsInstAlias<"sra $rd, $rt, $rs",
1305                     (SRAV GPR32Opnd:$rd, GPR32Opnd:$rt, GPR32Opnd:$rs), 0>;
1306 def : MipsInstAlias<"srl $rd, $rt, $rs",
1307                     (SRLV GPR32Opnd:$rd, GPR32Opnd:$rt, GPR32Opnd:$rs), 0>;
1308 //===----------------------------------------------------------------------===//
1309 // Assembler Pseudo Instructions
1310 //===----------------------------------------------------------------------===//
1311
1312 class LoadImm32< string instr_asm, Operand Od, RegisterOperand RO> :
1313   MipsAsmPseudoInst<(outs RO:$rt), (ins Od:$imm32),
1314                      !strconcat(instr_asm, "\t$rt, $imm32")> ;
1315 def LoadImm32Reg : LoadImm32<"li", uimm5, GPR32Opnd>;
1316
1317 class LoadAddress<string instr_asm, Operand MemOpnd, RegisterOperand RO> :
1318   MipsAsmPseudoInst<(outs RO:$rt), (ins MemOpnd:$addr),
1319                      !strconcat(instr_asm, "\t$rt, $addr")> ;
1320 def LoadAddr32Reg : LoadAddress<"la", mem, GPR32Opnd>;
1321
1322 class LoadAddressImm<string instr_asm, Operand Od, RegisterOperand RO> :
1323   MipsAsmPseudoInst<(outs RO:$rt), (ins Od:$imm32),
1324                      !strconcat(instr_asm, "\t$rt, $imm32")> ;
1325 def LoadAddr32Imm : LoadAddressImm<"la", uimm5, GPR32Opnd>;
1326
1327 //===----------------------------------------------------------------------===//
1328 //  Arbitrary patterns that map to one or more instructions
1329 //===----------------------------------------------------------------------===//
1330
1331 // Load/store pattern templates.
1332 class LoadRegImmPat<Instruction LoadInst, ValueType ValTy, PatFrag Node> :
1333   MipsPat<(ValTy (Node addrRegImm:$a)), (LoadInst addrRegImm:$a)>;
1334
1335 class StoreRegImmPat<Instruction StoreInst, ValueType ValTy> :
1336   MipsPat<(store ValTy:$v, addrRegImm:$a), (StoreInst ValTy:$v, addrRegImm:$a)>;
1337
1338 // Small immediates
1339 def : MipsPat<(i32 immSExt16:$in),
1340               (ADDiu ZERO, imm:$in)>;
1341 def : MipsPat<(i32 immZExt16:$in),
1342               (ORi ZERO, imm:$in)>;
1343 def : MipsPat<(i32 immLow16Zero:$in),
1344               (LUi (HI16 imm:$in))>;
1345
1346 // Arbitrary immediates
1347 def : MipsPat<(i32 imm:$imm),
1348           (ORi (LUi (HI16 imm:$imm)), (LO16 imm:$imm))>;
1349
1350 // Carry MipsPatterns
1351 def : MipsPat<(subc GPR32:$lhs, GPR32:$rhs),
1352               (SUBu GPR32:$lhs, GPR32:$rhs)>;
1353 let AdditionalPredicates = [NotDSP] in {
1354   def : MipsPat<(addc GPR32:$lhs, GPR32:$rhs),
1355                 (ADDu GPR32:$lhs, GPR32:$rhs)>;
1356   def : MipsPat<(addc  GPR32:$src, immSExt16:$imm),
1357                 (ADDiu GPR32:$src, imm:$imm)>;
1358 }
1359
1360 // Call
1361 def : MipsPat<(MipsJmpLink (i32 tglobaladdr:$dst)),
1362               (JAL tglobaladdr:$dst)>;
1363 def : MipsPat<(MipsJmpLink (i32 texternalsym:$dst)),
1364               (JAL texternalsym:$dst)>;
1365 //def : MipsPat<(MipsJmpLink GPR32:$dst),
1366 //              (JALR GPR32:$dst)>;
1367
1368 // Tail call
1369 def : MipsPat<(MipsTailCall (iPTR tglobaladdr:$dst)),
1370               (TAILCALL tglobaladdr:$dst)>;
1371 def : MipsPat<(MipsTailCall (iPTR texternalsym:$dst)),
1372               (TAILCALL texternalsym:$dst)>;
1373 // hi/lo relocs
1374 def : MipsPat<(MipsHi tglobaladdr:$in), (LUi tglobaladdr:$in)>;
1375 def : MipsPat<(MipsHi tblockaddress:$in), (LUi tblockaddress:$in)>;
1376 def : MipsPat<(MipsHi tjumptable:$in), (LUi tjumptable:$in)>;
1377 def : MipsPat<(MipsHi tconstpool:$in), (LUi tconstpool:$in)>;
1378 def : MipsPat<(MipsHi tglobaltlsaddr:$in), (LUi tglobaltlsaddr:$in)>;
1379 def : MipsPat<(MipsHi texternalsym:$in), (LUi texternalsym:$in)>;
1380
1381 def : MipsPat<(MipsLo tglobaladdr:$in), (ADDiu ZERO, tglobaladdr:$in)>;
1382 def : MipsPat<(MipsLo tblockaddress:$in), (ADDiu ZERO, tblockaddress:$in)>;
1383 def : MipsPat<(MipsLo tjumptable:$in), (ADDiu ZERO, tjumptable:$in)>;
1384 def : MipsPat<(MipsLo tconstpool:$in), (ADDiu ZERO, tconstpool:$in)>;
1385 def : MipsPat<(MipsLo tglobaltlsaddr:$in), (ADDiu ZERO, tglobaltlsaddr:$in)>;
1386 def : MipsPat<(MipsLo texternalsym:$in), (ADDiu ZERO, texternalsym:$in)>;
1387
1388 def : MipsPat<(add GPR32:$hi, (MipsLo tglobaladdr:$lo)),
1389               (ADDiu GPR32:$hi, tglobaladdr:$lo)>;
1390 def : MipsPat<(add GPR32:$hi, (MipsLo tblockaddress:$lo)),
1391               (ADDiu GPR32:$hi, tblockaddress:$lo)>;
1392 def : MipsPat<(add GPR32:$hi, (MipsLo tjumptable:$lo)),
1393               (ADDiu GPR32:$hi, tjumptable:$lo)>;
1394 def : MipsPat<(add GPR32:$hi, (MipsLo tconstpool:$lo)),
1395               (ADDiu GPR32:$hi, tconstpool:$lo)>;
1396 def : MipsPat<(add GPR32:$hi, (MipsLo tglobaltlsaddr:$lo)),
1397               (ADDiu GPR32:$hi, tglobaltlsaddr:$lo)>;
1398
1399 // gp_rel relocs
1400 def : MipsPat<(add GPR32:$gp, (MipsGPRel tglobaladdr:$in)),
1401               (ADDiu GPR32:$gp, tglobaladdr:$in)>;
1402 def : MipsPat<(add GPR32:$gp, (MipsGPRel tconstpool:$in)),
1403               (ADDiu GPR32:$gp, tconstpool:$in)>;
1404
1405 // wrapper_pic
1406 class WrapperPat<SDNode node, Instruction ADDiuOp, RegisterClass RC>:
1407       MipsPat<(MipsWrapper RC:$gp, node:$in),
1408               (ADDiuOp RC:$gp, node:$in)>;
1409
1410 def : WrapperPat<tglobaladdr, ADDiu, GPR32>;
1411 def : WrapperPat<tconstpool, ADDiu, GPR32>;
1412 def : WrapperPat<texternalsym, ADDiu, GPR32>;
1413 def : WrapperPat<tblockaddress, ADDiu, GPR32>;
1414 def : WrapperPat<tjumptable, ADDiu, GPR32>;
1415 def : WrapperPat<tglobaltlsaddr, ADDiu, GPR32>;
1416
1417 // Mips does not have "not", so we expand our way
1418 def : MipsPat<(not GPR32:$in),
1419               (NOR GPR32Opnd:$in, ZERO)>;
1420
1421 // extended loads
1422 def : MipsPat<(i32 (extloadi1  addr:$src)), (LBu addr:$src)>;
1423 def : MipsPat<(i32 (extloadi8  addr:$src)), (LBu addr:$src)>;
1424 def : MipsPat<(i32 (extloadi16 addr:$src)), (LHu addr:$src)>;
1425
1426 // peepholes
1427 def : MipsPat<(store (i32 0), addr:$dst), (SW ZERO, addr:$dst)>;
1428
1429 // brcond patterns
1430 multiclass BrcondPats<RegisterClass RC, Instruction BEQOp, Instruction BNEOp,
1431                       Instruction SLTOp, Instruction SLTuOp, Instruction SLTiOp,
1432                       Instruction SLTiuOp, Register ZEROReg> {
1433 def : MipsPat<(brcond (i32 (setne RC:$lhs, 0)), bb:$dst),
1434               (BNEOp RC:$lhs, ZEROReg, bb:$dst)>;
1435 def : MipsPat<(brcond (i32 (seteq RC:$lhs, 0)), bb:$dst),
1436               (BEQOp RC:$lhs, ZEROReg, bb:$dst)>;
1437
1438 def : MipsPat<(brcond (i32 (setge RC:$lhs, RC:$rhs)), bb:$dst),
1439               (BEQ (SLTOp RC:$lhs, RC:$rhs), ZERO, bb:$dst)>;
1440 def : MipsPat<(brcond (i32 (setuge RC:$lhs, RC:$rhs)), bb:$dst),
1441               (BEQ (SLTuOp RC:$lhs, RC:$rhs), ZERO, bb:$dst)>;
1442 def : MipsPat<(brcond (i32 (setge RC:$lhs, immSExt16:$rhs)), bb:$dst),
1443               (BEQ (SLTiOp RC:$lhs, immSExt16:$rhs), ZERO, bb:$dst)>;
1444 def : MipsPat<(brcond (i32 (setuge RC:$lhs, immSExt16:$rhs)), bb:$dst),
1445               (BEQ (SLTiuOp RC:$lhs, immSExt16:$rhs), ZERO, bb:$dst)>;
1446 def : MipsPat<(brcond (i32 (setgt RC:$lhs, immSExt16Plus1:$rhs)), bb:$dst),
1447               (BEQ (SLTiOp RC:$lhs, (Plus1 imm:$rhs)), ZERO, bb:$dst)>;
1448 def : MipsPat<(brcond (i32 (setugt RC:$lhs, immSExt16Plus1:$rhs)), bb:$dst),
1449               (BEQ (SLTiuOp RC:$lhs, (Plus1 imm:$rhs)), ZERO, bb:$dst)>;
1450
1451 def : MipsPat<(brcond (i32 (setle RC:$lhs, RC:$rhs)), bb:$dst),
1452               (BEQ (SLTOp RC:$rhs, RC:$lhs), ZERO, bb:$dst)>;
1453 def : MipsPat<(brcond (i32 (setule RC:$lhs, RC:$rhs)), bb:$dst),
1454               (BEQ (SLTuOp RC:$rhs, RC:$lhs), ZERO, bb:$dst)>;
1455
1456 def : MipsPat<(brcond RC:$cond, bb:$dst),
1457               (BNEOp RC:$cond, ZEROReg, bb:$dst)>;
1458 }
1459
1460 defm : BrcondPats<GPR32, BEQ, BNE, SLT, SLTu, SLTi, SLTiu, ZERO>;
1461
1462 def : MipsPat<(brcond (i32 (setlt i32:$lhs, 1)), bb:$dst),
1463               (BLEZ i32:$lhs, bb:$dst)>;
1464 def : MipsPat<(brcond (i32 (setgt i32:$lhs, -1)), bb:$dst),
1465               (BGEZ i32:$lhs, bb:$dst)>;
1466
1467 // setcc patterns
1468 multiclass SeteqPats<RegisterClass RC, Instruction SLTiuOp, Instruction XOROp,
1469                      Instruction SLTuOp, Register ZEROReg> {
1470   def : MipsPat<(seteq RC:$lhs, 0),
1471                 (SLTiuOp RC:$lhs, 1)>;
1472   def : MipsPat<(setne RC:$lhs, 0),
1473                 (SLTuOp ZEROReg, RC:$lhs)>;
1474   def : MipsPat<(seteq RC:$lhs, RC:$rhs),
1475                 (SLTiuOp (XOROp RC:$lhs, RC:$rhs), 1)>;
1476   def : MipsPat<(setne RC:$lhs, RC:$rhs),
1477                 (SLTuOp ZEROReg, (XOROp RC:$lhs, RC:$rhs))>;
1478 }
1479
1480 multiclass SetlePats<RegisterClass RC, Instruction SLTOp, Instruction SLTuOp> {
1481   def : MipsPat<(setle RC:$lhs, RC:$rhs),
1482                 (XORi (SLTOp RC:$rhs, RC:$lhs), 1)>;
1483   def : MipsPat<(setule RC:$lhs, RC:$rhs),
1484                 (XORi (SLTuOp RC:$rhs, RC:$lhs), 1)>;
1485 }
1486
1487 multiclass SetgtPats<RegisterClass RC, Instruction SLTOp, Instruction SLTuOp> {
1488   def : MipsPat<(setgt RC:$lhs, RC:$rhs),
1489                 (SLTOp RC:$rhs, RC:$lhs)>;
1490   def : MipsPat<(setugt RC:$lhs, RC:$rhs),
1491                 (SLTuOp RC:$rhs, RC:$lhs)>;
1492 }
1493
1494 multiclass SetgePats<RegisterClass RC, Instruction SLTOp, Instruction SLTuOp> {
1495   def : MipsPat<(setge RC:$lhs, RC:$rhs),
1496                 (XORi (SLTOp RC:$lhs, RC:$rhs), 1)>;
1497   def : MipsPat<(setuge RC:$lhs, RC:$rhs),
1498                 (XORi (SLTuOp RC:$lhs, RC:$rhs), 1)>;
1499 }
1500
1501 multiclass SetgeImmPats<RegisterClass RC, Instruction SLTiOp,
1502                         Instruction SLTiuOp> {
1503   def : MipsPat<(setge RC:$lhs, immSExt16:$rhs),
1504                 (XORi (SLTiOp RC:$lhs, immSExt16:$rhs), 1)>;
1505   def : MipsPat<(setuge RC:$lhs, immSExt16:$rhs),
1506                 (XORi (SLTiuOp RC:$lhs, immSExt16:$rhs), 1)>;
1507 }
1508
1509 defm : SeteqPats<GPR32, SLTiu, XOR, SLTu, ZERO>;
1510 defm : SetlePats<GPR32, SLT, SLTu>;
1511 defm : SetgtPats<GPR32, SLT, SLTu>;
1512 defm : SetgePats<GPR32, SLT, SLTu>;
1513 defm : SetgeImmPats<GPR32, SLTi, SLTiu>;
1514
1515 // bswap pattern
1516 def : MipsPat<(bswap GPR32:$rt), (ROTR (WSBH GPR32:$rt), 16)>;
1517
1518 // Load halfword/word patterns.
1519 let AddedComplexity = 40 in {
1520   def : LoadRegImmPat<LBu, i32, zextloadi8>;
1521   def : LoadRegImmPat<LH, i32, sextloadi16>;
1522   def : LoadRegImmPat<LW, i32, load>;
1523 }
1524
1525 //===----------------------------------------------------------------------===//
1526 // Floating Point Support
1527 //===----------------------------------------------------------------------===//
1528
1529 include "MipsInstrFPU.td"
1530 include "Mips64InstrInfo.td"
1531 include "MipsCondMov.td"
1532
1533 include "Mips32r6InstrInfo.td"
1534 include "Mips64r6InstrInfo.td"
1535
1536 //
1537 // Mips16
1538
1539 include "Mips16InstrFormats.td"
1540 include "Mips16InstrInfo.td"
1541
1542 // DSP
1543 include "MipsDSPInstrFormats.td"
1544 include "MipsDSPInstrInfo.td"
1545
1546 // MSA
1547 include "MipsMSAInstrFormats.td"
1548 include "MipsMSAInstrInfo.td"
1549
1550 // Micromips
1551 include "MicroMipsInstrFormats.td"
1552 include "MicroMipsInstrInfo.td"
1553 include "MicroMipsInstrFPU.td"