34#define DEBUG_TYPE "hexagon-disassembler"
47 std::unique_ptr<MCInstrInfo const>
const MCII;
48 mutable std::unique_ptr<MCInst> CurrentBundle;
49 mutable MCInst const *CurrentExtender;
54 CurrentExtender(
nullptr) {}
67 void remapInstruction(
MCInst &Instr)
const;
77 void resetBundle()
const {
78 CurrentBundle.reset();
79 CurrentInstruction =
nullptr;
82 mutable MCOperand *CurrentInstruction =
nullptr;
85static uint64_t fullValue(HexagonDisassembler
const &Disassembler,
MCInst &
MI,
88 if (!Disassembler.CurrentExtender ||
100 uint64_t Operand = Upper26 | Lower6;
103static HexagonDisassembler
const &disassembler(
const MCDisassembler *Decoder) {
104 return *
static_cast<HexagonDisassembler
const *
>(Decoder);
107static void signedDecoder(
MCInst &
MI,
unsigned tmp,
109 HexagonDisassembler
const &Disassembler = disassembler(Decoder);
185 return DecodeStatus::Success;
191 return DecodeStatus::Success;
195#include "HexagonGenDisassemblerTables.inc"
200 return new HexagonDisassembler(STI, Ctx,
T.createMCInstrInfo());
212 bool Complete =
false;
215 CurrentBundle.reset(
new MCInst);
216 CurrentBundle->setOpcode(Hexagon::BUNDLE);
218 while (Result ==
Success && !Complete) {
222 Result = getSingleInstruction(*Inst, *CurrentBundle, Bytes,
Address, CS,
234 const auto STI_ = (ArchSTI !=
nullptr) ? *ArchSTI : STI;
235 HexagonMCChecker Checker(
getContext(), *MCII, STI_, *CurrentBundle,
237 if (!Checker.check())
239 remapInstruction(*CurrentBundle);
244 ArrayRef<uint8_t> Bytes,
246 raw_ostream &CS)
const {
250 uint64_t BytesToSkip = 0;
252 if (!CurrentBundle) {
253 if (!makeBundle(Bytes,
Address, BytesToSkip, CS)) {
258 CurrentInstruction = (CurrentBundle->begin() + 1);
263 if (++CurrentInstruction == CurrentBundle->end())
270 ArrayRef<uint8_t> Bytes,
272 raw_ostream &CS)
const {
275 uint64_t BytesToSkip = 0;
278 if (!makeBundle(Bytes,
Address, BytesToSkip, CS)) {
291void HexagonDisassembler::remapInstruction(MCInst &Instr)
const {
293 auto &
MI =
const_cast<MCInst &
>(*
I.getInst());
294 switch (
MI.getOpcode()) {
295 case Hexagon::S2_allocframe:
296 if (
MI.getOperand(0).getReg() == Hexagon::R29) {
297 MI.setOpcode(Hexagon::S6_allocframe_to_raw);
298 MI.erase(
MI.begin () + 1);
299 MI.erase(
MI.begin ());
302 case Hexagon::L2_deallocframe:
303 if (
MI.getOperand(0).getReg() == Hexagon::D15 &&
304 MI.getOperand(1).getReg() == Hexagon::R30) {
305 MI.setOpcode(L6_deallocframe_map_to_raw);
306 MI.erase(
MI.begin () + 1);
307 MI.erase(
MI.begin ());
310 case Hexagon::L4_return:
311 if (
MI.getOperand(0).getReg() == Hexagon::D15 &&
312 MI.getOperand(1).getReg() == Hexagon::R30) {
313 MI.setOpcode(L6_return_map_to_raw);
314 MI.erase(
MI.begin () + 1);
315 MI.erase(
MI.begin ());
318 case Hexagon::L4_return_t:
319 if (
MI.getOperand(0).getReg() == Hexagon::D15 &&
320 MI.getOperand(2).getReg() == Hexagon::R30) {
321 MI.setOpcode(L4_return_map_to_raw_t);
322 MI.erase(
MI.begin () + 2);
323 MI.erase(
MI.begin ());
326 case Hexagon::L4_return_f:
327 if (
MI.getOperand(0).getReg() == Hexagon::D15 &&
328 MI.getOperand(2).getReg() == Hexagon::R30) {
329 MI.setOpcode(L4_return_map_to_raw_f);
330 MI.erase(
MI.begin () + 2);
331 MI.erase(
MI.begin ());
334 case Hexagon::L4_return_tnew_pt:
335 if (
MI.getOperand(0).getReg() == Hexagon::D15 &&
336 MI.getOperand(2).getReg() == Hexagon::R30) {
337 MI.setOpcode(L4_return_map_to_raw_tnew_pt);
338 MI.erase(
MI.begin () + 2);
339 MI.erase(
MI.begin ());
342 case Hexagon::L4_return_fnew_pt:
343 if (
MI.getOperand(0).getReg() == Hexagon::D15 &&
344 MI.getOperand(2).getReg() == Hexagon::R30) {
345 MI.setOpcode(L4_return_map_to_raw_fnew_pt);
346 MI.erase(
MI.begin () + 2);
347 MI.erase(
MI.begin ());
350 case Hexagon::L4_return_tnew_pnt:
351 if (
MI.getOperand(0).getReg() == Hexagon::D15 &&
352 MI.getOperand(2).getReg() == Hexagon::R30) {
353 MI.setOpcode(L4_return_map_to_raw_tnew_pnt);
354 MI.erase(
MI.begin () + 2);
355 MI.erase(
MI.begin ());
358 case Hexagon::L4_return_fnew_pnt:
359 if (
MI.getOperand(0).getReg() == Hexagon::D15 &&
360 MI.getOperand(2).getReg() == Hexagon::R30) {
361 MI.setOpcode(L4_return_map_to_raw_fnew_pnt);
362 MI.erase(
MI.begin () + 2);
363 MI.erase(
MI.begin ());
370DecodeStatus HexagonDisassembler::getSingleInstruction(MCInst &
MI, MCInst &MCB,
371 ArrayRef<uint8_t> Bytes,
374 bool &Complete)
const {
384 else if (BundleSize == 1)
387 return DecodeStatus::Fail;
396 unsigned duplexIClass;
397 uint8_t
const *DecodeLow, *DecodeHigh;
398 duplexIClass = ((
Instruction >> 28) & 0xe) | ((Instruction >> 13) & 0x1);
399 switch (duplexIClass) {
403 DecodeLow = DecoderTableSUBINSN_L132;
404 DecodeHigh = DecoderTableSUBINSN_L132;
407 DecodeLow = DecoderTableSUBINSN_L232;
408 DecodeHigh = DecoderTableSUBINSN_L132;
411 DecodeLow = DecoderTableSUBINSN_L232;
412 DecodeHigh = DecoderTableSUBINSN_L232;
415 DecodeLow = DecoderTableSUBINSN_A32;
416 DecodeHigh = DecoderTableSUBINSN_A32;
419 DecodeLow = DecoderTableSUBINSN_L132;
420 DecodeHigh = DecoderTableSUBINSN_A32;
423 DecodeLow = DecoderTableSUBINSN_L232;
424 DecodeHigh = DecoderTableSUBINSN_A32;
427 DecodeLow = DecoderTableSUBINSN_S132;
428 DecodeHigh = DecoderTableSUBINSN_A32;
431 DecodeLow = DecoderTableSUBINSN_S232;
432 DecodeHigh = DecoderTableSUBINSN_A32;
435 DecodeLow = DecoderTableSUBINSN_S132;
436 DecodeHigh = DecoderTableSUBINSN_L132;
439 DecodeLow = DecoderTableSUBINSN_S132;
440 DecodeHigh = DecoderTableSUBINSN_L232;
443 DecodeLow = DecoderTableSUBINSN_S132;
444 DecodeHigh = DecoderTableSUBINSN_S132;
447 DecodeLow = DecoderTableSUBINSN_S232;
448 DecodeHigh = DecoderTableSUBINSN_S132;
451 DecodeLow = DecoderTableSUBINSN_S232;
452 DecodeHigh = DecoderTableSUBINSN_L132;
455 DecodeLow = DecoderTableSUBINSN_S232;
456 DecodeHigh = DecoderTableSUBINSN_L232;
459 DecodeLow = DecoderTableSUBINSN_S232;
460 DecodeHigh = DecoderTableSUBINSN_S232;
463 MI.setOpcode(Hexagon::DuplexIClass0 + duplexIClass);
466 auto TmpExtender = CurrentExtender;
469 Result = decodeInstruction(DecodeLow, *MILow, Instruction & 0x1fff,
Address,
471 CurrentExtender = TmpExtender;
472 if (Result != DecodeStatus::Success)
473 return DecodeStatus::Fail;
474 Result = decodeInstruction(
475 DecodeHigh, *MIHigh, (Instruction >> 16) & 0x1fff,
Address,
this, STI);
476 if (Result != DecodeStatus::Success)
477 return DecodeStatus::Fail;
480 MI.addOperand(OPLow);
481 MI.addOperand(OPHigh);
488 if (CurrentExtender !=
nullptr)
489 Result = decodeInstruction(DecoderTableMustExtend32,
MI, Instruction,
493 Result = decodeInstruction(DecoderTable32,
MI, Instruction,
Address,
this,
497 STI.hasFeature(Hexagon::ExtensionHVX))
498 Result = decodeInstruction(DecoderTableEXT_mmvec32,
MI, Instruction,
506 assert(MCO.
isReg() &&
"New value consumers must be registers");
512 unsigned Lookback = (
Register & 0x6) >> 1;
515 bool PrevVector =
false;
523 if (
Vector && !CurrentVector)
528 PrevVector = CurrentVector;
532 auto const &Inst = *i->getInst();
533 bool SubregBit = (
Register & 0x1) != 0;
540 assert(Producer != Hexagon::NoRegister);
548 const unsigned ProdPairIndex =
551 SubregBit = !SubregBit;
552 Producer = (ProdPairIndex << 1) + SubregBit + Hexagon::V0;
553 }
else if (SubregBit)
557 assert(Producer != Hexagon::NoRegister);
563 if (CurrentExtender !=
nullptr) {
565 ? *
MI.getOperand(1).getInst()
574Expected<bool> HexagonDisassembler::onSymbolStart(SymbolInfoTy &Symbol,
576 ArrayRef<uint8_t> Bytes,
588 if (RegNo < Table.
size()) {
606 Hexagon::R0, Hexagon::R1, Hexagon::R2, Hexagon::R3, Hexagon::R4,
607 Hexagon::R5, Hexagon::R6, Hexagon::R7, Hexagon::R8, Hexagon::R9,
608 Hexagon::R10, Hexagon::R11, Hexagon::R12, Hexagon::R13, Hexagon::R14,
609 Hexagon::R15, Hexagon::R16, Hexagon::R17, Hexagon::R18, Hexagon::R19,
610 Hexagon::R20, Hexagon::R21, Hexagon::R22, Hexagon::R23, Hexagon::R24,
611 Hexagon::R25, Hexagon::R26, Hexagon::R27, Hexagon::R28, Hexagon::R29,
612 Hexagon::R30, Hexagon::R31};
621 static const MCPhysReg GeneralSubRegDecoderTable[] = {
622 Hexagon::R0, Hexagon::R1, Hexagon::R2, Hexagon::R3,
623 Hexagon::R4, Hexagon::R5, Hexagon::R6, Hexagon::R7,
624 Hexagon::R16, Hexagon::R17, Hexagon::R18, Hexagon::R19,
625 Hexagon::R20, Hexagon::R21, Hexagon::R22, Hexagon::R23,
634 static const MCPhysReg HvxVRDecoderTable[] = {
635 Hexagon::V0, Hexagon::V1, Hexagon::V2, Hexagon::V3, Hexagon::V4,
636 Hexagon::V5, Hexagon::V6, Hexagon::V7, Hexagon::V8, Hexagon::V9,
637 Hexagon::V10, Hexagon::V11, Hexagon::V12, Hexagon::V13, Hexagon::V14,
638 Hexagon::V15, Hexagon::V16, Hexagon::V17, Hexagon::V18, Hexagon::V19,
639 Hexagon::V20, Hexagon::V21, Hexagon::V22, Hexagon::V23, Hexagon::V24,
640 Hexagon::V25, Hexagon::V26, Hexagon::V27, Hexagon::V28, Hexagon::V29,
641 Hexagon::V30, Hexagon::V31};
650 static const MCPhysReg DoubleRegDecoderTable[] = {
651 Hexagon::D0, Hexagon::D1, Hexagon::D2, Hexagon::D3,
652 Hexagon::D4, Hexagon::D5, Hexagon::D6, Hexagon::D7,
653 Hexagon::D8, Hexagon::D9, Hexagon::D10, Hexagon::D11,
654 Hexagon::D12, Hexagon::D13, Hexagon::D14, Hexagon::D15};
663 static const MCPhysReg GeneralDoubleLow8RegDecoderTable[] = {
664 Hexagon::D0, Hexagon::D1, Hexagon::D2, Hexagon::D3,
665 Hexagon::D8, Hexagon::D9, Hexagon::D10, Hexagon::D11};
673 static const MCPhysReg HvxWRDecoderTable[] = {
674 Hexagon::W0, Hexagon::WR0, Hexagon::W1, Hexagon::WR1, Hexagon::W2,
675 Hexagon::WR2, Hexagon::W3, Hexagon::WR3, Hexagon::W4, Hexagon::WR4,
676 Hexagon::W5, Hexagon::WR5, Hexagon::W6, Hexagon::WR6, Hexagon::W7,
677 Hexagon::WR7, Hexagon::W8, Hexagon::WR8, Hexagon::W9, Hexagon::WR9,
678 Hexagon::W10, Hexagon::WR10, Hexagon::W11, Hexagon::WR11, Hexagon::W12,
679 Hexagon::WR12, Hexagon::W13, Hexagon::WR13, Hexagon::W14, Hexagon::WR14,
680 Hexagon::W15, Hexagon::WR15,
690 static const MCPhysReg HvxVQRDecoderTable[] = {
691 Hexagon::VQ0, Hexagon::VQ1, Hexagon::VQ2, Hexagon::VQ3,
692 Hexagon::VQ4, Hexagon::VQ5, Hexagon::VQ6, Hexagon::VQ7};
700 static const MCPhysReg PredRegDecoderTable[] = {Hexagon::P0, Hexagon::P1,
701 Hexagon::P2, Hexagon::P3};
709 static const MCPhysReg HvxQRDecoderTable[] = {Hexagon::Q0, Hexagon::Q1,
710 Hexagon::Q2, Hexagon::Q3};
720 static const MCPhysReg CtrlRegDecoderTable[] = {
724 CS0, CS1, UPCYCLELO, UPCYCLEHI,
725 FRAMELIMIT, FRAMEKEY, PKTCOUNTLO, PKTCOUNTHI,
728 0, 0, UTIMERLO, UTIMERHI
731 if (RegNo >= std::size(CtrlRegDecoderTable))
734 static_assert(NoRegister == 0,
"Expecting NoRegister to be 0");
735 if (CtrlRegDecoderTable[RegNo] == NoRegister)
738 unsigned Register = CtrlRegDecoderTable[RegNo];
748 static const MCPhysReg CtrlReg64DecoderTable[] = {
753 C17_16, 0, PKTCOUNT, 0,
759 if (RegNo >= std::size(CtrlReg64DecoderTable))
762 static_assert(NoRegister == 0,
"Expecting NoRegister to be 0");
763 if (CtrlReg64DecoderTable[RegNo] == NoRegister)
766 unsigned Register = CtrlReg64DecoderTable[RegNo];
792 HexagonDisassembler
const &Disassembler = disassembler(Decoder);
793 int64_t FullValue = fullValue(Disassembler,
MI, tmp);
794 assert(FullValue >= 0 &&
"Negative in unsigned decoder");
802 HexagonDisassembler
const &Disassembler = disassembler(Decoder);
805 signedDecoder<32>(
MI, tmp, Decoder);
812 HexagonDisassembler
const &Disassembler = disassembler(Decoder);
818 uint32_t Extended = FullValue + Address;
819 if (!Disassembler.tryAddingSymbolicOperand(
MI, Extended, Address,
true, 0, 0,
826 Hexagon::SGP0, Hexagon::SGP1, Hexagon::STID,
827 Hexagon::ELR, Hexagon::BADVA0, Hexagon::BADVA1,
828 Hexagon::SSR, Hexagon::CCR, Hexagon::HTID,
829 Hexagon::BADVA, Hexagon::IMASK, Hexagon::S11,
830 Hexagon::S12, Hexagon::S13, Hexagon::S14,
831 Hexagon::S15, Hexagon::EVB, Hexagon::MODECTL,
832 Hexagon::SYSCFG, Hexagon::S19, Hexagon::S20,
833 Hexagon::VID, Hexagon::S22, Hexagon::S23,
834 Hexagon::S24, Hexagon::S25, Hexagon::S26,
835 Hexagon::CFGBASE, Hexagon::DIAG, Hexagon::REV,
836 Hexagon::PCYCLELO, Hexagon::PCYCLEHI, Hexagon::ISDBST,
837 Hexagon::ISDBCFG0, Hexagon::ISDBCFG1, Hexagon::S35,
838 Hexagon::BRKPTPC0, Hexagon::BRKPTCFG0, Hexagon::BRKPTPC1,
839 Hexagon::BRKPTCFG1, Hexagon::ISDBMBXIN, Hexagon::ISDBMBXOUT,
840 Hexagon::ISDBEN, Hexagon::ISDBGPR, Hexagon::S44,
841 Hexagon::S45, Hexagon::S46, Hexagon::S47,
842 Hexagon::PMUCNT0, Hexagon::PMUCNT1, Hexagon::PMUCNT2,
843 Hexagon::PMUCNT3, Hexagon::PMUEVTCFG, Hexagon::PMUCFG,
844 Hexagon::S54, Hexagon::S55, Hexagon::S56,
845 Hexagon::S57, Hexagon::S58, Hexagon::S59,
846 Hexagon::S60, Hexagon::S61, Hexagon::S62,
847 Hexagon::S63, Hexagon::S64, Hexagon::S65,
848 Hexagon::S66, Hexagon::S67, Hexagon::S68,
849 Hexagon::S69, Hexagon::S70, Hexagon::S71,
850 Hexagon::S72, Hexagon::S73, Hexagon::S74,
851 Hexagon::S75, Hexagon::S76, Hexagon::S77,
852 Hexagon::S78, Hexagon::S79, Hexagon::S80,
870 Hexagon::SGP1_0, Hexagon::S3_2, Hexagon::S5_4, Hexagon::S7_6,
871 Hexagon::S9_8, Hexagon::S11_10, Hexagon::S13_12, Hexagon::S15_14,
872 Hexagon::S17_16, Hexagon::S19_18, Hexagon::S21_20, Hexagon::S23_22,
873 Hexagon::S25_24, Hexagon::S27_26, Hexagon::S29_28, Hexagon::S31_30,
874 Hexagon::S33_32, Hexagon::S35_34, Hexagon::S37_36, Hexagon::S39_38,
875 Hexagon::S41_40, Hexagon::S43_42, Hexagon::S45_44, Hexagon::S47_46,
876 Hexagon::S49_48, Hexagon::S51_50, Hexagon::S53_52, Hexagon::S55_54,
877 Hexagon::S57_56, Hexagon::S59_58, Hexagon::S61_60, Hexagon::S63_62,
878 Hexagon::S65_64, Hexagon::S67_66, Hexagon::S69_68, Hexagon::S71_70,
879 Hexagon::S73_72, Hexagon::S75_74, Hexagon::S77_76, Hexagon::S79_78,
902 static const MCPhysReg GuestRegDecoderTable[] = {
907 GPMUCNT4, GPMUCNT5, GPMUCNT6, GPMUCNT7,
909 GPCYCLELO, GPCYCLEHI, GPMUCNT0, GPMUCNT1,
910 GPMUCNT2, GPMUCNT3, G30, G31
913 if (RegNo >= std::size(GuestRegDecoderTable))
915 if (GuestRegDecoderTable[RegNo] == Hexagon::NoRegister)
918 unsigned Register = GuestRegDecoderTable[RegNo];
929 static const MCPhysReg GuestReg64DecoderTable[] = {
933 G13_12, 0, G15_14, 0,
934 G17_16, 0, G19_18, 0,
935 G21_20, 0, G23_22, 0,
936 G25_24, 0, G27_26, 0,
940 if (RegNo >= std::size(GuestReg64DecoderTable))
942 if (GuestReg64DecoderTable[RegNo] == Hexagon::NoRegister)
945 unsigned Register = GuestReg64DecoderTable[RegNo];
MCDisassembler::DecodeStatus DecodeStatus
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
#define LLVM_EXTERNAL_VISIBILITY
static DecodeStatus sgp10ConstDecoder(MCInst &MI, const MCDisassembler *Decoder)
static DecodeStatus DecodeIntRegsLow8RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeGuestRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeCtrRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus brtargetDecoder(MCInst &MI, unsigned tmp, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodePredRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
LLVM_ABI LLVM_EXTERNAL_VISIBILITY void LLVMInitializeHexagonDisassembler()
static DecodeStatus s32_0ImmDecoder(MCInst &MI, unsigned tmp, uint64_t, const MCDisassembler *Decoder)
static DecodeStatus unsignedImmDecoder(MCInst &MI, unsigned tmp, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeHvxVRRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static MCDisassembler * createHexagonDisassembler(const Target &T, const MCSubtargetInfo &STI, MCContext &Ctx)
static DecodeStatus DecodeSysRegs64RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeModRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static const uint16_t SysReg64DecoderTable[]
static DecodeStatus DecodeRegisterClass(MCInst &Inst, unsigned RegNo, ArrayRef< MCPhysReg > Table)
static DecodeStatus DecodeSysRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeDoubleRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus n1ConstDecoder(MCInst &MI, const MCDisassembler *Decoder)
static const uint16_t SysRegDecoderTable[]
static DecodeStatus DecodeGeneralSubRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeHvxWRRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeIntRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeHvxQRRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeCtrRegs64RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeGeneralDoubleLow8RegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeGuestRegs64RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
static DecodeStatus DecodeHvxVQRRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const MCDisassembler *Decoder)
#define HEXAGON_MAX_PACKET_SIZE
#define HEXAGON_INSTR_SIZE
Promote Memory to Register
static constexpr unsigned IntRegDecoderTable[]
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
size_t size() const
size - Get the array size.
ArrayRef< T > slice(size_t N, size_t M) const
slice(n, m) - Chop off the first N elements of the array, and keep M elements in the array.
Tagged union holding either a T or a Error.
static LLVM_ABI const MCConstantExpr * create(int64_t Value, MCContext &Ctx, bool PrintInHex=false, unsigned SizeInBytes=0)
Context object for machine code objects.
Superclass for all disassemblers.
MCContext & getContext() const
DecodeStatus
Ternary decode status.
Instances of this class represent a single low-level machine instruction.
void addOperand(const MCOperand Op)
const MCOperand & getOperand(unsigned i) const
Interface to description of machine instruction set.
Instances of this class represent operands of the MCInst class.
static MCOperand createExpr(const MCExpr *Val)
static MCOperand createReg(MCRegister Reg)
static MCOperand createImm(int64_t Val)
void setReg(MCRegister Reg)
Set the register number.
MCRegister getReg() const
Returns the register number.
const MCInst * getInst() const
const MCExpr * getExpr() const
static MCOperand createInst(const MCInst *Val)
Generic base class for all target subtargets.
Wrapper class representing virtual and physical registers.
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.
void setOuterLoop(MCInst &MCI)
void addConstant(MCInst &MI, uint64_t Value, MCContext &Context)
bool IsReverseVecRegPair(MCRegister VecReg)
size_t bundleSize(MCInst const &MCI)
bool isDuplex(MCInstrInfo const &MCII, MCInst const &MCI)
unsigned getExtentBits(MCInstrInfo const &MCII, MCInst const &MCI)
bool isNewValue(MCInstrInfo const &MCII, MCInst const &MCI)
Return whether the insn expects newly produced value.
void setInnerLoop(MCInst &MCI)
unsigned short getNewValueOp(MCInstrInfo const &MCII, MCInst const &MCI)
unsigned short getExtendableOp(MCInstrInfo const &MCII, MCInst const &MCI)
bool IsVecRegPair(MCRegister VecReg)
iterator_range< Hexagon::PacketIterator > bundleInstructions(MCInstrInfo const &MCII, MCInst const &MCI)
bool isExtendable(MCInstrInfo const &MCII, MCInst const &MCI)
MCInst const * extenderForIndex(MCInst const &MCB, size_t Index)
bool isImmext(MCInst const &MCI)
MCOperand const & getNewValueOperand(MCInstrInfo const &MCII, MCInst const &MCI)
bool hasNewValue2(MCInstrInfo const &MCII, MCInst const &MCI)
Return whether the insn produces a second value.
unsigned getExtentAlignment(MCInstrInfo const &MCII, MCInst const &MCI)
bool isVector(MCInstrInfo const &MCII, MCInst const &MCI)
MCOperand const & getNewValueOperand2(MCInstrInfo const &MCII, MCInst const &MCI)
bool isExtended(MCInstrInfo const &MCII, MCInst const &MCI)
bool hasNewValue(MCInstrInfo const &MCII, MCInst const &MCI)
Return whether the insn produces a value.
MCSubtargetInfo const * getArchSubtarget(MCSubtargetInfo const *STI)
Context & getContext() const
friend class Instruction
Iterator for Instructions in a `BasicBlock.
uint32_t read32le(const void *P)
This is an optimization pass for GlobalISel generic memory operations.
Target & getTheHexagonTarget()
unsigned M1(unsigned Val)
uint16_t MCPhysReg
An unsigned integer type large enough to represent all physical registers, but not necessarily virtua...
unsigned M0(unsigned Val)
constexpr int64_t SignExtend64(uint64_t x)
Sign-extend the number in the bottom B bits of X to a 64-bit integer.
static void RegisterMCDisassembler(Target &T, Target::MCDisassemblerCtorTy Fn)
RegisterMCDisassembler - Register a MCDisassembler implementation for the given target.