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