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