[mips][microMIPS] Implement BC16, BEQZC16 and BNEZC16 instructions
[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 HasMips2     :    Predicate<"Subtarget->hasMips2()">,
150                       AssemblerPredicate<"FeatureMips2">;
151 def HasMips3_32  :    Predicate<"Subtarget->hasMips3_32()">,
152                       AssemblerPredicate<"FeatureMips3_32">;
153 def HasMips3_32r2 :   Predicate<"Subtarget->hasMips3_32r2()">,
154                       AssemblerPredicate<"FeatureMips3_32r2">;
155 def HasMips3     :    Predicate<"Subtarget->hasMips3()">,
156                       AssemblerPredicate<"FeatureMips3">;
157 def HasMips4_32  :    Predicate<"Subtarget->hasMips4_32()">,
158                       AssemblerPredicate<"FeatureMips4_32">;
159 def NotMips4_32  :    Predicate<"!Subtarget->hasMips4_32()">,
160                       AssemblerPredicate<"FeatureMips4_32">;
161 def HasMips4_32r2 :   Predicate<"Subtarget->hasMips4_32r2()">,
162                       AssemblerPredicate<"FeatureMips4_32r2">;
163 def HasMips5_32r2 :   Predicate<"Subtarget->hasMips5_32r2()">,
164                       AssemblerPredicate<"FeatureMips5_32r2">;
165 def HasMips32    :    Predicate<"Subtarget->hasMips32()">,
166                       AssemblerPredicate<"FeatureMips32">;
167 def HasMips32r2  :    Predicate<"Subtarget->hasMips32r2()">,
168                       AssemblerPredicate<"FeatureMips32r2">;
169 def HasMips32r5  :    Predicate<"Subtarget->hasMips32r5()">,
170                       AssemblerPredicate<"FeatureMips32r5">;
171 def HasMips32r6  :    Predicate<"Subtarget->hasMips32r6()">,
172                       AssemblerPredicate<"FeatureMips32r6">;
173 def NotMips32r6  :    Predicate<"!Subtarget->hasMips32r6()">,
174                       AssemblerPredicate<"!FeatureMips32r6">;
175 def IsGP64bit    :    Predicate<"Subtarget->isGP64bit()">,
176                       AssemblerPredicate<"FeatureGP64Bit">;
177 def IsGP32bit    :    Predicate<"!Subtarget->isGP64bit()">,
178                       AssemblerPredicate<"!FeatureGP64Bit">;
179 def HasMips64    :    Predicate<"Subtarget->hasMips64()">,
180                       AssemblerPredicate<"FeatureMips64">;
181 def HasMips64r2  :    Predicate<"Subtarget->hasMips64r2()">,
182                       AssemblerPredicate<"FeatureMips64r2">;
183 def HasMips64r6  :    Predicate<"Subtarget->hasMips64r6()">,
184                       AssemblerPredicate<"FeatureMips64r6">;
185 def NotMips64r6  :    Predicate<"!Subtarget->hasMips64r6()">,
186                       AssemblerPredicate<"!FeatureMips64r6">;
187 def HasMicroMips32r6 : Predicate<"Subtarget->inMicroMips32r6Mode()">,
188                        AssemblerPredicate<"FeatureMicroMips,FeatureMips32r6">;
189 def HasMicroMips64r6 : Predicate<"Subtarget->inMicroMips64r6Mode()">,
190                        AssemblerPredicate<"FeatureMicroMips,FeatureMips64r6">;
191 def InMips16Mode :    Predicate<"Subtarget->inMips16Mode()">,
192                       AssemblerPredicate<"FeatureMips16">;
193 def HasCnMips    :    Predicate<"Subtarget->hasCnMips()">,
194                       AssemblerPredicate<"FeatureCnMips">;
195 def RelocStatic :     Predicate<"TM.getRelocationModel() == Reloc::Static">;
196 def RelocPIC    :     Predicate<"TM.getRelocationModel() == Reloc::PIC_">;
197 def NoNaNsFPMath :    Predicate<"TM.Options.NoNaNsFPMath">;
198 def HasStdEnc :       Predicate<"Subtarget->hasStandardEncoding()">,
199                       AssemblerPredicate<"!FeatureMips16">;
200 def NotDSP :          Predicate<"!Subtarget->hasDSP()">;
201 def InMicroMips    :  Predicate<"Subtarget->inMicroMipsMode()">,
202                       AssemblerPredicate<"FeatureMicroMips">;
203 def NotInMicroMips :  Predicate<"!Subtarget->inMicroMipsMode()">,
204                       AssemblerPredicate<"!FeatureMicroMips">;
205 def IsLE           :  Predicate<"Subtarget->isLittle()">;
206 def IsBE           :  Predicate<"!Subtarget->isLittle()">;
207 def IsNotNaCl    :    Predicate<"!Subtarget->isTargetNaCl()">;
208 def UseTCCInDIV    :  AssemblerPredicate<"FeatureUseTCCInDIV">;
209
210 //===----------------------------------------------------------------------===//
211 // Mips GPR size adjectives.
212 // They are mutually exclusive.
213 //===----------------------------------------------------------------------===//
214
215 class GPR_32 { list<Predicate> GPRPredicates = [IsGP32bit]; }
216 class GPR_64 { list<Predicate> GPRPredicates = [IsGP64bit]; }
217
218 //===----------------------------------------------------------------------===//
219 // Mips ISA/ASE membership and instruction group membership adjectives.
220 // They are mutually exclusive.
221 //===----------------------------------------------------------------------===//
222
223 // FIXME: I'd prefer to use additive predicates to build the instruction sets
224 //        but we are short on assembler feature bits at the moment. Using a
225 //        subtractive predicate will hopefully keep us under the 32 predicate
226 //        limit long enough to develop an alternative way to handle P1||P2
227 //        predicates.
228 class ISA_MIPS1_NOT_4_32 {
229   list<Predicate> InsnPredicates = [NotMips4_32];
230 }
231 class ISA_MIPS1_NOT_32R6_64R6 {
232   list<Predicate> InsnPredicates = [NotMips32r6, NotMips64r6];
233 }
234 class ISA_MIPS2    { list<Predicate> InsnPredicates = [HasMips2]; }
235 class ISA_MIPS2_NOT_32R6_64R6 {
236   list<Predicate> InsnPredicates = [HasMips2, NotMips32r6, NotMips64r6];
237 }
238 class ISA_MIPS3    { list<Predicate> InsnPredicates = [HasMips3]; }
239 class ISA_MIPS3_NOT_32R6_64R6 {
240   list<Predicate> InsnPredicates = [HasMips3, NotMips32r6, NotMips64r6];
241 }
242 class ISA_MIPS32   { list<Predicate> InsnPredicates = [HasMips32]; }
243 class ISA_MIPS32_NOT_32R6_64R6 {
244   list<Predicate> InsnPredicates = [HasMips32, NotMips32r6, NotMips64r6];
245 }
246 class ISA_MIPS32R2 { list<Predicate> InsnPredicates = [HasMips32r2]; }
247 class ISA_MIPS32R2_NOT_32R6_64R6 {
248   list<Predicate> InsnPredicates = [HasMips32r2, NotMips32r6, NotMips64r6];
249 }
250 class ISA_MIPS32R5 { list<Predicate> InsnPredicates = [HasMips32r5]; }
251 class ISA_MIPS64   { list<Predicate> InsnPredicates = [HasMips64]; }
252 class ISA_MIPS64_NOT_64R6 {
253   list<Predicate> InsnPredicates = [HasMips64, NotMips64r6];
254 }
255 class ISA_MIPS64R2 { list<Predicate> InsnPredicates = [HasMips64r2]; }
256 class ISA_MIPS32R6 { list<Predicate> InsnPredicates = [HasMips32r6]; }
257 class ISA_MIPS64R6 { list<Predicate> InsnPredicates = [HasMips64r6]; }
258 class ISA_MICROMIPS { list<Predicate> InsnPredicates = [InMicroMips]; }
259 class ISA_MICROMIPS32R6 {
260   list<Predicate> InsnPredicates = [HasMicroMips32r6];
261 }
262 class ISA_MICROMIPS64R6 {
263   list<Predicate> InsnPredicates = [HasMicroMips64r6];
264 }
265
266 // The portions of MIPS-III that were also added to MIPS32
267 class INSN_MIPS3_32 { list<Predicate> InsnPredicates = [HasMips3_32]; }
268
269 // The portions of MIPS-III that were also added to MIPS32 but were removed in
270 // MIPS32r6 and MIPS64r6.
271 class INSN_MIPS3_32_NOT_32R6_64R6 {
272   list<Predicate> InsnPredicates = [HasMips3_32, NotMips32r6, NotMips64r6];
273 }
274
275 // The portions of MIPS-III that were also added to MIPS32
276 class INSN_MIPS3_32R2 { list<Predicate> InsnPredicates = [HasMips3_32r2]; }
277
278 // The portions of MIPS-IV that were also added to MIPS32 but were removed in
279 // MIPS32r6 and MIPS64r6.
280 class INSN_MIPS4_32_NOT_32R6_64R6 {
281   list<Predicate> InsnPredicates = [HasMips4_32, NotMips32r6, NotMips64r6];
282 }
283
284 // The portions of MIPS-IV that were also added to MIPS32r2 but were removed in
285 // MIPS32r6 and MIPS64r6.
286 class INSN_MIPS4_32R2_NOT_32R6_64R6 {
287   list<Predicate> InsnPredicates = [HasMips4_32r2, NotMips32r6, NotMips64r6];
288 }
289
290 // The portions of MIPS-V that were also added to MIPS32r2 but were removed in
291 // MIPS32r6 and MIPS64r6.
292 class INSN_MIPS5_32R2_NOT_32R6_64R6 {
293   list<Predicate> InsnPredicates = [HasMips5_32r2, NotMips32r6, NotMips64r6];
294 }
295
296 //===----------------------------------------------------------------------===//
297
298 class MipsPat<dag pattern, dag result> : Pat<pattern, result>, PredicateControl {
299   let EncodingPredicates = [HasStdEnc];
300 }
301
302 class MipsInstAlias<string Asm, dag Result, bit Emit = 0b1> :
303   InstAlias<Asm, Result, Emit>, PredicateControl;
304
305 class IsCommutable {
306   bit isCommutable = 1;
307 }
308
309 class IsBranch {
310   bit isBranch = 1;
311 }
312
313 class IsReturn {
314   bit isReturn = 1;
315 }
316
317 class IsCall {
318   bit isCall = 1;
319 }
320
321 class IsTailCall {
322   bit isCall = 1;
323   bit isTerminator = 1;
324   bit isReturn = 1;
325   bit isBarrier = 1;
326   bit hasExtraSrcRegAllocReq = 1;
327   bit isCodeGenOnly = 1;
328 }
329
330 class IsAsCheapAsAMove {
331   bit isAsCheapAsAMove = 1;
332 }
333
334 class NeverHasSideEffects {
335   bit hasSideEffects = 0;
336 }
337
338 //===----------------------------------------------------------------------===//
339 // Instruction format superclass
340 //===----------------------------------------------------------------------===//
341
342 include "MipsInstrFormats.td"
343
344 //===----------------------------------------------------------------------===//
345 // Mips Operand, Complex Patterns and Transformations Definitions.
346 //===----------------------------------------------------------------------===//
347
348 def MipsJumpTargetAsmOperand : AsmOperandClass {
349   let Name = "JumpTarget";
350   let ParserMethod = "parseJumpTarget";
351   let PredicateMethod = "isImm";
352   let RenderMethod = "addImmOperands";
353 }
354
355 // Instruction operand types
356 def jmptarget   : Operand<OtherVT> {
357   let EncoderMethod = "getJumpTargetOpValue";
358   let ParserMatchClass = MipsJumpTargetAsmOperand;
359 }
360 def brtarget    : Operand<OtherVT> {
361   let EncoderMethod = "getBranchTargetOpValue";
362   let OperandType = "OPERAND_PCREL";
363   let DecoderMethod = "DecodeBranchTarget";
364   let ParserMatchClass = MipsJumpTargetAsmOperand;
365 }
366 def calltarget  : Operand<iPTR> {
367   let EncoderMethod = "getJumpTargetOpValue";
368   let ParserMatchClass = MipsJumpTargetAsmOperand;
369 }
370
371 def imm64: Operand<i64>;
372
373 def simm9 : Operand<i32>;
374 def simm10 : Operand<i32>;
375 def simm11 : Operand<i32>;
376
377 def simm16      : Operand<i32> {
378   let DecoderMethod= "DecodeSimm16";
379 }
380
381 def simm19_lsl2 : Operand<i32> {
382   let EncoderMethod = "getSimm19Lsl2Encoding";
383   let DecoderMethod = "DecodeSimm19Lsl2";
384   let ParserMatchClass = MipsJumpTargetAsmOperand;
385 }
386
387 def simm18_lsl3 : Operand<i32> {
388   let EncoderMethod = "getSimm18Lsl3Encoding";
389   let DecoderMethod = "DecodeSimm18Lsl3";
390   let ParserMatchClass = MipsJumpTargetAsmOperand;
391 }
392
393 def simm20      : Operand<i32> {
394 }
395
396 def uimm20      : Operand<i32> {
397 }
398
399 def MipsUImm10AsmOperand : AsmOperandClass {
400   let Name = "UImm10";
401   let RenderMethod = "addImmOperands";
402   let ParserMethod = "parseImm";
403   let PredicateMethod = "isUImm<10>";
404 }
405
406 def uimm10      : Operand<i32> {
407   let ParserMatchClass = MipsUImm10AsmOperand;
408 }
409
410 def simm16_64   : Operand<i64> {
411   let DecoderMethod = "DecodeSimm16";
412 }
413
414 // Zero
415 def uimmz       : Operand<i32> {
416   let PrintMethod = "printUnsignedImm";
417 }
418
419 // Unsigned Operand
420 def uimm2 : Operand<i32> {
421   let PrintMethod = "printUnsignedImm";
422 }
423
424 def uimm3 : Operand<i32> {
425   let PrintMethod = "printUnsignedImm";
426 }
427
428 def uimm5       : Operand<i32> {
429   let PrintMethod = "printUnsignedImm";
430 }
431
432 def uimm6 : Operand<i32> {
433   let PrintMethod = "printUnsignedImm";
434 }
435
436 def uimm16      : Operand<i32> {
437   let PrintMethod = "printUnsignedImm";
438 }
439
440 def pcrel16      : Operand<i32> {
441 }
442
443 def MipsMemAsmOperand : AsmOperandClass {
444   let Name = "Mem";
445   let ParserMethod = "parseMemOperand";
446 }
447
448 def MipsMemSimm11AsmOperand : AsmOperandClass {
449   let Name = "MemOffsetSimm11";
450   let SuperClasses = [MipsMemAsmOperand];
451   let RenderMethod = "addMemOperands";
452   let ParserMethod = "parseMemOperand";
453   let PredicateMethod = "isMemWithSimmOffset<11>";
454 }
455
456 def MipsMemSimm16AsmOperand : AsmOperandClass {
457   let Name = "MemOffsetSimm16";
458   let SuperClasses = [MipsMemAsmOperand];
459   let RenderMethod = "addMemOperands";
460   let ParserMethod = "parseMemOperand";
461   let PredicateMethod = "isMemWithSimmOffset<16>";
462 }
463
464 def MipsInvertedImmoperand : AsmOperandClass {
465   let Name = "InvNum";
466   let RenderMethod = "addImmOperands";
467   let ParserMethod = "parseInvNum";
468 }
469
470 def InvertedImOperand : Operand<i32> {
471   let ParserMatchClass = MipsInvertedImmoperand;
472 }
473
474 def InvertedImOperand64 : Operand<i64> {
475   let ParserMatchClass = MipsInvertedImmoperand;
476 }
477
478 class mem_generic : Operand<iPTR> {
479   let PrintMethod = "printMemOperand";
480   let MIOperandInfo = (ops ptr_rc, simm16);
481   let EncoderMethod = "getMemEncoding";
482   let ParserMatchClass = MipsMemAsmOperand;
483   let OperandType = "OPERAND_MEMORY";
484 }
485
486 // Address operand
487 def mem : mem_generic;
488
489 // MSA specific address operand
490 def mem_msa : mem_generic {
491   let MIOperandInfo = (ops ptr_rc, simm10);
492   let EncoderMethod = "getMSAMemEncoding";
493 }
494
495 def mem_simm9 : mem_generic {
496   let MIOperandInfo = (ops ptr_rc, simm9);
497   let EncoderMethod = "getMemEncoding";
498 }
499
500 def mem_simm11 : mem_generic {
501   let MIOperandInfo = (ops ptr_rc, simm11);
502   let EncoderMethod = "getMemEncoding";
503   let ParserMatchClass = MipsMemSimm11AsmOperand;
504 }
505
506 def mem_simm16 : mem_generic {
507   let MIOperandInfo = (ops ptr_rc, simm16);
508   let EncoderMethod = "getMemEncoding";
509   let ParserMatchClass = MipsMemSimm16AsmOperand;
510 }
511
512 def mem_ea : Operand<iPTR> {
513   let PrintMethod = "printMemOperandEA";
514   let MIOperandInfo = (ops ptr_rc, simm16);
515   let EncoderMethod = "getMemEncoding";
516   let OperandType = "OPERAND_MEMORY";
517 }
518
519 def PtrRC : Operand<iPTR> {
520   let MIOperandInfo = (ops ptr_rc);
521   let DecoderMethod = "DecodePtrRegisterClass";
522   let ParserMatchClass = GPR32AsmOperand;
523 }
524
525 // size operand of ext instruction
526 def size_ext : Operand<i32> {
527   let EncoderMethod = "getSizeExtEncoding";
528   let DecoderMethod = "DecodeExtSize";
529 }
530
531 // size operand of ins instruction
532 def size_ins : Operand<i32> {
533   let EncoderMethod = "getSizeInsEncoding";
534   let DecoderMethod = "DecodeInsSize";
535 }
536
537 // Transformation Function - get the lower 16 bits.
538 def LO16 : SDNodeXForm<imm, [{
539   return getImm(N, N->getZExtValue() & 0xFFFF);
540 }]>;
541
542 // Transformation Function - get the higher 16 bits.
543 def HI16 : SDNodeXForm<imm, [{
544   return getImm(N, (N->getZExtValue() >> 16) & 0xFFFF);
545 }]>;
546
547 // Plus 1.
548 def Plus1 : SDNodeXForm<imm, [{ return getImm(N, N->getSExtValue() + 1); }]>;
549
550 // Node immediate is zero (e.g. insve.d)
551 def immz : PatLeaf<(imm), [{ return N->getSExtValue() == 0; }]>;
552
553 // Node immediate fits as 16-bit sign extended on target immediate.
554 // e.g. addi, andi
555 def immSExt8  : PatLeaf<(imm), [{ return isInt<8>(N->getSExtValue()); }]>;
556
557 // Node immediate fits as 16-bit sign extended on target immediate.
558 // e.g. addi, andi
559 def immSExt16  : PatLeaf<(imm), [{ return isInt<16>(N->getSExtValue()); }]>;
560
561 // Node immediate fits as 15-bit sign extended on target immediate.
562 // e.g. addi, andi
563 def immSExt15  : PatLeaf<(imm), [{ return isInt<15>(N->getSExtValue()); }]>;
564
565 // Node immediate fits as 16-bit zero extended on target immediate.
566 // The LO16 param means that only the lower 16 bits of the node
567 // immediate are caught.
568 // e.g. addiu, sltiu
569 def immZExt16  : PatLeaf<(imm), [{
570   if (N->getValueType(0) == MVT::i32)
571     return (uint32_t)N->getZExtValue() == (unsigned short)N->getZExtValue();
572   else
573     return (uint64_t)N->getZExtValue() == (unsigned short)N->getZExtValue();
574 }], LO16>;
575
576 // Immediate can be loaded with LUi (32-bit int with lower 16-bit cleared).
577 def immLow16Zero : PatLeaf<(imm), [{
578   int64_t Val = N->getSExtValue();
579   return isInt<32>(Val) && !(Val & 0xffff);
580 }]>;
581
582 // shamt field must fit in 5 bits.
583 def immZExt5 : ImmLeaf<i32, [{return Imm == (Imm & 0x1f);}]>;
584
585 // True if (N + 1) fits in 16-bit field.
586 def immSExt16Plus1 : PatLeaf<(imm), [{
587   return isInt<17>(N->getSExtValue()) && isInt<16>(N->getSExtValue() + 1);
588 }]>;
589
590 // Mips Address Mode! SDNode frameindex could possibily be a match
591 // since load and store instructions from stack used it.
592 def addr :
593   ComplexPattern<iPTR, 2, "selectIntAddr", [frameindex]>;
594
595 def addrRegImm :
596   ComplexPattern<iPTR, 2, "selectAddrRegImm", [frameindex]>;
597
598 def addrRegReg :
599   ComplexPattern<iPTR, 2, "selectAddrRegReg", [frameindex]>;
600
601 def addrDefault :
602   ComplexPattern<iPTR, 2, "selectAddrDefault", [frameindex]>;
603
604 def addrimm10 : ComplexPattern<iPTR, 2, "selectIntAddrMSA", [frameindex]>;
605
606 //===----------------------------------------------------------------------===//
607 // Instructions specific format
608 //===----------------------------------------------------------------------===//
609
610 // Arithmetic and logical instructions with 3 register operands.
611 class ArithLogicR<string opstr, RegisterOperand RO, bit isComm = 0,
612                   InstrItinClass Itin = NoItinerary,
613                   SDPatternOperator OpNode = null_frag>:
614   InstSE<(outs RO:$rd), (ins RO:$rs, RO:$rt),
615          !strconcat(opstr, "\t$rd, $rs, $rt"),
616          [(set RO:$rd, (OpNode RO:$rs, RO:$rt))], Itin, FrmR, opstr> {
617   let isCommutable = isComm;
618   let isReMaterializable = 1;
619   let TwoOperandAliasConstraint = "$rd = $rs";
620 }
621
622 // Arithmetic and logical instructions with 2 register operands.
623 class ArithLogicI<string opstr, Operand Od, RegisterOperand RO,
624                   InstrItinClass Itin = NoItinerary,
625                   SDPatternOperator imm_type = null_frag,
626                   SDPatternOperator OpNode = null_frag> :
627   InstSE<(outs RO:$rt), (ins RO:$rs, Od:$imm16),
628          !strconcat(opstr, "\t$rt, $rs, $imm16"),
629          [(set RO:$rt, (OpNode RO:$rs, imm_type:$imm16))],
630          Itin, FrmI, opstr> {
631   let isReMaterializable = 1;
632   let TwoOperandAliasConstraint = "$rs = $rt";
633 }
634
635 // Arithmetic Multiply ADD/SUB
636 class MArithR<string opstr, InstrItinClass itin, bit isComm = 0> :
637   InstSE<(outs), (ins GPR32Opnd:$rs, GPR32Opnd:$rt),
638          !strconcat(opstr, "\t$rs, $rt"), [], itin, FrmR, opstr> {
639   let Defs = [HI0, LO0];
640   let Uses = [HI0, LO0];
641   let isCommutable = isComm;
642 }
643
644 //  Logical
645 class LogicNOR<string opstr, RegisterOperand RO>:
646   InstSE<(outs RO:$rd), (ins RO:$rs, RO:$rt),
647          !strconcat(opstr, "\t$rd, $rs, $rt"),
648          [(set RO:$rd, (not (or RO:$rs, RO:$rt)))], II_NOR, FrmR, opstr> {
649   let isCommutable = 1;
650 }
651
652 // Shifts
653 class shift_rotate_imm<string opstr, Operand ImmOpnd,
654                        RegisterOperand RO, InstrItinClass itin,
655                        SDPatternOperator OpNode = null_frag,
656                        SDPatternOperator PF = null_frag> :
657   InstSE<(outs RO:$rd), (ins RO:$rt, ImmOpnd:$shamt),
658          !strconcat(opstr, "\t$rd, $rt, $shamt"),
659          [(set RO:$rd, (OpNode RO:$rt, PF:$shamt))], itin, FrmR, opstr> {
660   let TwoOperandAliasConstraint = "$rt = $rd";
661 }
662
663 class shift_rotate_reg<string opstr, RegisterOperand RO, InstrItinClass itin,
664                        SDPatternOperator OpNode = null_frag>:
665   InstSE<(outs RO:$rd), (ins RO:$rt, GPR32Opnd:$rs),
666          !strconcat(opstr, "\t$rd, $rt, $rs"),
667          [(set RO:$rd, (OpNode RO:$rt, GPR32Opnd:$rs))], itin, FrmR,
668          opstr>;
669
670 // Load Upper Imediate
671 class LoadUpper<string opstr, RegisterOperand RO, Operand Imm>:
672   InstSE<(outs RO:$rt), (ins Imm:$imm16), !strconcat(opstr, "\t$rt, $imm16"),
673          [], II_LUI, FrmI, opstr>, IsAsCheapAsAMove {
674   let hasSideEffects = 0;
675   let isReMaterializable = 1;
676 }
677
678 // Memory Load/Store
679 class Load<string opstr, DAGOperand RO, SDPatternOperator OpNode = null_frag,
680            InstrItinClass Itin = NoItinerary, ComplexPattern Addr = addr> :
681   InstSE<(outs RO:$rt), (ins mem:$addr), !strconcat(opstr, "\t$rt, $addr"),
682          [(set RO:$rt, (OpNode Addr:$addr))], Itin, FrmI, opstr> {
683   let DecoderMethod = "DecodeMem";
684   let canFoldAsLoad = 1;
685   let mayLoad = 1;
686 }
687
688 class Store<string opstr, DAGOperand RO, SDPatternOperator OpNode = null_frag,
689             InstrItinClass Itin = NoItinerary, ComplexPattern Addr = addr> :
690   InstSE<(outs), (ins RO:$rt, mem:$addr), !strconcat(opstr, "\t$rt, $addr"),
691          [(OpNode RO:$rt, Addr:$addr)], Itin, FrmI, opstr> {
692   let DecoderMethod = "DecodeMem";
693   let mayStore = 1;
694 }
695
696 // Load/Store Left/Right
697 let canFoldAsLoad = 1 in
698 class LoadLeftRight<string opstr, SDNode OpNode, RegisterOperand RO,
699                     InstrItinClass Itin> :
700   InstSE<(outs RO:$rt), (ins mem:$addr, RO:$src),
701          !strconcat(opstr, "\t$rt, $addr"),
702          [(set RO:$rt, (OpNode addr:$addr, RO:$src))], Itin, FrmI> {
703   let DecoderMethod = "DecodeMem";
704   string Constraints = "$src = $rt";
705 }
706
707 class StoreLeftRight<string opstr, SDNode OpNode, RegisterOperand RO,
708                      InstrItinClass Itin> :
709   InstSE<(outs), (ins RO:$rt, mem:$addr), !strconcat(opstr, "\t$rt, $addr"),
710          [(OpNode RO:$rt, addr:$addr)], Itin, FrmI> {
711   let DecoderMethod = "DecodeMem";
712 }
713
714 // COP2 Load/Store
715 class LW_FT2<string opstr, RegisterOperand RC, InstrItinClass Itin,
716              SDPatternOperator OpNode= null_frag> :
717   InstSE<(outs RC:$rt), (ins mem:$addr), !strconcat(opstr, "\t$rt, $addr"),
718          [(set RC:$rt, (OpNode addrDefault:$addr))], Itin, FrmFI, opstr> {
719   let DecoderMethod = "DecodeFMem2";
720   let mayLoad = 1;
721 }
722
723 class SW_FT2<string opstr, RegisterOperand RC, InstrItinClass Itin,
724              SDPatternOperator OpNode= null_frag> :
725   InstSE<(outs), (ins RC:$rt, mem:$addr), !strconcat(opstr, "\t$rt, $addr"),
726          [(OpNode RC:$rt, addrDefault:$addr)], Itin, FrmFI, opstr> {
727   let DecoderMethod = "DecodeFMem2";
728   let mayStore = 1;
729 }
730
731 // COP3 Load/Store
732 class LW_FT3<string opstr, RegisterOperand RC, InstrItinClass Itin,
733              SDPatternOperator OpNode= null_frag> :
734   InstSE<(outs RC:$rt), (ins mem:$addr), !strconcat(opstr, "\t$rt, $addr"),
735          [(set RC:$rt, (OpNode addrDefault:$addr))], Itin, FrmFI, opstr> {
736   let DecoderMethod = "DecodeFMem3";
737   let mayLoad = 1;
738 }
739
740 class SW_FT3<string opstr, RegisterOperand RC, InstrItinClass Itin,
741              SDPatternOperator OpNode= null_frag> :
742   InstSE<(outs), (ins RC:$rt, mem:$addr), !strconcat(opstr, "\t$rt, $addr"),
743          [(OpNode RC:$rt, addrDefault:$addr)], Itin, FrmFI, opstr> {
744   let DecoderMethod = "DecodeFMem3";
745   let mayStore = 1;
746 }
747
748 // Conditional Branch
749 class CBranch<string opstr, DAGOperand opnd, PatFrag cond_op,
750               RegisterOperand RO, bit DelaySlot = 1> :
751   InstSE<(outs), (ins RO:$rs, RO:$rt, opnd:$offset),
752          !strconcat(opstr, "\t$rs, $rt, $offset"),
753          [(brcond (i32 (cond_op RO:$rs, RO:$rt)), bb:$offset)], IIBranch,
754          FrmI, opstr> {
755   let isBranch = 1;
756   let isTerminator = 1;
757   let hasDelaySlot = DelaySlot;
758   let Defs = [AT];
759 }
760
761 class CBranchZero<string opstr, DAGOperand opnd, PatFrag cond_op,
762                   RegisterOperand RO, bit DelaySlot = 1> :
763   InstSE<(outs), (ins RO:$rs, opnd:$offset),
764          !strconcat(opstr, "\t$rs, $offset"),
765          [(brcond (i32 (cond_op RO:$rs, 0)), bb:$offset)], IIBranch,
766          FrmI, opstr> {
767   let isBranch = 1;
768   let isTerminator = 1;
769   let hasDelaySlot = DelaySlot;
770   let Defs = [AT];
771 }
772
773 // SetCC
774 class SetCC_R<string opstr, PatFrag cond_op, RegisterOperand RO> :
775   InstSE<(outs GPR32Opnd:$rd), (ins RO:$rs, RO:$rt),
776          !strconcat(opstr, "\t$rd, $rs, $rt"),
777          [(set GPR32Opnd:$rd, (cond_op RO:$rs, RO:$rt))],
778          II_SLT_SLTU, FrmR, opstr>;
779
780 class SetCC_I<string opstr, PatFrag cond_op, Operand Od, PatLeaf imm_type,
781               RegisterOperand RO>:
782   InstSE<(outs GPR32Opnd:$rt), (ins RO:$rs, Od:$imm16),
783          !strconcat(opstr, "\t$rt, $rs, $imm16"),
784          [(set GPR32Opnd:$rt, (cond_op RO:$rs, imm_type:$imm16))],
785          II_SLTI_SLTIU, FrmI, opstr>;
786
787 // Jump
788 class JumpFJ<DAGOperand opnd, string opstr, SDPatternOperator operator,
789              SDPatternOperator targetoperator, string bopstr> :
790   InstSE<(outs), (ins opnd:$target), !strconcat(opstr, "\t$target"),
791          [(operator targetoperator:$target)], IIBranch, FrmJ, bopstr> {
792   let isTerminator=1;
793   let isBarrier=1;
794   let hasDelaySlot = 1;
795   let DecoderMethod = "DecodeJumpTarget";
796   let Defs = [AT];
797 }
798
799 // Unconditional branch
800 class UncondBranch<Instruction BEQInst> :
801   PseudoSE<(outs), (ins brtarget:$offset), [(br bb:$offset)], IIBranch>,
802   PseudoInstExpansion<(BEQInst ZERO, ZERO, brtarget:$offset)> {
803   let isBranch = 1;
804   let isTerminator = 1;
805   let isBarrier = 1;
806   let hasDelaySlot = 1;
807   let AdditionalPredicates = [RelocPIC];
808   let Defs = [AT];
809 }
810
811 // Base class for indirect branch and return instruction classes.
812 let isTerminator=1, isBarrier=1, hasDelaySlot = 1 in
813 class JumpFR<string opstr, RegisterOperand RO,
814              SDPatternOperator operator = null_frag>:
815   InstSE<(outs), (ins RO:$rs), "jr\t$rs", [(operator RO:$rs)], IIBranch,
816          FrmR, opstr>;
817
818 // Indirect branch
819 class IndirectBranch<string opstr, RegisterOperand RO> : JumpFR<opstr, RO> {
820   let isBranch = 1;
821   let isIndirectBranch = 1;
822 }
823
824 // Jump and Link (Call)
825 let isCall=1, hasDelaySlot=1, Defs = [RA] in {
826   class JumpLink<string opstr, DAGOperand opnd> :
827     InstSE<(outs), (ins opnd:$target), !strconcat(opstr, "\t$target"),
828            [(MipsJmpLink imm:$target)], IIBranch, FrmJ, opstr> {
829     let DecoderMethod = "DecodeJumpTarget";
830   }
831
832   class JumpLinkRegPseudo<RegisterOperand RO, Instruction JALRInst,
833                           Register RetReg, RegisterOperand ResRO = RO>:
834     PseudoSE<(outs), (ins RO:$rs), [(MipsJmpLink RO:$rs)], IIBranch>,
835     PseudoInstExpansion<(JALRInst RetReg, ResRO:$rs)>;
836
837   class JumpLinkReg<string opstr, RegisterOperand RO>:
838     InstSE<(outs RO:$rd), (ins RO:$rs), !strconcat(opstr, "\t$rd, $rs"),
839            [], IIBranch, FrmR>;
840
841   class BGEZAL_FT<string opstr, DAGOperand opnd,
842                   RegisterOperand RO, bit DelaySlot = 1> :
843     InstSE<(outs), (ins RO:$rs, opnd:$offset),
844            !strconcat(opstr, "\t$rs, $offset"), [], IIBranch, FrmI, opstr> {
845     let hasDelaySlot = DelaySlot;
846   }
847
848 }
849
850 let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, hasDelaySlot = 1,
851     hasExtraSrcRegAllocReq = 1, Defs = [AT] in {
852   class TailCall<Instruction JumpInst> :
853     PseudoSE<(outs), (ins calltarget:$target), [], IIBranch>,
854     PseudoInstExpansion<(JumpInst jmptarget:$target)>;
855
856   class TailCallReg<RegisterOperand RO, Instruction JRInst,
857                     RegisterOperand ResRO = RO> :
858     PseudoSE<(outs), (ins RO:$rs), [(MipsTailCall RO:$rs)], IIBranch>,
859     PseudoInstExpansion<(JRInst ResRO:$rs)>;
860 }
861
862 class BAL_BR_Pseudo<Instruction RealInst> :
863   PseudoSE<(outs), (ins brtarget:$offset), [], IIBranch>,
864   PseudoInstExpansion<(RealInst ZERO, brtarget:$offset)> {
865   let isBranch = 1;
866   let isTerminator = 1;
867   let isBarrier = 1;
868   let hasDelaySlot = 1;
869   let Defs = [RA];
870 }
871
872 // Syscall
873 class SYS_FT<string opstr> :
874   InstSE<(outs), (ins uimm20:$code_),
875          !strconcat(opstr, "\t$code_"), [], NoItinerary, FrmI, opstr>;
876 // Break
877 class BRK_FT<string opstr> :
878   InstSE<(outs), (ins uimm10:$code_1, uimm10:$code_2),
879          !strconcat(opstr, "\t$code_1, $code_2"), [], NoItinerary,
880          FrmOther, opstr>;
881
882 // (D)Eret
883 class ER_FT<string opstr> :
884   InstSE<(outs), (ins),
885          opstr, [], NoItinerary, FrmOther, opstr>;
886
887 // Interrupts
888 class DEI_FT<string opstr, RegisterOperand RO> :
889   InstSE<(outs RO:$rt), (ins),
890          !strconcat(opstr, "\t$rt"), [], NoItinerary, FrmOther, opstr>;
891
892 // Wait
893 class WAIT_FT<string opstr> :
894   InstSE<(outs), (ins), opstr, [], NoItinerary, FrmOther, opstr>;
895
896 // Sync
897 let hasSideEffects = 1 in
898 class SYNC_FT<string opstr> :
899   InstSE<(outs), (ins i32imm:$stype), "sync $stype", [(MipsSync imm:$stype)],
900          NoItinerary, FrmOther, opstr>;
901
902 class SYNCI_FT<string opstr> :
903   InstSE<(outs), (ins mem_simm16:$addr), !strconcat(opstr, "\t$addr"), [],
904          NoItinerary, FrmOther, opstr> {
905   let hasSideEffects = 1;
906   let DecoderMethod = "DecodeSyncI";
907 }
908
909 let hasSideEffects = 1 in
910 class TEQ_FT<string opstr, RegisterOperand RO> :
911   InstSE<(outs), (ins RO:$rs, RO:$rt, uimm16:$code_),
912          !strconcat(opstr, "\t$rs, $rt, $code_"), [], NoItinerary,
913          FrmI, opstr>;
914
915 class TEQI_FT<string opstr, RegisterOperand RO> :
916   InstSE<(outs), (ins RO:$rs, uimm16:$imm16),
917          !strconcat(opstr, "\t$rs, $imm16"), [], NoItinerary, FrmOther, opstr>;
918 // Mul, Div
919 class Mult<string opstr, InstrItinClass itin, RegisterOperand RO,
920            list<Register> DefRegs> :
921   InstSE<(outs), (ins RO:$rs, RO:$rt), !strconcat(opstr, "\t$rs, $rt"), [],
922          itin, FrmR, opstr> {
923   let isCommutable = 1;
924   let Defs = DefRegs;
925   let hasSideEffects = 0;
926 }
927
928 // Pseudo multiply/divide instruction with explicit accumulator register
929 // operands.
930 class MultDivPseudo<Instruction RealInst, RegisterClass R0, RegisterOperand R1,
931                     SDPatternOperator OpNode, InstrItinClass Itin,
932                     bit IsComm = 1, bit HasSideEffects = 0,
933                     bit UsesCustomInserter = 0> :
934   PseudoSE<(outs R0:$ac), (ins R1:$rs, R1:$rt),
935            [(set R0:$ac, (OpNode R1:$rs, R1:$rt))], Itin>,
936   PseudoInstExpansion<(RealInst R1:$rs, R1:$rt)> {
937   let isCommutable = IsComm;
938   let hasSideEffects = HasSideEffects;
939   let usesCustomInserter = UsesCustomInserter;
940 }
941
942 // Pseudo multiply add/sub instruction with explicit accumulator register
943 // operands.
944 class MAddSubPseudo<Instruction RealInst, SDPatternOperator OpNode,
945                     InstrItinClass itin>
946   : PseudoSE<(outs ACC64:$ac),
947              (ins GPR32Opnd:$rs, GPR32Opnd:$rt, ACC64:$acin),
948              [(set ACC64:$ac,
949               (OpNode GPR32Opnd:$rs, GPR32Opnd:$rt, ACC64:$acin))],
950              itin>,
951     PseudoInstExpansion<(RealInst GPR32Opnd:$rs, GPR32Opnd:$rt)> {
952   string Constraints = "$acin = $ac";
953 }
954
955 class Div<string opstr, InstrItinClass itin, RegisterOperand RO,
956           list<Register> DefRegs> :
957   InstSE<(outs), (ins RO:$rs, RO:$rt), !strconcat(opstr, "\t$$zero, $rs, $rt"),
958          [], itin, FrmR, opstr> {
959   let Defs = DefRegs;
960 }
961
962 // Move from Hi/Lo
963 class PseudoMFLOHI<RegisterClass DstRC, RegisterClass SrcRC, SDNode OpNode>
964   : PseudoSE<(outs DstRC:$rd), (ins SrcRC:$hilo),
965              [(set DstRC:$rd, (OpNode SrcRC:$hilo))], II_MFHI_MFLO>;
966
967 class MoveFromLOHI<string opstr, RegisterOperand RO, Register UseReg>:
968   InstSE<(outs RO:$rd), (ins), !strconcat(opstr, "\t$rd"), [], II_MFHI_MFLO,
969          FrmR, opstr> {
970   let Uses = [UseReg];
971   let hasSideEffects = 0;
972 }
973
974 class PseudoMTLOHI<RegisterClass DstRC, RegisterClass SrcRC>
975   : PseudoSE<(outs DstRC:$lohi), (ins SrcRC:$lo, SrcRC:$hi),
976              [(set DstRC:$lohi, (MipsMTLOHI SrcRC:$lo, SrcRC:$hi))],
977              II_MTHI_MTLO>;
978
979 class MoveToLOHI<string opstr, RegisterOperand RO, list<Register> DefRegs>:
980   InstSE<(outs), (ins RO:$rs), !strconcat(opstr, "\t$rs"), [], II_MTHI_MTLO,
981   FrmR, opstr> {
982   let Defs = DefRegs;
983   let hasSideEffects = 0;
984 }
985
986 class EffectiveAddress<string opstr, RegisterOperand RO> :
987   InstSE<(outs RO:$rt), (ins mem_ea:$addr), !strconcat(opstr, "\t$rt, $addr"),
988          [(set RO:$rt, addr:$addr)], NoItinerary, FrmI,
989          !strconcat(opstr, "_lea")> {
990   let isCodeGenOnly = 1;
991   let DecoderMethod = "DecodeMem";
992 }
993
994 // Count Leading Ones/Zeros in Word
995 class CountLeading0<string opstr, RegisterOperand RO>:
996   InstSE<(outs RO:$rd), (ins RO:$rs), !strconcat(opstr, "\t$rd, $rs"),
997          [(set RO:$rd, (ctlz RO:$rs))], II_CLZ, FrmR, opstr>;
998
999 class CountLeading1<string opstr, RegisterOperand RO>:
1000   InstSE<(outs RO:$rd), (ins RO:$rs), !strconcat(opstr, "\t$rd, $rs"),
1001          [(set RO:$rd, (ctlz (not RO:$rs)))], II_CLO, FrmR, opstr>;
1002
1003 // Sign Extend in Register.
1004 class SignExtInReg<string opstr, ValueType vt, RegisterOperand RO,
1005                    InstrItinClass itin> :
1006   InstSE<(outs RO:$rd), (ins RO:$rt), !strconcat(opstr, "\t$rd, $rt"),
1007          [(set RO:$rd, (sext_inreg RO:$rt, vt))], itin, FrmR, opstr>;
1008
1009 // Subword Swap
1010 class SubwordSwap<string opstr, RegisterOperand RO>:
1011   InstSE<(outs RO:$rd), (ins RO:$rt), !strconcat(opstr, "\t$rd, $rt"), [],
1012          NoItinerary, FrmR, opstr> {
1013   let hasSideEffects = 0;
1014 }
1015
1016 // Read Hardware
1017 class ReadHardware<RegisterOperand CPURegOperand, RegisterOperand RO> :
1018   InstSE<(outs CPURegOperand:$rt), (ins RO:$rd), "rdhwr\t$rt, $rd", [],
1019          II_RDHWR, FrmR, "rdhwr">;
1020
1021 // Ext and Ins
1022 class ExtBase<string opstr, RegisterOperand RO, Operand PosOpnd,
1023               SDPatternOperator Op = null_frag>:
1024   InstSE<(outs RO:$rt), (ins RO:$rs, PosOpnd:$pos, size_ext:$size),
1025          !strconcat(opstr, " $rt, $rs, $pos, $size"),
1026          [(set RO:$rt, (Op RO:$rs, imm:$pos, imm:$size))], II_EXT,
1027          FrmR, opstr>, ISA_MIPS32R2;
1028
1029 class InsBase<string opstr, RegisterOperand RO, Operand PosOpnd,
1030               SDPatternOperator Op = null_frag>:
1031   InstSE<(outs RO:$rt), (ins RO:$rs, PosOpnd:$pos, size_ins:$size, RO:$src),
1032          !strconcat(opstr, " $rt, $rs, $pos, $size"),
1033          [(set RO:$rt, (Op RO:$rs, imm:$pos, imm:$size, RO:$src))],
1034          II_INS, FrmR, opstr>, ISA_MIPS32R2 {
1035   let Constraints = "$src = $rt";
1036 }
1037
1038 // Atomic instructions with 2 source operands (ATOMIC_SWAP & ATOMIC_LOAD_*).
1039 class Atomic2Ops<PatFrag Op, RegisterClass DRC> :
1040   PseudoSE<(outs DRC:$dst), (ins PtrRC:$ptr, DRC:$incr),
1041            [(set DRC:$dst, (Op iPTR:$ptr, DRC:$incr))]>;
1042
1043 // Atomic Compare & Swap.
1044 class AtomicCmpSwap<PatFrag Op, RegisterClass DRC> :
1045   PseudoSE<(outs DRC:$dst), (ins PtrRC:$ptr, DRC:$cmp, DRC:$swap),
1046            [(set DRC:$dst, (Op iPTR:$ptr, DRC:$cmp, DRC:$swap))]>;
1047
1048 class LLBase<string opstr, RegisterOperand RO> :
1049   InstSE<(outs RO:$rt), (ins mem:$addr), !strconcat(opstr, "\t$rt, $addr"),
1050          [], NoItinerary, FrmI> {
1051   let DecoderMethod = "DecodeMem";
1052   let mayLoad = 1;
1053 }
1054
1055 class SCBase<string opstr, RegisterOperand RO> :
1056   InstSE<(outs RO:$dst), (ins RO:$rt, mem:$addr),
1057          !strconcat(opstr, "\t$rt, $addr"), [], NoItinerary, FrmI> {
1058   let DecoderMethod = "DecodeMem";
1059   let mayStore = 1;
1060   let Constraints = "$rt = $dst";
1061 }
1062
1063 class MFC3OP<string asmstr, RegisterOperand RO, RegisterOperand RD> :
1064   InstSE<(outs RO:$rt), (ins RD:$rd, uimm16:$sel),
1065          !strconcat(asmstr, "\t$rt, $rd, $sel"), [], NoItinerary, FrmFR>;
1066
1067 class MTC3OP<string asmstr, RegisterOperand RO, RegisterOperand RD> :
1068   InstSE<(outs RO:$rd), (ins RD:$rt, uimm16:$sel),
1069          !strconcat(asmstr, "\t$rt, $rd, $sel"), [], NoItinerary, FrmFR>;
1070
1071 class TrapBase<Instruction RealInst>
1072   : PseudoSE<(outs), (ins), [(trap)], NoItinerary>,
1073     PseudoInstExpansion<(RealInst 0, 0)> {
1074   let isBarrier = 1;
1075   let isTerminator = 1;
1076   let isCodeGenOnly = 1;
1077 }
1078
1079 //===----------------------------------------------------------------------===//
1080 // Pseudo instructions
1081 //===----------------------------------------------------------------------===//
1082
1083 // Return RA.
1084 let isReturn=1, isTerminator=1, hasDelaySlot=1, isBarrier=1, hasCtrlDep=1 in
1085 def RetRA : PseudoSE<(outs), (ins), [(MipsRet)]>;
1086
1087 let Defs = [SP], Uses = [SP], hasSideEffects = 1 in {
1088 def ADJCALLSTACKDOWN : MipsPseudo<(outs), (ins i32imm:$amt),
1089                                   [(callseq_start timm:$amt)]>;
1090 def ADJCALLSTACKUP   : MipsPseudo<(outs), (ins i32imm:$amt1, i32imm:$amt2),
1091                                   [(callseq_end timm:$amt1, timm:$amt2)]>;
1092 }
1093
1094 let usesCustomInserter = 1 in {
1095   def ATOMIC_LOAD_ADD_I8   : Atomic2Ops<atomic_load_add_8, GPR32>;
1096   def ATOMIC_LOAD_ADD_I16  : Atomic2Ops<atomic_load_add_16, GPR32>;
1097   def ATOMIC_LOAD_ADD_I32  : Atomic2Ops<atomic_load_add_32, GPR32>;
1098   def ATOMIC_LOAD_SUB_I8   : Atomic2Ops<atomic_load_sub_8, GPR32>;
1099   def ATOMIC_LOAD_SUB_I16  : Atomic2Ops<atomic_load_sub_16, GPR32>;
1100   def ATOMIC_LOAD_SUB_I32  : Atomic2Ops<atomic_load_sub_32, GPR32>;
1101   def ATOMIC_LOAD_AND_I8   : Atomic2Ops<atomic_load_and_8, GPR32>;
1102   def ATOMIC_LOAD_AND_I16  : Atomic2Ops<atomic_load_and_16, GPR32>;
1103   def ATOMIC_LOAD_AND_I32  : Atomic2Ops<atomic_load_and_32, GPR32>;
1104   def ATOMIC_LOAD_OR_I8    : Atomic2Ops<atomic_load_or_8, GPR32>;
1105   def ATOMIC_LOAD_OR_I16   : Atomic2Ops<atomic_load_or_16, GPR32>;
1106   def ATOMIC_LOAD_OR_I32   : Atomic2Ops<atomic_load_or_32, GPR32>;
1107   def ATOMIC_LOAD_XOR_I8   : Atomic2Ops<atomic_load_xor_8, GPR32>;
1108   def ATOMIC_LOAD_XOR_I16  : Atomic2Ops<atomic_load_xor_16, GPR32>;
1109   def ATOMIC_LOAD_XOR_I32  : Atomic2Ops<atomic_load_xor_32, GPR32>;
1110   def ATOMIC_LOAD_NAND_I8  : Atomic2Ops<atomic_load_nand_8, GPR32>;
1111   def ATOMIC_LOAD_NAND_I16 : Atomic2Ops<atomic_load_nand_16, GPR32>;
1112   def ATOMIC_LOAD_NAND_I32 : Atomic2Ops<atomic_load_nand_32, GPR32>;
1113
1114   def ATOMIC_SWAP_I8       : Atomic2Ops<atomic_swap_8, GPR32>;
1115   def ATOMIC_SWAP_I16      : Atomic2Ops<atomic_swap_16, GPR32>;
1116   def ATOMIC_SWAP_I32      : Atomic2Ops<atomic_swap_32, GPR32>;
1117
1118   def ATOMIC_CMP_SWAP_I8   : AtomicCmpSwap<atomic_cmp_swap_8, GPR32>;
1119   def ATOMIC_CMP_SWAP_I16  : AtomicCmpSwap<atomic_cmp_swap_16, GPR32>;
1120   def ATOMIC_CMP_SWAP_I32  : AtomicCmpSwap<atomic_cmp_swap_32, GPR32>;
1121 }
1122
1123 /// Pseudo instructions for loading and storing accumulator registers.
1124 let isPseudo = 1, isCodeGenOnly = 1 in {
1125   def LOAD_ACC64  : Load<"", ACC64>;
1126   def STORE_ACC64 : Store<"", ACC64>;
1127 }
1128
1129 // We need these two pseudo instructions to avoid offset calculation for long
1130 // branches.  See the comment in file MipsLongBranch.cpp for detailed
1131 // explanation.
1132
1133 // Expands to: lui $dst, %hi($tgt - $baltgt)
1134 def LONG_BRANCH_LUi : PseudoSE<(outs GPR32Opnd:$dst),
1135   (ins brtarget:$tgt, brtarget:$baltgt), []>;
1136
1137 // Expands to: addiu $dst, $src, %lo($tgt - $baltgt)
1138 def LONG_BRANCH_ADDiu : PseudoSE<(outs GPR32Opnd:$dst),
1139   (ins GPR32Opnd:$src, brtarget:$tgt, brtarget:$baltgt), []>;
1140
1141 //===----------------------------------------------------------------------===//
1142 // Instruction definition
1143 //===----------------------------------------------------------------------===//
1144 //===----------------------------------------------------------------------===//
1145 // MipsI Instructions
1146 //===----------------------------------------------------------------------===//
1147
1148 /// Arithmetic Instructions (ALU Immediate)
1149 let AdditionalPredicates = [NotInMicroMips] in {
1150 def ADDiu : MMRel, StdMMR6Rel, ArithLogicI<"addiu", simm16, GPR32Opnd,
1151                                            II_ADDIU, immSExt16, add>,
1152             ADDI_FM<0x9>, IsAsCheapAsAMove;
1153 }
1154 def ADDi  : MMRel, ArithLogicI<"addi", simm16, GPR32Opnd>, ADDI_FM<0x8>,
1155             ISA_MIPS1_NOT_32R6_64R6;
1156 def SLTi  : MMRel, SetCC_I<"slti", setlt, simm16, immSExt16, GPR32Opnd>,
1157             SLTI_FM<0xa>;
1158 def SLTiu : MMRel, SetCC_I<"sltiu", setult, simm16, immSExt16, GPR32Opnd>,
1159             SLTI_FM<0xb>;
1160 let AdditionalPredicates = [NotInMicroMips] in {
1161 def ANDi  : MMRel, StdMMR6Rel,
1162             ArithLogicI<"andi", uimm16, GPR32Opnd, II_ANDI, immZExt16, and>,
1163             ADDI_FM<0xc>;
1164 }
1165 def ORi   : MMRel, StdMMR6Rel,
1166             ArithLogicI<"ori", uimm16, GPR32Opnd, II_ORI, immZExt16, or>,
1167             ADDI_FM<0xd>;
1168 def XORi  : MMRel, StdMMR6Rel,
1169             ArithLogicI<"xori", uimm16, GPR32Opnd, II_XORI, immZExt16, xor>,
1170             ADDI_FM<0xe>;
1171 def LUi   : MMRel, LoadUpper<"lui", GPR32Opnd, uimm16>, LUI_FM;
1172 let AdditionalPredicates = [NotInMicroMips] in {
1173 /// Arithmetic Instructions (3-Operand, R-Type)
1174 def ADDu  : MMRel, StdMMR6Rel, ArithLogicR<"addu", GPR32Opnd, 1, II_ADDU, add>,
1175             ADD_FM<0, 0x21>;
1176 def SUBu  : MMRel, ArithLogicR<"subu", GPR32Opnd, 0, II_SUBU, sub>,
1177             ADD_FM<0, 0x23>;
1178 }
1179 let Defs = [HI0, LO0] in
1180 def MUL   : MMRel, ArithLogicR<"mul", GPR32Opnd, 1, II_MUL, mul>,
1181             ADD_FM<0x1c, 2>, ISA_MIPS32_NOT_32R6_64R6;
1182 def ADD   : MMRel, StdMMR6Rel, ArithLogicR<"add", GPR32Opnd>, ADD_FM<0, 0x20>;
1183 def SUB   : MMRel, ArithLogicR<"sub", GPR32Opnd>, ADD_FM<0, 0x22>;
1184 def SLT   : MMRel, SetCC_R<"slt", setlt, GPR32Opnd>, ADD_FM<0, 0x2a>;
1185 def SLTu  : MMRel, SetCC_R<"sltu", setult, GPR32Opnd>, ADD_FM<0, 0x2b>;
1186 let AdditionalPredicates = [NotInMicroMips] in {
1187 def AND   : MMRel, StdMMR6Rel, ArithLogicR<"and", GPR32Opnd, 1, II_AND, and>,
1188             ADD_FM<0, 0x24>;
1189 def OR    : MMRel, StdMMR6Rel, ArithLogicR<"or", GPR32Opnd, 1, II_OR, or>,
1190             ADD_FM<0, 0x25>;
1191 def XOR   : MMRel, StdMMR6Rel, ArithLogicR<"xor", GPR32Opnd, 1, II_XOR, xor>,
1192             ADD_FM<0, 0x26>;
1193 }
1194 def NOR   : MMRel, StdMMR6Rel, LogicNOR<"nor", GPR32Opnd>, ADD_FM<0, 0x27>;
1195
1196 /// Shift Instructions
1197 let AdditionalPredicates = [NotInMicroMips] in {
1198 def SLL  : MMRel, shift_rotate_imm<"sll", uimm5, GPR32Opnd, II_SLL, shl,
1199                                    immZExt5>, SRA_FM<0, 0>;
1200 def SRL  : MMRel, shift_rotate_imm<"srl", uimm5, GPR32Opnd, II_SRL, srl,
1201                                    immZExt5>, SRA_FM<2, 0>;
1202 }
1203 def SRA  : MMRel, shift_rotate_imm<"sra", uimm5, GPR32Opnd, II_SRA, sra,
1204                                    immZExt5>, SRA_FM<3, 0>;
1205 def SLLV : MMRel, shift_rotate_reg<"sllv", GPR32Opnd, II_SLLV, shl>,
1206            SRLV_FM<4, 0>;
1207 def SRLV : MMRel, shift_rotate_reg<"srlv", GPR32Opnd, II_SRLV, srl>,
1208            SRLV_FM<6, 0>;
1209 def SRAV : MMRel, shift_rotate_reg<"srav", GPR32Opnd, II_SRAV, sra>,
1210            SRLV_FM<7, 0>;
1211
1212 // Rotate Instructions
1213 def ROTR  : MMRel, shift_rotate_imm<"rotr", uimm5, GPR32Opnd, II_ROTR, rotr,
1214                                     immZExt5>,
1215             SRA_FM<2, 1>, ISA_MIPS32R2;
1216 def ROTRV : MMRel, shift_rotate_reg<"rotrv", GPR32Opnd, II_ROTRV, rotr>,
1217             SRLV_FM<6, 1>, ISA_MIPS32R2;
1218
1219 /// Load and Store Instructions
1220 ///  aligned
1221 def LB  : Load<"lb", GPR32Opnd, sextloadi8, II_LB>, MMRel, LW_FM<0x20>;
1222 def LBu : Load<"lbu", GPR32Opnd, zextloadi8, II_LBU, addrDefault>, MMRel,
1223           LW_FM<0x24>;
1224 def LH  : Load<"lh", GPR32Opnd, sextloadi16, II_LH, addrDefault>, MMRel,
1225           LW_FM<0x21>;
1226 def LHu : Load<"lhu", GPR32Opnd, zextloadi16, II_LHU>, MMRel, LW_FM<0x25>;
1227 let AdditionalPredicates = [NotInMicroMips] in {
1228 def LW  : Load<"lw", GPR32Opnd, load, II_LW, addrDefault>, MMRel,
1229           LW_FM<0x23>;
1230 }
1231 def SB  : Store<"sb", GPR32Opnd, truncstorei8, II_SB>, MMRel, LW_FM<0x28>;
1232 def SH  : Store<"sh", GPR32Opnd, truncstorei16, II_SH>, MMRel, LW_FM<0x29>;
1233 let AdditionalPredicates = [NotInMicroMips] in {
1234 def SW  : Store<"sw", GPR32Opnd, store, II_SW>, MMRel, LW_FM<0x2b>;
1235 }
1236
1237 /// load/store left/right
1238 let EncodingPredicates = []<Predicate>, // FIXME: Lack of HasStdEnc is probably a bug
1239     AdditionalPredicates = [NotInMicroMips] in {
1240 def LWL : LoadLeftRight<"lwl", MipsLWL, GPR32Opnd, II_LWL>, LW_FM<0x22>,
1241           ISA_MIPS1_NOT_32R6_64R6;
1242 def LWR : LoadLeftRight<"lwr", MipsLWR, GPR32Opnd, II_LWR>, LW_FM<0x26>,
1243           ISA_MIPS1_NOT_32R6_64R6;
1244 def SWL : StoreLeftRight<"swl", MipsSWL, GPR32Opnd, II_SWL>, LW_FM<0x2a>,
1245           ISA_MIPS1_NOT_32R6_64R6;
1246 def SWR : StoreLeftRight<"swr", MipsSWR, GPR32Opnd, II_SWR>, LW_FM<0x2e>,
1247           ISA_MIPS1_NOT_32R6_64R6;
1248 }
1249
1250 let AdditionalPredicates = [NotInMicroMips] in {
1251 // COP2 Memory Instructions
1252 def LWC2 : LW_FT2<"lwc2", COP2Opnd, NoItinerary, load>, LW_FM<0x32>,
1253            ISA_MIPS1_NOT_32R6_64R6;
1254 def SWC2 : SW_FT2<"swc2", COP2Opnd, NoItinerary, store>, LW_FM<0x3a>,
1255            ISA_MIPS1_NOT_32R6_64R6;
1256 def LDC2 : LW_FT2<"ldc2", COP2Opnd, NoItinerary, load>, LW_FM<0x36>,
1257            ISA_MIPS2_NOT_32R6_64R6;
1258 def SDC2 : SW_FT2<"sdc2", COP2Opnd, NoItinerary, store>, LW_FM<0x3e>,
1259            ISA_MIPS2_NOT_32R6_64R6;
1260
1261 // COP3 Memory Instructions
1262 let DecoderNamespace = "COP3_" in {
1263   def LWC3 : LW_FT3<"lwc3", COP3Opnd, NoItinerary, load>, LW_FM<0x33>;
1264   def SWC3 : SW_FT3<"swc3", COP3Opnd, NoItinerary, store>, LW_FM<0x3b>;
1265   def LDC3 : LW_FT3<"ldc3", COP3Opnd, NoItinerary, load>, LW_FM<0x37>,
1266              ISA_MIPS2;
1267   def SDC3 : SW_FT3<"sdc3", COP3Opnd, NoItinerary, store>, LW_FM<0x3f>,
1268              ISA_MIPS2;
1269 }
1270 }
1271
1272 def SYNC : MMRel, SYNC_FT<"sync">, SYNC_FM, ISA_MIPS32;
1273 def SYNCI : MMRel, SYNCI_FT<"synci">, SYNCI_FM, ISA_MIPS32R2;
1274
1275 def TEQ : MMRel, TEQ_FT<"teq", GPR32Opnd>, TEQ_FM<0x34>, ISA_MIPS2;
1276 def TGE : MMRel, TEQ_FT<"tge", GPR32Opnd>, TEQ_FM<0x30>, ISA_MIPS2;
1277 def TGEU : MMRel, TEQ_FT<"tgeu", GPR32Opnd>, TEQ_FM<0x31>, ISA_MIPS2;
1278 def TLT : MMRel, TEQ_FT<"tlt", GPR32Opnd>, TEQ_FM<0x32>, ISA_MIPS2;
1279 def TLTU : MMRel, TEQ_FT<"tltu", GPR32Opnd>, TEQ_FM<0x33>, ISA_MIPS2;
1280 def TNE : MMRel, TEQ_FT<"tne", GPR32Opnd>, TEQ_FM<0x36>, ISA_MIPS2;
1281
1282 def TEQI : MMRel, TEQI_FT<"teqi", GPR32Opnd>, TEQI_FM<0xc>,
1283            ISA_MIPS2_NOT_32R6_64R6;
1284 def TGEI : MMRel, TEQI_FT<"tgei", GPR32Opnd>, TEQI_FM<0x8>,
1285            ISA_MIPS2_NOT_32R6_64R6;
1286 def TGEIU : MMRel, TEQI_FT<"tgeiu", GPR32Opnd>, TEQI_FM<0x9>,
1287            ISA_MIPS2_NOT_32R6_64R6;
1288 def TLTI : MMRel, TEQI_FT<"tlti", GPR32Opnd>, TEQI_FM<0xa>,
1289            ISA_MIPS2_NOT_32R6_64R6;
1290 def TTLTIU : MMRel, TEQI_FT<"tltiu", GPR32Opnd>, TEQI_FM<0xb>,
1291            ISA_MIPS2_NOT_32R6_64R6;
1292 def TNEI : MMRel, TEQI_FT<"tnei", GPR32Opnd>, TEQI_FM<0xe>,
1293            ISA_MIPS2_NOT_32R6_64R6;
1294
1295 let AdditionalPredicates = [NotInMicroMips] in {
1296 def BREAK : MMRel, StdMMR6Rel, BRK_FT<"break">, BRK_FM<0xd>;
1297 }
1298 def SYSCALL : MMRel, SYS_FT<"syscall">, SYS_FM<0xc>;
1299 def TRAP : TrapBase<BREAK>;
1300 def SDBBP : MMRel, SYS_FT<"sdbbp">, SDBBP_FM, ISA_MIPS32_NOT_32R6_64R6;
1301
1302 let AdditionalPredicates = [NotInMicroMips] in {
1303 def ERET : MMRel, ER_FT<"eret">, ER_FM<0x18, 0x0>, INSN_MIPS3_32;
1304 def ERETNC : MMRel, ER_FT<"eretnc">, ER_FM<0x18, 0x1>, ISA_MIPS32R5;
1305 }
1306 def DERET : MMRel, ER_FT<"deret">, ER_FM<0x1f, 0x0>, ISA_MIPS32;
1307
1308 let AdditionalPredicates = [NotInMicroMips] in {
1309 def EI : MMRel, StdMMR6Rel, DEI_FT<"ei", GPR32Opnd>, EI_FM<1>, ISA_MIPS32R2;
1310 }
1311 def DI : MMRel, DEI_FT<"di", GPR32Opnd>, EI_FM<0>, ISA_MIPS32R2;
1312
1313 let EncodingPredicates = []<Predicate>, // FIXME: Lack of HasStdEnc is probably a bug
1314     AdditionalPredicates = [NotInMicroMips] in {
1315 def WAIT : WAIT_FT<"wait">, WAIT_FM;
1316
1317 /// Load-linked, Store-conditional
1318 def LL : LLBase<"ll", GPR32Opnd>, LW_FM<0x30>, ISA_MIPS2_NOT_32R6_64R6;
1319 def SC : SCBase<"sc", GPR32Opnd>, LW_FM<0x38>, ISA_MIPS2_NOT_32R6_64R6;
1320 }
1321
1322 /// Jump and Branch Instructions
1323 def J       : MMRel, JumpFJ<jmptarget, "j", br, bb, "j">, FJ<2>,
1324               AdditionalRequires<[RelocStatic]>, IsBranch;
1325 def JR      : MMRel, IndirectBranch<"jr", GPR32Opnd>, MTLO_FM<8>;
1326 def BEQ     : MMRel, CBranch<"beq", brtarget, seteq, GPR32Opnd>, BEQ_FM<4>;
1327 def BEQL    : MMRel, CBranch<"beql", brtarget, seteq, GPR32Opnd, 0>,
1328               BEQ_FM<20>, ISA_MIPS2_NOT_32R6_64R6;
1329 def BNE     : MMRel, CBranch<"bne", brtarget, setne, GPR32Opnd>, BEQ_FM<5>;
1330 def BNEL    : MMRel, CBranch<"bnel", brtarget, setne, GPR32Opnd, 0>,
1331               BEQ_FM<21>, ISA_MIPS2_NOT_32R6_64R6;
1332 def BGEZ    : MMRel, CBranchZero<"bgez", brtarget, setge, GPR32Opnd>,
1333               BGEZ_FM<1, 1>;
1334 def BGEZL   : MMRel, CBranchZero<"bgezl", brtarget, setge, GPR32Opnd, 0>,
1335               BGEZ_FM<1, 3>, ISA_MIPS2_NOT_32R6_64R6;
1336 def BGTZ    : MMRel, CBranchZero<"bgtz", brtarget, setgt, GPR32Opnd>,
1337               BGEZ_FM<7, 0>;
1338 def BGTZL   : MMRel, CBranchZero<"bgtzl", brtarget, setgt, GPR32Opnd, 0>,
1339               BGEZ_FM<23, 0>, ISA_MIPS2_NOT_32R6_64R6;
1340 def BLEZ    : MMRel, CBranchZero<"blez", brtarget, setle, GPR32Opnd>,
1341               BGEZ_FM<6, 0>;
1342 def BLEZL   : MMRel, CBranchZero<"blezl", brtarget, setle, GPR32Opnd, 0>,
1343               BGEZ_FM<22, 0>, ISA_MIPS2_NOT_32R6_64R6;
1344 def BLTZ    : MMRel, CBranchZero<"bltz", brtarget, setlt, GPR32Opnd>,
1345               BGEZ_FM<1, 0>;
1346 def BLTZL   : MMRel, CBranchZero<"bltzl", brtarget, setlt, GPR32Opnd, 0>,
1347               BGEZ_FM<1, 2>, ISA_MIPS2_NOT_32R6_64R6;
1348 def B       : UncondBranch<BEQ>;
1349
1350 def JAL  : MMRel, JumpLink<"jal", calltarget>, FJ<3>;
1351 let AdditionalPredicates = [NotInMicroMips] in {
1352   def JALR : JumpLinkReg<"jalr", GPR32Opnd>, JALR_FM;
1353   def JALRPseudo : JumpLinkRegPseudo<GPR32Opnd, JALR, RA>;
1354 }
1355
1356 def JALX : MMRel, JumpLink<"jalx", calltarget>, FJ<0x1D>,
1357            ISA_MIPS32_NOT_32R6_64R6;
1358 def BGEZAL : MMRel, BGEZAL_FT<"bgezal", brtarget, GPR32Opnd>, BGEZAL_FM<0x11>,
1359              ISA_MIPS1_NOT_32R6_64R6;
1360 def BGEZALL : MMRel, BGEZAL_FT<"bgezall", brtarget, GPR32Opnd, 0>,
1361               BGEZAL_FM<0x13>, ISA_MIPS2_NOT_32R6_64R6;
1362 def BLTZAL : MMRel, BGEZAL_FT<"bltzal", brtarget, GPR32Opnd>, BGEZAL_FM<0x10>,
1363              ISA_MIPS1_NOT_32R6_64R6;
1364 def BLTZALL : MMRel, BGEZAL_FT<"bltzall", brtarget, GPR32Opnd, 0>,
1365               BGEZAL_FM<0x12>, ISA_MIPS2_NOT_32R6_64R6;
1366 def BAL_BR : BAL_BR_Pseudo<BGEZAL>;
1367 def TAILCALL : TailCall<J>;
1368 def TAILCALL_R : TailCallReg<GPR32Opnd, JR>;
1369
1370 // Indirect branches are matched as PseudoIndirectBranch/PseudoIndirectBranch64
1371 // then are expanded to JR, JR64, JALR, or JALR64 depending on the ISA.
1372 class PseudoIndirectBranchBase<RegisterOperand RO> :
1373     MipsPseudo<(outs), (ins RO:$rs), [(brind RO:$rs)], IIBranch> {
1374   let isTerminator=1;
1375   let isBarrier=1;
1376   let hasDelaySlot = 1;
1377   let isBranch = 1;
1378   let isIndirectBranch = 1;
1379 }
1380
1381 def PseudoIndirectBranch : PseudoIndirectBranchBase<GPR32Opnd>;
1382
1383 // Return instructions are matched as a RetRA instruction, then ar expanded
1384 // into PseudoReturn/PseudoReturn64 after register allocation. Finally,
1385 // MipsAsmPrinter expands this into JR, JR64, JALR, or JALR64 depending on the
1386 // ISA.
1387 class PseudoReturnBase<RegisterOperand RO> : MipsPseudo<(outs), (ins RO:$rs),
1388                                                         [], IIBranch> {
1389   let isTerminator = 1;
1390   let isBarrier = 1;
1391   let hasDelaySlot = 1;
1392   let isReturn = 1;
1393   let isCodeGenOnly = 1;
1394   let hasCtrlDep = 1;
1395   let hasExtraSrcRegAllocReq = 1;
1396 }
1397
1398 def PseudoReturn : PseudoReturnBase<GPR32Opnd>;
1399
1400 // Exception handling related node and instructions.
1401 // The conversion sequence is:
1402 // ISD::EH_RETURN -> MipsISD::EH_RETURN ->
1403 // MIPSeh_return -> (stack change + indirect branch)
1404 //
1405 // MIPSeh_return takes the place of regular return instruction
1406 // but takes two arguments (V1, V0) which are used for storing
1407 // the offset and return address respectively.
1408 def SDT_MipsEHRET : SDTypeProfile<0, 2, [SDTCisInt<0>, SDTCisPtrTy<1>]>;
1409
1410 def MIPSehret : SDNode<"MipsISD::EH_RETURN", SDT_MipsEHRET,
1411                       [SDNPHasChain, SDNPOptInGlue, SDNPVariadic]>;
1412
1413 let Uses = [V0, V1], isTerminator = 1, isReturn = 1, isBarrier = 1 in {
1414   def MIPSeh_return32 : MipsPseudo<(outs), (ins GPR32:$spoff, GPR32:$dst),
1415                                 [(MIPSehret GPR32:$spoff, GPR32:$dst)]>;
1416   def MIPSeh_return64 : MipsPseudo<(outs), (ins GPR64:$spoff,
1417                                                 GPR64:$dst),
1418                                 [(MIPSehret GPR64:$spoff, GPR64:$dst)]>;
1419 }
1420
1421 /// Multiply and Divide Instructions.
1422 def MULT  : MMRel, Mult<"mult", II_MULT, GPR32Opnd, [HI0, LO0]>,
1423             MULT_FM<0, 0x18>, ISA_MIPS1_NOT_32R6_64R6;
1424 def MULTu : MMRel, Mult<"multu", II_MULTU, GPR32Opnd, [HI0, LO0]>,
1425             MULT_FM<0, 0x19>, ISA_MIPS1_NOT_32R6_64R6;
1426 def SDIV  : MMRel, Div<"div", II_DIV, GPR32Opnd, [HI0, LO0]>,
1427             MULT_FM<0, 0x1a>, ISA_MIPS1_NOT_32R6_64R6;
1428 def UDIV  : MMRel, Div<"divu", II_DIVU, GPR32Opnd, [HI0, LO0]>,
1429             MULT_FM<0, 0x1b>, ISA_MIPS1_NOT_32R6_64R6;
1430
1431 def MTHI : MMRel, MoveToLOHI<"mthi", GPR32Opnd, [HI0]>, MTLO_FM<0x11>,
1432            ISA_MIPS1_NOT_32R6_64R6;
1433 def MTLO : MMRel, MoveToLOHI<"mtlo", GPR32Opnd, [LO0]>, MTLO_FM<0x13>,
1434            ISA_MIPS1_NOT_32R6_64R6;
1435 let EncodingPredicates = []<Predicate>, // FIXME: Lack of HasStdEnc is probably a bug
1436     AdditionalPredicates = [NotInMicroMips] in {
1437 def MFHI : MMRel, MoveFromLOHI<"mfhi", GPR32Opnd, AC0>, MFLO_FM<0x10>,
1438            ISA_MIPS1_NOT_32R6_64R6;
1439 def MFLO : MMRel, MoveFromLOHI<"mflo", GPR32Opnd, AC0>, MFLO_FM<0x12>,
1440            ISA_MIPS1_NOT_32R6_64R6;
1441 }
1442
1443 /// Sign Ext In Register Instructions.
1444 def SEB : MMRel, StdMMR6Rel, SignExtInReg<"seb", i8, GPR32Opnd, II_SEB>,
1445           SEB_FM<0x10, 0x20>, ISA_MIPS32R2;
1446 def SEH : MMRel, StdMMR6Rel, SignExtInReg<"seh", i16, GPR32Opnd, II_SEH>,
1447           SEB_FM<0x18, 0x20>, ISA_MIPS32R2;
1448
1449 /// Count Leading
1450 def CLZ : MMRel, CountLeading0<"clz", GPR32Opnd>, CLO_FM<0x20>,
1451           ISA_MIPS32_NOT_32R6_64R6;
1452 def CLO : MMRel, CountLeading1<"clo", GPR32Opnd>, CLO_FM<0x21>,
1453           ISA_MIPS32_NOT_32R6_64R6;
1454
1455 /// Word Swap Bytes Within Halfwords
1456 def WSBH : MMRel, SubwordSwap<"wsbh", GPR32Opnd>, SEB_FM<2, 0x20>, ISA_MIPS32R2;
1457
1458 /// No operation.
1459 def NOP : PseudoSE<(outs), (ins), []>, PseudoInstExpansion<(SLL ZERO, ZERO, 0)>;
1460
1461 // FrameIndexes are legalized when they are operands from load/store
1462 // instructions. The same not happens for stack address copies, so an
1463 // add op with mem ComplexPattern is used and the stack address copy
1464 // can be matched. It's similar to Sparc LEA_ADDRi
1465 def LEA_ADDiu : MMRel, EffectiveAddress<"addiu", GPR32Opnd>, LW_FM<9>;
1466
1467 // MADD*/MSUB*
1468 def MADD  : MMRel, MArithR<"madd", II_MADD, 1>, MULT_FM<0x1c, 0>,
1469             ISA_MIPS32_NOT_32R6_64R6;
1470 def MADDU : MMRel, MArithR<"maddu", II_MADDU, 1>, MULT_FM<0x1c, 1>,
1471             ISA_MIPS32_NOT_32R6_64R6;
1472 def MSUB  : MMRel, MArithR<"msub", II_MSUB>, MULT_FM<0x1c, 4>,
1473             ISA_MIPS32_NOT_32R6_64R6;
1474 def MSUBU : MMRel, MArithR<"msubu", II_MSUBU>, MULT_FM<0x1c, 5>,
1475             ISA_MIPS32_NOT_32R6_64R6;
1476
1477 let AdditionalPredicates = [NotDSP] in {
1478 def PseudoMULT  : MultDivPseudo<MULT, ACC64, GPR32Opnd, MipsMult, II_MULT>,
1479                   ISA_MIPS1_NOT_32R6_64R6;
1480 def PseudoMULTu : MultDivPseudo<MULTu, ACC64, GPR32Opnd, MipsMultu, II_MULTU>,
1481                   ISA_MIPS1_NOT_32R6_64R6;
1482 def PseudoMFHI : PseudoMFLOHI<GPR32, ACC64, MipsMFHI>, ISA_MIPS1_NOT_32R6_64R6;
1483 def PseudoMFLO : PseudoMFLOHI<GPR32, ACC64, MipsMFLO>, ISA_MIPS1_NOT_32R6_64R6;
1484 def PseudoMTLOHI : PseudoMTLOHI<ACC64, GPR32>, ISA_MIPS1_NOT_32R6_64R6;
1485 def PseudoMADD  : MAddSubPseudo<MADD, MipsMAdd, II_MADD>,
1486                   ISA_MIPS32_NOT_32R6_64R6;
1487 def PseudoMADDU : MAddSubPseudo<MADDU, MipsMAddu, II_MADDU>,
1488                   ISA_MIPS32_NOT_32R6_64R6;
1489 def PseudoMSUB  : MAddSubPseudo<MSUB, MipsMSub, II_MSUB>,
1490                   ISA_MIPS32_NOT_32R6_64R6;
1491 def PseudoMSUBU : MAddSubPseudo<MSUBU, MipsMSubu, II_MSUBU>,
1492                   ISA_MIPS32_NOT_32R6_64R6;
1493 }
1494
1495 def PseudoSDIV : MultDivPseudo<SDIV, ACC64, GPR32Opnd, MipsDivRem, II_DIV,
1496                                0, 1, 1>, ISA_MIPS1_NOT_32R6_64R6;
1497 def PseudoUDIV : MultDivPseudo<UDIV, ACC64, GPR32Opnd, MipsDivRemU, II_DIVU,
1498                                0, 1, 1>, ISA_MIPS1_NOT_32R6_64R6;
1499
1500 def RDHWR : MMRel, ReadHardware<GPR32Opnd, HWRegsOpnd>, RDHWR_FM;
1501
1502 def EXT : MMRel, ExtBase<"ext", GPR32Opnd, uimm5, MipsExt>, EXT_FM<0>;
1503 def INS : MMRel, InsBase<"ins", GPR32Opnd, uimm5, MipsIns>, EXT_FM<4>;
1504
1505 /// Move Control Registers From/To CPU Registers
1506 def MFC0 : MFC3OP<"mfc0", GPR32Opnd, COP0Opnd>, MFC3OP_FM<0x10, 0>, ISA_MIPS32;
1507 def MTC0 : MTC3OP<"mtc0", COP0Opnd, GPR32Opnd>, MFC3OP_FM<0x10, 4>, ISA_MIPS32;
1508 def MFC2 : MFC3OP<"mfc2", GPR32Opnd, COP2Opnd>, MFC3OP_FM<0x12, 0>;
1509 def MTC2 : MTC3OP<"mtc2", COP2Opnd, GPR32Opnd>, MFC3OP_FM<0x12, 4>;
1510
1511 class Barrier<string asmstr> : InstSE<(outs), (ins), asmstr, [], NoItinerary,
1512                                       FrmOther, asmstr>;
1513 def SSNOP : MMRel, Barrier<"ssnop">, BARRIER_FM<1>;
1514 def EHB : MMRel, Barrier<"ehb">, BARRIER_FM<3>;
1515 def PAUSE : MMRel, Barrier<"pause">, BARRIER_FM<5>, ISA_MIPS32R2;
1516
1517 // JR_HB and JALR_HB are defined here using the new style naming
1518 // scheme because some of this code is shared with Mips32r6InstrInfo.td
1519 // and because of that it doesn't follow the naming convention of the
1520 // rest of the file. To avoid a mixture of old vs new style, the new
1521 // style was chosen.
1522 class JR_HB_DESC_BASE<string instr_asm, RegisterOperand GPROpnd> {
1523   dag OutOperandList = (outs);
1524   dag InOperandList = (ins GPROpnd:$rs);
1525   string AsmString = !strconcat(instr_asm, "\t$rs");
1526   list<dag> Pattern = [];
1527 }
1528
1529 class JALR_HB_DESC_BASE<string instr_asm, RegisterOperand GPROpnd> {
1530   dag OutOperandList = (outs GPROpnd:$rd);
1531   dag InOperandList = (ins GPROpnd:$rs);
1532   string AsmString = !strconcat(instr_asm, "\t$rd, $rs");
1533   list<dag> Pattern = [];
1534 }
1535
1536 class JR_HB_DESC : InstSE<(outs), (ins), "", [], NoItinerary, FrmJ>,
1537                    JR_HB_DESC_BASE<"jr.hb", GPR32Opnd> {
1538   let isBranch=1;
1539   let isIndirectBranch=1;
1540   let hasDelaySlot=1;
1541   let isTerminator=1;
1542   let isBarrier=1;
1543 }
1544
1545 class JALR_HB_DESC : InstSE<(outs), (ins), "", [], NoItinerary, FrmJ>,
1546                      JALR_HB_DESC_BASE<"jalr.hb", GPR32Opnd> {
1547   let isIndirectBranch=1;
1548   let hasDelaySlot=1;
1549 }
1550
1551 class JR_HB_ENC : JR_HB_FM<8>;
1552 class JALR_HB_ENC : JALR_HB_FM<9>;
1553
1554 def JR_HB : JR_HB_DESC, JR_HB_ENC, ISA_MIPS32_NOT_32R6_64R6;
1555 def JALR_HB : JALR_HB_DESC, JALR_HB_ENC, ISA_MIPS32;
1556
1557 class TLB<string asmstr> : InstSE<(outs), (ins), asmstr, [], NoItinerary,
1558                                       FrmOther, asmstr>;
1559 def TLBP : MMRel, TLB<"tlbp">, COP0_TLB_FM<0x08>;
1560 def TLBR : MMRel, TLB<"tlbr">, COP0_TLB_FM<0x01>;
1561 def TLBWI : MMRel, TLB<"tlbwi">, COP0_TLB_FM<0x02>;
1562 def TLBWR : MMRel, TLB<"tlbwr">, COP0_TLB_FM<0x06>;
1563
1564 class CacheOp<string instr_asm, Operand MemOpnd> :
1565     InstSE<(outs), (ins  MemOpnd:$addr, uimm5:$hint),
1566            !strconcat(instr_asm, "\t$hint, $addr"), [], NoItinerary, FrmOther,
1567            instr_asm> {
1568   let DecoderMethod = "DecodeCacheOp";
1569 }
1570
1571 def CACHE : MMRel, CacheOp<"cache", mem>, CACHEOP_FM<0b101111>,
1572             INSN_MIPS3_32_NOT_32R6_64R6;
1573 def PREF :  MMRel, CacheOp<"pref", mem>, CACHEOP_FM<0b110011>,
1574             INSN_MIPS3_32_NOT_32R6_64R6;
1575
1576 //===----------------------------------------------------------------------===//
1577 // Instruction aliases
1578 //===----------------------------------------------------------------------===//
1579 def : MipsInstAlias<"move $dst, $src",
1580                     (OR GPR32Opnd:$dst, GPR32Opnd:$src, ZERO), 1>,
1581       GPR_32 {
1582   let AdditionalPredicates = [NotInMicroMips];
1583 }
1584 def : MipsInstAlias<"move $dst, $src",
1585                     (ADDu GPR32Opnd:$dst, GPR32Opnd:$src, ZERO), 1>,
1586       GPR_32 {
1587   let AdditionalPredicates = [NotInMicroMips];
1588 }
1589 def : MipsInstAlias<"bal $offset", (BGEZAL ZERO, brtarget:$offset), 0>,
1590       ISA_MIPS1_NOT_32R6_64R6;
1591 def : MipsInstAlias<"addu $rs, $rt, $imm",
1592                     (ADDiu GPR32Opnd:$rs, GPR32Opnd:$rt, simm16:$imm), 0>;
1593 def : MipsInstAlias<"addu $rs, $imm",
1594                     (ADDiu GPR32Opnd:$rs, GPR32Opnd:$rs, simm16:$imm), 0>;
1595 def : MipsInstAlias<"add $rs, $rt, $imm",
1596                     (ADDi GPR32Opnd:$rs, GPR32Opnd:$rt, simm16:$imm), 0>,
1597                     ISA_MIPS1_NOT_32R6_64R6;
1598 def : MipsInstAlias<"add $rs, $imm",
1599                     (ADDi GPR32Opnd:$rs, GPR32Opnd:$rs, simm16:$imm), 0>,
1600                     ISA_MIPS1_NOT_32R6_64R6;
1601 def : MipsInstAlias<"and $rs, $rt, $imm",
1602                     (ANDi GPR32Opnd:$rs, GPR32Opnd:$rt, simm16:$imm), 0>;
1603 def : MipsInstAlias<"and $rs, $imm",
1604                     (ANDi GPR32Opnd:$rs, GPR32Opnd:$rs, simm16:$imm), 0>;
1605 def : MipsInstAlias<"j $rs", (JR GPR32Opnd:$rs), 0>;
1606 let Predicates = [NotInMicroMips] in {
1607 def : MipsInstAlias<"jalr $rs", (JALR RA, GPR32Opnd:$rs), 0>;
1608 }
1609 def : MipsInstAlias<"jalr.hb $rs", (JALR_HB RA, GPR32Opnd:$rs), 1>, ISA_MIPS32;
1610 def : MipsInstAlias<"not $rt, $rs",
1611                     (NOR GPR32Opnd:$rt, GPR32Opnd:$rs, ZERO), 0>;
1612 def : MipsInstAlias<"neg $rt, $rs",
1613                     (SUB GPR32Opnd:$rt, ZERO, GPR32Opnd:$rs), 1>;
1614 def : MipsInstAlias<"negu $rt",
1615                     (SUBu GPR32Opnd:$rt, ZERO, GPR32Opnd:$rt), 0>;
1616 def : MipsInstAlias<"negu $rt, $rs",
1617                     (SUBu GPR32Opnd:$rt, ZERO, GPR32Opnd:$rs), 1>;
1618 def : MipsInstAlias<"slt $rs, $rt, $imm",
1619                     (SLTi GPR32Opnd:$rs, GPR32Opnd:$rt, simm16:$imm), 0>;
1620 def : MipsInstAlias<"sltu $rt, $rs, $imm",
1621                     (SLTiu GPR32Opnd:$rt, GPR32Opnd:$rs, simm16:$imm), 0>;
1622 def : MipsInstAlias<"xor $rs, $rt, $imm",
1623                     (XORi GPR32Opnd:$rs, GPR32Opnd:$rt, uimm16:$imm), 0>;
1624 def : MipsInstAlias<"xor $rs, $imm",
1625                     (XORi GPR32Opnd:$rs, GPR32Opnd:$rs, uimm16:$imm), 0>;
1626 def : MipsInstAlias<"or $rs, $rt, $imm",
1627                     (ORi GPR32Opnd:$rs, GPR32Opnd:$rt, uimm16:$imm), 0>;
1628 def : MipsInstAlias<"or $rs, $imm",
1629                     (ORi GPR32Opnd:$rs, GPR32Opnd:$rs, uimm16:$imm), 0>;
1630 let AdditionalPredicates = [NotInMicroMips] in {
1631 def : MipsInstAlias<"nop", (SLL ZERO, ZERO, 0), 1>;
1632 }
1633 def : MipsInstAlias<"mfc0 $rt, $rd", (MFC0 GPR32Opnd:$rt, COP0Opnd:$rd, 0), 0>;
1634 def : MipsInstAlias<"mtc0 $rt, $rd", (MTC0 COP0Opnd:$rd, GPR32Opnd:$rt, 0), 0>;
1635 def : MipsInstAlias<"mfc2 $rt, $rd", (MFC2 GPR32Opnd:$rt, COP2Opnd:$rd, 0), 0>;
1636 def : MipsInstAlias<"mtc2 $rt, $rd", (MTC2 COP2Opnd:$rd, GPR32Opnd:$rt, 0), 0>;
1637 let AdditionalPredicates = [NotInMicroMips] in {
1638 def : MipsInstAlias<"b $offset", (BEQ ZERO, ZERO, brtarget:$offset), 0>;
1639 }
1640 def : MipsInstAlias<"bnez $rs,$offset",
1641                     (BNE GPR32Opnd:$rs, ZERO, brtarget:$offset), 0>;
1642 def : MipsInstAlias<"bnezl $rs,$offset",
1643                     (BNEL GPR32Opnd:$rs, ZERO, brtarget:$offset), 0>;
1644 def : MipsInstAlias<"beqz $rs,$offset",
1645                     (BEQ GPR32Opnd:$rs, ZERO, brtarget:$offset), 0>;
1646 def : MipsInstAlias<"beqzl $rs,$offset",
1647                     (BEQL GPR32Opnd:$rs, ZERO, brtarget:$offset), 0>;
1648 def : MipsInstAlias<"syscall", (SYSCALL 0), 1>;
1649     
1650 def : MipsInstAlias<"break", (BREAK 0, 0), 1>;
1651 def : MipsInstAlias<"break $imm", (BREAK uimm10:$imm, 0), 1>;
1652 let AdditionalPredicates = [NotInMicroMips] in {
1653 def : MipsInstAlias<"ei", (EI ZERO), 1>, ISA_MIPS32R2;
1654 }
1655 def : MipsInstAlias<"di", (DI ZERO), 1>, ISA_MIPS32R2;
1656
1657 def : MipsInstAlias<"teq $rs, $rt",
1658                     (TEQ GPR32Opnd:$rs, GPR32Opnd:$rt, 0), 1>, ISA_MIPS2;
1659 def : MipsInstAlias<"tge $rs, $rt",
1660                     (TGE GPR32Opnd:$rs, GPR32Opnd:$rt, 0), 1>, ISA_MIPS2;
1661 def : MipsInstAlias<"tgeu $rs, $rt",
1662                     (TGEU GPR32Opnd:$rs, GPR32Opnd:$rt, 0), 1>, ISA_MIPS2;
1663 def : MipsInstAlias<"tlt $rs, $rt",
1664                     (TLT GPR32Opnd:$rs, GPR32Opnd:$rt, 0), 1>, ISA_MIPS2;
1665 def : MipsInstAlias<"tltu $rs, $rt",
1666                     (TLTU GPR32Opnd:$rs, GPR32Opnd:$rt, 0), 1>, ISA_MIPS2;
1667 def : MipsInstAlias<"tne $rs, $rt",
1668                     (TNE GPR32Opnd:$rs, GPR32Opnd:$rt, 0), 1>, ISA_MIPS2;
1669
1670 def  : MipsInstAlias<"sll $rd, $rt, $rs",
1671                      (SLLV GPR32Opnd:$rd, GPR32Opnd:$rt, GPR32Opnd:$rs), 0>;
1672 def : MipsInstAlias<"sub, $rd, $rs, $imm",
1673                     (ADDi GPR32Opnd:$rd, GPR32Opnd:$rs,
1674                           InvertedImOperand:$imm), 0>, ISA_MIPS1_NOT_32R6_64R6;
1675 def : MipsInstAlias<"sub $rs, $imm",
1676                     (ADDi GPR32Opnd:$rs, GPR32Opnd:$rs, InvertedImOperand:$imm),
1677                     0>, ISA_MIPS1_NOT_32R6_64R6;
1678 def : MipsInstAlias<"subu, $rd, $rs, $imm",
1679                     (ADDiu GPR32Opnd:$rd, GPR32Opnd:$rs,
1680                            InvertedImOperand:$imm), 0>;
1681 def : MipsInstAlias<"subu $rs, $imm", (ADDiu GPR32Opnd:$rs, GPR32Opnd:$rs,
1682                                              InvertedImOperand:$imm), 0>;
1683 def : MipsInstAlias<"sra $rd, $rt, $rs",
1684                     (SRAV GPR32Opnd:$rd, GPR32Opnd:$rt, GPR32Opnd:$rs), 0>;
1685 def : MipsInstAlias<"srl $rd, $rt, $rs",
1686                     (SRLV GPR32Opnd:$rd, GPR32Opnd:$rt, GPR32Opnd:$rs), 0>;
1687 def : MipsInstAlias<"sdbbp", (SDBBP 0)>, ISA_MIPS32_NOT_32R6_64R6;
1688 def : MipsInstAlias<"sync",
1689                     (SYNC 0), 1>, ISA_MIPS2;
1690 //===----------------------------------------------------------------------===//
1691 // Assembler Pseudo Instructions
1692 //===----------------------------------------------------------------------===//
1693
1694 class LoadImmediate32<string instr_asm, Operand Od, RegisterOperand RO> :
1695   MipsAsmPseudoInst<(outs RO:$rt), (ins Od:$imm32),
1696                      !strconcat(instr_asm, "\t$rt, $imm32")> ;
1697 def LoadImm32 : LoadImmediate32<"li", uimm5, GPR32Opnd>;
1698
1699 class LoadAddressFromReg32<string instr_asm, Operand MemOpnd,
1700                            RegisterOperand RO> :
1701   MipsAsmPseudoInst<(outs RO:$rt), (ins MemOpnd:$addr),
1702                      !strconcat(instr_asm, "\t$rt, $addr")> ;
1703 def LoadAddrReg32 : LoadAddressFromReg32<"la", mem, GPR32Opnd>;
1704
1705 class LoadAddressFromImm32<string instr_asm, Operand Od, RegisterOperand RO> :
1706   MipsAsmPseudoInst<(outs RO:$rt), (ins Od:$imm32),
1707                      !strconcat(instr_asm, "\t$rt, $imm32")> ;
1708 def LoadAddrImm32 : LoadAddressFromImm32<"la", uimm5, GPR32Opnd>;
1709
1710 def JalTwoReg : MipsAsmPseudoInst<(outs GPR32Opnd:$rd), (ins GPR32Opnd:$rs),
1711                       "jal\t$rd, $rs"> ;
1712 def JalOneReg : MipsAsmPseudoInst<(outs), (ins GPR32Opnd:$rs),
1713                       "jal\t$rs"> ;
1714
1715 let hasDelaySlot = 1 in {
1716 def BneImm : MipsAsmPseudoInst<(outs GPR32Opnd:$rt),
1717                                (ins imm64:$imm64, brtarget:$offset),
1718                                "bne\t$rt, $imm64, $offset">;
1719 def BeqImm : MipsAsmPseudoInst<(outs GPR32Opnd:$rt),
1720                                (ins imm64:$imm64, brtarget:$offset),
1721                                "beq\t$rt, $imm64, $offset">;
1722
1723 class CondBranchPseudo<string instr_asm> :
1724   MipsAsmPseudoInst<(outs), (ins GPR32Opnd:$rs, GPR32Opnd:$rt,
1725                                  brtarget:$offset),
1726                     !strconcat(instr_asm, "\t$rs, $rt, $offset")>;
1727 }
1728
1729 def BLT : CondBranchPseudo<"blt">;
1730 def BLE : CondBranchPseudo<"ble">;
1731 def BGE : CondBranchPseudo<"bge">;
1732 def BGT : CondBranchPseudo<"bgt">;
1733 def BLTU : CondBranchPseudo<"bltu">;
1734 def BLEU : CondBranchPseudo<"bleu">;
1735 def BGEU : CondBranchPseudo<"bgeu">;
1736 def BGTU : CondBranchPseudo<"bgtu">;
1737
1738 def SDivMacro : MipsAsmPseudoInst<(outs), (ins GPR32Opnd:$rs, GPR32Opnd:$rt),
1739                                   "div\t$rs, $rt">, ISA_MIPS1_NOT_32R6_64R6;
1740
1741 def UDivMacro : MipsAsmPseudoInst<(outs), (ins GPR32Opnd:$rs, GPR32Opnd:$rt),
1742                                   "divu\t$rs, $rt">, ISA_MIPS1_NOT_32R6_64R6;
1743
1744 def DSDivMacro : MipsAsmPseudoInst<(outs), (ins GPR32Opnd:$rs, GPR32Opnd:$rt),
1745                                    "ddiv\t$rs, $rt">, ISA_MIPS64_NOT_64R6;
1746
1747 def DUDivMacro : MipsAsmPseudoInst<(outs), (ins GPR32Opnd:$rs, GPR32Opnd:$rt),
1748                                    "ddivu\t$rs, $rt">, ISA_MIPS64_NOT_64R6;
1749
1750 def Ulhu : MipsAsmPseudoInst<(outs GPR32Opnd:$rt), (ins mem:$addr),
1751                              "ulhu\t$rt, $addr">, ISA_MIPS1_NOT_32R6_64R6;
1752
1753 def Ulw : MipsAsmPseudoInst<(outs GPR32Opnd:$rt), (ins mem:$addr),
1754                             "ulw\t$rt, $addr">, ISA_MIPS1_NOT_32R6_64R6;
1755
1756 //===----------------------------------------------------------------------===//
1757 //  Arbitrary patterns that map to one or more instructions
1758 //===----------------------------------------------------------------------===//
1759
1760 // Load/store pattern templates.
1761 class LoadRegImmPat<Instruction LoadInst, ValueType ValTy, PatFrag Node> :
1762   MipsPat<(ValTy (Node addrRegImm:$a)), (LoadInst addrRegImm:$a)>;
1763
1764 class StoreRegImmPat<Instruction StoreInst, ValueType ValTy> :
1765   MipsPat<(store ValTy:$v, addrRegImm:$a), (StoreInst ValTy:$v, addrRegImm:$a)>;
1766
1767 // Small immediates
1768 let AdditionalPredicates = [NotInMicroMips] in {
1769 def : MipsPat<(i32 immSExt16:$in),
1770               (ADDiu ZERO, imm:$in)>;
1771 def : MipsPat<(i32 immZExt16:$in),
1772               (ORi ZERO, imm:$in)>;
1773 }
1774 def : MipsPat<(i32 immLow16Zero:$in),
1775               (LUi (HI16 imm:$in))>;
1776
1777 // Arbitrary immediates
1778 def : MipsPat<(i32 imm:$imm),
1779           (ORi (LUi (HI16 imm:$imm)), (LO16 imm:$imm))>;
1780
1781 // Carry MipsPatterns
1782 def : MipsPat<(subc GPR32:$lhs, GPR32:$rhs),
1783               (SUBu GPR32:$lhs, GPR32:$rhs)>;
1784 let AdditionalPredicates = [NotDSP] in {
1785   def : MipsPat<(addc GPR32:$lhs, GPR32:$rhs),
1786                 (ADDu GPR32:$lhs, GPR32:$rhs)>;
1787   def : MipsPat<(addc  GPR32:$src, immSExt16:$imm),
1788                 (ADDiu GPR32:$src, imm:$imm)>;
1789 }
1790
1791 // Support multiplication for pre-Mips32 targets that don't have
1792 // the MUL instruction.
1793 def : MipsPat<(mul GPR32:$lhs, GPR32:$rhs),
1794               (PseudoMFLO (PseudoMULT GPR32:$lhs, GPR32:$rhs))>,
1795       ISA_MIPS1_NOT_32R6_64R6;
1796
1797 // SYNC
1798 def : MipsPat<(MipsSync (i32 immz)),
1799               (SYNC 0)>, ISA_MIPS2;
1800
1801 // Call
1802 def : MipsPat<(MipsJmpLink (i32 tglobaladdr:$dst)),
1803               (JAL tglobaladdr:$dst)>;
1804 def : MipsPat<(MipsJmpLink (i32 texternalsym:$dst)),
1805               (JAL texternalsym:$dst)>;
1806 //def : MipsPat<(MipsJmpLink GPR32:$dst),
1807 //              (JALR GPR32:$dst)>;
1808
1809 // Tail call
1810 def : MipsPat<(MipsTailCall (iPTR tglobaladdr:$dst)),
1811               (TAILCALL tglobaladdr:$dst)>;
1812 def : MipsPat<(MipsTailCall (iPTR texternalsym:$dst)),
1813               (TAILCALL texternalsym:$dst)>;
1814 // hi/lo relocs
1815 def : MipsPat<(MipsHi tglobaladdr:$in), (LUi tglobaladdr:$in)>;
1816 def : MipsPat<(MipsHi tblockaddress:$in), (LUi tblockaddress:$in)>;
1817 def : MipsPat<(MipsHi tjumptable:$in), (LUi tjumptable:$in)>;
1818 def : MipsPat<(MipsHi tconstpool:$in), (LUi tconstpool:$in)>;
1819 def : MipsPat<(MipsHi tglobaltlsaddr:$in), (LUi tglobaltlsaddr:$in)>;
1820 def : MipsPat<(MipsHi texternalsym:$in), (LUi texternalsym:$in)>;
1821
1822 def : MipsPat<(MipsLo tglobaladdr:$in), (ADDiu ZERO, tglobaladdr:$in)>;
1823 def : MipsPat<(MipsLo tblockaddress:$in), (ADDiu ZERO, tblockaddress:$in)>;
1824 def : MipsPat<(MipsLo tjumptable:$in), (ADDiu ZERO, tjumptable:$in)>;
1825 def : MipsPat<(MipsLo tconstpool:$in), (ADDiu ZERO, tconstpool:$in)>;
1826 def : MipsPat<(MipsLo tglobaltlsaddr:$in), (ADDiu ZERO, tglobaltlsaddr:$in)>;
1827 def : MipsPat<(MipsLo texternalsym:$in), (ADDiu ZERO, texternalsym:$in)>;
1828
1829 def : MipsPat<(add GPR32:$hi, (MipsLo tglobaladdr:$lo)),
1830               (ADDiu GPR32:$hi, tglobaladdr:$lo)>;
1831 def : MipsPat<(add GPR32:$hi, (MipsLo tblockaddress:$lo)),
1832               (ADDiu GPR32:$hi, tblockaddress:$lo)>;
1833 def : MipsPat<(add GPR32:$hi, (MipsLo tjumptable:$lo)),
1834               (ADDiu GPR32:$hi, tjumptable:$lo)>;
1835 def : MipsPat<(add GPR32:$hi, (MipsLo tconstpool:$lo)),
1836               (ADDiu GPR32:$hi, tconstpool:$lo)>;
1837 def : MipsPat<(add GPR32:$hi, (MipsLo tglobaltlsaddr:$lo)),
1838               (ADDiu GPR32:$hi, tglobaltlsaddr:$lo)>;
1839
1840 // gp_rel relocs
1841 def : MipsPat<(add GPR32:$gp, (MipsGPRel tglobaladdr:$in)),
1842               (ADDiu GPR32:$gp, tglobaladdr:$in)>;
1843 def : MipsPat<(add GPR32:$gp, (MipsGPRel tconstpool:$in)),
1844               (ADDiu GPR32:$gp, tconstpool:$in)>;
1845
1846 // wrapper_pic
1847 class WrapperPat<SDNode node, Instruction ADDiuOp, RegisterClass RC>:
1848       MipsPat<(MipsWrapper RC:$gp, node:$in),
1849               (ADDiuOp RC:$gp, node:$in)>;
1850
1851 def : WrapperPat<tglobaladdr, ADDiu, GPR32>;
1852 def : WrapperPat<tconstpool, ADDiu, GPR32>;
1853 def : WrapperPat<texternalsym, ADDiu, GPR32>;
1854 def : WrapperPat<tblockaddress, ADDiu, GPR32>;
1855 def : WrapperPat<tjumptable, ADDiu, GPR32>;
1856 def : WrapperPat<tglobaltlsaddr, ADDiu, GPR32>;
1857
1858 let AdditionalPredicates = [NotInMicroMips] in {
1859 // Mips does not have "not", so we expand our way
1860 def : MipsPat<(not GPR32:$in),
1861               (NOR GPR32Opnd:$in, ZERO)>;
1862 }
1863
1864 // extended loads
1865 def : MipsPat<(i32 (extloadi1  addr:$src)), (LBu addr:$src)>;
1866 def : MipsPat<(i32 (extloadi8  addr:$src)), (LBu addr:$src)>;
1867 def : MipsPat<(i32 (extloadi16 addr:$src)), (LHu addr:$src)>;
1868
1869 // peepholes
1870 def : MipsPat<(store (i32 0), addr:$dst), (SW ZERO, addr:$dst)>;
1871
1872 // brcond patterns
1873 multiclass BrcondPats<RegisterClass RC, Instruction BEQOp, Instruction BNEOp,
1874                       Instruction SLTOp, Instruction SLTuOp, Instruction SLTiOp,
1875                       Instruction SLTiuOp, Register ZEROReg> {
1876 def : MipsPat<(brcond (i32 (setne RC:$lhs, 0)), bb:$dst),
1877               (BNEOp RC:$lhs, ZEROReg, bb:$dst)>;
1878 def : MipsPat<(brcond (i32 (seteq RC:$lhs, 0)), bb:$dst),
1879               (BEQOp RC:$lhs, ZEROReg, bb:$dst)>;
1880
1881 def : MipsPat<(brcond (i32 (setge RC:$lhs, RC:$rhs)), bb:$dst),
1882               (BEQ (SLTOp RC:$lhs, RC:$rhs), ZERO, bb:$dst)>;
1883 def : MipsPat<(brcond (i32 (setuge RC:$lhs, RC:$rhs)), bb:$dst),
1884               (BEQ (SLTuOp RC:$lhs, RC:$rhs), ZERO, bb:$dst)>;
1885 def : MipsPat<(brcond (i32 (setge RC:$lhs, immSExt16:$rhs)), bb:$dst),
1886               (BEQ (SLTiOp RC:$lhs, immSExt16:$rhs), ZERO, bb:$dst)>;
1887 def : MipsPat<(brcond (i32 (setuge RC:$lhs, immSExt16:$rhs)), bb:$dst),
1888               (BEQ (SLTiuOp RC:$lhs, immSExt16:$rhs), ZERO, bb:$dst)>;
1889 def : MipsPat<(brcond (i32 (setgt RC:$lhs, immSExt16Plus1:$rhs)), bb:$dst),
1890               (BEQ (SLTiOp RC:$lhs, (Plus1 imm:$rhs)), ZERO, bb:$dst)>;
1891 def : MipsPat<(brcond (i32 (setugt RC:$lhs, immSExt16Plus1:$rhs)), bb:$dst),
1892               (BEQ (SLTiuOp RC:$lhs, (Plus1 imm:$rhs)), ZERO, bb:$dst)>;
1893
1894 def : MipsPat<(brcond (i32 (setle RC:$lhs, RC:$rhs)), bb:$dst),
1895               (BEQ (SLTOp RC:$rhs, RC:$lhs), ZERO, bb:$dst)>;
1896 def : MipsPat<(brcond (i32 (setule RC:$lhs, RC:$rhs)), bb:$dst),
1897               (BEQ (SLTuOp RC:$rhs, RC:$lhs), ZERO, bb:$dst)>;
1898
1899 def : MipsPat<(brcond RC:$cond, bb:$dst),
1900               (BNEOp RC:$cond, ZEROReg, bb:$dst)>;
1901 }
1902
1903 defm : BrcondPats<GPR32, BEQ, BNE, SLT, SLTu, SLTi, SLTiu, ZERO>;
1904
1905 def : MipsPat<(brcond (i32 (setlt i32:$lhs, 1)), bb:$dst),
1906               (BLEZ i32:$lhs, bb:$dst)>;
1907 def : MipsPat<(brcond (i32 (setgt i32:$lhs, -1)), bb:$dst),
1908               (BGEZ i32:$lhs, bb:$dst)>;
1909
1910 // setcc patterns
1911 multiclass SeteqPats<RegisterClass RC, Instruction SLTiuOp, Instruction XOROp,
1912                      Instruction SLTuOp, Register ZEROReg> {
1913   def : MipsPat<(seteq RC:$lhs, 0),
1914                 (SLTiuOp RC:$lhs, 1)>;
1915   def : MipsPat<(setne RC:$lhs, 0),
1916                 (SLTuOp ZEROReg, RC:$lhs)>;
1917   def : MipsPat<(seteq RC:$lhs, RC:$rhs),
1918                 (SLTiuOp (XOROp RC:$lhs, RC:$rhs), 1)>;
1919   def : MipsPat<(setne RC:$lhs, RC:$rhs),
1920                 (SLTuOp ZEROReg, (XOROp RC:$lhs, RC:$rhs))>;
1921 }
1922
1923 multiclass SetlePats<RegisterClass RC, Instruction SLTOp, Instruction SLTuOp> {
1924   def : MipsPat<(setle RC:$lhs, RC:$rhs),
1925                 (XORi (SLTOp RC:$rhs, RC:$lhs), 1)>;
1926   def : MipsPat<(setule RC:$lhs, RC:$rhs),
1927                 (XORi (SLTuOp RC:$rhs, RC:$lhs), 1)>;
1928 }
1929
1930 multiclass SetgtPats<RegisterClass RC, Instruction SLTOp, Instruction SLTuOp> {
1931   def : MipsPat<(setgt RC:$lhs, RC:$rhs),
1932                 (SLTOp RC:$rhs, RC:$lhs)>;
1933   def : MipsPat<(setugt RC:$lhs, RC:$rhs),
1934                 (SLTuOp RC:$rhs, RC:$lhs)>;
1935 }
1936
1937 multiclass SetgePats<RegisterClass RC, Instruction SLTOp, Instruction SLTuOp> {
1938   def : MipsPat<(setge RC:$lhs, RC:$rhs),
1939                 (XORi (SLTOp RC:$lhs, RC:$rhs), 1)>;
1940   def : MipsPat<(setuge RC:$lhs, RC:$rhs),
1941                 (XORi (SLTuOp RC:$lhs, RC:$rhs), 1)>;
1942 }
1943
1944 multiclass SetgeImmPats<RegisterClass RC, Instruction SLTiOp,
1945                         Instruction SLTiuOp> {
1946   def : MipsPat<(setge RC:$lhs, immSExt16:$rhs),
1947                 (XORi (SLTiOp RC:$lhs, immSExt16:$rhs), 1)>;
1948   def : MipsPat<(setuge RC:$lhs, immSExt16:$rhs),
1949                 (XORi (SLTiuOp RC:$lhs, immSExt16:$rhs), 1)>;
1950 }
1951
1952 defm : SeteqPats<GPR32, SLTiu, XOR, SLTu, ZERO>;
1953 defm : SetlePats<GPR32, SLT, SLTu>;
1954 defm : SetgtPats<GPR32, SLT, SLTu>;
1955 defm : SetgePats<GPR32, SLT, SLTu>;
1956 defm : SetgeImmPats<GPR32, SLTi, SLTiu>;
1957
1958 // bswap pattern
1959 def : MipsPat<(bswap GPR32:$rt), (ROTR (WSBH GPR32:$rt), 16)>;
1960
1961 // Load halfword/word patterns.
1962 let AddedComplexity = 40 in {
1963   def : LoadRegImmPat<LBu, i32, zextloadi8>;
1964   def : LoadRegImmPat<LH, i32, sextloadi16>;
1965   let AdditionalPredicates = [NotInMicroMips] in {
1966   def : LoadRegImmPat<LW, i32, load>;
1967   }
1968 }
1969
1970 //===----------------------------------------------------------------------===//
1971 // Floating Point Support
1972 //===----------------------------------------------------------------------===//
1973
1974 include "MipsInstrFPU.td"
1975 include "Mips64InstrInfo.td"
1976 include "MipsCondMov.td"
1977
1978 include "Mips32r6InstrInfo.td"
1979 include "Mips64r6InstrInfo.td"
1980
1981 //
1982 // Mips16
1983
1984 include "Mips16InstrFormats.td"
1985 include "Mips16InstrInfo.td"
1986
1987 // DSP
1988 include "MipsDSPInstrFormats.td"
1989 include "MipsDSPInstrInfo.td"
1990
1991 // MSA
1992 include "MipsMSAInstrFormats.td"
1993 include "MipsMSAInstrInfo.td"
1994
1995 // Micromips
1996 include "MicroMipsInstrFormats.td"
1997 include "MicroMipsInstrInfo.td"
1998 include "MicroMipsInstrFPU.td"
1999
2000 // Micromips r6
2001 include "MicroMips32r6InstrFormats.td"
2002 include "MicroMips32r6InstrInfo.td"
2003
2004 // Micromips64 r6
2005 include "MicroMips64r6InstrFormats.td"
2006 include "MicroMips64r6InstrInfo.td"