blob: 853734a7a94316dad3137bc66bc44bcc364fd7e5 [file] [log] [blame]
Jack Carter97700972013-08-13 20:19:16 +00001def addrimm12 : ComplexPattern<iPTR, 2, "selectIntAddrMM", [frameindex]>;
2
3def simm12 : Operand<i32> {
4 let DecoderMethod = "DecodeSimm12";
5}
6
7def mem_mm_12 : Operand<i32> {
8 let PrintMethod = "printMemOperand";
9 let MIOperandInfo = (ops GPR32, simm12);
10 let EncoderMethod = "getMemEncodingMMImm12";
11 let ParserMatchClass = MipsMemAsmOperand;
12 let OperandType = "OPERAND_MEMORY";
13}
14
Zoran Jovanovic507e0842013-10-29 16:38:59 +000015def jmptarget_mm : Operand<OtherVT> {
16 let EncoderMethod = "getJumpTargetOpValueMM";
17}
18
19def calltarget_mm : Operand<iPTR> {
20 let EncoderMethod = "getJumpTargetOpValueMM";
21}
22
Zoran Jovanovic8a80aa72013-11-04 14:53:22 +000023def brtarget_mm : Operand<OtherVT> {
24 let EncoderMethod = "getBranchTargetOpValueMM";
25 let OperandType = "OPERAND_PCREL";
26 let DecoderMethod = "DecodeBranchTargetMM";
27}
28
Jack Carter97700972013-08-13 20:19:16 +000029let canFoldAsLoad = 1 in
30class LoadLeftRightMM<string opstr, SDNode OpNode, RegisterOperand RO,
31 Operand MemOpnd> :
32 InstSE<(outs RO:$rt), (ins MemOpnd:$addr, RO:$src),
33 !strconcat(opstr, "\t$rt, $addr"),
34 [(set RO:$rt, (OpNode addrimm12:$addr, RO:$src))],
35 NoItinerary, FrmI> {
Vladimir Medicdde3d582013-09-06 12:30:36 +000036 let DecoderMethod = "DecodeMemMMImm12";
Jack Carter97700972013-08-13 20:19:16 +000037 string Constraints = "$src = $rt";
38}
39
40class StoreLeftRightMM<string opstr, SDNode OpNode, RegisterOperand RO,
41 Operand MemOpnd>:
42 InstSE<(outs), (ins RO:$rt, MemOpnd:$addr),
43 !strconcat(opstr, "\t$rt, $addr"),
Vladimir Medicdde3d582013-09-06 12:30:36 +000044 [(OpNode RO:$rt, addrimm12:$addr)], NoItinerary, FrmI> {
45 let DecoderMethod = "DecodeMemMMImm12";
46}
Jack Carter97700972013-08-13 20:19:16 +000047
Zoran Jovanovicff9d5f32013-12-19 16:12:56 +000048class LLBaseMM<string opstr, RegisterOperand RO> :
49 InstSE<(outs RO:$rt), (ins mem_mm_12:$addr),
50 !strconcat(opstr, "\t$rt, $addr"), [], NoItinerary, FrmI> {
Zoran Jovanovic7d633922014-01-15 13:17:33 +000051 let DecoderMethod = "DecodeMemMMImm12";
Zoran Jovanovicff9d5f32013-12-19 16:12:56 +000052 let mayLoad = 1;
53}
54
55class SCBaseMM<string opstr, RegisterOperand RO> :
Zoran Jovanovic285cc282014-02-28 18:22:56 +000056 InstSE<(outs RO:$dst), (ins RO:$rt, mem_mm_12:$addr),
Zoran Jovanovicff9d5f32013-12-19 16:12:56 +000057 !strconcat(opstr, "\t$rt, $addr"), [], NoItinerary, FrmI> {
Zoran Jovanovic7d633922014-01-15 13:17:33 +000058 let DecoderMethod = "DecodeMemMMImm12";
Zoran Jovanovicff9d5f32013-12-19 16:12:56 +000059 let mayStore = 1;
Zoran Jovanovic285cc282014-02-28 18:22:56 +000060 let Constraints = "$rt = $dst";
Zoran Jovanovicff9d5f32013-12-19 16:12:56 +000061}
62
Zoran Jovanovicd4cb61c2014-01-15 13:01:18 +000063class LoadMM<string opstr, DAGOperand RO, SDPatternOperator OpNode = null_frag,
64 InstrItinClass Itin = NoItinerary> :
65 InstSE<(outs RO:$rt), (ins mem_mm_12:$addr),
66 !strconcat(opstr, "\t$rt, $addr"),
67 [(set RO:$rt, (OpNode addrimm12:$addr))], Itin, FrmI> {
68 let DecoderMethod = "DecodeMemMMImm12";
69 let canFoldAsLoad = 1;
70 let mayLoad = 1;
71}
72
Zoran Jovanovic87d13e52014-03-20 10:18:24 +000073class MoveMM16<string opstr, RegisterOperand RO, bit isComm = 0,
74 InstrItinClass Itin = NoItinerary> :
75 MicroMipsInst16<(outs RO:$rd), (ins RO:$rs),
76 !strconcat(opstr, "\t$rd, $rs"), [], Itin, FrmR> {
77 let isCommutable = isComm;
78 let isReMaterializable = 1;
79}
80
Zoran Jovanovic87d13e52014-03-20 10:18:24 +000081// 16-bit Jump and Link (Call)
82class JumpLinkRegMM16<string opstr, RegisterOperand RO> :
83 MicroMipsInst16<(outs), (ins RO:$rs), !strconcat(opstr, "\t$rs"),
Zoran Jovanovic9b05a312014-03-31 14:00:10 +000084 [(MipsJmpLink RO:$rs)], IIBranch, FrmR> {
Zoran Jovanovic87d13e52014-03-20 10:18:24 +000085 let isCall = 1;
86 let hasDelaySlot = 1;
87 let Defs = [RA];
88}
89
90def MOVE16_MM : MoveMM16<"move", GPR32Opnd>, MOVE_FM_MM16<0x03>;
91def JALR16_MM : JumpLinkRegMM16<"jalr", GPR32Opnd>, JALR_FM_MM16<0x0e>;
92
Zoran Jovanovica0f53282014-03-20 10:41:37 +000093class WaitMM<string opstr> :
94 InstSE<(outs), (ins uimm10:$code_), !strconcat(opstr, "\t$code_"), [],
95 NoItinerary, FrmOther, opstr>;
96
Akira Hatanakaa43b56d2013-08-20 20:46:51 +000097let DecoderNamespace = "MicroMips", Predicates = [InMicroMips] in {
Akira Hatanakabe6a8182013-04-19 19:03:11 +000098 /// Arithmetic Instructions (ALU Immediate)
Akira Hatanaka13e6ccf2013-08-06 23:08:38 +000099 def ADDiu_MM : MMRel, ArithLogicI<"addiu", simm16, GPR32Opnd>,
Akira Hatanakabe6a8182013-04-19 19:03:11 +0000100 ADDI_FM_MM<0xc>;
Akira Hatanaka13e6ccf2013-08-06 23:08:38 +0000101 def ADDi_MM : MMRel, ArithLogicI<"addi", simm16, GPR32Opnd>,
Akira Hatanakabe6a8182013-04-19 19:03:11 +0000102 ADDI_FM_MM<0x4>;
Akira Hatanaka13e6ccf2013-08-06 23:08:38 +0000103 def SLTi_MM : MMRel, SetCC_I<"slti", setlt, simm16, immSExt16, GPR32Opnd>,
Akira Hatanakabe6a8182013-04-19 19:03:11 +0000104 SLTI_FM_MM<0x24>;
Akira Hatanaka13e6ccf2013-08-06 23:08:38 +0000105 def SLTiu_MM : MMRel, SetCC_I<"sltiu", setult, simm16, immSExt16, GPR32Opnd>,
Akira Hatanakabe6a8182013-04-19 19:03:11 +0000106 SLTI_FM_MM<0x2c>;
Akira Hatanaka13e6ccf2013-08-06 23:08:38 +0000107 def ANDi_MM : MMRel, ArithLogicI<"andi", uimm16, GPR32Opnd>,
Akira Hatanakabe6a8182013-04-19 19:03:11 +0000108 ADDI_FM_MM<0x34>;
Akira Hatanaka13e6ccf2013-08-06 23:08:38 +0000109 def ORi_MM : MMRel, ArithLogicI<"ori", uimm16, GPR32Opnd>,
Akira Hatanakabe6a8182013-04-19 19:03:11 +0000110 ADDI_FM_MM<0x14>;
Akira Hatanaka13e6ccf2013-08-06 23:08:38 +0000111 def XORi_MM : MMRel, ArithLogicI<"xori", uimm16, GPR32Opnd>,
Akira Hatanakabe6a8182013-04-19 19:03:11 +0000112 ADDI_FM_MM<0x1c>;
Akira Hatanaka13e6ccf2013-08-06 23:08:38 +0000113 def LUi_MM : MMRel, LoadUpper<"lui", GPR32Opnd, uimm16>, LUI_FM_MM;
Akira Hatanakabe6a8182013-04-19 19:03:11 +0000114
Zoran Jovanovicbd28c372013-12-25 10:14:07 +0000115 def LEA_ADDiu_MM : MMRel, EffectiveAddress<"addiu", GPR32Opnd>,
116 LW_FM_MM<0xc>;
117
Akira Hatanakabe6a8182013-04-19 19:03:11 +0000118 /// Arithmetic Instructions (3-Operand, R-Type)
Akira Hatanaka13e6ccf2013-08-06 23:08:38 +0000119 def ADDu_MM : MMRel, ArithLogicR<"addu", GPR32Opnd>, ADD_FM_MM<0, 0x150>;
120 def SUBu_MM : MMRel, ArithLogicR<"subu", GPR32Opnd>, ADD_FM_MM<0, 0x1d0>;
121 def MUL_MM : MMRel, ArithLogicR<"mul", GPR32Opnd>, ADD_FM_MM<0, 0x210>;
122 def ADD_MM : MMRel, ArithLogicR<"add", GPR32Opnd>, ADD_FM_MM<0, 0x110>;
123 def SUB_MM : MMRel, ArithLogicR<"sub", GPR32Opnd>, ADD_FM_MM<0, 0x190>;
124 def SLT_MM : MMRel, SetCC_R<"slt", setlt, GPR32Opnd>, ADD_FM_MM<0, 0x350>;
125 def SLTu_MM : MMRel, SetCC_R<"sltu", setult, GPR32Opnd>,
Akira Hatanakabe6a8182013-04-19 19:03:11 +0000126 ADD_FM_MM<0, 0x390>;
Daniel Sanders4aefdc72014-01-16 17:13:57 +0000127 def AND_MM : MMRel, ArithLogicR<"and", GPR32Opnd, 1, II_AND, and>,
Akira Hatanakabe6a8182013-04-19 19:03:11 +0000128 ADD_FM_MM<0, 0x250>;
Daniel Sanders4aefdc72014-01-16 17:13:57 +0000129 def OR_MM : MMRel, ArithLogicR<"or", GPR32Opnd, 1, II_OR, or>,
Akira Hatanakabe6a8182013-04-19 19:03:11 +0000130 ADD_FM_MM<0, 0x290>;
Daniel Sanders4aefdc72014-01-16 17:13:57 +0000131 def XOR_MM : MMRel, ArithLogicR<"xor", GPR32Opnd, 1, II_XOR, xor>,
Akira Hatanakabe6a8182013-04-19 19:03:11 +0000132 ADD_FM_MM<0, 0x310>;
Akira Hatanaka13e6ccf2013-08-06 23:08:38 +0000133 def NOR_MM : MMRel, LogicNOR<"nor", GPR32Opnd>, ADD_FM_MM<0, 0x2d0>;
Daniel Sanderse95a1372014-01-17 14:32:41 +0000134 def MULT_MM : MMRel, Mult<"mult", II_MULT, GPR32Opnd, [HI0, LO0]>,
Akira Hatanakabe6a8182013-04-19 19:03:11 +0000135 MULT_FM_MM<0x22c>;
Daniel Sanderse95a1372014-01-17 14:32:41 +0000136 def MULTu_MM : MMRel, Mult<"multu", II_MULTU, GPR32Opnd, [HI0, LO0]>,
Akira Hatanakabe6a8182013-04-19 19:03:11 +0000137 MULT_FM_MM<0x26c>;
Daniel Sandersc7a9f8d2014-01-17 14:48:06 +0000138 def SDIV_MM : MMRel, Div<"div", II_DIV, GPR32Opnd, [HI0, LO0]>,
Zoran Jovanovic3671a542013-09-14 07:15:21 +0000139 MULT_FM_MM<0x2ac>;
Daniel Sandersc7a9f8d2014-01-17 14:48:06 +0000140 def UDIV_MM : MMRel, Div<"divu", II_DIVU, GPR32Opnd, [HI0, LO0]>,
Zoran Jovanovic3671a542013-09-14 07:15:21 +0000141 MULT_FM_MM<0x2ec>;
Akira Hatanakacd9b74a2013-04-25 01:11:15 +0000142
143 /// Shift Instructions
Daniel Sanders980589a2014-01-16 14:27:20 +0000144 def SLL_MM : MMRel, shift_rotate_imm<"sll", uimm5, GPR32Opnd, II_SLL>,
Akira Hatanakacd9b74a2013-04-25 01:11:15 +0000145 SRA_FM_MM<0, 0>;
Daniel Sanders980589a2014-01-16 14:27:20 +0000146 def SRL_MM : MMRel, shift_rotate_imm<"srl", uimm5, GPR32Opnd, II_SRL>,
Akira Hatanakacd9b74a2013-04-25 01:11:15 +0000147 SRA_FM_MM<0x40, 0>;
Daniel Sanders980589a2014-01-16 14:27:20 +0000148 def SRA_MM : MMRel, shift_rotate_imm<"sra", uimm5, GPR32Opnd, II_SRA>,
Akira Hatanakacd9b74a2013-04-25 01:11:15 +0000149 SRA_FM_MM<0x80, 0>;
Daniel Sanders980589a2014-01-16 14:27:20 +0000150 def SLLV_MM : MMRel, shift_rotate_reg<"sllv", GPR32Opnd, II_SLLV>,
Akira Hatanakacd9b74a2013-04-25 01:11:15 +0000151 SRLV_FM_MM<0x10, 0>;
Daniel Sanders980589a2014-01-16 14:27:20 +0000152 def SRLV_MM : MMRel, shift_rotate_reg<"srlv", GPR32Opnd, II_SRLV>,
Akira Hatanakacd9b74a2013-04-25 01:11:15 +0000153 SRLV_FM_MM<0x50, 0>;
Daniel Sanders980589a2014-01-16 14:27:20 +0000154 def SRAV_MM : MMRel, shift_rotate_reg<"srav", GPR32Opnd, II_SRAV>,
Akira Hatanakacd9b74a2013-04-25 01:11:15 +0000155 SRLV_FM_MM<0x90, 0>;
Daniel Sanders980589a2014-01-16 14:27:20 +0000156 def ROTR_MM : MMRel, shift_rotate_imm<"rotr", uimm5, GPR32Opnd, II_ROTR>,
Akira Hatanakacd9b74a2013-04-25 01:11:15 +0000157 SRA_FM_MM<0xc0, 0>;
Daniel Sanders980589a2014-01-16 14:27:20 +0000158 def ROTRV_MM : MMRel, shift_rotate_reg<"rotrv", GPR32Opnd, II_ROTRV>,
Akira Hatanakacd9b74a2013-04-25 01:11:15 +0000159 SRLV_FM_MM<0xd0, 0>;
Akira Hatanakaf0aa6c92013-04-25 01:21:25 +0000160
161 /// Load and Store Instructions - aligned
Vladimir Medicdde3d582013-09-06 12:30:36 +0000162 let DecoderMethod = "DecodeMemMMImm16" in {
163 def LB_MM : Load<"lb", GPR32Opnd>, MMRel, LW_FM_MM<0x7>;
164 def LBu_MM : Load<"lbu", GPR32Opnd>, MMRel, LW_FM_MM<0x5>;
165 def LH_MM : Load<"lh", GPR32Opnd>, MMRel, LW_FM_MM<0xf>;
166 def LHu_MM : Load<"lhu", GPR32Opnd>, MMRel, LW_FM_MM<0xd>;
167 def LW_MM : Load<"lw", GPR32Opnd>, MMRel, LW_FM_MM<0x3f>;
168 def SB_MM : Store<"sb", GPR32Opnd>, MMRel, LW_FM_MM<0x6>;
169 def SH_MM : Store<"sh", GPR32Opnd>, MMRel, LW_FM_MM<0xe>;
170 def SW_MM : Store<"sw", GPR32Opnd>, MMRel, LW_FM_MM<0x3e>;
171 }
Jack Carter97700972013-08-13 20:19:16 +0000172
Daniel Sanders0b385ac2014-01-21 15:21:14 +0000173 def LWU_MM : LoadMM<"lwu", GPR32Opnd, zextloadi32, II_LWU>, LL_FM_MM<0xe>;
Zoran Jovanovicd4cb61c2014-01-15 13:01:18 +0000174
Jack Carter97700972013-08-13 20:19:16 +0000175 /// Load and Store Instructions - unaligned
Akira Hatanakaa43b56d2013-08-20 20:46:51 +0000176 def LWL_MM : LoadLeftRightMM<"lwl", MipsLWL, GPR32Opnd, mem_mm_12>,
177 LWL_FM_MM<0x0>;
178 def LWR_MM : LoadLeftRightMM<"lwr", MipsLWR, GPR32Opnd, mem_mm_12>,
179 LWL_FM_MM<0x1>;
180 def SWL_MM : StoreLeftRightMM<"swl", MipsSWL, GPR32Opnd, mem_mm_12>,
181 LWL_FM_MM<0x8>;
182 def SWR_MM : StoreLeftRightMM<"swr", MipsSWR, GPR32Opnd, mem_mm_12>,
183 LWL_FM_MM<0x9>;
Vladimir Medice0fbb442013-09-06 12:41:17 +0000184
185 /// Move Conditional
186 def MOVZ_I_MM : MMRel, CMov_I_I_FT<"movz", GPR32Opnd, GPR32Opnd,
187 NoItinerary>, ADD_FM_MM<0, 0x58>;
188 def MOVN_I_MM : MMRel, CMov_I_I_FT<"movn", GPR32Opnd, GPR32Opnd,
189 NoItinerary>, ADD_FM_MM<0, 0x18>;
Daniel Sanders4aefdc72014-01-16 17:13:57 +0000190 def MOVT_I_MM : MMRel, CMov_F_I_FT<"movt", GPR32Opnd, II_MOVT>,
Vladimir Medice0fbb442013-09-06 12:41:17 +0000191 CMov_F_I_FM_MM<0x25>;
Daniel Sanders4aefdc72014-01-16 17:13:57 +0000192 def MOVF_I_MM : MMRel, CMov_F_I_FT<"movf", GPR32Opnd, II_MOVF>,
Vladimir Medice0fbb442013-09-06 12:41:17 +0000193 CMov_F_I_FM_MM<0x5>;
Vladimir Medic457ba562013-09-06 12:53:21 +0000194
195 /// Move to/from HI/LO
196 def MTHI_MM : MMRel, MoveToLOHI<"mthi", GPR32Opnd, [HI0]>,
197 MTLO_FM_MM<0x0b5>;
198 def MTLO_MM : MMRel, MoveToLOHI<"mtlo", GPR32Opnd, [LO0]>,
199 MTLO_FM_MM<0x0f5>;
Akira Hatanaka16048332013-10-07 18:49:46 +0000200 def MFHI_MM : MMRel, MoveFromLOHI<"mfhi", GPR32Opnd, AC0>,
Vladimir Medic457ba562013-09-06 12:53:21 +0000201 MFLO_FM_MM<0x035>;
Akira Hatanaka16048332013-10-07 18:49:46 +0000202 def MFLO_MM : MMRel, MoveFromLOHI<"mflo", GPR32Opnd, AC0>,
Vladimir Medic457ba562013-09-06 12:53:21 +0000203 MFLO_FM_MM<0x075>;
Vladimir Medicb936da12013-09-06 13:08:00 +0000204
205 /// Multiply Add/Sub Instructions
Daniel Sanderse95a1372014-01-17 14:32:41 +0000206 def MADD_MM : MMRel, MArithR<"madd", II_MADD, 1>, MULT_FM_MM<0x32c>;
207 def MADDU_MM : MMRel, MArithR<"maddu", II_MADDU, 1>, MULT_FM_MM<0x36c>;
208 def MSUB_MM : MMRel, MArithR<"msub", II_MSUB>, MULT_FM_MM<0x3ac>;
209 def MSUBU_MM : MMRel, MArithR<"msubu", II_MSUBU>, MULT_FM_MM<0x3ec>;
Zoran Jovanovicab852782013-09-14 06:49:25 +0000210
211 /// Count Leading
212 def CLZ_MM : MMRel, CountLeading0<"clz", GPR32Opnd>, CLO_FM_MM<0x16c>;
213 def CLO_MM : MMRel, CountLeading1<"clo", GPR32Opnd>, CLO_FM_MM<0x12c>;
214
215 /// Sign Ext In Register Instructions.
Daniel Sanders4d20f0c2014-01-16 16:19:38 +0000216 def SEB_MM : MMRel, SignExtInReg<"seb", i8, GPR32Opnd, II_SEB>, SEB_FM_MM<0x0ac>;
217 def SEH_MM : MMRel, SignExtInReg<"seh", i16, GPR32Opnd, II_SEH>, SEB_FM_MM<0x0ec>;
Zoran Jovanovicab852782013-09-14 06:49:25 +0000218
219 /// Word Swap Bytes Within Halfwords
220 def WSBH_MM : MMRel, SubwordSwap<"wsbh", GPR32Opnd>, SEB_FM_MM<0x1ec>;
221
222 def EXT_MM : MMRel, ExtBase<"ext", GPR32Opnd, uimm5, MipsExt>,
223 EXT_FM_MM<0x2c>;
224 def INS_MM : MMRel, InsBase<"ins", GPR32Opnd, uimm5, MipsIns>,
225 EXT_FM_MM<0x0c>;
Zoran Jovanovic507e0842013-10-29 16:38:59 +0000226
227 /// Jump Instructions
228 let DecoderMethod = "DecodeJumpTargetMM" in {
229 def J_MM : MMRel, JumpFJ<jmptarget_mm, "j", br, bb, "j">,
230 J_FM_MM<0x35>;
231 def JAL_MM : MMRel, JumpLink<"jal", calltarget_mm>, J_FM_MM<0x3d>;
Zoran Jovanovic507e0842013-10-29 16:38:59 +0000232 }
233 def JR_MM : MMRel, IndirectBranch<"jr", GPR32Opnd>, JR_FM_MM<0x3c>;
Zoran Jovanovic87d13e52014-03-20 10:18:24 +0000234 def JALR_MM : JumpLinkReg<"jalr", GPR32Opnd>, JALR_FM_MM<0x03c>;
Zoran Jovanovic507e0842013-10-29 16:38:59 +0000235 def RET_MM : MMRel, RetBase<"ret", GPR32Opnd>, JR_FM_MM<0x3c>;
Zoran Jovanovic8a80aa72013-11-04 14:53:22 +0000236
237 /// Branch Instructions
238 def BEQ_MM : MMRel, CBranch<"beq", brtarget_mm, seteq, GPR32Opnd>,
239 BEQ_FM_MM<0x25>;
240 def BNE_MM : MMRel, CBranch<"bne", brtarget_mm, setne, GPR32Opnd>,
241 BEQ_FM_MM<0x2d>;
242 def BGEZ_MM : MMRel, CBranchZero<"bgez", brtarget_mm, setge, GPR32Opnd>,
243 BGEZ_FM_MM<0x2>;
244 def BGTZ_MM : MMRel, CBranchZero<"bgtz", brtarget_mm, setgt, GPR32Opnd>,
245 BGEZ_FM_MM<0x6>;
246 def BLEZ_MM : MMRel, CBranchZero<"blez", brtarget_mm, setle, GPR32Opnd>,
247 BGEZ_FM_MM<0x4>;
248 def BLTZ_MM : MMRel, CBranchZero<"bltz", brtarget_mm, setlt, GPR32Opnd>,
249 BGEZ_FM_MM<0x0>;
250 def BGEZAL_MM : MMRel, BGEZAL_FT<"bgezal", brtarget_mm, GPR32Opnd>,
251 BGEZAL_FM_MM<0x03>;
252 def BLTZAL_MM : MMRel, BGEZAL_FT<"bltzal", brtarget_mm, GPR32Opnd>,
253 BGEZAL_FM_MM<0x01>;
Zoran Jovanovicc18b6d12013-11-07 14:35:24 +0000254
Zoran Jovanovic8e918c32013-12-19 16:25:00 +0000255 /// Control Instructions
256 def SYNC_MM : MMRel, SYNC_FT<"sync">, SYNC_FM_MM;
257 def BREAK_MM : MMRel, BRK_FT<"break">, BRK_FM_MM;
258 def SYSCALL_MM : MMRel, SYS_FT<"syscall">, SYS_FM_MM;
Zoran Jovanovica0f53282014-03-20 10:41:37 +0000259 def WAIT_MM : WaitMM<"wait">, WAIT_FM_MM;
Zoran Jovanovic8e918c32013-12-19 16:25:00 +0000260 def ERET_MM : MMRel, ER_FT<"eret">, ER_FM_MM<0x3cd>;
261 def DERET_MM : MMRel, ER_FT<"deret">, ER_FM_MM<0x38d>;
262 def EI_MM : MMRel, DEI_FT<"ei", GPR32Opnd>, EI_FM_MM<0x15d>;
263 def DI_MM : MMRel, DEI_FT<"di", GPR32Opnd>, EI_FM_MM<0x11d>;
264
Zoran Jovanovicc18b6d12013-11-07 14:35:24 +0000265 /// Trap Instructions
266 def TEQ_MM : MMRel, TEQ_FT<"teq", GPR32Opnd>, TEQ_FM_MM<0x0>;
267 def TGE_MM : MMRel, TEQ_FT<"tge", GPR32Opnd>, TEQ_FM_MM<0x08>;
268 def TGEU_MM : MMRel, TEQ_FT<"tgeu", GPR32Opnd>, TEQ_FM_MM<0x10>;
269 def TLT_MM : MMRel, TEQ_FT<"tlt", GPR32Opnd>, TEQ_FM_MM<0x20>;
270 def TLTU_MM : MMRel, TEQ_FT<"tltu", GPR32Opnd>, TEQ_FM_MM<0x28>;
271 def TNE_MM : MMRel, TEQ_FT<"tne", GPR32Opnd>, TEQ_FM_MM<0x30>;
Zoran Jovanovicccb70ca2013-11-13 13:15:03 +0000272
273 def TEQI_MM : MMRel, TEQI_FT<"teqi", GPR32Opnd>, TEQI_FM_MM<0x0e>;
274 def TGEI_MM : MMRel, TEQI_FT<"tgei", GPR32Opnd>, TEQI_FM_MM<0x09>;
275 def TGEIU_MM : MMRel, TEQI_FT<"tgeiu", GPR32Opnd>, TEQI_FM_MM<0x0b>;
276 def TLTI_MM : MMRel, TEQI_FT<"tlti", GPR32Opnd>, TEQI_FM_MM<0x08>;
277 def TLTIU_MM : MMRel, TEQI_FT<"tltiu", GPR32Opnd>, TEQI_FM_MM<0x0a>;
278 def TNEI_MM : MMRel, TEQI_FT<"tnei", GPR32Opnd>, TEQI_FM_MM<0x0c>;
Zoran Jovanovicff9d5f32013-12-19 16:12:56 +0000279
280 /// Load-linked, Store-conditional
281 def LL_MM : LLBaseMM<"ll", GPR32Opnd>, LL_FM_MM<0x3>;
282 def SC_MM : SCBaseMM<"sc", GPR32Opnd>, LL_FM_MM<0xb>;
Akira Hatanakabe6a8182013-04-19 19:03:11 +0000283}
Zoran Jovanovica0f53282014-03-20 10:41:37 +0000284
285//===----------------------------------------------------------------------===//
286// MicroMips instruction aliases
287//===----------------------------------------------------------------------===//
288
289let Predicates = [InMicroMips] in {
290 def : InstAlias<"wait", (WAIT_MM 0x0), 1>;
291}