LLVM
8.0.1
|
Representation of each machine instruction. More...
#include "llvm/CodeGen/MachineInstr.h"
Public Types | |
enum | CommentFlag { ReloadReuse = 0x1, NoSchedComment = 0x2, TAsmComments = 0x4 } |
Flags to specify different kinds of comments to output in assembly code. More... | |
enum | MIFlag { NoFlags = 0, FrameSetup = 1 << 0, FrameDestroy = 1 << 1, BundledPred = 1 << 2, BundledSucc = 1 << 3, FmNoNans = 1 << 4, FmNoInfs = 1 << 5, FmNsz = 1 << 6, FmArcp = 1 << 7, FmContract = 1 << 8, FmAfn = 1 << 9, FmReassoc = 1 << 10, NoUWrap = 1 << 11, NoSWrap = 1 << 12, IsExact = 1 << 13 } |
enum | QueryType { IgnoreBundle, AnyInBundle, AllInBundle } |
API for querying MachineInstr properties. More... | |
enum | MICheckType { CheckDefs, CheckKillDead, IgnoreDefs, IgnoreVRegDefs } |
using | mmo_iterator = ArrayRef< MachineMemOperand * >::iterator |
using | mop_iterator = MachineOperand * |
iterator/begin/end - Iterate over all operands of a machine instruction. More... | |
using | const_mop_iterator = const MachineOperand * |
Public Member Functions | |
MachineInstr (const MachineInstr &)=delete | |
MachineInstr & | operator= (const MachineInstr &)=delete |
~MachineInstr ()=delete | |
const MachineBasicBlock * | getParent () const |
MachineBasicBlock * | getParent () |
const MachineFunction * | getMF () const |
Return the function that contains the basic block that this instruction belongs to. More... | |
MachineFunction * | getMF () |
uint8_t | getAsmPrinterFlags () const |
Return the asm printer flags bitvector. More... | |
void | clearAsmPrinterFlags () |
Clear the AsmPrinter bitvector. More... | |
bool | getAsmPrinterFlag (CommentFlag Flag) const |
Return whether an AsmPrinter flag is set. More... | |
void | setAsmPrinterFlag (uint8_t Flag) |
Set a flag for the AsmPrinter. More... | |
void | clearAsmPrinterFlag (CommentFlag Flag) |
Clear specific AsmPrinter flags. More... | |
uint16_t | getFlags () const |
Return the MI flags bitvector. More... | |
bool | getFlag (MIFlag Flag) const |
Return whether an MI flag is set. More... | |
void | setFlag (MIFlag Flag) |
Set a MI flag. More... | |
void | setFlags (unsigned flags) |
void | clearFlag (MIFlag Flag) |
clearFlag - Clear a MI flag. More... | |
bool | isInsideBundle () const |
Return true if MI is in a bundle (but not the first MI in a bundle). More... | |
bool | isBundled () const |
Return true if this instruction part of a bundle. More... | |
bool | isBundledWithPred () const |
Return true if this instruction is part of a bundle, and it is not the first instruction in the bundle. More... | |
bool | isBundledWithSucc () const |
Return true if this instruction is part of a bundle, and it is not the last instruction in the bundle. More... | |
void | bundleWithPred () |
Bundle this instruction with its predecessor. More... | |
void | bundleWithSucc () |
Bundle this instruction with its successor. More... | |
void | unbundleFromPred () |
Break bundle above this instruction. More... | |
void | unbundleFromSucc () |
Break bundle below this instruction. More... | |
const DebugLoc & | getDebugLoc () const |
Returns the debug location id of this MachineInstr. More... | |
const DILocalVariable * | getDebugVariable () const |
Return the debug variable referenced by this DBG_VALUE instruction. More... | |
const DIExpression * | getDebugExpression () const |
Return the complex address expression referenced by this DBG_VALUE instruction. More... | |
const DILabel * | getDebugLabel () const |
Return the debug label referenced by this DBG_LABEL instruction. More... | |
void | emitError (StringRef Msg) const |
Emit an error referring to the source location of this instruction. More... | |
const MCInstrDesc & | getDesc () const |
Returns the target instruction descriptor of this MachineInstr. More... | |
unsigned | getOpcode () const |
Returns the opcode of this MachineInstr. More... | |
unsigned | getNumOperands () const |
Retuns the total number of operands. More... | |
const MachineOperand & | getOperand (unsigned i) const |
MachineOperand & | getOperand (unsigned i) |
unsigned | getNumDefs () const |
Returns the total number of definitions. More... | |
bool | isOperandSubregIdx (unsigned OpIdx) const |
Return true if operand OpIdx is a subregister index. More... | |
unsigned | getNumExplicitOperands () const |
Returns the number of non-implicit operands. More... | |
unsigned | getNumExplicitDefs () const |
Returns the number of non-implicit definitions. More... | |
mop_iterator | operands_begin () |
mop_iterator | operands_end () |
const_mop_iterator | operands_begin () const |
const_mop_iterator | operands_end () const |
iterator_range< mop_iterator > | operands () |
iterator_range< const_mop_iterator > | operands () const |
iterator_range< mop_iterator > | explicit_operands () |
iterator_range< const_mop_iterator > | explicit_operands () const |
iterator_range< mop_iterator > | implicit_operands () |
iterator_range< const_mop_iterator > | implicit_operands () const |
iterator_range< mop_iterator > | defs () |
Returns a range over all explicit operands that are register definitions. More... | |
iterator_range< const_mop_iterator > | defs () const |
Returns a range over all explicit operands that are register definitions. More... | |
iterator_range< mop_iterator > | uses () |
Returns a range that includes all operands that are register uses. More... | |
iterator_range< const_mop_iterator > | uses () const |
Returns a range that includes all operands that are register uses. More... | |
iterator_range< mop_iterator > | explicit_uses () |
iterator_range< const_mop_iterator > | explicit_uses () const |
unsigned | getOperandNo (const_mop_iterator I) const |
Returns the number of the operand iterator I points to. More... | |
ArrayRef< MachineMemOperand * > | memoperands () const |
Access to memory operands of the instruction. More... | |
mmo_iterator | memoperands_begin () const |
Access to memory operands of the instruction. More... | |
mmo_iterator | memoperands_end () const |
Access to memory operands of the instruction. More... | |
bool | memoperands_empty () const |
Return true if we don't have any memory operands which described the memory access done by this instruction. More... | |
bool | hasOneMemOperand () const |
Return true if this instruction has exactly one MachineMemOperand. More... | |
unsigned | getNumMemOperands () const |
Return the number of memory operands. More... | |
MCSymbol * | getPreInstrSymbol () const |
Helper to extract a pre-instruction symbol if one has been added. More... | |
MCSymbol * | getPostInstrSymbol () const |
Helper to extract a post-instruction symbol if one has been added. More... | |
bool | hasProperty (unsigned MCFlag, QueryType Type=AnyInBundle) const |
Return true if the instruction (or in the case of a bundle, the instructions inside the bundle) has the specified property. More... | |
bool | isVariadic (QueryType Type=IgnoreBundle) const |
Return true if this instruction can have a variable number of operands. More... | |
bool | hasOptionalDef (QueryType Type=IgnoreBundle) const |
Set if this instruction has an optional definition, e.g. More... | |
bool | isPseudo (QueryType Type=IgnoreBundle) const |
Return true if this is a pseudo instruction that doesn't correspond to a real machine instruction. More... | |
bool | isReturn (QueryType Type=AnyInBundle) const |
bool | isEHScopeReturn (QueryType Type=AnyInBundle) const |
Return true if this is an instruction that marks the end of an EH scope, i.e., a catchpad or a cleanuppad instruction. More... | |
bool | isCall (QueryType Type=AnyInBundle) const |
bool | isBarrier (QueryType Type=AnyInBundle) const |
Returns true if the specified instruction stops control flow from executing the instruction immediately following it. More... | |
bool | isTerminator (QueryType Type=AnyInBundle) const |
Returns true if this instruction part of the terminator for a basic block. More... | |
bool | isBranch (QueryType Type=AnyInBundle) const |
Returns true if this is a conditional, unconditional, or indirect branch. More... | |
bool | isIndirectBranch (QueryType Type=AnyInBundle) const |
Return true if this is an indirect branch, such as a branch through a register. More... | |
bool | isConditionalBranch (QueryType Type=AnyInBundle) const |
Return true if this is a branch which may fall through to the next instruction or may transfer control flow to some other block. More... | |
bool | isUnconditionalBranch (QueryType Type=AnyInBundle) const |
Return true if this is a branch which always transfers control flow to some other block. More... | |
bool | isPredicable (QueryType Type=AllInBundle) const |
Return true if this instruction has a predicate operand that controls execution. More... | |
bool | isCompare (QueryType Type=IgnoreBundle) const |
Return true if this instruction is a comparison. More... | |
bool | isMoveImmediate (QueryType Type=IgnoreBundle) const |
Return true if this instruction is a move immediate (including conditional moves) instruction. More... | |
bool | isMoveReg (QueryType Type=IgnoreBundle) const |
Return true if this instruction is a register move. More... | |
bool | isBitcast (QueryType Type=IgnoreBundle) const |
Return true if this instruction is a bitcast instruction. More... | |
bool | isSelect (QueryType Type=IgnoreBundle) const |
Return true if this instruction is a select instruction. More... | |
bool | isNotDuplicable (QueryType Type=AnyInBundle) const |
Return true if this instruction cannot be safely duplicated. More... | |
bool | isConvergent (QueryType Type=AnyInBundle) const |
Return true if this instruction is convergent. More... | |
bool | hasDelaySlot (QueryType Type=AnyInBundle) const |
Returns true if the specified instruction has a delay slot which must be filled by the code generator. More... | |
bool | canFoldAsLoad (QueryType Type=IgnoreBundle) const |
Return true for instructions that can be folded as memory operands in other instructions. More... | |
bool | isRegSequenceLike (QueryType Type=IgnoreBundle) const |
Return true if this instruction behaves the same way as the generic REG_SEQUENCE instructions. More... | |
bool | isExtractSubregLike (QueryType Type=IgnoreBundle) const |
Return true if this instruction behaves the same way as the generic EXTRACT_SUBREG instructions. More... | |
bool | isInsertSubregLike (QueryType Type=IgnoreBundle) const |
Return true if this instruction behaves the same way as the generic INSERT_SUBREG instructions. More... | |
bool | mayLoad (QueryType Type=AnyInBundle) const |
Return true if this instruction could possibly read memory. More... | |
bool | mayStore (QueryType Type=AnyInBundle) const |
Return true if this instruction could possibly modify memory. More... | |
bool | mayLoadOrStore (QueryType Type=AnyInBundle) const |
Return true if this instruction could possibly read or modify memory. More... | |
bool | isCommutable (QueryType Type=IgnoreBundle) const |
Return true if this may be a 2- or 3-address instruction (of the form "X = op Y, Z, ..."), which produces the same result if Y and Z are exchanged. More... | |
bool | isConvertibleTo3Addr (QueryType Type=IgnoreBundle) const |
Return true if this is a 2-address instruction which can be changed into a 3-address instruction if needed. More... | |
bool | usesCustomInsertionHook (QueryType Type=IgnoreBundle) const |
Return true if this instruction requires custom insertion support when the DAG scheduler is inserting it into a machine basic block. More... | |
bool | hasPostISelHook (QueryType Type=IgnoreBundle) const |
Return true if this instruction requires adjustment after instruction selection by calling a target hook. More... | |
bool | isRematerializable (QueryType Type=AllInBundle) const |
Returns true if this instruction is a candidate for remat. More... | |
bool | isAsCheapAsAMove (QueryType Type=AllInBundle) const |
Returns true if this instruction has the same cost (or less) than a move instruction. More... | |
bool | hasExtraSrcRegAllocReq (QueryType Type=AnyInBundle) const |
Returns true if this instruction source operands have special register allocation requirements that are not captured by the operand register classes. More... | |
bool | hasExtraDefRegAllocReq (QueryType Type=AnyInBundle) const |
Returns true if this instruction def operands have special register allocation requirements that are not captured by the operand register classes. More... | |
bool | isIdenticalTo (const MachineInstr &Other, MICheckType Check=CheckDefs) const |
Return true if this instruction is identical to Other . More... | |
MachineInstr * | removeFromParent () |
Unlink 'this' from the containing basic block, and return it without deleting it. More... | |
MachineInstr * | removeFromBundle () |
Unlink this instruction from its basic block and return it without deleting it. More... | |
void | eraseFromParent () |
Unlink 'this' from the containing basic block and delete it. More... | |
void | eraseFromParentAndMarkDBGValuesForRemoval () |
Unlink 'this' from the containing basic block and delete it. More... | |
void | eraseFromBundle () |
Unlink 'this' form its basic block and delete it. More... | |
bool | isEHLabel () const |
bool | isGCLabel () const |
bool | isAnnotationLabel () const |
bool | isLabel () const |
Returns true if the MachineInstr represents a label. More... | |
bool | isCFIInstruction () const |
bool | isPosition () const |
bool | isDebugValue () const |
bool | isDebugLabel () const |
bool | isDebugInstr () const |
bool | isIndirectDebugValue () const |
A DBG_VALUE is indirect iff the first operand is a register and the second operand is an immediate. More... | |
bool | isPHI () const |
bool | isKill () const |
bool | isImplicitDef () const |
bool | isInlineAsm () const |
bool | isMSInlineAsm () const |
bool | isStackAligningInlineAsm () const |
InlineAsm::AsmDialect | getInlineAsmDialect () const |
bool | isInsertSubreg () const |
bool | isSubregToReg () const |
bool | isRegSequence () const |
bool | isBundle () const |
bool | isCopy () const |
bool | isFullCopy () const |
bool | isExtractSubreg () const |
bool | isCopyLike () const |
Return true if the instruction behaves like a copy. More... | |
bool | isIdentityCopy () const |
Return true is the instruction is an identity copy. More... | |
bool | isMetaInstruction () const |
Return true if this instruction doesn't produce any output in the form of executable instructions. More... | |
bool | isTransient () const |
Return true if this is a transient instruction that is either very likely to be eliminated during register allocation (such as copy-like instructions), or if this instruction doesn't have an execution-time cost. More... | |
unsigned | getBundleSize () const |
Return the number of instructions inside the MI bundle, excluding the bundle header. More... | |
bool | readsRegister (unsigned Reg, const TargetRegisterInfo *TRI=nullptr) const |
Return true if the MachineInstr reads the specified register. More... | |
bool | readsVirtualRegister (unsigned Reg) const |
Return true if the MachineInstr reads the specified virtual register. More... | |
std::pair< bool, bool > | readsWritesVirtualRegister (unsigned Reg, SmallVectorImpl< unsigned > *Ops=nullptr) const |
Return a pair of bools (reads, writes) indicating if this instruction reads or writes Reg. More... | |
bool | killsRegister (unsigned Reg, const TargetRegisterInfo *TRI=nullptr) const |
Return true if the MachineInstr kills the specified register. More... | |
bool | definesRegister (unsigned Reg, const TargetRegisterInfo *TRI=nullptr) const |
Return true if the MachineInstr fully defines the specified register. More... | |
bool | modifiesRegister (unsigned Reg, const TargetRegisterInfo *TRI) const |
Return true if the MachineInstr modifies (fully define or partially define) the specified register. More... | |
bool | registerDefIsDead (unsigned Reg, const TargetRegisterInfo *TRI=nullptr) const |
Returns true if the register is dead in this machine instruction. More... | |
bool | hasRegisterImplicitUseOperand (unsigned Reg) const |
Returns true if the MachineInstr has an implicit-use operand of exactly the given register (not considering sub/super-registers). More... | |
int | findRegisterUseOperandIdx (unsigned Reg, bool isKill=false, const TargetRegisterInfo *TRI=nullptr) const |
Returns the operand index that is a use of the specific register or -1 if it is not found. More... | |
MachineOperand * | findRegisterUseOperand (unsigned Reg, bool isKill=false, const TargetRegisterInfo *TRI=nullptr) |
Wrapper for findRegisterUseOperandIdx, it returns a pointer to the MachineOperand rather than an index. More... | |
const MachineOperand * | findRegisterUseOperand (unsigned Reg, bool isKill=false, const TargetRegisterInfo *TRI=nullptr) const |
int | findRegisterDefOperandIdx (unsigned Reg, bool isDead=false, bool Overlap=false, const TargetRegisterInfo *TRI=nullptr) const |
Returns the operand index that is a def of the specified register or -1 if it is not found. More... | |
MachineOperand * | findRegisterDefOperand (unsigned Reg, bool isDead=false, const TargetRegisterInfo *TRI=nullptr) |
Wrapper for findRegisterDefOperandIdx, it returns a pointer to the MachineOperand rather than an index. More... | |
int | findFirstPredOperandIdx () const |
Find the index of the first operand in the operand list that is used to represent the predicate. More... | |
int | findInlineAsmFlagIdx (unsigned OpIdx, unsigned *GroupNo=nullptr) const |
Find the index of the flag word operand that corresponds to operand OpIdx on an inline asm instruction. More... | |
const TargetRegisterClass * | getRegClassConstraint (unsigned OpIdx, const TargetInstrInfo *TII, const TargetRegisterInfo *TRI) const |
Compute the static register class constraint for operand OpIdx. More... | |
const TargetRegisterClass * | getRegClassConstraintEffectForVReg (unsigned Reg, const TargetRegisterClass *CurRC, const TargetInstrInfo *TII, const TargetRegisterInfo *TRI, bool ExploreBundle=false) const |
Applies the constraints (def/use) implied by this MI on Reg to the given CurRC . More... | |
const TargetRegisterClass * | getRegClassConstraintEffect (unsigned OpIdx, const TargetRegisterClass *CurRC, const TargetInstrInfo *TII, const TargetRegisterInfo *TRI) const |
Applies the constraints (def/use) implied by the OpIdx operand to the given CurRC . More... | |
void | tieOperands (unsigned DefIdx, unsigned UseIdx) |
Add a tie between the register operands at DefIdx and UseIdx. More... | |
unsigned | findTiedOperandIdx (unsigned OpIdx) const |
Given the index of a tied register operand, find the operand it is tied to. More... | |
bool | isRegTiedToUseOperand (unsigned DefOpIdx, unsigned *UseOpIdx=nullptr) const |
Given the index of a register def operand, check if the register def is tied to a source operand, due to either two-address elimination or inline assembly constraints. More... | |
bool | isRegTiedToDefOperand (unsigned UseOpIdx, unsigned *DefOpIdx=nullptr) const |
Return true if the use operand of the specified index is tied to a def operand. More... | |
void | clearKillInfo () |
Clears kill flags on all operands. More... | |
void | substituteRegister (unsigned FromReg, unsigned ToReg, unsigned SubIdx, const TargetRegisterInfo &RegInfo) |
Replace all occurrences of FromReg with ToReg:SubIdx, properly composing subreg indices where necessary. More... | |
bool | addRegisterKilled (unsigned IncomingReg, const TargetRegisterInfo *RegInfo, bool AddIfNotFound=false) |
We have determined MI kills a register. More... | |
void | clearRegisterKills (unsigned Reg, const TargetRegisterInfo *RegInfo) |
Clear all kill flags affecting Reg. More... | |
bool | addRegisterDead (unsigned Reg, const TargetRegisterInfo *RegInfo, bool AddIfNotFound=false) |
We have determined MI defined a register without a use. More... | |
void | clearRegisterDeads (unsigned Reg) |
Clear all dead flags on operands defining register Reg . More... | |
void | setRegisterDefReadUndef (unsigned Reg, bool IsUndef=true) |
Mark all subregister defs of register Reg with the undef flag. More... | |
void | addRegisterDefined (unsigned Reg, const TargetRegisterInfo *RegInfo=nullptr) |
We have determined MI defines a register. More... | |
void | setPhysRegsDeadExcept (ArrayRef< unsigned > UsedRegs, const TargetRegisterInfo &TRI) |
Mark every physreg used by this instruction as dead except those in the UsedRegs list. More... | |
bool | isSafeToMove (AliasAnalysis *AA, bool &SawStore) const |
Return true if it is safe to move this instruction. More... | |
bool | mayAlias (AliasAnalysis *AA, MachineInstr &Other, bool UseTBAA) |
Returns true if this instruction's memory access aliases the memory access of Other. More... | |
bool | hasOrderedMemoryRef () const |
Return true if this instruction may have an ordered or volatile memory reference, or if the information describing the memory reference is not available. More... | |
bool | isDereferenceableInvariantLoad (AliasAnalysis *AA) const |
Return true if this load instruction never traps and points to a memory location whose value doesn't change during the execution of this function. More... | |
unsigned | isConstantValuePHI () const |
If the specified instruction is a PHI that always merges together the same virtual register, return the register, otherwise return 0. More... | |
bool | hasUnmodeledSideEffects () const |
Return true if this instruction has side effects that are not modeled by mayLoad / mayStore, etc. More... | |
bool | isLoadFoldBarrier () const |
Returns true if it is illegal to fold a load across this instruction. More... | |
bool | allDefsAreDead () const |
Return true if all the defs of this instruction are dead. More... | |
void | copyImplicitOps (MachineFunction &MF, const MachineInstr &MI) |
Copy implicit register operands from specified instruction to this instruction. More... | |
void | addOperand (MachineFunction &MF, const MachineOperand &Op) |
Add the specified operand to the instruction. More... | |
void | addOperand (const MachineOperand &Op) |
Add an operand without providing an MF reference. More... | |
void | setDesc (const MCInstrDesc &tid) |
Replace the instruction descriptor (thus opcode) of the current instruction with a new one. More... | |
void | setDebugLoc (DebugLoc dl) |
Replace current source information with new such. More... | |
void | RemoveOperand (unsigned OpNo) |
Erase an operand from an instruction, leaving it with one fewer operand than it started with. More... | |
void | dropMemRefs (MachineFunction &MF) |
Clear this MachineInstr's memory reference descriptor list. More... | |
void | setMemRefs (MachineFunction &MF, ArrayRef< MachineMemOperand *> MemRefs) |
Assign this MachineInstr's memory reference descriptor list. More... | |
void | addMemOperand (MachineFunction &MF, MachineMemOperand *MO) |
Add a MachineMemOperand to the machine instruction. More... | |
void | cloneMemRefs (MachineFunction &MF, const MachineInstr &MI) |
Clone another MachineInstr's memory reference descriptor list and replace ours with it. More... | |
void | cloneMergedMemRefs (MachineFunction &MF, ArrayRef< const MachineInstr *> MIs) |
Clone the merge of multiple MachineInstrs' memory reference descriptors list and replace ours with it. More... | |
void | setPreInstrSymbol (MachineFunction &MF, MCSymbol *Symbol) |
Set a symbol that will be emitted just prior to the instruction itself. More... | |
void | setPostInstrSymbol (MachineFunction &MF, MCSymbol *Symbol) |
Set a symbol that will be emitted just after the instruction itself. More... | |
uint16_t | mergeFlagsWith (const MachineInstr &Other) const |
Return the MIFlags which represent both MachineInstrs. More... | |
void | copyIRFlags (const Instruction &I) |
Copy all flags to MachineInst MIFlags. More... | |
void | untieRegOperand (unsigned OpIdx) |
Break any tie involving OpIdx. More... | |
void | addImplicitDefUseOperands (MachineFunction &MF) |
Add all implicit def and use operands to this instruction. More... | |
void | collectDebugValues (SmallVectorImpl< MachineInstr *> &DbgValues) |
Scan instructions following MI and collect any matching DBG_VALUEs. More... | |
void | changeDebugValuesDefReg (unsigned Reg) |
Find all DBG_VALUEs immediately following this instruction that point to a register def in this instruction and point them to Reg instead. More... | |
LLT | getTypeToPrint (unsigned OpIdx, SmallBitVector &PrintedTypes, const MachineRegisterInfo &MRI) const |
Debugging supportDetermine the generic type to be printed (if needed) on uses and defs. More... | |
bool | hasComplexRegisterTies () const |
Return true when an instruction has tied register that can't be determined by the instruction's descriptor. More... | |
void | print (raw_ostream &OS, bool IsStandalone=true, bool SkipOpers=false, bool SkipDebugLoc=false, bool AddNewLine=true, const TargetInstrInfo *TII=nullptr) const |
Print this MI to OS . More... | |
void | print (raw_ostream &OS, ModuleSlotTracker &MST, bool IsStandalone=true, bool SkipOpers=false, bool SkipDebugLoc=false, bool AddNewLine=true, const TargetInstrInfo *TII=nullptr) const |
void | dump () const |
Public Member Functions inherited from llvm::ilist_node_with_parent< MachineInstr, MachineBasicBlock, ilist_sentinel_tracking< true > > | |
MachineInstr * | getPrevNode () |
const MachineInstr * | getPrevNode () const |
Get the previous node, or nullptr for the list head. More... | |
MachineInstr * | getNextNode () |
Get the next node, or nullptr for the list tail. More... | |
const MachineInstr * | getNextNode () const |
Get the next node, or nullptr for the list tail. More... | |
Public Member Functions inherited from llvm::ilist_node_impl< ilist_detail::compute_node_options< MachineInstr, Options... >::type > | |
self_iterator | getIterator () |
const_self_iterator | getIterator () const |
reverse_self_iterator | getReverseIterator () |
const_reverse_self_iterator | getReverseIterator () const |
bool | isSentinel () const |
Check whether this is the sentinel node. More... | |
Friends | |
struct | ilist_traits< MachineInstr > |
struct | ilist_callback_traits< MachineBasicBlock > |
class | MachineFunction |
Representation of each machine instruction.
This class isn't a POD type, but it must have a trivial destructor. When a MachineFunction is deleted, all the contained MachineInstrs are deallocated without having their destructor called.
Definition at line 64 of file MachineInstr.h.
Definition at line 451 of file MachineInstr.h.
using llvm::MachineInstr::mmo_iterator = ArrayRef<MachineMemOperand *>::iterator |
Definition at line 68 of file MachineInstr.h.
iterator/begin/end - Iterate over all operands of a machine instruction.
Definition at line 450 of file MachineInstr.h.
Flags to specify different kinds of comments to output in assembly code.
These flags carry semantic information not otherwise easily derivable from the IR text.
Enumerator | |
---|---|
ReloadReuse | |
NoSchedComment | |
TAsmComments |
Definition at line 74 of file MachineInstr.h.
Enumerator | |
---|---|
CheckDefs | |
CheckKillDead | |
IgnoreDefs | |
IgnoreVRegDefs |
Definition at line 931 of file MachineInstr.h.
Enumerator | |
---|---|
NoFlags | |
FrameSetup | |
FrameDestroy | |
BundledPred | |
BundledSucc | |
FmNoNans | |
FmNoInfs | |
FmNsz | |
FmArcp | |
FmContract | |
FmAfn | |
FmReassoc | |
NoUWrap | |
NoSWrap | |
IsExact |
Definition at line 80 of file MachineInstr.h.
API for querying MachineInstr properties.
They are the same as MCInstrDesc queries but they are bundle aware.
Enumerator | |
---|---|
IgnoreBundle | |
AnyInBundle | |
AllInBundle |
Definition at line 581 of file MachineInstr.h.
|
delete |
|
delete |
void MachineInstr::addImplicitDefUseOperands | ( | MachineFunction & | MF | ) |
Add all implicit def and use operands to this instruction.
Definition at line 102 of file MachineInstr.cpp.
References addOperand(), llvm::MachineRegisterInfo::addRegOperandToUseList(), llvm::MachineFunction::allocateOperandArray(), assert(), llvm::MachineOperand::CreateReg(), getDebugLoc(), getDesc(), llvm::MCInstrDesc::getImplicitDefs(), llvm::MCInstrDesc::getImplicitUses(), llvm::MCInstrDesc::getNumImplicitDefs(), llvm::MCInstrDesc::getNumImplicitUses(), llvm::MCInstrDesc::getNumOperands(), getNumOperands(), getParent(), llvm::DebugLoc::hasTrivialDestructor(), llvm::MCInstrDesc::ImplicitDefs, llvm::MCInstrDesc::ImplicitUses, MI, MRI, operands(), llvm::MachineRegisterInfo::removeRegOperandFromUseList(), and setFlags().
Referenced by buildEXP(), llvm::SIInstrInfo::FoldImmediate(), hoistAndMergeSGPRInits(), llvm::SIInstrInfo::moveToVALU(), and untieRegOperand().
void MachineInstr::addMemOperand | ( | MachineFunction & | MF, |
MachineMemOperand * | MO | ||
) |
Add a MachineMemOperand to the machine instruction.
This function should be used only occasionally. The setMemRefs function is the primary method for setting up a MachineInstr's MemRefs list.
Definition at line 360 of file MachineInstr.cpp.
References llvm::SmallVectorImpl< T >::append(), memoperands_begin(), memoperands_end(), llvm::SmallVectorTemplateBase< T >::push_back(), and setMemRefs().
Referenced by llvm::MachineInstrBuilder::addMemOperand(), computeBytesPoppedByCalleeForSRet(), llvm::TargetLoweringBase::emitPatchPoint(), llvm::TargetInstrInfo::foldMemoryOperand(), and setDebugLoc().
void MachineInstr::addOperand | ( | MachineFunction & | MF, |
const MachineOperand & | Op | ||
) |
Add the specified operand to the instruction.
addOperand - Add the specified operand to the instruction.
If it is an implicit operand, it is added to the end of the operand list. If it is an explicit operand it is added at the end of the explicit operand list (before the first implicit operand).
MF must be the machine function that was used to allocate this instruction.
MachineInstrBuilder provides a more convenient interface for creating instructions and adding operands.
If it is an implicit operand, it is added to the end of the operand list. If it is an explicit operand it is added at the end of the explicit operand list (before the first implicit operand).
Definition at line 199 of file MachineInstr.cpp.
References llvm::MachineRegisterInfo::addRegOperandToUseList(), llvm::MachineFunction::allocateOperandArray(), assert(), llvm::MachineFunction::deallocateOperandArray(), llvm::MCOI::EARLY_CLOBBER, llvm::MCInstrDesc::getNumOperands(), getNumOperands(), llvm::MCInstrDesc::getOperandConstraint(), llvm::MachineOperand::getType(), llvm::MachineOperand::isImplicit(), isInlineAsm(), isReg(), llvm::MachineOperand::isReg(), llvm::MachineOperand::isRegMask(), llvm::MachineOperand::isUse(), llvm::MCInstrDesc::isVariadic(), llvm::MachineOperand::MO_MCSymbol, llvm::MachineOperand::MO_Metadata, moveOperands(), llvm::MachineOperand::Reg, llvm::MachineOperand::setIsEarlyClobber(), llvm::MCOI::TIED_TO, and tieOperands().
Referenced by llvm::MachineInstrBuilder::add(), llvm::MachineInstrBuilder::addBlockAddress(), llvm::MachineInstrBuilder::addCFIIndex(), llvm::MachineInstrBuilder::addCImm(), llvm::MachineInstrBuilder::addConstantPoolIndex(), llvm::MachineInstrBuilder::addExternalSymbol(), llvm::MachineInstrBuilder::addFPImm(), llvm::MachineInstrBuilder::addFrameIndex(), llvm::MachineInstrBuilder::addGlobalAddress(), llvm::MachineInstrBuilder::addImm(), addImplicitDefUseOperands(), llvm::MachineInstrBuilder::addIntrinsicID(), llvm::MachineInstrBuilder::addJumpTableIndex(), llvm::MachineInstrBuilder::addMBB(), llvm::MachineInstrBuilder::addMetadata(), addOperand(), llvm::MachineInstrBuilder::addPredicate(), llvm::MachineInstrBuilder::addReg(), addRegisterDead(), addRegisterDefined(), addRegisterKilled(), llvm::MachineInstrBuilder::addRegMask(), llvm::MachineInstrBuilder::addSym(), llvm::MachineInstrBuilder::addTargetIndex(), AppendEndToFunction(), llvm::SIInstrInfo::buildExtractSubRegOrImm(), changeFCMPPredToAArch64CC(), ConvertImplicitDefToConstZero(), copyExtraImplicitOps(), copyImplicitOps(), createPHIsForSelects(), llvm::createSIFixWWMLivenessPass(), llvm::XCoreFrameLowering::emitEpilogue(), llvm::PPCTargetLowering::EmitInstrWithCustomInserter(), llvm::HexagonFrameLowering::emitPrologue(), enableAllocFrameElim(), fixupGlobalSaddr(), llvm::HexagonFrameLowering::getAlignaInstr(), getLeaOP(), llvm::LiveVariables::HandleVirtRegDef(), ImposeStackOrdering(), INITIALIZE_PASS(), isCopy(), isImmValidForOpcode(), isRegTiedToDefOperand(), llvm::SIInstrInfo::moveToVALU(), llvm::PPCInstrInfo::optimizeCompareInstr(), llvm::HexagonInstrInfo::PredicateInstruction(), llvm::rewriteT2FrameIndex(), and swapMIOperands().
void MachineInstr::addOperand | ( | const MachineOperand & | Op | ) |
Add an operand without providing an MF reference.
This only works for instructions that are inserted in a basic block.
MachineInstrBuilder and the two-argument addOperand(MF, MO) should be preferred.
Definition at line 176 of file MachineInstr.cpp.
References addOperand(), assert(), llvm::MachineBasicBlock::getParent(), and getParent().
bool MachineInstr::addRegisterDead | ( | unsigned | Reg, |
const TargetRegisterInfo * | RegInfo, | ||
bool | AddIfNotFound = false |
||
) |
We have determined MI defined a register without a use.
Look for the operand that defines it and mark it as IsDead. If AddIfNotFound is true, add a implicit operand if it's not found. Returns true if the operand exists / is added.
Definition at line 1837 of file MachineInstr.cpp.
References addOperand(), llvm::SmallVectorTemplateCommon< T, typename >::back(), llvm::MachineOperand::CreateReg(), llvm::SmallVectorBase::empty(), findInlineAsmFlagIdx(), getNumOperands(), getOperand(), llvm::MachineOperand::getReg(), llvm::MachineOperand::isDead(), llvm::MachineOperand::isDef(), isInlineAsm(), llvm::TargetRegisterInfo::isPhysicalRegister(), llvm::MachineOperand::isReg(), llvm::MCRegisterInfo::isSubRegister(), llvm::MCRegisterInfo::isSuperRegister(), llvm::MCRegAliasIterator::isValid(), llvm::SmallVectorTemplateBase< T, bool >::pop_back(), llvm::SmallVectorTemplateBase< T, bool >::push_back(), RemoveOperand(), and llvm::MachineOperand::setIsDead().
Referenced by llvm::LiveVariables::addVirtualRegisterDead(), llvm::Thumb1InstrInfo::copyPhysReg(), llvm::LiveRangeEdit::eraseVirtReg(), llvm::LiveVariables::HandleVirtRegDef(), isEFLAGSLive(), isFullCopyOf(), isRegTiedToDefOperand(), and llvm::LiveIntervals::shrinkToUses().
void MachineInstr::addRegisterDefined | ( | unsigned | Reg, |
const TargetRegisterInfo * | RegInfo = nullptr |
||
) |
We have determined MI defines a register.
Make sure there is an operand defining Reg.
Definition at line 1906 of file MachineInstr.cpp.
References addOperand(), llvm::MachineOperand::CreateReg(), findRegisterDefOperand(), llvm::TargetRegisterInfo::isPhysicalRegister(), and operands().
Referenced by canInstrSubstituteCmpInstr(), llvm::SparcInstrInfo::copyPhysReg(), llvm::ARMBaseInstrInfo::copyPhysReg(), INITIALIZE_PASS(), isRegTiedToDefOperand(), llvm::LanaiInstrInfo::optimizeCompareInstr(), and setPhysRegsDeadExcept().
bool MachineInstr::addRegisterKilled | ( | unsigned | IncomingReg, |
const TargetRegisterInfo * | RegInfo, | ||
bool | AddIfNotFound = false |
||
) |
We have determined MI kills a register.
Look for the operand that uses it and mark it as IsKill. If AddIfNotFound is true, add a implicit operand if it's not found. Returns true if the operand exists / is added.
Definition at line 1757 of file MachineInstr.cpp.
References addOperand(), llvm::SmallVectorTemplateCommon< T, typename >::back(), llvm::MachineOperand::CreateReg(), llvm::SmallVectorBase::empty(), findInlineAsmFlagIdx(), getNumOperands(), getOperand(), llvm::MachineOperand::getReg(), llvm::MachineOperand::isDebug(), isInlineAsm(), llvm::MachineOperand::isKill(), llvm::TargetRegisterInfo::isPhysicalRegister(), llvm::MachineOperand::isReg(), isRegTiedToDefOperand(), llvm::MCRegisterInfo::isSubRegister(), llvm::MCRegisterInfo::isSuperRegister(), llvm::MachineOperand::isUndef(), llvm::MachineOperand::isUse(), llvm::MCRegAliasIterator::isValid(), llvm::SmallVectorTemplateBase< T, bool >::pop_back(), llvm::SmallVectorTemplateBase< T, bool >::push_back(), RemoveOperand(), and llvm::MachineOperand::setIsKill().
Referenced by addExclusiveRegPair(), llvm::LiveIntervals::addKillFlags(), llvm::LiveVariables::addVirtualRegisterKilled(), llvm::ARMBaseInstrInfo::breakPartialRegDependency(), llvm::X86InstrInfo::breakPartialRegDependency(), llvm::SparcInstrInfo::copyPhysReg(), llvm::ARMBaseInstrInfo::copyPhysReg(), emitAlignedDPRCS2Restores(), emitAlignedDPRCS2Spills(), llvm::XCoreFrameLowering::emitPrologue(), llvm::ARMBaseInstrInfo::expandPostRAPseudo(), llvm::LiveVariables::HandleVirtRegDef(), INITIALIZE_PASS(), isRegTiedToDefOperand(), and ReplaceDominatedUses().
bool MachineInstr::allDefsAreDead | ( | ) | const |
Return true if all the defs of this instruction are dead.
allDefsAreDead - Return true if all the defs of this instruction are dead.
Definition at line 1368 of file MachineInstr.cpp.
References operands().
Referenced by llvm::LiveRangeEdit::eraseVirtReg(), INITIALIZE_PASS(), isFullCopyOf(), isRegTiedToDefOperand(), and llvm::LiveIntervals::shrinkToUses().
void MachineInstr::bundleWithPred | ( | ) |
Bundle this instruction with its predecessor.
This can be an unbundled instruction, or it can be the first instruction in a bundle.
Definition at line 721 of file MachineInstr.cpp.
References assert(), BundledPred, BundledSucc, llvm::ilist_node_impl< ilist_detail::compute_node_options< MachineInstr, Options... >::type >::getIterator(), isBundledWithPred(), and setFlag().
Referenced by llvm::MachineFunction::CloneMachineInstrBundle(), llvm::createR600ExpandSpecialInstrsPass(), llvm::SplitEditor::dump(), getMopState(), llvm::MIBundleBuilder::insert(), isBundledWithSucc(), and llvm::MIBundleBuilder::MIBundleBuilder().
void MachineInstr::bundleWithSucc | ( | ) |
Bundle this instruction with its successor.
This can be an unbundled instruction, or it can be the last instruction in a bundle.
Definition at line 730 of file MachineInstr.cpp.
References assert(), BundledPred, BundledSucc, llvm::ilist_node_impl< ilist_detail::compute_node_options< MachineInstr, Options... >::type >::getIterator(), isBundledWithSucc(), and setFlag().
Referenced by llvm::MIBundleBuilder::insert(), and isBundledWithSucc().
|
inline |
Return true for instructions that can be folded as memory operands in other instructions.
The most common use for this is instructions that are simple loads from memory that don't modify the loaded value in any way, but it can also be used for instructions that can be expressed as constant-pool loads, such as V_SETALLONES on x86, to allow them to be folded when it is beneficial. This should only be set on instructions that return a value in their only virtual register definition.
Definition at line 753 of file MachineInstr.h.
References llvm::MCID::FoldableAsLoad, and hasProperty().
Referenced by llvm::LiveRangeEdit::eraseVirtReg(), llvm::TargetInstrInfo::foldMemoryOperand(), getNewSource(), isCopyFeedingInvariantStore(), and isFullCopyOf().
void MachineInstr::changeDebugValuesDefReg | ( | unsigned | Reg | ) |
Find all DBG_VALUEs immediately following this instruction that point to a register def in this instruction and point them to Reg
instead.
Definition at line 2095 of file MachineInstr.cpp.
References collectDebugValues().
Referenced by untieRegOperand().
|
inline |
Clear specific AsmPrinter flags.
Definition at line 285 of file MachineInstr.h.
|
inline |
Clear the AsmPrinter bitvector.
Definition at line 272 of file MachineInstr.h.
|
inline |
clearFlag - Clear a MI flag.
Definition at line 311 of file MachineInstr.h.
Referenced by moveInstrOut(), llvm::MachineBasicBlock::remove_instr(), unbundleFromPred(), and unbundleFromSucc().
void MachineInstr::clearKillInfo | ( | ) |
Clears kill flags on all operands.
clearKillInfo - Clears kill flags on all operands.
Definition at line 1118 of file MachineInstr.cpp.
References operands().
Referenced by isRegTiedToDefOperand(), llvm::LanaiInstrInfo::optimizeSelect(), llvm::ARMBaseInstrInfo::optimizeSelect(), and llvm::rdf::Liveness::resetKills().
void MachineInstr::clearRegisterDeads | ( | unsigned | Reg | ) |
Clear all dead flags on operands defining register Reg
.
Definition at line 1890 of file MachineInstr.cpp.
References operands(), and Reg.
Referenced by isCallerPreservedOrConstPhysReg(), isRegTiedToDefOperand(), llvm::ARMBaseInstrInfo::optimizeCompareInstr(), and llvm::PPCInstrInfo::optimizeCompareInstr().
void MachineInstr::clearRegisterKills | ( | unsigned | Reg, |
const TargetRegisterInfo * | RegInfo | ||
) |
Clear all kill flags affecting Reg.
If RegInfo is provided, this includes all aliasing registers.
Definition at line 1824 of file MachineInstr.cpp.
References llvm::TargetRegisterInfo::isPhysicalRegister(), operands(), and llvm::TargetRegisterInfo::regsOverlap().
Referenced by llvm::LiveIntervals::addKillFlags(), isNopCopy(), and isRegTiedToDefOperand().
void MachineInstr::cloneMemRefs | ( | MachineFunction & | MF, |
const MachineInstr & | MI | ||
) |
Clone another MachineInstr's memory reference descriptor list and replace ours with it.
Note that *this
may be the incoming MI!
Prefer this API whenever possible as it can avoid allocations in common cases.
Definition at line 368 of file MachineInstr.cpp.
References assert(), getMF(), getPostInstrSymbol(), getPreInstrSymbol(), memoperands(), and setMemRefs().
Referenced by llvm::MachineInstrBuilder::cloneMemRefs(), cloneMergedMemRefs(), fixupGlobalSaddr(), and setDebugLoc().
void MachineInstr::cloneMergedMemRefs | ( | MachineFunction & | MF, |
ArrayRef< const MachineInstr *> | MIs | ||
) |
Clone the merge of multiple MachineInstrs' memory reference descriptors list and replace ours with it.
Note that *this
may be one of the incoming MIs!
Prefer this API whenever possible as it can avoid allocations in common cases.
Definition at line 401 of file MachineInstr.cpp.
References llvm::SmallVectorImpl< T >::append(), assert(), cloneMemRefs(), dropMemRefs(), llvm::ArrayRef< T >::empty(), getMF(), hasIdenticalMMOs(), llvm::make_pointee_range(), memoperands(), memoperands_begin(), memoperands_empty(), memoperands_end(), setMemRefs(), llvm::ArrayRef< T >::size(), and llvm::ArrayRef< T >::slice().
Referenced by llvm::MachineInstrBuilder::cloneMergedMemRefs(), and setDebugLoc().
void MachineInstr::collectDebugValues | ( | SmallVectorImpl< MachineInstr *> & | DbgValues | ) |
Scan instructions following MI and collect any matching DBG_VALUEs.
Definition at line 2078 of file MachineInstr.cpp.
References llvm::MachineBasicBlock::end(), getOperand(), getParent(), llvm::MachineOperand::getReg(), llvm::MachineOperand::isReg(), MI, and llvm::SmallVectorTemplateBase< T, bool >::push_back().
Referenced by changeDebugValuesDefReg(), performSink(), untieRegOperand(), and llvm::WebAssemblyDebugValueManager::WebAssemblyDebugValueManager().
void MachineInstr::copyImplicitOps | ( | MachineFunction & | MF, |
const MachineInstr & | MI | ||
) |
Copy implicit register operands from specified instruction to this instruction.
copyImplicitOps - Copy implicit register operands from specified instruction to this instruction.
Definition at line 1380 of file MachineInstr.cpp.
References addOperand(), getDesc(), llvm::MCInstrDesc::getNumOperands(), getNumOperands(), getOperand(), llvm::MachineOperand::isImplicit(), llvm::MachineOperand::isReg(), and llvm::MachineOperand::isRegMask().
Referenced by llvm::MachineInstrBuilder::copyImplicitOps(), enableAllocFrameElim(), fixupGlobalSaddr(), llvm::HexagonFrameLowering::getFrameIndexReference(), InsertLDR_STR(), and isRegTiedToDefOperand().
void MachineInstr::copyIRFlags | ( | const Instruction & | I | ) |
Copy all flags to MachineInst MIFlags.
Definition at line 522 of file MachineInstr.cpp.
References AllInBundle, llvm::FastMathFlags::allowContract(), llvm::FastMathFlags::allowReassoc(), llvm::FastMathFlags::allowReciprocal(), AnyInBundle, llvm::FastMathFlags::approxFunc(), assert(), llvm::ilist_node_impl< ilist_detail::compute_node_options< MachineInstr, Options... >::type >::getIterator(), isBundledWithPred(), llvm::BitmaskEnumDetail::Mask(), llvm::FastMathFlags::noInfs(), llvm::FastMathFlags::noNaNs(), llvm::FastMathFlags::noSignedZeros(), llvm::X86II::OB, and setFlag().
Referenced by computeValueLLTs(), getOffsetFromIndices(), and setDebugLoc().
|
inline |
Return true if the MachineInstr fully defines the specified register.
If TargetRegisterInfo is passed, then it also checks if there is a def of a super-register. NOTE: It's ignoring subreg indices on virtual registers.
Definition at line 1143 of file MachineInstr.h.
References findRegisterDefOperandIdx(), and TRI.
Referenced by addLiveInRegs(), llvm::ARMBaseInstrInfo::breakPartialRegDependency(), checkAndUpdateCPSRKill(), checkAndUpdateEFLAGSKill(), checkCCKill(), convertToNonFlagSettingOpc(), llvm::ARMBaseInstrInfo::expandPostRAPseudo(), getImplicitSPRUseForDPRUse(), llvm::ARMBaseInstrInfo::getPartialRegUpdateClearance(), ImposeStackOrdering(), INITIALIZE_PASS(), isCompareZero(), IsSafeToMove(), llvm::ARMBaseInstrInfo::isSchedulingBoundary(), llvm::PPCRegisterInfo::lowerCRBitRestore(), llvm::PPCRegisterInfo::lowerCRRestore(), llvm::PPCRegisterInfo::lowerVRSAVERestore(), llvm::AArch64InstrInfo::optimizeCompareInstr(), llvm::PPCInstrInfo::optimizeCompareInstr(), and llvm::rewriteT2FrameIndex().
|
inline |
Returns a range over all explicit operands that are register definitions.
Implicit definition are not included!
Definition at line 481 of file MachineInstr.h.
References getNumExplicitDefs(), llvm::make_range(), and operands_begin().
Referenced by addRegsToSet(), llvm::biasPhysReg(), llvm::createSIWholeQuadModePass(), llvm::SplitEditor::dump(), findSingleRegDef(), INITIALIZE_PASS(), instModifiesReg(), isCrossCopy(), llvm::WebAssemblyMCInstLower::Lower(), llvm::GCNUpwardRPTracker::recede(), and false::Chain::str().
|
inline |
Returns a range over all explicit operands that are register definitions.
Implicit definition are not included!
Definition at line 486 of file MachineInstr.h.
References getNumExplicitDefs(), llvm::make_range(), and operands_begin().
void MachineInstr::dropMemRefs | ( | MachineFunction & | MF | ) |
Clear this MachineInstr's memory reference descriptor list.
This resets the memrefs to their most conservative state. This should be used only as a last resort since it greatly pessimizes our knowledge of the memory access performed by the instruction.
Definition at line 319 of file MachineInstr.cpp.
References llvm::MachineFunction::createMIExtraInfo(), getPostInstrSymbol(), getPreInstrSymbol(), and memoperands_empty().
Referenced by cloneMergedMemRefs(), INITIALIZE_PASS(), setDebugLoc(), and setMemRefs().
LLVM_DUMP_METHOD void MachineInstr::dump | ( | ) | const |
Definition at line 1430 of file MachineInstr.cpp.
References llvm::dbgs(), and print().
Referenced by canMoveInstsAcrossMemOp(), llvm::HexagonPacketizerList::canPromoteToDotCur(), llvm::HexagonPacketizerList::cleanUpDotCur(), computeBranchTargetAndInversion(), llvm::PPCInstrInfo::convertToImmediateForm(), llvm::createX86OptimizeLEAs(), doCandidateWalk(), llvm::ScheduleDAGInstrs::dumpNode(), llvm::AArch64TargetLowering::EmitInstrWithCustomInserter(), findPotentialBlockers(), fixupRegionExits(), getNewValueJumpOpcode(), getReassignedChan(), getRegClassForUnfoldedLoad(), INITIALIZE_PASS(), llvm::SMSchedule::insert(), llvm::HexagonInstrInfo::invertAndChangeJumpTarget(), isDataInvariant(), isDataInvariantLoad(), isDbgValueDescribedByReg(), isEFLAGSLive(), isIntersect(), llvm::HexagonInstrInfo::isLateInstrFeedsEarlyInstr(), isLEASimpleIncOrDec(), isNopCopy(), isPHIRegionIndex(), isRegTiedToDefOperand(), MoveAndTeeForMultiUse(), MoveForSingleUse(), llvm::AggressiveAntiDepBreaker::Observe(), packCmovGroup(), populateCandidates(), llvm::HexagonInstrInfo::PredicateInstruction(), RematerializeCheapDef(), removeRedundantBlockingStores(), llvm::HexagonInstrInfo::reversePredSense(), swapMIOperands(), and updateOperandRegConstraints().
void MachineInstr::emitError | ( | StringRef | Msg | ) | const |
Emit an error referring to the source location of this instruction.
This should only be used for inline assembly that is somehow impossible to compile. Other errors should have been handled much earlier.
If this method returns, the caller should try to recover from the error.
Definition at line 1965 of file MachineInstr.cpp.
References llvm::LLVMContext::emitError(), llvm::Module::getContext(), llvm::MachineFunction::getMMI(), llvm::MachineModuleInfo::getModule(), getNumOperands(), llvm::MDNode::getNumOperands(), getOperand(), llvm::MDNode::getOperand(), getParent(), and llvm::report_fatal_error().
Referenced by llvm::RegAllocBase::allocatePhysRegs(), getDebugLoc(), INITIALIZE_PASS(), and llvm::LowerARMMachineInstrToMCInst().
void MachineInstr::eraseFromBundle | ( | ) |
Unlink 'this' form its basic block and delete it.
If the instruction is part of a bundle, the other instructions in the bundle remain bundled.
Definition at line 683 of file MachineInstr.cpp.
References assert(), llvm::MachineBasicBlock::erase_instr(), and getParent().
Referenced by VerifyLowRegs().
void MachineInstr::eraseFromParent | ( | ) |
Unlink 'this' from the containing basic block and delete it.
If this instruction is the header of a bundle, the whole bundle is erased. This function can not be used for instructions inside a bundle, use eraseFromBundle() to erase individual bundled instructions.
Definition at line 658 of file MachineInstr.cpp.
References assert(), llvm::MachineBasicBlock::erase(), and getParent().
Referenced by addExclusiveRegPair(), llvm::analyzeArguments(), llvm::ARCInstrInfo::analyzeBranch(), llvm::SparcInstrInfo::analyzeBranch(), llvm::MipsInstrInfo::analyzeBranch(), llvm::ARMBaseInstrInfo::analyzeBranch(), llvm::AArch64InstrInfo::analyzeBranch(), AppendEndToFunction(), buildEXP(), llvm::AArch64InstrInfo::buildOutlinedFrame(), canInstrSubstituteCmpInstr(), llvm::TailDuplicator::canTailDuplicate(), canTurnIntoCOPY(), changeFCMPPredToAArch64CC(), createPHIsForCMOVsInSinkBB(), createPHIsForSelects(), llvm::createR600ExpandSpecialInstrsPass(), llvm::createSIWholeQuadModePass(), llvm::createX86OptimizeLEAs(), llvm::createXCoreFrameToArgsOffsetEliminationPass(), definesFullReg(), dumpMachineInstrRangeWithSlotIndex(), llvm::BPFRegisterInfo::eliminateFrameIndex(), llvm::LanaiRegisterInfo::eliminateFrameIndex(), emitBuildPairF64Pseudo(), emitClzero(), llvm::PPCTargetLowering::emitEHSjLjLongJmp(), llvm::PPCTargetLowering::emitEHSjLjSetJmp(), llvm::AArch64TargetLowering::EmitF128CSEL(), emitIndirectDst(), emitIndirectSrc(), llvm::R600TargetLowering::EmitInstrWithCustomInserter(), llvm::BPFTargetLowering::EmitInstrWithCustomInserter(), llvm::RISCVTargetLowering::EmitInstrWithCustomInserter(), llvm::AVRTargetLowering::EmitInstrWithCustomInserter(), llvm::XCoreTargetLowering::EmitInstrWithCustomInserter(), llvm::MSP430TargetLowering::EmitInstrWithCustomInserter(), llvm::SITargetLowering::EmitInstrWithCustomInserter(), llvm::ARMTargetLowering::EmitInstrWithCustomInserter(), llvm::MipsTargetLowering::EmitInstrWithCustomInserter(), llvm::PPCTargetLowering::EmitInstrWithCustomInserter(), llvm::X86TargetLowering::EmitInstrWithCustomInserter(), llvm::AArch64TargetLowering::EmitLoweredCatchPad(), emitMonitor(), llvm::TargetLoweringBase::emitPatchPoint(), emitPostSt(), emitRDPKRU(), llvm::MSP430TargetLowering::EmitShiftInstr(), emitSplitF64Pseudo(), emitWRPKRU(), emitXBegin(), llvm::TargetLoweringBase::emitXRayCustomEvent(), llvm::TargetLoweringBase::emitXRayTypedEvent(), llvm::rdf::DeadCodeElimination::erase(), eraseDeadBBsAndChildren(), eraseFromParentAndMarkDBGValuesForRemoval(), llvm::LiveRangeEdit::eraseVirtReg(), llvm::R600InstrInfo::expandPostRAPseudo(), llvm::SIInstrInfo::expandPostRAPseudo(), llvm::SparcTargetLowering::expandSelectCC(), llvm::LegalizerHelper::fewerElementsVector(), findSingleRegDef(), findStartOfTree(), findUncondBrI(), llvm::fixStackStores(), fixupGlobalSaddr(), llvm::foldFrameOffset(), llvm::SystemZInstrInfo::FoldImmediate(), llvm::SIInstrInfo::FoldImmediate(), llvm::ARMBaseInstrInfo::FoldImmediate(), llvm::PPCInstrInfo::FoldImmediate(), foldImmediates(), llvm::X86InstrInfo::foldMemoryOperandImpl(), foldVGPRCopyIntoRegSequence(), llvm::HexagonInstrInfo::genAllInsnTimingClasses(), getAdjustedCmp(), getCmpForPseudo(), getCompareSourceReg(), getConstant(), getDPPOp(), GetDSubRegs(), getMappedOp(), getNewSource(), getNewValueJumpOpcode(), getOModValue(), getRegClassForUnfoldedLoad(), getRegsUsedByPHIs(), getRetpolineSymbol(), getSmrdOpcode(), getStartOrEndSlot(), getSubOpcode(), getUnconditionalBrDisp(), llvm::MachineSSAUpdater::GetValueInMiddleOfBlock(), llvm::MipsTargetLowering::HandleByVal(), HandleVRSaveUpdate(), hasOneNonDBGUseInst(), hasUseAfterLoop(), hoistAndMergeSGPRInits(), INITIALIZE_PASS(), llvm::X86FrameLowering::inlineStackProbe(), insertCopy(), isCallerPreservedOrConstPhysReg(), isCompareZero(), isCopyFeedingInvariantStore(), isDefInSubRange(), isFpMulInstruction(), isFullCopyOf(), isFullUndefDef(), isInRage(), isLiveOut(), isNopCopy(), isPHIRegionIndex(), isRegUsedByPhiNodes(), isSimpleIf(), isSimpleIndexCalc(), isVirtualRegisterOperand(), llvm::AArch64LegalizerInfo::legalizeCustom(), llvm::ARMLegalizerInfo::legalizeCustom(), llvm::LegalizerHelper::libcall(), llvm::LegalizerHelper::lower(), LowerFPToInt(), makeImplicit(), matchSwap(), Mips16WhichOp8uOr16simm(), llvm::SIInstrInfo::moveToVALU(), llvm::LegalizerHelper::narrowScalar(), llvm::LanaiInstrInfo::optimizeCompareInstr(), llvm::AArch64InstrInfo::optimizeCompareInstr(), llvm::ARMBaseInstrInfo::optimizeCompareInstr(), llvm::PPCInstrInfo::optimizeCompareInstr(), llvm::X86InstrInfo::optimizeCompareInstr(), llvm::AArch64InstrInfo::optimizeCondBranch(), llvm::LanaiInstrInfo::optimizeSelect(), llvm::ARMBaseInstrInfo::optimizeSelect(), optimizeVcndVcmpPair(), parseCond(), readsVCCZ(), llvm::HexagonInstrInfo::reduceLoopCount(), registerDefinedBetween(), RematerializeCheapDef(), RemoveDeadAddBetweenLEAAndJT(), llvm::FastISel::removeDeadCode(), removeExternalCFGEdges(), RemoveVRSaveCode(), llvm::ARMTargetLowering::ReplaceNodeResults(), llvm::rewriteAArch64FrameIndex(), salvageDebugInfoFromEmptyBlock(), llvm::FastISel::selectPatchpoint(), splitMBB(), llvm::SystemZInstrInfo::SystemZInstrInfo(), llvm::TailDuplicator::tailDuplicateAndUpdate(), llvm::CombinerHelper::tryCombineCopy(), tryOptimizeLEAtoMOV(), trySequenceOfOnes(), and llvm::LegalizerHelper::widenScalar().
void MachineInstr::eraseFromParentAndMarkDBGValuesForRemoval | ( | ) |
Unlink 'this' from the containing basic block and delete it.
For all definitions mark their uses in DBG_VALUE nodes as undefined. Otherwise like eraseFromParent().
Definition at line 663 of file MachineInstr.cpp.
References assert(), eraseFromParent(), llvm::MachineBasicBlock::getParent(), getParent(), llvm::MachineFunction::getRegInfo(), llvm::TargetRegisterInfo::isVirtualRegister(), llvm::MachineRegisterInfo::markUsesInDebugValueAsUndef(), operands(), and Reg.
Referenced by llvm::Combiner::combineMachineInstrs(), INITIALIZE_PASS(), llvm::InstructionSelect::runOnMachineFunction(), and llvm::Legalizer::runOnMachineFunction().
|
inline |
Definition at line 465 of file MachineInstr.h.
References getNumExplicitOperands(), llvm::make_range(), and operands_begin().
Referenced by getConstant(), getVariantKind(), implicit_operands(), and usesExtendedRegister().
|
inline |
Definition at line 469 of file MachineInstr.h.
References getNumExplicitOperands(), llvm::make_range(), and operands_begin().
|
inline |
Definition at line 499 of file MachineInstr.h.
References getNumExplicitDefs(), getNumExplicitOperands(), llvm::make_range(), and operands_begin().
Referenced by findSingleRegDef(), findStartOfTree(), llvm::WebAssemblyMCInstLower::Lower(), and MoveAndTeeForMultiUse().
|
inline |
Definition at line 503 of file MachineInstr.h.
References getNumExplicitDefs(), getNumExplicitOperands(), llvm::make_range(), and operands_begin().
int MachineInstr::findFirstPredOperandIdx | ( | ) | const |
Find the index of the first operand in the operand list that is used to represent the predicate.
findFirstPredOperandIdx() - Find the index of the first operand in the operand list that is used to represent the predicate.
It returns -1 if none is found.
Definition at line 1006 of file MachineInstr.cpp.
References getDesc(), getNumOperands(), llvm::MCInstrDesc::isPredicable(), llvm::MCOperandInfo::isPredicate(), and llvm::MCInstrDesc::OpInfo.
Referenced by llvm::ARMBaseInstrInfo::commuteInstructionImpl(), llvm::ARMFrameLowering::determineCalleeSaves(), llvm::ThumbRegisterInfo::eliminateFrameIndex(), llvm::ARMBaseRegisterInfo::eliminateFrameIndex(), findRegisterDefOperand(), llvm::getInstrPredicate(), llvm::ARMBaseInstrInfo::getPredicate(), llvm::ARMBaseInstrInfo::isPredicated(), llvm::R600InstrInfo::isPredicated(), llvm::ARMBaseInstrInfo::PredicateInstruction(), and llvm::R600InstrInfo::PredicateInstruction().
Find the index of the flag word operand that corresponds to operand OpIdx on an inline asm instruction.
Returns -1 if getOperand(OpIdx) does not belong to an inline asm operand group.
If GroupNo is not NULL, it will receive the number of the operand group containing OpIdx.
The flag operand is an immediate that can be decoded with methods like InlineAsm::hasRegClassConstraint().
Definition at line 772 of file MachineInstr.cpp.
References assert(), llvm::MachineOperand::getImm(), llvm::InlineAsm::getNumOperandRegisters(), getNumOperands(), getOperand(), llvm::MachineOperand::isImm(), isInlineAsm(), and llvm::InlineAsm::MIOp_FirstOperand.
Referenced by addRegisterDead(), addRegisterKilled(), findRegisterDefOperand(), and getRegClassConstraint().
|
inline |
Wrapper for findRegisterDefOperandIdx, it returns a pointer to the MachineOperand rather than an index.
Definition at line 1200 of file MachineInstr.h.
References findFirstPredOperandIdx(), findInlineAsmFlagIdx(), findRegisterDefOperandIdx(), findTiedOperandIdx(), getOperand(), getRegClassConstraint(), getRegClassConstraintEffect(), getRegClassConstraintEffectForVReg(), tieOperands(), TII, and TRI.
Referenced by addRegisterDefined(), llvm::SystemZInstrInfo::foldMemoryOperandImpl(), llvm::LiveVariables::HandleVirtRegDef(), isDataInvariant(), isDataInvariantLoad(), llvm::AggressiveAntiDepBreaker::Observe(), transferDeadCC(), and UpdateCPSRUse().
int MachineInstr::findRegisterDefOperandIdx | ( | unsigned | Reg, |
bool | isDead = false , |
||
bool | Overlap = false , |
||
const TargetRegisterInfo * | TRI = nullptr |
||
) | const |
Returns the operand index that is a def of the specified register or -1 if it is not found.
findRegisterDefOperandIdx() - Returns the operand index that is a def of the specified register or -1 if it is not found.
If isDead is true, defs that are not dead are skipped. If Overlap is true, then it also looks for defs that merely overlap the specified register. If TargetRegisterInfo is non-null, then it also checks if there is a def of a super-register. This may also return a register mask operand when Overlap is true.
If isDead is true, defs that are not dead are skipped. If TargetRegisterInfo is non-null, then it also checks if there is a def of a super-register.
Definition at line 977 of file MachineInstr.cpp.
References llvm::MachineOperand::clobbersPhysReg(), getNumOperands(), getOperand(), llvm::MachineOperand::getReg(), llvm::MachineOperand::isDead(), llvm::MachineOperand::isDef(), llvm::TargetRegisterInfo::isPhysicalRegister(), llvm::MachineOperand::isReg(), llvm::MachineOperand::isRegMask(), llvm::MCRegisterInfo::isSubRegister(), Reg, and llvm::TargetRegisterInfo::regsOverlap().
Referenced by addSegmentsWithValNo(), canFoldIntoCSel(), CriticalPathStep(), llvm::R600InstrInfo::definesAddressRegister(), definesRegister(), llvm::ARMBaseInstrInfo::expandPostRAPseudo(), findRegisterDefOperand(), findRegisterUseOperand(), getCompareSourceReg(), getMaddPatterns(), llvm::HexagonInstrInfo::getOperandLatency(), modifiesRegister(), llvm::AArch64InstrInfo::optimizeCompareInstr(), llvm::AArch64InstrInfo::optimizeCondBranch(), and registerDefIsDead().
|
inline |
Wrapper for findRegisterUseOperandIdx, it returns a pointer to the MachineOperand rather than an index.
Definition at line 1175 of file MachineInstr.h.
References findRegisterUseOperandIdx(), getOperand(), isKill(), and TRI.
Referenced by addEpilogOnlyR10(), findRegisterUseOperand(), getRegClassForUnfoldedLoad(), hasVulnerableLoad(), isCopy(), isEFLAGSLive(), llvm::AggressiveAntiDepBreaker::Observe(), regOverlapsSet(), and UpdateCPSRUse().
|
inline |
Definition at line 1181 of file MachineInstr.h.
References findRegisterDefOperandIdx(), findRegisterUseOperand(), isKill(), and TRI.
int MachineInstr::findRegisterUseOperandIdx | ( | unsigned | Reg, |
bool | isKill = false , |
||
const TargetRegisterInfo * | TRI = nullptr |
||
) | const |
Returns the operand index that is a use of the specific register or -1 if it is not found.
findRegisterUseOperandIdx() - Returns the MachineOperand that is a use of the specific register or -1 if it is not found.
It further tightens the search criteria to a use that kills the register if isKill is true.
Definition at line 928 of file MachineInstr.cpp.
References getNumOperands(), getOperand(), llvm::MachineOperand::getReg(), llvm::MachineOperand::isKill(), llvm::MachineOperand::isReg(), llvm::MachineOperand::isUse(), and llvm::TargetRegisterInfo::regsOverlap().
Referenced by findCondCodeUsedByInstr(), findRegisterUseOperand(), llvm::HexagonInstrInfo::getOperandLatency(), llvm::ARMBaseInstrInfo::getPartialRegUpdateClearance(), llvm::CoalescerPair::isCoalescable(), isVirtualRegisterOperand(), killsRegister(), readsRegister(), registerDefIsDead(), llvm::PPCInstrInfo::replaceInstrOperandWithImm(), and llvm::R600InstrInfo::usesAddressRegister().
Given the index of a tied register operand, find the operand it is tied to.
Defs are tied to uses and vice versa. Returns the index of the tied operand which must exist.
Definition at line 1061 of file MachineInstr.cpp.
References assert(), llvm::MachineOperand::getImm(), llvm::InlineAsm::getNumOperandRegisters(), getNumOperands(), getOperand(), llvm::MachineOperand::isImm(), isInlineAsm(), llvm::MachineOperand::isReg(), llvm::MachineOperand::isTied(), llvm::MachineOperand::isUse(), llvm::InlineAsm::isUseOperandTiedToDef(), llvm_unreachable, llvm::InlineAsm::MIOp_FirstOperand, llvm::SmallVectorTemplateBase< T, bool >::push_back(), and llvm::SmallVectorBase::size().
Referenced by findRegisterDefOperand(), findSingleRegDef(), hasComplexRegisterTies(), INITIALIZE_PASS(), isRegTiedToDefOperand(), isRegTiedToUseOperand(), matchPair(), llvm::MIPrinter::print(), print(), untieRegOperand(), and llvm::SIInstrInfo::verifyInstruction().
|
inline |
Return whether an AsmPrinter flag is set.
Definition at line 275 of file MachineInstr.h.
Referenced by emitComments(), and llvm::X86AsmPrinter::EmitInstruction().
|
inline |
Return the asm printer flags bitvector.
Definition at line 269 of file MachineInstr.h.
Referenced by llvm::X86AsmPrinter::EmitInstruction().
unsigned MachineInstr::getBundleSize | ( | ) | const |
Return the number of instructions inside the MI bundle, excluding the bundle header.
Return the number of instructions inside the MI bundle, not counting the header instruction.
This is the number of instructions that MachineBasicBlock::iterator skips, 0 for unbundled instructions.
Definition at line 904 of file MachineInstr.cpp.
References llvm::ilist_node_impl< ilist_detail::compute_node_options< MachineInstr, Options... >::type >::getIterator(), I, and Size.
Referenced by INITIALIZE_PASS(), and isTransient().
const DIExpression * MachineInstr::getDebugExpression | ( | ) | const |
Return the complex address expression referenced by this DBG_VALUE instruction.
Definition at line 810 of file MachineInstr.cpp.
References assert(), llvm::MachineOperand::getMetadata(), getOperand(), and isDebugValue().
Referenced by AssignProtectedObjSet(), computeExprForSpill(), llvm::createX86OptimizeLEAs(), emitDebugValueComment(), llvm::DbgVariableLocation::extractFromMachineInstruction(), getDebugLoc(), getDebugLocValue(), INITIALIZE_PASS(), llvm::DbgVariable::initializeDbgValue(), printExtendedName(), and llvm::SelectionDAGISel::runOnMachineFunction().
Return the debug label referenced by this DBG_LABEL instruction.
Definition at line 800 of file MachineInstr.cpp.
References assert(), llvm::MachineOperand::getMetadata(), getOperand(), and isDebugLabel().
Referenced by llvm::MachineInstrBuilder::addMetadata(), emitDebugLabelComment(), and getDebugLoc().
Returns the debug location id of this MachineInstr.
Definition at line 383 of file MachineInstr.h.
References emitError(), getDebugExpression(), getDebugLabel(), and getDebugVariable().
Referenced by addEpilog(), addEpilogLeaf(), addEpilogOnlyR10(), addExclusiveRegPair(), addImplicitDefUseOperands(), addSegmentsWithValNo(), llvm::SITargetLowering::AdjustInstrPostInstrSelection(), allPhiOperandsUndefined(), llvm::AMDGPUInstructionSelector::AMDGPUInstructionSelector(), llvm::analyzeArguments(), AppendEndToFunction(), llvm::HexagonFrameLowering::assignCalleeSavedSpillSlots(), llvm::BTFDebug::beginInstruction(), llvm::CodeViewDebug::beginInstruction(), llvm::DwarfDebug::beginInstruction(), llvm::ARMBaseInstrInfo::breakPartialRegDependency(), llvm::X86InstrInfo::breakPartialRegDependency(), llvm::buildDbgValueForSpill(), buildEXP(), llvm::SIInstrInfo::buildShrunkInst(), canMoveInstsAcrossMemOp(), canTurnIntoCOPY(), changeFCMPPredToAArch64CC(), llvm::X86InstrInfo::classifyLEAReg(), CombineCVTAToLocal(), llvm::PPCInstrInfo::commuteInstructionImpl(), computeExprForSpill(), llvm::constrainRegToClass(), ContainsReg(), ConvertImplicitDefToConstZero(), llvm::ARMBaseInstrInfo::convertToThreeAddress(), llvm::SystemZInstrInfo::convertToThreeAddress(), llvm::X86InstrInfo::convertToThreeAddress(), llvm::SIInstrInfo::convertToThreeAddress(), createPHIsForCMOVsInSinkBB(), createPHIsForSelects(), llvm::createSIAddIMGInitPass(), llvm::createSIWholeQuadModePass(), llvm::createX86FixupBWInsts(), llvm::createX86FixupSetCC(), llvm::createX86OptimizeLEAs(), definesFullReg(), llvm::ARMFrameLowering::determineCalleeSaves(), llvm::HexagonFrameLowering::determineCalleeSaves(), llvm::MSP430FrameLowering::eliminateCallFramePseudoInstr(), llvm::Thumb1FrameLowering::eliminateCallFramePseudoInstr(), llvm::XCoreFrameLowering::eliminateCallFramePseudoInstr(), llvm::ARCFrameLowering::eliminateCallFramePseudoInstr(), llvm::BPFRegisterInfo::eliminateFrameIndex(), llvm::MSP430RegisterInfo::eliminateFrameIndex(), llvm::SparcRegisterInfo::eliminateFrameIndex(), llvm::RISCVRegisterInfo::eliminateFrameIndex(), llvm::LanaiRegisterInfo::eliminateFrameIndex(), llvm::AVRRegisterInfo::eliminateFrameIndex(), llvm::HexagonRegisterInfo::eliminateFrameIndex(), llvm::ThumbRegisterInfo::eliminateFrameIndex(), llvm::AArch64RegisterInfo::eliminateFrameIndex(), llvm::PPCRegisterInfo::eliminateFrameIndex(), llvm::ARMBaseRegisterInfo::eliminateFrameIndex(), llvm::PPCTargetLowering::EmitAtomicBinary(), emitBuildPairF64Pseudo(), emitClzero(), llvm::PPCTargetLowering::emitEHSjLjLongJmp(), llvm::PPCTargetLowering::emitEHSjLjSetJmp(), llvm::AArch64TargetLowering::EmitF128CSEL(), emitIndirectDst(), emitIndirectSrc(), llvm::HexagonHazardRecognizer::EmitInstruction(), llvm::BPFTargetLowering::EmitInstrWithCustomInserter(), llvm::RISCVTargetLowering::EmitInstrWithCustomInserter(), llvm::AVRTargetLowering::EmitInstrWithCustomInserter(), llvm::XCoreTargetLowering::EmitInstrWithCustomInserter(), llvm::MSP430TargetLowering::EmitInstrWithCustomInserter(), llvm::SITargetLowering::EmitInstrWithCustomInserter(), llvm::ARMTargetLowering::EmitInstrWithCustomInserter(), llvm::MipsTargetLowering::EmitInstrWithCustomInserter(), llvm::PPCTargetLowering::EmitInstrWithCustomInserter(), llvm::X86TargetLowering::EmitInstrWithCustomInserter(), emitMonitor(), llvm::PPCTargetLowering::EmitPartwordAtomicBinary(), llvm::TargetLoweringBase::emitPatchPoint(), emitPostSt(), emitRDPKRU(), llvm::MSP430TargetLowering::EmitShiftInstr(), emitSplitF64Pseudo(), emitWRPKRU(), emitXBegin(), llvm::TargetLoweringBase::emitXRayCustomEvent(), llvm::TargetLoweringBase::emitXRayTypedEvent(), eraseDeadBBsAndChildren(), expandLoadStackGuard(), expandMOV32r1(), ExpandMOVImmSExti8(), llvm::HexagonInstrInfo::expandPostRAPseudo(), llvm::AArch64InstrInfo::expandPostRAPseudo(), llvm::PPCInstrInfo::expandPostRAPseudo(), llvm::SparcTargetLowering::expandSelectCC(), llvm::HexagonInstrInfo::expandVGatherPseudo(), extractRsrcPtr(), findIncDecAfter(), findPotentialBlockers(), findSingleRegDef(), findStartOfTree(), llvm::fixStackStores(), fixupGlobalSaddr(), fixupRegionExits(), llvm::ARMBaseInstrInfo::FoldImmediate(), llvm::SystemZInstrInfo::foldMemoryOperandImpl(), foldPatchpoint(), foldVGPRCopyIntoRegSequence(), forceReg(), FuseInst(), FuseTwoAddrInst(), llvm::AArch64InstrInfo::genAlternativeCodeSequence(), genFusedMultiply(), genMaddR(), getAdjustedCmp(), getCmpForPseudo(), getCompareSourceReg(), getConstant(), getDPPOp(), GetDSubRegs(), llvm::HexagonHazardRecognizer::getHazardType(), getMappedOp(), getNewSource(), getNewValueJumpOpcode(), getPostIndexedLoadStoreOpcode(), getRegClassFromGRPhysReg(), getRegsUsedByPHIs(), getRetpolineSymbol(), getSmrdOpcode(), getSubOpcode(), getTag(), llvm::BPFTargetLowering::getTargetNodeName(), getUnconditionalBrDisp(), giveUpWithRemarks(), llvm::MipsTargetLowering::HandleByVal(), HandleVRSaveUpdate(), hasUseAfterLoop(), INITIALIZE_PASS(), llvm::DbgVariable::initializeDbgValue(), insertCopy(), insertDivByZeroTrap(), InsertFPConstInst(), InsertFPImmInst(), insertNopBeforeInstruction(), insertPHI(), InsertSPConstInst(), InsertSPImmInst(), llvm::IRTranslator::IRTranslator(), isCopy(), llvm::isCopyMulResult(), isDbgValueDescribedByReg(), isEFLAGSLive(), isFpMulInstruction(), isFullCopyOf(), isFunctionEntryBlock(), isIdenticalTo(), isInRage(), isLEASimpleIncOrDec(), isLiveOut(), IsMovepDestinationRegPair(), isPHIRegionIndex(), IsSafeAndProfitableToMove(), isSimpleIf(), llvm::SIInstrInfo::legalizeOperands(), llvm::SIInstrInfo::legalizeOperandsVOP2(), loadM0FromVGPR(), loadSRsrcFromVGPR(), llvm::PPCRegisterInfo::lowerCRBitRestore(), llvm::PPCRegisterInfo::lowerCRBitSpilling(), llvm::PPCRegisterInfo::lowerCRRestore(), llvm::PPCRegisterInfo::lowerCRSpilling(), llvm::PPCRegisterInfo::lowerDynamicAlloc(), llvm::PPCRegisterInfo::lowerDynamicAreaOffset(), LowerFPToInt(), llvm::PPCRegisterInfo::lowerVRSAVERestore(), llvm::PPCRegisterInfo::lowerVRSAVESpilling(), makeImplicit(), MakeM0Inst(), matchSwap(), Mips16WhichOp8uOr16simm(), MoveAndTeeForMultiUse(), llvm::SIInstrInfo::moveToVALU(), llvm::PPCInstrInfo::optimizeCompareInstr(), llvm::AArch64InstrInfo::optimizeCondBranch(), llvm::LanaiInstrInfo::optimizeSelect(), llvm::ARMBaseInstrInfo::optimizeSelect(), parseCond(), performSink(), llvm::HexagonInstrInfo::PredicateInstruction(), llvm::MIPrinter::print(), print(), printExtendedName(), llvm::SIInstrInfo::readlaneVGPRToSGPR(), readsVCCZ(), llvm::TargetInstrInfo::reassociateOps(), llvm::HexagonInstrInfo::reduceLoopCount(), registerDefinedBetween(), llvm::ARMBaseInstrInfo::reMaterialize(), llvm::X86InstrInfo::reMaterialize(), ReplaceFrameIndex(), llvm::ARMTargetLowering::ReplaceNodeResults(), llvm::reportGISelFailure(), llvm::rewriteAArch64FrameIndex(), llvm::ThumbRegisterInfo::rewriteFrameIndex(), llvm::SelectionDAGISel::runOnMachineFunction(), selectCopy(), selectFP16CopyFromGPR32(), llvm::ARMBaseInstrInfo::setExecutionDomain(), setM0ToIndexFromSGPR(), llvm::X86FrameLowering::spillCalleeSavedRegisters(), splitEdge(), splitMBB(), llvm::SystemZInstrInfo::SystemZInstrInfo(), tryOptimizeLEAtoMOV(), trySequenceOfOnes(), llvm::X86InstrInfo::unfoldMemoryOperand(), updateOperand(), validThroughout(), and VerifyLowRegs().
const DILocalVariable * MachineInstr::getDebugVariable | ( | ) | const |
Return the debug variable referenced by this DBG_VALUE instruction.
Definition at line 805 of file MachineInstr.cpp.
References assert(), llvm::MachineOperand::getMetadata(), getOperand(), and isDebugValue().
Referenced by llvm::MachineInstrBuilder::addMetadata(), llvm::buildDbgValueForSpill(), computeExprForSpill(), llvm::createX86OptimizeLEAs(), emitDebugValueComment(), getDebugLoc(), INITIALIZE_PASS(), llvm::DbgVariable::initializeDbgValue(), isDbgValueDescribedByReg(), printExtendedName(), and llvm::SelectionDAGISel::runOnMachineFunction().
|
inline |
Returns the target instruction descriptor of this MachineInstr.
Definition at line 406 of file MachineInstr.h.
Referenced by llvm::addFrameReference(), addImplicitDefUseOperands(), addLiveInRegs(), llvm::ScheduleDAGInstrs::addPhysRegDataDeps(), addRegsToSet(), llvm::TargetInstrInfo::analyzeSelect(), AnyAliasLiveIn(), llvm::ARMBaseInstrInfo::breakPartialRegDependency(), llvm::buildDbgValueForSpill(), llvm::HexagonPacketizerList::canPromoteToDotNew(), llvm::HexagonPacketizerList::canPromoteToNewValueStore(), llvm::DFAPacketizer::canReserveResources(), llvm::TargetInstrInfo::commuteInstructionImpl(), llvm::PPCInstrInfo::commuteInstructionImpl(), llvm::X86InstrInfo::commuteInstructionImpl(), commuteVPTERNLOG(), computeBytesPoppedByCalleeForSRet(), llvm::TargetSchedModel::computeOperandLatency(), llvm::TargetSchedModel::computeReciprocalThroughput(), llvm::constrainSelectedInstRegOperands(), llvm::ARMBaseInstrInfo::convertToThreeAddress(), copyExtraImplicitOps(), copyImplicitOps(), llvm::createBreakFalseDeps(), llvm::createHexagonHardwareLoops(), llvm::createX86OptimizeLEAs(), CriticalPathStep(), definesFullReg(), llvm::HexagonFrameLowering::determineCalleeSaves(), llvm::ARMBaseRegisterInfo::eliminateFrameIndex(), emitDirectiveRelocJalr(), llvm::X86AsmPrinter::EmitInstruction(), llvm::TargetLoweringBase::emitPatchPoint(), llvm::TargetLoweringBase::emitXRayCustomEvent(), llvm::TargetLoweringBase::emitXRayTypedEvent(), llvm::LiveRangeEdit::eraseVirtReg(), llvm::MipsSEInstrInfo::expandPostRAPseudo(), llvm::Mips16InstrInfo::expandPostRAPseudo(), llvm::MipsInstrInfo::findCommutedOpIndices(), llvm::SIInstrInfo::findCommutedOpIndices(), llvm::X86InstrInfo::findCommutedOpIndices(), llvm::TargetInstrInfo::findCommutedOpIndices(), findFirstPredOperandIdx(), findPotentialBlockers(), findStartOfTree(), llvm::ARMBaseInstrInfo::FoldImmediate(), llvm::PPCInstrInfo::FoldImmediate(), llvm::X86InstrInfo::foldMemoryOperandImpl(), FuseTwoAddrInst(), llvm::HexagonInstrInfo::genAllInsnTimingClasses(), llvm::LegalizerInfo::getAction(), llvm::HexagonInstrInfo::getAddrMode(), getAddrOffset(), llvm::RISCVInstrInfo::getBranchDestBlock(), llvm::HexagonInstrInfo::getCExtOpNum(), llvm::SIInstrInfo::getClampMask(), getCompareSourceReg(), GetDSubRegs(), llvm::ARMBaseInstrInfo::getExecutionDomain(), llvm::X86InstrInfo::getExecutionDomain(), llvm::X86InstrInfo::getExecutionDomainCustom(), llvm::ARMBaseInstrInfo::getExtractSubregLikeInputs(), llvm::X86InstrInfo::getFMA3OpcodeToCommuteOperands(), getFPReg(), llvm::ARMBaseRegisterInfo::getFrameIndexInstrOffset(), llvm::ARMHazardRecognizer::getHazardType(), llvm::ARMBaseInstrInfo::getInsertSubregLikeInputs(), llvm::ScheduleDAG::getInstrDesc(), llvm::PPCInstrInfo::getInstrLatency(), llvm::TargetInstrInfo::getInstrLatency(), llvm::HexagonInstrInfo::getInstrTimingClassLatency(), llvm::AArch64InstrInfo::getInstSizeInBytes(), llvm::ARCInstrInfo::getInstSizeInBytes(), llvm::MSP430InstrInfo::getInstSizeInBytes(), llvm::MipsInstrInfo::getInstSizeInBytes(), llvm::ARMBaseInstrInfo::getInstSizeInBytes(), llvm::SystemZInstrInfo::getInstSizeInBytes(), llvm::ARMBaseInstrInfo::getLDMVariableDefsSize(), getLSMultipleTransferSize(), llvm::HexagonInstrInfo::getMaxValue(), llvm::HexagonInstrInfo::getMemAccessSize(), llvm::X86InstrInfo::getMemOperandWithOffset(), getMemoryOpOffset(), llvm::HexagonInstrInfo::getMinValue(), getNewSource(), getNewValueJumpOpcode(), llvm::HexagonInstrInfo::getNonExtOpcode(), llvm::TargetSchedModel::getNumMicroOps(), llvm::ARMBaseInstrInfo::getNumMicroOps(), llvm::TargetInstrInfo::getNumMicroOps(), getNumMicroOpsSwiftLdSt(), llvm::ARMBaseInstrInfo::getOperandLatency(), llvm::TargetInstrInfo::getOperandLatency(), llvm::X86InstrInfo::getOutliningType(), getPostIncrementOperand(), getRegClassConstraint(), llvm::ARMBaseInstrInfo::getRegSequenceLikeInputs(), llvm::HexagonInstrInfo::getSize(), getTargetMBB(), getTruncatedShiftCount(), llvm::HexagonInstrInfo::getType(), getTypeToPrint(), getUnconditionalBrDisp(), getUnderlyingObjects(), llvm::HexagonInstrInfo::getUnits(), getX86SSEConditionCode(), hasComplexRegisterTies(), llvm::MipsInstrInfo::HasForbiddenSlot(), llvm::SIInstrInfo::hasFPClamp(), llvm::SIInstrInfo::hasIntClamp(), llvm::TargetInstrInfo::hasLowDefLatency(), llvm::HexagonInstrInfo::hasNonExtEquivalent(), hasProperty(), hasRAWHazard(), llvm::HexagonPacketizerList::ignorePseudoInstruction(), INITIALIZE_PASS(), insertPHI(), llvm::HexagonInstrInfo::isAccumulator(), llvm::HexagonInstrInfo::isAddrModeWithOffset(), llvm::SIInstrInfo::isBufferSMRD(), llvm::HexagonInstrInfo::isComplex(), llvm::HexagonInstrInfo::isConstExtended(), isControlFlow(), isCopy(), isCopyFeedingInvariantStore(), isCrossCopy(), llvm::HexagonInstrInfo::isDependent(), llvm::SIInstrInfo::isDisableWQM(), llvm::SIInstrInfo::isDPP(), llvm::SIInstrInfo::isDS(), llvm::HexagonInstrInfo::isEarlySourceInstr(), llvm::SIInstrInfo::isEXP(), llvm::HexagonInstrInfo::isExtendable(), llvm::HexagonInstrInfo::isExtended(), llvm::rdf::TargetOperandInfo::isFixedReg(), llvm::SIInstrInfo::isFixedSize(), llvm::SIInstrInfo::isFLAT(), llvm::SIInstrInfo::isFoldableCopy(), isFpMulInstruction(), llvm::AArch64InstrInfo::isFPRCopy(), llvm::ARMBaseRegisterInfo::isFrameOffsetLegal(), llvm::SIInstrInfo::isGather4(), llvm::AArch64InstrInfo::isGPRCopy(), llvm::AArch64InstrInfo::isGPRZero(), isHighLatencyCPSR(), isImmValidForOpcode(), llvm::SIInstrInfo::isInlineConstant(), llvm::HexagonInstrInfo::isLateResultInstr(), isLEASimpleIncOrDec(), llvm::SIInstrInfo::isMIMG(), llvm::SIInstrInfo::isMTBUF(), llvm::SIInstrInfo::isMUBUF(), isMulPowOf2(), llvm::HexagonInstrInfo::isNewValue(), llvm::HexagonInstrInfo::isNewValueStore(), llvm::HexagonInstrInfo::isOperandExtended(), isOperandKill(), llvm::SIInstrInfo::isOperandLegal(), llvm::ARMBaseInstrInfo::isPredicable(), llvm::HexagonInstrInfo::isPredicable(), llvm::TargetInstrInfo::isPredicable(), llvm::HexagonInstrInfo::isPredicated(), llvm::HexagonInstrInfo::isPredicatedNew(), llvm::HexagonInstrInfo::isPredicatedTrue(), llvm::SIInstrInfo::isSALU(), llvm::SIInstrInfo::isScalarStore(), llvm::SIInstrInfo::isScalarUnit(), llvm::HexagonInstrInfo::isSchedulingBoundary(), llvm::SIInstrInfo::isSDWA(), llvm::SIInstrInfo::isSegmentSpecificFLAT(), llvm::SIInstrInfo::isSGPRSpill(), isSimpleBD12Move(), isSimpleMove(), llvm::SIInstrInfo::isSMRD(), llvm::HexagonInstrInfo::isSolo(), llvm::SIInstrInfo::isSOP1(), llvm::SIInstrInfo::isSOP2(), llvm::SIInstrInfo::isSOPC(), llvm::SIInstrInfo::isSOPK(), llvm::SIInstrInfo::isSOPP(), llvm::HexagonInstrInfo::isTC1(), llvm::HexagonInstrInfo::isTC2(), llvm::HexagonInstrInfo::isTC2Early(), llvm::HexagonInstrInfo::isTC4x(), llvm::TargetInstrInfo::isTriviallyReMaterializable(), isUseSafeToFold(), llvm::SIInstrInfo::isVALU(), llvm::SIInstrInfo::isVGPRSpill(), llvm::SIInstrInfo::isVINTRP(), isVirtualRegisterOperand(), llvm::SIInstrInfo::isVOP1(), llvm::SIInstrInfo::isVOP2(), llvm::SIInstrInfo::isVOP3(), llvm::SIInstrInfo::isVOP3P(), llvm::SIInstrInfo::isVOPC(), llvm::SIInstrInfo::isWQM(), llvm::WebAssemblyMCInstLower::Lower(), MakeM0Inst(), matchPair(), llvm::HexagonInstrInfo::mayBeCurLoad(), llvm::HexagonInstrInfo::mayBeNewStore(), llvm::SIInstrInfo::moveToVALU(), OneUseDominatesOtherUses(), llvm::LanaiInstrInfo::optimizeSelect(), llvm::ARMBaseInstrInfo::optimizeSelect(), parseCondBranch(), performCustomAdjustments(), llvm::TargetInstrInfo::PredicateInstruction(), registerDefinedBetween(), llvm::DFAPacketizer::reserveResources(), llvm::SystemZHazardRecognizer::Reset(), llvm::PPCRegisterInfo::resolveFrameIndex(), llvm::TargetSchedModel::resolveSchedClass(), llvm::rewriteARMFrameIndex(), llvm::ThumbRegisterInfo::rewriteFrameIndex(), RewriteP2Align(), llvm::rewriteT2FrameIndex(), llvm::Localizer::runOnMachineFunction(), llvm::MipsInstrInfo::SafeInForbiddenSlot(), llvm::ARMBaseInstrInfo::setExecutionDomain(), llvm::X86InstrInfo::setExecutionDomain(), llvm::X86InstrInfo::setExecutionDomainCustom(), llvm::SIInstrInfo::sopkIsZext(), stripExtraCopyOperands(), tieOpsIfNeeded(), updateOperand(), updateOperandRegConstraints(), usedAsAddr(), llvm::SIInstrInfo::usesFPDPRounding(), llvm::SIInstrInfo::usesLGKM_CNT(), llvm::SIInstrInfo::usesVM_CNT(), llvm::SIInstrInfo::verifyInstruction(), VerifyLowRegs(), and VisitGlobalVariableForEmission().
Return whether an MI flag is set.
Definition at line 295 of file MachineInstr.h.
Referenced by llvm::BTFDebug::beginInstruction(), llvm::CodeViewDebug::beginInstruction(), llvm::DwarfDebug::beginInstruction(), llvm::ARMAsmPrinter::EmitInstruction(), llvm::ARMAsmPrinter::EmitJumpTableTBInst(), getOModValue(), isBundledWithPred(), isBundledWithSucc(), isInsideBundle(), llvm::MIPrinter::print(), llvm::MachineBasicBlock::print(), and print().
|
inline |
Return the MI flags bitvector.
Definition at line 290 of file MachineInstr.h.
Referenced by llvm::GISelInstProfileBuilder::addNodeID(), IsMovepDestinationRegPair(), mergeFlagsWith(), and VerifyLowRegs().
InlineAsm::AsmDialect MachineInstr::getInlineAsmDialect | ( | ) | const |
Definition at line 766 of file MachineInstr.cpp.
References assert(), llvm::InlineAsm::Extra_AsmDialect, llvm::MachineOperand::getImm(), getOperand(), isInlineAsm(), and llvm::InlineAsm::MIOp_ExtraInfo.
Referenced by EmitGCCInlineAsmStr(), isMSInlineAsm(), and print().
const MachineFunction * MachineInstr::getMF | ( | ) | const |
Return the function that contains the basic block that this instruction belongs to.
Note: this is undefined behaviour if the instruction does not have a parent.
Definition at line 644 of file MachineInstr.cpp.
References llvm::MachineBasicBlock::getParent(), and getParent().
Referenced by llvm::BTFDebug::beginInstruction(), llvm::DwarfDebug::beginInstruction(), canFoldCopy(), cloneMemRefs(), cloneMergedMemRefs(), llvm::TargetInstrInfo::commuteInstructionImpl(), llvm::TargetSchedModel::computeOutputLatency(), emitComments(), llvm::TargetLoweringBase::emitPatchPoint(), llvm::TargetLoweringBase::emitXRayCustomEvent(), llvm::TargetLoweringBase::emitXRayTypedEvent(), llvm::LegalizerHelper::fewerElementsVector(), llvm::TargetInstrInfo::genAlternativeCodeSequence(), llvm::NVPTXAsmPrinter::getFunctionFrameSymbol(), llvm::RegisterBankInfo::getInstrMappingImpl(), getMF(), getParent(), getRegClassConstraint(), llvm::TargetInstrInfo::getSPAdjust(), INITIALIZE_PASS(), isCallerPreservedOrConstPhysReg(), isCopyFeedingInvariantStore(), isInvariantStore(), lookupCandidateBaseReg(), mayAlias(), llvm::MIPrinter::print(), llvm::RegisterBankInfo::OperandsMapper::print(), llvm::printMBBReference(), llvm::TargetInstrInfo::reassociateOps(), llvm::AsmPrinter::recordSled(), removePhis(), llvm::GCNRPTracker::reset(), llvm::RegScavenger::scavengeRegister(), llvm::CoalescerPair::setRegisters(), UpdatePredRedefs(), llvm::RegisterBankInfo::InstructionMapping::verify(), VisitGlobalVariableForEmission(), and llvm::LegalizerHelper::widenScalar().
|
inline |
Definition at line 263 of file MachineInstr.h.
References getMF().
|
inline |
Returns the total number of definitions.
Definition at line 424 of file MachineInstr.h.
References getNumExplicitDefs(), and llvm::MCInstrDesc::getNumImplicitDefs().
Referenced by isCallerPreservedOrConstPhysReg().
unsigned MachineInstr::getNumExplicitDefs | ( | ) | const |
Returns the number of non-implicit definitions.
Definition at line 707 of file MachineInstr.cpp.
References E, llvm::MCInstrDesc::getNumDefs(), getNumOperands(), getOperand(), I, llvm::MachineOperand::isDef(), llvm::MachineOperand::isImplicit(), llvm::MachineOperand::isReg(), and llvm::MCInstrDesc::isVariadic().
Referenced by defs(), explicit_uses(), getNumDefs(), isOperandSubregIdx(), and uses().
unsigned MachineInstr::getNumExplicitOperands | ( | ) | const |
Returns the number of non-implicit operands.
Definition at line 688 of file MachineInstr.cpp.
References E, llvm::MCInstrDesc::getNumOperands(), getNumOperands(), getOperand(), I, llvm::MachineOperand::isImplicit(), llvm::MachineOperand::isReg(), and llvm::MCInstrDesc::isVariadic().
Referenced by llvm::HexagonInstrInfo::analyzeBranch(), llvm::SystemZInstrInfo::analyzeCompare(), llvm::SIInstrInfo::buildExtractSubRegOrImm(), changeFCMPPredToAArch64CC(), llvm::constrainSelectedInstRegOperands(), createPHIsForSelects(), llvm::createSIWholeQuadModePass(), llvm::createX86FixupBWInsts(), explicit_operands(), explicit_uses(), fixupCalleeSaveRestoreStackOffset(), llvm::SystemZInstrInfo::foldMemoryOperandImpl(), llvm::RISCVInstrInfo::getBranchDestBlock(), getCompareSourceReg(), llvm::AArch64InstrInfo::getMemOpBaseRegImmOfsOffsetOperand(), llvm::MipsInstrInfo::GetMemOperand(), llvm::AArch64InstrInfo::getMemOperandWithOffsetWidth(), getRegClassFromGRPhysReg(), getTypeToPrint(), getUnconditionalBrDisp(), hoistAndMergeSGPRInits(), INITIALIZE_PASS(), isCompareZero(), isOperandSubregIdx(), performCustomAdjustments(), and llvm::SIInstrInfo::verifyInstruction().
|
inline |
Return the number of memory operands.
Definition at line 552 of file MachineInstr.h.
References memoperands().
|
inline |
Retuns the total number of operands.
Definition at line 412 of file MachineInstr.h.
Referenced by addImplicitDefUseOperands(), addLiveInRegs(), addOperand(), addRegisterDead(), addRegisterKilled(), addRegsToSet(), llvm::HexagonSubtarget::adjustSchedDependency(), allPhiOperandsUndefined(), llvm::X86InstrInfo::analyzeBranchPredicate(), llvm::AArch64InstrInfo::analyzeCompare(), llvm::LiveRangeEdit::anyRematerializable(), AppendEndToFunction(), llvm::HexagonSubtarget::CallMutation::apply(), AssignProtectedObjSet(), BBIsJumpedOver(), llvm::ScheduleDAGInstrs::buildSchedGraph(), llvm::EHStreamer::callToNoUnwindFunction(), canCombine(), llvm::HexagonInstrInfo::canExecuteInBundle(), canFoldCopy(), canFoldIntoMOVCC(), canFoldIntoSelect(), canMoveInstsAcrossMemOp(), llvm::HexagonPacketizerList::canPromoteToNewValueStore(), canTurnIntoCOPY(), changeFCMPPredToAArch64CC(), clobbersCTR(), llvm::X86InstrInfo::commuteInstructionImpl(), commuteVPTERNLOG(), llvm::HexagonEvaluator::composeWithSubRegIndex(), llvm::PPCInstrInfo::convertToImmediateForm(), llvm::ARMBaseInstrInfo::convertToThreeAddress(), llvm::SystemZInstrInfo::convertToThreeAddress(), llvm::X86InstrInfo::convertToThreeAddress(), copyExtraImplicitOps(), copyImplicitOps(), llvm::createBreakFalseDeps(), llvm::createHexagonHardwareLoops(), llvm::createSIAddIMGInitPass(), llvm::createX86FixupBWInsts(), llvm::createX86FixupLEAs(), llvm::createX86OptimizeLEAs(), CriticalPathStep(), definesFullReg(), llvm::ARMBaseInstrInfo::DefinesPredicate(), llvm::HexagonInstrInfo::DefinesPredicate(), llvm::PPCInstrInfo::DefinesPredicate(), doCandidateWalk(), dumpMachineInstrRangeWithSlotIndex(), llvm::BPFRegisterInfo::eliminateFrameIndex(), emitClzero(), emitDebugLabelComment(), emitDebugValueComment(), emitDirectiveRelocJalr(), emitError(), EmitGCCInlineAsmStr(), llvm::X86AsmPrinter::EmitInstruction(), llvm::R600TargetLowering::EmitInstrWithCustomInserter(), llvm::SITargetLowering::EmitInstrWithCustomInserter(), llvm::ARMTargetLowering::EmitInstrWithCustomInserter(), llvm::ARMAsmPrinter::EmitJumpTableTBInst(), emitKill(), EmitMSInlineAsmStr(), EmitNops(), llvm::TargetLoweringBase::emitPatchPoint(), llvm::TargetLoweringBase::emitXRayCustomEvent(), llvm::TargetLoweringBase::emitXRayTypedEvent(), eraseGPOpnd(), llvm::LiveRangeEdit::eraseVirtReg(), llvm::BitTracker::MachineEvaluator::evaluate(), llvm::SMSchedule::finalizeSchedule(), findCorrespondingPred(), findFirstPredOperandIdx(), findIncDecAfter(), findInlineAsmFlagIdx(), findRegisterDefOperandIdx(), findRegisterUseOperandIdx(), findSingleRegDef(), findSRegBaseAndIndex(), findTiedOperandIdx(), finishConvertToThreeAddress(), llvm::SwingSchedulerDAG::fixupRegisterOverlaps(), llvm::PPCInstrInfo::FoldImmediate(), foldPatchpoint(), foldVGPRCopyIntoRegSequence(), FuseInst(), FuseTwoAddrInst(), llvm::TargetInstrInfo::genAlternativeCodeSequence(), getCallTargetRegOpnd(), getCompareSourceReg(), getDebugLocValue(), getFPReg(), getFrameIndexOperandNum(), llvm::MachineInstrExpressionTrait::getHashValue(), llvm::HexagonHazardRecognizer::getHazardType(), getInitPhiReg(), llvm::X86RegisterBankInfo::getInstrAlternativeMappings(), llvm::AArch64RegisterBankInfo::getInstrAlternativeMappings(), llvm::PPCInstrInfo::getInstrLatency(), llvm::ARMRegisterBankInfo::getInstrMapping(), llvm::MipsRegisterBankInfo::getInstrMapping(), llvm::AMDGPURegisterBankInfo::getInstrMapping(), llvm::X86RegisterBankInfo::getInstrMapping(), llvm::AArch64RegisterBankInfo::getInstrMapping(), llvm::RegisterBankInfo::getInstrMappingImpl(), getInstrVecReg(), llvm::ARMBaseInstrInfo::getLDMVariableDefsSize(), getLoopPhiReg(), getLSMultipleTransferSize(), llvm::LanaiInstrInfo::getMemOperandWithOffsetWidth(), getNewValueJumpOpcode(), llvm::PatchPointOpers::getNextScratchIdx(), llvm::rdf::DataFlowGraph::getNextShadow(), getNumExplicitDefs(), getNumExplicitOperands(), llvm::ARMBaseInstrInfo::getNumMicroOps(), getOperand(), llvm::X86GenRegisterBankInfo::getPartialMappingIdx(), getPHIDeps(), getPHINumInputs(), getPhiRegs(), getPHISrcRegOpIdx(), getRegClassFromGRPhysReg(), llvm::TargetInstrInfo::getRegSequenceInputs(), llvm::getRegSequenceSubReg(), getRegsUsedByPHIs(), llvm::HexagonInstrInfo::getSize(), getStoreValueOperand(), getTag(), getTypeFromTypeIdx(), getUnconditionalBrDisp(), getX86SSEConditionCode(), llvm::LiveVariables::HandleVirtRegDef(), HandleVRSaveUpdate(), hasComplexRegisterTies(), HashMachineInstr(), llvm::X86InstrInfo::hasLiveCondCodeDef(), llvm::X86InstrInfo::hasReassociableOperands(), hasRegisterDependency(), hasRegisterImplicitUseOperand(), hasVGPROperands(), llvm::HexagonLowerToMC(), INITIALIZE_PASS(), InsertLDR_STR(), llvm::Mips16RegisterInfo::intRegClass(), llvm::HexagonInstrInfo::invertAndChangeJumpTarget(), isBinary(), isCallerPreservedOrConstPhysReg(), llvm::WebAssembly::isChild(), isConstantValuePHI(), isCopyFeedingInvariantStore(), isCSRestore(), isDbgValueDescribedByReg(), isDebug(), isDescribedByReg(), llvm::SIInstrInfo::isFoldableCopy(), llvm::ARMBaseRegisterInfo::isFrameOffsetLegal(), isFullCopyOf(), isFullUndefDef(), isIdenticalTo(), isImmValidForOpcode(), isImplicitlyDef(), isInstrUniform(), isInvariantStore(), llvm::ARMBaseInstrInfo::isLDMBaseRegInList(), llvm::isLeaMem(), llvm::SMSchedule::isLoopCarriedDefOfUse(), llvm::isMem(), isNopCopy(), isNullary(), llvm::SIInstrInfo::isOperandLegal(), isPreISelGenericFloatingPointOpcode(), llvm::PPCInstrInfo::isSignOrZeroExtended(), llvm::ARMBaseInstrInfo::isSwiftFastImmShift(), llvm::HexagonInstrInfo::isToBeScheduledASAP(), isTwoAddrUse(), isVirtualRegisterOperand(), llvm::SIInstrInfo::legalizeOperands(), lookupCandidateBaseReg(), llvm::XCoreMCInstLower::Lower(), llvm::SystemZMCInstLower::lower(), llvm::ARCMCInstLower::Lower(), llvm::MSP430MCInstLower::Lower(), llvm::BPFMCInstLower::Lower(), llvm::LanaiMCInstLower::Lower(), llvm::MipsMCInstLower::Lower(), llvm::WebAssemblyMCInstLower::Lower(), llvm::MipsMCInstLower::LowerOperand(), llvm::LowerPPCMachineInstrToMCInst(), llvm::LowerSparcMachineInstrToMCInst(), MakeM0Inst(), llvm::MIPatternMatch::BinaryOp_match< LHS_P, RHS_P, Opcode, Commutable >::match(), llvm::MIPatternMatch::UnaryOp_match< SrcTy, Opcode >::match(), matchPair(), llvm::SIInstrInfo::moveToVALU(), llvm::AggressiveAntiDepBreaker::Observe(), false::IntervalSorter::operator()(), llvm::LanaiInstrInfo::optimizeCompareInstr(), llvm::ARMBaseInstrInfo::optimizeCompareInstr(), llvm::X86InstrInfo::optimizeCompareInstr(), llvm::X86InstrInfo::optimizeLoadInstr(), llvm::LanaiInstrInfo::optimizeSelect(), llvm::ARMBaseInstrInfo::optimizeSelect(), optimizeVcndVcmpPair(), llvm::SMSchedule::orderDependence(), parseOperands(), llvm::PatchPointOpers::PatchPointOpers(), performSink(), phiHasBreakDef(), phiHasVGPROperands(), populateCandidates(), llvm::HexagonInstrInfo::PredicateInstruction(), llvm::TargetInstrInfo::PredicateInstruction(), llvm::MIPrinter::print(), print(), llvm::MipsAsmPrinter::PrintAsmMemoryOperand(), llvm::ARMAsmPrinter::PrintAsmOperand(), llvm::MipsAsmPrinter::PrintAsmOperand(), printExtendedName(), llvm::MipsAsmPrinter::printMemOperand(), llvm::MipsAsmPrinter::printRegisterList(), llvm::ARMBaseInstrInfo::produceSameValue(), readsVCCZ(), readsWritesVirtualRegister(), removeKillInfo(), RemoveOperand(), removeOperands(), removePhis(), llvm::LiveVariables::removeVirtualRegisterDead(), llvm::LiveVariables::removeVirtualRegisterKilled(), llvm::LiveVariables::removeVirtualRegistersKilled(), llvm::PPCInstrInfo::replaceInstrWithLI(), llvm::ThumbRegisterInfo::resolveFrameIndex(), llvm::AArch64RegisterInfo::resolveFrameIndex(), llvm::PPCRegisterInfo::resolveFrameIndex(), llvm::ARMBaseRegisterInfo::resolveFrameIndex(), resultTests(), llvm::rewriteT2FrameIndex(), llvm::DetectRoundChange::runOnMachineFunction(), llvm::X86InstrInfo::setSpecialOperandAttr(), simpleLibcall(), sizeOfSPAdjustment(), llvm::StackMapOpers::StackMapOpers(), stripExtraCopyOperands(), swapMIOperands(), llvm::SystemZInstrInfo::SystemZInstrInfo(), TrackDefUses(), llvm::MachineBasicBlock::transferSuccessorsAndUpdatePHIs(), llvm::LegalizationArtifactCombiner::tryCombineInstruction(), llvm::LegalizationArtifactCombiner::tryCombineMerges(), llvm::tryFoldSPUpdateIntoPushPop(), llvm::X86InstrInfo::unfoldMemoryOperand(), updateOperand(), UpdateOperandRegClass(), updateOperandRegConstraints(), usedAsAddr(), llvm::HexagonSubtarget::usePredicatedCalls(), llvm::SSAUpdaterTraits< MachineSSAUpdater >::ValueIsNewPHI(), llvm::RegisterBankInfo::InstructionMapping::verify(), llvm::SIInstrInfo::verifyInstruction(), VerifyLowRegs(), llvm::MachineRegisterInfo::verifyUseList(), VisitGlobalVariableForEmission(), and llvm::LegalizerHelper::widenScalar().
|
inline |
Returns the opcode of this MachineInstr.
Definition at line 409 of file MachineInstr.h.
References llvm::MCInstrDesc::Opcode.
Referenced by addExclusiveRegPair(), llvm::R600InstrInfo::addFlag(), llvm::GISelInstProfileBuilder::addNodeID(), addRegsToSet(), llvm::SITargetLowering::AdjustInstrPostInstrSelection(), llvm::GCNHazardRecognizer::AdvanceCycle(), llvm::GISelCSEInfo::analyze(), llvm::analyzeArguments(), llvm::XCoreInstrInfo::analyzeBranch(), llvm::NVPTXInstrInfo::analyzeBranch(), llvm::SparcInstrInfo::analyzeBranch(), llvm::MipsInstrInfo::analyzeBranch(), llvm::HexagonInstrInfo::analyzeBranch(), llvm::AArch64InstrInfo::analyzeBranch(), llvm::R600InstrInfo::analyzeBranch(), llvm::PPCInstrInfo::analyzeBranch(), llvm::X86InstrInfo::analyzeBranchPredicate(), llvm::LanaiInstrInfo::analyzeCompare(), llvm::AArch64InstrInfo::analyzeCompare(), llvm::HexagonInstrInfo::analyzeCompare(), llvm::ARMBaseInstrInfo::analyzeCompare(), llvm::PPCInstrInfo::analyzeCompare(), llvm::X86InstrInfo::analyzeCompare(), llvm::LanaiInstrInfo::analyzeSelect(), llvm::ARMBaseInstrInfo::analyzeSelect(), AnyAliasLiveIn(), AppendEndToFunction(), llvm::HexagonSubtarget::HVXMemLatencyMutation::apply(), areCandidatesToMergeOrPair(), areCombinableOperations(), llvm::HexagonFrameLowering::assignCalleeSavedSpillSlots(), AssignProtectedObjSet(), BBHasFallthrough(), BBIsJumpedOver(), branchTargetOperand(), llvm::AArch64InstrInfo::buildOutlinedFrame(), llvm::R600InstrInfo::buildSlotOfVectorInstruction(), llvm::R600InstrInfo::canBeConsideredALU(), canCombine(), canCompareBeNewValueJump(), canDefBePartOfLOH(), llvm::HexagonInstrInfo::canExecuteInBundle(), canFoldIntoCSel(), canInstrSubstituteCmpInstr(), llvm::X86InstrInfo::canMakeTailCallConditional(), canMoveInstsAcrossMemOp(), cannotCoexistAsymm(), llvm::SIInstrInfo::canReadVGPR(), llvm::SIInstrInfo::canShrink(), canTurnIntoCOPY(), llvm::HexagonInstrInfo::changeAddrMode_abs_io(), llvm::HexagonInstrInfo::changeAddrMode_io_abs(), llvm::HexagonInstrInfo::changeAddrMode_io_rr(), llvm::HexagonInstrInfo::changeAddrMode_rr_io(), llvm::HexagonInstrInfo::changeAddrMode_rr_ur(), llvm::HexagonInstrInfo::changeAddrMode_ur_rr(), changeFCMPPredToAArch64CC(), changesVGPRIndexingMode(), CheckXWPInstr(), llvm::R600InstrInfo::clearFlag(), llvm::ARMBaseInstrInfo::commuteInstructionImpl(), llvm::SIInstrInfo::commuteInstructionImpl(), llvm::PPCInstrInfo::commuteInstructionImpl(), llvm::SystemZInstrInfo::commuteInstructionImpl(), llvm::X86InstrInfo::commuteInstructionImpl(), llvm::SIInstrInfo::commuteOpcode(), computeBranchTargetAndInversion(), ConsecutiveInstr(), llvm::constrainSelectedInstRegOperands(), ContainsReg(), conversionLibcall(), ConvertImplicitDefToConstZero(), llvm::PPCInstrInfo::convertToImmediateForm(), convertToNonFlagSettingOpc(), llvm::ARMBaseInstrInfo::convertToThreeAddress(), llvm::SystemZInstrInfo::convertToThreeAddress(), llvm::X86InstrInfo::convertToThreeAddress(), llvm::SIInstrInfo::convertToThreeAddress(), llvm::createHexagonHardwareLoops(), createPHIsForCMOVsInSinkBB(), llvm::createR600ExpandSpecialInstrsPass(), llvm::createSIAddIMGInitPass(), llvm::createSIFixWWMLivenessPass(), llvm::createSIModeRegisterPass(), llvm::createSIWholeQuadModePass(), llvm::createX86FixupBWInsts(), llvm::createX86FixupSetCC(), llvm::TargetInstrInfo::defaultDefLatency(), llvm::R600InstrInfo::DefinesPredicate(), llvm::ARMFrameLowering::determineCalleeSaves(), doesNotGeneratecode(), llvm::HexagonInstrInfo::doesNotReturn(), dumpMachineInstrRangeWithSlotIndex(), llvm::SystemZHazardRecognizer::dumpSU(), llvm::SparcFrameLowering::eliminateCallFramePseudoInstr(), llvm::MSP430FrameLowering::eliminateCallFramePseudoInstr(), llvm::Thumb1FrameLowering::eliminateCallFramePseudoInstr(), llvm::XCoreFrameLowering::eliminateCallFramePseudoInstr(), llvm::ARCFrameLowering::eliminateCallFramePseudoInstr(), llvm::HexagonFrameLowering::eliminateCallFramePseudoInstr(), llvm::BPFRegisterInfo::eliminateFrameIndex(), llvm::MSP430RegisterInfo::eliminateFrameIndex(), llvm::SparcRegisterInfo::eliminateFrameIndex(), llvm::WebAssemblyRegisterInfo::eliminateFrameIndex(), llvm::LanaiRegisterInfo::eliminateFrameIndex(), llvm::AVRRegisterInfo::eliminateFrameIndex(), llvm::HexagonRegisterInfo::eliminateFrameIndex(), llvm::ThumbRegisterInfo::eliminateFrameIndex(), llvm::AArch64RegisterInfo::eliminateFrameIndex(), llvm::PPCRegisterInfo::eliminateFrameIndex(), llvm::X86RegisterInfo::eliminateFrameIndex(), emitBuildPairF64Pseudo(), EmitHiLo(), llvm::SystemZAsmPrinter::EmitInstruction(), llvm::WebAssemblyAsmPrinter::EmitInstruction(), llvm::HexagonHazardRecognizer::EmitInstruction(), llvm::PPCHazardRecognizer970::EmitInstruction(), llvm::ARMAsmPrinter::EmitInstruction(), llvm::X86AsmPrinter::EmitInstruction(), llvm::MipsAsmPrinter::EmitInstruction(), llvm::Mips16TargetLowering::EmitInstrWithCustomInserter(), llvm::R600TargetLowering::EmitInstrWithCustomInserter(), llvm::MipsSETargetLowering::EmitInstrWithCustomInserter(), llvm::BPFTargetLowering::EmitInstrWithCustomInserter(), llvm::RISCVTargetLowering::EmitInstrWithCustomInserter(), llvm::SparcTargetLowering::EmitInstrWithCustomInserter(), llvm::AVRTargetLowering::EmitInstrWithCustomInserter(), llvm::XCoreTargetLowering::EmitInstrWithCustomInserter(), llvm::MSP430TargetLowering::EmitInstrWithCustomInserter(), llvm::SITargetLowering::EmitInstrWithCustomInserter(), llvm::ARMTargetLowering::EmitInstrWithCustomInserter(), llvm::AArch64TargetLowering::EmitInstrWithCustomInserter(), llvm::MipsTargetLowering::EmitInstrWithCustomInserter(), llvm::SystemZTargetLowering::EmitInstrWithCustomInserter(), llvm::PPCTargetLowering::EmitInstrWithCustomInserter(), llvm::X86TargetLowering::EmitInstrWithCustomInserter(), llvm::ARMAsmPrinter::EmitJumpTableTBInst(), llvm::TargetLoweringBase::emitPatchPoint(), llvm::HexagonFrameLowering::emitPrologue(), llvm::MSP430TargetLowering::EmitShiftInstr(), emitSplitF64Pseudo(), llvm::TargetLoweringBase::emitXRayCustomEvent(), llvm::TargetLoweringBase::emitXRayTypedEvent(), enableAllocFrameElim(), eraseDeadBBsAndChildren(), llvm::HexagonEvaluator::evaluate(), llvm::BitTracker::MachineEvaluator::evaluate(), ExpandMOVImmSExti8(), llvm::BPFInstrInfo::expandPostRAPseudo(), llvm::SparcInstrInfo::expandPostRAPseudo(), llvm::R600InstrInfo::expandPostRAPseudo(), llvm::HexagonInstrInfo::expandPostRAPseudo(), llvm::ARMBaseInstrInfo::expandPostRAPseudo(), llvm::SIInstrInfo::expandPostRAPseudo(), llvm::AArch64InstrInfo::expandPostRAPseudo(), llvm::SystemZInstrInfo::expandPostRAPseudo(), llvm::X86InstrInfo::expandPostRAPseudo(), llvm::PPCInstrInfo::expandPostRAPseudo(), llvm::HexagonInstrInfo::expandVGatherPseudo(), llvm::PPCInstrInfo::expandVSXMemPseudo(), expandXorFP(), llvm::LegalizerHelper::fewerElementsVector(), llvm::MipsInstrInfo::findCommutedOpIndices(), llvm::PPCInstrInfo::findCommutedOpIndices(), llvm::X86InstrInfo::findCommutedOpIndices(), findCondCodeUsedByInstr(), findFirstPredicateSetterFrom(), findIncDecAfter(), findPotentialBlockers(), findSingleRegDef(), findSRegBaseAndIndex(), findStartOfTree(), findUncondBrI(), llvm::R600InstrInfo::fitsConstReadLimitations(), fixupCalleeSaveRestoreStackOffset(), fixupGlobalSaddr(), llvm::foldFrameOffset(), llvm::SystemZInstrInfo::FoldImmediate(), llvm::SIInstrInfo::FoldImmediate(), llvm::ARMBaseInstrInfo::FoldImmediate(), llvm::PPCInstrInfo::FoldImmediate(), foldImmediates(), llvm::TargetInstrInfo::foldMemoryOperand(), llvm::SystemZInstrInfo::foldMemoryOperandImpl(), llvm::X86InstrInfo::foldMemoryOperandImpl(), foldPatchpoint(), followSubRegDef(), fuseInstructionPair(), llvm::HexagonInstrInfo::genAllInsnTimingClasses(), llvm::LegalizerInfo::getAction(), getAdjustedCmp(), llvm::HexagonFrameLowering::getAlignaInstr(), llvm::AVRInstrInfo::getBranchDestBlock(), llvm::AArch64InstrInfo::getBranchDestBlock(), llvm::SIInstrInfo::getBranchDestBlock(), llvm::SystemZInstrInfo::getBranchInfo(), getBRccForPseudo(), llvm::WebAssembly::getCalleeOpNo(), getCmpForPseudo(), getComparePred(), getCompareSourceReg(), llvm::HexagonInstrInfo::getCompoundCandidateGroup(), llvm::HexagonInstrInfo::getCompoundOpcode(), llvm::getConstantFPVRegVal(), llvm::getConstantVRegVal(), getCopyRewriter(), llvm::HexagonInstrInfo::getDotCurOp(), llvm::HexagonInstrInfo::getDotNewOp(), llvm::HexagonInstrInfo::getDotNewPredJumpOp(), llvm::HexagonInstrInfo::getDotNewPredOp(), llvm::HexagonInstrInfo::getDotOldOp(), getDPPOp(), GetDSubRegs(), llvm::HexagonInstrInfo::getDuplexCandidateGroup(), llvm::HexagonInstrInfo::getEquivalentHWInstr(), llvm::ARMBaseInstrInfo::getExecutionDomain(), llvm::X86InstrInfo::getExecutionDomain(), llvm::X86InstrInfo::getExecutionDomainCustom(), llvm::ARMBaseInstrInfo::getExtractSubregLikeInputs(), llvm::R600InstrInfo::getFlagOp(), llvm::X86InstrInfo::getFMA3OpcodeToCommuteOperands(), getFMAPatterns(), llvm::SIRegisterInfo::getFrameIndexInstrOffset(), llvm::MachineInstrExpressionTrait::getHashValue(), llvm::ARMHazardRecognizer::getHazardType(), llvm::HexagonHazardRecognizer::getHazardType(), llvm::PPCHazardRecognizer970::getHazardType(), llvm::GCNHazardRecognizer::getHazardType(), llvm::HexagonInstrInfo::getIncrementValue(), llvm::ARMBaseInstrInfo::getInsertSubregLikeInputs(), llvm::AMDGPURegisterBankInfo::getInstrAlternativeMappings(), llvm::X86RegisterBankInfo::getInstrAlternativeMappings(), llvm::AArch64RegisterBankInfo::getInstrAlternativeMappings(), llvm::ARMRegisterBankInfo::getInstrMapping(), llvm::MipsRegisterBankInfo::getInstrMapping(), llvm::AMDGPURegisterBankInfo::getInstrMapping(), llvm::X86RegisterBankInfo::getInstrMapping(), llvm::AArch64RegisterBankInfo::getInstrMapping(), llvm::AArch64InstrInfo::getInstSizeInBytes(), llvm::ARCInstrInfo::getInstSizeInBytes(), llvm::RISCVInstrInfo::getInstSizeInBytes(), llvm::AVRInstrInfo::getInstSizeInBytes(), llvm::MipsInstrInfo::getInstSizeInBytes(), llvm::ARMBaseInstrInfo::getInstSizeInBytes(), llvm::SystemZInstrInfo::getInstSizeInBytes(), llvm::PPCInstrInfo::getInstSizeInBytes(), llvm::SIInstrInfo::getInstSizeInBytes(), llvm::getITInstrPredicate(), getLeaOP(), getLoadInfo(), getLoadStoreOffsetAlign(), getLSMultipleTransferSize(), getMaddPatterns(), getMappedOp(), llvm::LanaiInstrInfo::getMemOperandWithOffset(), llvm::SIInstrInfo::getMemOperandWithOffset(), llvm::LanaiInstrInfo::getMemOperandWithOffsetWidth(), llvm::AArch64InstrInfo::getMemOperandWithOffsetWidth(), getMemoryOpOffset(), getMemScale(), llvm::SIRegisterInfo::getMUBUFInstrOffset(), llvm::SIInstrInfo::getNamedImmOperand(), llvm::SIInstrInfo::getNamedOperand(), getNewValueJumpOpcode(), llvm::HexagonInstrInfo::getNonDotCurOp(), llvm::HexagonInstrInfo::getNonExtOpcode(), GetNonPseudoCallIndirectOpcode(), llvm::ARMBaseInstrInfo::getNumMicroOps(), getNumMicroOpsSwiftLdSt(), llvm::SIInstrInfo::getNumWaitStates(), getOffsetONFromFION(), getOModValue(), llvm::getOpcodeDef(), llvm::R600InstrInfo::getOperandIdx(), llvm::ARMBaseInstrInfo::getOperandLatency(), llvm::SIInstrInfo::getOpRegClass(), llvm::AArch64InstrInfo::getOutliningCandidateInfo(), llvm::AArch64InstrInfo::getOutliningType(), llvm::ARMBaseInstrInfo::getPartialRegUpdateClearance(), llvm::X86InstrInfo::getPartialRegUpdateClearance(), getPostIndexedLoadStoreOpcode(), llvm::HexagonInstrInfo::getPseudoInstrPair(), getReassignedChan(), getRegClassForUnfoldedLoad(), getRegClassFromGRPhysReg(), llvm::HexagonInstrInfo::getRegForm(), llvm::ARMBaseInstrInfo::getRegSequenceLikeInputs(), getRetOpcode(), getRetpolineSymbol(), llvm::HexagonInstrInfo::getSize(), llvm::TargetInstrInfo::getSPAdjust(), llvm::X86InstrInfo::getSPAdjust(), getSrcFromCopy(), llvm::R600InstrInfo::getSrcs(), getStartOrEndSlot(), getStoreOffset(), getStoreTarget(), getTypeFromTypeIdx(), getUnconditionalBrDisp(), llvm::X86InstrInfo::getUndefRegClearance(), getUnderlyingObjects(), llvm::SIInstrInfo::getVALUOp(), getVariantKind(), llvm::getVRegSubRegDef(), getWinAllocaAmount(), handleMiddleInst(), llvm::GISelCSEInfo::handleRecordedInst(), handleUse(), llvm::X86InstrInfo::hasHighOperandLatency(), HashMachineInstr(), llvm::HexagonInstrInfo::hasNonExtEquivalent(), llvm::HexagonInstrInfo::hasPseudoInstrPair(), llvm::TargetInstrInfo::hasReassociableSibling(), llvm::SIInstrInfo::hasUnwantedEffectsWhenEXECEmpty(), hasVulnerableLoad(), llvm::HexagonLowerToMC(), hoistAndMergeSGPRInits(), INITIALIZE_PASS(), llvm::SMSchedule::insert(), insertCopy(), InsertFPConstInst(), InsertFPImmInst(), InsertLDR_STR(), InsertSPConstInst(), InsertSPImmInst(), insertUndefLaneMask(), llvm::PPCInstrInfo::instrHasImmForm(), llvm::rdf::CopyPropagation::interpretAsCopy(), llvm::Mips16RegisterInfo::intRegClass(), llvm::HexagonInstrInfo::invertAndChangeJumpTarget(), llvm::isAArch64FrameOffsetLegal(), llvm::HexagonInstrInfo::isAddrModeWithOffset(), llvm::isAESPair(), isAnnotationLabel(), llvm::WebAssembly::isArgument(), isArtifact(), llvm::AArch64InstrInfo::isAsCheapAsAMove(), llvm::AArch64InstrInfo::isAssociativeAndCommutative(), llvm::PPCInstrInfo::isAssociativeAndCommutative(), llvm::X86InstrInfo::isAssociativeAndCommutative(), llvm::InstructionSelector::isBaseWithConstantOffset(), llvm::SIInstrInfo::isBasicBlockPrologue(), llvm::AMDGPUAsmPrinter::isBlockOnlyReachableByFallthrough(), isBranchRetTrap(), isBRccPseudo(), llvm::SIInstrInfo::isBufferSMRD(), isBundle(), llvm::WebAssembly::isCallDirect(), isCallerPreservedOrConstPhysReg(), llvm::WebAssembly::isCallIndirect(), isCandidateLoad(), isCandidateStore(), llvm::AArch64InstrInfo::isCandidateToMergeOrPair(), llvm::WebAssembly::isCatch(), isCFIInstruction(), isCMOVPseudo(), llvm::AArch64InstrInfo::isCoalescableExtInstr(), llvm::X86InstrInfo::isCoalescableExtInstr(), llvm::PPCInstrInfo::isCoalescableExtInstr(), isCombineInstrCandidateFP(), isCompareZero(), isConstant(), llvm::WebAssembly::isCopy(), isCopy(), isCopy(), isCopyFeedingInvariantStore(), llvm::ARMBaseInstrInfo::isCopyInstrImpl(), isCopyLike(), isCopyToExec(), isCrossCopy(), isCSRestore(), isCVTAToLocalCombinationCandidate(), isDataInvariant(), isDataInvariantLoad(), llvm::HexagonInstrInfo::isDeallocRet(), isDebugLabel(), isDebugValue(), isDefConvertible(), isDirectJump(), llvm::HexagonInstrInfo::isDotCurInst(), isEFLAGSLive(), isEHLabel(), isEligibleForITBlock(), isEndCF(), llvm::HexagonInstrInfo::isExtendable(), isExtractSubreg(), llvm::AArch64InstrInfo::isFalkorShiftExtFast(), isFirstInstructionInSequence(), llvm::HexagonInstrInfo::isFloat(), llvm::SIInstrInfo::isFoldableCopy(), isFpMulInstruction(), llvm::AArch64InstrInfo::isFPRCopy(), llvm::TargetInstrInfo::isFrameInstr(), llvm::PPCRegisterInfo::isFrameOffsetLegal(), llvm::TargetInstrInfo::isFrameSetup(), isFuncletReturnInstr(), isGCLabel(), llvm::AArch64InstrInfo::isGPRCopy(), llvm::AArch64InstrInfo::isGPRZero(), isGreaterThanNBitTFRI(), isHardwareLoop(), isHighLatencyCPSR(), llvm::SIInstrInfo::isHighLatencyInstruction(), isIdenticalTo(), llvm::SIInstrInfo::isImmOperandLegal(), isImmValidForOpcode(), isImplicitDef(), isImplicitlyDef(), isIncrementOrDecrement(), llvm::HexagonInstrInfo::isIndirectCall(), llvm::HexagonInstrInfo::isIndirectL4Return(), isInlineAsm(), isInlineConstantIfFolded(), isInsertSubreg(), llvm::HexagonInstrInfo::isJumpR(), llvm::HexagonInstrInfo::isJumpWithinBranchRange(), isKill(), llvm::HexagonInstrInfo::isLateResultInstr(), isLEA(), isLEASimpleIncOrDec(), llvm::HexagonPacketizerList::isLegalToPacketizeTogether(), llvm::isLiteralsPair(), isLiveOut(), isLoadAbsSet(), isLoadAndTestAsCmp(), llvm::RISCVInstrInfo::isLoadFromStackSlot(), llvm::MipsSEInstrInfo::isLoadFromStackSlot(), llvm::ARCInstrInfo::isLoadFromStackSlot(), llvm::XCoreInstrInfo::isLoadFromStackSlot(), llvm::LanaiInstrInfo::isLoadFromStackSlot(), llvm::SparcInstrInfo::isLoadFromStackSlot(), llvm::HexagonInstrInfo::isLoadFromStackSlot(), llvm::AArch64InstrInfo::isLoadFromStackSlot(), llvm::AVRInstrInfo::isLoadFromStackSlot(), llvm::ARMBaseInstrInfo::isLoadFromStackSlot(), llvm::X86InstrInfo::isLoadFromStackSlot(), llvm::PPCInstrInfo::isLoadFromStackSlot(), llvm::LanaiInstrInfo::isLoadFromStackSlotPostFE(), llvm::X86InstrInfo::isLoadFromStackSlotPostFE(), isLogicalOpOnExec(), llvm::HexagonInstrInfo::isLoopN(), llvm::SIInstrInfo::isLowLatencyInstruction(), llvm::WebAssembly::isMarker(), isMatchingStore(), llvm::HexagonInstrInfo::isMemOp(), isMemoryOp(), isMergeableLdStUpdate(), isMetaInstruction(), isMla(), IsMovepDestinationRegPair(), isMSInlineAsm(), isMul(), isNonFoldablePartialRegisterLoad(), llvm::SIInstrInfo::isNonUniformBranchInstr(), isOptimizeCompareCandidate(), isORCopyInst(), llvm::AArch64InstrInfo::isPairableLdStInst(), isPairedLdSt(), isPHI(), isPhysicalRegCopy(), llvm::R600InstrInfo::isPredicable(), llvm::SystemZInstrInfo::isPredicable(), llvm::HexagonInstrInfo::isPredicable(), llvm::PPCInstrInfo::isPredicable(), isPreISelGenericFloatingPointOpcode(), llvm::ARMBaseInstrInfo::isProfitableToIfCvt(), isPromotableLoadFromStore(), isPromotableZeroStoreInst(), isPushPop(), isReadOrWriteToDSPReg(), llvm::WebAssemblyInstrInfo::isReallyTriviallyReMaterializable(), llvm::SIInstrInfo::isReallyTriviallyReMaterializable(), llvm::X86InstrInfo::isReallyTriviallyReMaterializable(), llvm::PPCInstrInfo::isReallyTriviallyReMaterializable(), isRedundantFlagInstr(), llvm::R600InstrInfo::isRegisterLoad(), llvm::R600InstrInfo::isRegisterStore(), isRegSequence(), llvm::VLIWResourceModel::isResourceAvailable(), llvm::WebAssembly::isRethrow(), IsSafeAndProfitableToMove(), isSafeToFoldImmIntoCopy(), llvm::HexagonInstrInfo::isSaveCalleeSavedRegsCall(), isSchedBarrier(), llvm::AArch64InstrInfo::isSchedulingBoundary(), llvm::SIInstrInfo::isSchedulingBoundary(), isSecondInstructionInSequence(), llvm::AArch64InstrInfo::isSEHInstruction(), isSelectPseudo(), isSendMsgTraceDataOrGDS(), isSExtLoad(), llvm::HexagonInstrInfo::isSignExtendingLoad(), isSignExtendingOp(), llvm::PPCInstrInfo::isSignOrZeroExtended(), isSimpleIf(), isSimpleIndexCalc(), llvm::HexagonPacketizerList::isSoloInstruction(), llvm::HexagonInstrInfo::isSpillPredRegOp(), llvm::SystemZInstrInfo::isStackSlotCopy(), llvm::RISCVInstrInfo::isStoreToStackSlot(), llvm::MipsSEInstrInfo::isStoreToStackSlot(), llvm::LanaiInstrInfo::isStoreToStackSlot(), llvm::ARCInstrInfo::isStoreToStackSlot(), llvm::XCoreInstrInfo::isStoreToStackSlot(), llvm::AArch64InstrInfo::isStoreToStackSlot(), llvm::SparcInstrInfo::isStoreToStackSlot(), llvm::HexagonInstrInfo::isStoreToStackSlot(), llvm::AVRInstrInfo::isStoreToStackSlot(), llvm::ARMBaseInstrInfo::isStoreToStackSlot(), llvm::X86InstrInfo::isStoreToStackSlot(), llvm::PPCInstrInfo::isStoreToStackSlot(), llvm::X86InstrInfo::isStoreToStackSlotPostFE(), isSubregToReg(), isSuitableForMask(), isSystemInstr(), llvm::WebAssembly::isTee(), llvm::WebAssembly::isThrow(), llvm::HexagonInstrInfo::isToBeScheduledASAP(), isTransformable(), isTransient(), llvm::R600InstrInfo::isTransOnly(), llvm::TargetInstrInfo::isTriviallyReMaterializable(), IsUnconditionalJump(), llvm::X86InstrInfo::isUnconditionalTailCall(), llvm::AArch64InstrInfo::isUnscaledLdSt(), isUseDefConvertible(), isValidClauseInst(), llvm::HexagonInstrInfo::isVecALU(), llvm::R600InstrInfo::isVector(), llvm::R600InstrInfo::isVectorOnly(), llvm::HexagonInstrInfo::isZeroExtendingLoad(), isZeroExtendingOp(), isZExtLoad(), llvm::AArch64LegalizerInfo::legalizeCustom(), llvm::ARMLegalizerInfo::legalizeCustom(), llvm::SIInstrInfo::legalizeOperands(), llvm::SIInstrInfo::legalizeOperandsVOP2(), llvm::SIInstrInfo::legalizeOperandsVOP3(), llvm::SIInstrInfo::legalizeOpWithMove(), llvm::LegalizerHelper::libcall(), llvm::XCoreMCInstLower::Lower(), llvm::SystemZMCInstLower::lower(), llvm::MSP430MCInstLower::Lower(), llvm::ARCMCInstLower::Lower(), llvm::BPFMCInstLower::Lower(), llvm::LanaiMCInstLower::Lower(), llvm::MipsMCInstLower::Lower(), llvm::AArch64MCInstLower::Lower(), llvm::WebAssemblyMCInstLower::Lower(), llvm::LegalizerHelper::lower(), llvm::LowerARMMachineInstrToMCInst(), LowerFPToInt(), llvm::AVRMCInstLower::lowerInstruction(), llvm::MipsMCInstLower::LowerOperand(), llvm::LowerPPCMachineInstrToMCInst(), llvm::LowerRISCVMachineInstrToMCInst(), llvm::LowerSparcMachineInstrToMCInst(), makeImplicit(), MakeM0Inst(), llvm::MIPatternMatch::BinaryOp_match< LHS_P, RHS_P, Opcode, Commutable >::match(), llvm::MIPatternMatch::UnaryOp_match< SrcTy, Opcode >::match(), MatchingStackOffset(), matchPair(), matchSwap(), mayCombineMisaligned(), llvm::mayOptimizeThumb2Instruction(), llvm::WebAssembly::mayThrow(), MoveAndTeeForMultiUse(), llvm::SIInstrInfo::moveToVALU(), llvm::LegalizerHelper::narrowScalar(), llvm::PPCRegisterInfo::needsFrameBaseReg(), llvm::ARMBaseRegisterInfo::needsFrameBaseReg(), needsStackFrame(), offsetMinAlign(), llvm::rdf::operator<<(), llvm::LanaiInstrInfo::optimizeCompareInstr(), llvm::AArch64InstrInfo::optimizeCompareInstr(), llvm::ARMBaseInstrInfo::optimizeCompareInstr(), llvm::PPCInstrInfo::optimizeCompareInstr(), llvm::X86InstrInfo::optimizeCompareInstr(), llvm::AArch64InstrInfo::optimizeCondBranch(), llvm::LanaiInstrInfo::optimizeSelect(), llvm::ARMBaseInstrInfo::optimizeSelect(), optimizeVcndVcmpPair(), packCmovGroup(), parseCond(), parseCondBranch(), performCustomAdjustments(), phiHasBreakDef(), llvm::HexagonInstrInfo::predCanBeUsedAsDotNew(), llvm::ARMBaseInstrInfo::PredicateInstruction(), llvm::R600InstrInfo::PredicateInstruction(), llvm::SystemZInstrInfo::PredicateInstruction(), llvm::HexagonInstrInfo::PredicateInstruction(), llvm::PPCInstrInfo::PredicateInstruction(), llvm::GCNHazardRecognizer::PreEmitNoops(), preservesValueOf(), llvm::MIPrinter::print(), print(), llvm::WebAssemblyAsmPrinter::PrintAsmOperand(), printConstant(), llvm::MipsAsmPrinter::printMemOperand(), llvm::ARMBaseInstrInfo::produceSameValue(), profitImm(), Query(), llvm::R600InstrInfo::readsLDSSrcReg(), readsVCCZ(), llvm::TargetInstrInfo::reassociateOps(), llvm::GISelCSEInfo::recordNewInstruction(), llvm::StackMaps::recordPatchPoint(), llvm::StackMaps::recordStackMap(), llvm::StackMaps::recordStatepoint(), llvm::HexagonInstrInfo::reduceLoopCount(), regIsPICBase(), registerDefinedBetween(), llvm::R600SchedStrategy::releaseBottomNode(), llvm::ARMBaseInstrInfo::reMaterialize(), llvm::X86InstrInfo::reMaterialize(), removeModOperands(), removeRedundantBlockingStores(), removeTerminatorBit(), llvm::X86InstrInfo::replaceBranchWithTailCall(), ReplaceFrameIndex(), llvm::PPCInstrInfo::replaceInstrWithLI(), llvm::VLIWResourceModel::reserveResources(), llvm::HexagonInstrInfo::reversePredSense(), llvm::rewriteAArch64FrameIndex(), llvm::rewriteARMFrameIndex(), llvm::ThumbRegisterInfo::rewriteFrameIndex(), RewriteP2Align(), llvm::rewriteT2FrameIndex(), llvm::InstructionSelect::runOnMachineFunction(), llvm::InsertNOPLoad::runOnMachineFunction(), llvm::Legalizer::runOnMachineFunction(), llvm::DetectRoundChange::runOnMachineFunction(), llvm::FixAllFDIVSQRT::runOnMachineFunction(), llvm::AMDGPUInstructionSelector::select(), selectCopy(), llvm::ARMBaseInstrInfo::setExecutionDomain(), llvm::X86InstrInfo::setExecutionDomain(), llvm::X86InstrInfo::setExecutionDomainCustom(), sForm(), llvm::AArch64InstrInfo::shouldClusterMemOps(), shouldPreventUndefRegUpdateMemFold(), shouldReadExec(), shouldScheduleAdjacent(), shrinkScalarCompare(), shrinkScalarLogicOp(), simpleLibcall(), llvm::SIScheduleDAGMI::SIScheduleDAGMI(), sizeOfSPAdjustment(), splitBlock(), llvm::SITargetLowering::splitKillBlock(), splitMBB(), supportLoadFromLiteral(), swapMIOperands(), tieOpsIfNeeded(), tryAddToFoldList(), tryChangeVGPRtoSGPRinCopy(), llvm::LegalizationArtifactCombiner::tryCombineAnyExt(), llvm::CombinerHelper::tryCombineCopy(), llvm::CombinerHelper::tryCombineExtendingLoads(), llvm::LegalizationArtifactCombiner::tryCombineInstruction(), llvm::LegalizationArtifactCombiner::tryCombineMerges(), llvm::LegalizationArtifactCombiner::tryCombineSExt(), llvm::LegalizationArtifactCombiner::tryCombineZExt(), tryConstantFoldOp(), llvm::LegalizationArtifactCombiner::tryFoldImplicitDef(), tryFoldInst(), llvm::tryFoldSPUpdateIntoPushPop(), trySequenceOfOnes(), llvm::X86InstrInfo::unfoldMemoryOperand(), UpdateCPSRUse(), updateKillStatus(), updateOperand(), llvm::HexagonPacketizerList::useCalleesSP(), llvm::HexagonPacketizerList::useCallersSP(), usedAsAddr(), llvm::R600InstrInfo::usesTextureCache(), llvm::R600InstrInfo::usesVertexCache(), llvm::MipsInstrInfo::verifyInstruction(), llvm::SIInstrInfo::verifyInstruction(), VerifyLowRegs(), VisitGlobalVariableForEmission(), llvm::LegalizerHelper::widenScalar(), and X86SelectAddress().
|
inline |
Definition at line 414 of file MachineInstr.h.
References assert(), and getNumOperands().
Referenced by llvm::AArch64CallLowering::AArch64CallLowering(), addExclusiveRegPair(), llvm::ScheduleDAGInstrs::addPhysRegDataDeps(), llvm::ScheduleDAGInstrs::addPhysRegDeps(), addRegisterDead(), addRegisterKilled(), addRegsToSet(), addSegmentsWithValNo(), llvm::ScheduleDAGInstrs::addVRegDefDeps(), llvm::ScheduleDAGInstrs::addVRegUseDeps(), adjustDefLatency(), llvm::SITargetLowering::AdjustInstrPostInstrSelection(), llvm::HexagonSubtarget::adjustSchedDependency(), allPhiOperandsUndefined(), llvm::analyzeArguments(), llvm::XCoreInstrInfo::analyzeBranch(), llvm::NVPTXInstrInfo::analyzeBranch(), llvm::SparcInstrInfo::analyzeBranch(), llvm::MipsInstrInfo::analyzeBranch(), llvm::HexagonInstrInfo::analyzeBranch(), llvm::AArch64InstrInfo::analyzeBranch(), llvm::R600InstrInfo::analyzeBranch(), llvm::PPCInstrInfo::analyzeBranch(), llvm::X86InstrInfo::analyzeBranchPredicate(), llvm::LanaiInstrInfo::analyzeCompare(), llvm::AArch64InstrInfo::analyzeCompare(), llvm::SystemZInstrInfo::analyzeCompare(), llvm::HexagonInstrInfo::analyzeCompare(), llvm::ARMBaseInstrInfo::analyzeCompare(), llvm::PPCInstrInfo::analyzeCompare(), llvm::X86InstrInfo::analyzeCompare(), llvm::LanaiInstrInfo::analyzeSelect(), llvm::ARMBaseInstrInfo::analyzeSelect(), AnyAliasLiveIn(), llvm::LiveRangeEdit::anyRematerializable(), AppendEndToFunction(), llvm::HexagonSubtarget::CallMutation::apply(), llvm::RegisterBankInfo::applyDefaultMapping(), llvm::SwingSchedulerDAG::applyInstrChange(), areCandidatesToMergeOrPair(), areCombinableOperations(), llvm::HexagonInstrInfo::areMemAccessesTriviallyDisjoint(), llvm::HexagonFrameLowering::assignCalleeSavedSpillSlots(), AssignProtectedObjSet(), BBHasFallthrough(), BBIsJumpedOver(), llvm::BTFDebug::beginInstruction(), llvm::biasPhysReg(), llvm::ARMBaseInstrInfo::breakPartialRegDependency(), llvm::X86InstrInfo::breakPartialRegDependency(), buildEXP(), llvm::SIInstrInfo::buildExtractSubRegOrImm(), llvm::AArch64InstrInfo::buildOutlinedFrame(), llvm::ScheduleDAGInstrs::buildSchedGraph(), llvm::SIInstrInfo::buildShrunkInst(), llvm::R600InstrInfo::buildSlotOfVectorInstruction(), calculateSetFPREG(), llvm::EHStreamer::callToNoUnwindFunction(), canBeExpandedToORR(), canCombine(), canCompareBeNewValueJump(), canDefBePartOfLOH(), llvm::HexagonInstrInfo::canExecuteInBundle(), canFoldCopy(), canFoldIntoCSel(), canFoldIntoMOVCC(), canFoldIntoSelect(), llvm::X86InstrInfo::canMakeTailCallConditional(), canMoveInstsAcrossMemOp(), llvm::HexagonPacketizerList::canPromoteToDotCur(), llvm::HexagonPacketizerList::canPromoteToNewValueStore(), canTurnIntoCOPY(), changeFCMPPredToAArch64CC(), checkRegOnlyPHIInputs(), CheckXWPInstr(), llvm::X86InstrInfo::classifyLEAReg(), llvm::HexagonPacketizerList::cleanUpDotCur(), clearKillFlags(), clobbersCTR(), llvm::WebAssemblyDebugValueManager::clone(), collectDebugValues(), CombineCVTAToLocal(), llvm::WebAssemblyInstrInfo::commuteInstructionImpl(), llvm::ARMBaseInstrInfo::commuteInstructionImpl(), llvm::TargetInstrInfo::commuteInstructionImpl(), llvm::SIInstrInfo::commuteInstructionImpl(), llvm::PPCInstrInfo::commuteInstructionImpl(), llvm::X86InstrInfo::commuteInstructionImpl(), commuteVPTERNLOG(), CompareMBBNumbers(), llvm::HexagonEvaluator::composeWithSubRegIndex(), computeBranchTargetAndInversion(), computeExprForSpill(), llvm::TargetSchedModel::computeOperandLatency(), llvm::TargetSchedModel::computeOutputLatency(), ConsecutiveInstr(), llvm::InstructionSelector::constrainOperandRegToRegClass(), llvm::constrainSelectedInstRegOperands(), conversionLibcall(), ConvertDoubleToBytes(), ConvertImplicitDefToConstZero(), llvm::PPCInstrInfo::convertToImmediateForm(), llvm::ARMBaseInstrInfo::convertToThreeAddress(), llvm::SystemZInstrInfo::convertToThreeAddress(), llvm::X86InstrInfo::convertToThreeAddress(), llvm::SIInstrInfo::convertToThreeAddress(), copyExtraImplicitOps(), copyHint(), copyImplicitOps(), llvm::R600InstrInfo::copyPhysReg(), llvm::createBreakFalseDeps(), llvm::createCopyConstrainDAGMutation(), llvm::LiveRangeCalc::createDeadDefs(), llvm::SSAUpdaterTraits< MachineSSAUpdater >::CreateEmptyPHI(), llvm::createHexagonHardwareLoops(), createPHIsForCMOVsInSinkBB(), createPHIsForSelects(), llvm::createR600ExpandSpecialInstrsPass(), llvm::createSIWholeQuadModePass(), llvm::createX86FixupBWInsts(), llvm::createX86FixupLEAs(), llvm::createX86FixupSetCC(), llvm::createX86OptimizeLEAs(), llvm::createXCoreFrameToArgsOffsetEliminationPass(), CriticalPathStep(), definesFullReg(), llvm::ARMBaseInstrInfo::DefinesPredicate(), llvm::HexagonInstrInfo::DefinesPredicate(), llvm::PPCInstrInfo::DefinesPredicate(), llvm::ARMFrameLowering::determineCalleeSaves(), llvm::HexagonFrameLowering::determineCalleeSaves(), doCandidateWalk(), dumpMachineInstrRangeWithSlotIndex(), llvm::SparcFrameLowering::eliminateCallFramePseudoInstr(), llvm::MSP430FrameLowering::eliminateCallFramePseudoInstr(), llvm::AVRFrameLowering::eliminateCallFramePseudoInstr(), llvm::XCoreFrameLowering::eliminateCallFramePseudoInstr(), llvm::ARCFrameLowering::eliminateCallFramePseudoInstr(), llvm::BPFRegisterInfo::eliminateFrameIndex(), llvm::MSP430RegisterInfo::eliminateFrameIndex(), llvm::SparcRegisterInfo::eliminateFrameIndex(), llvm::WebAssemblyRegisterInfo::eliminateFrameIndex(), llvm::RISCVRegisterInfo::eliminateFrameIndex(), llvm::LanaiRegisterInfo::eliminateFrameIndex(), llvm::AVRRegisterInfo::eliminateFrameIndex(), llvm::HexagonRegisterInfo::eliminateFrameIndex(), llvm::NVPTXRegisterInfo::eliminateFrameIndex(), llvm::ARCRegisterInfo::eliminateFrameIndex(), llvm::XCoreRegisterInfo::eliminateFrameIndex(), llvm::ThumbRegisterInfo::eliminateFrameIndex(), llvm::MipsRegisterInfo::eliminateFrameIndex(), llvm::AArch64RegisterInfo::eliminateFrameIndex(), llvm::PPCRegisterInfo::eliminateFrameIndex(), llvm::X86RegisterInfo::eliminateFrameIndex(), llvm::ARMBaseRegisterInfo::eliminateFrameIndex(), llvm::PPCTargetLowering::EmitAtomicBinary(), emitBuildPairF64Pseudo(), llvm::AsmPrinter::emitCFIInstruction(), emitClzero(), emitDebugValueComment(), emitDirectiveRelocJalr(), llvm::PPCTargetLowering::emitEHSjLjLongJmp(), llvm::PPCTargetLowering::emitEHSjLjSetJmp(), llvm::AVRFrameLowering::emitEpilogue(), llvm::MSP430FrameLowering::emitEpilogue(), emitError(), llvm::AArch64TargetLowering::EmitF128CSEL(), llvm::AsmPrinter::emitFrameAlloc(), EmitGCCInlineAsmStr(), EmitHiLo(), llvm::AsmPrinter::emitImplicitDef(), emitIncrement(), emitIndirectDst(), emitIndirectSrc(), llvm::SystemZAsmPrinter::EmitInstruction(), llvm::ARMAsmPrinter::EmitInstruction(), llvm::X86AsmPrinter::EmitInstruction(), llvm::MipsAsmPrinter::EmitInstruction(), llvm::R600TargetLowering::EmitInstrWithCustomInserter(), llvm::BPFTargetLowering::EmitInstrWithCustomInserter(), llvm::RISCVTargetLowering::EmitInstrWithCustomInserter(), llvm::AVRTargetLowering::EmitInstrWithCustomInserter(), llvm::XCoreTargetLowering::EmitInstrWithCustomInserter(), llvm::MSP430TargetLowering::EmitInstrWithCustomInserter(), llvm::SITargetLowering::EmitInstrWithCustomInserter(), llvm::ARMTargetLowering::EmitInstrWithCustomInserter(), llvm::MipsTargetLowering::EmitInstrWithCustomInserter(), llvm::PPCTargetLowering::EmitInstrWithCustomInserter(), llvm::X86TargetLowering::EmitInstrWithCustomInserter(), llvm::ARMAsmPrinter::EmitJumpTableAddrs(), llvm::ARMAsmPrinter::EmitJumpTableInsts(), llvm::ARMAsmPrinter::EmitJumpTableTBInst(), emitKill(), emitLoadM0FromVGPRLoop(), emitMonitor(), EmitMSInlineAsmStr(), EmitNop(), EmitNops(), llvm::PPCTargetLowering::EmitPartwordAtomicBinary(), llvm::TargetLoweringBase::emitPatchPoint(), emitPostSt(), llvm::AVRFrameLowering::emitPrologue(), llvm::MSP430FrameLowering::emitPrologue(), emitRDPKRU(), llvm::MSP430TargetLowering::EmitShiftInstr(), emitSplitF64Pseudo(), llvm::X86FrameLowering::emitSPUpdate(), emitWRPKRU(), emitXBegin(), llvm::TargetLoweringBase::emitXRayCustomEvent(), llvm::TargetLoweringBase::emitXRayTypedEvent(), eraseDeadBBsAndChildren(), eraseGPOpnd(), llvm::LiveRangeEdit::eraseVirtReg(), llvm::HexagonEvaluator::evaluate(), llvm::BitTracker::MachineEvaluator::evaluate(), Expand2AddrUndef(), expandLoadStackGuard(), expandMOV32r1(), ExpandMOVImmSExti8(), expandNOVLXLoad(), expandNOVLXStore(), llvm::R600InstrInfo::expandPostRAPseudo(), llvm::HexagonInstrInfo::expandPostRAPseudo(), llvm::SIInstrInfo::expandPostRAPseudo(), llvm::ARMBaseInstrInfo::expandPostRAPseudo(), llvm::AArch64InstrInfo::expandPostRAPseudo(), llvm::SystemZInstrInfo::expandPostRAPseudo(), llvm::PPCInstrInfo::expandPostRAPseudo(), llvm::SparcTargetLowering::expandSelectCC(), llvm::HexagonInstrInfo::expandVGatherPseudo(), llvm::PPCInstrInfo::expandVSXMemPseudo(), llvm::CallLowering::ValueHandler::extendRegister(), llvm::DbgVariableLocation::extractFromMachineInstruction(), llvm::LegalizerHelper::fewerElementsVector(), llvm::SMSchedule::finalizeSchedule(), llvm::MipsInstrInfo::findCommutedOpIndices(), llvm::X86InstrInfo::findCommutedOpIndices(), llvm::TargetInstrInfo::findCommutedOpIndices(), findCondCodeUsedByInstr(), findCorrespondingPred(), findDefIdx(), findIncDecAfter(), findInlineAsmFlagIdx(), findPotentialBlockers(), findRegisterDefOperand(), findRegisterDefOperandIdx(), findRegisterUseOperand(), findRegisterUseOperandIdx(), findSingleRegDef(), findSRegBaseAndIndex(), findStartOfTree(), findTiedOperandIdx(), findUncondBrI(), findUseIdx(), finishConvertToThreeAddress(), llvm::fixStackStores(), fixupCalleeSaveRestoreStackOffset(), fixupGlobalSaddr(), llvm::SwingSchedulerDAG::fixupRegisterOverlaps(), llvm::foldFrameOffset(), llvm::SystemZInstrInfo::FoldImmediate(), llvm::SIInstrInfo::FoldImmediate(), llvm::ARMBaseInstrInfo::FoldImmediate(), llvm::PPCInstrInfo::FoldImmediate(), foldImmediates(), llvm::TargetInstrInfo::foldMemoryOperand(), llvm::AArch64InstrInfo::foldMemoryOperandImpl(), llvm::SystemZInstrInfo::foldMemoryOperandImpl(), llvm::X86InstrInfo::foldMemoryOperandImpl(), foldPatchpoint(), foldVGPRCopyIntoRegSequence(), followSubRegDef(), FuseInst(), FuseTwoAddrInst(), llvm::AArch64InstrInfo::genAlternativeCodeSequence(), llvm::TargetInstrInfo::genAlternativeCodeSequence(), genFusedMultiply(), genMaddR(), getAbsSetOperand(), llvm::getAddressFromInstr(), getAdjustedCmp(), llvm::HexagonFrameLowering::getAlignaInstr(), llvm::Localizer::getAnalysisUsage(), llvm::RegBankSelect::getAnalysisUsage(), llvm::HexagonInstrInfo::getBaseAndOffset(), llvm::HexagonInstrInfo::getBaseAndOffsetPosition(), getBaseOperand(), llvm::RISCVInstrInfo::getBranchDestBlock(), llvm::AVRInstrInfo::getBranchDestBlock(), llvm::AArch64InstrInfo::getBranchDestBlock(), llvm::SIInstrInfo::getBranchDestBlock(), llvm::SystemZInstrInfo::getBranchInfo(), llvm::HexagonInstrInfo::getBundleNoShuf(), getCallTargetRegOpnd(), getCmpForPseudo(), getComparePred(), getCompareSourceReg(), llvm::HexagonInstrInfo::getCompoundCandidateGroup(), llvm::HexagonInstrInfo::getCompoundOpcode(), getConstant(), llvm::getConstantFPVRegVal(), llvm::getConstantVRegVal(), getCopyRegClasses(), getDebugExpression(), getDebugLabel(), getDebugLocValue(), getDebugVariable(), getDispOperand(), llvm::HexagonInstrInfo::getDotNewPredJumpOp(), GetDSubRegs(), llvm::HexagonInstrInfo::getDuplexCandidateGroup(), llvm::X86InstrInfo::getExecutionDomainCustom(), llvm::TargetInstrInfo::getExtractSubregInputs(), llvm::ARMBaseInstrInfo::getExtractSubregLikeInputs(), llvm::R600InstrInfo::getFlagOp(), getFMAPatterns(), getFPReg(), llvm::X86InstrInfo::getFrameAdjustment(), llvm::ARMBaseRegisterInfo::getFrameIndexInstrOffset(), getFrameIndexOperandNum(), llvm::MSP430InstrInfo::getFramePoppedByCallee(), llvm::ARMBaseInstrInfo::getFramePred(), llvm::TargetInstrInfo::getFrameSize(), llvm::TargetInstrInfo::getFrameTotalSize(), llvm::NVPTXAsmPrinter::getFunctionFrameSymbol(), llvm::SystemZInstrInfo::getFusedCompare(), llvm::HexagonHazardRecognizer::getHazardType(), llvm::StackMapOpers::getID(), GetImm(), getImmOrMaterializedImm(), llvm::SSAUpdaterTraits< MachineSSAUpdater >::PHI_iterator::getIncomingBlock(), llvm::SSAUpdaterTraits< MachineSSAUpdater >::PHI_iterator::getIncomingValue(), llvm::HexagonInstrInfo::getIncrementValue(), getInitPhiReg(), getInlineAsmDialect(), llvm::TargetInstrInfo::getInsertSubregInputs(), llvm::ARMBaseInstrInfo::getInsertSubregLikeInputs(), llvm::AMDGPURegisterBankInfo::getInstrAlternativeMappings(), llvm::X86RegisterBankInfo::getInstrAlternativeMappings(), llvm::AArch64RegisterBankInfo::getInstrAlternativeMappings(), llvm::PPCInstrInfo::getInstrLatency(), llvm::ARMRegisterBankInfo::getInstrMapping(), llvm::AMDGPURegisterBankInfo::getInstrMapping(), llvm::X86RegisterBankInfo::getInstrMapping(), llvm::AArch64RegisterBankInfo::getInstrMapping(), llvm::RegisterBankInfo::getInstrMappingImpl(), llvm::getInstrPredicate(), getInstrVecReg(), llvm::AArch64InstrInfo::getInstSizeInBytes(), llvm::ARCInstrInfo::getInstSizeInBytes(), llvm::MSP430InstrInfo::getInstSizeInBytes(), llvm::RISCVInstrInfo::getInstSizeInBytes(), llvm::AVRInstrInfo::getInstSizeInBytes(), llvm::MipsInstrInfo::getInstSizeInBytes(), llvm::ARMBaseInstrInfo::getInstSizeInBytes(), llvm::SystemZInstrInfo::getInstSizeInBytes(), llvm::PPCInstrInfo::getInstSizeInBytes(), llvm::SIInstrInfo::getInstSizeInBytes(), getLdStBaseOp(), getLdStOffsetOp(), getLdStRegOp(), getLeaOP(), getLoadInfo(), getLoadStoreBaseOp(), getLoadStoreOffsetAlign(), getLoadStoreRegOp(), getLoopPhiReg(), getMaddPatterns(), getMappedOp(), llvm::AArch64InstrInfo::getMemOpBaseRegImmOfsOffsetOperand(), llvm::MipsInstrInfo::GetMemOperand(), llvm::X86InstrInfo::getMemOperandWithOffset(), llvm::LanaiInstrInfo::getMemOperandWithOffsetWidth(), llvm::AArch64InstrInfo::getMemOperandWithOffsetWidth(), getMemOpKey(), getMemoryOpOffset(), llvm::SIRegisterInfo::getMUBUFInstrOffset(), llvm::SIInstrInfo::getNamedImmOperand(), llvm::SIInstrInfo::getNamedOperand(), getNewSource(), getNewValueJumpOpcode(), llvm::PatchPointOpers::getNextScratchIdx(), llvm::rdf::DataFlowGraph::getNextShadow(), llvm::PatchPointOpers::getNumCallArgs(), getNumExplicitDefs(), getNumExplicitOperands(), getNumMicroOpsSwiftLdSt(), llvm::StackMapOpers::getNumPatchBytes(), llvm::SIInstrInfo::getNumWaitStates(), getOffsetFromIndices(), getOModValue(), llvm::getOpcodeDef(), llvm::PPCInstrInfo::getOperandLatency(), llvm::ARMBaseInstrInfo::getOperandLatency(), llvm::HexagonInstrInfo::getOperandLatency(), llvm::MachineRegisterInfo::defusechain_iterator< ReturnUses, ReturnDefs, SkipDebug, ByOperand, ByInstr, ByBundle >::getOperandNo(), llvm::SIInstrInfo::getOpRegClass(), llvm::SIInstrInfo::getOpSize(), llvm::X86GenRegisterBankInfo::getPartialMappingIdx(), llvm::ARMBaseInstrInfo::getPartialRegUpdateClearance(), llvm::X86InstrInfo::getPartialRegUpdateClearance(), getPHIDeps(), getPHIDestReg(), getPHIPred(), getPhiRegs(), getPHISourceReg(), getPHISrcRegOpIdx(), llvm::SSAUpdaterTraits< MachineSSAUpdater >::GetPHIValue(), getPostIncrementOperand(), getPostIndexedLoadStoreOpcode(), llvm::ARMBaseInstrInfo::getPredicate(), getReassignedChan(), getRegClassConstraint(), getRegClassConstraintEffect(), getRegClassConstraintEffectForVReg(), getRegClassForUnfoldedLoad(), getRegClassFromGRPhysReg(), llvm::TargetInstrInfo::getRegSequenceInputs(), llvm::ARMBaseInstrInfo::getRegSequenceLikeInputs(), llvm::getRegSequenceSubReg(), getRegsUsedByPHIs(), getRetOpcode(), getRetpolineSymbol(), getShuffleComment(), getSingleDef(), llvm::HexagonInstrInfo::getSize(), getSmrdOpcode(), llvm::X86InstrInfo::getSPAdjust(), getSrcFromCopy(), llvm::R600InstrInfo::getSrcs(), getStartOrEndSlot(), getStoreOffset(), getStoreTarget(), getStoreValueOperand(), getSubOpcode(), getTag(), getTargetMBB(), getTruncatedShiftCount(), getTypeFromTypeIdx(), getTypeToPrint(), getUnconditionalBrDisp(), llvm::X86InstrInfo::getUndefRegClearance(), llvm::SSAUpdaterTraits< MachineSSAUpdater >::GetUndefVal(), getUnderlyingObjects(), llvm::MachineSSAUpdater::GetValueInMiddleOfBlock(), llvm::SIInstrInfo::getVALUOp(), getVariantKind(), llvm::getVRegSubRegDef(), getWinAllocaAmount(), llvm::MipsTargetLowering::HandleByVal(), handleMiddleInst(), handleUse(), llvm::LiveVariables::HandleVirtRegDef(), HandleVRSaveUpdate(), hasComplexRegisterTies(), HashMachineInstr(), llvm::X86InstrInfo::hasLiveCondCodeDef(), hasOneNonDBGUseInst(), hasRAWHazard(), llvm::X86InstrInfo::hasReassociableOperands(), llvm::TargetInstrInfo::hasReassociableOperands(), llvm::TargetInstrInfo::hasReassociableSibling(), hasRegisterDependency(), hasRegisterImplicitUseOperand(), hasUnmodeledSideEffects(), hasUseAfterLoop(), hasVGPROperands(), hasVulnerableLoad(), llvm::HexagonLowerToMC(), hoistAndMergeSGPRInits(), llvm::HexagonInstrInfo::immediateExtend(), INITIALIZE_PASS(), llvm::HexagonInstrInfo::insertBranch(), llvm::R600InstrInfo::insertBranch(), llvm::SIInstrInfo::insertBranch(), insertCopy(), insertDivByZeroTrap(), InsertFPConstInst(), InsertFPImmInst(), InsertLDR_STR(), insertPHI(), llvm::SIInstrInfo::insertSelect(), InsertSPConstInst(), InsertSPImmInst(), insertUndefLaneMask(), llvm::PPCInstrInfo::instrHasImmForm(), llvm::rdf::CopyPropagation::interpretAsCopy(), llvm::Mips16RegisterInfo::intRegClass(), llvm::HexagonInstrInfo::invertAndChangeJumpTarget(), llvm::isAArch64FrameOffsetLegal(), llvm::ARMBaseInstrInfo::isAddrMode3OpImm(), llvm::ARMBaseInstrInfo::isAddrMode3OpMinusReg(), llvm::ARMBaseInstrInfo::isAm2ScaledReg(), llvm::AArch64InstrInfo::isAsCheapAsAMove(), llvm::InstructionSelector::isBaseWithConstantOffset(), isCallerPreservedOrConstPhysReg(), isCandidateLoad(), isCandidateStore(), llvm::AArch64InstrInfo::isCandidateToMergeOrPair(), llvm::WebAssembly::isChild(), llvm::rdf::TargetOperandInfo::isClobbering(), llvm::CoalescerPair::isCoalescable(), llvm::AArch64InstrInfo::isCoalescableExtInstr(), llvm::X86InstrInfo::isCoalescableExtInstr(), llvm::PPCInstrInfo::isCoalescableExtInstr(), isCompareZero(), isConstant(), isConstantValuePHI(), llvm::HexagonInstrInfo::isConstExtended(), isConvergent(), isCopy(), isCopyFeedingInvariantStore(), llvm::TargetInstrInfo::isCopyInstr(), llvm::MipsSEInstrInfo::isCopyInstrImpl(), llvm::ARMBaseInstrInfo::isCopyInstrImpl(), llvm::Mips16InstrInfo::isCopyInstrImpl(), llvm::X86InstrInfo::isCopyInstrImpl(), isCopyToExec(), isCopyToReg(), isCrossCopy(), isCSRestore(), isCVTAToLocalCombinationCandidate(), isDbgValueDescribedByReg(), isDebug(), isDefInSubRange(), isDescribedByReg(), isEFLAGSLive(), llvm::AArch64InstrInfo::isFalkorShiftExtFast(), llvm::rdf::TargetOperandInfo::isFixedReg(), isFpMulInstruction(), llvm::AArch64InstrInfo::isFPRCopy(), llvm::PPCRegisterInfo::isFrameOffsetLegal(), llvm::ARMBaseRegisterInfo::isFrameOffsetLegal(), isFullCopy(), isFullCopyOf(), isFullExecCopy(), isFullUndefDef(), llvm::AArch64InstrInfo::isGPRCopy(), llvm::AArch64InstrInfo::isGPRZero(), isGreaterThanNBitTFRI(), isIdenticalTo(), isIdentityCopy(), isImmValidForOpcode(), isImplicitlyDef(), isIncrementOrDecrement(), isIndirectDebugValue(), llvm::SIInstrInfo::isInlineConstant(), isInstrUniform(), llvm::ARMBaseInstrInfo::isLDMBaseRegInList(), llvm::ARMBaseInstrInfo::isLdstScaledReg(), llvm::ARMBaseInstrInfo::isLdstScaledRegNotPlusLsl2(), llvm::ARMBaseInstrInfo::isLdstSoMinusReg(), llvm::isLeaMem(), isLEASimpleIncOrDec(), llvm::HexagonPacketizerList::isLegalToPacketizeTogether(), llvm::SIInstrInfo::isLiteralConstant(), isLiveOut(), isLoadAndTestAsCmp(), llvm::RISCVInstrInfo::isLoadFromStackSlot(), llvm::MipsSEInstrInfo::isLoadFromStackSlot(), llvm::ARCInstrInfo::isLoadFromStackSlot(), llvm::LanaiInstrInfo::isLoadFromStackSlot(), llvm::XCoreInstrInfo::isLoadFromStackSlot(), llvm::SparcInstrInfo::isLoadFromStackSlot(), llvm::HexagonInstrInfo::isLoadFromStackSlot(), llvm::AArch64InstrInfo::isLoadFromStackSlot(), llvm::AVRInstrInfo::isLoadFromStackSlot(), llvm::ARMBaseInstrInfo::isLoadFromStackSlot(), llvm::X86InstrInfo::isLoadFromStackSlot(), isLocalCopy(), isLogicalOpOnExec(), llvm::SMSchedule::isLoopCarriedDefOfUse(), llvm::isMem(), isMemoryOp(), isMergeableLdStUpdate(), IsMovepDestinationRegPair(), isNonFoldablePartialRegisterLoad(), isNopCopy(), isOperandKill(), llvm::SIInstrInfo::isOperandLegal(), isOperandSubregIdx(), isORCopyInst(), isPhysicalRegCopy(), llvm::R600InstrInfo::isPredicable(), llvm::ARMBaseInstrInfo::isPredicated(), llvm::R600InstrInfo::isPredicated(), isPreISelGenericFloatingPointOpcode(), llvm::X86InstrInfo::isReallyTriviallyReMaterializable(), isRedundantFlagInstr(), isRegTiedToDefOperand(), isRegTiedToUseOperand(), isRelevantAddressingMode(), isRematerializable(), IsSafeAndProfitableToMove(), isSafeToFoldImmIntoCopy(), llvm::AArch64InstrInfo::isSchedulingBoundary(), isSecondInstructionInSequence(), isSendMsgTraceDataOrGDS(), isSExtLoad(), isSignExtendingOp(), llvm::PPCInstrInfo::isSignOrZeroExtended(), isSimpleBD12Move(), isSimpleIf(), isSimpleIndexCalc(), isSimpleMove(), isStackAligningInlineAsm(), llvm::SystemZInstrInfo::isStackSlotCopy(), llvm::RISCVInstrInfo::isStoreToStackSlot(), llvm::MipsSEInstrInfo::isStoreToStackSlot(), llvm::LanaiInstrInfo::isStoreToStackSlot(), llvm::ARCInstrInfo::isStoreToStackSlot(), llvm::XCoreInstrInfo::isStoreToStackSlot(), llvm::AArch64InstrInfo::isStoreToStackSlot(), llvm::SparcInstrInfo::isStoreToStackSlot(), llvm::HexagonInstrInfo::isStoreToStackSlot(), llvm::AVRInstrInfo::isStoreToStackSlot(), llvm::ARMBaseInstrInfo::isStoreToStackSlot(), llvm::X86InstrInfo::isStoreToStackSlot(), isSuitableForMask(), llvm::ARMBaseInstrInfo::isSwiftFastImmShift(), llvm::HexagonInstrInfo::isToBeScheduledASAP(), llvm::PPCInstrInfo::isTOCSaveMI(), isTransformable(), isTwoAddrUse(), IsUnconditionalJump(), isUseSafeToFold(), llvm::SIInstrInfo::isVGPRCopy(), isVirtualRegisterOperand(), isZeroExtendingOp(), llvm::AArch64LegalizerInfo::legalizeCustom(), llvm::ARMLegalizerInfo::legalizeCustom(), llvm::SIInstrInfo::legalizeOperands(), llvm::SIInstrInfo::legalizeOperandsVOP2(), llvm::SIInstrInfo::legalizeOperandsVOP3(), llvm::SIInstrInfo::legalizeOpWithMove(), llvm::LegalizerHelper::libcall(), loadM0FromVGPR(), llvm::TargetRegisterInfo::lookThruCopyLike(), lookupCandidateBaseReg(), llvm::XCoreMCInstLower::Lower(), llvm::SystemZMCInstLower::lower(), llvm::MSP430MCInstLower::Lower(), llvm::ARCMCInstLower::Lower(), llvm::BPFMCInstLower::Lower(), llvm::LanaiMCInstLower::Lower(), llvm::MipsMCInstLower::Lower(), llvm::WebAssemblyMCInstLower::Lower(), llvm::LegalizerHelper::lower(), llvm::X86CallLowering::lowerCall(), llvm::AArch64CallLowering::lowerCall(), llvm::PPCRegisterInfo::lowerCRBitRestore(), llvm::PPCRegisterInfo::lowerCRBitSpilling(), llvm::PPCRegisterInfo::lowerCRRestore(), llvm::PPCRegisterInfo::lowerCRSpilling(), llvm::PPCRegisterInfo::lowerDynamicAlloc(), llvm::PPCRegisterInfo::lowerDynamicAreaOffset(), LowerFPToInt(), llvm::MipsMCInstLower::LowerOperand(), llvm::LowerPPCMachineInstrToMCInst(), llvm::AArch64CallLowering::lowerReturn(), lowerRIEfLow(), lowerRIHigh(), lowerRILow(), llvm::LowerSparcMachineInstrToMCInst(), lowerSubvectorLoad(), lowerSubvectorStore(), llvm::PPCRegisterInfo::lowerVRSAVERestore(), llvm::PPCRegisterInfo::lowerVRSAVESpilling(), makeImplicit(), MakeM0Inst(), llvm::MachineRegisterInfo::markUsesInDebugValueAsUndef(), llvm::MIPatternMatch::BinaryOp_match< LHS_P, RHS_P, Opcode, Commutable >::match(), llvm::MIPatternMatch::UnaryOp_match< SrcTy, Opcode >::match(), MatchingStackOffset(), matchPair(), matchSwap(), mayLoad(), mayStore(), llvm::WebAssembly::mayThrow(), Mips16WhichOp8uOr16simm(), MoveAndTeeForMultiUse(), MoveForSingleUse(), llvm::SIInstrInfo::moveToVALU(), llvm::LegalizerHelper::narrowScalar(), llvm::AArch64RegisterInfo::needsFrameBaseReg(), llvm::PPCRegisterInfo::needsFrameBaseReg(), llvm::ARMBaseRegisterInfo::needsFrameBaseReg(), llvm::AggressiveAntiDepBreaker::Observe(), OneUseDominatesOtherUses(), false::IntervalSorter::operator()(), optimizeCall(), llvm::LanaiInstrInfo::optimizeCompareInstr(), llvm::AArch64InstrInfo::optimizeCompareInstr(), llvm::ARMBaseInstrInfo::optimizeCompareInstr(), llvm::PPCInstrInfo::optimizeCompareInstr(), llvm::X86InstrInfo::optimizeCompareInstr(), llvm::AArch64InstrInfo::optimizeCondBranch(), llvm::X86InstrInfo::optimizeLoadInstr(), llvm::LanaiInstrInfo::optimizeSelect(), llvm::ARMBaseInstrInfo::optimizeSelect(), llvm::SMSchedule::orderDependence(), parseCond(), parseCondBranch(), parseOperands(), llvm::PatchPointOpers::PatchPointOpers(), performCustomAdjustments(), performSink(), phiHasBreakDef(), phiHasVGPROperands(), populateCandidates(), llvm::ARMBaseInstrInfo::PredicateInstruction(), llvm::R600InstrInfo::PredicateInstruction(), llvm::SystemZInstrInfo::PredicateInstruction(), llvm::HexagonInstrInfo::PredicateInstruction(), llvm::PPCInstrInfo::PredicateInstruction(), llvm::TargetInstrInfo::PredicateInstruction(), preservesValueOf(), llvm::MIPrinter::print(), print(), llvm::SystemZAsmPrinter::PrintAsmMemoryOperand(), llvm::AVRAsmPrinter::PrintAsmMemoryOperand(), llvm::HexagonAsmPrinter::PrintAsmMemoryOperand(), llvm::ARMAsmPrinter::PrintAsmMemoryOperand(), llvm::MipsAsmPrinter::PrintAsmMemoryOperand(), llvm::SystemZAsmPrinter::PrintAsmOperand(), llvm::AVRAsmPrinter::PrintAsmOperand(), llvm::HexagonAsmPrinter::PrintAsmOperand(), llvm::WebAssemblyAsmPrinter::PrintAsmOperand(), llvm::ARMAsmPrinter::PrintAsmOperand(), llvm::X86AsmPrinter::PrintAsmOperand(), llvm::AMDGPUAsmPrinter::PrintAsmOperand(), llvm::MipsAsmPrinter::PrintAsmOperand(), llvm::AsmPrinter::PrintAsmOperand(), printConstant(), printExtendedName(), llvm::MipsAsmPrinter::printFCCOperand(), printIntelMemReference(), printLeaMemReference(), printMemReference(), llvm::AVRAsmPrinter::printOperand(), llvm::HexagonAsmPrinter::printOperand(), llvm::ARMAsmPrinter::printOperand(), llvm::MipsAsmPrinter::printOperand(), printOperand(), printPCRelImm(), llvm::ARMBaseInstrInfo::produceSameValue(), profitImm(), pushDepHeight(), Query(), QueryCallee(), readsVCCZ(), readsWritesVirtualRegister(), llvm::TargetInstrInfo::reassociateOps(), llvm::MachineRegisterInfo::recomputeRegClass(), llvm::StackMaps::recordStackMap(), llvm::HexagonInstrInfo::reduceLoopCount(), registerDefinedBetween(), regOverlapsSet(), llvm::R600SchedStrategy::releaseBottomNode(), llvm::ARMBaseInstrInfo::reMaterialize(), llvm::X86InstrInfo::reMaterialize(), llvm::TargetInstrInfo::reMaterialize(), removeCopies(), RemoveDeadAddBetweenLEAAndJT(), removeKillInfo(), removePhis(), llvm::LiveVariables::removeVirtualRegisterDead(), llvm::LiveVariables::removeVirtualRegisterKilled(), llvm::LiveVariables::removeVirtualRegistersKilled(), llvm::RegBankSelect::RepairingPlacement::RepairingPlacement(), llvm::X86InstrInfo::replaceBranchWithTailCall(), ReplaceDominatedUses(), replaceFI(), ReplaceFrameIndex(), llvm::PPCInstrInfo::replaceInstrOperandWithImm(), llvm::PPCInstrInfo::replaceInstrWithLI(), llvm::ThumbRegisterInfo::resolveFrameIndex(), llvm::AArch64RegisterInfo::resolveFrameIndex(), llvm::PPCRegisterInfo::resolveFrameIndex(), llvm::ARMBaseRegisterInfo::resolveFrameIndex(), llvm::X86FrameLowering::restoreWin32EHStackPointers(), resultTests(), llvm::rewriteAArch64FrameIndex(), llvm::rewriteARMFrameIndex(), llvm::ThumbRegisterInfo::rewriteFrameIndex(), RewriteP2Align(), llvm::rewriteT2FrameIndex(), runOnBasicBlock(), llvm::InstructionSelect::runOnMachineFunction(), llvm::DetectRoundChange::runOnMachineFunction(), llvm::Localizer::runOnMachineFunction(), llvm::SelectionDAGISel::runOnMachineFunction(), llvm::MipsAsmPrinter::runOnMachineFunction(), selectCopy(), selectFP16CopyFromGPR32(), selectMergeValues(), selectUnmergeValues(), llvm::setDirectAddressInInstr(), llvm::ARMBaseInstrInfo::setExecutionDomain(), llvm::X86InstrInfo::setExecutionDomainCustom(), llvm::X86InstrInfo::setFrameAdjustment(), llvm::R600InstrInfo::setImmOperand(), setM0ToIndexFromSGPR(), setPhiPred(), llvm::X86InstrInfo::setSpecialOperandAttr(), llvm::AArch64InstrInfo::shouldClusterMemOps(), llvm::HexagonRegisterInfo::shouldCoalesce(), llvm::SystemZRegisterInfo::shouldCoalesce(), shouldPreventUndefRegUpdateMemFold(), shrinkScalarCompare(), shrinkScalarLogicOp(), simpleLibcall(), smallData(), llvm::X86FrameLowering::spillCalleeSavedRegisters(), splitBlock(), splitEdge(), splitMBB(), false::Chain::str(), swapMIOperands(), llvm::SystemZInstrInfo::SystemZInstrInfo(), llvm::TailDuplicator::tailDuplicateAndUpdate(), tieOperands(), tieOpsIfNeeded(), TrackDefUses(), llvm::MachineBasicBlock::transferSuccessorsAndUpdatePHIs(), tryAddToFoldList(), tryChangeVGPRtoSGPRinCopy(), llvm::LegalizationArtifactCombiner::tryCombineAnyExt(), llvm::CombinerHelper::tryCombineCopy(), llvm::CombinerHelper::tryCombineExtendingLoads(), llvm::LegalizationArtifactCombiner::tryCombineInstruction(), llvm::LegalizationArtifactCombiner::tryCombineMerges(), llvm::LegalizationArtifactCombiner::tryCombineSExt(), llvm::LegalizationArtifactCombiner::tryCombineZExt(), tryConstantFoldOp(), llvm::LegalizationArtifactCombiner::tryFoldImplicitDef(), tryFoldInst(), llvm::tryFoldSPUpdateIntoPushPop(), tryOptimizeLEAtoMOV(), trySequenceOfOnes(), llvm::HexagonPacketizerList::undoChangedOffset(), llvm::X86InstrInfo::unfoldMemoryOperand(), unsupportedBinOp(), untieRegOperand(), llvm::AntiDepBreaker::UpdateDbgValue(), llvm::updateDbgValueForSpill(), updateLiveIn(), llvm::HexagonPacketizerList::updateOffset(), updateOperand(), UpdateOperandRegClass(), updateOperandRegConstraints(), updatePhysDepsDownwards(), updatePhysDepsUpwards(), llvm::HexagonPacketizerList::useCalleesSP(), llvm::HexagonPacketizerList::useCallersSP(), usedAsAddr(), llvm::HexagonSubtarget::usePredicatedCalls(), UseReg(), validThroughout(), llvm::RegisterBankInfo::InstructionMapping::verify(), llvm::MachineFunction::verify(), verifyInsExtInstruction(), llvm::SIInstrInfo::verifyInstruction(), VerifyLowRegs(), llvm::MachineRegisterInfo::verifyUseList(), VisitGlobalVariableForEmission(), llvm::LegalizerHelper::widenScalar(), llvm::X86CallLowering::X86CallLowering(), and X86SelectAddress().
|
inline |
Definition at line 418 of file MachineInstr.h.
References assert(), and getNumOperands().
|
inline |
Returns the number of the operand iterator I
points to.
Definition at line 509 of file MachineInstr.h.
References operands_begin().
Referenced by llvm::ScheduleDAGInstrs::addSchedBarrierDeps(), findSingleRegDef(), findStartOfTree(), llvm::Localizer::getAnalysisUsage(), getDataDeps(), isCandidateStore(), isCrossCopy(), llvm::SIInstrInfo::isInlineConstant(), isKImmOperand(), isKUImmOperand(), isUseSafeToFold(), tryChangeVGPRtoSGPRinCopy(), tryFoldInst(), updateOperand(), updatePhysDepsDownwards(), and updatePhysDepsUpwards().
|
inline |
Definition at line 254 of file MachineInstr.h.
Referenced by addExclusiveRegPair(), llvm::addFrameReference(), addImplicitDefUseOperands(), addLiveInRegs(), llvm::GISelInstProfileBuilder::addNodeID(), addOperand(), addSegmentsWithValNo(), llvm::LiveIntervals::addSegmentToEndOfBlock(), llvm::HexagonPacketizerList::addToPacket(), llvm::SITargetLowering::AdjustInstrPostInstrSelection(), BlockSplitInfo::allInstrsInSameMBB(), llvm::AMDGPUInstructionSelector::AMDGPUInstructionSelector(), areCandidatesToMergeOrPair(), BBHasFallthrough(), llvm::CodeViewDebug::beginInstruction(), llvm::DwarfDebug::beginInstruction(), branchMaxOffsets(), llvm::ARMBaseInstrInfo::breakPartialRegDependency(), llvm::X86InstrInfo::breakPartialRegDependency(), buildEXP(), llvm::SIInstrInfo::buildShrunkInst(), canCombine(), canInstrSubstituteCmpInstr(), llvm::X86InstrInfo::canMakeTailCallConditional(), canMoveInstsAcrossMemOp(), cannotCoexistAsymm(), canTurnIntoCOPY(), changeFCMPPredToAArch64CC(), checkEFLAGSLive(), llvm::X86InstrInfo::classifyLEAReg(), llvm::WebAssemblyDebugValueManager::clone(), collectDebugValues(), CombineCVTAToLocal(), llvm::WebAssemblyInstrInfo::commuteInstructionImpl(), llvm::PPCInstrInfo::commuteInstructionImpl(), llvm::SystemZInstrInfo::commuteInstructionImpl(), llvm::X86InstrInfo::commuteInstructionImpl(), CompareMBBNumbers(), computeBranchTargetAndInversion(), llvm::InstructionSelector::constrainOperandRegToRegClass(), llvm::constrainRegToClass(), llvm::constrainSelectedInstRegOperands(), ContainsReg(), ConvertImplicitDefToConstZero(), llvm::PPCInstrInfo::convertToImmediateForm(), llvm::ARMBaseInstrInfo::convertToThreeAddress(), llvm::SystemZInstrInfo::convertToThreeAddress(), llvm::X86InstrInfo::convertToThreeAddress(), createBBSelectReg(), llvm::createHexagonHardwareLoops(), llvm::createSIFixWWMLivenessPass(), llvm::createSIWholeQuadModePass(), llvm::createX86FixupSetCC(), llvm::createX86OptimizeLEAs(), CriticalPathStep(), definesFullReg(), llvm::HexagonFrameLowering::determineCalleeSaves(), doCandidateWalk(), doesModifyCalleeSavedReg(), llvm::MachineDominatorTree::dominates(), llvm::BPFRegisterInfo::eliminateFrameIndex(), llvm::MSP430RegisterInfo::eliminateFrameIndex(), llvm::SparcRegisterInfo::eliminateFrameIndex(), llvm::WebAssemblyRegisterInfo::eliminateFrameIndex(), llvm::RISCVRegisterInfo::eliminateFrameIndex(), llvm::LanaiRegisterInfo::eliminateFrameIndex(), llvm::AVRRegisterInfo::eliminateFrameIndex(), llvm::HexagonRegisterInfo::eliminateFrameIndex(), llvm::NVPTXRegisterInfo::eliminateFrameIndex(), llvm::ARCRegisterInfo::eliminateFrameIndex(), llvm::XCoreRegisterInfo::eliminateFrameIndex(), llvm::ThumbRegisterInfo::eliminateFrameIndex(), llvm::MipsRegisterInfo::eliminateFrameIndex(), llvm::AArch64RegisterInfo::eliminateFrameIndex(), llvm::PPCRegisterInfo::eliminateFrameIndex(), llvm::X86RegisterInfo::eliminateFrameIndex(), llvm::ARMBaseRegisterInfo::eliminateFrameIndex(), llvm::AsmPrinter::emitCFIInstruction(), emitError(), EmitHiLo(), llvm::HexagonAsmPrinter::EmitInstruction(), llvm::HexagonHazardRecognizer::EmitInstruction(), llvm::ARMAsmPrinter::EmitInstruction(), llvm::MipsAsmPrinter::EmitInstruction(), llvm::AVRTargetLowering::EmitInstrWithCustomInserter(), llvm::ARMAsmPrinter::EmitJumpTableTBInst(), EmitNop(), llvm::ScheduleDAGSDNodes::EmitSchedule(), llvm::DbgValueHistoryMap::endInstrRange(), llvm::DebugHandlerBase::endInstruction(), llvm::SplitEditor::enterIntvAfter(), llvm::SplitEditor::enterIntvBefore(), eraseFromBundle(), eraseFromParent(), eraseFromParentAndMarkDBGValuesForRemoval(), eraseGPOpnd(), llvm::BitTracker::MachineEvaluator::evaluate(), expandLoadStackGuard(), expandMOV32r1(), ExpandMOVImmSExti8(), llvm::MipsSEInstrInfo::expandPostRAPseudo(), llvm::Mips16InstrInfo::expandPostRAPseudo(), llvm::SparcInstrInfo::expandPostRAPseudo(), llvm::R600InstrInfo::expandPostRAPseudo(), llvm::HexagonInstrInfo::expandPostRAPseudo(), llvm::SIInstrInfo::expandPostRAPseudo(), llvm::ARMBaseInstrInfo::expandPostRAPseudo(), llvm::AArch64InstrInfo::expandPostRAPseudo(), llvm::X86InstrInfo::expandPostRAPseudo(), llvm::PPCInstrInfo::expandPostRAPseudo(), llvm::HexagonInstrInfo::expandVGatherPseudo(), expandXorFP(), extractRsrcPtr(), findIncDecAfter(), findOnlyInterestingUse(), findPotentialBlockers(), findSingleRegDef(), findSingleRegUse(), fixupCalleeSaveRestoreStackOffset(), llvm::SIInstrInfo::FoldImmediate(), llvm::ARMBaseInstrInfo::FoldImmediate(), llvm::TargetInstrInfo::foldMemoryOperand(), llvm::AArch64InstrInfo::foldMemoryOperandImpl(), foldVGPRCopyIntoRegSequence(), forceReg(), llvm::RegBankSelect::InstrInsertPoint::frequency(), llvm::AArch64InstrInfo::genAlternativeCodeSequence(), getAdjustedCmp(), llvm::Localizer::getAnalysisUsage(), llvm::RegBankSelect::getAnalysisUsage(), getBundledUseMI(), getCmpForPseudo(), getCompareSourceReg(), getConstant(), getConstantFromPool(), llvm::HexagonInstrInfo::getDotNewPredJumpOp(), getDPPOp(), GetDSubRegs(), getFMAPatterns(), getFoldableImm(), llvm::ARMHazardRecognizer::getHazardType(), llvm::HexagonHazardRecognizer::getHazardType(), getImplicitSPRUseForDPRUse(), llvm::SlotIndexes::getIndexAfter(), llvm::SlotIndexes::getIndexBefore(), llvm::SIInstrInfo::getInstBundleSize(), llvm::AMDGPURegisterBankInfo::getInstrAlternativeMappings(), llvm::X86RegisterBankInfo::getInstrAlternativeMappings(), llvm::AArch64RegisterBankInfo::getInstrAlternativeMappings(), llvm::ARMRegisterBankInfo::getInstrMapping(), llvm::AMDGPURegisterBankInfo::getInstrMapping(), llvm::X86RegisterBankInfo::getInstrMapping(), llvm::AArch64RegisterBankInfo::getInstrMapping(), llvm::MachineTraceMetrics::Trace::getInstrSlack(), llvm::AArch64InstrInfo::getInstSizeInBytes(), llvm::ARCInstrInfo::getInstSizeInBytes(), llvm::MSP430InstrInfo::getInstSizeInBytes(), llvm::RISCVInstrInfo::getInstSizeInBytes(), llvm::AVRInstrInfo::getInstSizeInBytes(), llvm::MipsInstrInfo::getInstSizeInBytes(), llvm::ARMBaseInstrInfo::getInstSizeInBytes(), llvm::SystemZInstrInfo::getInstSizeInBytes(), llvm::PPCInstrInfo::getInstSizeInBytes(), llvm::SIInstrInfo::getInstSizeInBytes(), llvm::getLiveRegsAfter(), getLiveRegsAt(), llvm::getLiveRegsBefore(), getLoadStoreOffsetAlign(), getLoadStoreOffsetSizeInBits(), llvm::PPCInstrInfo::getMachineCombinerPatterns(), getMaddPatterns(), getMappedOp(), getMatchingEHPad(), getMF(), getMFIfAvailable(), getNewSource(), getNewValueJumpOpcode(), llvm::PPCInstrInfo::getOperandLatency(), llvm::ARMBaseInstrInfo::getOperandLatency(), llvm::SIInstrInfo::getOpRegClass(), llvm::SIInstrInfo::getOpSize(), llvm::AArch64InstrInfo::getOutliningType(), llvm::X86InstrInfo::getOutliningType(), llvm::X86GenRegisterBankInfo::getPartialMappingIdx(), getPostIndexedLoadStoreOpcode(), llvm::ReachingDefAnalysis::getReachingDef(), getRegClassConstraint(), getRegClassFromGRPhysReg(), getSingleDef(), llvm::HexagonInstrInfo::getSize(), getSmrdOpcode(), llvm::X86InstrInfo::getSPAdjust(), llvm::LiveIntervals::getSpillWeight(), getSubOpcode(), GetSymbolRef(), llvm::BPFTargetLowering::getTargetNodeName(), getUnconditionalBrDisp(), getUnderlyingObjects(), getVariantKind(), llvm::LiveIntervals::handleMove(), llvm::LiveVariables::HandleVirtRegDef(), HandleVRSaveUpdate(), llvm::HexagonInstrInfo::hasLoadFromStackSlot(), llvm::TargetInstrInfo::hasReassociableOperands(), llvm::TargetInstrInfo::hasReassociableSibling(), llvm::HexagonInstrInfo::hasStoreToStackSlot(), hasUseAfterLoop(), hasVGPROperands(), llvm::HexagonAsmPrinter::HexagonProcessInstruction(), hoistAndMergeSGPRInits(), INITIALIZE_PASS(), insertCopy(), InsertFPConstInst(), InsertFPImmInst(), llvm::SlotIndexes::insertMachineInstrInMaps(), insertNopBeforeInstruction(), insertPHI(), InsertSPConstInst(), InsertSPImmInst(), InstructionStoresToFI(), llvm::Mips16RegisterInfo::intRegClass(), llvm::AArch64InstrInfo::isAssociativeAndCommutative(), llvm::X86InstrInfo::isAssociativeAndCommutative(), isCallerPreservedOrConstPhysReg(), llvm::CoalescerPair::isCoalescable(), isCombineInstrCandidateFP(), isCompareZero(), isConstant(), isCopy(), isCopyFeedingInvariantStore(), isCVTAToLocalCombinationCandidate(), llvm::MachineTraceMetrics::Trace::isDepInTrace(), isDereferenceableInvariantLoad(), isEFLAGSLive(), isFpMulInstruction(), isFullCopyOf(), isFullUndefDef(), isInstrUniform(), llvm::LiveVariables::VarInfo::isLiveIn(), llvm::SMSchedule::isLoopCarried(), llvm::SMSchedule::isLoopCarriedDefOfUse(), IsMovepDestinationRegPair(), isNoReturnDef(), llvm::InstructionSelector::isObviouslySafeToFold(), llvm::SIInstrInfo::isOperandLegal(), isPHIRegionIndex(), llvm::ARMBaseInstrInfo::isPredicable(), llvm::R600InstrInfo::isPredicable(), llvm::ARMBaseInstrInfo::isPredicated(), isPreISelGenericFloatingPointOpcode(), isReachable(), llvm::X86InstrInfo::isReallyTriviallyReMaterializable(), llvm::TargetInstrInfo::isReassociationCandidate(), llvm::VLIWResourceModel::isResourceAvailable(), IsSafeToMove(), llvm::PPCInstrInfo::isSignOrZeroExtended(), isSimpleIf(), isSimpleIndexCalc(), llvm::SystemZInstrInfo::isStackSlotCopy(), isTerminalReg(), IsUnconditionalJump(), isUseSafeToFold(), llvm::SIInstrInfo::isVGPRCopy(), jumpTableFollowsTB(), llvm::SplitEditor::leaveIntvAfter(), llvm::SplitEditor::leaveIntvBefore(), llvm::SIInstrInfo::legalizeOperands(), llvm::SIInstrInfo::legalizeOperandsVOP2(), llvm::SIInstrInfo::legalizeOpWithMove(), loadSRsrcFromVGPR(), llvm::WebAssemblyMCInstLower::Lower(), llvm::LowerARMMachineInstrToMCInst(), llvm::PPCRegisterInfo::lowerCRBitRestore(), llvm::PPCRegisterInfo::lowerCRBitSpilling(), llvm::PPCRegisterInfo::lowerCRRestore(), llvm::PPCRegisterInfo::lowerCRSpilling(), llvm::PPCRegisterInfo::lowerDynamicAlloc(), llvm::PPCRegisterInfo::lowerDynamicAreaOffset(), llvm::PPCRegisterInfo::lowerVRSAVERestore(), llvm::PPCRegisterInfo::lowerVRSAVESpilling(), llvm::MachineOperandIteratorBase::MachineOperandIteratorBase(), matchPair(), matchSwap(), memOpsHaveSameBasePtr(), llvm::WebAssemblyDebugValueManager::move(), MoveAndTeeForMultiUse(), moveInstrOut(), llvm::SIInstrInfo::moveToVALU(), llvm::AArch64RegisterInfo::needsFrameBaseReg(), llvm::PPCRegisterInfo::needsFrameBaseReg(), llvm::ARMBaseRegisterInfo::needsFrameBaseReg(), OneUseDominatesOtherUses(), llvm::LanaiInstrInfo::optimizeCompareInstr(), llvm::AArch64InstrInfo::optimizeCompareInstr(), llvm::ARMBaseInstrInfo::optimizeCompareInstr(), llvm::PPCInstrInfo::optimizeCompareInstr(), llvm::X86InstrInfo::optimizeCompareInstr(), llvm::AArch64InstrInfo::optimizeCondBranch(), llvm::LanaiInstrInfo::optimizeSelect(), llvm::ARMBaseInstrInfo::optimizeSelect(), packCmovGroup(), performSink(), populateCandidates(), llvm::ARMBaseInstrInfo::PredicateInstruction(), llvm::R600InstrInfo::PredicateInstruction(), llvm::SystemZInstrInfo::PredicateInstruction(), llvm::HexagonInstrInfo::PredicateInstruction(), llvm::PPCInstrInfo::PredicateInstruction(), llvm::RegisterBankInfo::OperandsMapper::print(), llvm::HexagonAsmPrinter::PrintAsmOperand(), llvm::ARMAsmPrinter::PrintAsmOperand(), llvm::printMBBReference(), llvm::ARMAsmPrinter::printOperand(), llvm::ARMBaseInstrInfo::produceSameValue(), llvm::HexagonPacketizerList::producesStall(), profitImm(), llvm::rdf::DataFlowGraph::pushAllDefs(), pushDepHeight(), llvm::SIInstrInfo::readlaneVGPRToSGPR(), readsVCCZ(), registerDefinedBetween(), removeExternalCFGEdges(), removeFromBundle(), removeFromParent(), removePhis(), RemoveVRSaveCode(), llvm::RegBankSelect::RepairingPlacement::RepairingPlacement(), replaceFI(), ReplaceFrameIndex(), llvm::PPCInstrInfo::replaceInstrWithLI(), replaceRegUsesAfterLoop(), llvm::reportGISelFailure(), rescheduleCanonically(), llvm::SystemZHazardRecognizer::Reset(), llvm::GCNDownwardRPTracker::reset(), llvm::ThumbRegisterInfo::resolveFrameIndex(), llvm::SIRegisterInfo::resolveFrameIndex(), llvm::AArch64RegisterInfo::resolveFrameIndex(), llvm::PPCRegisterInfo::resolveFrameIndex(), llvm::ARMBaseRegisterInfo::resolveFrameIndex(), llvm::rewriteAArch64FrameIndex(), llvm::ThumbRegisterInfo::rewriteFrameIndex(), llvm::rewriteT2FrameIndex(), llvm::MachineSSAUpdater::RewriteUse(), llvm::SelectionDAGISel::runOnMachineFunction(), llvm::ScheduleDAGMILive::scheduleMI(), selectCopy(), selectFP16CopyFromGPR32(), llvm::ARMBaseInstrInfo::setExecutionDomain(), llvm::MachineIRBuilder::setInstr(), setM0ToIndexFromSGPR(), llvm::AArch64InstrInfo::shouldClusterMemOps(), llvm::SIInstrInfo::shouldClusterMemOps(), llvm::HexagonRegisterInfo::shouldCoalesce(), llvm::SystemZRegisterInfo::shouldCoalesce(), llvm::ARMBaseRegisterInfo::shouldCoalesce(), llvm::ARMBaseInstrInfo::shouldSink(), SinkingPreventsImplicitNullCheck(), splitBlock(), splitMBB(), swapMIOperands(), llvm::SystemZInstrInfo::SystemZInstrInfo(), llvm::TailDuplicator::tailDuplicateAndUpdate(), tieOpsIfNeeded(), tryAddToFoldList(), tryChangeVGPRtoSGPRinCopy(), llvm::CombinerHelper::tryCombineCopy(), tryFoldInst(), llvm::tryFoldSPUpdateIntoPushPop(), tryOptimizeLEAtoMOV(), llvm::FastISel::tryToFoldLoad(), updateKillStatus(), updateOperand(), UpdateOperandRegClass(), updatePHIs(), updatePhysDepsDownwards(), llvm::R600InstrInfo::usesTextureCache(), llvm::R600InstrInfo::usesVertexCache(), validThroughout(), llvm::RegisterBankInfo::InstructionMapping::verify(), llvm::MachineFunction::verify(), llvm::SIInstrInfo::verifyInstruction(), llvm::VirtRegAuxInfo::weightCalcHelper(), and llvm::LegalizerHelper::widenScalar().
|
inline |
Definition at line 255 of file MachineInstr.h.
References getMF().
|
inline |
Helper to extract a post-instruction symbol if one has been added.
Definition at line 567 of file MachineInstr.h.
Referenced by cloneMemRefs(), dropMemRefs(), llvm::MIPrinter::print(), print(), setMemRefs(), setPostInstrSymbol(), and setPreInstrSymbol().
|
inline |
Helper to extract a pre-instruction symbol if one has been added.
Definition at line 555 of file MachineInstr.h.
Referenced by cloneMemRefs(), dropMemRefs(), llvm::MIPrinter::print(), print(), setMemRefs(), setPostInstrSymbol(), and setPreInstrSymbol().
const TargetRegisterClass * MachineInstr::getRegClassConstraint | ( | unsigned | OpIdx, |
const TargetInstrInfo * | TII, | ||
const TargetRegisterInfo * | TRI | ||
) | const |
Compute the static register class constraint for operand OpIdx.
For normal instructions, this is derived from the MCInstrDesc. For inline assembly it is derived from the flag words.
Returns NULL if the static register class constraint cannot be determined.
Definition at line 816 of file MachineInstr.cpp.
References assert(), findInlineAsmFlagIdx(), getDesc(), llvm::MachineOperand::getImm(), llvm::InlineAsm::getKind(), getMF(), getOperand(), getParent(), llvm::TargetRegisterInfo::getPointerRegClass(), llvm::TargetInstrInfo::getRegClass(), llvm::TargetRegisterInfo::getRegClass(), llvm::InlineAsm::hasRegClassConstraint(), isInlineAsm(), isReg(), isRegTiedToDefOperand(), llvm::InlineAsm::Kind_Mem, llvm::InlineAsm::Kind_RegDef, llvm::InlineAsm::Kind_RegDefEarlyClobber, and llvm::InlineAsm::Kind_RegUse.
Referenced by findRegisterDefOperand(), llvm::RegisterBankInfo::getRegBankFromConstraints(), getRegClassConstraintEffect(), getRegsUsedByPHIs(), isNopCopy(), llvm::TargetInstrInfo::reassociateOps(), UpdateOperandRegClass(), and llvm::SIInstrInfo::verifyInstruction().
const TargetRegisterClass * MachineInstr::getRegClassConstraintEffect | ( | unsigned | OpIdx, |
const TargetRegisterClass * | CurRC, | ||
const TargetInstrInfo * | TII, | ||
const TargetRegisterInfo * | TRI | ||
) | const |
Applies the constraints (def/use) implied by the OpIdx
operand to the given CurRC
.
Returns the register class that satisfies both CurRC
and the constraints set by OpIdx
MI. Returns NULL if such a register class does not exist.
OpIdx
must be a register. Definition at line 884 of file MachineInstr.cpp.
References assert(), llvm::TargetRegisterInfo::getCommonSubClass(), llvm::TargetRegisterInfo::getMatchingSuperRegClass(), getOperand(), getRegClassConstraint(), llvm::TargetRegisterInfo::getSubClassWithSubReg(), llvm::MachineOperand::getSubReg(), and llvm::MachineOperand::isReg().
Referenced by findRegisterDefOperand(), getRegClassConstraintEffectForVReg(), and llvm::MachineRegisterInfo::recomputeRegClass().
const TargetRegisterClass * MachineInstr::getRegClassConstraintEffectForVReg | ( | unsigned | Reg, |
const TargetRegisterClass * | CurRC, | ||
const TargetInstrInfo * | TII, | ||
const TargetRegisterInfo * | TRI, | ||
bool | ExploreBundle = false |
||
) | const |
Applies the constraints (def/use) implied by this MI on Reg
to the given CurRC
.
If ExploreBundle
is set and MI is part of a bundle, all the instructions inside the bundle will be taken into account. In other words, this method accumulates all the constraints of the operand of this MI and the related bundle if MI is a bundle or inside a bundle.
Returns the register class that satisfies both CurRC
and the constraints set by MI. Returns NULL if such a register class does not exist.
Definition at line 855 of file MachineInstr.cpp.
References assert(), getOperand(), llvm::MachineOperand::getReg(), getRegClassConstraintEffect(), llvm::MachineOperand::isReg(), llvm::MachineOperandIteratorBase::isValid(), Reg, TII, and TRI.
Referenced by findRegisterDefOperand(), and getNumAllocatableRegsForConstraints().
LLT MachineInstr::getTypeToPrint | ( | unsigned | OpIdx, |
SmallBitVector & | PrintedTypes, | ||
const MachineRegisterInfo & | MRI | ||
) | const |
Debugging supportDetermine the generic type to be printed (if needed) on uses and defs.
Definition at line 1405 of file MachineInstr.cpp.
References getDesc(), getNumExplicitOperands(), getOperand(), llvm::MachineOperand::getReg(), llvm::MachineRegisterInfo::getType(), llvm::MachineOperand::isReg(), llvm::LLT::isValid(), isVariadic(), llvm::MCInstrDesc::OpInfo, and llvm::SmallBitVector::set().
Referenced by isRegTiedToDefOperand(), llvm::MIPrinter::print(), and print().
bool MachineInstr::hasComplexRegisterTies | ( | ) | const |
Return true when an instruction has tied register that can't be determined by the instruction's descriptor.
This is useful for MIR printing, to determine whether we need to print the ties or not.
Definition at line 1390 of file MachineInstr.cpp.
References E, findTiedOperandIdx(), getDesc(), getNumOperands(), getOperand(), llvm::MCInstrDesc::getOperandConstraint(), I, and llvm::MCOI::TIED_TO.
Referenced by isRegTiedToDefOperand(), llvm::MIPrinter::print(), and print().
|
inline |
Returns true if the specified instruction has a delay slot which must be filled by the code generator.
Definition at line 741 of file MachineInstr.h.
References llvm::MCID::DelaySlot, and hasProperty().
Referenced by llvm::DwarfDebug::beginInstruction(), and hasUnoccupiedSlot().
|
inline |
Returns true if this instruction def operands have special register allocation requirements that are not captured by the operand register classes.
e.g. ARM::LDRD's two def registers must be an even / odd pair, ARM::LDM registers have to be in ascending order. Post-register allocation passes should not attempt to change allocations for definitions of instructions with this flag.
Definition at line 927 of file MachineInstr.h.
References llvm::MCID::ExtraDefRegAllocReq, and hasProperty().
Referenced by CriticalPathStep(), and llvm::MachineOperand::isRenamable().
|
inline |
Returns true if this instruction source operands have special register allocation requirements that are not captured by the operand register classes.
e.g. ARM::STRD's two source registers must be an even / odd pair, ARM::STM registers have to be in ascending order. Post-register allocation passes should not attempt to change allocations for sources of instructions with this flag.
Definition at line 917 of file MachineInstr.h.
References llvm::MCID::ExtraSrcRegAllocReq, and hasProperty().
Referenced by CriticalPathStep(), and llvm::MachineOperand::isRenamable().
|
inline |
Return true if this instruction has exactly one MachineMemOperand.
Definition at line 549 of file MachineInstr.h.
References memoperands().
Referenced by llvm::SIInstrInfo::areMemAccessesTriviallyDisjoint(), llvm::SystemZInstrInfo::areMemAccessesTriviallyDisjoint(), emitClzero(), llvm::SystemZInstrInfo::foldMemoryOperandImpl(), llvm::X86InstrInfo::foldMemoryOperandImpl(), llvm::ARMBaseInstrInfo::getNumMicroOps(), llvm::ARMBaseInstrInfo::getOperandLatency(), getSmrdOpcode(), getUnderlyingObjects(), INITIALIZE_PASS(), isInstrUniform(), isMemoryOp(), IsSafeAndProfitableToMove(), matchPair(), mayAlias(), memOpsHaveSameBasePtr(), offsetsDoNotOverlap(), llvm::X86InstrInfo::optimizeCompareInstr(), RewriteP2Align(), llvm::X86InstrInfo::unfoldMemoryOperand(), updateKillStatus(), and VerifyLowRegs().
|
inline |
Set if this instruction has an optional definition, e.g.
ARM instructions which can set condition code if 's' bit is set.
Definition at line 613 of file MachineInstr.h.
References llvm::MCID::HasOptionalDef, and hasProperty().
Referenced by isCopy(), and llvm::ARMBaseInstrInfo::optimizeSelect().
bool MachineInstr::hasOrderedMemoryRef | ( | ) | const |
Return true if this instruction may have an ordered or volatile memory reference, or if the information describing the memory reference is not available.
hasOrderedMemoryRef - Return true if this instruction may have an ordered or volatile memory reference, or if the information describing the memory reference is not available.
Return false if it is known to have no ordered or volatile memory references.
Return false if it is known to have no ordered memory references.
Definition at line 1273 of file MachineInstr.cpp.
References llvm::any_of(), hasUnmodeledSideEffects(), isCall(), llvm::MachineMemOperand::isUnordered(), mayLoad(), mayStore(), memoperands(), and memoperands_empty().
Referenced by areCandidatesToMergeOrPair(), llvm::LanaiInstrInfo::areMemAccessesTriviallyDisjoint(), llvm::AArch64InstrInfo::areMemAccessesTriviallyDisjoint(), llvm::SIInstrInfo::areMemAccessesTriviallyDisjoint(), llvm::HexagonInstrInfo::areMemAccessesTriviallyDisjoint(), canMoveInstsAcrossMemOp(), llvm::AArch64InstrInfo::isCandidateToMergeOrPair(), isDependenceBarrier(), isGlobalMemoryObject(), llvm::HexagonPacketizerList::isLegalToPacketizeTogether(), llvm::SwingSchedulerDAG::isLoopCarriedDep(), isRegTiedToDefOperand(), isSafeToMove(), DeadCodeElimination::SetQueue< T >::push_back(), and Query().
|
inline |
Return true if this instruction requires adjustment after instruction selection by calling a target hook.
For example, this can be used to fill in ARM 's' optional operand depending on whether the conditional flag register is used.
Definition at line 886 of file MachineInstr.h.
References llvm::MCID::HasPostISelHook, and hasProperty().
|
inline |
Return true if the instruction (or in the case of a bundle, the instructions inside the bundle) has the specified property.
The first argument is the property being queried. The second argument indicates whether the query should look inside instruction bundles.
Definition at line 592 of file MachineInstr.h.
References assert(), getDesc(), llvm::MCInstrDesc::getFlags(), IgnoreBundle, isBundled(), and isBundledWithPred().
Referenced by canFoldAsLoad(), hasDelaySlot(), hasExtraDefRegAllocReq(), hasExtraSrcRegAllocReq(), hasOptionalDef(), hasPostISelHook(), hasUnmodeledSideEffects(), isAsCheapAsAMove(), isBarrier(), isBitcast(), isBranch(), isCall(), isCommutable(), isCompare(), isConvergent(), isConvertibleTo3Addr(), isEHScopeReturn(), isExtractSubregLike(), isIndirectBranch(), isInsertSubregLike(), isMoveImmediate(), isMoveReg(), isNotDuplicable(), isPredicable(), isPseudo(), isRegSequenceLike(), isRematerializable(), isReturn(), isSelect(), isTerminator(), isVariadic(), mayLoad(), mayStore(), and usesCustomInsertionHook().
Returns true if the MachineInstr has an implicit-use operand of exactly the given register (not considering sub/super-registers).
Definition at line 916 of file MachineInstr.cpp.
References getNumOperands(), getOperand(), llvm::MachineOperand::getReg(), llvm::MachineOperand::isImplicit(), llvm::MachineOperand::isReg(), llvm::MachineOperand::isUse(), and Reg.
Referenced by addEpilogOnlyR10(), registerDefIsDead(), and llvm::SIInstrInfo::verifyInstruction().
bool MachineInstr::hasUnmodeledSideEffects | ( | ) | const |
Return true if this instruction has side effects that are not modeled by mayLoad / mayStore, etc.
For all instructions, the property is encoded in MCInstrDesc::Flags (see MCInstrDesc::hasUnmodeledSideEffects(). The only exception is INLINEASM instruction, in which case the side effect property is encoded in one of its operands (see InlineAsm::Extra_HasSideEffect).
Definition at line 1350 of file MachineInstr.cpp.
References llvm::InlineAsm::Extra_HasSideEffects, llvm::MachineOperand::getImm(), getOperand(), hasProperty(), isInlineAsm(), llvm::InlineAsm::MIOp_ExtraInfo, and llvm::MCID::UnmodeledSideEffects.
Referenced by llvm::LanaiInstrInfo::areMemAccessesTriviallyDisjoint(), llvm::AArch64InstrInfo::areMemAccessesTriviallyDisjoint(), llvm::SIInstrInfo::areMemAccessesTriviallyDisjoint(), llvm::HexagonInstrInfo::areMemAccessesTriviallyDisjoint(), CanMovePastDMB(), llvm::TargetInstrInfo::genAlternativeCodeSequence(), hasOrderedMemoryRef(), INITIALIZE_PASS(), isCallerPreservedOrConstPhysReg(), isDependenceBarrier(), isGlobalMemoryObject(), isInvariantStore(), isLoadFoldBarrier(), llvm::SwingSchedulerDAG::isLoopCarriedDep(), llvm::InstructionSelector::isObviouslySafeToFold(), isRegTiedToDefOperand(), isSafeToMove(), isUnsafeToMoveAcross(), isVirtualRegisterOperand(), DeadCodeElimination::SetQueue< T >::push_back(), Query(), and regOverlapsSet().
|
inline |
Definition at line 473 of file MachineInstr.h.
References llvm::sys::path::end(), explicit_operands(), llvm::make_range(), and operands_end().
Referenced by ContainsReg(), copyFlagsToImplicitVCC(), llvm::createX86FixupBWInsts(), llvm::createX86FixupSetCC(), findImplicitSGPRRead(), getPostIndexedLoadStoreOpcode(), INITIALIZE_PASS(), isNopCopy(), llvm::InstructionSelector::isObviouslySafeToFold(), and llvm::PPCInstrInfo::replaceInstrOperandWithImm().
|
inline |
Definition at line 476 of file MachineInstr.h.
References llvm::sys::path::end(), explicit_operands(), llvm::make_range(), and operands_end().
|
inline |
Definition at line 981 of file MachineInstr.h.
References llvm::ISD::ANNOTATION_LABEL, and getOpcode().
Referenced by isLabel().
|
inline |
Returns true if this instruction has the same cost (or less) than a move instruction.
This is useful during certain types of optimizations (e.g., remat during two-address conversion or machine licm) where we would like to remat or hoist the instruction, but not if it costs more than moving the instruction into the appropriate register. Note, we are not marking copies from and to the same register class with this flag.
Definition at line 906 of file MachineInstr.h.
References llvm::MCID::CheapAsAMove, and hasProperty().
Referenced by llvm::AArch64InstrInfo::isAsCheapAsAMove(), llvm::TargetInstrInfo::isAsCheapAsAMove(), and ShouldRematerialize().
|
inline |
Returns true if the specified instruction stops control flow from executing the instruction immediately following it.
Examples include unconditional branches and return instructions.
Definition at line 640 of file MachineInstr.h.
References llvm::MCID::Barrier, and hasProperty().
Referenced by llvm::ScheduleDAGInstrs::addSchedBarrierDeps(), cannotCoexistAsymm(), llvm::MachineBasicBlock::getFallThrough(), llvm::ARMHazardRecognizer::getHazardType(), llvm::HexagonPacketizerList::hasControlDependence(), INITIALIZE_PASS(), isConditionalBranch(), isFpMulInstruction(), isUnconditionalBranch(), llvm::MSP430InstrInfo::isUnpredicatedTerminator(), llvm::X86InstrInfo::isUnpredicatedTerminator(), llvm::PPCInstrInfo::isUnpredicatedTerminator(), llvm::TargetInstrInfo::isUnpredicatedTerminator(), matchPair(), and ProfitableToMerge().
|
inline |
Return true if this instruction is a bitcast instruction.
Definition at line 711 of file MachineInstr.h.
References llvm::MCID::Bitcast, and hasProperty().
Referenced by getCopyRewriter().
|
inline |
Returns true if this is a conditional, unconditional, or indirect branch.
Predicates below can be used to discriminate between these cases, and the TargetInstrInfo::AnalyzeBranch method can be used to get more information.
Definition at line 657 of file MachineInstr.h.
References llvm::MCID::Branch, and hasProperty().
Referenced by addLiveInRegs(), cannotCoexistAsymm(), llvm::BitTracker::MachineEvaluator::evaluate(), getCmpForPseudo(), llvm::rdf::DataFlowGraph::getNextShadow(), llvm::PPCInstrInfo::getOperandLatency(), llvm::ARMBaseInstrInfo::getOperandLatency(), getRegClassForUnfoldedLoad(), llvm::HexagonPacketizerList::hasControlDependence(), INITIALIZE_PASS(), llvm::HexagonInstrInfo::invertAndChangeJumpTarget(), isBranchRetTrap(), llvm::HexagonInstrInfo::isComplex(), llvm::HexagonInstrInfo::isCompoundBranchInstr(), isConditionalBranch(), isCopy(), llvm::rdf::TargetOperandInfo::isFixedReg(), llvm::HexagonPacketizerList::isLegalToPacketizeTogether(), llvm::HexagonInstrInfo::isNewValueJump(), llvm::HexagonInstrInfo::isTailCall(), isUnconditionalBranch(), llvm::MSP430InstrInfo::isUnpredicatedTerminator(), llvm::X86InstrInfo::isUnpredicatedTerminator(), llvm::PPCInstrInfo::isUnpredicatedTerminator(), llvm::TargetInstrInfo::isUnpredicatedTerminator(), llvm::rdf::operator<<(), llvm::X86InstrInfo::optimizeCompareInstr(), populateCandidates(), DeadCodeElimination::SetQueue< T >::push_back(), regOverlapsSet(), splitBlock(), and llvm::BitTracker::visit().
|
inline |
Definition at line 1036 of file MachineInstr.h.
References getOpcode().
Referenced by llvm::HexagonInstrInfo::analyzeBranch(), llvm::TailDuplicator::canTailDuplicate(), llvm::TargetSchedModel::computeInstrLatency(), llvm::HexagonAsmPrinter::EmitInstruction(), llvm::MipsInstrInfo::findCommutedOpIndices(), llvm::TargetInstrInfo::findCommutedOpIndices(), llvm::HexagonInstrInfo::getBranchingInstrs(), llvm::HexagonInstrInfo::getBundleNoShuf(), llvm::ARMBaseInstrInfo::getOperandLatency(), llvm::HexagonInstrInfo::hasLoadFromStackSlot(), llvm::HexagonInstrInfo::hasStoreToStackSlot(), INITIALIZE_PASS(), isIdenticalTo(), IsMovepDestinationRegPair(), llvm::ARMBaseInstrInfo::isPredicable(), llvm::ARMBaseInstrInfo::isPredicated(), llvm::HexagonPacketizerList::isSoloInstruction(), llvm::TargetInstrInfo::PredicateInstruction(), llvm::HexagonPacketizerList::unpacketizeSoloInstrs(), and UpdateCPSRUse().
|
inline |
Return true if this instruction part of a bundle.
This is true if either itself or its following instruction is marked "InsideBundle".
Definition at line 356 of file MachineInstr.h.
References isBundledWithPred(), and isBundledWithSucc().
Referenced by dumpMachineInstrRangeWithSlotIndex(), llvm::LiveRangeEdit::eraseVirtReg(), llvm::LiveIntervals::handleMove(), hasProperty(), llvm::X86FrameLowering::inlineStackProbe(), and isValidClauseInst().
|
inline |
Return true if this instruction is part of a bundle, and it is not the first instruction in the bundle.
Definition at line 362 of file MachineInstr.h.
References BundledPred, and getFlag().
Referenced by bundleWithPred(), copyIRFlags(), hasProperty(), llvm::MachineBasicBlock::insert(), llvm::MachineBasicBlock::insertAfter(), isBundled(), moveInstrOut(), llvm::SlotIndexes::removeMachineInstrFromMaps(), llvm::SlotIndexes::removeSingleMachineInstrFromMaps(), unbundleFromPred(), and unbundleSingleMI().
|
inline |
Return true if this instruction is part of a bundle, and it is not the last instruction in the bundle.
Definition at line 366 of file MachineInstr.h.
References BundledSucc, bundleWithPred(), bundleWithSucc(), getFlag(), unbundleFromPred(), and unbundleFromSucc().
Referenced by bundleWithSucc(), hasUnoccupiedSlot(), llvm::MachineBasicBlock::insert(), llvm::MachineBasicBlock::insertAfter(), isBundled(), moveInstrOut(), llvm::SlotIndexes::removeSingleMachineInstrFromMaps(), unbundleFromSucc(), and unbundleSingleMI().
|
inline |
Definition at line 633 of file MachineInstr.h.
References llvm::MCID::Call, and hasProperty().
Referenced by addEpilogOnlyR10(), addLiveInRegs(), llvm::ScheduleDAGInstrs::addSchedBarrierDeps(), areCandidatesToMergeOrPair(), llvm::DwarfDebug::beginInstruction(), callHasRegMask(), llvm::EHStreamer::callToNoUnwindFunction(), CanMovePastDMB(), cannotCoexistAsymm(), CriticalPathStep(), llvm::X86AsmPrinter::EmitInstruction(), llvm::SystemZHazardRecognizer::emitInstruction(), llvm::MipsAsmPrinter::EmitInstruction(), getFPReg(), llvm::rdf::DataFlowGraph::getNextShadow(), llvm::AArch64InstrInfo::getOutliningCandidateInfo(), llvm::AArch64InstrInfo::getOutliningType(), getRegClassForUnfoldedLoad(), llvm::X86InstrInfo::getSPAdjust(), llvm::HexagonPacketizerList::hasControlDependence(), llvm::HexagonPacketizerList::hasDeadDependence(), hasOrderedMemoryRef(), hasRegisterDependency(), llvm::HexagonPacketizerList::hasRegMaskDependence(), hasYmmOrZmmReg(), INITIALIZE_PASS(), isCallerPreservedOrConstPhysReg(), llvm::rdf::TargetOperandInfo::isClobbering(), llvm::HexagonInstrInfo::isComplex(), llvm::HexagonInstrInfo::isConstExtended(), isDependenceBarrier(), llvm::rdf::TargetOperandInfo::isFixedReg(), isGlobalMemoryObject(), llvm::HexagonPacketizerList::isLegalToPacketizeTogether(), isLoadFoldBarrier(), llvm::AArch64InstrInfo::isMBBSafeToOutlineFrom(), isNoReturnDef(), llvm::HexagonInstrInfo::isPredicable(), IsSafeAndProfitableToMove(), isSafeToMove(), llvm::HexagonInstrInfo::isSchedulingBoundary(), llvm::ARMBaseInstrInfo::isSchedulingBoundary(), llvm::PPCInstrInfo::isSignOrZeroExtended(), llvm::TargetInstrInfo::isTailCall(), mayAlias(), llvm::WebAssembly::mayThrow(), needsStackFrame(), llvm::rdf::operator<<(), DeadCodeElimination::SetQueue< T >::push_back(), Query(), regOverlapsSet(), llvm::HexagonRegisterInfo::shouldCoalesce(), llvm::TailDuplicator::shouldTailDuplicate(), and UpdateCPSRUse().
|
inline |
Definition at line 990 of file MachineInstr.h.
References getOpcode().
Referenced by countsAsInstruction(), getRegsUsedByPHIs(), llvm::HexagonPacketizerList::ignorePseudoInstruction(), INITIALIZE_PASS(), isPosition(), llvm::HexagonPacketizerList::isSoloInstruction(), llvm::MIPrinter::print(), print(), and llvm::TailDuplicator::shouldTailDuplicate().
|
inline |
Return true if this may be a 2- or 3-address instruction (of the form "X = op Y, Z, ..."), which produces the same result if Y and Z are exchanged.
If this flag is set, then the TargetInstrInfo::commuteInstruction method may be used to hack on the instruction.
Note that this flag may be set on instructions that are only commutable sometimes. In these cases, the call to commuteInstruction will fail. Also note that some instructions require non-trivial modification to commute them.
Definition at line 848 of file MachineInstr.h.
References llvm::MCID::Commutable, and hasProperty().
Referenced by addSegmentsWithValNo(), llvm::TargetInstrInfo::commuteInstruction(), foldImmediates(), getDPPOp(), isCallerPreservedOrConstPhysReg(), isLiveOut(), llvm::SIInstrInfo::legalizeOperandsVOP2(), matchSwap(), and tryConstantFoldOp().
|
inline |
Return true if this instruction is a comparison.
Definition at line 694 of file MachineInstr.h.
References llvm::MCID::Compare, and hasProperty().
Referenced by llvm::SystemZInstrInfo::analyzeCompare(), llvm::createHexagonHardwareLoops(), getCompareSourceReg(), INITIALIZE_PASS(), isCompareZero(), llvm::HexagonInstrInfo::isEarlySourceInstr(), isImmValidForOpcode(), isVirtualRegisterOperand(), lowerRIHigh(), lowerRILow(), and matchSwap().
|
inline |
Return true if this is a branch which may fall through to the next instruction or may transfer control flow to some other block.
The TargetInstrInfo::AnalyzeBranch method can be used to get more information about this branch.
Definition at line 671 of file MachineInstr.h.
References isBarrier(), isBranch(), and isIndirectBranch().
Referenced by llvm::HexagonInstrInfo::getDotNewPredJumpOp(), and isVirtualRegisterOperand().
unsigned MachineInstr::isConstantValuePHI | ( | ) | const |
If the specified instruction is a PHI that always merges together the same virtual register, return the register, otherwise return 0.
isConstantValuePHI - If the specified instruction is a PHI that always merges together the same virtual register, return the register, otherwise return 0.
Definition at line 1337 of file MachineInstr.cpp.
References assert(), getNumOperands(), getOperand(), llvm::MachineOperand::getReg(), getReg(), isPHI(), and Reg.
Referenced by llvm::MachineSSAUpdater::GetValueInMiddleOfBlock(), and isRegTiedToDefOperand().
|
inline |
Return true if this instruction is convergent.
Convergent instructions can not be made control-dependent on any additional values.
Definition at line 730 of file MachineInstr.h.
References llvm::MCID::Convergent, llvm::InlineAsm::Extra_IsConvergent, llvm::MachineOperand::getImm(), getOperand(), hasProperty(), isInlineAsm(), and llvm::InlineAsm::MIOp_ExtraInfo.
Referenced by performSink(), and llvm::TailDuplicator::shouldTailDuplicate().
|
inline |
Return true if this is a 2-address instruction which can be changed into a 3-address instruction if needed.
Doing this transformation can be profitable in the register allocator, because it means that the instruction can use a 2-address form if possible, but degrade into a less efficient form if the source and dest register cannot be assigned to the same register. For example, this allows the x86 backend to turn a "shl reg, 3" instruction into an LEA instruction, which is the same speed as the shift but has bigger code size.
If this returns true, then the target must implement the TargetInstrInfo::convertToThreeAddress method for this instruction, which is allowed to fail if the transformation isn't valid for this specific instruction (e.g. shl reg, 4 on x86).
Definition at line 866 of file MachineInstr.h.
References llvm::MCID::ConvertibleTo3Addr, and hasProperty().
|
inline |
Definition at line 1040 of file MachineInstr.h.
References getOpcode().
Referenced by addSegmentsWithValNo(), llvm::HexagonSubtarget::adjustSchedDependency(), llvm::HexagonSubtarget::CallMutation::apply(), llvm::biasPhysReg(), canFoldCopy(), changeFCMPPredToAArch64CC(), computeBranchTargetAndInversion(), llvm::createCopyConstrainDAGMutation(), dumpMachineInstrRangeWithSlotIndex(), llvm::LiveRangeEdit::eraseVirtReg(), llvm::HexagonEvaluator::evaluate(), llvm::ARMBaseInstrInfo::expandPostRAPseudo(), findSRegBaseAndIndex(), llvm::TargetInstrInfo::foldMemoryOperand(), llvm::AArch64InstrInfo::foldMemoryOperandImpl(), llvm::X86InstrInfo::foldMemoryOperandImpl(), foldVGPRCopyIntoRegSequence(), getFPReg(), getNewSource(), getRegClassFromGRPhysReg(), getSingleDef(), getSubOpcode(), getWinAllocaAmount(), hasRegisterDependency(), INITIALIZE_PASS(), insertPHI(), isCopyFeedingInvariantStore(), llvm::TargetInstrInfo::isCopyInstr(), isCopyLike(), isCopyLike(), isCopyToReg(), isDebug(), isDefInSubRange(), isFpMulInstruction(), isFullCopy(), isFullCopyOf(), isIdentityCopy(), llvm::SIInstrInfo::isInlineConstant(), isLocalCopy(), isNopCopy(), isUseSafeToFold(), llvm::SIInstrInfo::isVGPRCopy(), isVirtualRegisterOperand(), llvm::TargetRegisterInfo::lookThruCopyLike(), MIIsInTerminatorSequence(), llvm::SIInstrInfo::moveToVALU(), llvm::AArch64InstrInfo::optimizeCondBranch(), regOverlapsSet(), llvm::GenericScheduler::reschedulePhysReg(), llvm::SelectionDAGISel::runOnMachineFunction(), llvm::AMDGPUInstructionSelector::select(), selectCopy(), llvm::SystemZRegisterInfo::shouldCoalesce(), swapAntiDependences(), llvm::TailDuplicator::tailDuplicateAndUpdate(), and llvm::VirtRegAuxInfo::weightCalcHelper().
|
inline |
Return true if the instruction behaves like a copy.
This does not include native copy instructions.
Definition at line 1054 of file MachineInstr.h.
References isCopy(), and isSubregToReg().
Referenced by definesFullReg(), llvm::ARMBaseInstrInfo::getOperandLatency(), INITIALIZE_PASS(), isCallerPreservedOrConstPhysReg(), isCopyFeedingInvariantStore(), isSplitEdge(), isTerminalReg(), llvm::TargetRegisterInfo::lookThruCopyLike(), and regOverlapsSet().
|
inline |
Definition at line 999 of file MachineInstr.h.
References isDebugLabel(), and isDebugValue().
Referenced by addRegsToSet(), llvm::GCNHazardRecognizer::AdvanceCycle(), llvm::CodeViewDebug::beginInstruction(), llvm::RegPressureTracker::bumpDownwardPressure(), llvm::RegPressureTracker::bumpUpwardPressure(), countsAsInstruction(), llvm::createBreakFalseDeps(), llvm::ARMHazardRecognizer::EmitInstruction(), llvm::PPCHazardRecognizer970::EmitInstruction(), llvm::RegScavenger::enterBasicBlockEnd(), llvm::BitTracker::MachineEvaluator::evaluate(), findStartOfTree(), getDataDeps(), llvm::ARMHazardRecognizer::getHazardType(), llvm::PPCHazardRecognizer970::getHazardType(), getNewValueJumpOpcode(), llvm::X86InstrInfo::getOutliningCandidateInfo(), llvm::AArch64InstrInfo::getOutliningType(), llvm::X86InstrInfo::getOutliningType(), getRetpolineSymbol(), getSchedRegions(), llvm::HexagonInstrInfo::getSize(), getStartOrEndSlot(), llvm::LiveVariables::HandleVirtRegDef(), hasRegisterDependency(), llvm::HexagonPacketizerList::ignorePseudoInstruction(), INITIALIZE_PASS(), llvm::SlotIndexes::insertMachineInstrInMaps(), isCallerPreservedOrConstPhysReg(), isFullCopyOf(), isFullUndefDef(), isIdenticalTo(), IsSafeAndProfitableToMove(), isSafeToMove(), llvm::HexagonInstrInfo::isSchedulingBoundary(), llvm::ARMBaseInstrInfo::isSchedulingBoundary(), isVirtualRegisterOperand(), matchPair(), MaySpeculate(), llvm::CriticalAntiDepBreaker::Observe(), Query(), readsVCCZ(), llvm::GCNUpwardRPTracker::recede(), removeRegisterOperands(), llvm::LiveIntervals::repairIntervalsInRange(), llvm::rdf::Liveness::resetKills(), llvm::RegScavenger::unprocess(), UpdateCPSRUse(), and llvm::VirtRegAuxInfo::weightCalcHelper().
|
inline |
Definition at line 998 of file MachineInstr.h.
References getOpcode().
Referenced by llvm::DbgLabelInstrMap::addInstr(), llvm::MachineInstrBuilder::addMetadata(), llvm::ScheduleDAGInstrs::buildSchedGraph(), llvm::MipsAsmPrinter::EmitInstruction(), getDebugLabel(), isDebugInstr(), and print().
|
inline |
Definition at line 997 of file MachineInstr.h.
References getOpcode().
Referenced by llvm::MachineInstrBuilder::addMetadata(), addSegmentsWithValNo(), AssignProtectedObjSet(), llvm::ScheduleDAGInstrs::buildSchedGraph(), llvm::createX86OptimizeLEAs(), llvm::ConnectedVNInfoEqClasses::Distribute(), llvm::XCoreRegisterInfo::eliminateFrameIndex(), llvm::ARCRegisterInfo::eliminateFrameIndex(), llvm::ThumbRegisterInfo::eliminateFrameIndex(), llvm::AArch64RegisterInfo::eliminateFrameIndex(), llvm::ARMBaseRegisterInfo::eliminateFrameIndex(), llvm::MipsAsmPrinter::EmitInstruction(), llvm::DbgVariableLocation::extractFromMachineInstruction(), getDebugExpression(), getDebugVariable(), getLoadStoreOffsetAlign(), getSingleDef(), hasRegisterDependency(), INITIALIZE_PASS(), llvm::Mips16RegisterInfo::intRegClass(), isDbgValueDescribedByReg(), isDebugInstr(), isDefBetween(), isDescribedByReg(), isFullCopyOf(), isFullUndefDef(), isIndirectDebugValue(), isValidClauseInst(), llvm::MachineRegisterInfo::markUsesInDebugValueAsUndef(), matchPair(), MIIsInTerminatorSequence(), needsReferenceType(), false::IntervalSorter::operator()(), print(), llvm::SelectionDAGISel::runOnMachineFunction(), llvm::DbgValueHistoryMap::startInstrRange(), llvm::TailDuplicator::tailDuplicateAndUpdate(), llvm::HexagonPacketizerList::unpacketizeSoloInstrs(), and llvm::AntiDepBreaker::UpdateDbgValue().
bool MachineInstr::isDereferenceableInvariantLoad | ( | AliasAnalysis * | AA | ) | const |
Return true if this load instruction never traps and points to a memory location whose value doesn't change during the execution of this function.
isDereferenceableInvariantLoad - Return true if this instruction will never trap and is loading from a location whose value is invariant across a run of this function.
Examples include loading a value from the constant pool or from the argument area of a function (if it does not change). If the instruction does multiple loads, this returns true only if all of the loads are dereferenceable and invariant.
Definition at line 1295 of file MachineInstr.cpp.
References llvm::MachineFunction::getFrameInfo(), llvm::MachineBasicBlock::getParent(), getParent(), mayLoad(), memoperands(), memoperands_empty(), and llvm::AAResults::pointsToConstantMemory().
Referenced by llvm::ScheduleDAGInstrs::buildSchedGraph(), llvm::TargetInstrInfo::genAlternativeCodeSequence(), isCallerPreservedOrConstPhysReg(), isCopyFeedingInvariantStore(), isDependenceBarrier(), isGlobalMemoryObject(), llvm::X86InstrInfo::isReallyTriviallyReMaterializable(), isRegTiedToDefOperand(), isSafeToMove(), and Query().
|
inline |
Definition at line 979 of file MachineInstr.h.
References llvm::ISD::EH_LABEL, and getOpcode().
Referenced by getRetpolineSymbol(), isLabel(), and llvm::HexagonPacketizerList::isSoloInstruction().
|
inline |
Return true if this is an instruction that marks the end of an EH scope, i.e., a catchpad or a cleanuppad instruction.
Definition at line 629 of file MachineInstr.h.
References llvm::MCID::EHScopeReturn, and hasProperty().
|
inline |
Definition at line 1048 of file MachineInstr.h.
References getOpcode().
Referenced by llvm::TargetInstrInfo::getExtractSubregInputs(), insertPHI(), and isOperandSubregIdx().
|
inline |
Return true if this instruction behaves the same way as the generic EXTRACT_SUBREG instructions.
E.g., on ARM, rX, rY VMOVRRD dZ is equivalent to two EXTRACT_SUBREG: rX = EXTRACT_SUBREG dZ, ssub_0 rY = EXTRACT_SUBREG dZ, ssub_1
Note that for the optimizers to be able to take advantage of this property, TargetInstrInfo::getExtractSubregLikeInputs has to be override accordingly.
Definition at line 782 of file MachineInstr.h.
References llvm::MCID::ExtractSubreg, and hasProperty().
Referenced by getCopyRewriter(), llvm::TargetInstrInfo::getExtractSubregInputs(), and llvm::ARMBaseInstrInfo::getExtractSubregLikeInputs().
|
inline |
Definition at line 1044 of file MachineInstr.h.
References getOperand(), llvm::MachineOperand::getSubReg(), and isCopy().
Referenced by addSegmentsWithValNo(), llvm::AArch64InstrInfo::foldMemoryOperandImpl(), llvm::CoalescerPair::isCoalescable(), isFullCopyOf(), isFullExecCopy(), isRematerializable(), and removeCopies().
|
inline |
bool MachineInstr::isIdenticalTo | ( | const MachineInstr & | Other, |
MICheckType | Check = CheckDefs |
||
) | const |
Return true if this instruction is identical to Other
.
Two instructions are identical if they have the same opcode and all their operands are identical (with respect to MachineOperand::isIdenticalTo()). Note that this means liveness related flags (dead, undef, kill) do not affect the notion of identical.
Definition at line 573 of file MachineInstr.cpp.
References assert(), CheckKillDead, getDebugLoc(), llvm::ilist_node_impl< ilist_detail::compute_node_options< MachineInstr, Options... >::type >::getIterator(), llvm::ilist_node_impl< OptionsT >::getIterator(), getNumOperands(), getOpcode(), getOperand(), llvm::MachineOperand::getReg(), IgnoreDefs, IgnoreVRegDefs, isBundle(), llvm::MachineOperand::isDead(), isDebugInstr(), llvm::MachineOperand::isDef(), llvm::MachineOperand::isIdenticalTo(), llvm::MachineOperand::isKill(), llvm::MachineOperand::isReg(), and llvm::TargetRegisterInfo::isVirtualRegister().
Referenced by llvm::MachineInstrExpressionTrait::isEqual(), llvm::ARMBaseInstrInfo::produceSameValue(), and llvm::TargetInstrInfo::produceSameValue().
|
inline |
Return true is the instruction is an identity copy.
Definition at line 1059 of file MachineInstr.h.
References getOperand(), llvm::MachineOperand::getReg(), llvm::MachineOperand::getSubReg(), and isCopy().
Referenced by llvm::VirtRegAuxInfo::weightCalcHelper().
|
inline |
Definition at line 1014 of file MachineInstr.h.
References getOpcode().
Referenced by llvm::HexagonPacketizerList::addToPacket(), allPhiOperandsUndefined(), llvm::HexagonPacketizerList::canPromoteToDotNew(), canTurnIntoCOPY(), definesFullReg(), getFPReg(), llvm::ARMBaseInstrInfo::getOperandLatency(), llvm::HexagonPacketizerList::ignorePseudoInstruction(), INITIALIZE_PASS(), isCallerPreservedOrConstPhysReg(), isCopyFeedingInvariantStore(), isCrossCopy(), isFpMulInstruction(), isFullUndefDef(), isOperandKill(), isVirtualRegisterOperand(), MIIsInTerminatorSequence(), shouldPreventUndefRegUpdateMemFold(), and llvm::VirtRegAuxInfo::weightCalcHelper().
|
inline |
Return true if this is an indirect branch, such as a branch through a register.
Definition at line 663 of file MachineInstr.h.
References hasProperty(), and llvm::MCID::IndirectBranch.
Referenced by llvm::MipsInstrInfo::analyzeBranch(), blockEndsInUnreachable(), llvm::MipsAsmPrinter::EmitInstruction(), llvm::rdf::DataFlowGraph::getNextShadow(), isConditionalBranch(), llvm::HexagonInstrInfo::isHVXMemWithAIndirect(), isUnconditionalBranch(), and llvm::TailDuplicator::shouldTailDuplicate().
|
inline |
A DBG_VALUE is indirect iff the first operand is a register and the second operand is an immediate.
Definition at line 1003 of file MachineInstr.h.
References getOperand(), isDebugValue(), llvm::MachineOperand::isImm(), and llvm::MachineOperand::isReg().
Referenced by computeExprForSpill(), llvm::createX86OptimizeLEAs(), llvm::DbgVariableLocation::extractFromMachineInstruction(), llvm::AArch64InstrInfo::getOutliningType(), llvm::X86InstrInfo::getOutliningType(), INITIALIZE_PASS(), print(), and llvm::SelectionDAGISel::runOnMachineFunction().
|
inline |
Definition at line 1015 of file MachineInstr.h.
References getOpcode(), and llvm::ISD::INLINEASM.
Referenced by addOperand(), addRegisterDead(), addRegisterKilled(), llvm::RegAllocBase::allocatePhysRegs(), llvm::BTFDebug::beginInstruction(), cannotCoexistAsymm(), llvm::HexagonPacketizerList::canPromoteToDotCur(), llvm::HexagonPacketizerList::canPromoteToDotNew(), CriticalPathStep(), llvm::PPCRegisterInfo::eliminateFrameIndex(), EmitGCCInlineAsmStr(), llvm::LiveRangeEdit::eraseVirtReg(), findInlineAsmFlagIdx(), findTiedOperandIdx(), llvm::TargetInstrInfo::genAlternativeCodeSequence(), getFPReg(), llvm::GCNHazardRecognizer::getHazardType(), getInlineAsmDialect(), getOffsetONFromFION(), getRegClassConstraint(), hasUnmodeledSideEffects(), llvm::SIInstrInfo::hasUnwantedEffectsWhenEXECEmpty(), llvm::HexagonPacketizerList::ignorePseudoInstruction(), INITIALIZE_PASS(), isCallerPreservedOrConstPhysReg(), isConvergent(), llvm::rdf::TargetOperandInfo::isFixedReg(), llvm::HexagonInstrInfo::isSchedulingBoundary(), llvm::HexagonPacketizerList::isSoloInstruction(), isStackAligningInlineAsm(), isUnsafeToMoveAcross(), isVirtualRegisterOperand(), matchPair(), mayLoad(), mayStore(), llvm::GCNHazardRecognizer::PreEmitNoops(), print(), removePhis(), removeRegisterOperands(), llvm::MipsInstrInfo::SafeInForbiddenSlot(), tieOperands(), llvm::HexagonPacketizerList::unpacketizeSoloInstrs(), and llvm::SIInstrInfo::verifyInstruction().
|
inline |
Definition at line 1024 of file MachineInstr.h.
References getOpcode().
Referenced by llvm::TargetInstrInfo::getInsertSubregInputs(), llvm::ARMBaseInstrInfo::getOperandLatency(), INITIALIZE_PASS(), insertPHI(), isCopyToReg(), and isOperandSubregIdx().
|
inline |
Return true if this instruction behaves the same way as the generic INSERT_SUBREG instructions.
E.g., on ARM, dX = VSETLNi32 dY, rZ, Imm is equivalent to a INSERT_SUBREG: dX = INSERT_SUBREG dY, rZ, translateImmToSubIdx(Imm)
Note that for the optimizers to be able to take advantage of this property, TargetInstrInfo::getInsertSubregLikeInputs has to be override accordingly.
Definition at line 796 of file MachineInstr.h.
References hasProperty(), and llvm::MCID::InsertSubreg.
Referenced by getCopyRewriter(), llvm::TargetInstrInfo::getInsertSubregInputs(), and llvm::ARMBaseInstrInfo::getInsertSubregLikeInputs().
|
inline |
Return true if MI is in a bundle (but not the first MI in a bundle).
In this case, the first MI starts a bundle but is not inside a bundle, the next 2 MIs are considered "inside" the bundle.
The first instruction has the special opcode "BUNDLE". It's not "inside" a bundle, but the next three MIs are.
Definition at line 350 of file MachineInstr.h.
References BundledPred, and getFlag().
Referenced by llvm::BuildMI(), llvm::SlotIndexes::insertMachineInstrInMaps(), matchPair(), llvm::MIPrinter::print(), llvm::MachineBasicBlock::print(), llvm::HexagonPacketizerList::unpacketizeSoloInstrs(), and UpdateCPSRUse().
|
inline |
Definition at line 1013 of file MachineInstr.h.
References getOpcode(), and llvm::AMDGPUISD::KILL.
Referenced by CriticalPathStep(), findRegisterUseOperand(), llvm::X86InstrInfo::getOutliningCandidateInfo(), llvm::AArch64InstrInfo::getOutliningType(), llvm::X86InstrInfo::getOutliningType(), isCallerPreservedOrConstPhysReg(), isCrossCopy(), isVirtualRegisterOperand(), llvm::CriticalAntiDepBreaker::Observe(), and registerDefIsDead().
|
inline |
Returns true if the MachineInstr represents a label.
Definition at line 986 of file MachineInstr.h.
References isAnnotationLabel(), isEHLabel(), and isGCLabel().
Referenced by findStartOfTree(), isPosition(), and removeRegisterOperands().
bool MachineInstr::isLoadFoldBarrier | ( | ) | const |
Returns true if it is illegal to fold a load across this instruction.
Definition at line 1362 of file MachineInstr.cpp.
References hasUnmodeledSideEffects(), isCall(), and mayStore().
Referenced by isRegTiedToDefOperand(), and isVirtualRegisterOperand().
|
inline |
Return true if this instruction doesn't produce any output in the form of executable instructions.
Definition at line 1066 of file MachineInstr.h.
References llvm::ISD::EH_LABEL, getOpcode(), llvm::AMDGPUISD::KILL, llvm::ISD::LIFETIME_END, and llvm::ISD::LIFETIME_START.
Referenced by llvm::BTFDebug::beginInstruction(), llvm::DwarfDebug::beginInstruction(), llvm::DebugHandlerBase::endInstruction(), INITIALIZE_PASS(), isTransient(), isUnsafeToMoveAcross(), and llvm::TailDuplicator::shouldTailDuplicate().
|
inline |
Return true if this instruction is a move immediate (including conditional moves) instruction.
Definition at line 700 of file MachineInstr.h.
References hasProperty(), and llvm::MCID::MoveImm.
Referenced by llvm::biasPhysReg(), llvm::SIInstrInfo::FoldImmediate(), foldImmediates(), getImmOrMaterializedImm(), getNewSource(), INITIALIZE_PASS(), isSafeToFoldImmIntoCopy(), llvm::SIInstrInfo::legalizeGenericOperand(), and llvm::GenericScheduler::reschedulePhysReg().
|
inline |
Return true if this instruction is a register move.
(including moving values from subreg to reg)
Definition at line 706 of file MachineInstr.h.
References hasProperty(), and llvm::MCID::MoveReg.
Referenced by llvm::MipsSEInstrInfo::isCopyInstrImpl(), llvm::ARMBaseInstrInfo::isCopyInstrImpl(), llvm::Mips16InstrInfo::isCopyInstrImpl(), and llvm::X86InstrInfo::isCopyInstrImpl().
|
inline |
Definition at line 1017 of file MachineInstr.h.
References getInlineAsmDialect(), getOpcode(), llvm::ISD::INLINEASM, and isStackAligningInlineAsm().
|
inline |
Return true if this instruction cannot be safely duplicated.
For example, if the instruction has a unique labels attached to it, duplicating it would cause multiple definition errors.
Definition at line 723 of file MachineInstr.h.
References hasProperty(), and llvm::MCID::NotDuplicable.
Referenced by llvm::TargetInstrInfo::duplicate(), llvm::TargetInstrInfo::genAlternativeCodeSequence(), and llvm::TailDuplicator::shouldTailDuplicate().
Return true if operand OpIdx
is a subregister index.
Definition at line 429 of file MachineInstr.h.
References assert(), getNumExplicitDefs(), getNumExplicitOperands(), getOperand(), getType(), isExtractSubreg(), isInsertSubreg(), isRegSequence(), isSubregToReg(), and llvm::MachineOperand::MO_Immediate.
Referenced by llvm::MIPrinter::print(), and print().
|
inline |
Definition at line 1009 of file MachineInstr.h.
References getOpcode().
Referenced by allPhiOperandsUndefined(), llvm::TailDuplicator::canTailDuplicate(), checkRegOnlyPHIInputs(), computeLiveOuts(), createBBSelectReg(), llvm::LiveRangeCalc::createDeadDefs(), llvm::SMSchedule::finalizeSchedule(), fixupRegionExits(), llvm::Localizer::getAnalysisUsage(), llvm::RegBankSelect::getAnalysisUsage(), llvm::SwingSchedulerDAG::getDistance(), llvm::AArch64RegisterBankInfo::getInstrMapping(), getPHIDeps(), getPHIDestReg(), getPHINumInputs(), getPHIPred(), getPhiRegs(), getPHISourceReg(), getRegsUsedByPHIs(), getUnderlyingObjects(), getZeroLatency(), llvm::LiveVariables::HandleVirtRegDef(), hasUseAfterLoop(), INITIALIZE_PASS(), insertUndefLaneMask(), llvm::RegBankSelect::InstrInsertPoint::InstrInsertPoint(), llvm::SSAUpdaterTraits< MachineSSAUpdater >::InstrIsPHI(), llvm::SwingSchedulerDAG::isBackedge(), isCallerPreservedOrConstPhysReg(), isConstantValuePHI(), isCopyLike(), isDebug(), isFunctionEntryBlock(), isIntersect(), llvm::SMSchedule::isLoopCarried(), llvm::SMSchedule::isLoopCarriedDefOfUse(), llvm::SwingSchedulerDAG::isLoopCarriedDep(), isSafeToMove(), llvm::isTriviallyDead(), llvm::SMSchedule::isValidSchedule(), isVirtualRegisterOperand(), matchPair(), parseCond(), ProcessSourceNode(), profitImm(), DeadCodeElimination::SetQueue< T >::push_back(), pushDepHeight(), removeExternalCFGEdges(), removePhis(), llvm::RegBankSelect::RepairingPlacement::RepairingPlacement(), llvm::MachineSSAUpdater::RewriteUse(), llvm::TailDuplicator::shouldTailDuplicate(), swapAntiDependences(), llvm::TailDuplicator::tailDuplicateAndUpdate(), llvm::MachineBasicBlock::transferSuccessorsAndUpdatePHIs(), llvm::CombinerHelper::tryCombineCopy(), and llvm::MachineTraceMetrics::Ensemble::updateDepth().
|
inline |
Definition at line 995 of file MachineInstr.h.
References isCFIInstruction(), and isLabel().
Referenced by llvm::ScheduleDAGInstrs::buildSchedGraph(), llvm::AArch64InstrInfo::getOutliningType(), llvm::X86InstrInfo::getOutliningType(), llvm::HexagonInstrInfo::getSize(), isCallerPreservedOrConstPhysReg(), isFpMulInstruction(), isSafeToMove(), llvm::HexagonInstrInfo::isSchedulingBoundary(), llvm::ARMBaseInstrInfo::isSchedulingBoundary(), llvm::TargetInstrInfo::isSchedulingBoundary(), isVirtualRegisterOperand(), DeadCodeElimination::SetQueue< T >::push_back(), and Query().
|
inline |
Return true if this instruction has a predicate operand that controls execution.
It may be set to 'always', or may be set to other values. There are various methods in TargetInstrInfo that can be used to control and modify the predicate in this instruction.
Definition at line 687 of file MachineInstr.h.
References hasProperty(), and llvm::MCID::Predicable.
Referenced by AnyAliasLiveIn(), canFoldIntoMOVCC(), canFoldIntoSelect(), llvm::ThumbRegisterInfo::eliminateFrameIndex(), llvm::ARMBaseInstrInfo::isPredicable(), llvm::MSP430InstrInfo::isUnpredicatedTerminator(), llvm::X86InstrInfo::isUnpredicatedTerminator(), llvm::TargetInstrInfo::isUnpredicatedTerminator(), llvm::TargetInstrInfo::PredicateInstruction(), registerDefinedBetween(), and SinkingPreventsImplicitNullCheck().
|
inline |
Return true if this is a pseudo instruction that doesn't correspond to a real machine instruction.
Definition at line 619 of file MachineInstr.h.
References hasProperty(), and llvm::MCID::Pseudo.
Referenced by llvm::TargetSubtargetInfo::getSchedInfoStr(), INITIALIZE_PASS(), insertNopBeforeInstruction(), and llvm::ConvergingVLIWScheduler::SchedulingCost().
|
inline |
Definition at line 1032 of file MachineInstr.h.
References getOpcode().
Referenced by llvm::HexagonSubtarget::adjustSchedDependency(), foldVGPRCopyIntoRegSequence(), llvm::ARMBaseInstrInfo::getOperandLatency(), llvm::TargetInstrInfo::getRegSequenceInputs(), llvm::getRegSequenceSubReg(), INITIALIZE_PASS(), insertPHI(), isDebug(), isOperandSubregIdx(), isUseSafeToFold(), and swapAntiDependences().
|
inline |
Return true if this instruction behaves the same way as the generic REG_SEQUENCE instructions.
E.g., on ARM, dX VMOVDRR rY, rZ is equivalent to dX = REG_SEQUENCE rY, ssub_0, rZ, ssub_1.
Note that for the optimizers to be able to take advantage of this property, TargetInstrInfo::getRegSequenceLikeInputs has to be override accordingly.
Definition at line 767 of file MachineInstr.h.
References hasProperty(), and llvm::MCID::RegSequence.
Referenced by getCopyRewriter(), llvm::TargetInstrInfo::getRegSequenceInputs(), and llvm::ARMBaseInstrInfo::getRegSequenceLikeInputs().
|
inline |
Return true if the use operand of the specified index is tied to a def operand.
It also returns the def operand index by reference if DefOpIdx is not null.
Definition at line 1294 of file MachineInstr.h.
References addOperand(), addRegisterDead(), addRegisterDefined(), addRegisterKilled(), allDefsAreDead(), clearKillInfo(), clearRegisterDeads(), clearRegisterKills(), copyImplicitOps(), dump(), findTiedOperandIdx(), getOperand(), getTypeToPrint(), hasComplexRegisterTies(), hasOrderedMemoryRef(), hasUnmodeledSideEffects(), isConstantValuePHI(), isDereferenceableInvariantLoad(), isLoadFoldBarrier(), llvm::MachineOperand::isReg(), isSafeToMove(), llvm::MachineOperand::isTied(), llvm::MachineOperand::isUse(), mayAlias(), MI, MRI, Other, print(), setPhysRegsDeadExcept(), setRegisterDefReadUndef(), substituteRegister(), and UseTBAA.
Referenced by addRegisterKilled(), addSegmentsWithValNo(), llvm::MachineOperandIteratorBase::analyzeVirtReg(), llvm::LiveRangeCalc::createDeadDefs(), dumpMachineInstrRangeWithSlotIndex(), getRegClassConstraint(), isTwoAddrUse(), and matchPair().
|
inline |
Given the index of a register def operand, check if the register def is tied to a source operand, due to either two-address elimination or inline assembly constraints.
Returns the first tied use operand index by reference if UseOpIdx is not null.
Definition at line 1281 of file MachineInstr.h.
References findTiedOperandIdx(), getOperand(), llvm::MachineOperand::isDef(), llvm::MachineOperand::isReg(), and llvm::MachineOperand::isTied().
Referenced by addSegmentsWithValNo(), llvm::constrainSelectedInstRegOperands(), CriticalPathStep(), llvm::SwingSchedulerDAG::fixupRegisterOverlaps(), INITIALIZE_PASS(), isVirtualRegisterOperand(), llvm::AggressiveAntiDepBreaker::Observe(), removePhis(), and llvm::SIInstrInfo::verifyInstruction().
|
inline |
Returns true if this instruction is a candidate for remat.
This flag is deprecated, please don't use it anymore. If this flag is set, the isReallyTriviallyReMaterializable() method is called to verify the instruction is really rematable.
Definition at line 894 of file MachineInstr.h.
References hasProperty(), and llvm::MCID::Rematerializable.
|
inline |
Definition at line 623 of file MachineInstr.h.
References hasProperty(), and llvm::MCID::Return.
Referenced by addEpilogOnlyR10(), blockEndsInUnreachable(), CanMovePastDMB(), llvm::X86RegisterInfo::eliminateFrameIndex(), llvm::MipsAsmPrinter::EmitInstruction(), enableAllocFrameElim(), llvm::X86InstrInfo::getOutliningType(), INITIALIZE_PASS(), isBranchRetTrap(), llvm::HexagonInstrInfo::isComplex(), isCopy(), isEFLAGSLive(), llvm::rdf::TargetOperandInfo::isFixedReg(), llvm::TargetInstrInfo::isTailCall(), DeadCodeElimination::SetQueue< T >::push_back(), and llvm::TailDuplicator::shouldTailDuplicate().
bool MachineInstr::isSafeToMove | ( | AliasAnalysis * | AA, |
bool & | SawStore | ||
) | const |
Return true if it is safe to move this instruction.
isSafeToMove - Return true if it is safe to move this instruction.
If SawStore is set to true, it means that there is a store (or call) between the instruction's location and its intended destination.
Definition at line 1148 of file MachineInstr.cpp.
References hasOrderedMemoryRef(), hasUnmodeledSideEffects(), isCall(), isDebugInstr(), isDereferenceableInvariantLoad(), isPHI(), isPosition(), isTerminator(), mayLoad(), and mayStore().
Referenced by canFoldIntoMOVCC(), canFoldIntoSelect(), definesFullReg(), llvm::LiveRangeEdit::eraseVirtReg(), findSinkableLocalRegDef(), isCopyFeedingInvariantStore(), isRegTiedToDefOperand(), llvm::isTriviallyDead(), MaySpeculate(), llvm::X86InstrInfo::optimizeLoadInstr(), performSink(), and regOverlapsSet().
|
inline |
Return true if this instruction is a select instruction.
Definition at line 716 of file MachineInstr.h.
References hasProperty(), and llvm::MCID::Select.
Referenced by isVirtualRegisterOperand().
bool MachineInstr::isStackAligningInlineAsm | ( | ) | const |
Definition at line 757 of file MachineInstr.cpp.
References llvm::InlineAsm::Extra_IsAlignStack, llvm::MachineOperand::getImm(), getOperand(), isInlineAsm(), and llvm::InlineAsm::MIOp_ExtraInfo.
Referenced by isMSInlineAsm().
|
inline |
Definition at line 1028 of file MachineInstr.h.
References getOpcode().
Referenced by isCopyLike(), isCopyToReg(), isOperandSubregIdx(), and llvm::TargetRegisterInfo::lookThruCopyLike().
|
inline |
Returns true if this instruction part of the terminator for a basic block.
Typically this is things like return and branch instructions.
Various passes use this to insert code into the bottom of a basic block, but before control flow occurs.
Definition at line 649 of file MachineInstr.h.
References hasProperty(), and llvm::MCID::Terminator.
Referenced by AppendEndToFunction(), llvm::ScheduleDAGInstrs::buildSchedGraph(), cannotCoexistAsymm(), llvm::createSIWholeQuadModePass(), llvm::SystemZHazardRecognizer::emitInstruction(), llvm::RegBankSelect::getAnalysisUsage(), llvm::AArch64InstrInfo::getOutliningType(), llvm::X86InstrInfo::getOutliningType(), getRegClassForUnfoldedLoad(), llvm::TargetSubtargetInfo::getSchedInfoStr(), INITIALIZE_PASS(), llvm::SIInstrInfo::isBasicBlockPrologue(), isCallerPreservedOrConstPhysReg(), IsSafeAndProfitableToMove(), isSafeToMove(), llvm::ARMBaseInstrInfo::isSchedulingBoundary(), llvm::TargetInstrInfo::isSchedulingBoundary(), llvm::RegBankSelect::InstrInsertPoint::isSplit(), llvm::MSP430InstrInfo::isUnpredicatedTerminator(), llvm::X86InstrInfo::isUnpredicatedTerminator(), llvm::PPCInstrInfo::isUnpredicatedTerminator(), llvm::TargetInstrInfo::isUnpredicatedTerminator(), matchPair(), Query(), regOverlapsSet(), and llvm::RegBankSelect::RepairingPlacement::RepairingPlacement().
|
inline |
Return true if this is a transient instruction that is either very likely to be eliminated during register allocation (such as copy-like instructions), or if this instruction doesn't have an execution-time cost.
Definition at line 1086 of file MachineInstr.h.
References getBundleSize(), getOpcode(), and isMetaInstruction().
Referenced by areCandidatesToMergeOrPair(), llvm::TargetSchedModel::computeOperandLatency(), llvm::createSIWholeQuadModePass(), llvm::TargetInstrInfo::defaultDefLatency(), llvm::HexagonInstrInfo::getInstrTimingClassLatency(), llvm::TargetSchedModel::getNumMicroOps(), IsMovepDestinationRegPair(), mayAlias(), updatePhysDepsUpwards(), llvm::SchedDFSImpl::visitPostorderNode(), and llvm::SchedDFSImpl::visitPreorder().
|
inline |
Return true if this is a branch which always transfers control flow to some other block.
The TargetInstrInfo::AnalyzeBranch method can be used to get more information about this branch.
Definition at line 679 of file MachineInstr.h.
References isBarrier(), isBranch(), and isIndirectBranch().
Referenced by llvm::MipsInstrInfo::analyzeBranch(), llvm::RegBankSelect::getAnalysisUsage(), getUnconditionalBrDisp(), INITIALIZE_PASS(), and isSplitEdge().
|
inline |
Return true if this instruction can have a variable number of operands.
In this case, the variable operands will be after the normal operands but before the implicit definitions and uses (if any are present).
Definition at line 607 of file MachineInstr.h.
References hasProperty(), and llvm::MCID::Variadic.
Referenced by llvm::createBreakFalseDeps(), llvm::SIInstrInfo::getOpRegClass(), getTypeToPrint(), INITIALIZE_PASS(), and matchPair().
|
inline |
Return true if the MachineInstr kills the specified register.
If TargetRegisterInfo is passed, then it also checks if there is a kill of a super-register.
Definition at line 1134 of file MachineInstr.h.
References findRegisterUseOperandIdx(), and TRI.
Referenced by llvm::X86InstrInfo::breakPartialRegDependency(), checkEFLAGSLive(), ContainsReg(), createPHIsForCMOVsInSinkBB(), createPHIsForSelects(), llvm::ARMTargetLowering::EmitInstrWithCustomInserter(), isPlainlyKilled(), llvm::X86InstrInfo::optimizeCompareInstr(), and UpdateCPSRUse().
bool MachineInstr::mayAlias | ( | AliasAnalysis * | AA, |
MachineInstr & | Other, | ||
bool | UseTBAA | ||
) |
Returns true if this instruction's memory access aliases the memory access of Other.
Assumes any physical registers used to compute addresses have the same value for both instructions. Returns false if neither instruction writes to memory.
AA | Optional alias analysis, used to compare memory operands. |
Other | MachineInstr to check aliasing against. |
UseTBAA | Whether to pass TBAA information to alias analysis. |
Definition at line 1177 of file MachineInstr.cpp.
References llvm::AAResults::alias(), llvm::TargetInstrInfo::areMemAccessesTriviallyDisjoint(), assert(), llvm::MachineMemOperand::getAAInfo(), llvm::MachineFunction::getFrameInfo(), llvm::TargetSubtargetInfo::getInstrInfo(), getMF(), llvm::MachineMemOperand::getOffset(), llvm::MachineMemOperand::getPseudoValue(), llvm::MachineMemOperand::getSize(), llvm::MachineFunction::getSubtarget(), llvm::MachineMemOperand::getValue(), hasOneMemOperand(), llvm::max(), llvm::PseudoSourceValue::mayAlias(), mayStore(), memoperands_begin(), llvm::NoAlias, and llvm::MemoryLocation::UnknownSize.
Referenced by llvm::ScheduleDAGInstrs::addChainDependency(), isRegTiedToDefOperand(), and mayAlias().
|
inline |
Return true if this instruction could possibly read memory.
Instructions with this flag set are not necessarily simple load instructions, they may load a value and modify it, for example.
Definition at line 807 of file MachineInstr.h.
References llvm::InlineAsm::Extra_MayLoad, llvm::MachineOperand::getImm(), getOperand(), hasProperty(), isInlineAsm(), llvm::MCID::MayLoad, and llvm::InlineAsm::MIOp_ExtraInfo.
Referenced by AnyAliasLiveIn(), llvm::HexagonSubtarget::HVXMemLatencyMutation::apply(), llvm::HexagonSubtarget::BankConflictMutation::apply(), areCandidatesToMergeOrPair(), llvm::SIInstrInfo::areMemAccessesTriviallyDisjoint(), llvm::HexagonInstrInfo::areMemAccessesTriviallyDisjoint(), llvm::TargetInstrInfo::areMemAccessesTriviallyDisjoint(), llvm::ScheduleDAGInstrs::buildSchedGraph(), canMoveInstsAcrossMemOp(), CanMovePastDMB(), llvm::HexagonPacketizerList::canPromoteToNewValueStore(), llvm::TargetInstrInfo::defaultDefLatency(), llvm::HexagonFrameLowering::determineCalleeSaves(), llvm::WebAssemblyRegisterInfo::eliminateFrameIndex(), llvm::ThumbRegisterInfo::eliminateFrameIndex(), llvm::HexagonHazardRecognizer::EmitInstruction(), llvm::TargetLoweringBase::emitPatchPoint(), llvm::HexagonEvaluator::evaluate(), llvm::SIInstrInfo::expandPostRAPseudo(), llvm::TargetInstrInfo::foldMemoryOperand(), llvm::TargetInstrInfo::genAlternativeCodeSequence(), llvm::HexagonInstrInfo::getBaseAndOffsetPosition(), llvm::TargetInstrInfo::getInstrLatency(), llvm::GCNSubtarget::getMaxNumVGPRs(), llvm::SIInstrInfo::getMemOperandWithOffset(), getNewSource(), llvm::ARMBaseInstrInfo::getOperandLatency(), getPostIncrementOperand(), getRegClassForUnfoldedLoad(), getUnderlyingObjects(), hasOrderedMemoryRef(), INITIALIZE_PASS(), isCallerPreservedOrConstPhysReg(), isCopyFeedingInvariantStore(), isDependenceBarrier(), isDereferenceableInvariantLoad(), llvm::HexagonInstrInfo::isEarlySourceInstr(), isEFLAGSLive(), llvm::HexagonInstrInfo::isHVXMemWithAIndirect(), llvm::HexagonPacketizerList::isLegalToPacketizeTogether(), llvm::SIInstrInfo::isLoadFromStackSlot(), llvm::ARMBaseInstrInfo::isLoadFromStackSlotPostFE(), llvm::SwingSchedulerDAG::isLoopCarriedDep(), isSafeToMove(), isValidClauseInst(), matchPair(), mayLoadFromGOTOrConstantPool(), mayLoadOrStore(), llvm::AArch64RegisterInfo::needsFrameBaseReg(), packCmovGroup(), Query(), readsVCCZ(), llvm::HexagonHazardRecognizer::ShouldPreferAnother(), and SinkingPreventsImplicitNullCheck().
|
inline |
Return true if this instruction could possibly read or modify memory.
Definition at line 830 of file MachineInstr.h.
References mayLoad(), and mayStore().
Referenced by areCandidatesToMergeOrPair(), llvm::LanaiInstrInfo::areMemAccessesTriviallyDisjoint(), llvm::AArch64InstrInfo::areMemAccessesTriviallyDisjoint(), canMoveInstsAcrossMemOp(), llvm::createX86OptimizeLEAs(), llvm::SITargetLowering::EmitInstrWithCustomInserter(), llvm::ARMHazardRecognizer::getHazardType(), llvm::AArch64InstrInfo::getMemOpBaseRegImmOfsOffsetOperand(), llvm::AArch64InstrInfo::getMemOperandWithOffsetWidth(), getMemOpKey(), llvm::AArch64InstrInfo::getOutliningCandidateInfo(), isFirstInstructionInSequence(), llvm::InstructionSelector::isObviouslySafeToFold(), mayAlias(), llvm::SIRegisterInfo::needsFrameBaseReg(), usedAsAddr(), and VerifyLowRegs().
|
inline |
Return true if this instruction could possibly modify memory.
Instructions with this flag set are not necessarily simple store instructions, they may store a modified value based on their operands, or may not actually modify anything, for example.
Definition at line 820 of file MachineInstr.h.
References llvm::InlineAsm::Extra_MayStore, llvm::MachineOperand::getImm(), getOperand(), hasProperty(), isInlineAsm(), llvm::MCID::MayStore, and llvm::InlineAsm::MIOp_ExtraInfo.
Referenced by llvm::SUnit::addPredBarrier(), addRegsToSet(), AnyAliasLiveIn(), llvm::HexagonSubtarget::HVXMemLatencyMutation::apply(), llvm::HexagonSubtarget::BankConflictMutation::apply(), llvm::SIInstrInfo::areMemAccessesTriviallyDisjoint(), llvm::TargetInstrInfo::areMemAccessesTriviallyDisjoint(), llvm::ScheduleDAGInstrs::buildSchedGraph(), llvm::HexagonInstrInfo::canExecuteInBundle(), CanMovePastDMB(), cannotCoexistAsymm(), llvm::HexagonPacketizerList::canPromoteToNewValueStore(), llvm::ARMBaseInstrInfo::convertToThreeAddress(), llvm::createSIAddIMGInitPass(), llvm::createSIWholeQuadModePass(), llvm::HexagonFrameLowering::determineCalleeSaves(), llvm::WebAssemblyRegisterInfo::eliminateFrameIndex(), llvm::ThumbRegisterInfo::eliminateFrameIndex(), llvm::HexagonHazardRecognizer::EmitInstruction(), llvm::ARMAsmPrinter::EmitJumpTableTBInst(), llvm::TargetInstrInfo::foldMemoryOperand(), llvm::TargetInstrInfo::genAlternativeCodeSequence(), llvm::HexagonInstrInfo::getBaseAndOffsetPosition(), getInstrVecReg(), llvm::GCNSubtarget::getMaxNumVGPRs(), llvm::SIInstrInfo::getMemOperandWithOffset(), getUnderlyingObjects(), llvm::HexagonPacketizerList::hasDualStoreDependence(), hasOrderedMemoryRef(), hasRAWHazard(), llvm::SIInstrInfo::hasUnwantedEffectsWhenEXECEmpty(), INITIALIZE_PASS(), InstructionStoresToFI(), isCallerPreservedOrConstPhysReg(), isCopyFeedingInvariantStore(), llvm::HexagonInstrInfo::isEarlySourceInstr(), isFullCopyOf(), llvm::HexagonInstrInfo::isHVXMemWithAIndirect(), isInvariantStore(), llvm::HexagonPacketizerList::isLegalToPacketizeTogether(), isLoadFoldBarrier(), llvm::SwingSchedulerDAG::isLoopCarriedDep(), llvm::HexagonPacketizerList::isNewifiable(), isSafeToMove(), llvm::SIInstrInfo::isStoreToStackSlot(), llvm::ARMBaseInstrInfo::isStoreToStackSlotPostFE(), isValidClauseInst(), matchPair(), mayAlias(), mayAlias(), llvm::HexagonInstrInfo::mayBeNewStore(), mayLoadOrStore(), llvm::AArch64RegisterInfo::needsFrameBaseReg(), populateCandidates(), DeadCodeElimination::SetQueue< T >::push_back(), Query(), readsVCCZ(), and llvm::SIInstrInfo::verifyInstruction().
|
inline |
Access to memory operands of the instruction.
If there are none, that does not imply anything about whether the function accesses memory. Instead, the caller must behave conservatively.
Definition at line 516 of file MachineInstr.h.
References llvm::makeArrayRef().
Referenced by llvm::VLIWPacketizerList::alias(), AnyAliasLiveIn(), cloneMemRefs(), cloneMergedMemRefs(), createPHIsForSelects(), llvm::createX86FixupBWInsts(), findIncDecAfter(), llvm::TargetInstrInfo::foldMemoryOperand(), llvm::LegalizerInfo::getAction(), getCompareSourceReg(), getNumMemOperands(), getPostIndexedLoadStoreOpcode(), getStoreTarget(), getUnderlyingObjectsForInstr(), hasOneMemOperand(), hasOrderedMemoryRef(), INITIALIZE_PASS(), InstructionStoresToFI(), isDereferenceableInvariantLoad(), llvm::AArch64InstrInfo::isLdStPairSuppressed(), llvm::AArch64InstrInfo::isStridedAccess(), matchPair(), llvm::SIInstrInfo::mayAccessFlatAddressSpace(), mayLoadFromGOTOrConstantPool(), memoperands_begin(), memoperands_empty(), memoperands_end(), llvm::MIPrinter::print(), print(), readsVCCZ(), removePhis(), setPostInstrSymbol(), setPreInstrSymbol(), llvm::X86InstrInfo::unfoldMemoryOperand(), and VerifyLowRegs().
|
inline |
Access to memory operands of the instruction.
If memoperands_begin() == memoperands_end()
, that does not imply anything about whether the function accesses memory. Instead, the caller must behave conservatively.
Definition at line 534 of file MachineInstr.h.
References memoperands().
Referenced by addMemOperand(), llvm::SIInstrInfo::areMemAccessesTriviallyDisjoint(), llvm::SystemZInstrInfo::areMemAccessesTriviallyDisjoint(), changeFCMPPredToAArch64CC(), cloneMergedMemRefs(), emitClzero(), emitComments(), llvm::PPCHazardRecognizer970::EmitInstruction(), llvm::ARMTargetLowering::EmitInstrWithCustomInserter(), expandLoadStackGuard(), llvm::AArch64InstrInfo::expandPostRAPseudo(), llvm::LegalizerHelper::fewerElementsVector(), findPotentialBlockers(), llvm::TargetInstrInfo::foldMemoryOperand(), llvm::SystemZInstrInfo::foldMemoryOperandImpl(), llvm::X86InstrInfo::foldMemoryOperandImpl(), llvm::PPCHazardRecognizer970::getHazardType(), llvm::ARMBaseInstrInfo::getNumLDMAddresses(), llvm::ARMBaseInstrInfo::getNumMicroOps(), llvm::ARMBaseInstrInfo::getOperandLatency(), getRetpolineSymbol(), getSmrdOpcode(), getStoreTarget(), getUnderlyingObjects(), llvm::TargetInstrInfo::hasLoadFromStackSlot(), llvm::TargetInstrInfo::hasStoreToStackSlot(), INITIALIZE_PASS(), InsertFPConstInst(), InsertFPImmInst(), InsertSPConstInst(), InsertSPImmInst(), isInstrUniform(), llvm::SwingSchedulerDAG::isLoopCarriedDep(), isMemoryOp(), IsSafeAndProfitableToMove(), llvm::SIInstrInfo::isStackAccess(), llvm::LegalizerHelper::lower(), matchPair(), mayAlias(), memOpsHaveSameBasePtr(), llvm::LegalizerHelper::narrowScalar(), offsetsDoNotOverlap(), false::IntervalSorter::operator()(), ReplaceFrameIndex(), RewriteP2Align(), llvm::AArch64InstrInfo::suppressLdStPair(), updateKillStatus(), VerifyLowRegs(), and X86SelectAddress().
|
inline |
Return true if we don't have any memory operands which described the memory access done by this instruction.
If this is true, calling code must be conservative.
Definition at line 546 of file MachineInstr.h.
References memoperands().
Referenced by llvm::VLIWPacketizerList::alias(), AnyAliasLiveIn(), cloneMergedMemRefs(), dropMemRefs(), llvm::SITargetLowering::EmitInstrWithCustomInserter(), llvm::TargetInstrInfo::foldMemoryOperand(), llvm::PPCHazardRecognizer970::getHazardType(), getStoreTarget(), hasOrderedMemoryRef(), InstructionStoresToFI(), isDereferenceableInvariantLoad(), llvm::SIInstrInfo::isStackAccess(), llvm::SIInstrInfo::mayAccessFlatAddressSpace(), mayLoadFromGOTOrConstantPool(), llvm::MIPrinter::print(), print(), readsVCCZ(), removePhis(), setPostInstrSymbol(), setPreInstrSymbol(), and llvm::AArch64InstrInfo::suppressLdStPair().
|
inline |
Access to memory operands of the instruction.
If memoperands_begin() == memoperands_end()
, that does not imply anything about whether the function accesses memory. Instead, the caller must behave conservatively.
Definition at line 541 of file MachineInstr.h.
References memoperands().
Referenced by addMemOperand(), cloneMergedMemRefs(), emitClzero(), llvm::TargetInstrInfo::foldMemoryOperand(), llvm::ARMBaseInstrInfo::getNumLDMAddresses(), getRetpolineSymbol(), llvm::TargetInstrInfo::hasLoadFromStackSlot(), llvm::TargetInstrInfo::hasStoreToStackSlot(), matchPair(), and false::IntervalSorter::operator()().
uint16_t MachineInstr::mergeFlagsWith | ( | const MachineInstr & | Other | ) | const |
Return the MIFlags which represent both MachineInstrs.
This should be used when merging two MachineInstrs into one. This routine does not modify the MIFlags of this MachineInstr.
Definition at line 516 of file MachineInstr.cpp.
References getFlags().
Referenced by setDebugLoc().
|
inline |
Return true if the MachineInstr modifies (fully define or partially define) the specified register.
NOTE: It's ignoring subreg indices on virtual registers.
Definition at line 1151 of file MachineInstr.h.
References findRegisterDefOperandIdx().
Referenced by areCFlagsAccessedBetweenInstrs(), canInstrSubstituteCmpInstr(), llvm::HexagonPacketizerList::canPromoteToNewValueStore(), llvm::HexagonInstrInfo::DefinesPredicate(), doesModifyCalleeSavedReg(), llvm::SIRegisterInfo::findReachingDef(), llvm::AArch64InstrInfo::getOutliningCandidateInfo(), llvm::AArch64InstrInfo::getOutliningType(), llvm::X86InstrInfo::getOutliningType(), INITIALIZE_PASS(), llvm::SIInstrInfo::isBasicBlockPrologue(), llvm::AArch64InstrInfo::isCandidateToMergeOrPair(), isEndCF(), llvm::HexagonPacketizerList::isLegalToPacketizeTogether(), llvm::SIInstrInfo::isSchedulingBoundary(), llvm::TargetInstrInfo::isSchedulingBoundary(), isUnsafeToMoveAcross(), llvm::LanaiInstrInfo::optimizeCompareInstr(), llvm::ARMBaseInstrInfo::optimizeCompareInstr(), llvm::PPCInstrInfo::optimizeCompareInstr(), llvm::X86InstrInfo::optimizeCompareInstr(), readsVCCZ(), and UseReg().
|
inline |
Definition at line 459 of file MachineInstr.h.
References llvm::make_range(), operands_begin(), and operands_end().
Referenced by addDefsUsesToList(), addImplicitDefUseOperands(), llvm::LiveIntervals::addKillFlags(), llvm::GISelInstProfileBuilder::addNodeID(), addRegisterDefined(), llvm::ScheduleDAGInstrs::addSchedBarrierDeps(), addToListsIfDependent(), allDefsAreDead(), llvm::AMDGPUInstructionSelector::AMDGPUInstructionSelector(), AnyAliasLiveIn(), AppendEndToFunction(), callHasRegMask(), llvm::HexagonPacketizerList::canPromoteToNewValueStore(), ClearKillFlags(), clearKillInfo(), clearRegisterDeads(), clearRegisterKills(), collectVirtualRegUses(), llvm::ScheduleDAGMILive::collectVRegUses(), computeLiveOuts(), llvm::createBreakFalseDeps(), definesFullReg(), llvm::HexagonHazardRecognizer::EmitInstruction(), llvm::RegScavenger::enterBasicBlockEnd(), eraseFromParentAndMarkDBGValuesForRemoval(), llvm::HexagonEvaluator::evaluate(), llvm::BitTracker::MachineEvaluator::evaluate(), findSinkableLocalRegDef(), findSurvivorBackwards(), getCalledFunction(), getCompareSourceReg(), llvm::MachineInstrExpressionTrait::getHashValue(), getMopState(), getNewValueJumpOpcode(), llvm::rdf::DataFlowGraph::getNextShadow(), llvm::AArch64InstrInfo::getOutliningType(), llvm::X86InstrInfo::getOutliningType(), getPostIncrementOperand(), getPredicatedRegister(), getRetOpcode(), getRetpolineSymbol(), getStartOrEndSlot(), handleNormalInst(), llvm::HexagonPacketizerList::hasDeadDependence(), hasRegisterDependency(), llvm::HexagonPacketizerList::hasRegMaskDependence(), hasWriteToReadDep(), hasYmmOrZmmReg(), INITIALIZE_PASS(), instrDefsUsesSCC(), InstructionStoresToFI(), llvm::HexagonPacketizerList::isCallDependent(), isCallerPreservedOrConstPhysReg(), isCopyFeedingInvariantStore(), llvm::ARMBaseInstrInfo::isCPSRDefined(), isCrossCopy(), llvm::HexagonInstrInfo::isExtended(), llvm::rdf::TargetOperandInfo::isFixedReg(), isHighLatencyCPSR(), isImplicitDependency(), isInvariantStore(), isNopCopy(), IsSafeToMove(), llvm::HexagonInstrInfo::isTailCall(), llvm::isTriviallyDead(), isVirtualRegisterOperand(), llvm::AArch64MCInstLower::Lower(), llvm::LowerARMMachineInstrToMCInst(), llvm::AVRMCInstLower::lowerInstruction(), llvm::LowerRISCVMachineInstrToMCInst(), MaySpeculate(), needsStackFrame(), llvm::rdf::operator<<(), performSink(), llvm::HexagonInstrInfo::predCanBeUsedAsDotNew(), profitImm(), DeadCodeElimination::SetQueue< T >::push_back(), regOverlapsSet(), llvm::X86InstrInfo::reMaterialize(), llvm::rdf::Liveness::resetKills(), llvm::SIRegisterInfo::resolveFrameIndex(), scavengeFrameVirtualRegsInBlock(), llvm::RegScavenger::scavengeRegister(), setPhysRegsDeadExcept(), setRegisterDefReadUndef(), substituteRegister(), toggleKills(), unsupportedBinOp(), llvm::LiveIntervals::HMEditor::updateAllRanges(), UpdateCPSRDef(), and UpdateCPSRUse().
|
inline |
Definition at line 462 of file MachineInstr.h.
References llvm::make_range(), operands_begin(), and operands_end().
|
inline |
Definition at line 453 of file MachineInstr.h.
Referenced by computeBytesPoppedByCalleeForSRet(), defs(), EmitNops(), llvm::LiveRangeEdit::eraseVirtReg(), explicit_operands(), explicit_uses(), llvm::X86InstrInfo::foldMemoryOperandImpl(), getDataDeps(), getDwarfRegNum(), getOperandNo(), getUnderlyingObjects(), INITIALIZE_PASS(), matchPair(), MIIsInTerminatorSequence(), operands(), llvm::R600InstrInfo::readsLDSSrcReg(), llvm::StackMaps::recordPatchPoint(), llvm::StackMaps::recordStackMap(), llvm::StackMaps::recordStatepoint(), llvm::R600SchedStrategy::releaseBottomNode(), llvm::LiveIntervals::repairIntervalsInRange(), llvm::R600SchedStrategy::schedNode(), llvm::MachineBasicBlock::SplitCriticalEdge(), updatePhysDepsDownwards(), updatePhysDepsUpwards(), and uses().
|
inline |
Definition at line 456 of file MachineInstr.h.
|
inline |
Definition at line 454 of file MachineInstr.h.
Referenced by computeBytesPoppedByCalleeForSRet(), EmitNops(), llvm::LiveRangeEdit::eraseVirtReg(), getDataDeps(), getUnderlyingObjects(), implicit_operands(), INITIALIZE_PASS(), matchPair(), MIIsInTerminatorSequence(), operands(), llvm::rdf::operator<<(), llvm::R600InstrInfo::readsLDSSrcReg(), llvm::StackMaps::recordPatchPoint(), llvm::StackMaps::recordStackMap(), llvm::StackMaps::recordStatepoint(), llvm::R600SchedStrategy::releaseBottomNode(), llvm::LiveIntervals::repairIntervalsInRange(), llvm::R600SchedStrategy::schedNode(), llvm::MachineBasicBlock::SplitCriticalEdge(), updatePhysDepsDownwards(), updatePhysDepsUpwards(), and uses().
|
inline |
Definition at line 457 of file MachineInstr.h.
|
delete |
void MachineInstr::print | ( | raw_ostream & | OS, |
bool | IsStandalone = true , |
||
bool | SkipOpers = false , |
||
bool | SkipDebugLoc = false , |
||
bool | AddNewLine = true , |
||
const TargetInstrInfo * | TII = nullptr |
||
) | const |
Print this MI to OS
.
Don't print information that can be inferred from other instructions if IsStandalone
is false. It is usually true when only a fragment of the function is printed. Only print the defs and the opcode if SkipOpers
is true. Otherwise, also print operands if SkipDebugLoc
is true. Otherwise, also print the debug loc, with a terminating newline. TII
is used to print the opcode name. If it's not present, but the MI is in a function, the opcode will be printed using the function's TII.
Definition at line 1436 of file MachineInstr.cpp.
References F(), llvm::MachineFunction::getFunction(), llvm::TargetSubtargetInfo::getInstrInfo(), getMFIfAvailable(), llvm::GlobalValue::getParent(), llvm::MachineFunction::getSubtarget(), and llvm::ModuleSlotTracker::incorporateFunction().
Referenced by dump(), llvm::XCoreRegisterInfo::eliminateFrameIndex(), llvm::ARMTargetLowering::EmitInstrWithCustomInserter(), llvm::ARMAsmPrinter::EmitJumpTableTBInst(), llvm::ScheduleDAGInstrs::getGraphNodeLabel(), getRegClassFromGRPhysReg(), getRetOpcode(), llvm::HexagonLowerToMC(), INITIALIZE_PASS(), isRegTiedToDefOperand(), llvm::LegalizerHelper::legalizeInstrStep(), llvm::MSP430MCInstLower::Lower(), llvm::BPFMCInstLower::Lower(), llvm::LanaiMCInstLower::Lower(), llvm::WebAssemblyMCInstLower::Lower(), llvm::AVRMCInstLower::lowerInstruction(), llvm::DiagnosticInfoMIROptimization::MachineArgument::MachineArgument(), llvm::operator<<(), llvm::SMSchedule::print(), llvm::MachineBasicBlock::print(), readsVCCZ(), false::Chain::str(), and llvm::MachineFunction::verify().
void MachineInstr::print | ( | raw_ostream & | OS, |
ModuleSlotTracker & | MST, | ||
bool | IsStandalone = true , |
||
bool | SkipOpers = false , |
||
bool | SkipDebugLoc = false , |
||
bool | AddNewLine = true , |
||
const TargetInstrInfo * | TII = nullptr |
||
) | const |
Definition at line 1454 of file MachineInstr.cpp.
References llvm::InlineAsm::AD_ATT, llvm::InlineAsm::AD_Intel, assert(), llvm::InlineAsm::Constraint_es, llvm::InlineAsm::Constraint_i, llvm::InlineAsm::Constraint_m, llvm::InlineAsm::Constraint_o, llvm::InlineAsm::Constraint_Q, llvm::InlineAsm::Constraint_R, llvm::InlineAsm::Constraint_S, llvm::InlineAsm::Constraint_T, llvm::InlineAsm::Constraint_Um, llvm::InlineAsm::Constraint_Un, llvm::InlineAsm::Constraint_Uq, llvm::InlineAsm::Constraint_Us, llvm::InlineAsm::Constraint_Ut, llvm::InlineAsm::Constraint_Uv, llvm::InlineAsm::Constraint_Uy, llvm::InlineAsm::Constraint_v, llvm::InlineAsm::Constraint_X, llvm::InlineAsm::Constraint_Z, llvm::InlineAsm::Constraint_ZC, llvm::InlineAsm::Constraint_Zy, Context, llvm::dyn_cast(), llvm::InlineAsm::Extra_HasSideEffects, llvm::InlineAsm::Extra_IsAlignStack, llvm::InlineAsm::Extra_IsConvergent, llvm::InlineAsm::Extra_MayLoad, llvm::InlineAsm::Extra_MayStore, findTiedOperandIdx(), FmAfn, FmArcp, FmContract, FmNoInfs, FmNoNans, FmNsz, FmReassoc, FrameDestroy, FrameSetup, llvm::Function::getContext(), getDebugLoc(), getFlag(), llvm::MachineFunction::getFrameInfo(), llvm::MachineFunction::getFunction(), llvm::MachineOperand::getImm(), getInlineAsmDialect(), llvm::InlineAsm::getKind(), llvm::InlineAsm::getMemoryConstraintID(), llvm::MachineOperand::getMetadata(), getMFIfAvailable(), llvm::MCInstrInfo::getName(), llvm::InlineAsm::getNumOperandRegisters(), getNumOperands(), getOpcode(), getOperand(), getPostInstrSymbol(), getPreInstrSymbol(), llvm::TargetRegisterInfo::getRegClass(), llvm::TargetRegisterInfo::getRegClassName(), getTypeToPrint(), hasComplexRegisterTies(), llvm::InlineAsm::hasRegClassConstraint(), isCFIInstruction(), isDebugLabel(), isDebugValue(), llvm::MachineOperand::isDef(), IsExact, llvm::MachineOperand::isImm(), llvm::InlineAsm::isImmKind(), llvm::MachineOperand::isImplicit(), isIndirectDebugValue(), isInlineAsm(), llvm::InlineAsm::isMemKind(), llvm::MachineOperand::isMetadata(), isOperandSubregIdx(), llvm::MachineOperand::isReg(), llvm::MachineOperand::isTied(), llvm::InlineAsm::isUseOperandTiedToDef(), llvm::InlineAsm::Kind_Clobber, llvm::InlineAsm::Kind_Imm, llvm::InlineAsm::Kind_Mem, llvm::InlineAsm::Kind_RegDef, llvm::InlineAsm::Kind_RegDefEarlyClobber, llvm::InlineAsm::Kind_RegUse, memoperands(), memoperands_empty(), llvm::InlineAsm::MIOp_AsmString, llvm::InlineAsm::MIOp_ExtraInfo, llvm::InlineAsm::MIOp_FirstOperand, NoSWrap, NoUWrap, llvm::DebugLoc::print(), llvm::MachineOperand::print(), llvm::MachineOperand::printSubRegIdx(), llvm::MachineOperand::printSymbol(), TRI, and tryToGetTargetInfo().
|
inline |
Return true if the MachineInstr reads the specified register.
If TargetRegisterInfo is passed, then it also checks if there is a read of a super-register. This does not count partial redefines of virtual registers as reads: reg1024:6 = OP.
Definition at line 1113 of file MachineInstr.h.
References findRegisterUseOperandIdx(), and TRI.
Referenced by areCFlagsAccessedBetweenInstrs(), canInstrSubstituteCmpInstr(), checkAndUpdateCPSRKill(), checkAndUpdateEFLAGSKill(), checkCCKill(), llvm::TargetSchedModel::computeOutputLatency(), ContainsReg(), llvm::ARMBaseInstrInfo::convertToThreeAddress(), CriticalPathStep(), llvm::ARMBaseInstrInfo::expandPostRAPseudo(), llvm::RegBankSelect::getAnalysisUsage(), llvm::HexagonInstrInfo::getCompoundOpcode(), getImplicitSPRUseForDPRUse(), llvm::AArch64InstrInfo::getOutliningCandidateInfo(), llvm::AArch64InstrInfo::getOutliningType(), llvm::X86InstrInfo::getOutliningType(), llvm::X86InstrInfo::getPartialRegUpdateClearance(), hasRAWHazard(), hasWriteToReadDep(), ImposeStackOrdering(), INITIALIZE_PASS(), isCompareZero(), llvm::HexagonPacketizerList::isLegalToPacketizeTogether(), isLiveOut(), IsSafeToMove(), isUnsafeToMoveAcross(), llvm::LanaiInstrInfo::optimizeCompareInstr(), llvm::ARMBaseInstrInfo::optimizeCompareInstr(), llvm::PPCInstrInfo::optimizeCompareInstr(), llvm::X86InstrInfo::optimizeCompareInstr(), scavengeVReg(), llvm::ARMBaseInstrInfo::setExecutionDomain(), and swapMIOperands().
Return true if the MachineInstr reads the specified virtual register.
Take into account that a partial define is a read-modify-write operation.
Definition at line 1121 of file MachineInstr.h.
References readsWritesVirtualRegister(), and Reg.
Referenced by llvm::LiveRangeEdit::eraseVirtReg(), llvm::TargetInstrInfo::genAlternativeCodeSequence(), llvm::ARMBaseInstrInfo::getPartialRegUpdateClearance(), llvm::X86InstrInfo::getPartialRegUpdateClearance(), INITIALIZE_PASS(), and llvm::SplitEditor::leaveIntvAfter().
std::pair< bool, bool > MachineInstr::readsWritesVirtualRegister | ( | unsigned | Reg, |
SmallVectorImpl< unsigned > * | Ops = nullptr |
||
) | const |
Return a pair of bools (reads, writes) indicating if this instruction reads or writes Reg.
readsWritesVirtualRegister - Return a pair of bools (reads, writes) indicating if this instruction reads or writes Reg.
This also considers partial defines. If Ops is not null, all operand indices for Reg are added.
This also considers partial defines.
Definition at line 948 of file MachineInstr.cpp.
References getNumOperands(), getOperand(), llvm::MachineOperand::getReg(), llvm::MachineOperand::getSubReg(), llvm::MachineOperand::isReg(), llvm::MachineOperand::isUndef(), llvm::MachineOperand::isUse(), llvm::SmallVectorTemplateBase< T, bool >::push_back(), and Reg.
Referenced by llvm::LiveRangeEdit::eraseVirtReg(), readsVirtualRegister(), and llvm::VirtRegAuxInfo::weightCalcHelper().
|
inline |
Returns true if the register is dead in this machine instruction.
If TargetRegisterInfo is passed, then it also checks if there is a dead def of a super-register.
Definition at line 1158 of file MachineInstr.h.
References findRegisterDefOperandIdx(), findRegisterUseOperandIdx(), hasRegisterImplicitUseOperand(), isKill(), and TRI.
Referenced by llvm::ScheduleDAGInstrs::addPhysRegDeps(), createPHIsForSelects(), llvm::X86InstrInfo::optimizeCompareInstr(), and transferDeadCC().
MachineInstr * MachineInstr::removeFromBundle | ( | ) |
Unlink this instruction from its basic block and return it without deleting it.
If the instruction is part of a bundle, the other instructions in the bundle remain bundled.
Definition at line 653 of file MachineInstr.cpp.
References assert(), getParent(), and llvm::MachineBasicBlock::remove_instr().
MachineInstr * MachineInstr::removeFromParent | ( | ) |
Unlink 'this' from the containing basic block, and return it without deleting it.
This function can not be used on bundled instructions, use removeFromBundle() to remove individual instructions from a bundle.
Definition at line 648 of file MachineInstr.cpp.
References assert(), getParent(), and llvm::MachineBasicBlock::remove().
Referenced by llvm::createX86OptimizeLEAs(), findUncondBrI(), HasArgumentDef(), llvm::SIInstrInfo::legalizeOperands(), and llvm::ARMBaseInstrInfo::optimizeCompareInstr().
void MachineInstr::RemoveOperand | ( | unsigned | OpNo | ) |
Erase an operand from an instruction, leaving it with one fewer operand than it started with.
RemoveOperand - Erase an operand from an instruction, leaving it with one fewer operand than it started with.
Definition at line 295 of file MachineInstr.cpp.
References assert(), getNumOperands(), isReg(), moveOperands(), N, llvm::MachineRegisterInfo::removeRegOperandFromUseList(), and untieRegOperand().
Referenced by addRegisterDead(), addRegisterKilled(), llvm::SITargetLowering::AdjustInstrPostInstrSelection(), AppendEndToFunction(), llvm::SIInstrInfo::buildExtractSubRegOrImm(), llvm::createSIWholeQuadModePass(), dumpMachineInstrRangeWithSlotIndex(), llvm::AVRRegisterInfo::eliminateFrameIndex(), llvm::HexagonRegisterInfo::eliminateFrameIndex(), eraseGPOpnd(), llvm::LiveRangeEdit::eraseVirtReg(), llvm::ARMBaseInstrInfo::expandPostRAPseudo(), llvm::X86InstrInfo::expandPostRAPseudo(), llvm::PPCInstrInfo::expandPostRAPseudo(), llvm::SIInstrInfo::FoldImmediate(), llvm::MipsInstrInfo::genInstrWithNewOpc(), getCompareSourceReg(), getLeaOP(), getRegsUsedByPHIs(), INITIALIZE_PASS(), isCompareZero(), isImmValidForOpcode(), llvm::SIInstrInfo::moveToVALU(), llvm::AArch64InstrInfo::optimizeCompareInstr(), llvm::PPCInstrInfo::optimizeCompareInstr(), llvm::X86InstrInfo::optimizeCompareInstr(), llvm::SystemZInstrInfo::PredicateInstruction(), llvm::HexagonInstrInfo::PredicateInstruction(), llvm::PPCInstrInfo::PredicateInstruction(), removeModOperands(), removeOperands(), llvm::PPCInstrInfo::replaceInstrOperandWithImm(), llvm::PPCInstrInfo::replaceInstrWithLI(), llvm::rewriteARMFrameIndex(), llvm::rewriteT2FrameIndex(), setDebugLoc(), llvm::ARMBaseInstrInfo::setExecutionDomain(), shrinkScalarLogicOp(), stripExtraCopyOperands(), swapMIOperands(), tieOpsIfNeeded(), tryConstantFoldOp(), tryFoldInst(), llvm::tryFoldSPUpdateIntoPushPop(), updateOperand(), and X86SelectAddress().
|
inline |
Set a flag for the AsmPrinter.
Definition at line 280 of file MachineInstr.h.
Referenced by llvm::AsmPrinter::EmitFunctionBody(), and performCustomAdjustments().
|
inline |
Replace current source information with new such.
Avoid using this, the constructor argument is preferable.
Definition at line 1465 of file MachineInstr.h.
References addMemOperand(), assert(), cloneMemRefs(), cloneMergedMemRefs(), copyIRFlags(), dropMemRefs(), llvm::DebugLoc::hasTrivialDestructor(), I, mergeFlagsWith(), RemoveOperand(), setMemRefs(), setPostInstrSymbol(), setPreInstrSymbol(), and llvm::ARMBuildAttrs::Symbol.
Referenced by definesFullReg(), expandLoadStackGuard(), INITIALIZE_PASS(), isCopyFeedingInvariantStore(), isRegUsedByPhiNodes(), and performSink().
|
inline |
Replace the instruction descriptor (thus opcode) of the current instruction with a new one.
Definition at line 1461 of file MachineInstr.h.
Referenced by llvm::SITargetLowering::AdjustInstrPostInstrSelection(), llvm::AMDGPUInstructionSelector::AMDGPUInstructionSelector(), BBIsJumpedOver(), buildEXP(), canInstrSubstituteCmpInstr(), canTurnIntoCOPY(), changeFCMPPredToAArch64CC(), llvm::HexagonPacketizerList::cleanUpDotCur(), llvm::SIInstrInfo::commuteInstructionImpl(), ConvertImplicitDefToConstZero(), createPHIsForSelects(), llvm::createSIWholeQuadModePass(), llvm::HexagonPacketizerList::demoteToDotOld(), llvm::MSP430RegisterInfo::eliminateFrameIndex(), llvm::SparcRegisterInfo::eliminateFrameIndex(), llvm::LanaiRegisterInfo::eliminateFrameIndex(), llvm::AVRRegisterInfo::eliminateFrameIndex(), llvm::HexagonRegisterInfo::eliminateFrameIndex(), llvm::ThumbRegisterInfo::eliminateFrameIndex(), llvm::PPCRegisterInfo::eliminateFrameIndex(), llvm::ARMTargetLowering::EmitInstrWithCustomInserter(), llvm::LiveRangeEdit::eraseVirtReg(), Expand2AddrKreg(), Expand2AddrUndef(), expandLoadStackGuard(), expandMOV32r1(), ExpandMOVImmSExti8(), expandNOVLXLoad(), expandNOVLXStore(), llvm::SparcInstrInfo::expandPostRAPseudo(), llvm::HexagonInstrInfo::expandPostRAPseudo(), llvm::ARMBaseInstrInfo::expandPostRAPseudo(), llvm::SIInstrInfo::expandPostRAPseudo(), llvm::SystemZInstrInfo::expandPostRAPseudo(), llvm::X86InstrInfo::expandPostRAPseudo(), llvm::PPCInstrInfo::expandPostRAPseudo(), llvm::PPCInstrInfo::expandVSXMemPseudo(), expandXorFP(), llvm::LegalizerHelper::fewerElementsVector(), llvm::fixStackStores(), llvm::SystemZInstrInfo::FoldImmediate(), llvm::SIInstrInfo::FoldImmediate(), llvm::ARMBaseInstrInfo::FoldImmediate(), llvm::X86InstrInfo::foldMemoryOperandImpl(), getCompareSourceReg(), getConstant(), getLeaOP(), getRegClassFromGRPhysReg(), getRetpolineSymbol(), getUnconditionalBrDisp(), hoistAndMergeSGPRInits(), INITIALIZE_PASS(), InsertLDR_STR(), llvm::HexagonInstrInfo::invertAndChangeJumpTarget(), isCompareZero(), isFullCopyOf(), IsMovepDestinationRegPair(), IsUnconditionalJump(), isUseSafeToFold(), llvm::SIInstrInfo::legalizeOperandsVOP2(), matchSwap(), llvm::SIInstrInfo::moveToVALU(), mutateCopyOp(), llvm::LanaiInstrInfo::optimizeCompareInstr(), llvm::AArch64InstrInfo::optimizeCompareInstr(), llvm::PPCInstrInfo::optimizeCompareInstr(), llvm::X86InstrInfo::optimizeCompareInstr(), performCustomAdjustments(), llvm::ARMBaseInstrInfo::PredicateInstruction(), llvm::SystemZInstrInfo::PredicateInstruction(), llvm::HexagonInstrInfo::PredicateInstruction(), llvm::PPCInstrInfo::PredicateInstruction(), llvm::HexagonPacketizerList::promoteToDotCur(), llvm::HexagonPacketizerList::promoteToDotNew(), registerDefinedBetween(), removeTerminatorBit(), llvm::PPCInstrInfo::replaceInstrWithLI(), llvm::HexagonInstrInfo::reversePredSense(), llvm::rewriteAArch64FrameIndex(), llvm::rewriteARMFrameIndex(), llvm::ThumbRegisterInfo::rewriteFrameIndex(), llvm::rewriteT2FrameIndex(), selectCopy(), selectMergeValues(), selectUnmergeValues(), llvm::ARMBaseInstrInfo::setExecutionDomain(), llvm::X86InstrInfo::setExecutionDomain(), llvm::X86InstrInfo::setExecutionDomainCustom(), shrinkScalarCompare(), shrinkScalarLogicOp(), llvm::SITargetLowering::splitKillBlock(), swapMIOperands(), llvm::SystemZInstrInfo::SystemZInstrInfo(), tieOpsIfNeeded(), tryAddToFoldList(), llvm::CombinerHelper::tryCombineExtendingLoads(), tryConstantFoldOp(), llvm::X86InstrInfo::unfoldMemoryOperand(), updateOperand(), llvm::LegalizerHelper::widenScalar(), and X86SelectAddress().
|
inline |
Set a MI flag.
Definition at line 300 of file MachineInstr.h.
Referenced by bundleWithPred(), bundleWithSucc(), copyIRFlags(), llvm::InstrEmitter::EmitDbgLabel(), llvm::MIBundleBuilder::insert(), llvm::MachineBasicBlock::insert(), llvm::MachineInstrBuilder::setMIFlag(), and toString().
|
inline |
Definition at line 304 of file MachineInstr.h.
References BundledPred, BundledSucc, and llvm::BitmaskEnumDetail::Mask().
Referenced by addImplicitDefUseOperands(), and llvm::MachineInstrBuilder::setMIFlags().
void MachineInstr::setMemRefs | ( | MachineFunction & | MF, |
ArrayRef< MachineMemOperand *> | MemRefs | ||
) |
Assign this MachineInstr's memory reference descriptor list.
Unlike other methods, this will allocate them into a new array associated with the provided MachineFunction
.
Definition at line 342 of file MachineInstr.cpp.
References llvm::MachineFunction::createMIExtraInfo(), dropMemRefs(), llvm::ArrayRef< T >::empty(), getPostInstrSymbol(), getPreInstrSymbol(), and llvm::ArrayRef< T >::size().
Referenced by addMemOperand(), cloneMemRefs(), cloneMergedMemRefs(), llvm::TargetInstrInfo::foldMemoryOperand(), removePhis(), setDebugLoc(), and llvm::MachineInstrBuilder::setMemRefs().
void MachineInstr::setPhysRegsDeadExcept | ( | ArrayRef< unsigned > | UsedRegs, |
const TargetRegisterInfo & | TRI | ||
) |
Mark every physreg used by this instruction as dead except those in the UsedRegs list.
On instructions with register mask operands, also add implicit-def operands for all registers in UsedRegs.
Definition at line 1924 of file MachineInstr.cpp.
References addRegisterDefined(), llvm::ArrayRef< T >::begin(), E, llvm::ArrayRef< T >::end(), I, llvm::TargetRegisterInfo::isPhysicalRegister(), llvm::none_of(), operands(), and llvm::TargetRegisterInfo::regsOverlap().
Referenced by isRegTiedToDefOperand(), llvm::FastISel::lowerCallTo(), and llvm::FastISel::selectPatchpoint().
void MachineInstr::setPostInstrSymbol | ( | MachineFunction & | MF, |
MCSymbol * | Symbol | ||
) |
Set a symbol that will be emitted just after the instruction itself.
Setting this to a null pointer will remove any such symbol.
FIXME: This is not fully implemented yet.
Definition at line 484 of file MachineInstr.cpp.
References assert(), llvm::MachineFunction::createMIExtraInfo(), getPostInstrSymbol(), getPreInstrSymbol(), memoperands(), memoperands_empty(), and llvm::ARMBuildAttrs::Symbol.
Referenced by isEFLAGSLive(), and setDebugLoc().
void MachineInstr::setPreInstrSymbol | ( | MachineFunction & | MF, |
MCSymbol * | Symbol | ||
) |
Set a symbol that will be emitted just prior to the instruction itself.
Setting this to a null pointer will remove any such symbol.
FIXME: This is not fully implemented yet.
Definition at line 452 of file MachineInstr.cpp.
References assert(), llvm::MachineFunction::createMIExtraInfo(), getPostInstrSymbol(), getPreInstrSymbol(), memoperands(), memoperands_empty(), and llvm::ARMBuildAttrs::Symbol.
Referenced by llvm::createX86RetpolineThunksPass(), llvm::X86InstrInfo::getSerializableDirectMachineOperandTargetFlags(), and setDebugLoc().
Mark all subregister defs of register Reg
with the undef flag.
This function is used when we determined to have a subregister def in an otherwise undefined super register.
Definition at line 1898 of file MachineInstr.cpp.
References operands().
Referenced by llvm::RegisterOperands::adjustLaneLiveness(), isRegTiedToDefOperand(), and llvm::LiveIntervals::shrinkToUses().
void MachineInstr::substituteRegister | ( | unsigned | FromReg, |
unsigned | ToReg, | ||
unsigned | SubIdx, | ||
const TargetRegisterInfo & | RegInfo | ||
) |
Replace all occurrences of FromReg with ToReg:SubIdx, properly composing subreg indices where necessary.
Definition at line 1125 of file MachineInstr.cpp.
References llvm::MCRegisterInfo::getSubReg(), llvm::TargetRegisterInfo::isPhysicalRegister(), and operands().
Referenced by llvm::LiveRangeEdit::eraseVirtReg(), INITIALIZE_PASS(), llvm::CoalescerPair::isCoalescable(), isRegTiedToDefOperand(), llvm::ARMBaseInstrInfo::reMaterialize(), llvm::X86InstrInfo::reMaterialize(), and llvm::TargetInstrInfo::reMaterialize().
Add a tie between the register operands at DefIdx and UseIdx.
tieOperands - Mark operands at DefIdx and UseIdx as tied to each other.
The tie will cause the register allocator to ensure that the two operands are assigned the same physical register.
Tied operands are managed automatically for explicit operands in the MCInstrDesc. This method is for exceptional cases like inline asm.
Use and def operands can be tied together, indicated by a non-zero TiedTo field. TiedTo can have these values:
0: Operand is not tied to anything. 1 to TiedMax-1: Tied to getOperand(TiedTo-1). TiedMax: Tied to an operand >= TiedMax-1.
The tied def must be one of the first TiedMax operands on a normal instruction. INLINEASM instructions allow more tied defs.
Definition at line 1036 of file MachineInstr.cpp.
References assert(), getOperand(), llvm::MachineOperand::isDef(), isInlineAsm(), llvm::MachineOperand::isTied(), llvm::MachineOperand::isUse(), and TiedMax.
Referenced by addOperand(), llvm::constrainSelectedInstRegOperands(), llvm::createSIAddIMGInitPass(), findRegisterDefOperand(), findSingleRegDef(), isImplicitOperandIn(), matchSwap(), llvm::LanaiInstrInfo::optimizeSelect(), llvm::ARMBaseInstrInfo::optimizeSelect(), removePhis(), llvm::SystemZInstrInfo::SystemZInstrInfo(), and tieOpsIfNeeded().
void MachineInstr::unbundleFromPred | ( | ) |
Break bundle above this instruction.
Definition at line 739 of file MachineInstr.cpp.
References assert(), BundledPred, BundledSucc, clearFlag(), llvm::ilist_node_impl< ilist_detail::compute_node_options< MachineInstr, Options... >::type >::getIterator(), and isBundledWithPred().
Referenced by isBundledWithSucc(), moveInstrOut(), and unbundleSingleMI().
void MachineInstr::unbundleFromSucc | ( | ) |
Break bundle below this instruction.
Definition at line 748 of file MachineInstr.cpp.
References assert(), BundledPred, BundledSucc, clearFlag(), llvm::ilist_node_impl< ilist_detail::compute_node_options< MachineInstr, Options... >::type >::getIterator(), and isBundledWithSucc().
Referenced by isBundledWithSucc(), and unbundleSingleMI().
|
inline |
Break any tie involving OpIdx.
Definition at line 1533 of file MachineInstr.h.
References addImplicitDefUseOperands(), changeDebugValuesDefReg(), collectDebugValues(), findTiedOperandIdx(), getOperand(), llvm::MachineOperand::isReg(), llvm::MachineOperand::isTied(), and llvm::BitmaskEnumDetail::Mask().
Referenced by findStartOfTree(), llvm::SIInstrInfo::FoldImmediate(), RemoveOperand(), and tryAddToFoldList().
|
inline |
Returns a range that includes all operands that are register uses.
This may include unrelated operands which are not register uses.
Definition at line 492 of file MachineInstr.h.
References getNumExplicitDefs(), llvm::make_range(), operands_begin(), and operands_end().
Referenced by addRegsToSet(), AnyAliasLiveIn(), ContainsReg(), llvm::createSIWholeQuadModePass(), findSingleRegDef(), handleNormalInst(), INITIALIZE_PASS(), instReadsReg(), isCrossCopy(), isNopCopy(), loadSRsrcFromVGPR(), matchPair(), split(), and false::Chain::str().
|
inline |
Returns a range that includes all operands that are register uses.
This may include unrelated operands which are not register uses.
Definition at line 496 of file MachineInstr.h.
References getNumExplicitDefs(), llvm::make_range(), operands_begin(), and operands_end().
|
inline |
Return true if this instruction requires custom insertion support when the DAG scheduler is inserting it into a machine basic block.
If this is true for the instruction, it basically means that it is a pseudo instruction used at SelectionDAG time that is expanded out into magic code by the target when MachineInstrs are formed.
If this is true, the TargetLoweringInfo::InsertAtEndOfBasicBlock method is used to insert this into the MachineBasicBlock.
Definition at line 878 of file MachineInstr.h.
References hasProperty(), and llvm::MCID::UsesCustomInserter.
Referenced by INITIALIZE_PASS().
|
friend |
Definition at line 232 of file MachineInstr.h.
|
friend |
Definition at line 231 of file MachineInstr.h.
|
friend |
Definition at line 246 of file MachineInstr.h.