36#define GET_INSTRINFO_CTOR_DTOR
37#include "MipsGenInstrInfo.inc"
40void MipsInstrInfo::anchor() {}
49 return Subtarget.getABI().ArePtrs64bit() ? &Mips::GPR64RegClass
50 : &Mips::GPR32RegClass;
61 return op.isImm() &&
op.getImm() == 0;
84 "insertNop does not support MIPS16e mode at this time");
85 const unsigned MMOpc =
86 Subtarget.hasMips32r6() ? Mips::SLL_MMR6 : Mips::SLL_MM;
109void MipsInstrInfo::AnalyzeCondBr(
const MachineInstr *Inst,
unsigned Opc,
112 assert(getAnalyzableBrOpc(
Opc) &&
"Not an analyzable branch");
120 for (
int i = 0; i < NumOp-1; i++)
128 bool AllowModify)
const {
138 unsigned Opc =
Cond[0].getImm();
142 for (
unsigned i = 1; i <
Cond.size(); ++i) {
144 "Cannot copy operand for conditional branch!");
155 int *BytesAdded)
const {
157 assert(
TBB &&
"insertBranch must not be told to insert a fallthrough");
158 assert(!BytesAdded &&
"code size not handled");
166 "# of Mips branch conditions must be <= 3!");
185 int *BytesRemoved)
const {
186 assert(!BytesRemoved &&
"code size not handled");
189 unsigned removed = 0;
193 while (
I != REnd && removed < 2) {
195 if (
I->isDebugInstr()) {
199 if (!getAnalyzableBrOpc(
I->getOpcode()))
202 I->eraseFromParent();
215 "Invalid Mips branch condition!");
227 while (
I != REnd &&
I->isDebugInstr())
230 if (
I == REnd || !isUnpredicatedTerminator(*
I)) {
238 unsigned LastOpc = LastInst->
getOpcode();
242 if (!getAnalyzableBrOpc(LastOpc))
246 unsigned SecondLastOpc = 0;
252 while (
I != REnd &&
I->isDebugInstr())
256 SecondLastInst = &*
I;
257 SecondLastOpc = getAnalyzableBrOpc(SecondLastInst->
getOpcode());
260 if (isUnpredicatedTerminator(*SecondLastInst) && !SecondLastOpc)
265 if (!SecondLastOpc) {
273 AnalyzeCondBr(LastInst, LastOpc,
TBB,
Cond);
279 if (++
I != REnd && isUnpredicatedTerminator(*
I))
282 BranchInstrs.
insert(BranchInstrs.
begin(), SecondLastInst);
302 AnalyzeCondBr(SecondLastInst, SecondLastOpc,
TBB,
Cond);
309 int64_t BrOffset)
const {
314 case Mips::BAL_BR_MM:
319 case Mips::BEQ:
case Mips::BEQ64:
321 case Mips::BGEZ:
case Mips::BGEZ64:
325 case Mips::BGTZ:
case Mips::BGTZ64:
327 case Mips::BLEZ:
case Mips::BLEZ64:
329 case Mips::BLTZ:
case Mips::BLTZ64:
333 case Mips::BNE:
case Mips::BNE64:
343 case Mips::BGEZAL_MM:
347 case Mips::BLTZAL_MM:
357 case Mips::BEQZ16_MM:
358 case Mips::BNEZ16_MM:
370 case Mips::BEQC:
case Mips::BEQC64:
371 case Mips::BNEC:
case Mips::BNEC64:
372 case Mips::BGEC:
case Mips::BGEC64:
373 case Mips::BGEUC:
case Mips::BGEUC64:
374 case Mips::BGEZC:
case Mips::BGEZC64:
375 case Mips::BGTZC:
case Mips::BGTZC64:
376 case Mips::BLEZC:
case Mips::BLEZC64:
377 case Mips::BLTC:
case Mips::BLTC64:
378 case Mips::BLTUC:
case Mips::BLTUC64:
379 case Mips::BLTZC:
case Mips::BLTZC64:
390 case Mips::BEQZC:
case Mips::BEQZC64:
391 case Mips::BNEZC:
case Mips::BNEZC64:
395 case Mips::BC16_MMR6:
398 case Mips::BEQZC16_MMR6:
399 case Mips::BNEZC16_MMR6:
402 case Mips::BALC_MMR6:
406 case Mips::BC1EQZC_MMR6:
407 case Mips::BC1NEZC_MMR6:
408 case Mips::BC2EQZC_MMR6:
409 case Mips::BC2NEZC_MMR6:
410 case Mips::BGEZALC_MMR6:
411 case Mips::BEQZALC_MMR6:
412 case Mips::BGTZALC_MMR6:
413 case Mips::BLEZALC_MMR6:
414 case Mips::BLTZALC_MMR6:
415 case Mips::BNEZALC_MMR6:
416 case Mips::BNVC_MMR6:
417 case Mips::BOVC_MMR6:
420 case Mips::BEQC_MMR6:
421 case Mips::BNEC_MMR6:
422 case Mips::BGEC_MMR6:
423 case Mips::BGEUC_MMR6:
424 case Mips::BGEZC_MMR6:
425 case Mips::BGTZC_MMR6:
426 case Mips::BLEZC_MMR6:
427 case Mips::BLTC_MMR6:
428 case Mips::BLTUC_MMR6:
429 case Mips::BLTZC_MMR6:
432 case Mips::BEQZC_MMR6:
433 case Mips::BNEZC_MMR6:
439 case Mips::BPOSGE32_MM:
440 case Mips::BPOSGE32C_MMR3:
470 unsigned Opcode =
I->getOpcode();
471 bool canUseShortMicroMipsCTI =
false;
481 if (
I->getOperand(1).getReg() ==
Subtarget.getABI().GetZeroReg())
482 canUseShortMicroMipsCTI =
true;
487 case Mips::PseudoReturn:
488 case Mips::PseudoIndirectBranch:
489 canUseShortMicroMipsCTI =
true;
495 if (
Subtarget.hasMips32r6() && (
I->getNumOperands() > 1) &&
496 (
I->getOperand(0).isReg() &&
497 (
I->getOperand(0).getReg() == Mips::ZERO ||
498 I->getOperand(0).getReg() == Mips::ZERO_64)) &&
499 (
I->getOperand(1).isReg() &&
500 (
I->getOperand(1).getReg() == Mips::ZERO ||
501 I->getOperand(1).getReg() == Mips::ZERO_64)))
504 if (
Subtarget.hasMips32r6() || canUseShortMicroMipsCTI) {
512 if (canUseShortMicroMipsCTI)
513 return Mips::BEQZC_MM;
514 else if (
I->getOperand(0).getReg() ==
I->getOperand(1).getReg())
519 if (canUseShortMicroMipsCTI)
520 return Mips::BNEZC_MM;
521 else if (
I->getOperand(0).getReg() ==
I->getOperand(1).getReg())
525 if (
I->getOperand(0).getReg() ==
I->getOperand(1).getReg())
529 if (
I->getOperand(0).getReg() ==
I->getOperand(1).getReg())
539 if (
I->getOperand(0).getReg() ==
I->getOperand(1).getReg())
543 if (
I->getOperand(0).getReg() ==
I->getOperand(1).getReg())
549 if (
I->getOperand(0).getReg() ==
I->getOperand(1).getReg())
553 if (
I->getOperand(0).getReg() ==
I->getOperand(1).getReg())
557 return Mips::BGTZC64;
559 return Mips::BGEZC64;
561 return Mips::BLTZC64;
563 return Mips::BLEZC64;
567 case Mips::PseudoIndirectBranchR6:
568 case Mips::PseudoReturn:
569 case Mips::TAILCALLR6REG:
570 if (canUseShortMicroMipsCTI)
571 return Mips::JRC16_MM;
573 case Mips::JALRPseudo:
576 case Mips::PseudoIndirectBranch64R6:
577 case Mips::PseudoReturn64:
578 case Mips::TAILCALL64R6REG:
580 case Mips::JALR64Pseudo:
581 return Mips::JIALC64;
601 if (
MI.isInlineAsm())
645 return Op.isReg() && MIInSlot.readsRegister(Op.getReg(), nullptr) &&
646 !MIInSlot.hasRegisterImplicitUseOperand(Op.getReg());
664 switch (
MI.getOpcode()) {
683 switch (
MI.getOpcode()) {
698 const unsigned Opcode =
MI.getOpcode();
705 return ((
MI.getOperand(2).isImm() &&
MI.getOperand(2).getImm() == 0) ||
706 (
MI.getOperand(1).isReg() &&
707 (
MI.getOperand(1).getReg() == Mips::ZERO ||
708 MI.getOperand(1).getReg() == Mips::ZERO_64)));
710 return MI.isAsCheapAsAMove();
715 switch (
MI.getOpcode()) {
718 if (
MI.isBundledWithSucc())
719 return MI.getDesc().getSize() + getInstBundleSize(
MI);
720 if (
MI.hasDelaySlot()) {
722 return MI.getDesc().getSize() + 4;
724 return MI.getDesc().getSize();
725 case TargetOpcode::INLINEASM:
726 case TargetOpcode::INLINEASM_BR: {
728 const char *AsmStr =
MI.getOperand(0).getSymbolName();
731 case TargetOpcode::BUNDLE:
732 return getInstBundleSize(
MI);
733 case TargetOpcode::PATCHABLE_FUNCTION_ENTER:
734 case TargetOpcode::PATCHABLE_FUNCTION_EXIT:
735 case TargetOpcode::PATCHABLE_TAIL_CALL:
744 case Mips::CONSTPOOL_ENTRY:
747 return MI.getOperand(2).getImm();
765 int ZeroOperandPosition = -1;
766 bool BranchWithZeroOperand =
false;
767 if (
I->isBranch() && !
I->isPseudo()) {
768 auto TRI =
I->getParent()->getParent()->getSubtarget().getRegisterInfo();
769 ZeroOperandPosition =
I->findRegisterUseOperandIdx(Mips::ZERO,
TRI,
false);
770 BranchWithZeroOperand = ZeroOperandPosition != -1;
773 if (BranchWithZeroOperand) {
776 NewOpc = Mips::BEQZC;
779 NewOpc = Mips::BNEZC;
782 NewOpc = Mips::BGEZC;
785 NewOpc = Mips::BLTZC;
788 NewOpc = Mips::BEQZC64;
791 NewOpc = Mips::BNEZC64;
796 MIB =
BuildMI(*
I->getParent(),
I,
I->getDebugLoc(),
get(NewOpc));
802 if (NewOpc == Mips::JIC || NewOpc == Mips::JIALC || NewOpc == Mips::JIC64 ||
803 NewOpc == Mips::JIALC64) {
805 if (NewOpc == Mips::JIALC || NewOpc == Mips::JIALC64)
808 for (
unsigned J = 0, E =
I->getDesc().getNumOperands(); J < E; ++J) {
809 MIB.
add(
I->getOperand(J));
816 for (
unsigned J =
I->getDesc().getNumOperands(), E =
I->getNumOperands();
825 for (
unsigned J = 0, E =
I->getDesc().getNumOperands(); J < E; ++J) {
826 if (BranchWithZeroOperand && (
unsigned)ZeroOperandPosition == J)
829 MIB.
add(
I->getOperand(J));
840 unsigned &SrcOpIdx2)
const {
842 "TargetInstrInfo::findCommutedOpIndices() can't handle bundles");
845 if (!
MCID.isCommutable())
848 switch (
MI.getOpcode()) {
849 case Mips::DPADD_U_H:
850 case Mips::DPADD_U_W:
851 case Mips::DPADD_U_D:
852 case Mips::DPADD_S_H:
853 case Mips::DPADD_S_W:
854 case Mips::DPADD_S_D:
856 if (!fixCommutedOpIndices(SrcOpIdx1, SrcOpIdx2, 2, 3))
859 if (!
MI.getOperand(SrcOpIdx1).isReg() || !
MI.getOperand(SrcOpIdx2).isReg())
881 const int64_t PosLow,
const int64_t PosHigh,
882 const int64_t SizeLow,
883 const int64_t SizeHigh,
884 const int64_t BothLow,
885 const int64_t BothHigh) {
887 if (!MOPos.
isImm()) {
888 ErrInfo =
"Position is not an immediate!";
891 int64_t Pos = MOPos.
getImm();
892 if (!((PosLow <= Pos) && (Pos < PosHigh))) {
893 ErrInfo =
"Position operand is out of range!";
898 if (!MOSize.
isImm()) {
899 ErrInfo =
"Size operand is not an immediate!";
903 if (!((SizeLow <
Size) && (
Size <= SizeHigh))) {
904 ErrInfo =
"Size operand is out of range!";
908 if (!((BothLow < (Pos +
Size)) && ((Pos +
Size) <= BothHigh))) {
909 ErrInfo =
"Position + Size is out of range!";
920 switch (
MI.getOpcode()) {
946 case Mips::TAILCALLREG:
947 case Mips::PseudoIndirectBranch:
952 case Mips::JALRPseudo:
956 ErrInfo =
"invalid instruction when using jump guards!";
965std::pair<unsigned, unsigned>
967 return std::make_pair(TF, 0u);
974 static const std::pair<unsigned, const char*> Flags[] = {
975 {MO_GOT,
"mips-got"},
976 {MO_GOT_CALL,
"mips-got-call"},
977 {MO_GPREL,
"mips-gprel"},
978 {MO_ABS_HI,
"mips-abs-hi"},
979 {MO_ABS_LO,
"mips-abs-lo"},
980 {MO_TLSGD,
"mips-tlsgd"},
981 {MO_TLSLDM,
"mips-tlsldm"},
982 {MO_DTPREL_HI,
"mips-dtprel-hi"},
983 {MO_DTPREL_LO,
"mips-dtprel-lo"},
984 {MO_GOTTPREL,
"mips-gottprel"},
985 {MO_TPREL_HI,
"mips-tprel-hi"},
986 {MO_TPREL_LO,
"mips-tprel-lo"},
987 {MO_GPOFF_HI,
"mips-gpoff-hi"},
988 {MO_GPOFF_LO,
"mips-gpoff-lo"},
989 {MO_GOT_DISP,
"mips-got-disp"},
990 {MO_GOT_PAGE,
"mips-got-page"},
991 {MO_GOT_OFST,
"mips-got-ofst"},
992 {MO_HIGHER,
"mips-higher"},
993 {MO_HIGHEST,
"mips-highest"},
994 {MO_GOT_HI16,
"mips-got-hi16"},
995 {MO_GOT_LO16,
"mips-got-lo16"},
996 {MO_CALL_HI16,
"mips-call-hi16"},
997 {MO_CALL_LO16,
"mips-call-lo16"},
998 {MO_JALR,
"mips-jalr"}
1003std::optional<ParamLoadedValue>
1011 int64_t
Offset = RegImm->Imm;
1014 if (SrcReg == Mips::ZERO || SrcReg == Mips::ZERO_64) {
1019 }
else if (
auto DestSrc = isCopyInstr(
MI)) {
1022 Register DestReg = DestSrc->Destination->getReg();
1025 if (
TRI->isSuperRegister(Reg, DestReg) ||
TRI->isSubRegister(Reg, DestReg))
1026 return std::nullopt;
1038 return std::nullopt;
1040 switch (
MI.getOpcode()) {
1042 case Mips::DADDiu: {
1053 return std::nullopt;
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
Register const TargetRegisterInfo * TRI
static bool isReg(const MCInst &MI, unsigned OpNo)
static bool verifyInsExtInstruction(const MachineInstr &MI, StringRef &ErrInfo, const int64_t PosLow, const int64_t PosHigh, const int64_t SizeLow, const int64_t SizeHigh, const int64_t BothLow, const int64_t BothHigh)
#define IsMFLOMFHI(instr)
const SmallVectorImpl< MachineOperand > MachineBasicBlock * TBB
const SmallVectorImpl< MachineOperand > & Cond
This file defines the SmallVector class.
Represent a constant reference to an array (0 or more elements consecutively in memory),...
static LLVM_ABI DIExpression * prepend(const DIExpression *Expr, uint8_t Flags, int64_t Offset=0)
Prepend DIExpr with a deref and offset operation and optionally turn it into a stack value or/and an ...
MCInstBuilder & addReg(MCRegister Reg)
Add a new register operand.
MCInstBuilder & addImm(int64_t Val)
Add a new integer immediate operand.
Instances of this class represent a single low-level machine instruction.
Describe properties that are true of each instruction in the target description file.
static MDTuple * get(LLVMContext &Context, ArrayRef< Metadata * > MDs)
MachineInstrBundleIterator< MachineInstr, true > reverse_iterator
MachineInstrBundleIterator< MachineInstr > iterator
The MachineFrameInfo class represents an abstract stack frame until prolog/epilog code is inserted.
Align getObjectAlign(int ObjectIdx) const
Return the alignment of the specified stack object.
int64_t getObjectSize(int ObjectIdx) const
Return the size of the specified object.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
MachineFrameInfo & getFrameInfo()
getFrameInfo - Return the frame info object for the current function.
MachineMemOperand * getMachineMemOperand(MachinePointerInfo PtrInfo, MachineMemOperand::Flags F, LLT MemTy, Align BaseAlignment, const MMOMetadata &Metadata=MMOMetadata(), SyncScope::ID SSID=SyncScope::System, AtomicOrdering Ordering=AtomicOrdering::NotAtomic, AtomicOrdering FailureOrdering=AtomicOrdering::NotAtomic)
getMachineMemOperand - Allocate a new MachineMemOperand.
const TargetMachine & getTarget() const
getTarget - Return the target machine this machine code is compiled with
const MachineInstrBuilder & addReg(Register RegNo, RegState Flags={}, unsigned SubReg=0) const
Add a new virtual register operand.
const MachineInstrBuilder & addImm(int64_t Val) const
Add a new immediate operand.
const MachineInstrBuilder & add(const MachineOperand &MO) const
const MachineInstrBuilder & addSym(MCSymbol *Sym, unsigned char TargetFlags=0) const
const MachineInstrBuilder & addMBB(MachineBasicBlock *MBB, unsigned TargetFlags=0) const
const MachineInstrBuilder & cloneMemRefs(const MachineInstr &OtherMI) const
const MachineInstrBuilder & copyImplicitOps(const MachineInstr &OtherMI) const
Copy all the implicit operands from OtherMI onto this one.
Representation of each machine instruction.
mop_range defs()
Returns all explicit operands that are register definitions.
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
LLVM_ABI std::pair< bool, bool > readsWritesVirtualRegister(Register Reg, SmallVectorImpl< unsigned > *Ops=nullptr) const
Return a pair of bools (reads, writes) indicating if this instruction reads or writes Reg.
LLVM_ABI unsigned getNumExplicitOperands() const
Returns the number of non-implicit operands.
bool isUnconditionalBranch(QueryType Type=AnyInBundle) const
Return true if this is a branch which always transfers control flow to some other block.
LLVM_ABI void removeOperand(unsigned OpNo)
Erase an operand from an instruction, leaving it with one fewer operand than it started with.
const MachineOperand & getOperand(unsigned i) const
LLVM_ABI MachineInstrBundleIterator< MachineInstr > eraseFromParent()
Unlink 'this' from the containing basic block and delete it.
bool isIndirectBranch(QueryType Type=AnyInBundle) const
Return true if this is an indirect branch, such as a branch through a register.
A description of a memory reference used in the backend.
Flags
Flags values. These may be or'd together.
MachineOperand class - Representation of each machine instruction operand.
bool isReg() const
isReg - Tests if this is a MO_Register operand.
MachineBasicBlock * getMBB() const
bool isImm() const
isImm - Tests if this is a MO_Immediate operand.
unsigned getTargetFlags() const
static MachineOperand CreateImm(int64_t Val)
Register getReg() const
getReg - Returns the register number.
MCSymbol * getMCSymbol() const
static MachineOperand CreateReg(Register Reg, bool isDef, bool isImp=false, bool isKill=false, bool isDead=false, bool isUndef=false, bool isEarlyClobber=false, unsigned SubReg=0, bool isDebug=false, bool isInternalRead=false, bool isRenamable=false)
MCInst getNop() const override
bool SafeAfterMflo(const MachineInstr &MI) const
ArrayRef< std::pair< unsigned, const char * > > getSerializableDirectMachineOperandTargetFlags() const override
bool SafeInForbiddenSlot(const MachineInstr &MI) const
Predicate to determine if an instruction can go in a forbidden slot.
unsigned getInstSizeInBytes(const MachineInstr &MI) const override
Return the number of bytes of code the specified instruction may be.
MachineInstrBuilder insertNop(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, DebugLoc DL) const
Insert an ISA appropriate nop.
bool isBranchOffsetInRange(unsigned BranchOpc, int64_t BrOffset) const override
Determine if the branch target is in range.
bool analyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB, MachineBasicBlock *&FBB, SmallVectorImpl< MachineOperand > &Cond, bool AllowModify) const override
Branch Analysis.
const MipsSubtarget & Subtarget
MachineMemOperand * GetMemOperand(MachineBasicBlock &MBB, int FI, MachineMemOperand::Flags Flags) const
MachineInstrBuilder genInstrWithNewOpc(unsigned NewOpc, MachineBasicBlock::iterator I) const
Create an instruction which has the same operands and memory operands as MI but has a new opcode.
bool HasForbiddenSlot(const MachineInstr &MI) const
Predicate to determine if an instruction has a forbidden slot.
bool SafeInFPUDelaySlot(const MachineInstr &MIInSlot, const MachineInstr &FPUMI) const
Predicate to determine if an instruction can go in an FPU delay slot.
bool isZeroImm(const MachineOperand &op) const
unsigned getEquivalentCompactForm(const MachineBasicBlock::iterator I) const
Determine the opcode of a non-delay slot form for a branch if one exists.
bool SafeInLoadDelaySlot(const MachineInstr &MIInSlot, const MachineInstr &LoadMI) const
Predicate to determine if an instruction can go in a load delay slot.
bool reverseBranchCondition(SmallVectorImpl< MachineOperand > &Cond) const override
reverseBranchCondition - Return the inverse opcode of the specified Branch instruction.
unsigned insertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB, MachineBasicBlock *FBB, ArrayRef< MachineOperand > Cond, const DebugLoc &DL, int *BytesAdded=nullptr) const override
const TargetRegisterClass * getInlineAsmMemoryOperandRegClass(InlineAsm::ConstraintCode C) const override
std::optional< RegImmPair > isAddImmediate(const MachineInstr &MI, Register Reg) const override
bool HasFPUDelaySlot(const MachineInstr &MI) const
Predicate to determine if an instruction has an FPU delay slot.
bool verifyInstruction(const MachineInstr &MI, StringRef &ErrInfo) const override
Perform target specific instruction verification.
std::pair< unsigned, unsigned > decomposeMachineOperandsTargetFlags(unsigned TF) const override
static const MipsInstrInfo * create(MipsSubtarget &STI)
bool IsMfloOrMfhi(const MachineInstr &MI) const
bool findCommutedOpIndices(const MachineInstr &MI, unsigned &SrcOpIdx1, unsigned &SrcOpIdx2) const override
std::optional< ParamLoadedValue > describeLoadedValue(const MachineInstr &MI, Register Reg) const override
MipsInstrInfo(const MipsSubtarget &STI, const MipsRegisterInfo &RI, unsigned UncondBrOpc)
virtual unsigned getOppositeBranchOpc(unsigned Opc) const =0
bool HasLoadDelaySlot(const MachineInstr &MI) const
Predicate to determine if an instruction has a load delay slot.
bool isAsCheapAsAMove(const MachineInstr &MI) const override
unsigned removeBranch(MachineBasicBlock &MBB, int *BytesRemoved=nullptr) const override
void insertNoop(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI) const override
Insert nop instruction when hazard condition is found.
bool inMips16Mode() const
Wrapper class representing virtual and physical registers.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
iterator insert(iterator I, T &&Elt)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Represent a constant reference to a string, i.e.
virtual bool findCommutedOpIndices(const MachineInstr &MI, unsigned &SrcOpIdx1, unsigned &SrcOpIdx2) const
Returns true iff the routine could find two commutable operands in the given machine instruction.
virtual std::optional< ParamLoadedValue > describeLoadedValue(const MachineInstr &MI, Register Reg) const
Produce the expression describing the MI loading a value into the physical register Reg.
const MCAsmInfo & getMCAsmInfo() const
Return target specific asm information.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
virtual const TargetRegisterInfo * getRegisterInfo() const =0
Return the target's register information.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
MipsII - This namespace holds all of the target specific flags that instruction info tracks.
This is an optimization pass for GlobalISel generic memory operations.
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
constexpr bool isInt(int64_t x)
Checks if an integer fits into the given bit width.
const MipsInstrInfo * createMipsSEInstrInfo(const MipsSubtarget &STI)
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
MachineInstr * getImm(const MachineOperand &MO, const MachineRegisterInfo *MRI)
decltype(auto) get(const PointerIntPair< PointerTy, IntBits, IntType, PtrTraits, Info > &Pair)
DWARFExpression::Operation Op
ArrayRef(const T &OneElt) -> ArrayRef< T >
const MipsInstrInfo * createMips16InstrInfo(const MipsSubtarget &STI)
Create MipsInstrInfo objects.
std::pair< MachineOperand, DIExpression * > ParamLoadedValue
MCRegisterClass TargetRegisterClass
static LLVM_ABI MachinePointerInfo getFixedStack(MachineFunction &MF, int FI, int64_t Offset=0)
Return a MachinePointerInfo record that refers to the specified FrameIndex.
Used to describe a register and immediate addition.