33#define DEBUG_TYPE "mips-disassembler"
46 IsMicroMips(STI.
hasFeature(Mips::FeatureMicroMips)),
47 IsBigEndian(IsBigEndian) {}
49 bool hasMips2()
const {
return STI.
hasFeature(Mips::FeatureMips2); }
50 bool hasMips3()
const {
return STI.
hasFeature(Mips::FeatureMips3); }
51 bool hasMips32()
const {
return STI.
hasFeature(Mips::FeatureMips32); }
53 bool hasMips32r6()
const {
57 bool isFP64()
const {
return STI.
hasFeature(Mips::FeatureFP64Bit); }
59 bool isGP64()
const {
return STI.
hasFeature(Mips::FeatureGP64Bit); }
61 bool isPTR64()
const {
return STI.
hasFeature(Mips::FeaturePTR64Bit); }
63 bool hasCnMips()
const {
return STI.
hasFeature(Mips::FeatureCnMips); }
65 bool hasCnMipsP()
const {
return STI.
hasFeature(Mips::FeatureCnMipsP); }
67 bool hasCOP3()
const {
69 return !hasMips32() && !hasMips3();
345template <
unsigned Bits,
int Offset,
int Scale>
350template <
unsigned Bits,
int Offset>
354 return DecodeUImmWithOffsetAndScale<Bits, Offset, 1>(Inst,
Value,
Address,
358template <
unsigned Bits,
int Offset = 0,
int ScaleBy = 1>
387template <
typename InsnType>
391template <
typename InsnType>
396template <
typename InsnType>
400template <
typename InsnType>
405template <
typename InsnType>
410template <
typename InsnType>
415template <
typename InsnType>
420template <
typename InsnType>
425template <
typename InsnType>
430template <
typename InsnType>
435template <
typename InsnType>
440template <
typename InsnType>
445template <
typename InsnType>
450template <
typename InsnType>
455template <
typename InsnType>
460template <
typename InsnType>
464template <
typename InsnType>
468template <
typename InsnType>
496 return new MipsDisassembler(STI, Ctx,
true);
503 return new MipsDisassembler(STI, Ctx,
false);
518#include "MipsGenDisassemblerTables.inc"
522 return *(
RegInfo->getRegClass(RC).begin() + RegNo);
525template <
typename InsnType>
533 InsnType tmp = fieldFromInstruction(insn, 17, 5);
535 DecodeFN RegDecoder =
nullptr;
536 if ((tmp & 0x18) == 0x00) {
539 }
else if ((tmp & 0x1c) == 0x10) {
542 }
else if ((tmp & 0x1e) == 0x18) {
545 }
else if ((tmp & 0x1f) == 0x1c) {
551 assert(NSize != 0 && RegDecoder !=
nullptr);
554 tmp = fieldFromInstruction(insn, 6, 5);
561 tmp = fieldFromInstruction(insn, 16, NSize);
564 tmp = fieldFromInstruction(insn, 11, 5);
573template <
typename InsnType>
577 InsnType Rs = fieldFromInstruction(insn, 16, 5);
578 InsnType Imm = fieldFromInstruction(insn, 0, 16);
588template <
typename InsnType>
591 InsnType Rs = fieldFromInstruction(insn, 21, 5);
592 InsnType Imm = fieldFromInstruction(insn, 0, 16);
602template <
typename InsnType>
616 InsnType Rs = fieldFromInstruction(insn, 21, 5);
617 InsnType Rt = fieldFromInstruction(insn, 16, 5);
618 int64_t Imm =
SignExtend64(fieldFromInstruction(insn, 0, 16), 16) * 4 + 4;
622 MI.setOpcode(Mips::BOVC);
624 }
else if (Rs != 0 && Rs < Rt) {
625 MI.setOpcode(Mips::BEQC);
628 MI.setOpcode(Mips::BEQZALC);
641template <
typename InsnType>
645 InsnType Rt = fieldFromInstruction(insn, 21, 5);
646 InsnType Rs = fieldFromInstruction(insn, 16, 5);
650 MI.setOpcode(Mips::BOVC_MMR6);
655 Imm =
SignExtend64(fieldFromInstruction(insn, 0, 16), 16) * 2 + 4;
656 }
else if (Rs != 0 && Rs < Rt) {
657 MI.setOpcode(Mips::BEQC_MMR6);
662 Imm =
SignExtend64(fieldFromInstruction(insn, 0, 16), 16) * 4 + 4;
664 MI.setOpcode(Mips::BEQZALC_MMR6);
667 Imm =
SignExtend64(fieldFromInstruction(insn, 0, 16), 16) * 2 + 4;
675template <
typename InsnType>
689 InsnType Rs = fieldFromInstruction(insn, 21, 5);
690 InsnType Rt = fieldFromInstruction(insn, 16, 5);
691 int64_t Imm =
SignExtend64(fieldFromInstruction(insn, 0, 16), 16) * 4 + 4;
695 MI.setOpcode(Mips::BNVC);
697 }
else if (Rs != 0 && Rs < Rt) {
698 MI.setOpcode(Mips::BNEC);
701 MI.setOpcode(Mips::BNEZALC);
714template <
typename InsnType>
718 InsnType Rt = fieldFromInstruction(insn, 21, 5);
719 InsnType Rs = fieldFromInstruction(insn, 16, 5);
723 MI.setOpcode(Mips::BNVC_MMR6);
728 Imm =
SignExtend64(fieldFromInstruction(insn, 0, 16), 16) * 2 + 4;
729 }
else if (Rs != 0 && Rs < Rt) {
730 MI.setOpcode(Mips::BNEC_MMR6);
735 Imm =
SignExtend64(fieldFromInstruction(insn, 0, 16), 16) * 4 + 4;
737 MI.setOpcode(Mips::BNEZALC_MMR6);
740 Imm =
SignExtend64(fieldFromInstruction(insn, 0, 16), 16) * 2 + 4;
748template <
typename InsnType>
759 InsnType Rt = fieldFromInstruction(insn, 21, 5);
760 InsnType Rs = fieldFromInstruction(insn, 16, 5);
761 int64_t Imm =
SignExtend64(fieldFromInstruction(insn, 0, 16), 16) * 4 + 4;
767 MI.setOpcode(Mips::BGTZC_MMR6);
769 MI.setOpcode(Mips::BLTZC_MMR6);
771 MI.setOpcode(Mips::BLTC_MMR6);
787template <
typename InsnType>
798 InsnType Rt = fieldFromInstruction(insn, 21, 5);
799 InsnType Rs = fieldFromInstruction(insn, 16, 5);
800 int64_t Imm =
SignExtend64(fieldFromInstruction(insn, 0, 16), 16) * 4 + 4;
806 MI.setOpcode(Mips::BLEZC_MMR6);
808 MI.setOpcode(Mips::BGEZC_MMR6);
811 MI.setOpcode(Mips::BGEC_MMR6);
826template <
typename InsnType>
841 InsnType Rs = fieldFromInstruction(insn, 21, 5);
842 InsnType Rt = fieldFromInstruction(insn, 16, 5);
843 int64_t Imm =
SignExtend64(fieldFromInstruction(insn, 0, 16), 16) * 4 + 4;
849 MI.setOpcode(Mips::BLEZC);
851 MI.setOpcode(Mips::BGEZC);
854 MI.setOpcode(Mips::BGEC);
869template <
typename InsnType>
886 InsnType Rs = fieldFromInstruction(insn, 21, 5);
887 InsnType Rt = fieldFromInstruction(insn, 16, 5);
888 int64_t Imm =
SignExtend64(fieldFromInstruction(insn, 0, 16), 16) * 4 + 4;
893 MI.setOpcode(Mips::BGTZC);
895 MI.setOpcode(Mips::BLTZC);
897 MI.setOpcode(Mips::BLTC);
913template <
typename InsnType>
928 InsnType Rs = fieldFromInstruction(insn, 21, 5);
929 InsnType Rt = fieldFromInstruction(insn, 16, 5);
930 int64_t Imm =
SignExtend64(fieldFromInstruction(insn, 0, 16), 16) * 4 + 4;
935 MI.setOpcode(Mips::BGTZ);
937 }
else if (Rs == 0) {
938 MI.setOpcode(Mips::BGTZALC);
940 }
else if (Rs == Rt) {
941 MI.setOpcode(Mips::BLTZALC);
944 MI.setOpcode(Mips::BLTUC);
962template <
typename InsnType>
977 InsnType Rs = fieldFromInstruction(insn, 21, 5);
978 InsnType Rt = fieldFromInstruction(insn, 16, 5);
979 int64_t Imm =
SignExtend64(fieldFromInstruction(insn, 0, 16), 16) * 4 + 4;
985 MI.setOpcode(Mips::BLEZALC);
987 MI.setOpcode(Mips::BGEZALC);
990 MI.setOpcode(Mips::BGEUC);
1006template <
typename InsnType>
1009 unsigned Msbd = fieldFromInstruction(
Insn, 11, 5);
1010 unsigned Lsb = fieldFromInstruction(
Insn, 6, 5);
1014 switch (
MI.getOpcode()) {
1021 Size = Msbd + 1 + 32;
1031 MI.setOpcode(Mips::DEXT);
1033 InsnType Rs = fieldFromInstruction(
Insn, 21, 5);
1034 InsnType Rt = fieldFromInstruction(
Insn, 16, 5);
1048template <
typename InsnType>
1051 unsigned Msbd = fieldFromInstruction(
Insn, 11, 5);
1052 unsigned Lsb = fieldFromInstruction(
Insn, 6, 5);
1056 switch (
MI.getOpcode()) {
1059 Size = Msbd + 1 - Pos;
1063 Size = Msbd + 33 - Pos;
1069 Size = Msbd + 33 - Pos;
1075 InsnType Rs = fieldFromInstruction(
Insn, 21, 5);
1076 InsnType Rt = fieldFromInstruction(
Insn, 16, 5);
1078 MI.setOpcode(Mips::DINS);
1090template <
typename InsnType>
1093 InsnType Rs = fieldFromInstruction(
Insn, 21, 5);
1094 InsnType Rt = fieldFromInstruction(
Insn, 16, 5);
1110 if (Bytes.
size() < 2) {
1116 Insn = (Bytes[0] << 8) | Bytes[1];
1118 Insn = (Bytes[1] << 8) | Bytes[0];
1128 bool IsBigEndian,
bool IsMicroMips) {
1130 if (Bytes.
size() < 4) {
1146 (Bytes[3] << 0) | (Bytes[2] << 8) | (Bytes[1] << 16) | (Bytes[0] << 24);
1149 Insn = (Bytes[2] << 0) | (Bytes[3] << 8) | (Bytes[0] << 16) |
1152 Insn = (Bytes[0] << 0) | (Bytes[1] << 8) | (Bytes[2] << 16) |
1173 if (hasMips32r6()) {
1175 dbgs() <<
"Trying MicroMipsR616 table (16-bit instructions):\n");
1178 Result = decodeInstruction(DecoderTableMicroMipsR616, Instr,
Insn,
1179 Address,
this, STI);
1186 LLVM_DEBUG(
dbgs() <<
"Trying MicroMips16 table (16-bit instructions):\n");
1189 Result = decodeInstruction(DecoderTableMicroMips16, Instr,
Insn, Address,
1200 if (hasMips32r6()) {
1202 dbgs() <<
"Trying MicroMips32r632 table (32-bit instructions):\n");
1204 Result = decodeInstruction(DecoderTableMicroMipsR632, Instr,
Insn,
1205 Address,
this, STI);
1212 LLVM_DEBUG(
dbgs() <<
"Trying MicroMips32 table (32-bit instructions):\n");
1214 Result = decodeInstruction(DecoderTableMicroMips32, Instr,
Insn, Address,
1222 LLVM_DEBUG(
dbgs() <<
"Trying MicroMipsFP64 table (32-bit opcodes):\n");
1223 Result = decodeInstruction(DecoderTableMicroMipsFP6432, Instr,
Insn,
1224 Address,
this, STI);
1253 decodeInstruction(DecoderTableCOP3_32, Instr,
Insn, Address,
this, STI);
1258 if (hasMips32r6() && isGP64()) {
1260 dbgs() <<
"Trying Mips32r6_64r6 (GPR64) table (32-bit opcodes):\n");
1261 Result = decodeInstruction(DecoderTableMips32r6_64r6_GP6432, Instr,
Insn,
1262 Address,
this, STI);
1267 if (hasMips32r6() && isPTR64()) {
1269 dbgs() <<
"Trying Mips32r6_64r6 (PTR64) table (32-bit opcodes):\n");
1270 Result = decodeInstruction(DecoderTableMips32r6_64r6_PTR6432, Instr,
Insn,
1271 Address,
this, STI);
1276 if (hasMips32r6()) {
1277 LLVM_DEBUG(
dbgs() <<
"Trying Mips32r6_64r6 table (32-bit opcodes):\n");
1278 Result = decodeInstruction(DecoderTableMips32r6_64r632, Instr,
Insn,
1279 Address,
this, STI);
1284 if (hasMips2() && isPTR64()) {
1286 dbgs() <<
"Trying Mips32r6_64r6 (PTR64) table (32-bit opcodes):\n");
1287 Result = decodeInstruction(DecoderTableMips32_64_PTR6432, Instr,
Insn,
1288 Address,
this, STI);
1295 Result = decodeInstruction(DecoderTableCnMips32, Instr,
Insn,
1296 Address,
this, STI);
1302 LLVM_DEBUG(
dbgs() <<
"Trying CnMipsP table (32-bit opcodes):\n");
1303 Result = decodeInstruction(DecoderTableCnMipsP32, Instr,
Insn,
1304 Address,
this, STI);
1310 LLVM_DEBUG(
dbgs() <<
"Trying Mips64 (GPR64) table (32-bit opcodes):\n");
1311 Result = decodeInstruction(DecoderTableMips6432, Instr,
Insn,
1312 Address,
this, STI);
1319 dbgs() <<
"Trying MipsFP64 (64 bit FPU) table (32-bit opcodes):\n");
1320 Result = decodeInstruction(DecoderTableMipsFP6432, Instr,
Insn,
1321 Address,
this, STI);
1329 decodeInstruction(DecoderTableMips32, Instr,
Insn, Address,
this, STI);
1348 unsigned Reg =
getReg(Decoder, Mips::GPR64RegClassID, RegNo);
1358 unsigned Reg =
getReg(Decoder, Mips::GPRMM16RegClassID, RegNo);
1368 unsigned Reg =
getReg(Decoder, Mips::GPRMM16ZeroRegClassID, RegNo);
1378 unsigned Reg =
getReg(Decoder, Mips::GPRMM16MovePRegClassID, RegNo);
1388 unsigned Reg =
getReg(Decoder, Mips::GPR32RegClassID, RegNo);
1396 if (
static_cast<const MipsDisassembler *
>(Decoder)->isGP64())
1414 unsigned Reg =
getReg(Decoder, Mips::FGR64RegClassID, RegNo);
1425 unsigned Reg =
getReg(Decoder, Mips::FGR32RegClassID, RegNo);
1435 unsigned Reg =
getReg(Decoder, Mips::CCRRegClassID, RegNo);
1445 unsigned Reg =
getReg(Decoder, Mips::FCCRegClassID, RegNo);
1456 unsigned Reg =
getReg(Decoder, Mips::FGRCCRegClassID, RegNo);
1463 int Offset = SignExtend32<16>(
Insn & 0xffff);
1464 unsigned Reg = fieldFromInstruction(
Insn, 16, 5);
1465 unsigned Base = fieldFromInstruction(
Insn, 21, 5);
1467 Reg =
getReg(Decoder, Mips::GPR32RegClassID, Reg);
1484 unsigned Reg = fieldFromInstruction(
Insn, 16, 5);
1485 unsigned Base = fieldFromInstruction(
Insn, 21, 5);
1487 Reg =
getReg(Decoder, Mips::GPR32RegClassID, Reg);
1503 int Offset = SignExtend32<16>(
Insn & 0xffff);
1504 unsigned Base = fieldFromInstruction(
Insn, 16, 5);
1505 unsigned Reg = fieldFromInstruction(
Insn, 21, 5);
1508 Reg =
getReg(Decoder, Mips::GPR32RegClassID, Reg);
1519 int Offset = SignExtend32<16>(
Insn & 0xffff);
1520 unsigned Hint = fieldFromInstruction(
Insn, 16, 5);
1521 unsigned Base = fieldFromInstruction(
Insn, 21, 5);
1536 unsigned Base = fieldFromInstruction(
Insn, 16, 5);
1537 unsigned Hint = fieldFromInstruction(
Insn, 21, 5);
1552 unsigned Base = fieldFromInstruction(
Insn, 16, 5);
1553 unsigned Hint = fieldFromInstruction(
Insn, 21, 5);
1568 unsigned Hint = fieldFromInstruction(
Insn, 16, 5);
1569 unsigned Base = fieldFromInstruction(
Insn, 21, 5);
1582 int Offset = SignExtend32<16>(
Insn & 0xffff);
1583 unsigned Base = fieldFromInstruction(
Insn, 21, 5);
1596 int Offset = SignExtend32<16>(
Insn & 0xffff);
1597 unsigned Base = fieldFromInstruction(
Insn, 16, 5);
1609 int Immediate = SignExtend32<16>(
Insn & 0xffff);
1610 unsigned Base = fieldFromInstruction(
Insn, 16, 5);
1623 int Offset = SignExtend32<10>(fieldFromInstruction(
Insn, 16, 10));
1624 unsigned Reg = fieldFromInstruction(
Insn, 6, 5);
1625 unsigned Base = fieldFromInstruction(
Insn, 11, 5);
1627 Reg =
getReg(Decoder, Mips::MSA128BRegClassID, Reg);
1643 assert(
false &&
"Unexpected instruction");
1671 unsigned Reg = fieldFromInstruction(
Insn, 7, 3);
1672 unsigned Base = fieldFromInstruction(
Insn, 4, 3);
1675 case Mips::LBU16_MM:
1676 case Mips::LHU16_MM:
1683 case Mips::SB16_MMR6:
1685 case Mips::SH16_MMR6:
1687 case Mips::SW16_MMR6:
1699 case Mips::LBU16_MM:
1706 case Mips::SB16_MMR6:
1709 case Mips::LHU16_MM:
1711 case Mips::SH16_MMR6:
1716 case Mips::SW16_MMR6:
1728 unsigned Reg = fieldFromInstruction(
Insn, 5, 5);
1730 Reg =
getReg(Decoder, Mips::GPR32RegClassID, Reg);
1743 unsigned Reg = fieldFromInstruction(
Insn, 7, 3);
1745 Reg =
getReg(Decoder, Mips::GPR32RegClassID, Reg);
1759 case Mips::LWM16_MMR6:
1760 case Mips::SWM16_MMR6:
1782 unsigned Reg = fieldFromInstruction(
Insn, 21, 5);
1783 unsigned Base = fieldFromInstruction(
Insn, 16, 5);
1785 Reg =
getReg(Decoder, Mips::GPR32RegClassID, Reg);
1801 int Offset = SignExtend32<12>(
Insn & 0x0fff);
1802 unsigned Reg = fieldFromInstruction(
Insn, 21, 5);
1803 unsigned Base = fieldFromInstruction(
Insn, 16, 5);
1805 Reg =
getReg(Decoder, Mips::GPR32RegClassID, Reg);
1809 case Mips::SWM32_MM:
1810 case Mips::LWM32_MM:
1835 int Offset = SignExtend32<16>(
Insn & 0xffff);
1836 unsigned Reg = fieldFromInstruction(
Insn, 21, 5);
1837 unsigned Base = fieldFromInstruction(
Insn, 16, 5);
1839 Reg =
getReg(Decoder, Mips::GPR32RegClassID, Reg);
1851 int Offset = SignExtend32<16>(
Insn & 0xffff);
1852 unsigned Reg = fieldFromInstruction(
Insn, 16, 5);
1853 unsigned Base = fieldFromInstruction(
Insn, 21, 5);
1855 Reg =
getReg(Decoder, Mips::FGR64RegClassID, Reg);
1870 int Offset = SignExtend32<16>(
Insn & 0xffff);
1871 unsigned Base = fieldFromInstruction(
Insn, 16, 5);
1872 unsigned Reg = fieldFromInstruction(
Insn, 21, 5);
1874 Reg =
getReg(Decoder, Mips::FGR64RegClassID, Reg);
1886 int Offset = SignExtend32<16>(
Insn & 0xffff);
1887 unsigned Reg = fieldFromInstruction(
Insn, 16, 5);
1888 unsigned Base = fieldFromInstruction(
Insn, 21, 5);
1890 Reg =
getReg(Decoder, Mips::COP2RegClassID, Reg);
1902 int Offset = SignExtend32<16>(
Insn & 0xffff);
1903 unsigned Reg = fieldFromInstruction(
Insn, 16, 5);
1904 unsigned Base = fieldFromInstruction(
Insn, 21, 5);
1906 Reg =
getReg(Decoder, Mips::COP3RegClassID, Reg);
1919 int Offset = SignExtend32<11>(
Insn & 0x07ff);
1920 unsigned Reg = fieldFromInstruction(
Insn, 16, 5);
1921 unsigned Base = fieldFromInstruction(
Insn, 11, 5);
1923 Reg =
getReg(Decoder, Mips::COP2RegClassID, Reg);
1936 int Offset = SignExtend32<11>(
Insn & 0x07ff);
1937 unsigned Reg = fieldFromInstruction(
Insn, 21, 5);
1938 unsigned Base = fieldFromInstruction(
Insn, 16, 5);
1940 Reg =
getReg(Decoder, Mips::COP2RegClassID, Reg);
1953 int64_t
Offset = SignExtend64<9>((
Insn >> 7) & 0x1ff);
1954 unsigned Rt = fieldFromInstruction(
Insn, 16, 5);
1955 unsigned Base = fieldFromInstruction(
Insn, 21, 5);
1957 Rt =
getReg(Decoder, Mips::GPR32RegClassID, Rt);
1984 if (RegNo > 30 || RegNo %2)
1987 unsigned Reg =
getReg(Decoder, Mips::AFGR64RegClassID, RegNo /2);
1998 unsigned Reg =
getReg(Decoder, Mips::ACC64DSPRegClassID, RegNo);
2009 unsigned Reg =
getReg(Decoder, Mips::HI32DSPRegClassID, RegNo);
2020 unsigned Reg =
getReg(Decoder, Mips::LO32DSPRegClassID, RegNo);
2031 unsigned Reg =
getReg(Decoder, Mips::MSA128BRegClassID, RegNo);
2042 unsigned Reg =
getReg(Decoder, Mips::MSA128HRegClassID, RegNo);
2053 unsigned Reg =
getReg(Decoder, Mips::MSA128WRegClassID, RegNo);
2064 unsigned Reg =
getReg(Decoder, Mips::MSA128DRegClassID, RegNo);
2075 unsigned Reg =
getReg(Decoder, Mips::MSACtrlRegClassID, RegNo);
2086 unsigned Reg =
getReg(Decoder, Mips::COP0RegClassID, RegNo);
2097 unsigned Reg =
getReg(Decoder, Mips::COP2RegClassID, RegNo);
2105 int32_t BranchOffset = (SignExtend32<16>(
Offset) * 4) + 4;
2113 int32_t BranchOffset = (SignExtend32<16>(
Offset) * 2);
2121 unsigned JumpOffset = fieldFromInstruction(
Insn, 0, 26) << 2;
2129 int32_t BranchOffset = SignExtend32<21>(
Offset) * 4 + 4;
2138 int32_t BranchOffset = SignExtend32<21>(
Offset) * 4 + 4;
2147 int32_t BranchOffset = SignExtend32<26>(
Offset) * 4 + 4;
2156 int32_t BranchOffset = SignExtend32<8>(
Offset << 1);
2164 int32_t BranchOffset = SignExtend32<11>(
Offset << 1);
2172 int32_t BranchOffset = SignExtend32<16>(
Offset) * 2 + 4;
2180 int32_t BranchOffset = SignExtend32<27>(
Offset << 1);
2189 unsigned JumpOffset = fieldFromInstruction(
Insn, 0, 26) << 1;
2197 unsigned JumpOffset = fieldFromInstruction(
Insn, 0, 26) << 2;
2207 else if (
Value == 0x7)
2231template <
unsigned Bits,
int Offset,
int Scale>
2235 Value &= ((1 << Bits) - 1);
2241template <
unsigned Bits,
int Offset,
int ScaleBy>
2245 int32_t Imm = SignExtend32<Bits>(
Value) * ScaleBy;
2277 int32_t DecodedValue;
2279 case 0: DecodedValue = 256;
break;
2280 case 1: DecodedValue = 257;
break;
2281 case 510: DecodedValue = -258;
break;
2282 case 511: DecodedValue = -257;
break;
2283 default: DecodedValue = SignExtend32<9>(
Insn);
break;
2294 int32_t DecodedValues[] = {128, 1, 2, 3, 4, 7, 8, 15, 16, 31, 32, 63, 64,
2303 unsigned Regs[] = {Mips::S0, Mips::S1, Mips::S2, Mips::S3, Mips::S4, Mips::S5,
2304 Mips::S6, Mips::S7, Mips::FP};
2307 unsigned RegLst = fieldFromInstruction(
Insn, 21, 5);
2313 RegNum = RegLst & 0xf;
2319 for (
unsigned i = 0; i < RegNum; i++)
2331 unsigned Regs[] = {Mips::S0, Mips::S1, Mips::S2, Mips::S3};
2335 RegLst = fieldFromInstruction(
Insn, 4, 2);
2337 case Mips::LWM16_MMR6:
2338 case Mips::SWM16_MMR6:
2339 RegLst = fieldFromInstruction(
Insn, 8, 2);
2342 unsigned RegNum = RegLst & 0x3;
2344 for (
unsigned i = 0; i <= RegNum; i++)
2355 unsigned RegPair = fieldFromInstruction(
Insn, 7, 3);
2361 if (
static_cast<const MipsDisassembler*
>(Decoder)->hasMips32r6())
2362 RegRs = fieldFromInstruction(
Insn, 0, 2) |
2363 (fieldFromInstruction(
Insn, 3, 1) << 2);
2365 RegRs = fieldFromInstruction(
Insn, 1, 3);
2370 unsigned RegRt = fieldFromInstruction(
Insn, 4, 3);
2428template <
typename InsnType>
2439 InsnType Rt = fieldFromInstruction(insn, 21, 5);
2440 InsnType Rs = fieldFromInstruction(insn, 16, 5);
2448 MI.setOpcode(Mips::BGTZALC_MMR6);
2450 Imm =
SignExtend64(fieldFromInstruction(insn, 0, 16), 16) * 2 + 4;
2452 else if (Rs == Rt) {
2453 MI.setOpcode(Mips::BLTZALC_MMR6);
2455 Imm =
SignExtend64(fieldFromInstruction(insn, 0, 16), 16) * 2 + 4;
2458 MI.setOpcode(Mips::BLTUC_MMR6);
2461 Imm =
SignExtend64(fieldFromInstruction(insn, 0, 16), 16) * 4 + 4;
2477template <
typename InsnType>
2488 InsnType Rt = fieldFromInstruction(insn, 21, 5);
2489 InsnType Rs = fieldFromInstruction(insn, 16, 5);
2496 MI.setOpcode(Mips::BLEZALC_MMR6);
2497 Imm =
SignExtend64(fieldFromInstruction(insn, 0, 16), 16) * 2 + 4;
2499 else if (Rs == Rt) {
2500 MI.setOpcode(Mips::BGEZALC_MMR6);
2501 Imm =
SignExtend64(fieldFromInstruction(insn, 0, 16), 16) * 2 + 4;
2505 MI.setOpcode(Mips::BGEUC_MMR6);
2506 Imm =
SignExtend64(fieldFromInstruction(insn, 0, 16), 16) * 4 + 4;
SmallVector< AArch64_IMM::ImmInsnModel, 4 > Insn
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 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 DecodePtrRegisterClass(MCInst &Inst, unsigned Insn, 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 DecodeHWRegsRegisterClass(MCInst &Inst, unsigned Insn, 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 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)
LLVM_EXTERNAL_VISIBILITY void LLVMInitializeMipsDisassembler()
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)
INSVE_[BHWD] have an implicit operand that the generated decoder doesn't handle.
static DecodeStatus DecodeMemMMGPImm7Lsl2(MCInst &Inst, unsigned Insn, uint64_t Address, const MCDisassembler *Decoder)
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
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.
This is an optimization pass for GlobalISel generic memory operations.
Target & getTheMips64Target()
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.