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