1def addrimm11 : ComplexPattern<iPTR, 2, "selectIntAddr11MM", [frameindex]>;
2def addrimm12 : ComplexPattern<iPTR, 2, "selectIntAddr12MM", [frameindex]>;
3def addrimm16 : ComplexPattern<iPTR, 2, "selectIntAddr16MM", [frameindex]>;
4def addrimm4lsl2 : ComplexPattern<iPTR, 2, "selectIntAddrLSL2MM", [frameindex]>;
5
6def simm9_addiusp : Operand<i32> {
7  let EncoderMethod = "getSImm9AddiuspValue";
8  let DecoderMethod = "DecodeSimm9SP";
9}
10
11def uimm3_shift : Operand<i32> {
12  let EncoderMethod = "getUImm3Mod8Encoding";
13  let DecoderMethod = "DecodePOOL16BEncodedField";
14}
15
16def simm3_lsa2 : Operand<i32> {
17  let EncoderMethod = "getSImm3Lsa2Value";
18  let DecoderMethod = "DecodeAddiur2Simm7";
19}
20
21def uimm4_andi : Operand<i32> {
22  let EncoderMethod = "getUImm4AndValue";
23  let DecoderMethod = "DecodeANDI16Imm";
24}
25
26def immSExtAddiur2 : ImmLeaf<i32, [{return Imm == 1 || Imm == -1 ||
27                                           ((Imm % 4 == 0) &&
28                                            Imm < 28 && Imm > 0);}]>;
29
30def immSExtAddius5 : ImmLeaf<i32, [{return Imm >= -8 && Imm <= 7;}]>;
31
32def immZExtAndi16 : ImmLeaf<i32,
33  [{return (Imm == 128 || (Imm >= 1 && Imm <= 4) || Imm == 7 || Imm == 8 ||
34            Imm == 15 || Imm == 16 || Imm == 31 || Imm == 32 || Imm == 63 ||
35            Imm == 64 || Imm == 255 || Imm == 32768 || Imm == 65535 );}]>;
36
37def immZExt2Shift : ImmLeaf<i32, [{return Imm >= 1 && Imm <= 8;}]>;
38
39def immLi16 : ImmLeaf<i32, [{return Imm >= -1 && Imm <= 126;}]>;
40
41def MicroMipsMemGPRMM16AsmOperand : AsmOperandClass {
42  let Name = "MicroMipsMem";
43  let RenderMethod = "addMicroMipsMemOperands";
44  let ParserMethod = "parseMemOperand";
45  let PredicateMethod = "isMemWithGRPMM16Base";
46}
47
48// Define the classes of pointers used by microMIPS.
49// The numbers must match those in MipsRegisterInfo::MipsPtrClass.
50def ptr_gpr16mm_rc : PointerLikeRegClass<1>;
51def ptr_sp_rc : PointerLikeRegClass<2>;
52def ptr_gp_rc : PointerLikeRegClass<3>;
53
54class mem_mm_4_generic : Operand<i32> {
55  let PrintMethod = "printMemOperand";
56  let MIOperandInfo = (ops ptr_gpr16mm_rc, simm4);
57  let OperandType = "OPERAND_MEMORY";
58  let ParserMatchClass = MicroMipsMemGPRMM16AsmOperand;
59}
60
61def mem_mm_4 : mem_mm_4_generic {
62  let EncoderMethod = "getMemEncodingMMImm4";
63}
64
65def mem_mm_4_lsl1 : mem_mm_4_generic {
66  let EncoderMethod = "getMemEncodingMMImm4Lsl1";
67}
68
69def mem_mm_4_lsl2 : mem_mm_4_generic {
70  let EncoderMethod = "getMemEncodingMMImm4Lsl2";
71}
72
73def MicroMipsMemSPAsmOperand : AsmOperandClass {
74  let Name = "MicroMipsMemSP";
75  let RenderMethod = "addMemOperands";
76  let ParserMethod = "parseMemOperand";
77  let PredicateMethod = "isMemWithUimmWordAlignedOffsetSP<7>";
78}
79
80def MicroMipsMemGPAsmOperand : AsmOperandClass {
81  let Name = "MicroMipsMemGP";
82  let RenderMethod = "addMemOperands";
83  let ParserMethod = "parseMemOperand";
84  let PredicateMethod = "isMemWithSimmWordAlignedOffsetGP<9>";
85}
86
87def mem_mm_sp_imm5_lsl2 : Operand<i32> {
88  let PrintMethod = "printMemOperand";
89  let MIOperandInfo = (ops ptr_sp_rc:$base, simm5:$offset);
90  let OperandType = "OPERAND_MEMORY";
91  let ParserMatchClass = MicroMipsMemSPAsmOperand;
92  let EncoderMethod = "getMemEncodingMMSPImm5Lsl2";
93}
94
95def mem_mm_gp_simm7_lsl2 : Operand<i32> {
96  let PrintMethod = "printMemOperand";
97  let MIOperandInfo = (ops ptr_gp_rc:$base, simm7_lsl2:$offset);
98  let OperandType = "OPERAND_MEMORY";
99  let ParserMatchClass = MicroMipsMemGPAsmOperand;
100  let EncoderMethod = "getMemEncodingMMGPImm7Lsl2";
101}
102
103def mem_mm_9 : Operand<i32> {
104  let PrintMethod = "printMemOperand";
105  let MIOperandInfo = (ops ptr_rc, simm9);
106  let EncoderMethod = "getMemEncodingMMImm9";
107  let ParserMatchClass = MipsMemSimm9AsmOperand;
108  let OperandType = "OPERAND_MEMORY";
109}
110
111def mem_mm_11 : Operand<i32> {
112  let PrintMethod = "printMemOperand";
113  let MIOperandInfo = (ops GPR32, simm11);
114  let EncoderMethod = "getMemEncodingMMImm11";
115  let ParserMatchClass = MipsMemSimm11AsmOperand;
116  let OperandType = "OPERAND_MEMORY";
117}
118
119def mem_mm_12 : Operand<i32> {
120  let PrintMethod = "printMemOperand";
121  let MIOperandInfo = (ops ptr_rc, simm12);
122  let EncoderMethod = "getMemEncodingMMImm12";
123  let ParserMatchClass = MipsMemAsmOperand;
124  let OperandType = "OPERAND_MEMORY";
125}
126
127def mem_mm_16 : Operand<i32> {
128  let PrintMethod = "printMemOperand";
129  let MIOperandInfo = (ops ptr_rc, simm16);
130  let EncoderMethod = "getMemEncodingMMImm16";
131  let ParserMatchClass = MipsMemSimm16AsmOperand;
132  let OperandType = "OPERAND_MEMORY";
133}
134
135def MipsMemUimm4AsmOperand : AsmOperandClass {
136  let Name = "MemOffsetUimm4";
137  let SuperClasses = [MipsMemAsmOperand];
138  let RenderMethod = "addMemOperands";
139  let ParserMethod = "parseMemOperand";
140  let PredicateMethod = "isMemWithUimmOffsetSP<6>";
141}
142
143def mem_mm_4sp : Operand<i32> {
144  let PrintMethod = "printMemOperand";
145  let MIOperandInfo = (ops ptr_sp_rc, uimm8);
146  let EncoderMethod = "getMemEncodingMMImm4sp";
147  let ParserMatchClass = MipsMemUimm4AsmOperand;
148  let OperandType = "OPERAND_MEMORY";
149}
150
151def jmptarget_mm : Operand<OtherVT> {
152  let EncoderMethod = "getJumpTargetOpValueMM";
153}
154
155def calltarget_mm : Operand<iPTR> {
156  let EncoderMethod = "getJumpTargetOpValueMM";
157}
158
159def brtarget7_mm : Operand<OtherVT> {
160  let EncoderMethod = "getBranchTarget7OpValueMM";
161  let OperandType   = "OPERAND_PCREL";
162  let DecoderMethod = "DecodeBranchTarget7MM";
163  let ParserMatchClass = MipsJumpTargetAsmOperand;
164}
165
166def brtarget10_mm : Operand<OtherVT> {
167  let EncoderMethod = "getBranchTargetOpValueMMPC10";
168  let OperandType   = "OPERAND_PCREL";
169  let DecoderMethod = "DecodeBranchTarget10MM";
170  let ParserMatchClass = MipsJumpTargetAsmOperand;
171}
172
173def brtarget_mm : Operand<OtherVT> {
174  let EncoderMethod = "getBranchTargetOpValueMM";
175  let OperandType   = "OPERAND_PCREL";
176  let DecoderMethod = "DecodeBranchTargetMM";
177  let ParserMatchClass = MipsJumpTargetAsmOperand;
178}
179
180def simm23_lsl2 : Operand<i32> {
181  let EncoderMethod = "getSimm23Lsl2Encoding";
182  let DecoderMethod = "DecodeSimm23Lsl2";
183}
184
185class CompactBranchMM<string opstr, DAGOperand opnd, PatFrag cond_op,
186                      RegisterOperand RO> :
187  InstSE<(outs), (ins RO:$rs, opnd:$offset),
188         !strconcat(opstr, "\t$rs, $offset"), [], II_BCCZC, FrmI> {
189  let isBranch = 1;
190  let isTerminator = 1;
191  let hasDelaySlot = 0;
192  let Defs = [AT];
193}
194
195let canFoldAsLoad = 1 in
196class LoadLeftRightMM<string opstr, SDNode OpNode, RegisterOperand RO,
197                      Operand MemOpnd, InstrItinClass Itin> :
198  InstSE<(outs RO:$rt), (ins MemOpnd:$addr, RO:$src),
199         !strconcat(opstr, "\t$rt, $addr"),
200         [(set RO:$rt, (OpNode addrimm12:$addr, RO:$src))],
201         Itin, FrmI> {
202  let DecoderMethod = "DecodeMemMMImm12";
203  string Constraints = "$src = $rt";
204}
205
206class StoreLeftRightMM<string opstr, SDNode OpNode, RegisterOperand RO,
207                       Operand MemOpnd, InstrItinClass Itin>:
208  InstSE<(outs), (ins RO:$rt, MemOpnd:$addr),
209         !strconcat(opstr, "\t$rt, $addr"),
210         [(OpNode RO:$rt, addrimm12:$addr)], Itin, FrmI> {
211  let DecoderMethod = "DecodeMemMMImm12";
212}
213
214/// A register pair used by movep instruction.
215def MovePRegPairAsmOperand : AsmOperandClass {
216  let Name = "MovePRegPair";
217  let ParserMethod = "parseMovePRegPair";
218  let PredicateMethod = "isMovePRegPair";
219}
220
221def movep_regpair : Operand<i32> {
222  let EncoderMethod = "getMovePRegPairOpValue";
223  let ParserMatchClass = MovePRegPairAsmOperand;
224  let PrintMethod = "printRegisterList";
225  let DecoderMethod = "DecodeMovePRegPair";
226  let MIOperandInfo = (ops ptr_rc, ptr_rc);
227}
228
229class MovePMM16<string opstr, RegisterOperand RO> :
230MicroMipsInst16<(outs movep_regpair:$dst_regs), (ins RO:$rs, RO:$rt),
231                 !strconcat(opstr, "\t$dst_regs, $rs, $rt"), [],
232                 NoItinerary, FrmR> {
233  let isReMaterializable = 1;
234}
235
236/// A register pair used by load/store pair instructions.
237def RegPairAsmOperand : AsmOperandClass {
238  let Name = "RegPair";
239  let ParserMethod = "parseRegisterPair";
240  let PredicateMethod = "isRegPair";
241}
242
243def regpair : Operand<i32> {
244  let EncoderMethod = "getRegisterPairOpValue";
245  let ParserMatchClass = RegPairAsmOperand;
246  let PrintMethod = "printRegisterPair";
247  let DecoderMethod = "DecodeRegPairOperand";
248  let MIOperandInfo = (ops ptr_rc, ptr_rc);
249}
250
251class StorePairMM<string opstr, ComplexPattern Addr = addr>
252    :  InstSE<(outs), (ins regpair:$rt, mem_simm12:$addr),
253         !strconcat(opstr, "\t$rt, $addr"), [], II_SWP, FrmI, opstr> {
254  let DecoderMethod = "DecodeMemMMImm12";
255  let mayStore = 1;
256}
257
258class LoadPairMM<string opstr, ComplexPattern Addr = addr>
259    : InstSE<(outs regpair:$rt), (ins mem_simm12:$addr),
260          !strconcat(opstr, "\t$rt, $addr"), [], II_LWP, FrmI, opstr> {
261  let DecoderMethod = "DecodeMemMMImm12";
262  let mayLoad = 1;
263}
264
265class LLBaseMM<string opstr, RegisterOperand RO> :
266  InstSE<(outs RO:$rt), (ins mem_mm_12:$addr),
267         !strconcat(opstr, "\t$rt, $addr"), [], II_LL, FrmI> {
268  let DecoderMethod = "DecodeMemMMImm12";
269  let mayLoad = 1;
270}
271
272class LLEBaseMM<string opstr, RegisterOperand RO> :
273  InstSE<(outs RO:$rt), (ins mem_simm9:$addr),
274         !strconcat(opstr, "\t$rt, $addr"), [], II_LLE, FrmI> {
275  let DecoderMethod = "DecodeMemMMImm9";
276  let mayLoad = 1;
277}
278
279class SCBaseMM<string opstr, RegisterOperand RO> :
280  InstSE<(outs RO:$dst), (ins RO:$rt, mem_mm_12:$addr),
281         !strconcat(opstr, "\t$rt, $addr"), [], II_SC, FrmI> {
282  let DecoderMethod = "DecodeMemMMImm12";
283  let mayStore = 1;
284  let Constraints = "$rt = $dst";
285}
286
287class SCEBaseMM<string opstr, RegisterOperand RO> :
288  InstSE<(outs RO:$dst), (ins RO:$rt, mem_simm9:$addr),
289         !strconcat(opstr, "\t$rt, $addr"), [], II_SCE, FrmI> {
290  let DecoderMethod = "DecodeMemMMImm9";
291  let mayStore = 1;
292  let Constraints = "$rt = $dst";
293}
294
295class LoadMM<string opstr, DAGOperand RO, SDPatternOperator OpNode = null_frag,
296             InstrItinClass Itin = NoItinerary, DAGOperand MO = mem_mm_12> :
297  InstSE<(outs RO:$rt), (ins MO:$addr),
298         !strconcat(opstr, "\t$rt, $addr"),
299         [(set RO:$rt, (OpNode addrimm12:$addr))], Itin, FrmI, opstr> {
300  let DecoderMethod = "DecodeMemMMImm12";
301  let canFoldAsLoad = 1;
302  let mayLoad = 1;
303}
304
305class ArithRMM16<string opstr, RegisterOperand RO, bit isComm = 0,
306                 InstrItinClass Itin = NoItinerary,
307                 SDPatternOperator OpNode = null_frag> :
308  MicroMipsInst16<(outs RO:$rd), (ins RO:$rs, RO:$rt),
309                  !strconcat(opstr, "\t$rd, $rs, $rt"),
310                  [(set RO:$rd, (OpNode RO:$rs, RO:$rt))], Itin, FrmR> {
311  let isCommutable = isComm;
312}
313
314class AndImmMM16<string opstr, RegisterOperand RO,
315                 InstrItinClass Itin = NoItinerary> :
316  MicroMipsInst16<(outs RO:$rd), (ins RO:$rs, uimm4_andi:$imm),
317                  !strconcat(opstr, "\t$rd, $rs, $imm"), [], Itin, FrmI>;
318
319class LogicRMM16<string opstr, RegisterOperand RO,
320                 InstrItinClass Itin = NoItinerary,
321                 SDPatternOperator OpNode = null_frag> :
322  MicroMipsInst16<(outs RO:$dst), (ins RO:$rs, RO:$rt),
323         !strconcat(opstr, "\t$rt, $rs"),
324         [(set RO:$dst, (OpNode RO:$rs, RO:$rt))], Itin, FrmR> {
325  let isCommutable = 1;
326  let Constraints = "$rt = $dst";
327}
328
329class NotMM16<string opstr, RegisterOperand RO> :
330  MicroMipsInst16<(outs RO:$rt), (ins RO:$rs),
331         !strconcat(opstr, "\t$rt, $rs"),
332         [(set RO:$rt, (not RO:$rs))], II_NOT, FrmR>;
333
334class ShiftIMM16<string opstr, Operand ImmOpnd, RegisterOperand RO,
335                 InstrItinClass Itin = NoItinerary> :
336  MicroMipsInst16<(outs RO:$rd), (ins RO:$rt, ImmOpnd:$shamt),
337                  !strconcat(opstr, "\t$rd, $rt, $shamt"), [], Itin, FrmR>;
338
339class LoadMM16<string opstr, DAGOperand RO, SDPatternOperator OpNode,
340               InstrItinClass Itin, Operand MemOpnd> :
341  MicroMipsInst16<(outs RO:$rt), (ins MemOpnd:$addr),
342                  !strconcat(opstr, "\t$rt, $addr"), [], Itin, FrmI> {
343  let DecoderMethod = "DecodeMemMMImm4";
344  let canFoldAsLoad = 1;
345  let mayLoad = 1;
346}
347
348class StoreMM16<string opstr, DAGOperand RTOpnd, DAGOperand RO,
349                SDPatternOperator OpNode, InstrItinClass Itin,
350                Operand MemOpnd> :
351  MicroMipsInst16<(outs), (ins RTOpnd:$rt, MemOpnd:$addr),
352                  !strconcat(opstr, "\t$rt, $addr"), [], Itin, FrmI> {
353  let DecoderMethod = "DecodeMemMMImm4";
354  let mayStore = 1;
355}
356
357class LoadSPMM16<string opstr, DAGOperand RO, InstrItinClass Itin,
358                 Operand MemOpnd> :
359  MicroMipsInst16<(outs RO:$rt), (ins MemOpnd:$offset),
360                  !strconcat(opstr, "\t$rt, $offset"), [], Itin, FrmI> {
361  let DecoderMethod = "DecodeMemMMSPImm5Lsl2";
362  let canFoldAsLoad = 1;
363  let mayLoad = 1;
364}
365
366class StoreSPMM16<string opstr, DAGOperand RO, InstrItinClass Itin,
367                  Operand MemOpnd> :
368  MicroMipsInst16<(outs), (ins RO:$rt, MemOpnd:$offset),
369                  !strconcat(opstr, "\t$rt, $offset"), [], Itin, FrmI> {
370  let DecoderMethod = "DecodeMemMMSPImm5Lsl2";
371  let mayStore = 1;
372}
373
374class LoadGPMM16<string opstr, DAGOperand RO, InstrItinClass Itin,
375                 Operand MemOpnd> :
376  MicroMipsInst16<(outs RO:$rt), (ins MemOpnd:$offset),
377                  !strconcat(opstr, "\t$rt, $offset"), [], Itin, FrmI> {
378  let DecoderMethod = "DecodeMemMMGPImm7Lsl2";
379  let canFoldAsLoad = 1;
380  let mayLoad = 1;
381}
382
383class AddImmUR2<string opstr, RegisterOperand RO> :
384  MicroMipsInst16<(outs RO:$rd), (ins RO:$rs, simm3_lsa2:$imm),
385                  !strconcat(opstr, "\t$rd, $rs, $imm"),
386                  [], II_ADDIU, FrmR> {
387  let isCommutable = 1;
388}
389
390class AddImmUS5<string opstr, RegisterOperand RO> :
391  MicroMipsInst16<(outs RO:$dst), (ins RO:$rd, simm4:$imm),
392                  !strconcat(opstr, "\t$rd, $imm"), [], II_ADDIU, FrmR> {
393  let Constraints = "$rd = $dst";
394}
395
396class AddImmUR1SP<string opstr, RegisterOperand RO> :
397  MicroMipsInst16<(outs RO:$rd), (ins uimm6_lsl2:$imm),
398                  !strconcat(opstr, "\t$rd, $imm"), [], II_ADDIU, FrmR>;
399
400class AddImmUSP<string opstr> :
401  MicroMipsInst16<(outs), (ins simm9_addiusp:$imm),
402                  !strconcat(opstr, "\t$imm"), [], II_ADDIU, FrmI>;
403
404class MoveFromHILOMM<string opstr, RegisterOperand RO, Register UseReg> :
405      MicroMipsInst16<(outs RO:$rd), (ins), !strconcat(opstr, "\t$rd"),
406  [], II_MFHI_MFLO, FrmR> {
407  let Uses = [UseReg];
408  let hasSideEffects = 0;
409}
410
411class MoveMM16<string opstr, RegisterOperand RO>
412    :  MicroMipsInst16<(outs RO:$rd), (ins RO:$rs),
413                       !strconcat(opstr, "\t$rd, $rs"), [], II_MOVE, FrmR> {
414  let isReMaterializable = 1;
415}
416
417class LoadImmMM16<string opstr, Operand Od, RegisterOperand RO> :
418  MicroMipsInst16<(outs RO:$rd), (ins Od:$imm),
419                  !strconcat(opstr, "\t$rd, $imm"), [], II_LI, FrmI> {
420  let isReMaterializable = 1;
421}
422
423// 16-bit Jump and Link (Call)
424class JumpLinkRegMM16<string opstr, RegisterOperand RO> :
425  MicroMipsInst16<(outs), (ins RO:$rs), !strconcat(opstr, "\t$rs"),
426           [(MipsJmpLink RO:$rs)], II_JALR, FrmR>, PredicateControl {
427  let isCall = 1;
428  let hasDelaySlot = 1;
429  let Defs = [RA];
430}
431
432// 16-bit Jump Reg
433class JumpRegMM16<string opstr, RegisterOperand RO> :
434  MicroMipsInst16<(outs), (ins RO:$rs), !strconcat(opstr, "\t$rs"),
435           [], II_JR, FrmR> {
436  let hasDelaySlot = 1;
437  let isBranch = 1;
438  let isIndirectBranch = 1;
439}
440
441// Base class for JRADDIUSP instruction.
442class JumpRAddiuStackMM16 :
443  MicroMipsInst16<(outs), (ins uimm5_lsl2:$imm), "jraddiusp\t$imm",
444                  [], II_JRADDIUSP, FrmR> {
445  let isTerminator = 1;
446  let isBarrier = 1;
447  let isBranch = 1;
448  let isIndirectBranch = 1;
449}
450
451// 16-bit Jump and Link (Call) - Short Delay Slot
452class JumpLinkRegSMM16<string opstr, RegisterOperand RO> :
453  MicroMipsInst16<(outs), (ins RO:$rs), !strconcat(opstr, "\t$rs"),
454           [], II_JALRS, FrmR> {
455  let isCall = 1;
456  let hasDelaySlot = 1;
457  let Defs = [RA];
458}
459
460// 16-bit Jump Register Compact - No delay slot
461class JumpRegCMM16<string opstr, RegisterOperand RO> :
462  MicroMipsInst16<(outs), (ins RO:$rs), !strconcat(opstr, "\t$rs"),
463                  [], II_JRC, FrmR> {
464  let isTerminator = 1;
465  let isBarrier = 1;
466  let isBranch = 1;
467  let isIndirectBranch = 1;
468}
469
470// Break16 and Sdbbp16
471class BrkSdbbp16MM<string opstr, InstrItinClass Itin> :
472  MicroMipsInst16<(outs), (ins uimm4:$code_),
473                  !strconcat(opstr, "\t$code_"),
474                  [], Itin, FrmOther>;
475
476class CBranchZeroMM<string opstr, DAGOperand opnd, RegisterOperand RO> :
477  MicroMipsInst16<(outs), (ins RO:$rs, opnd:$offset),
478                  !strconcat(opstr, "\t$rs, $offset"), [], II_BCCZ, FrmI> {
479  let isBranch = 1;
480  let isTerminator = 1;
481  let hasDelaySlot = 1;
482  let Defs = [AT];
483}
484
485// MicroMIPS Jump and Link (Call) - Short Delay Slot
486let isCall = 1, hasDelaySlot = 1, Defs = [RA] in {
487  class JumpLinkMM<string opstr, DAGOperand opnd> :
488    InstSE<(outs), (ins opnd:$target), !strconcat(opstr, "\t$target"),
489           [], II_JALS, FrmJ, opstr> {
490    let DecoderMethod = "DecodeJumpTargetMM";
491  }
492
493  class JumpLinkRegMM<string opstr, RegisterOperand RO>:
494    InstSE<(outs RO:$rd), (ins RO:$rs), !strconcat(opstr, "\t$rd, $rs"),
495            [], II_JALRS, FrmR>;
496
497  class BranchCompareToZeroLinkMM<string opstr, DAGOperand opnd,
498                                  RegisterOperand RO> :
499    InstSE<(outs), (ins RO:$rs, opnd:$offset),
500           !strconcat(opstr, "\t$rs, $offset"), [], II_BCCZALS, FrmI, opstr>;
501}
502
503class LoadWordIndexedScaledMM<string opstr, RegisterOperand RO,
504                              SDPatternOperator OpNode = null_frag> :
505  InstSE<(outs RO:$rd), (ins PtrRC:$base, PtrRC:$index),
506         !strconcat(opstr, "\t$rd, ${index}(${base})"), [], II_LWXS, FrmFI>;
507
508class PrefetchIndexed<string opstr> :
509  InstSE<(outs), (ins PtrRC:$base, PtrRC:$index, uimm5:$hint),
510         !strconcat(opstr, "\t$hint, ${index}(${base})"), [], II_PREF, FrmOther>;
511
512class AddImmUPC<string opstr, RegisterOperand RO> :
513  InstSE<(outs RO:$rs), (ins simm23_lsl2:$imm),
514         !strconcat(opstr, "\t$rs, $imm"), [], II_ADDIU, FrmR>;
515
516/// A list of registers used by load/store multiple instructions.
517def RegListAsmOperand : AsmOperandClass {
518  let Name = "RegList";
519  let ParserMethod = "parseRegisterList";
520}
521
522def reglist : Operand<i32> {
523  let EncoderMethod = "getRegisterListOpValue";
524  let ParserMatchClass = RegListAsmOperand;
525  let PrintMethod = "printRegisterList";
526  let DecoderMethod = "DecodeRegListOperand";
527}
528
529def RegList16AsmOperand : AsmOperandClass {
530  let Name = "RegList16";
531  let ParserMethod = "parseRegisterList";
532  let PredicateMethod = "isRegList16";
533  let RenderMethod = "addRegListOperands";
534}
535
536def reglist16 : Operand<i32> {
537  let EncoderMethod = "getRegisterListOpValue16";
538  let DecoderMethod = "DecodeRegListOperand16";
539  let PrintMethod = "printRegisterList";
540  let ParserMatchClass = RegList16AsmOperand;
541}
542
543class StoreMultMM<string opstr,
544            InstrItinClass Itin = NoItinerary, ComplexPattern Addr = addr> :
545  InstSE<(outs), (ins reglist:$rt, mem_mm_12:$addr),
546         !strconcat(opstr, "\t$rt, $addr"), [], Itin, FrmI, opstr> {
547  let DecoderMethod = "DecodeMemMMImm12";
548  let mayStore = 1;
549}
550
551class LoadMultMM<string opstr,
552            InstrItinClass Itin = NoItinerary, ComplexPattern Addr = addr> :
553  InstSE<(outs reglist:$rt), (ins mem_mm_12:$addr),
554          !strconcat(opstr, "\t$rt, $addr"), [], Itin, FrmI, opstr> {
555  let DecoderMethod = "DecodeMemMMImm12";
556  let mayLoad = 1;
557}
558
559class StoreMultMM16<string opstr,
560                    InstrItinClass Itin = NoItinerary,
561                    ComplexPattern Addr = addr> :
562  MicroMipsInst16<(outs), (ins reglist16:$rt, mem_mm_4sp:$addr),
563                  !strconcat(opstr, "\t$rt, $addr"), [], Itin, FrmI> {
564  let DecoderMethod = "DecodeMemMMReglistImm4Lsl2";
565  let mayStore = 1;
566}
567
568class LoadMultMM16<string opstr,
569                   InstrItinClass Itin = NoItinerary,
570                   ComplexPattern Addr = addr> :
571  MicroMipsInst16<(outs reglist16:$rt), (ins mem_mm_4sp:$addr),
572                  !strconcat(opstr, "\t$rt, $addr"), [], Itin, FrmI> {
573  let DecoderMethod = "DecodeMemMMReglistImm4Lsl2";
574  let mayLoad = 1;
575}
576
577class UncondBranchMM16<string opstr> :
578  MicroMipsInst16<(outs), (ins brtarget10_mm:$offset),
579                  !strconcat(opstr, "\t$offset"),
580                  [], II_B, FrmI> {
581  let isBranch = 1;
582  let isTerminator = 1;
583  let isBarrier = 1;
584  let hasDelaySlot = 1;
585  let Predicates = [RelocPIC, InMicroMips];
586  let Defs = [AT];
587}
588
589def ADDU16_MM : ArithRMM16<"addu16", GPRMM16Opnd, 1, II_ADDU, add>,
590    ARITH_FM_MM16<0>, ISA_MICROMIPS_NOT_32R6_64R6;
591def AND16_MM : LogicRMM16<"and16", GPRMM16Opnd, II_AND, and>,
592    LOGIC_FM_MM16<0x2>, ISA_MICROMIPS_NOT_32R6_64R6;
593def ANDI16_MM : AndImmMM16<"andi16", GPRMM16Opnd, II_AND>, ANDI_FM_MM16<0x0b>,
594    ISA_MICROMIPS_NOT_32R6_64R6;
595def NOT16_MM : NotMM16<"not16", GPRMM16Opnd>, LOGIC_FM_MM16<0x0>,
596    ISA_MICROMIPS_NOT_32R6_64R6;
597def OR16_MM : LogicRMM16<"or16", GPRMM16Opnd, II_OR, or>, LOGIC_FM_MM16<0x3>,
598    ISA_MICROMIPS_NOT_32R6_64R6;
599def SLL16_MM : ShiftIMM16<"sll16", uimm3_shift, GPRMM16Opnd, II_SLL>,
600    SHIFT_FM_MM16<0>, ISA_MICROMIPS_NOT_32R6_64R6;
601def SRL16_MM : ShiftIMM16<"srl16", uimm3_shift, GPRMM16Opnd, II_SRL>,
602    SHIFT_FM_MM16<1>, ISA_MICROMIPS_NOT_32R6_64R6;
603
604def SUBU16_MM : ArithRMM16<"subu16", GPRMM16Opnd, 0, II_SUBU, sub>,
605                ARITH_FM_MM16<1>, ISA_MICROMIPS_NOT_32R6_64R6;
606def XOR16_MM : LogicRMM16<"xor16", GPRMM16Opnd, II_XOR, xor>,
607               LOGIC_FM_MM16<0x1>, ISA_MICROMIPS_NOT_32R6_64R6;
608def LBU16_MM : LoadMM16<"lbu16", GPRMM16Opnd, zextloadi8, II_LBU,
609                        mem_mm_4>, LOAD_STORE_FM_MM16<0x02>;
610def LHU16_MM : LoadMM16<"lhu16", GPRMM16Opnd, zextloadi16, II_LHU,
611                        mem_mm_4_lsl1>, LOAD_STORE_FM_MM16<0x0a>;
612def LW16_MM : LoadMM16<"lw16", GPRMM16Opnd, load, II_LW, mem_mm_4_lsl2>,
613                      LOAD_STORE_FM_MM16<0x1a>;
614def SB16_MM : StoreMM16<"sb16", GPRMM16OpndZero, GPRMM16Opnd, truncstorei8,
615                        II_SB, mem_mm_4>, LOAD_STORE_FM_MM16<0x22>;
616def SH16_MM : StoreMM16<"sh16", GPRMM16OpndZero, GPRMM16Opnd, truncstorei16,
617                        II_SH, mem_mm_4_lsl1>,
618                        LOAD_STORE_FM_MM16<0x2a>;
619def SW16_MM : StoreMM16<"sw16", GPRMM16OpndZero, GPRMM16Opnd, store, II_SW,
620                        mem_mm_4_lsl2>, LOAD_STORE_FM_MM16<0x3a>;
621def LWGP_MM : LoadGPMM16<"lw", GPRMM16Opnd, II_LW, mem_mm_gp_simm7_lsl2>,
622                         LOAD_GP_FM_MM16<0x19>;
623def LWSP_MM : LoadSPMM16<"lw", GPR32Opnd, II_LW, mem_mm_sp_imm5_lsl2>,
624              LOAD_STORE_SP_FM_MM16<0x12>;
625def SWSP_MM : StoreSPMM16<"sw", GPR32Opnd, II_SW, mem_mm_sp_imm5_lsl2>,
626              LOAD_STORE_SP_FM_MM16<0x32>;
627def ADDIUR1SP_MM : AddImmUR1SP<"addiur1sp", GPRMM16Opnd>, ADDIUR1SP_FM_MM16;
628def ADDIUR2_MM : AddImmUR2<"addiur2", GPRMM16Opnd>, ADDIUR2_FM_MM16;
629def ADDIUS5_MM : AddImmUS5<"addius5", GPR32Opnd>, ADDIUS5_FM_MM16;
630def ADDIUSP_MM : AddImmUSP<"addiusp">, ADDIUSP_FM_MM16;
631def MFHI16_MM : MoveFromHILOMM<"mfhi", GPR32Opnd, AC0>, MFHILO_FM_MM16<0x10>;
632def MFLO16_MM : MoveFromHILOMM<"mflo", GPR32Opnd, AC0>, MFHILO_FM_MM16<0x12>;
633def MOVE16_MM : MoveMM16<"move", GPR32Opnd>, MOVE_FM_MM16<0x03>;
634def MOVEP_MM : MovePMM16<"movep", GPRMM16OpndMoveP>, MOVEP_FM_MM16,
635               ISA_MICROMIPS_NOT_32R6_64R6;
636def LI16_MM : LoadImmMM16<"li16", li16_imm, GPRMM16Opnd>, LI_FM_MM16,
637              IsAsCheapAsAMove;
638def JALR16_MM : JumpLinkRegMM16<"jalr", GPR32Opnd>, JALR_FM_MM16<0x0e>,
639                ISA_MICROMIPS32_NOT_MIPS32R6;
640def JALRS16_MM : JumpLinkRegSMM16<"jalrs16", GPR32Opnd>, JALR_FM_MM16<0x0f>;
641def JRC16_MM : JumpRegCMM16<"jrc", GPR32Opnd>, JALR_FM_MM16<0x0d>;
642def JRADDIUSP : JumpRAddiuStackMM16, JRADDIUSP_FM_MM16<0x18>;
643def JR16_MM : JumpRegMM16<"jr16", GPR32Opnd>, JALR_FM_MM16<0x0c>;
644def BEQZ16_MM : CBranchZeroMM<"beqz16", brtarget7_mm, GPRMM16Opnd>,
645                BEQNEZ_FM_MM16<0x23>;
646def BNEZ16_MM : CBranchZeroMM<"bnez16", brtarget7_mm, GPRMM16Opnd>,
647                BEQNEZ_FM_MM16<0x2b>;
648def B16_MM : UncondBranchMM16<"b16">, B16_FM;
649def BREAK16_MM : BrkSdbbp16MM<"break16", II_BREAK>, BRKSDBBP16_FM_MM<0x28>,
650    ISA_MICROMIPS_NOT_32R6_64R6;
651def SDBBP16_MM : BrkSdbbp16MM<"sdbbp16", II_SDBBP>, BRKSDBBP16_FM_MM<0x2C>,
652    ISA_MICROMIPS_NOT_32R6_64R6;
653
654let DecoderNamespace = "MicroMips" in {
655  /// Load and Store Instructions - multiple
656  def SWM16_MM : StoreMultMM16<"swm16", II_SWM>, LWM_FM_MM16<0x5>,
657                 ISA_MICROMIPS32_NOT_MIPS32R6;
658  def LWM16_MM : LoadMultMM16<"lwm16", II_LWM>, LWM_FM_MM16<0x4>,
659                 ISA_MICROMIPS32_NOT_MIPS32R6;
660  let AdditionalPredicates = [InMicroMips] in {
661    def CFC2_MM : InstSE<(outs GPR32Opnd:$rt), (ins COP2Opnd:$impl),
662                         "cfc2\t$rt, $impl", [], II_CFC2, FrmFR, "cfc2">,
663                  POOL32A_CFTC2_FM_MM<0b1100110100>;
664    def CTC2_MM : InstSE<(outs COP2Opnd:$impl), (ins GPR32Opnd:$rt),
665                         "ctc2\t$rt, $impl", [], II_CTC2, FrmFR, "ctc2">,
666                  POOL32A_CFTC2_FM_MM<0b1101110100>;
667  }
668}
669
670class WaitMM<string opstr> :
671  InstSE<(outs), (ins uimm10:$code_), !strconcat(opstr, "\t$code_"), [],
672         II_WAIT, FrmOther, opstr>;
673
674let DecoderNamespace = "MicroMips", Predicates = [InMicroMips, NotMips32r6,
675                                                  NotMips64r6] in {
676  /// Compact Branch Instructions
677  def BEQZC_MM : CompactBranchMM<"beqzc", brtarget_mm, seteq, GPR32Opnd>,
678                 COMPACT_BRANCH_FM_MM<0x7>;
679  def BNEZC_MM : CompactBranchMM<"bnezc", brtarget_mm, setne, GPR32Opnd>,
680                 COMPACT_BRANCH_FM_MM<0x5>;
681}
682let DecoderNamespace = "MicroMips", Predicates = [InMicroMips] in {
683  /// Arithmetic Instructions (ALU Immediate)
684  def ADDiu_MM : MMRel, ArithLogicI<"addiu", simm16, GPR32Opnd, II_ADDIU>,
685                 ADDI_FM_MM<0xc>;
686  def ADDi_MM  : MMRel, ArithLogicI<"addi", simm16, GPR32Opnd, II_ADDI>,
687                 ADDI_FM_MM<0x4>;
688  def SLTi_MM  : MMRel, SetCC_I<"slti", setlt, simm16, immSExt16, GPR32Opnd>,
689                 SLTI_FM_MM<0x24>;
690  def SLTiu_MM : MMRel, SetCC_I<"sltiu", setult, simm16, immSExt16, GPR32Opnd>,
691                 SLTI_FM_MM<0x2c>;
692  def ANDi_MM  : MMRel, ArithLogicI<"andi", uimm16, GPR32Opnd, II_ANDI>,
693                 ADDI_FM_MM<0x34>;
694  def ORi_MM   : MMRel, ArithLogicI<"ori", uimm16, GPR32Opnd, II_ORI, immZExt16,
695                                    or>, ADDI_FM_MM<0x14>;
696  def XORi_MM  : MMRel, ArithLogicI<"xori", uimm16, GPR32Opnd, II_XORI,
697                                    immZExt16, xor>, ADDI_FM_MM<0x1c>;
698  def LUi_MM   : MMRel, LoadUpper<"lui", GPR32Opnd, uimm16_relaxed>, LUI_FM_MM;
699
700  def LEA_ADDiu_MM : MMRel, EffectiveAddress<"addiu", GPR32Opnd>,
701                     LW_FM_MM<0xc>;
702
703  /// Arithmetic Instructions (3-Operand, R-Type)
704  def ADDu_MM  : MMRel, ArithLogicR<"addu", GPR32Opnd, 1, II_ADDU, add>,
705                 ADD_FM_MM<0, 0x150>;
706  def SUBu_MM  : MMRel, ArithLogicR<"subu", GPR32Opnd, 0, II_SUBU, sub>,
707                 ADD_FM_MM<0, 0x1d0>;
708  def MUL_MM   : MMRel, ArithLogicR<"mul", GPR32Opnd, 1, II_MUL>,
709                 ADD_FM_MM<0, 0x210>;
710  def ADD_MM   : MMRel, ArithLogicR<"add", GPR32Opnd, 1, II_ADD>,
711                 ADD_FM_MM<0, 0x110>;
712  def SUB_MM   : MMRel, ArithLogicR<"sub", GPR32Opnd, 0, II_SUB>,
713                 ADD_FM_MM<0, 0x190>;
714  def SLT_MM   : MMRel, SetCC_R<"slt", setlt, GPR32Opnd>, ADD_FM_MM<0, 0x350>;
715  def SLTu_MM  : MMRel, SetCC_R<"sltu", setult, GPR32Opnd>,
716                 ADD_FM_MM<0, 0x390>;
717  def AND_MM   : MMRel, ArithLogicR<"and", GPR32Opnd, 1, II_AND, and>,
718                 ADD_FM_MM<0, 0x250>;
719  def OR_MM    : MMRel, ArithLogicR<"or", GPR32Opnd, 1, II_OR, or>,
720                 ADD_FM_MM<0, 0x290>;
721  def XOR_MM   : MMRel, ArithLogicR<"xor", GPR32Opnd, 1, II_XOR, xor>,
722                 ADD_FM_MM<0, 0x310>;
723  def NOR_MM   : MMRel, LogicNOR<"nor", GPR32Opnd>, ADD_FM_MM<0, 0x2d0>;
724  def MULT_MM  : MMRel, Mult<"mult", II_MULT, GPR32Opnd, [HI0, LO0]>,
725                 MULT_FM_MM<0x22c>;
726  def MULTu_MM : MMRel, Mult<"multu", II_MULTU, GPR32Opnd, [HI0, LO0]>,
727                 MULT_FM_MM<0x26c>;
728  def SDIV_MM  : MMRel, Div<"div", II_DIV, GPR32Opnd, [HI0, LO0]>,
729                 MULT_FM_MM<0x2ac>, ISA_MIPS1_NOT_32R6_64R6;
730  def UDIV_MM  : MMRel, Div<"divu", II_DIVU, GPR32Opnd, [HI0, LO0]>,
731                 MULT_FM_MM<0x2ec>, ISA_MIPS1_NOT_32R6_64R6;
732
733  /// Arithmetic Instructions with PC and Immediate
734  def ADDIUPC_MM : AddImmUPC<"addiupc", GPRMM16Opnd>, ADDIUPC_FM_MM;
735
736  /// Shift Instructions
737  def SLL_MM   : MMRel, shift_rotate_imm<"sll", uimm5, GPR32Opnd, II_SLL>,
738                 SRA_FM_MM<0, 0>;
739  def SRL_MM   : MMRel, shift_rotate_imm<"srl", uimm5, GPR32Opnd, II_SRL>,
740                 SRA_FM_MM<0x40, 0>;
741  def SRA_MM   : MMRel, shift_rotate_imm<"sra", uimm5, GPR32Opnd, II_SRA>,
742                 SRA_FM_MM<0x80, 0>;
743  def SLLV_MM  : MMRel, shift_rotate_reg<"sllv", GPR32Opnd, II_SLLV>,
744                 SRLV_FM_MM<0x10, 0>;
745  def SRLV_MM  : MMRel, shift_rotate_reg<"srlv", GPR32Opnd, II_SRLV>,
746                 SRLV_FM_MM<0x50, 0>;
747  def SRAV_MM  : MMRel, shift_rotate_reg<"srav", GPR32Opnd, II_SRAV>,
748                 SRLV_FM_MM<0x90, 0>;
749  def ROTR_MM  : MMRel, shift_rotate_imm<"rotr", uimm5, GPR32Opnd, II_ROTR>,
750                 SRA_FM_MM<0xc0, 0> {
751    list<dag> Pattern = [(set GPR32Opnd:$rd,
752                          (rotr GPR32Opnd:$rt, immZExt5:$shamt))];
753  }
754  def ROTRV_MM : MMRel, shift_rotate_reg<"rotrv", GPR32Opnd, II_ROTRV>,
755                 SRLV_FM_MM<0xd0, 0> {
756    list<dag> Pattern = [(set GPR32Opnd:$rd,
757                          (rotr GPR32Opnd:$rt, GPR32Opnd:$rs))];
758  }
759
760  /// Load and Store Instructions - aligned
761  let DecoderMethod = "DecodeMemMMImm16" in {
762    def LB_MM  : LoadMemory<"lb", GPR32Opnd, mem_mm_16, null_frag, II_LB>,
763                 MMRel, LW_FM_MM<0x7>;
764    def LBu_MM : LoadMemory<"lbu", GPR32Opnd, mem_mm_16, null_frag, II_LBU>,
765                 MMRel, LW_FM_MM<0x5>;
766    def LH_MM  : LoadMemory<"lh", GPR32Opnd, mem_simm16, sextloadi16, II_LH,
767                            addrDefault>, MMRel, LW_FM_MM<0xf>;
768    def LHu_MM : LoadMemory<"lhu", GPR32Opnd, mem_simm16, zextloadi16, II_LHU>,
769                 MMRel, LW_FM_MM<0xd>;
770    def LW_MM  : Load<"lw", GPR32Opnd, null_frag, II_LW>, MMRel, LW_FM_MM<0x3f>;
771    def SB_MM  : Store<"sb", GPR32Opnd, null_frag, II_SB>, MMRel,
772                 LW_FM_MM<0x6>;
773    def SH_MM  : Store<"sh", GPR32Opnd, null_frag, II_SH>, MMRel,
774                 LW_FM_MM<0xe>;
775    def SW_MM  : Store<"sw", GPR32Opnd, null_frag, II_SW>, MMRel,
776                 LW_FM_MM<0x3e>;
777  }
778
779  let DecoderMethod = "DecodeMemMMImm9" in {
780    def LBE_MM  : Load<"lbe", GPR32Opnd, null_frag, II_LBE>,
781                  POOL32C_LHUE_FM_MM<0x18, 0x6, 0x4>;
782    def LBuE_MM : Load<"lbue", GPR32Opnd, null_frag, II_LBUE>,
783                  POOL32C_LHUE_FM_MM<0x18, 0x6, 0x0>;
784    def LHE_MM  : LoadMemory<"lhe", GPR32Opnd, mem_simm9, null_frag, II_LHE>,
785                  POOL32C_LHUE_FM_MM<0x18, 0x6, 0x5>;
786    def LHuE_MM : LoadMemory<"lhue", GPR32Opnd, mem_simm9, null_frag, II_LHUE>,
787                  POOL32C_LHUE_FM_MM<0x18, 0x6, 0x1>;
788    def LWE_MM  : LoadMemory<"lwe", GPR32Opnd, mem_simm9, null_frag, II_LWE>,
789                  POOL32C_LHUE_FM_MM<0x18, 0x6, 0x7>;
790    def SBE_MM  : StoreMemory<"sbe", GPR32Opnd, mem_simm9, null_frag, II_SBE>,
791                  POOL32C_LHUE_FM_MM<0x18, 0xa, 0x4>;
792    def SHE_MM  : StoreMemory<"she", GPR32Opnd, mem_simm9, null_frag, II_SHE>,
793                  POOL32C_LHUE_FM_MM<0x18, 0xa, 0x5>;
794    def SWE_MM  : StoreMemory<"swe", GPR32Opnd, mem_simm9, null_frag, II_SWE>,
795                  POOL32C_LHUE_FM_MM<0x18, 0xa, 0x7>;
796  }
797
798  def LWXS_MM : LoadWordIndexedScaledMM<"lwxs", GPR32Opnd>, LWXS_FM_MM<0x118>;
799
800  /// Load and Store Instructions - unaligned
801  def LWL_MM : LoadLeftRightMM<"lwl", MipsLWL, GPR32Opnd, mem_mm_12, II_LWL>,
802               LWL_FM_MM<0x0>;
803  def LWR_MM : LoadLeftRightMM<"lwr", MipsLWR, GPR32Opnd, mem_mm_12, II_LWR>,
804               LWL_FM_MM<0x1>;
805  def SWL_MM : StoreLeftRightMM<"swl", MipsSWL, GPR32Opnd, mem_mm_12, II_SWL>,
806               LWL_FM_MM<0x8>;
807  def SWR_MM : StoreLeftRightMM<"swr", MipsSWR, GPR32Opnd, mem_mm_12, II_SWR>,
808               LWL_FM_MM<0x9>;
809  let DecoderMethod = "DecodeMemMMImm9" in {
810    def LWLE_MM : LoadLeftRightMM<"lwle", MipsLWL, GPR32Opnd, mem_mm_9,
811                                  II_LWLE>, POOL32C_STEVA_LDEVA_FM_MM<0x6, 0x2>;
812    def LWRE_MM : LoadLeftRightMM<"lwre", MipsLWR, GPR32Opnd, mem_mm_9,
813                                  II_LWRE>, POOL32C_STEVA_LDEVA_FM_MM<0x6, 0x3>;
814    def SWLE_MM : StoreLeftRightMM<"swle", MipsSWL, GPR32Opnd, mem_mm_9,
815                                   II_SWLE>,
816                  POOL32C_STEVA_LDEVA_FM_MM<0xa, 0x0>;
817    def SWRE_MM : StoreLeftRightMM<"swre", MipsSWR, GPR32Opnd, mem_mm_9,
818                                   II_SWRE>,
819                  POOL32C_STEVA_LDEVA_FM_MM<0xa, 0x1>, ISA_MIPS1_NOT_32R6_64R6;
820  }
821
822  /// Load and Store Instructions - multiple
823  def SWM32_MM  : StoreMultMM<"swm32", II_SWM>, LWM_FM_MM<0xd>;
824  def LWM32_MM  : LoadMultMM<"lwm32", II_LWM>, LWM_FM_MM<0x5>;
825
826  /// Load and Store Pair Instructions
827  def SWP_MM  : StorePairMM<"swp">, LWM_FM_MM<0x9>;
828  def LWP_MM  : LoadPairMM<"lwp">, LWM_FM_MM<0x1>;
829
830  /// Load and Store multiple pseudo Instructions
831  class LoadWordMultMM<string instr_asm > :
832    MipsAsmPseudoInst<(outs reglist:$rt), (ins mem_mm_12:$addr),
833                      !strconcat(instr_asm, "\t$rt, $addr")> ;
834
835  class StoreWordMultMM<string instr_asm > :
836    MipsAsmPseudoInst<(outs), (ins reglist:$rt, mem_mm_12:$addr),
837                      !strconcat(instr_asm, "\t$rt, $addr")> ;
838
839
840  def SWM_MM  : StoreWordMultMM<"swm">;
841  def LWM_MM  : LoadWordMultMM<"lwm">;
842
843  /// Move Conditional
844  def MOVZ_I_MM : MMRel, CMov_I_I_FT<"movz", GPR32Opnd, GPR32Opnd,
845                  NoItinerary>, ADD_FM_MM<0, 0x58>;
846  def MOVN_I_MM : MMRel, CMov_I_I_FT<"movn", GPR32Opnd, GPR32Opnd,
847                  NoItinerary>, ADD_FM_MM<0, 0x18>;
848  def MOVT_I_MM : MMRel, CMov_F_I_FT<"movt", GPR32Opnd, II_MOVT>,
849                  CMov_F_I_FM_MM<0x25>;
850  def MOVF_I_MM : MMRel, CMov_F_I_FT<"movf", GPR32Opnd, II_MOVF>,
851                  CMov_F_I_FM_MM<0x5>;
852
853  /// Move to/from HI/LO
854  def MTHI_MM : MMRel, MoveToLOHI<"mthi", GPR32Opnd, [HI0]>,
855                MTLO_FM_MM<0x0b5>;
856  def MTLO_MM : MMRel, MoveToLOHI<"mtlo", GPR32Opnd, [LO0]>,
857                MTLO_FM_MM<0x0f5>;
858  def MFHI_MM : MMRel, MoveFromLOHI<"mfhi", GPR32Opnd, AC0>,
859                MFLO_FM_MM<0x035>;
860  def MFLO_MM : MMRel, MoveFromLOHI<"mflo", GPR32Opnd, AC0>,
861                MFLO_FM_MM<0x075>;
862
863  /// Multiply Add/Sub Instructions
864  def MADD_MM  : MMRel, MArithR<"madd", II_MADD, 1>, MULT_FM_MM<0x32c>;
865  def MADDU_MM : MMRel, MArithR<"maddu", II_MADDU, 1>, MULT_FM_MM<0x36c>;
866  def MSUB_MM  : MMRel, MArithR<"msub", II_MSUB>, MULT_FM_MM<0x3ac>;
867  def MSUBU_MM : MMRel, MArithR<"msubu", II_MSUBU>, MULT_FM_MM<0x3ec>;
868
869  /// Count Leading
870  def CLZ_MM : MMRel, CountLeading0<"clz", GPR32Opnd, II_CLZ>, CLO_FM_MM<0x16c>,
871               ISA_MIPS32;
872  def CLO_MM : MMRel, CountLeading1<"clo", GPR32Opnd, II_CLO>, CLO_FM_MM<0x12c>,
873               ISA_MIPS32;
874
875  /// Sign Ext In Register Instructions.
876  def SEB_MM : MMRel, SignExtInReg<"seb", i8, GPR32Opnd, II_SEB>,
877               SEB_FM_MM<0x0ac>, ISA_MIPS32R2;
878  def SEH_MM : MMRel, SignExtInReg<"seh", i16, GPR32Opnd, II_SEH>,
879               SEB_FM_MM<0x0ec>, ISA_MIPS32R2;
880
881  /// Word Swap Bytes Within Halfwords
882  def WSBH_MM : MMRel, SubwordSwap<"wsbh", GPR32Opnd, II_WSBH>,
883                SEB_FM_MM<0x1ec>, ISA_MIPS32R2;
884  // TODO: Add '0 < pos+size <= 32' constraint check to ext instruction
885  def EXT_MM : MMRel, ExtBase<"ext", GPR32Opnd, uimm5, uimm5_plus1, immZExt5,
886                              immZExt5Plus1, MipsExt>, EXT_FM_MM<0x2c>;
887  def INS_MM : MMRel, InsBase<"ins", GPR32Opnd, uimm5, uimm5_inssize_plus1,
888                              immZExt5, immZExt5Plus1>,
889               EXT_FM_MM<0x0c>;
890
891  /// Jump Instructions
892  let DecoderMethod = "DecodeJumpTargetMM" in {
893    def J_MM        : MMRel, JumpFJ<jmptarget_mm, "j", br, bb, "j">,
894                      J_FM_MM<0x35>;
895    def JAL_MM      : MMRel, JumpLink<"jal", calltarget_mm>, J_FM_MM<0x3d>;
896    def JALX_MM     : MMRel, JumpLink<"jalx", calltarget>, J_FM_MM<0x3c>;
897  }
898  def JR_MM : MMRel, IndirectBranch<"jr", GPR32Opnd>, JR_FM_MM<0x3c>,
899              ISA_MICROMIPS32_NOT_MIPS32R6;
900  def JALR_MM : JumpLinkReg<"jalr", GPR32Opnd>, JALR_FM_MM<0x03c>;
901
902  /// Jump Instructions - Short Delay Slot
903  def JALS_MM   : JumpLinkMM<"jals", calltarget_mm>, J_FM_MM<0x1d>;
904  def JALRS_MM  : JumpLinkRegMM<"jalrs", GPR32Opnd>, JALR_FM_MM<0x13c>;
905
906  /// Branch Instructions
907  def BEQ_MM  : MMRel, CBranch<"beq", brtarget_mm, seteq, GPR32Opnd>,
908                BEQ_FM_MM<0x25>;
909  def BNE_MM  : MMRel, CBranch<"bne", brtarget_mm, setne, GPR32Opnd>,
910                BEQ_FM_MM<0x2d>;
911  def BGEZ_MM : MMRel, CBranchZero<"bgez", brtarget_mm, setge, GPR32Opnd>,
912                BGEZ_FM_MM<0x2>;
913  def BGTZ_MM : MMRel, CBranchZero<"bgtz", brtarget_mm, setgt, GPR32Opnd>,
914                BGEZ_FM_MM<0x6>;
915  def BLEZ_MM : MMRel, CBranchZero<"blez", brtarget_mm, setle, GPR32Opnd>,
916                BGEZ_FM_MM<0x4>;
917  def BLTZ_MM : MMRel, CBranchZero<"bltz", brtarget_mm, setlt, GPR32Opnd>,
918                BGEZ_FM_MM<0x0>;
919  def BGEZAL_MM : MMRel, BGEZAL_FT<"bgezal", brtarget_mm, GPR32Opnd>,
920                  BGEZAL_FM_MM<0x03>;
921  def BLTZAL_MM : MMRel, BGEZAL_FT<"bltzal", brtarget_mm, GPR32Opnd>,
922                  BGEZAL_FM_MM<0x01>;
923
924  /// Branch Instructions - Short Delay Slot
925  def BGEZALS_MM : BranchCompareToZeroLinkMM<"bgezals", brtarget_mm,
926                                             GPR32Opnd>, BGEZAL_FM_MM<0x13>;
927  def BLTZALS_MM : BranchCompareToZeroLinkMM<"bltzals", brtarget_mm,
928                                             GPR32Opnd>, BGEZAL_FM_MM<0x11>;
929
930  /// Control Instructions
931  def SYNC_MM    : MMRel, SYNC_FT<"sync">, SYNC_FM_MM;
932  def SYNCI_MM   : MMRel, SYNCI_FT<"synci">, SYNCI_FM_MM;
933  def BREAK_MM   : MMRel, BRK_FT<"break">, BRK_FM_MM;
934  def SYSCALL_MM : MMRel, SYS_FT<"syscall", uimm10, II_SYSCALL>, SYS_FM_MM;
935  def WAIT_MM    : WaitMM<"wait">, WAIT_FM_MM;
936  def ERET_MM    : MMRel, ER_FT<"eret", II_ERET>, ER_FM_MM<0x3cd>;
937  def DERET_MM   : MMRel, ER_FT<"deret", II_DERET>, ER_FM_MM<0x38d>;
938  def EI_MM      : MMRel, DEI_FT<"ei", GPR32Opnd, II_EI>, EI_FM_MM<0x15d>,
939                   ISA_MIPS32R2;
940  def DI_MM      : MMRel, DEI_FT<"di", GPR32Opnd, II_DI>, EI_FM_MM<0x11d>,
941                   ISA_MIPS32R2;
942
943  /// Trap Instructions
944  def TEQ_MM  : MMRel, TEQ_FT<"teq", GPR32Opnd, uimm4, II_TEQ>, TEQ_FM_MM<0x0>;
945  def TGE_MM  : MMRel, TEQ_FT<"tge", GPR32Opnd, uimm4, II_TGE>, TEQ_FM_MM<0x08>;
946  def TGEU_MM : MMRel, TEQ_FT<"tgeu", GPR32Opnd, uimm4, II_TGEU>,
947                TEQ_FM_MM<0x10>;
948  def TLT_MM  : MMRel, TEQ_FT<"tlt", GPR32Opnd, uimm4, II_TLT>, TEQ_FM_MM<0x20>;
949  def TLTU_MM : MMRel, TEQ_FT<"tltu", GPR32Opnd, uimm4, II_TLTU>,
950                TEQ_FM_MM<0x28>;
951  def TNE_MM  : MMRel, TEQ_FT<"tne", GPR32Opnd, uimm4, II_TNE>, TEQ_FM_MM<0x30>;
952
953  def TEQI_MM  : MMRel, TEQI_FT<"teqi", GPR32Opnd, II_TEQI>, TEQI_FM_MM<0x0e>;
954  def TGEI_MM  : MMRel, TEQI_FT<"tgei", GPR32Opnd, II_TGEI>, TEQI_FM_MM<0x09>;
955  def TGEIU_MM : MMRel, TEQI_FT<"tgeiu", GPR32Opnd, II_TGEIU>,
956                 TEQI_FM_MM<0x0b>;
957  def TLTI_MM  : MMRel, TEQI_FT<"tlti", GPR32Opnd, II_TLTI>, TEQI_FM_MM<0x08>;
958  def TLTIU_MM : MMRel, TEQI_FT<"tltiu", GPR32Opnd, II_TTLTIU>,
959                 TEQI_FM_MM<0x0a>;
960  def TNEI_MM  : MMRel, TEQI_FT<"tnei", GPR32Opnd, II_TNEI>, TEQI_FM_MM<0x0c>;
961
962  /// Load-linked, Store-conditional
963  def LL_MM : LLBaseMM<"ll", GPR32Opnd>, LL_FM_MM<0x3>;
964  def SC_MM : SCBaseMM<"sc", GPR32Opnd>, LL_FM_MM<0xb>;
965
966  def LLE_MM : LLEBaseMM<"lle", GPR32Opnd>, LLE_FM_MM<0x6>;
967  def SCE_MM : SCEBaseMM<"sce", GPR32Opnd>, LLE_FM_MM<0xA>;
968
969  let DecoderMethod = "DecodeCacheOpMM" in {
970  def CACHE_MM : MMRel, CacheOp<"cache", mem_mm_12, II_CACHE>,
971                 CACHE_PREF_FM_MM<0x08, 0x6>;
972  def PREF_MM  : MMRel, CacheOp<"pref", mem_mm_12, II_PREF>,
973                 CACHE_PREF_FM_MM<0x18, 0x2>;
974  }
975
976  let DecoderMethod = "DecodePrefeOpMM" in {
977    def PREFE_MM  : MMRel, CacheOp<"prefe", mem_mm_9, II_PREFE>,
978                    CACHE_PREFE_FM_MM<0x18, 0x2>;
979    def CACHEE_MM : MMRel, CacheOp<"cachee", mem_mm_9, II_CACHEE>,
980                    CACHE_PREFE_FM_MM<0x18, 0x3>;
981  }
982  def SSNOP_MM : MMRel, Barrier<"ssnop", II_SSNOP>, BARRIER_FM_MM<0x1>;
983  def EHB_MM   : MMRel, Barrier<"ehb", II_EHB>, BARRIER_FM_MM<0x3>;
984  def PAUSE_MM : MMRel, Barrier<"pause", II_PAUSE>, BARRIER_FM_MM<0x5>;
985
986  def TLBP_MM : MMRel, TLB<"tlbp", II_TLBP>, COP0_TLB_FM_MM<0x0d>;
987  def TLBR_MM : MMRel, TLB<"tlbr", II_TLBR>, COP0_TLB_FM_MM<0x4d>;
988  def TLBWI_MM : MMRel, TLB<"tlbwi", II_TLBWI>, COP0_TLB_FM_MM<0x8d>;
989  def TLBWR_MM : MMRel, TLB<"tlbwr", II_TLBWR>, COP0_TLB_FM_MM<0xcd>;
990
991  def SDBBP_MM : MMRel, SYS_FT<"sdbbp", uimm10, II_SDBBP>, SDBBP_FM_MM;
992
993  def PREFX_MM : PrefetchIndexed<"prefx">, POOL32F_PREFX_FM_MM<0x15, 0x1A0>;
994}
995
996def TAILCALL_MM : TailCall<J_MM, jmptarget_mm>, ISA_MIPS1_NOT_32R6_64R6;
997
998let DecoderNamespace = "MicroMips" in {
999  def RDHWR_MM : MMRel, R6MMR6Rel, ReadHardware<GPR32Opnd, HWRegsOpnd>,
1000                 RDHWR_FM_MM, ISA_MICROMIPS32_NOT_MIPS32R6;
1001  def LWU_MM : MMRel, LoadMM<"lwu", GPR32Opnd, zextloadi32, II_LWU,
1002                             mem_simm12>, LL_FM_MM<0xe>,
1003               ISA_MICROMIPS32_NOT_MIPS32R6;
1004}
1005
1006//===----------------------------------------------------------------------===//
1007// MicroMips arbitrary patterns that map to one or more instructions
1008//===----------------------------------------------------------------------===//
1009
1010let AdditionalPredicates = [InMicroMips] in {
1011  def : MipsPat<(i32 immLi16:$imm),
1012                (LI16_MM immLi16:$imm)>;
1013
1014  defm :  MaterializeImms<i32, ZERO, ADDiu_MM, LUi_MM, ORi_MM>;
1015}
1016
1017let Predicates = [InMicroMips] in {
1018  def : MipsPat<(not GPRMM16:$in),
1019                (NOT16_MM GPRMM16:$in)>;
1020  def : MipsPat<(not GPR32:$in),
1021                (NOR_MM GPR32Opnd:$in, ZERO)>;
1022
1023  def : MipsPat<(add GPRMM16:$src, immSExtAddiur2:$imm),
1024                (ADDIUR2_MM GPRMM16:$src, immSExtAddiur2:$imm)>;
1025  def : MipsPat<(add GPR32:$src, immSExtAddius5:$imm),
1026                (ADDIUS5_MM GPR32:$src, immSExtAddius5:$imm)>;
1027  def : MipsPat<(add GPR32:$src, immSExt16:$imm),
1028                (ADDiu_MM GPR32:$src, immSExt16:$imm)>;
1029
1030  def : MipsPat<(and GPRMM16:$src, immZExtAndi16:$imm),
1031                (ANDI16_MM GPRMM16:$src, immZExtAndi16:$imm)>;
1032  def : MipsPat<(and GPR32:$src, immZExt16:$imm),
1033                (ANDi_MM GPR32:$src, immZExt16:$imm)>;
1034
1035  def : MipsPat<(shl GPRMM16:$src, immZExt2Shift:$imm),
1036                (SLL16_MM GPRMM16:$src, immZExt2Shift:$imm)>;
1037  def : MipsPat<(shl GPR32:$src, immZExt5:$imm),
1038                (SLL_MM GPR32:$src, immZExt5:$imm)>;
1039  def : MipsPat<(shl GPR32:$lhs, GPR32:$rhs),
1040                (SLLV_MM GPR32:$lhs, GPR32:$rhs)>;
1041
1042  def : MipsPat<(srl GPRMM16:$src, immZExt2Shift:$imm),
1043                (SRL16_MM GPRMM16:$src, immZExt2Shift:$imm)>;
1044  def : MipsPat<(srl GPR32:$src, immZExt5:$imm),
1045                (SRL_MM GPR32:$src, immZExt5:$imm)>;
1046  def : MipsPat<(srl GPR32:$lhs, GPR32:$rhs),
1047                (SRLV_MM GPR32:$lhs, GPR32:$rhs)>;
1048
1049  def : MipsPat<(sra GPR32:$src, immZExt5:$imm),
1050                (SRA_MM GPR32:$src, immZExt5:$imm)>;
1051  def : MipsPat<(sra GPR32:$lhs, GPR32:$rhs),
1052                (SRAV_MM GPR32:$lhs, GPR32:$rhs)>;
1053
1054  def : MipsPat<(store GPRMM16:$src, addrimm4lsl2:$addr),
1055                (SW16_MM GPRMM16:$src, addrimm4lsl2:$addr)>;
1056  def : MipsPat<(store GPR32:$src, addr:$addr),
1057                (SW_MM GPR32:$src, addr:$addr)>;
1058
1059  def : MipsPat<(load addrimm4lsl2:$addr),
1060                (LW16_MM addrimm4lsl2:$addr)>;
1061  def : MipsPat<(load addr:$addr),
1062                (LW_MM addr:$addr)>;
1063  def : MipsPat<(subc GPR32:$lhs, GPR32:$rhs),
1064                (SUBu_MM GPR32:$lhs, GPR32:$rhs)>;
1065
1066  def : MipsPat<(MipsTailCall (iPTR tglobaladdr:$dst)),
1067                (TAILCALL_MM tglobaladdr:$dst)>, ISA_MIPS1_NOT_32R6_64R6;
1068  def : MipsPat<(MipsTailCall (iPTR texternalsym:$dst)),
1069                (TAILCALL_MM texternalsym:$dst)>, ISA_MIPS1_NOT_32R6_64R6;
1070}
1071
1072let AddedComplexity = 40 in {
1073  def : MipsPat<(i32 (sextloadi16 addrRegImm:$a)),
1074                (LH_MM addrRegImm:$a)>;
1075}
1076def : MipsPat<(atomic_load_16 addr:$a),
1077              (LH_MM addr:$a)>;
1078def : MipsPat<(i32 (extloadi16 addr:$src)),
1079              (LHu_MM addr:$src)>;
1080
1081defm : BrcondPats<GPR32, BEQ_MM, BEQ_MM, BNE_MM, SLT_MM, SLTu_MM, SLTi_MM,
1082                  SLTiu_MM, ZERO>;
1083
1084defm : SeteqPats<GPR32, SLTiu_MM, XOR_MM, SLTu_MM, ZERO>;
1085defm : SetlePats<GPR32, XORi_MM, SLT_MM, SLTu_MM>;
1086defm : SetgtPats<GPR32, SLT_MM, SLTu_MM>;
1087defm : SetgePats<GPR32, XORi_MM, SLT_MM, SLTu_MM>;
1088defm : SetgeImmPats<GPR32, XORi_MM, SLTi_MM, SLTiu_MM>;
1089
1090//===----------------------------------------------------------------------===//
1091// MicroMips instruction aliases
1092//===----------------------------------------------------------------------===//
1093
1094class UncondBranchMMPseudo<string opstr> :
1095  MipsAsmPseudoInst<(outs), (ins brtarget_mm:$offset),
1096                    !strconcat(opstr, "\t$offset")>;
1097
1098def B_MM_Pseudo : UncondBranchMMPseudo<"b">, ISA_MICROMIPS;
1099
1100let Predicates = [InMicroMips] in {
1101  def SDIV_MM_Pseudo : MultDivPseudo<SDIV_MM, ACC64, GPR32Opnd, MipsDivRem,
1102                                     II_DIV, 0, 1, 1>, ISA_MIPS1_NOT_32R6_64R6;
1103  def UDIV_MM_Pseudo : MultDivPseudo<UDIV_MM, ACC64, GPR32Opnd, MipsDivRemU,
1104                                     II_DIVU, 0, 1, 1>, ISA_MIPS1_NOT_32R6_64R6;
1105
1106  def : MipsInstAlias<"wait", (WAIT_MM 0x0), 1>;
1107  def : MipsInstAlias<"nop", (SLL_MM ZERO, ZERO, 0), 1>;
1108  def : MipsInstAlias<"nop", (MOVE16_MM ZERO, ZERO), 1>;
1109  def : MipsInstAlias<"ei", (EI_MM ZERO), 1>, ISA_MIPS32R2;
1110  def : MipsInstAlias<"di", (DI_MM ZERO), 1>, ISA_MIPS32R2;
1111  def : MipsInstAlias<"teq $rs, $rt",
1112                      (TEQ_MM GPR32Opnd:$rs, GPR32Opnd:$rt, 0), 1>;
1113  def : MipsInstAlias<"tge $rs, $rt",
1114                      (TGE_MM GPR32Opnd:$rs, GPR32Opnd:$rt, 0), 1>;
1115  def : MipsInstAlias<"tgeu $rs, $rt",
1116                      (TGEU_MM GPR32Opnd:$rs, GPR32Opnd:$rt, 0), 1>;
1117  def : MipsInstAlias<"tlt $rs, $rt",
1118                      (TLT_MM GPR32Opnd:$rs, GPR32Opnd:$rt, 0), 1>;
1119  def : MipsInstAlias<"tltu $rs, $rt",
1120                      (TLTU_MM GPR32Opnd:$rs, GPR32Opnd:$rt, 0), 1>;
1121  def : MipsInstAlias<"tne $rs, $rt",
1122                      (TNE_MM GPR32Opnd:$rs, GPR32Opnd:$rt, 0), 1>;
1123  def : MipsInstAlias<
1124          "sgt $rd, $rs, $rt",
1125          (SLT_MM GPR32Opnd:$rd, GPR32Opnd:$rt, GPR32Opnd:$rs), 0>;
1126  def : MipsInstAlias<
1127          "sgt $rs, $rt",
1128          (SLT_MM GPR32Opnd:$rs, GPR32Opnd:$rt, GPR32Opnd:$rs), 0>;
1129  def : MipsInstAlias<
1130          "sgtu $rd, $rs, $rt",
1131          (SLTu_MM GPR32Opnd:$rd, GPR32Opnd:$rt, GPR32Opnd:$rs), 0>;
1132  def : MipsInstAlias<
1133          "sgtu $rs, $rt",
1134          (SLTu_MM GPR32Opnd:$rs, GPR32Opnd:$rt, GPR32Opnd:$rs), 0>;
1135  def : MipsInstAlias<"sll $rd, $rt, $rs",
1136                      (SLLV_MM GPR32Opnd:$rd, GPR32Opnd:$rt, GPR32Opnd:$rs), 0>;
1137  def : MipsInstAlias<"sra $rd, $rt, $rs",
1138                      (SRAV_MM GPR32Opnd:$rd, GPR32Opnd:$rt, GPR32Opnd:$rs), 0>;
1139  def : MipsInstAlias<"srl $rd, $rt, $rs",
1140                      (SRLV_MM GPR32Opnd:$rd, GPR32Opnd:$rt, GPR32Opnd:$rs), 0>;
1141  def : MipsInstAlias<"sll $rd, $rt",
1142                      (SLLV_MM GPR32Opnd:$rd, GPR32Opnd:$rd, GPR32Opnd:$rt), 0>;
1143  def : MipsInstAlias<"sra $rd, $rt",
1144                      (SRAV_MM GPR32Opnd:$rd, GPR32Opnd:$rd, GPR32Opnd:$rt), 0>;
1145  def : MipsInstAlias<"srl $rd, $rt",
1146                      (SRLV_MM GPR32Opnd:$rd, GPR32Opnd:$rd, GPR32Opnd:$rt), 0>;
1147  def : MipsInstAlias<"sll $rd, $shamt",
1148                      (SLL_MM GPR32Opnd:$rd, GPR32Opnd:$rd, uimm5:$shamt), 0>;
1149  def : MipsInstAlias<"sra $rd, $shamt",
1150                      (SRA_MM GPR32Opnd:$rd, GPR32Opnd:$rd, uimm5:$shamt), 0>;
1151  def : MipsInstAlias<"srl $rd, $shamt",
1152                      (SRL_MM GPR32Opnd:$rd, GPR32Opnd:$rd, uimm5:$shamt), 0>;
1153  def : MipsInstAlias<"rotr $rt, $imm",
1154                      (ROTR_MM GPR32Opnd:$rt, GPR32Opnd:$rt, uimm5:$imm), 0>;
1155  def : MipsInstAlias<"syscall", (SYSCALL_MM 0), 1>;
1156
1157  defm : OneOrTwoOperandMacroImmediateAlias<"add", ADDi_MM>;
1158
1159  defm : OneOrTwoOperandMacroImmediateAlias<"addu", ADDiu_MM>;
1160
1161  defm : OneOrTwoOperandMacroImmediateAlias<"and", ANDi_MM>;
1162
1163  defm : OneOrTwoOperandMacroImmediateAlias<"or", ORi_MM>;
1164
1165  defm : OneOrTwoOperandMacroImmediateAlias<"xor", XORi_MM>;
1166
1167  defm : OneOrTwoOperandMacroImmediateAlias<"slt", SLTi_MM>;
1168
1169  defm : OneOrTwoOperandMacroImmediateAlias<"sltu", SLTiu_MM>;
1170
1171  def : MipsInstAlias<"not $rt, $rs",
1172                      (NOR_MM GPR32Opnd:$rt, GPR32Opnd:$rs, ZERO), 0>;
1173  def : MipsInstAlias<"not $rt",
1174                      (NOR_MM GPR32Opnd:$rt, GPR32Opnd:$rt, ZERO), 0>;
1175  def : MipsInstAlias<"bnez $rs,$offset",
1176                      (BNE_MM GPR32Opnd:$rs, ZERO, brtarget:$offset), 0>;
1177  def : MipsInstAlias<"beqz $rs,$offset",
1178                      (BEQ_MM GPR32Opnd:$rs, ZERO, brtarget:$offset), 0>;
1179  def : MipsInstAlias<"seh $rd", (SEH_MM GPR32Opnd:$rd, GPR32Opnd:$rd), 0>,
1180                     ISA_MIPS32R2_NOT_32R6_64R6;
1181  def : MipsInstAlias<"seb $rd", (SEB_MM GPR32Opnd:$rd, GPR32Opnd:$rd), 0>,
1182                     ISA_MIPS32R2_NOT_32R6_64R6;
1183}
1184