35#define DEBUG_TYPE "mips-disassembler"
48 IsMicroMips(STI.
hasFeature(Mips::FeatureMicroMips)),
49 IsBigEndian(IsBigEndian) {}
51 bool hasMips2()
const {
return STI.
hasFeature(Mips::FeatureMips2); }
52 bool hasMips3()
const {
return STI.
hasFeature(Mips::FeatureMips3); }
53 bool hasMips32()
const {
return STI.
hasFeature(Mips::FeatureMips32); }
55 bool hasMips32r6()
const {
59 bool isFP64()
const {
return STI.
hasFeature(Mips::FeatureFP64Bit); }
61 bool isGP64()
const {
return STI.
hasFeature(Mips::FeatureGP64Bit); }
63 bool isPTR64()
const {
return STI.
hasFeature(Mips::FeaturePTR64Bit); }
65 bool hasCnMips()
const {
return STI.
hasFeature(Mips::FeatureCnMips); }
67 bool hasCnMipsP()
const {
return STI.
hasFeature(Mips::FeatureCnMipsP); }
69 bool hasCOP3()
const {
71 return !hasMips32() && !hasMips3();
84 return new MipsDisassembler(STI, Ctx,
true);
90 return new MipsDisassembler(STI, Ctx,
false);
108 return *(
RegInfo->getRegClass(RC).begin() + RegNo);
123 if (RegNo > 30 || RegNo % 2)
126 unsigned Reg =
getReg(Decoder, Mips::AFGR64RegClassID, RegNo / 2);
137 unsigned Reg =
getReg(Decoder, Mips::ACC64DSPRegClassID, RegNo);
148 unsigned Reg =
getReg(Decoder, Mips::HI32DSPRegClassID, RegNo);
159 unsigned Reg =
getReg(Decoder, Mips::LO32DSPRegClassID, RegNo);
170 unsigned Reg =
getReg(Decoder, Mips::MSA128BRegClassID, RegNo);
181 unsigned Reg =
getReg(Decoder, Mips::MSA128HRegClassID, RegNo);
192 unsigned Reg =
getReg(Decoder, Mips::MSA128WRegClassID, RegNo);
203 unsigned Reg =
getReg(Decoder, Mips::MSA128DRegClassID, RegNo);
214 unsigned Reg =
getReg(Decoder, Mips::MSACtrlRegClassID, RegNo);
225 unsigned Reg =
getReg(Decoder, Mips::COP0RegClassID, RegNo);
236 unsigned Reg =
getReg(Decoder, Mips::COP2RegClassID, RegNo);
244 unsigned Regs[] = {Mips::S0, Mips::S1, Mips::S2, Mips::S3, Mips::S4,
245 Mips::S5, Mips::S6, Mips::S7, Mips::FP};
254 RegNum = RegLst & 0xf;
260 for (
unsigned i = 0; i < RegNum; i++)
272 unsigned Regs[] = {Mips::S0, Mips::S1, Mips::S2, Mips::S3};
278 case Mips::LWM16_MMR6:
279 case Mips::SWM16_MMR6:
283 unsigned RegNum = RegLst & 0x3;
285 for (
unsigned i = 0; i <= RegNum; i++)
293template <
typename InsnType>
303 DecodeFN RegDecoder =
nullptr;
304 if ((tmp & 0x18) == 0x00) {
307 }
else if ((tmp & 0x1c) == 0x10) {
310 }
else if ((tmp & 0x1e) == 0x18) {
313 }
else if ((tmp & 0x1f) == 0x1c) {
319 assert(NSize != 0 && RegDecoder !=
nullptr);
341template <
typename InsnType>
356template <
typename InsnType>
370template <
typename InsnType>
390 MI.setOpcode(Mips::BOVC);
392 }
else if (Rs != 0 && Rs < Rt) {
393 MI.setOpcode(Mips::BEQC);
396 MI.setOpcode(Mips::BEQZALC);
409template <
typename InsnType>
418 MI.setOpcode(Mips::BOVC_MMR6);
424 }
else if (Rs != 0 && Rs < Rt) {
425 MI.setOpcode(Mips::BEQC_MMR6);
432 MI.setOpcode(Mips::BEQZALC_MMR6);
443template <
typename InsnType>
463 MI.setOpcode(Mips::BNVC);
465 }
else if (Rs != 0 && Rs < Rt) {
466 MI.setOpcode(Mips::BNEC);
469 MI.setOpcode(Mips::BNEZALC);
482template <
typename InsnType>
491 MI.setOpcode(Mips::BNVC_MMR6);
497 }
else if (Rs != 0 && Rs < Rt) {
498 MI.setOpcode(Mips::BNEC_MMR6);
505 MI.setOpcode(Mips::BNEZALC_MMR6);
516template <
typename InsnType>
535 MI.setOpcode(Mips::BGTZC_MMR6);
537 MI.setOpcode(Mips::BLTZC_MMR6);
539 MI.setOpcode(Mips::BLTC_MMR6);
555template <
typename InsnType>
574 MI.setOpcode(Mips::BLEZC_MMR6);
576 MI.setOpcode(Mips::BGEZC_MMR6);
579 MI.setOpcode(Mips::BGEC_MMR6);
594template <
typename InsnType>
617 MI.setOpcode(Mips::BLEZC);
619 MI.setOpcode(Mips::BGEZC);
622 MI.setOpcode(Mips::BGEC);
637template <
typename InsnType>
661 MI.setOpcode(Mips::BGTZC);
663 MI.setOpcode(Mips::BLTZC);
665 MI.setOpcode(Mips::BLTC);
681template <
typename InsnType>
703 MI.setOpcode(Mips::BGTZ);
705 }
else if (Rs == 0) {
706 MI.setOpcode(Mips::BGTZALC);
708 }
else if (Rs == Rt) {
709 MI.setOpcode(Mips::BLTZALC);
712 MI.setOpcode(Mips::BLTUC);
730template <
typename InsnType>
753 MI.setOpcode(Mips::BLEZALC);
755 MI.setOpcode(Mips::BGEZALC);
758 MI.setOpcode(Mips::BGEUC);
774template <
typename InsnType>
782 switch (
MI.getOpcode()) {
789 Size = Msbd + 1 + 32;
799 MI.setOpcode(Mips::DEXT);
816template <
typename InsnType>
824 switch (
MI.getOpcode()) {
827 Size = Msbd + 1 - Pos;
831 Size = Msbd + 33 - Pos;
837 Size = Msbd + 33 - Pos;
846 MI.setOpcode(Mips::DINS);
858template <
typename InsnType>
884 unsigned Reg =
getReg(Decoder, Mips::GPR64RegClassID, RegNo);
894 unsigned Reg =
getReg(Decoder, Mips::GPRMM16RegClassID, RegNo);
904 unsigned Reg =
getReg(Decoder, Mips::GPRMM16ZeroRegClassID, RegNo);
914 unsigned Reg =
getReg(Decoder, Mips::GPRMM16MovePRegClassID, RegNo);
924 unsigned Reg =
getReg(Decoder, Mips::GPR32RegClassID, RegNo);
932 if (
static_cast<const MipsDisassembler *
>(Decoder)->isGP64())
950 unsigned Reg =
getReg(Decoder, Mips::FGR64RegClassID, RegNo);
961 unsigned Reg =
getReg(Decoder, Mips::FGR32RegClassID, RegNo);
971 unsigned Reg =
getReg(Decoder, Mips::CCRRegClassID, RegNo);
981 unsigned Reg =
getReg(Decoder, Mips::FCCRegClassID, RegNo);
992 unsigned Reg =
getReg(Decoder, Mips::FGRCCRegClassID, RegNo);
999 int Offset = SignExtend32<16>(Insn & 0xffff);
1003 Reg =
getReg(Decoder, Mips::GPR32RegClassID, Reg);
1019 int Offset = SignExtend32<9>(Insn >> 7);
1023 Reg =
getReg(Decoder, Mips::GPR32RegClassID, Reg);
1039 int Offset = SignExtend32<16>(Insn & 0xffff);
1044 Reg =
getReg(Decoder, Mips::GPR32RegClassID, Reg);
1055 int Offset = SignExtend32<16>(Insn & 0xffff);
1071 int Offset = SignExtend32<12>(Insn & 0xfff);
1087 int Offset = SignExtend32<9>(Insn & 0x1ff);
1103 int Offset = SignExtend32<9>(Insn >> 7);
1118 int Offset = SignExtend32<16>(Insn & 0xffff);
1132 int Offset = SignExtend32<16>(Insn & 0xffff);
1145 int Immediate = SignExtend32<16>(Insn & 0xffff);
1163 Reg =
getReg(Decoder, Mips::MSA128BRegClassID, Reg);
1179 assert(
false &&
"Unexpected instruction");
1206 unsigned Offset = Insn & 0xf;
1211 case Mips::LBU16_MM:
1212 case Mips::LHU16_MM:
1219 case Mips::SB16_MMR6:
1221 case Mips::SH16_MMR6:
1223 case Mips::SW16_MMR6:
1235 case Mips::LBU16_MM:
1242 case Mips::SB16_MMR6:
1245 case Mips::LHU16_MM:
1247 case Mips::SH16_MMR6:
1252 case Mips::SW16_MMR6:
1263 unsigned Offset = Insn & 0x1F;
1266 Reg =
getReg(Decoder, Mips::GPR32RegClassID, Reg);
1278 unsigned Offset = Insn & 0x7F;
1281 Reg =
getReg(Decoder, Mips::GPR32RegClassID, Reg);
1295 case Mips::LWM16_MMR6:
1296 case Mips::SWM16_MMR6:
1300 Offset = SignExtend32<4>(Insn & 0xf);
1317 int Offset = SignExtend32<9>(Insn & 0x1ff);
1321 Reg =
getReg(Decoder, Mips::GPR32RegClassID, Reg);
1337 int Offset = SignExtend32<12>(Insn & 0x0fff);
1341 Reg =
getReg(Decoder, Mips::GPR32RegClassID, Reg);
1345 case Mips::SWM32_MM:
1346 case Mips::LWM32_MM:
1371 int Offset = SignExtend32<16>(Insn & 0xffff);
1375 Reg =
getReg(Decoder, Mips::GPR32RegClassID, Reg);
1387 int Offset = SignExtend32<16>(Insn & 0xffff);
1391 Reg =
getReg(Decoder, Mips::FGR64RegClassID, Reg);
1406 int Offset = SignExtend32<16>(Insn & 0xffff);
1410 Reg =
getReg(Decoder, Mips::FGR64RegClassID, Reg);
1422 int Offset = SignExtend32<16>(Insn & 0xffff);
1426 Reg =
getReg(Decoder, Mips::COP2RegClassID, Reg);
1438 int Offset = SignExtend32<16>(Insn & 0xffff);
1442 Reg =
getReg(Decoder, Mips::COP3RegClassID, Reg);
1455 int Offset = SignExtend32<11>(Insn & 0x07ff);
1459 Reg =
getReg(Decoder, Mips::COP2RegClassID, Reg);
1472 int Offset = SignExtend32<11>(Insn & 0x07ff);
1476 Reg =
getReg(Decoder, Mips::COP2RegClassID, Reg);
1489 int64_t
Offset = SignExtend64<9>((Insn >> 7) & 0x1ff);
1493 Rt =
getReg(Decoder, Mips::GPR32RegClassID, Rt);
1510 int32_t BranchOffset = (SignExtend32<16>(
Offset) * 4) + 4;
1518 int32_t BranchOffset = (SignExtend32<16>(
Offset) * 2);
1534 int32_t BranchOffset = SignExtend32<21>(
Offset) * 4 + 4;
1543 int32_t BranchOffset = SignExtend32<21>(
Offset) * 4 + 4;
1552 int32_t BranchOffset = SignExtend32<26>(
Offset) * 4 + 4;
1561 int32_t BranchOffset = SignExtend32<8>(
Offset << 1);
1569 int32_t BranchOffset = SignExtend32<11>(
Offset << 1);
1577 int32_t BranchOffset = SignExtend32<16>(
Offset) * 2 + 4;
1585 int32_t BranchOffset = SignExtend32<27>(
Offset << 1);
1612 else if (
Value == 0x7)
1636template <
unsigned Bits,
int Offset,
int Scale>
1640 Value &= ((1 << Bits) - 1);
1646template <
unsigned Bits,
int Offset = 0,
int ScaleBy = 1>
1650 int32_t Imm = SignExtend32<Bits>(
Value) * ScaleBy;
1655template <
unsigned Bits,
int Offset>
1659 return DecodeUImmWithOffsetAndScale<Bits, Offset, 1>(Inst,
Value,
Address,
1669 int Size = (int) Insn - Pos + 1;
1690 int32_t DecodedValue;
1692 case 0: DecodedValue = 256;
break;
1693 case 1: DecodedValue = 257;
break;
1694 case 510: DecodedValue = -258;
break;
1695 case 511: DecodedValue = -257;
break;
1696 default: DecodedValue = SignExtend32<9>(Insn);
break;
1707 int32_t DecodedValues[] = {128, 1, 2, 3, 4, 7, 8, 15,
1708 16, 31, 32, 63, 64, 255, 32768, 65535};
1765 if (
static_cast<const MipsDisassembler *
>(Decoder)->hasMips32r6())
1789template <
typename InsnType>
1809 MI.setOpcode(Mips::BGTZALC_MMR6);
1813 else if (Rs == Rt) {
1814 MI.setOpcode(Mips::BLTZALC_MMR6);
1819 MI.setOpcode(Mips::BLTUC_MMR6);
1838template <
typename InsnType>
1857 MI.setOpcode(Mips::BLEZALC_MMR6);
1860 else if (Rs == Rt) {
1861 MI.setOpcode(Mips::BGEZALC_MMR6);
1866 MI.setOpcode(Mips::BGEUC_MMR6);
1890#include "MipsGenDisassemblerTables.inc"
1898 if (Bytes.
size() < 2) {
1904 Insn = (Bytes[0] << 8) | Bytes[1];
1906 Insn = (Bytes[1] << 8) | Bytes[0];
1916 bool IsBigEndian,
bool IsMicroMips) {
1918 if (Bytes.
size() < 4) {
1934 (Bytes[3] << 0) | (Bytes[2] << 8) | (Bytes[1] << 16) | (Bytes[0] << 24);
1937 Insn = (Bytes[2] << 0) | (Bytes[3] << 8) | (Bytes[0] << 16) |
1940 Insn = (Bytes[0] << 0) | (Bytes[1] << 8) | (Bytes[2] << 16) |
1961 if (hasMips32r6()) {
1963 dbgs() <<
"Trying MicroMipsR616 table (16-bit instructions):\n");
1966 Result = decodeInstruction(DecoderTableMicroMipsR616, Instr, Insn,
1967 Address,
this, STI);
1974 LLVM_DEBUG(
dbgs() <<
"Trying MicroMips16 table (16-bit instructions):\n");
1977 Result = decodeInstruction(DecoderTableMicroMips16, Instr, Insn, Address,
1988 if (hasMips32r6()) {
1990 dbgs() <<
"Trying MicroMips32r632 table (32-bit instructions):\n");
1992 Result = decodeInstruction(DecoderTableMicroMipsR632, Instr, Insn,
1993 Address,
this, STI);
2000 LLVM_DEBUG(
dbgs() <<
"Trying MicroMips32 table (32-bit instructions):\n");
2002 Result = decodeInstruction(DecoderTableMicroMips32, Instr, Insn, Address,
2010 LLVM_DEBUG(
dbgs() <<
"Trying MicroMipsFP64 table (32-bit opcodes):\n");
2011 Result = decodeInstruction(DecoderTableMicroMipsFP6432, Instr, Insn,
2012 Address,
this, STI);
2041 decodeInstruction(DecoderTableCOP3_32, Instr, Insn, Address,
this, STI);
2046 if (hasMips32r6() && isGP64()) {
2048 dbgs() <<
"Trying Mips32r6_64r6 (GPR64) table (32-bit opcodes):\n");
2049 Result = decodeInstruction(DecoderTableMips32r6_64r6_GP6432, Instr, Insn,
2050 Address,
this, STI);
2055 if (hasMips32r6() && isPTR64()) {
2057 dbgs() <<
"Trying Mips32r6_64r6 (PTR64) table (32-bit opcodes):\n");
2058 Result = decodeInstruction(DecoderTableMips32r6_64r6_PTR6432, Instr, Insn,
2059 Address,
this, STI);
2064 if (hasMips32r6()) {
2065 LLVM_DEBUG(
dbgs() <<
"Trying Mips32r6_64r6 table (32-bit opcodes):\n");
2066 Result = decodeInstruction(DecoderTableMips32r6_64r632, Instr, Insn,
2067 Address,
this, STI);
2072 if (hasMips2() && isPTR64()) {
2074 dbgs() <<
"Trying Mips32r6_64r6 (PTR64) table (32-bit opcodes):\n");
2075 Result = decodeInstruction(DecoderTableMips32_64_PTR6432, Instr, Insn,
2076 Address,
this, STI);
2083 Result = decodeInstruction(DecoderTableCnMips32, Instr, Insn, Address,
this,
2090 LLVM_DEBUG(
dbgs() <<
"Trying CnMipsP table (32-bit opcodes):\n");
2091 Result = decodeInstruction(DecoderTableCnMipsP32, Instr, Insn, Address,
2098 LLVM_DEBUG(
dbgs() <<
"Trying Mips64 (GPR64) table (32-bit opcodes):\n");
2099 Result = decodeInstruction(DecoderTableMips6432, Instr, Insn, Address,
this,
2107 dbgs() <<
"Trying MipsFP64 (64 bit FPU) table (32-bit opcodes):\n");
2108 Result = decodeInstruction(DecoderTableMipsFP6432, Instr, Insn, Address,
2117 decodeInstruction(DecoderTableMips32, Instr, Insn, Address,
this, STI);
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
#define LLVM_EXTERNAL_VISIBILITY
static DecodeStatus DecodePOOL16BEncodedField(MCInst &Inst, unsigned Value, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeFMemCop2MMR6(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeSimm19Lsl2(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeMemEVA(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeBgtzlGroupBranch(MCInst &MI, InsnType insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeRegListOperand(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus readInstruction32(ArrayRef< uint8_t > Bytes, uint64_t Address, uint64_t &Size, uint32_t &Insn, bool IsBigEndian, bool IsMicroMips)
Read four bytes from the ArrayRef and return 32 bit word sorted according to the given endianness.
static DecodeStatus DecodeBranchTarget21(MCInst &Inst, unsigned Offset, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeJumpTargetXMM(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeFGR32RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeCCRRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeCOP2RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static unsigned getReg(const MCDisassembler *D, unsigned RC, unsigned RegNo)
static DecodeStatus DecodeFCCRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeCacheOpMM(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus readInstruction16(ArrayRef< uint8_t > Bytes, uint64_t Address, uint64_t &Size, uint32_t &Insn, bool IsBigEndian)
Read two bytes from the ArrayRef and return 16 bit halfword sorted according to the given endianness.
static DecodeStatus DecodeGPRMM16RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeSImmWithOffsetAndScale(MCInst &Inst, unsigned Value, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeSimm23Lsl2(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeGPRMM16MovePRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeBranchTarget1SImm16(MCInst &Inst, unsigned Offset, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeMemMMImm9(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeMovePOperands(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeCRC(MCInst &MI, InsnType Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodePOP75GroupBranchMMR6(MCInst &MI, InsnType insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeDINS(MCInst &MI, InsnType Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeMSA128Mem(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodePrefeOpMM(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeCPU16RegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeMSA128WRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeBranchTarget26(MCInst &Inst, unsigned Offset, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeHWRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeFMem(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeCacheOp(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeSyncI_MM(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeLoadByte15(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeSimm9SP(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeFMem2(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeUImmWithOffsetAndScale(MCInst &Inst, unsigned Value, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeMemMMImm12(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeDEXT(MCInst &MI, InsnType Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeGPRMM16ZeroRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeLi16Imm(MCInst &Inst, unsigned Value, uint64_t Address, const MCDisassembler *Decoder)
static MCDisassembler * createMipselDisassembler(const Target &T, const MCSubtargetInfo &STI, MCContext &Ctx)
static DecodeStatus DecodeSimm18Lsl3(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeFMem3(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeBlezlGroupBranch(MCInst &MI, InsnType insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeCOP0RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeBranchTarget(MCInst &Inst, unsigned Offset, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeMemMMReglistImm4Lsl2(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeBgtzGroupBranch(MCInst &MI, InsnType insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeBranchTargetMM(MCInst &Inst, unsigned Offset, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodePOP35GroupBranchMMR6(MCInst &MI, InsnType insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeFIXMEInstruction(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeBranchTarget10MM(MCInst &Inst, unsigned Offset, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeANDI16Imm(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeMSA128DRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeMemMMImm4(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static MCDisassembler * createMipsDisassembler(const Target &T, const MCSubtargetInfo &STI, MCContext &Ctx)
static DecodeStatus DecodeGPR32RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeMSA128BRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeDaddiGroupBranch(MCInst &MI, InsnType insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeMovePRegPair(MCInst &Inst, unsigned RegPair, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeDAHIDATIMMR6(MCInst &MI, InsnType insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeBranchTarget21MM(MCInst &Inst, unsigned Offset, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeBranchTarget26MM(MCInst &Inst, unsigned Offset, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeAFGR64RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeDAHIDATI(MCInst &MI, InsnType insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeLO32DSPRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeSpecial3LlSc(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeHI32DSPRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
MCDisassembler::DecodeStatus DecodeStatus
static DecodeStatus DecodeSynciR6(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodePtrRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeUImmWithOffset(MCInst &Inst, unsigned Value, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeRegListOperand16(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeAddiGroupBranch(MCInst &MI, InsnType insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeMemMMSPImm5Lsl2(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeAddiur2Simm7(MCInst &Inst, unsigned Value, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeMSACtrlRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeMSA128HRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeFMemMMR2(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeCacheeOp_CacheOpR6(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeMemMMImm16(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeBranchTarget7MM(MCInst &Inst, unsigned Offset, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeFGR64RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeGPR64RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeBlezGroupBranchMMR6(MCInst &MI, InsnType insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeJumpTargetMM(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodePOP37GroupBranchMMR6(MCInst &MI, InsnType insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeSyncI(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeJumpTarget(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeACC64DSPRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeFMemCop2R6(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeBgtzGroupBranchMMR6(MCInst &MI, InsnType insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodePOP65GroupBranchMMR6(MCInst &MI, InsnType insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeDSPRRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeInsSize(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeBlezGroupBranch(MCInst &MI, InsnType insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeMem(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeFGRCCRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeINSVE_DF(MCInst &MI, InsnType insn, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeMemMMGPImm7Lsl2(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
LLVM_ABI LLVM_EXTERNAL_VISIBILITY void LLVMInitializeMipsDisassembler()
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
size_t size() const
size - Get the array size.
Context object for machine code objects.
Superclass for all disassemblers.
DecodeStatus
Ternary decode status.
virtual DecodeStatus getInstruction(MCInst &Instr, uint64_t &Size, ArrayRef< uint8_t > Bytes, uint64_t Address, raw_ostream &CStream) const =0
Returns the disassembly of a single instruction.
Instances of this class represent a single low-level machine instruction.
unsigned getOpcode() const
void addOperand(const MCOperand Op)
const MCOperand & getOperand(unsigned i) const
static MCOperand createReg(MCRegister Reg)
static MCOperand createImm(int64_t Val)
MCRegisterInfo base class - We assume that the target defines a static array of MCRegisterDesc object...
Generic base class for all target subtargets.
bool hasFeature(unsigned Feature) const
Target - Wrapper for Target specific information.
LLVM Value Representation.
This class implements an extremely fast bulk output stream that can only output to a stream.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
std::enable_if_t< std::is_integral_v< IntType >, IntType > fieldFromInstruction(const IntType &Insn, unsigned StartBit, unsigned NumBits)
This is an optimization pass for GlobalISel generic memory operations.
Target & getTheMips64Target()
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Target & getTheMips64elTarget()
Target & getTheMipselTarget()
constexpr int64_t SignExtend64(uint64_t x)
Sign-extend the number in the bottom B bits of X to a 64-bit integer.
Target & getTheMipsTarget()
static void RegisterMCDisassembler(Target &T, Target::MCDisassemblerCtorTy Fn)
RegisterMCDisassembler - Register a MCDisassembler implementation for the given target.