1 //===-- MipsMCCodeEmitter.cpp - Convert Mips Code to Machine Code ---------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file implements the MipsMCCodeEmitter class. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "MCTargetDesc/MipsFixupKinds.h" 15 #include "MCTargetDesc/MipsMCExpr.h" 16 #include "MCTargetDesc/MipsMCTargetDesc.h" 17 #include "MipsMCCodeEmitter.h" 18 #include "llvm/ADT/APFloat.h" 19 #include "llvm/ADT/APInt.h" 20 #include "llvm/ADT/SmallVector.h" 21 #include "llvm/MC/MCContext.h" 22 #include "llvm/MC/MCExpr.h" 23 #include "llvm/MC/MCFixup.h" 24 #include "llvm/MC/MCInst.h" 25 #include "llvm/MC/MCInstrDesc.h" 26 #include "llvm/MC/MCInstrInfo.h" 27 #include "llvm/MC/MCRegisterInfo.h" 28 #include "llvm/MC/MCSubtargetInfo.h" 29 #include "llvm/Support/Casting.h" 30 #include "llvm/Support/ErrorHandling.h" 31 #include "llvm/Support/raw_ostream.h" 32 #include <cassert> 33 #include <cstdint> 34 35 using namespace llvm; 36 37 #define DEBUG_TYPE "mccodeemitter" 38 39 #define GET_INSTRMAP_INFO 40 #include "MipsGenInstrInfo.inc" 41 #undef GET_INSTRMAP_INFO 42 43 namespace llvm { 44 45 MCCodeEmitter *createMipsMCCodeEmitterEB(const MCInstrInfo &MCII, 46 const MCRegisterInfo &MRI, 47 MCContext &Ctx) { 48 return new MipsMCCodeEmitter(MCII, Ctx, false); 49 } 50 51 MCCodeEmitter *createMipsMCCodeEmitterEL(const MCInstrInfo &MCII, 52 const MCRegisterInfo &MRI, 53 MCContext &Ctx) { 54 return new MipsMCCodeEmitter(MCII, Ctx, true); 55 } 56 57 } // end namespace llvm 58 59 // If the D<shift> instruction has a shift amount that is greater 60 // than 31 (checked in calling routine), lower it to a D<shift>32 instruction 61 static void LowerLargeShift(MCInst& Inst) { 62 assert(Inst.getNumOperands() == 3 && "Invalid no. of operands for shift!"); 63 assert(Inst.getOperand(2).isImm()); 64 65 int64_t Shift = Inst.getOperand(2).getImm(); 66 if (Shift <= 31) 67 return; // Do nothing 68 Shift -= 32; 69 70 // saminus32 71 Inst.getOperand(2).setImm(Shift); 72 73 switch (Inst.getOpcode()) { 74 default: 75 // Calling function is not synchronized 76 llvm_unreachable("Unexpected shift instruction"); 77 case Mips::DSLL: 78 Inst.setOpcode(Mips::DSLL32); 79 return; 80 case Mips::DSRL: 81 Inst.setOpcode(Mips::DSRL32); 82 return; 83 case Mips::DSRA: 84 Inst.setOpcode(Mips::DSRA32); 85 return; 86 case Mips::DROTR: 87 Inst.setOpcode(Mips::DROTR32); 88 return; 89 case Mips::DSLL_MM64R6: 90 Inst.setOpcode(Mips::DSLL32_MM64R6); 91 return; 92 case Mips::DSRL_MM64R6: 93 Inst.setOpcode(Mips::DSRL32_MM64R6); 94 return; 95 case Mips::DSRA_MM64R6: 96 Inst.setOpcode(Mips::DSRA32_MM64R6); 97 return; 98 case Mips::DROTR_MM64R6: 99 Inst.setOpcode(Mips::DROTR32_MM64R6); 100 return; 101 } 102 } 103 104 // Pick a DINS instruction variant based on the pos and size operands 105 static void LowerDins(MCInst& InstIn) { 106 assert(InstIn.getNumOperands() == 5 && 107 "Invalid no. of machine operands for DINS!"); 108 109 assert(InstIn.getOperand(2).isImm()); 110 int64_t pos = InstIn.getOperand(2).getImm(); 111 assert(InstIn.getOperand(3).isImm()); 112 int64_t size = InstIn.getOperand(3).getImm(); 113 114 assert((pos + size) <= 64 && 115 "DINS cannot have position plus size over 64"); 116 if (pos < 32) { 117 if ((pos + size) > 0 && (pos + size) <= 32) 118 return; // DINS, do nothing 119 else if ((pos + size) > 32) { 120 //DINSM 121 InstIn.getOperand(3).setImm(size - 32); 122 InstIn.setOpcode(Mips::DINSM); 123 } 124 } else if ((pos + size) > 32 && (pos + size) <= 64) { 125 // DINSU 126 InstIn.getOperand(2).setImm(pos - 32); 127 InstIn.setOpcode(Mips::DINSU); 128 } 129 } 130 131 // Fix a bad compact branch encoding for beqc/bnec. 132 void MipsMCCodeEmitter::LowerCompactBranch(MCInst& Inst) const { 133 // Encoding may be illegal !(rs < rt), but this situation is 134 // easily fixed. 135 unsigned RegOp0 = Inst.getOperand(0).getReg(); 136 unsigned RegOp1 = Inst.getOperand(1).getReg(); 137 138 unsigned Reg0 = Ctx.getRegisterInfo()->getEncodingValue(RegOp0); 139 unsigned Reg1 = Ctx.getRegisterInfo()->getEncodingValue(RegOp1); 140 141 if (Inst.getOpcode() == Mips::BNEC || Inst.getOpcode() == Mips::BEQC || 142 Inst.getOpcode() == Mips::BNEC64 || Inst.getOpcode() == Mips::BEQC64) { 143 assert(Reg0 != Reg1 && "Instruction has bad operands ($rs == $rt)!"); 144 if (Reg0 < Reg1) 145 return; 146 } else if (Inst.getOpcode() == Mips::BNVC || Inst.getOpcode() == Mips::BOVC) { 147 if (Reg0 >= Reg1) 148 return; 149 } else if (Inst.getOpcode() == Mips::BNVC_MMR6 || 150 Inst.getOpcode() == Mips::BOVC_MMR6) { 151 if (Reg1 >= Reg0) 152 return; 153 } else 154 llvm_unreachable("Cannot rewrite unknown branch!"); 155 156 Inst.getOperand(0).setReg(RegOp1); 157 Inst.getOperand(1).setReg(RegOp0); 158 } 159 160 bool MipsMCCodeEmitter::isMicroMips(const MCSubtargetInfo &STI) const { 161 return STI.getFeatureBits()[Mips::FeatureMicroMips]; 162 } 163 164 bool MipsMCCodeEmitter::isMips32r6(const MCSubtargetInfo &STI) const { 165 return STI.getFeatureBits()[Mips::FeatureMips32r6]; 166 } 167 168 void MipsMCCodeEmitter::EmitByte(unsigned char C, raw_ostream &OS) const { 169 OS << (char)C; 170 } 171 172 void MipsMCCodeEmitter::EmitInstruction(uint64_t Val, unsigned Size, 173 const MCSubtargetInfo &STI, 174 raw_ostream &OS) const { 175 // Output the instruction encoding in little endian byte order. 176 // Little-endian byte ordering: 177 // mips32r2: 4 | 3 | 2 | 1 178 // microMIPS: 2 | 1 | 4 | 3 179 if (IsLittleEndian && Size == 4 && isMicroMips(STI)) { 180 EmitInstruction(Val >> 16, 2, STI, OS); 181 EmitInstruction(Val, 2, STI, OS); 182 } else { 183 for (unsigned i = 0; i < Size; ++i) { 184 unsigned Shift = IsLittleEndian ? i * 8 : (Size - 1 - i) * 8; 185 EmitByte((Val >> Shift) & 0xff, OS); 186 } 187 } 188 } 189 190 /// encodeInstruction - Emit the instruction. 191 /// Size the instruction with Desc.getSize(). 192 void MipsMCCodeEmitter:: 193 encodeInstruction(const MCInst &MI, raw_ostream &OS, 194 SmallVectorImpl<MCFixup> &Fixups, 195 const MCSubtargetInfo &STI) const 196 { 197 // Non-pseudo instructions that get changed for direct object 198 // only based on operand values. 199 // If this list of instructions get much longer we will move 200 // the check to a function call. Until then, this is more efficient. 201 MCInst TmpInst = MI; 202 switch (MI.getOpcode()) { 203 // If shift amount is >= 32 it the inst needs to be lowered further 204 case Mips::DSLL: 205 case Mips::DSRL: 206 case Mips::DSRA: 207 case Mips::DROTR: 208 case Mips::DSLL_MM64R6: 209 case Mips::DSRL_MM64R6: 210 case Mips::DSRA_MM64R6: 211 case Mips::DROTR_MM64R6: 212 LowerLargeShift(TmpInst); 213 break; 214 // Double extract instruction is chosen by pos and size operands 215 case Mips::DINS: 216 LowerDins(TmpInst); 217 break; 218 // Compact branches, enforce encoding restrictions. 219 case Mips::BEQC: 220 case Mips::BNEC: 221 case Mips::BEQC64: 222 case Mips::BNEC64: 223 case Mips::BOVC: 224 case Mips::BOVC_MMR6: 225 case Mips::BNVC: 226 case Mips::BNVC_MMR6: 227 LowerCompactBranch(TmpInst); 228 } 229 230 unsigned long N = Fixups.size(); 231 uint32_t Binary = getBinaryCodeForInstr(TmpInst, Fixups, STI); 232 233 // Check for unimplemented opcodes. 234 // Unfortunately in MIPS both NOP and SLL will come in with Binary == 0 235 // so we have to special check for them. 236 unsigned Opcode = TmpInst.getOpcode(); 237 if ((Opcode != Mips::NOP) && (Opcode != Mips::SLL) && 238 (Opcode != Mips::SLL_MM) && !Binary) 239 llvm_unreachable("unimplemented opcode in encodeInstruction()"); 240 241 int NewOpcode = -1; 242 if (isMicroMips(STI)) { 243 if (isMips32r6(STI)) { 244 NewOpcode = Mips::MipsR62MicroMipsR6(Opcode, Mips::Arch_micromipsr6); 245 if (NewOpcode == -1) 246 NewOpcode = Mips::Std2MicroMipsR6(Opcode, Mips::Arch_micromipsr6); 247 } 248 else 249 NewOpcode = Mips::Std2MicroMips(Opcode, Mips::Arch_micromips); 250 251 // Check whether it is Dsp instruction. 252 if (NewOpcode == -1) 253 NewOpcode = Mips::Dsp2MicroMips(Opcode, Mips::Arch_mmdsp); 254 255 if (NewOpcode != -1) { 256 if (Fixups.size() > N) 257 Fixups.pop_back(); 258 259 Opcode = NewOpcode; 260 TmpInst.setOpcode (NewOpcode); 261 Binary = getBinaryCodeForInstr(TmpInst, Fixups, STI); 262 } 263 } 264 265 const MCInstrDesc &Desc = MCII.get(TmpInst.getOpcode()); 266 267 // Get byte count of instruction 268 unsigned Size = Desc.getSize(); 269 if (!Size) 270 llvm_unreachable("Desc.getSize() returns 0"); 271 272 EmitInstruction(Binary, Size, STI, OS); 273 } 274 275 /// getBranchTargetOpValue - Return binary encoding of the branch 276 /// target operand. If the machine operand requires relocation, 277 /// record the relocation and return zero. 278 unsigned MipsMCCodeEmitter:: 279 getBranchTargetOpValue(const MCInst &MI, unsigned OpNo, 280 SmallVectorImpl<MCFixup> &Fixups, 281 const MCSubtargetInfo &STI) const { 282 const MCOperand &MO = MI.getOperand(OpNo); 283 284 // If the destination is an immediate, divide by 4. 285 if (MO.isImm()) return MO.getImm() >> 2; 286 287 assert(MO.isExpr() && 288 "getBranchTargetOpValue expects only expressions or immediates"); 289 290 const MCExpr *FixupExpression = MCBinaryExpr::createAdd( 291 MO.getExpr(), MCConstantExpr::create(-4, Ctx), Ctx); 292 Fixups.push_back(MCFixup::create(0, FixupExpression, 293 MCFixupKind(Mips::fixup_Mips_PC16))); 294 return 0; 295 } 296 297 /// getBranchTargetOpValue1SImm16 - Return binary encoding of the branch 298 /// target operand. If the machine operand requires relocation, 299 /// record the relocation and return zero. 300 unsigned MipsMCCodeEmitter:: 301 getBranchTargetOpValue1SImm16(const MCInst &MI, unsigned OpNo, 302 SmallVectorImpl<MCFixup> &Fixups, 303 const MCSubtargetInfo &STI) const { 304 const MCOperand &MO = MI.getOperand(OpNo); 305 306 // If the destination is an immediate, divide by 2. 307 if (MO.isImm()) return MO.getImm() >> 1; 308 309 assert(MO.isExpr() && 310 "getBranchTargetOpValue expects only expressions or immediates"); 311 312 const MCExpr *FixupExpression = MCBinaryExpr::createAdd( 313 MO.getExpr(), MCConstantExpr::create(-4, Ctx), Ctx); 314 Fixups.push_back(MCFixup::create(0, FixupExpression, 315 MCFixupKind(Mips::fixup_Mips_PC16))); 316 return 0; 317 } 318 319 /// getBranchTargetOpValueMMR6 - Return binary encoding of the branch 320 /// target operand. If the machine operand requires relocation, 321 /// record the relocation and return zero. 322 unsigned MipsMCCodeEmitter:: 323 getBranchTargetOpValueMMR6(const MCInst &MI, unsigned OpNo, 324 SmallVectorImpl<MCFixup> &Fixups, 325 const MCSubtargetInfo &STI) const { 326 const MCOperand &MO = MI.getOperand(OpNo); 327 328 // If the destination is an immediate, divide by 2. 329 if (MO.isImm()) 330 return MO.getImm() >> 1; 331 332 assert(MO.isExpr() && 333 "getBranchTargetOpValueMMR6 expects only expressions or immediates"); 334 335 const MCExpr *FixupExpression = MCBinaryExpr::createAdd( 336 MO.getExpr(), MCConstantExpr::create(-2, Ctx), Ctx); 337 Fixups.push_back(MCFixup::create(0, FixupExpression, 338 MCFixupKind(Mips::fixup_Mips_PC16))); 339 return 0; 340 } 341 342 /// getBranchTargetOpValueLsl2MMR6 - Return binary encoding of the branch 343 /// target operand. If the machine operand requires relocation, 344 /// record the relocation and return zero. 345 unsigned MipsMCCodeEmitter:: 346 getBranchTargetOpValueLsl2MMR6(const MCInst &MI, unsigned OpNo, 347 SmallVectorImpl<MCFixup> &Fixups, 348 const MCSubtargetInfo &STI) const { 349 const MCOperand &MO = MI.getOperand(OpNo); 350 351 // If the destination is an immediate, divide by 4. 352 if (MO.isImm()) 353 return MO.getImm() >> 2; 354 355 assert(MO.isExpr() && 356 "getBranchTargetOpValueLsl2MMR6 expects only expressions or immediates"); 357 358 const MCExpr *FixupExpression = MCBinaryExpr::createAdd( 359 MO.getExpr(), MCConstantExpr::create(-4, Ctx), Ctx); 360 Fixups.push_back(MCFixup::create(0, FixupExpression, 361 MCFixupKind(Mips::fixup_Mips_PC16))); 362 return 0; 363 } 364 365 /// getBranchTarget7OpValueMM - Return binary encoding of the microMIPS branch 366 /// target operand. If the machine operand requires relocation, 367 /// record the relocation and return zero. 368 unsigned MipsMCCodeEmitter:: 369 getBranchTarget7OpValueMM(const MCInst &MI, unsigned OpNo, 370 SmallVectorImpl<MCFixup> &Fixups, 371 const MCSubtargetInfo &STI) const { 372 const MCOperand &MO = MI.getOperand(OpNo); 373 374 // If the destination is an immediate, divide by 2. 375 if (MO.isImm()) return MO.getImm() >> 1; 376 377 assert(MO.isExpr() && 378 "getBranchTargetOpValueMM expects only expressions or immediates"); 379 380 const MCExpr *Expr = MO.getExpr(); 381 Fixups.push_back(MCFixup::create(0, Expr, 382 MCFixupKind(Mips::fixup_MICROMIPS_PC7_S1))); 383 return 0; 384 } 385 386 /// getBranchTargetOpValueMMPC10 - Return binary encoding of the microMIPS 387 /// 10-bit branch target operand. If the machine operand requires relocation, 388 /// record the relocation and return zero. 389 unsigned MipsMCCodeEmitter:: 390 getBranchTargetOpValueMMPC10(const MCInst &MI, unsigned OpNo, 391 SmallVectorImpl<MCFixup> &Fixups, 392 const MCSubtargetInfo &STI) const { 393 const MCOperand &MO = MI.getOperand(OpNo); 394 395 // If the destination is an immediate, divide by 2. 396 if (MO.isImm()) return MO.getImm() >> 1; 397 398 assert(MO.isExpr() && 399 "getBranchTargetOpValuePC10 expects only expressions or immediates"); 400 401 const MCExpr *Expr = MO.getExpr(); 402 Fixups.push_back(MCFixup::create(0, Expr, 403 MCFixupKind(Mips::fixup_MICROMIPS_PC10_S1))); 404 return 0; 405 } 406 407 /// getBranchTargetOpValue - Return binary encoding of the microMIPS branch 408 /// target operand. If the machine operand requires relocation, 409 /// record the relocation and return zero. 410 unsigned MipsMCCodeEmitter:: 411 getBranchTargetOpValueMM(const MCInst &MI, unsigned OpNo, 412 SmallVectorImpl<MCFixup> &Fixups, 413 const MCSubtargetInfo &STI) const { 414 const MCOperand &MO = MI.getOperand(OpNo); 415 416 // If the destination is an immediate, divide by 2. 417 if (MO.isImm()) return MO.getImm() >> 1; 418 419 assert(MO.isExpr() && 420 "getBranchTargetOpValueMM expects only expressions or immediates"); 421 422 const MCExpr *Expr = MO.getExpr(); 423 Fixups.push_back(MCFixup::create(0, Expr, 424 MCFixupKind(Mips:: 425 fixup_MICROMIPS_PC16_S1))); 426 return 0; 427 } 428 429 /// getBranchTarget21OpValue - Return binary encoding of the branch 430 /// target operand. If the machine operand requires relocation, 431 /// record the relocation and return zero. 432 unsigned MipsMCCodeEmitter:: 433 getBranchTarget21OpValue(const MCInst &MI, unsigned OpNo, 434 SmallVectorImpl<MCFixup> &Fixups, 435 const MCSubtargetInfo &STI) const { 436 const MCOperand &MO = MI.getOperand(OpNo); 437 438 // If the destination is an immediate, divide by 4. 439 if (MO.isImm()) return MO.getImm() >> 2; 440 441 assert(MO.isExpr() && 442 "getBranchTarget21OpValue expects only expressions or immediates"); 443 444 const MCExpr *FixupExpression = MCBinaryExpr::createAdd( 445 MO.getExpr(), MCConstantExpr::create(-4, Ctx), Ctx); 446 Fixups.push_back(MCFixup::create(0, FixupExpression, 447 MCFixupKind(Mips::fixup_MIPS_PC21_S2))); 448 return 0; 449 } 450 451 /// getBranchTarget21OpValueMM - Return binary encoding of the branch 452 /// target operand for microMIPS. If the machine operand requires 453 /// relocation, record the relocation and return zero. 454 unsigned MipsMCCodeEmitter:: 455 getBranchTarget21OpValueMM(const MCInst &MI, unsigned OpNo, 456 SmallVectorImpl<MCFixup> &Fixups, 457 const MCSubtargetInfo &STI) const { 458 const MCOperand &MO = MI.getOperand(OpNo); 459 460 // If the destination is an immediate, divide by 4. 461 if (MO.isImm()) return MO.getImm() >> 2; 462 463 assert(MO.isExpr() && 464 "getBranchTarget21OpValueMM expects only expressions or immediates"); 465 466 const MCExpr *FixupExpression = MCBinaryExpr::createAdd( 467 MO.getExpr(), MCConstantExpr::create(-4, Ctx), Ctx); 468 Fixups.push_back(MCFixup::create(0, FixupExpression, 469 MCFixupKind(Mips::fixup_MICROMIPS_PC21_S1))); 470 return 0; 471 } 472 473 /// getBranchTarget26OpValue - Return binary encoding of the branch 474 /// target operand. If the machine operand requires relocation, 475 /// record the relocation and return zero. 476 unsigned MipsMCCodeEmitter:: 477 getBranchTarget26OpValue(const MCInst &MI, unsigned OpNo, 478 SmallVectorImpl<MCFixup> &Fixups, 479 const MCSubtargetInfo &STI) const { 480 const MCOperand &MO = MI.getOperand(OpNo); 481 482 // If the destination is an immediate, divide by 4. 483 if (MO.isImm()) return MO.getImm() >> 2; 484 485 assert(MO.isExpr() && 486 "getBranchTarget26OpValue expects only expressions or immediates"); 487 488 const MCExpr *FixupExpression = MCBinaryExpr::createAdd( 489 MO.getExpr(), MCConstantExpr::create(-4, Ctx), Ctx); 490 Fixups.push_back(MCFixup::create(0, FixupExpression, 491 MCFixupKind(Mips::fixup_MIPS_PC26_S2))); 492 return 0; 493 } 494 495 /// getBranchTarget26OpValueMM - Return binary encoding of the branch 496 /// target operand. If the machine operand requires relocation, 497 /// record the relocation and return zero. 498 unsigned MipsMCCodeEmitter::getBranchTarget26OpValueMM( 499 const MCInst &MI, unsigned OpNo, SmallVectorImpl<MCFixup> &Fixups, 500 const MCSubtargetInfo &STI) const { 501 const MCOperand &MO = MI.getOperand(OpNo); 502 503 // If the destination is an immediate, divide by 2. 504 if (MO.isImm()) 505 return MO.getImm() >> 1; 506 507 assert(MO.isExpr() && 508 "getBranchTarget26OpValueMM expects only expressions or immediates"); 509 510 const MCExpr *FixupExpression = MCBinaryExpr::createAdd( 511 MO.getExpr(), MCConstantExpr::create(-4, Ctx), Ctx); 512 Fixups.push_back(MCFixup::create(0, FixupExpression, 513 MCFixupKind(Mips::fixup_MICROMIPS_PC26_S1))); 514 return 0; 515 } 516 517 /// getJumpOffset16OpValue - Return binary encoding of the jump 518 /// target operand. If the machine operand requires relocation, 519 /// record the relocation and return zero. 520 unsigned MipsMCCodeEmitter:: 521 getJumpOffset16OpValue(const MCInst &MI, unsigned OpNo, 522 SmallVectorImpl<MCFixup> &Fixups, 523 const MCSubtargetInfo &STI) const { 524 const MCOperand &MO = MI.getOperand(OpNo); 525 526 if (MO.isImm()) return MO.getImm(); 527 528 assert(MO.isExpr() && 529 "getJumpOffset16OpValue expects only expressions or an immediate"); 530 531 // TODO: Push fixup. 532 return 0; 533 } 534 535 /// getJumpTargetOpValue - Return binary encoding of the jump 536 /// target operand. If the machine operand requires relocation, 537 /// record the relocation and return zero. 538 unsigned MipsMCCodeEmitter:: 539 getJumpTargetOpValue(const MCInst &MI, unsigned OpNo, 540 SmallVectorImpl<MCFixup> &Fixups, 541 const MCSubtargetInfo &STI) const { 542 const MCOperand &MO = MI.getOperand(OpNo); 543 // If the destination is an immediate, divide by 4. 544 if (MO.isImm()) return MO.getImm()>>2; 545 546 assert(MO.isExpr() && 547 "getJumpTargetOpValue expects only expressions or an immediate"); 548 549 const MCExpr *Expr = MO.getExpr(); 550 Fixups.push_back(MCFixup::create(0, Expr, 551 MCFixupKind(Mips::fixup_Mips_26))); 552 return 0; 553 } 554 555 unsigned MipsMCCodeEmitter:: 556 getJumpTargetOpValueMM(const MCInst &MI, unsigned OpNo, 557 SmallVectorImpl<MCFixup> &Fixups, 558 const MCSubtargetInfo &STI) const { 559 const MCOperand &MO = MI.getOperand(OpNo); 560 // If the destination is an immediate, divide by 2. 561 if (MO.isImm()) return MO.getImm() >> 1; 562 563 assert(MO.isExpr() && 564 "getJumpTargetOpValueMM expects only expressions or an immediate"); 565 566 const MCExpr *Expr = MO.getExpr(); 567 Fixups.push_back(MCFixup::create(0, Expr, 568 MCFixupKind(Mips::fixup_MICROMIPS_26_S1))); 569 return 0; 570 } 571 572 unsigned MipsMCCodeEmitter:: 573 getUImm5Lsl2Encoding(const MCInst &MI, unsigned OpNo, 574 SmallVectorImpl<MCFixup> &Fixups, 575 const MCSubtargetInfo &STI) const { 576 const MCOperand &MO = MI.getOperand(OpNo); 577 if (MO.isImm()) { 578 // The immediate is encoded as 'immediate << 2'. 579 unsigned Res = getMachineOpValue(MI, MO, Fixups, STI); 580 assert((Res & 3) == 0); 581 return Res >> 2; 582 } 583 584 assert(MO.isExpr() && 585 "getUImm5Lsl2Encoding expects only expressions or an immediate"); 586 587 return 0; 588 } 589 590 unsigned MipsMCCodeEmitter:: 591 getSImm3Lsa2Value(const MCInst &MI, unsigned OpNo, 592 SmallVectorImpl<MCFixup> &Fixups, 593 const MCSubtargetInfo &STI) const { 594 const MCOperand &MO = MI.getOperand(OpNo); 595 if (MO.isImm()) { 596 int Value = MO.getImm(); 597 return Value >> 2; 598 } 599 600 return 0; 601 } 602 603 unsigned MipsMCCodeEmitter:: 604 getUImm6Lsl2Encoding(const MCInst &MI, unsigned OpNo, 605 SmallVectorImpl<MCFixup> &Fixups, 606 const MCSubtargetInfo &STI) const { 607 const MCOperand &MO = MI.getOperand(OpNo); 608 if (MO.isImm()) { 609 unsigned Value = MO.getImm(); 610 return Value >> 2; 611 } 612 613 return 0; 614 } 615 616 unsigned MipsMCCodeEmitter:: 617 getSImm9AddiuspValue(const MCInst &MI, unsigned OpNo, 618 SmallVectorImpl<MCFixup> &Fixups, 619 const MCSubtargetInfo &STI) const { 620 const MCOperand &MO = MI.getOperand(OpNo); 621 if (MO.isImm()) { 622 unsigned Binary = (MO.getImm() >> 2) & 0x0000ffff; 623 return (((Binary & 0x8000) >> 7) | (Binary & 0x00ff)); 624 } 625 626 return 0; 627 } 628 629 unsigned MipsMCCodeEmitter:: 630 getExprOpValue(const MCExpr *Expr, SmallVectorImpl<MCFixup> &Fixups, 631 const MCSubtargetInfo &STI) const { 632 int64_t Res; 633 634 if (Expr->evaluateAsAbsolute(Res)) 635 return Res; 636 637 MCExpr::ExprKind Kind = Expr->getKind(); 638 if (Kind == MCExpr::Constant) { 639 return cast<MCConstantExpr>(Expr)->getValue(); 640 } 641 642 if (Kind == MCExpr::Binary) { 643 unsigned Res = getExprOpValue(cast<MCBinaryExpr>(Expr)->getLHS(), Fixups, STI); 644 Res += getExprOpValue(cast<MCBinaryExpr>(Expr)->getRHS(), Fixups, STI); 645 return Res; 646 } 647 648 if (Kind == MCExpr::Target) { 649 const MipsMCExpr *MipsExpr = cast<MipsMCExpr>(Expr); 650 651 Mips::Fixups FixupKind = Mips::Fixups(0); 652 switch (MipsExpr->getKind()) { 653 case MipsMCExpr::MEK_None: 654 case MipsMCExpr::MEK_Special: 655 llvm_unreachable("Unhandled fixup kind!"); 656 break; 657 case MipsMCExpr::MEK_CALL_HI16: 658 FixupKind = Mips::fixup_Mips_CALL_HI16; 659 break; 660 case MipsMCExpr::MEK_CALL_LO16: 661 FixupKind = Mips::fixup_Mips_CALL_LO16; 662 break; 663 case MipsMCExpr::MEK_DTPREL_HI: 664 FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_TLS_DTPREL_HI16 665 : Mips::fixup_Mips_DTPREL_HI; 666 break; 667 case MipsMCExpr::MEK_DTPREL_LO: 668 FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_TLS_DTPREL_LO16 669 : Mips::fixup_Mips_DTPREL_LO; 670 break; 671 case MipsMCExpr::MEK_GOTTPREL: 672 FixupKind = Mips::fixup_Mips_GOTTPREL; 673 break; 674 case MipsMCExpr::MEK_GOT: 675 FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_GOT16 676 : Mips::fixup_Mips_GOT; 677 break; 678 case MipsMCExpr::MEK_GOT_CALL: 679 FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_CALL16 680 : Mips::fixup_Mips_CALL16; 681 break; 682 case MipsMCExpr::MEK_GOT_DISP: 683 FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_GOT_DISP 684 : Mips::fixup_Mips_GOT_DISP; 685 break; 686 case MipsMCExpr::MEK_GOT_HI16: 687 FixupKind = Mips::fixup_Mips_GOT_HI16; 688 break; 689 case MipsMCExpr::MEK_GOT_LO16: 690 FixupKind = Mips::fixup_Mips_GOT_LO16; 691 break; 692 case MipsMCExpr::MEK_GOT_PAGE: 693 FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_GOT_PAGE 694 : Mips::fixup_Mips_GOT_PAGE; 695 break; 696 case MipsMCExpr::MEK_GOT_OFST: 697 FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_GOT_OFST 698 : Mips::fixup_Mips_GOT_OFST; 699 break; 700 case MipsMCExpr::MEK_GPREL: 701 FixupKind = Mips::fixup_Mips_GPREL16; 702 break; 703 case MipsMCExpr::MEK_LO: 704 // Check for %lo(%neg(%gp_rel(X))) 705 if (MipsExpr->isGpOff()) { 706 FixupKind = Mips::fixup_Mips_GPOFF_LO; 707 break; 708 } 709 FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_LO16 710 : Mips::fixup_Mips_LO16; 711 break; 712 case MipsMCExpr::MEK_HIGHEST: 713 FixupKind = Mips::fixup_Mips_HIGHEST; 714 break; 715 case MipsMCExpr::MEK_HIGHER: 716 FixupKind = Mips::fixup_Mips_HIGHER; 717 break; 718 case MipsMCExpr::MEK_HI: 719 // Check for %hi(%neg(%gp_rel(X))) 720 if (MipsExpr->isGpOff()) { 721 FixupKind = Mips::fixup_Mips_GPOFF_HI; 722 break; 723 } 724 FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_HI16 725 : Mips::fixup_Mips_HI16; 726 break; 727 case MipsMCExpr::MEK_PCREL_HI16: 728 FixupKind = Mips::fixup_MIPS_PCHI16; 729 break; 730 case MipsMCExpr::MEK_PCREL_LO16: 731 FixupKind = Mips::fixup_MIPS_PCLO16; 732 break; 733 case MipsMCExpr::MEK_TLSGD: 734 FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_TLS_GD 735 : Mips::fixup_Mips_TLSGD; 736 break; 737 case MipsMCExpr::MEK_TLSLDM: 738 FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_TLS_LDM 739 : Mips::fixup_Mips_TLSLDM; 740 break; 741 case MipsMCExpr::MEK_TPREL_HI: 742 FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_TLS_TPREL_HI16 743 : Mips::fixup_Mips_TPREL_HI; 744 break; 745 case MipsMCExpr::MEK_TPREL_LO: 746 FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_TLS_TPREL_LO16 747 : Mips::fixup_Mips_TPREL_LO; 748 break; 749 case MipsMCExpr::MEK_NEG: 750 FixupKind = 751 isMicroMips(STI) ? Mips::fixup_MICROMIPS_SUB : Mips::fixup_Mips_SUB; 752 break; 753 } 754 Fixups.push_back(MCFixup::create(0, MipsExpr, MCFixupKind(FixupKind))); 755 return 0; 756 } 757 758 if (Kind == MCExpr::SymbolRef) { 759 Mips::Fixups FixupKind = Mips::Fixups(0); 760 761 switch(cast<MCSymbolRefExpr>(Expr)->getKind()) { 762 default: llvm_unreachable("Unknown fixup kind!"); 763 break; 764 case MCSymbolRefExpr::VK_None: 765 FixupKind = Mips::fixup_Mips_32; // FIXME: This is ok for O32/N32 but not N64. 766 break; 767 } // switch 768 769 Fixups.push_back(MCFixup::create(0, Expr, MCFixupKind(FixupKind))); 770 return 0; 771 } 772 return 0; 773 } 774 775 /// getMachineOpValue - Return binary encoding of operand. If the machine 776 /// operand requires relocation, record the relocation and return zero. 777 unsigned MipsMCCodeEmitter:: 778 getMachineOpValue(const MCInst &MI, const MCOperand &MO, 779 SmallVectorImpl<MCFixup> &Fixups, 780 const MCSubtargetInfo &STI) const { 781 if (MO.isReg()) { 782 unsigned Reg = MO.getReg(); 783 unsigned RegNo = Ctx.getRegisterInfo()->getEncodingValue(Reg); 784 return RegNo; 785 } else if (MO.isImm()) { 786 return static_cast<unsigned>(MO.getImm()); 787 } else if (MO.isFPImm()) { 788 return static_cast<unsigned>(APFloat(MO.getFPImm()) 789 .bitcastToAPInt().getHiBits(32).getLimitedValue()); 790 } 791 // MO must be an Expr. 792 assert(MO.isExpr()); 793 return getExprOpValue(MO.getExpr(),Fixups, STI); 794 } 795 796 /// Return binary encoding of memory related operand. 797 /// If the offset operand requires relocation, record the relocation. 798 template <unsigned ShiftAmount> 799 unsigned MipsMCCodeEmitter::getMemEncoding(const MCInst &MI, unsigned OpNo, 800 SmallVectorImpl<MCFixup> &Fixups, 801 const MCSubtargetInfo &STI) const { 802 // Base register is encoded in bits 20-16, offset is encoded in bits 15-0. 803 assert(MI.getOperand(OpNo).isReg()); 804 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo),Fixups, STI) << 16; 805 unsigned OffBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups, STI); 806 807 // Apply the scale factor if there is one. 808 OffBits >>= ShiftAmount; 809 810 return (OffBits & 0xFFFF) | RegBits; 811 } 812 813 unsigned MipsMCCodeEmitter:: 814 getMemEncodingMMImm4(const MCInst &MI, unsigned OpNo, 815 SmallVectorImpl<MCFixup> &Fixups, 816 const MCSubtargetInfo &STI) const { 817 // Base register is encoded in bits 6-4, offset is encoded in bits 3-0. 818 assert(MI.getOperand(OpNo).isReg()); 819 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), 820 Fixups, STI) << 4; 821 unsigned OffBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), 822 Fixups, STI); 823 824 return (OffBits & 0xF) | RegBits; 825 } 826 827 unsigned MipsMCCodeEmitter:: 828 getMemEncodingMMImm4Lsl1(const MCInst &MI, unsigned OpNo, 829 SmallVectorImpl<MCFixup> &Fixups, 830 const MCSubtargetInfo &STI) const { 831 // Base register is encoded in bits 6-4, offset is encoded in bits 3-0. 832 assert(MI.getOperand(OpNo).isReg()); 833 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), 834 Fixups, STI) << 4; 835 unsigned OffBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), 836 Fixups, STI) >> 1; 837 838 return (OffBits & 0xF) | RegBits; 839 } 840 841 unsigned MipsMCCodeEmitter:: 842 getMemEncodingMMImm4Lsl2(const MCInst &MI, unsigned OpNo, 843 SmallVectorImpl<MCFixup> &Fixups, 844 const MCSubtargetInfo &STI) const { 845 // Base register is encoded in bits 6-4, offset is encoded in bits 3-0. 846 assert(MI.getOperand(OpNo).isReg()); 847 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), 848 Fixups, STI) << 4; 849 unsigned OffBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), 850 Fixups, STI) >> 2; 851 852 return (OffBits & 0xF) | RegBits; 853 } 854 855 unsigned MipsMCCodeEmitter:: 856 getMemEncodingMMSPImm5Lsl2(const MCInst &MI, unsigned OpNo, 857 SmallVectorImpl<MCFixup> &Fixups, 858 const MCSubtargetInfo &STI) const { 859 // Register is encoded in bits 9-5, offset is encoded in bits 4-0. 860 assert(MI.getOperand(OpNo).isReg() && 861 (MI.getOperand(OpNo).getReg() == Mips::SP || 862 MI.getOperand(OpNo).getReg() == Mips::SP_64) && 863 "Unexpected base register!"); 864 unsigned OffBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), 865 Fixups, STI) >> 2; 866 867 return OffBits & 0x1F; 868 } 869 870 unsigned MipsMCCodeEmitter:: 871 getMemEncodingMMGPImm7Lsl2(const MCInst &MI, unsigned OpNo, 872 SmallVectorImpl<MCFixup> &Fixups, 873 const MCSubtargetInfo &STI) const { 874 // Register is encoded in bits 9-7, offset is encoded in bits 6-0. 875 assert(MI.getOperand(OpNo).isReg() && 876 MI.getOperand(OpNo).getReg() == Mips::GP && 877 "Unexpected base register!"); 878 879 unsigned OffBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), 880 Fixups, STI) >> 2; 881 882 return OffBits & 0x7F; 883 } 884 885 unsigned MipsMCCodeEmitter:: 886 getMemEncodingMMImm9(const MCInst &MI, unsigned OpNo, 887 SmallVectorImpl<MCFixup> &Fixups, 888 const MCSubtargetInfo &STI) const { 889 // Base register is encoded in bits 20-16, offset is encoded in bits 8-0. 890 assert(MI.getOperand(OpNo).isReg()); 891 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups, 892 STI) << 16; 893 unsigned OffBits = getMachineOpValue(MI, MI.getOperand(OpNo + 1), Fixups, STI); 894 895 return (OffBits & 0x1FF) | RegBits; 896 } 897 898 unsigned MipsMCCodeEmitter:: 899 getMemEncodingMMImm11(const MCInst &MI, unsigned OpNo, 900 SmallVectorImpl<MCFixup> &Fixups, 901 const MCSubtargetInfo &STI) const { 902 // Base register is encoded in bits 20-16, offset is encoded in bits 10-0. 903 assert(MI.getOperand(OpNo).isReg()); 904 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups, 905 STI) << 16; 906 unsigned OffBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups, STI); 907 908 return (OffBits & 0x07FF) | RegBits; 909 } 910 911 unsigned MipsMCCodeEmitter:: 912 getMemEncodingMMImm12(const MCInst &MI, unsigned OpNo, 913 SmallVectorImpl<MCFixup> &Fixups, 914 const MCSubtargetInfo &STI) const { 915 // opNum can be invalid if instruction had reglist as operand. 916 // MemOperand is always last operand of instruction (base + offset). 917 switch (MI.getOpcode()) { 918 default: 919 break; 920 case Mips::SWM32_MM: 921 case Mips::LWM32_MM: 922 OpNo = MI.getNumOperands() - 2; 923 break; 924 } 925 926 // Base register is encoded in bits 20-16, offset is encoded in bits 11-0. 927 assert(MI.getOperand(OpNo).isReg()); 928 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups, STI) << 16; 929 unsigned OffBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups, STI); 930 931 return (OffBits & 0x0FFF) | RegBits; 932 } 933 934 unsigned MipsMCCodeEmitter:: 935 getMemEncodingMMImm16(const MCInst &MI, unsigned OpNo, 936 SmallVectorImpl<MCFixup> &Fixups, 937 const MCSubtargetInfo &STI) const { 938 // Base register is encoded in bits 20-16, offset is encoded in bits 15-0. 939 assert(MI.getOperand(OpNo).isReg()); 940 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups, 941 STI) << 16; 942 unsigned OffBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups, STI); 943 944 return (OffBits & 0xFFFF) | RegBits; 945 } 946 947 unsigned MipsMCCodeEmitter:: 948 getMemEncodingMMImm4sp(const MCInst &MI, unsigned OpNo, 949 SmallVectorImpl<MCFixup> &Fixups, 950 const MCSubtargetInfo &STI) const { 951 // opNum can be invalid if instruction had reglist as operand 952 // MemOperand is always last operand of instruction (base + offset) 953 switch (MI.getOpcode()) { 954 default: 955 break; 956 case Mips::SWM16_MM: 957 case Mips::SWM16_MMR6: 958 case Mips::LWM16_MM: 959 case Mips::LWM16_MMR6: 960 OpNo = MI.getNumOperands() - 2; 961 break; 962 } 963 964 // Offset is encoded in bits 4-0. 965 assert(MI.getOperand(OpNo).isReg()); 966 // Base register is always SP - thus it is not encoded. 967 assert(MI.getOperand(OpNo+1).isImm()); 968 unsigned OffBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups, STI); 969 970 return ((OffBits >> 2) & 0x0F); 971 } 972 973 // FIXME: should be called getMSBEncoding 974 // 975 unsigned 976 MipsMCCodeEmitter::getSizeInsEncoding(const MCInst &MI, unsigned OpNo, 977 SmallVectorImpl<MCFixup> &Fixups, 978 const MCSubtargetInfo &STI) const { 979 assert(MI.getOperand(OpNo-1).isImm()); 980 assert(MI.getOperand(OpNo).isImm()); 981 unsigned Position = getMachineOpValue(MI, MI.getOperand(OpNo-1), Fixups, STI); 982 unsigned Size = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups, STI); 983 984 return Position + Size - 1; 985 } 986 987 template <unsigned Bits, int Offset> 988 unsigned 989 MipsMCCodeEmitter::getUImmWithOffsetEncoding(const MCInst &MI, unsigned OpNo, 990 SmallVectorImpl<MCFixup> &Fixups, 991 const MCSubtargetInfo &STI) const { 992 assert(MI.getOperand(OpNo).isImm()); 993 unsigned Value = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups, STI); 994 Value -= Offset; 995 return Value; 996 } 997 998 unsigned 999 MipsMCCodeEmitter::getSimm19Lsl2Encoding(const MCInst &MI, unsigned OpNo, 1000 SmallVectorImpl<MCFixup> &Fixups, 1001 const MCSubtargetInfo &STI) const { 1002 const MCOperand &MO = MI.getOperand(OpNo); 1003 if (MO.isImm()) { 1004 // The immediate is encoded as 'immediate << 2'. 1005 unsigned Res = getMachineOpValue(MI, MO, Fixups, STI); 1006 assert((Res & 3) == 0); 1007 return Res >> 2; 1008 } 1009 1010 assert(MO.isExpr() && 1011 "getSimm19Lsl2Encoding expects only expressions or an immediate"); 1012 1013 const MCExpr *Expr = MO.getExpr(); 1014 Mips::Fixups FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_PC19_S2 1015 : Mips::fixup_MIPS_PC19_S2; 1016 Fixups.push_back(MCFixup::create(0, Expr, MCFixupKind(FixupKind))); 1017 return 0; 1018 } 1019 1020 unsigned 1021 MipsMCCodeEmitter::getSimm18Lsl3Encoding(const MCInst &MI, unsigned OpNo, 1022 SmallVectorImpl<MCFixup> &Fixups, 1023 const MCSubtargetInfo &STI) const { 1024 const MCOperand &MO = MI.getOperand(OpNo); 1025 if (MO.isImm()) { 1026 // The immediate is encoded as 'immediate << 3'. 1027 unsigned Res = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups, STI); 1028 assert((Res & 7) == 0); 1029 return Res >> 3; 1030 } 1031 1032 assert(MO.isExpr() && 1033 "getSimm18Lsl2Encoding expects only expressions or an immediate"); 1034 1035 const MCExpr *Expr = MO.getExpr(); 1036 Mips::Fixups FixupKind = isMicroMips(STI) ? Mips::fixup_MICROMIPS_PC18_S3 1037 : Mips::fixup_MIPS_PC18_S3; 1038 Fixups.push_back(MCFixup::create(0, Expr, MCFixupKind(FixupKind))); 1039 return 0; 1040 } 1041 1042 unsigned 1043 MipsMCCodeEmitter::getUImm3Mod8Encoding(const MCInst &MI, unsigned OpNo, 1044 SmallVectorImpl<MCFixup> &Fixups, 1045 const MCSubtargetInfo &STI) const { 1046 assert(MI.getOperand(OpNo).isImm()); 1047 const MCOperand &MO = MI.getOperand(OpNo); 1048 return MO.getImm() % 8; 1049 } 1050 1051 unsigned 1052 MipsMCCodeEmitter::getUImm4AndValue(const MCInst &MI, unsigned OpNo, 1053 SmallVectorImpl<MCFixup> &Fixups, 1054 const MCSubtargetInfo &STI) const { 1055 assert(MI.getOperand(OpNo).isImm()); 1056 const MCOperand &MO = MI.getOperand(OpNo); 1057 unsigned Value = MO.getImm(); 1058 switch (Value) { 1059 case 128: return 0x0; 1060 case 1: return 0x1; 1061 case 2: return 0x2; 1062 case 3: return 0x3; 1063 case 4: return 0x4; 1064 case 7: return 0x5; 1065 case 8: return 0x6; 1066 case 15: return 0x7; 1067 case 16: return 0x8; 1068 case 31: return 0x9; 1069 case 32: return 0xa; 1070 case 63: return 0xb; 1071 case 64: return 0xc; 1072 case 255: return 0xd; 1073 case 32768: return 0xe; 1074 case 65535: return 0xf; 1075 } 1076 llvm_unreachable("Unexpected value"); 1077 } 1078 1079 unsigned 1080 MipsMCCodeEmitter::getRegisterListOpValue(const MCInst &MI, unsigned OpNo, 1081 SmallVectorImpl<MCFixup> &Fixups, 1082 const MCSubtargetInfo &STI) const { 1083 unsigned res = 0; 1084 1085 // Register list operand is always first operand of instruction and it is 1086 // placed before memory operand (register + imm). 1087 1088 for (unsigned I = OpNo, E = MI.getNumOperands() - 2; I < E; ++I) { 1089 unsigned Reg = MI.getOperand(I).getReg(); 1090 unsigned RegNo = Ctx.getRegisterInfo()->getEncodingValue(Reg); 1091 if (RegNo != 31) 1092 res++; 1093 else 1094 res |= 0x10; 1095 } 1096 return res; 1097 } 1098 1099 unsigned 1100 MipsMCCodeEmitter::getRegisterListOpValue16(const MCInst &MI, unsigned OpNo, 1101 SmallVectorImpl<MCFixup> &Fixups, 1102 const MCSubtargetInfo &STI) const { 1103 return (MI.getNumOperands() - 4); 1104 } 1105 1106 unsigned 1107 MipsMCCodeEmitter::getRegisterPairOpValue(const MCInst &MI, unsigned OpNo, 1108 SmallVectorImpl<MCFixup> &Fixups, 1109 const MCSubtargetInfo &STI) const { 1110 return getMachineOpValue(MI, MI.getOperand(OpNo), Fixups, STI); 1111 } 1112 1113 unsigned 1114 MipsMCCodeEmitter::getMovePRegPairOpValue(const MCInst &MI, unsigned OpNo, 1115 SmallVectorImpl<MCFixup> &Fixups, 1116 const MCSubtargetInfo &STI) const { 1117 unsigned res = 0; 1118 1119 if (MI.getOperand(0).getReg() == Mips::A1 && 1120 MI.getOperand(1).getReg() == Mips::A2) 1121 res = 0; 1122 else if (MI.getOperand(0).getReg() == Mips::A1 && 1123 MI.getOperand(1).getReg() == Mips::A3) 1124 res = 1; 1125 else if (MI.getOperand(0).getReg() == Mips::A2 && 1126 MI.getOperand(1).getReg() == Mips::A3) 1127 res = 2; 1128 else if (MI.getOperand(0).getReg() == Mips::A0 && 1129 MI.getOperand(1).getReg() == Mips::S5) 1130 res = 3; 1131 else if (MI.getOperand(0).getReg() == Mips::A0 && 1132 MI.getOperand(1).getReg() == Mips::S6) 1133 res = 4; 1134 else if (MI.getOperand(0).getReg() == Mips::A0 && 1135 MI.getOperand(1).getReg() == Mips::A1) 1136 res = 5; 1137 else if (MI.getOperand(0).getReg() == Mips::A0 && 1138 MI.getOperand(1).getReg() == Mips::A2) 1139 res = 6; 1140 else if (MI.getOperand(0).getReg() == Mips::A0 && 1141 MI.getOperand(1).getReg() == Mips::A3) 1142 res = 7; 1143 1144 return res; 1145 } 1146 1147 unsigned 1148 MipsMCCodeEmitter::getSimm23Lsl2Encoding(const MCInst &MI, unsigned OpNo, 1149 SmallVectorImpl<MCFixup> &Fixups, 1150 const MCSubtargetInfo &STI) const { 1151 const MCOperand &MO = MI.getOperand(OpNo); 1152 assert(MO.isImm() && "getSimm23Lsl2Encoding expects only an immediate"); 1153 // The immediate is encoded as 'immediate >> 2'. 1154 unsigned Res = static_cast<unsigned>(MO.getImm()); 1155 assert((Res & 3) == 0); 1156 return Res >> 2; 1157 } 1158 1159 #include "MipsGenMCCodeEmitter.inc" 1160