LLVM
8.0.1
|
#include "llvm/IR/Instruction.h"
Public Types | |
enum | OperationEquivalenceFlags { CompareIgnoringAlignment = 1<<0, CompareUsingScalarTypes = 1<<1 } |
When checking for operation equivalence (using isSameOperationAs) it is sometimes useful to ignore certain attributes. More... | |
enum | TermOps |
enum | UnaryOps |
enum | BinaryOps |
enum | MemoryOps |
enum | CastOps |
enum | FuncletPadOps |
enum | OtherOps |
Public Types inherited from llvm::User | |
using | op_iterator = Use * |
using | const_op_iterator = const Use * |
using | op_range = iterator_range< op_iterator > |
using | const_op_range = iterator_range< const_op_iterator > |
Public Types inherited from llvm::Value | |
enum | ValueTy |
Concrete subclass of this. More... | |
using | use_iterator = use_iterator_impl< Use > |
using | const_use_iterator = use_iterator_impl< const Use > |
using | user_iterator = user_iterator_impl< User > |
using | const_user_iterator = user_iterator_impl< const User > |
Public Member Functions | |
Instruction (const Instruction &)=delete | |
Instruction & | operator= (const Instruction &)=delete |
Instruction * | user_back () |
Specialize the methods defined in Value, as we know that an instruction can only be used by other instructions. More... | |
const Instruction * | user_back () const |
const BasicBlock * | getParent () const |
BasicBlock * | getParent () |
const Module * | getModule () const |
Return the module owning the function this instruction belongs to or nullptr it the function does not have a module. More... | |
Module * | getModule () |
const Function * | getFunction () const |
Return the function this instruction belongs to. More... | |
Function * | getFunction () |
void | removeFromParent () |
This method unlinks 'this' from the containing basic block, but does not delete it. More... | |
SymbolTableList< Instruction >::iterator | eraseFromParent () |
This method unlinks 'this' from the containing basic block and deletes it. More... | |
void | insertBefore (Instruction *InsertPos) |
Insert an unlinked instruction into a basic block immediately before the specified instruction. More... | |
void | insertAfter (Instruction *InsertPos) |
Insert an unlinked instruction into a basic block immediately after the specified instruction. More... | |
void | moveBefore (Instruction *MovePos) |
Unlink this instruction from its current basic block and insert it into the basic block that MovePos lives in, right before MovePos. More... | |
void | moveBefore (BasicBlock &BB, SymbolTableList< Instruction >::iterator I) |
Unlink this instruction and insert into BB before I. More... | |
void | moveAfter (Instruction *MovePos) |
Unlink this instruction from its current basic block and insert it into the basic block that MovePos lives in, right after MovePos. More... | |
unsigned | getOpcode () const |
Returns a member of one of the enums like Instruction::Add. More... | |
const char * | getOpcodeName () const |
bool | isTerminator () const |
bool | isUnaryOp () const |
bool | isBinaryOp () const |
bool | isIntDivRem () const |
bool | isShift () |
bool | isCast () const |
bool | isFuncletPad () const |
bool | isExceptionalTerminator () const |
bool | isLogicalShift () const |
Return true if this is a logical shift left or a logical shift right. More... | |
bool | isArithmeticShift () const |
Return true if this is an arithmetic shift right. More... | |
bool | isBitwiseLogicOp () const |
Return true if this is and/or/xor. More... | |
bool | hasMetadata () const |
Return true if this instruction has any metadata attached to it. More... | |
bool | hasMetadataOtherThanDebugLoc () const |
Return true if this instruction has metadata attached to it other than a debug location. More... | |
MDNode * | getMetadata (unsigned KindID) const |
Get the metadata of given kind attached to this Instruction. More... | |
MDNode * | getMetadata (StringRef Kind) const |
Get the metadata of given kind attached to this Instruction. More... | |
void | getAllMetadata (SmallVectorImpl< std::pair< unsigned, MDNode *>> &MDs) const |
Get all metadata attached to this Instruction. More... | |
void | getAllMetadataOtherThanDebugLoc (SmallVectorImpl< std::pair< unsigned, MDNode *>> &MDs) const |
This does the same thing as getAllMetadata, except that it filters out the debug location. More... | |
void | getAAMetadata (AAMDNodes &N, bool Merge=false) const |
Fills the AAMDNodes structure with AA metadata from this instruction. More... | |
void | setMetadata (unsigned KindID, MDNode *Node) |
Set the metadata of the specified kind to the specified node. More... | |
void | setMetadata (StringRef Kind, MDNode *Node) |
void | copyMetadata (const Instruction &SrcInst, ArrayRef< unsigned > WL=ArrayRef< unsigned >()) |
Copy metadata from SrcInst to this instruction. More... | |
void | swapProfMetadata () |
If the instruction has "branch_weights" MD_prof metadata and the MDNode has three operands (including name string), swap the order of the metadata. More... | |
void | setAAMetadata (const AAMDNodes &N) |
Sets the metadata on this instruction from the AAMDNodes structure. More... | |
bool | extractProfMetadata (uint64_t &TrueVal, uint64_t &FalseVal) const |
Retrieve the raw weight values of a conditional branch or select. More... | |
bool | extractProfTotalWeight (uint64_t &TotalVal) const |
Retrieve total raw weight values of a branch. More... | |
void | updateProfWeight (uint64_t S, uint64_t T) |
Updates branch_weights metadata by scaling it by S / T . More... | |
void | setProfWeight (uint64_t W) |
Sets the branch_weights metadata to W for CallInst. More... | |
void | setDebugLoc (DebugLoc Loc) |
Set the debug location information for this instruction. More... | |
const DebugLoc & | getDebugLoc () const |
Return the debug location for this node as a DebugLoc. More... | |
void | setHasNoUnsignedWrap (bool b=true) |
Set or clear the nuw flag on this instruction, which must be an operator which supports this flag. More... | |
void | setHasNoSignedWrap (bool b=true) |
Set or clear the nsw flag on this instruction, which must be an operator which supports this flag. More... | |
void | setIsExact (bool b=true) |
Set or clear the exact flag on this instruction, which must be an operator which supports this flag. More... | |
bool | hasNoUnsignedWrap () const |
Determine whether the no unsigned wrap flag is set. More... | |
bool | hasNoSignedWrap () const |
Determine whether the no signed wrap flag is set. More... | |
void | dropPoisonGeneratingFlags () |
Drops flags that may cause this instruction to evaluate to poison despite having non-poison inputs. More... | |
bool | isExact () const |
Determine whether the exact flag is set. More... | |
void | setFast (bool B) |
Set or clear all fast-math-flags on this instruction, which must be an operator which supports this flag. More... | |
void | setHasAllowReassoc (bool B) |
Set or clear the reassociation flag on this instruction, which must be an operator which supports this flag. More... | |
void | setHasNoNaNs (bool B) |
Set or clear the no-nans flag on this instruction, which must be an operator which supports this flag. More... | |
void | setHasNoInfs (bool B) |
Set or clear the no-infs flag on this instruction, which must be an operator which supports this flag. More... | |
void | setHasNoSignedZeros (bool B) |
Set or clear the no-signed-zeros flag on this instruction, which must be an operator which supports this flag. More... | |
void | setHasAllowReciprocal (bool B) |
Set or clear the allow-reciprocal flag on this instruction, which must be an operator which supports this flag. More... | |
void | setHasApproxFunc (bool B) |
Set or clear the approximate-math-functions flag on this instruction, which must be an operator which supports this flag. More... | |
void | setFastMathFlags (FastMathFlags FMF) |
Convenience function for setting multiple fast-math flags on this instruction, which must be an operator which supports these flags. More... | |
void | copyFastMathFlags (FastMathFlags FMF) |
Convenience function for transferring all fast-math flag values to this instruction, which must be an operator which supports these flags. More... | |
bool | isFast () const |
Determine whether all fast-math-flags are set. More... | |
bool | hasAllowReassoc () const |
Determine whether the allow-reassociation flag is set. More... | |
bool | hasNoNaNs () const |
Determine whether the no-NaNs flag is set. More... | |
bool | hasNoInfs () const |
Determine whether the no-infs flag is set. More... | |
bool | hasNoSignedZeros () const |
Determine whether the no-signed-zeros flag is set. More... | |
bool | hasAllowReciprocal () const |
Determine whether the allow-reciprocal flag is set. More... | |
bool | hasAllowContract () const |
Determine whether the allow-contract flag is set. More... | |
bool | hasApproxFunc () const |
Determine whether the approximate-math-functions flag is set. More... | |
FastMathFlags | getFastMathFlags () const |
Convenience function for getting all the fast-math flags, which must be an operator which supports these flags. More... | |
void | copyFastMathFlags (const Instruction *I) |
Copy I's fast-math flags. More... | |
void | copyIRFlags (const Value *V, bool IncludeWrapFlags=true) |
Convenience method to copy supported exact, fast-math, and (optionally) wrapping flags from V to this instruction. More... | |
void | andIRFlags (const Value *V) |
Logical 'and' of any supported wrapping, exact, and fast-math flags of V and this instruction. More... | |
void | applyMergedLocation (const DILocation *LocA, const DILocation *LocB) |
Merge 2 debug locations and apply it to the Instruction. More... | |
bool | isAssociative () const LLVM_READONLY |
Return true if the instruction is associative: More... | |
bool | isCommutative () const |
Return true if the instruction is commutative: More... | |
bool | isIdempotent () const |
Return true if the instruction is idempotent: More... | |
bool | isNilpotent () const |
Return true if the instruction is nilpotent: More... | |
bool | mayWriteToMemory () const |
Return true if this instruction may modify memory. More... | |
bool | mayReadFromMemory () const |
Return true if this instruction may read memory. More... | |
bool | mayReadOrWriteMemory () const |
Return true if this instruction may read or write memory. More... | |
bool | isAtomic () const |
Return true if this instruction has an AtomicOrdering of unordered or higher. More... | |
bool | hasAtomicLoad () const |
Return true if this atomic instruction loads from memory. More... | |
bool | hasAtomicStore () const |
Return true if this atomic instruction stores to memory. More... | |
bool | mayThrow () const |
Return true if this instruction may throw an exception. More... | |
bool | isFenceLike () const |
Return true if this instruction behaves like a memory fence: it can load or store to memory location without being given a memory location. More... | |
bool | mayHaveSideEffects () const |
Return true if the instruction may have side effects. More... | |
bool | isSafeToRemove () const |
Return true if the instruction can be removed if the result is unused. More... | |
bool | isEHPad () const |
Return true if the instruction is a variety of EH-block. More... | |
bool | isLifetimeStartOrEnd () const |
Return true if the instruction is a llvm.lifetime.start or llvm.lifetime.end marker. More... | |
const Instruction * | getNextNonDebugInstruction () const |
Return a pointer to the next non-debug instruction in the same basic block as 'this', or nullptr if no such instruction exists. More... | |
Instruction * | getNextNonDebugInstruction () |
const Instruction * | getPrevNonDebugInstruction () const |
Return a pointer to the previous non-debug instruction in the same basic block as 'this', or nullptr if no such instruction exists. More... | |
Instruction * | getPrevNonDebugInstruction () |
Instruction * | clone () const |
Create a copy of 'this' instruction that is identical in all ways except the following: More... | |
bool | isIdenticalTo (const Instruction *I) const |
Return true if the specified instruction is exactly identical to the current one. More... | |
bool | isIdenticalToWhenDefined (const Instruction *I) const |
This is like isIdenticalTo, except that it ignores the SubclassOptionalData flags, which may specify conditions under which the instruction's result is undefined. More... | |
bool | isSameOperationAs (const Instruction *I, unsigned flags=0) const |
This function determines if the specified instruction executes the same operation as the current one. More... | |
bool | isUsedOutsideOfBlock (const BasicBlock *BB) const |
Return true if there are any uses of this instruction in blocks other than the specified block. More... | |
unsigned | getNumSuccessors () const |
Return the number of successors that this instruction has. More... | |
BasicBlock * | getSuccessor (unsigned Idx) const |
Return the specified successor. This instruction must be a terminator. More... | |
void | setSuccessor (unsigned Idx, BasicBlock *BB) |
Update the specified successor to point at the provided block. More... | |
void | dropUnknownNonDebugMetadata (ArrayRef< unsigned > KnownIDs) |
Drop all unknown metadata except for debug locations. More... | |
void | dropUnknownNonDebugMetadata () |
void | dropUnknownNonDebugMetadata (unsigned ID1) |
void | dropUnknownNonDebugMetadata (unsigned ID1, unsigned ID2) |
Public Member Functions inherited from llvm::User | |
User (const User &)=delete | |
void | operator delete (void *Usr) |
Free memory allocated for User and Use objects. More... | |
void | operator delete (void *Usr, unsigned) |
Placement delete - required by std, called if the ctor throws. More... | |
void | operator delete (void *Usr, unsigned, bool) |
Placement delete - required by std, called if the ctor throws. More... | |
const Use * | getOperandList () const |
Use * | getOperandList () |
Value * | getOperand (unsigned i) const |
void | setOperand (unsigned i, Value *Val) |
const Use & | getOperandUse (unsigned i) const |
Use & | getOperandUse (unsigned i) |
unsigned | getNumOperands () const |
ArrayRef< const uint8_t > | getDescriptor () const |
Returns the descriptor co-allocated with this User instance. More... | |
MutableArrayRef< uint8_t > | getDescriptor () |
Returns the descriptor co-allocated with this User instance. More... | |
void | setGlobalVariableNumOperands (unsigned NumOps) |
Set the number of operands on a GlobalVariable. More... | |
void | setNumHungOffUseOperands (unsigned NumOps) |
Subclasses with hung off uses need to manage the operand count themselves. More... | |
op_iterator | op_begin () |
const_op_iterator | op_begin () const |
op_iterator | op_end () |
const_op_iterator | op_end () const |
op_range | operands () |
const_op_range | operands () const |
value_op_iterator | value_op_begin () |
value_op_iterator | value_op_end () |
iterator_range< value_op_iterator > | operand_values () |
const_value_op_iterator | value_op_begin () const |
const_value_op_iterator | value_op_end () const |
iterator_range< const_value_op_iterator > | operand_values () const |
void | dropAllReferences () |
Drop all references to operands. More... | |
void | replaceUsesOfWith (Value *From, Value *To) |
Replace uses of one Value with another. More... | |
Public Member Functions inherited from llvm::Value | |
Value (const Value &)=delete | |
Value & | operator= (const Value &)=delete |
void | deleteValue () |
Delete a pointer to a generic Value. More... | |
void | dump () const |
Support for debugging, callable in GDB: V->dump() More... | |
Type * | getType () const |
All values are typed, get the type of this value. More... | |
LLVMContext & | getContext () const |
All values hold a context through their type. More... | |
bool | hasName () const |
ValueName * | getValueName () const |
void | setValueName (ValueName *VN) |
StringRef | getName () const |
Return a constant reference to the value's name. More... | |
void | setName (const Twine &Name) |
Change the name of the value. More... | |
void | takeName (Value *V) |
Transfer the name from V to this value. More... | |
void | replaceAllUsesWith (Value *V) |
Change all uses of this to point to a new Value. More... | |
void | replaceNonMetadataUsesWith (Value *V) |
Change non-metadata uses of this to point to a new Value. More... | |
void | replaceUsesOutsideBlock (Value *V, BasicBlock *BB) |
replaceUsesOutsideBlock - Go through the uses list for this definition and make each use point to "V" instead of "this" when the use is outside the block. More... | |
void | assertModuleIsMaterializedImpl () const |
void | assertModuleIsMaterialized () const |
bool | use_empty () const |
bool | materialized_use_empty () const |
use_iterator | materialized_use_begin () |
const_use_iterator | materialized_use_begin () const |
use_iterator | use_begin () |
const_use_iterator | use_begin () const |
use_iterator | use_end () |
const_use_iterator | use_end () const |
iterator_range< use_iterator > | materialized_uses () |
iterator_range< const_use_iterator > | materialized_uses () const |
iterator_range< use_iterator > | uses () |
iterator_range< const_use_iterator > | uses () const |
bool | user_empty () const |
user_iterator | materialized_user_begin () |
const_user_iterator | materialized_user_begin () const |
user_iterator | user_begin () |
const_user_iterator | user_begin () const |
user_iterator | user_end () |
const_user_iterator | user_end () const |
User * | user_back () |
const User * | user_back () const |
iterator_range< user_iterator > | materialized_users () |
iterator_range< const_user_iterator > | materialized_users () const |
iterator_range< user_iterator > | users () |
iterator_range< const_user_iterator > | users () const |
bool | hasOneUse () const |
Return true if there is exactly one user of this value. More... | |
bool | hasNUses (unsigned N) const |
Return true if this Value has exactly N users. More... | |
bool | hasNUsesOrMore (unsigned N) const |
Return true if this value has N users or more. More... | |
bool | isUsedInBasicBlock (const BasicBlock *BB) const |
Check if this value is used in the specified basic block. More... | |
unsigned | getNumUses () const |
This method computes the number of uses of this Value. More... | |
void | addUse (Use &U) |
This method should only be used by the Use class. More... | |
unsigned | getValueID () const |
Return an ID for the concrete type of this object. More... | |
unsigned | getRawSubclassOptionalData () const |
Return the raw optional flags value contained in this value. More... | |
void | clearSubclassOptionalData () |
Clear the optional flags contained in this value. More... | |
bool | hasSameSubclassOptionalData (const Value *V) const |
Check the optional flags for equality. More... | |
bool | hasValueHandle () const |
Return true if there is a value handle associated with this value. More... | |
bool | isUsedByMetadata () const |
Return true if there is metadata referencing this value. More... | |
bool | isSwiftError () const |
Return true if this value is a swifterror value. More... | |
const Value * | stripPointerCasts () const |
Strip off pointer casts, all-zero GEPs, and aliases. More... | |
Value * | stripPointerCasts () |
const Value * | stripPointerCastsAndInvariantGroups () const |
Strip off pointer casts, all-zero GEPs, aliases and invariant group info. More... | |
Value * | stripPointerCastsAndInvariantGroups () |
const Value * | stripPointerCastsNoFollowAliases () const |
Strip off pointer casts and all-zero GEPs. More... | |
Value * | stripPointerCastsNoFollowAliases () |
const Value * | stripInBoundsConstantOffsets () const |
Strip off pointer casts and all-constant inbounds GEPs. More... | |
Value * | stripInBoundsConstantOffsets () |
const Value * | stripAndAccumulateInBoundsConstantOffsets (const DataLayout &DL, APInt &Offset) const |
Accumulate offsets from stripInBoundsConstantOffsets(). More... | |
Value * | stripAndAccumulateInBoundsConstantOffsets (const DataLayout &DL, APInt &Offset) |
const Value * | stripInBoundsOffsets () const |
Strip off pointer casts and inbounds GEPs. More... | |
Value * | stripInBoundsOffsets () |
uint64_t | getPointerDereferenceableBytes (const DataLayout &DL, bool &CanBeNull) const |
Returns the number of bytes known to be dereferenceable for the pointer value. More... | |
unsigned | getPointerAlignment (const DataLayout &DL) const |
Returns an alignment of the pointer value. More... | |
const Value * | DoPHITranslation (const BasicBlock *CurBB, const BasicBlock *PredBB) const |
Translate PHI node to its predecessor from the given basic block. More... | |
Value * | DoPHITranslation (const BasicBlock *CurBB, const BasicBlock *PredBB) |
void | mutateType (Type *Ty) |
Mutate the type of this Value to be of the specified type. More... | |
template<class Compare > | |
void | sortUseList (Compare Cmp) |
Sort the use-list. More... | |
void | reverseUseList () |
Reverse the use-list. More... | |
void | print (raw_ostream &O, bool IsForDebug=false) const |
Implement operator<< on Value. More... | |
void | print (raw_ostream &O, ModuleSlotTracker &MST, bool IsForDebug=false) const |
void | printAsOperand (raw_ostream &O, bool PrintType=true, const Module *M=nullptr) const |
Print the name of this Value out to the specified raw_ostream. More... | |
void | printAsOperand (raw_ostream &O, bool PrintType, ModuleSlotTracker &MST) const |
Public Member Functions inherited from llvm::ilist_node_with_parent< Instruction, BasicBlock > | |
Instruction * | getPrevNode () |
const Instruction * | getPrevNode () const |
Get the previous node, or nullptr for the list head. More... | |
Instruction * | getNextNode () |
Get the next node, or nullptr for the list tail. More... | |
const Instruction * | 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< Instruction, 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... | |
Static Public Member Functions | |
static const char * | getOpcodeName (unsigned OpCode) |
static bool | isTerminator (unsigned OpCode) |
static bool | isUnaryOp (unsigned Opcode) |
static bool | isBinaryOp (unsigned Opcode) |
static bool | isIntDivRem (unsigned Opcode) |
static bool | isShift (unsigned Opcode) |
Determine if the Opcode is one of the shift instructions. More... | |
static bool | isBitwiseLogicOp (unsigned Opcode) |
Determine if the Opcode is and/or/xor. More... | |
static bool | isCast (unsigned OpCode) |
Determine if the OpCode is one of the CastInst instructions. More... | |
static bool | isFuncletPad (unsigned OpCode) |
Determine if the OpCode is one of the FuncletPadInst instructions. More... | |
static bool | isExceptionalTerminator (unsigned OpCode) |
Returns true if the OpCode is a terminator related to exception handling. More... | |
static bool | isAssociative (unsigned Opcode) |
static bool | isCommutative (unsigned Opcode) |
static bool | isIdempotent (unsigned Opcode) |
static bool | isNilpotent (unsigned Opcode) |
static bool | classof (const Value *V) |
Methods for support type inquiry through isa, cast, and dyn_cast: More... | |
Static Public Member Functions inherited from llvm::User | |
static bool | classof (const Value *V) |
Protected Member Functions | |
~Instruction () | |
void | setInstructionSubclassData (unsigned short D) |
unsigned | getSubclassDataFromInstruction () const |
Instruction (Type *Ty, unsigned iType, Use *Ops, unsigned NumOps, Instruction *InsertBefore=nullptr) | |
Instruction (Type *Ty, unsigned iType, Use *Ops, unsigned NumOps, BasicBlock *InsertAtEnd) | |
Protected Member Functions inherited from llvm::User | |
void * | operator new (size_t Size) |
Allocate a User with an operand pointer co-allocated. More... | |
void * | operator new (size_t Size, unsigned Us) |
Allocate a User with the operands co-allocated. More... | |
void * | operator new (size_t Size, unsigned Us, unsigned DescBytes) |
Allocate a User with the operands co-allocated. More... | |
User (Type *ty, unsigned vty, Use *, unsigned NumOps) | |
void | allocHungoffUses (unsigned N, bool IsPhi=false) |
Allocate the array of Uses, followed by a pointer (with bottom bit set) to the User. More... | |
void | growHungoffUses (unsigned N, bool IsPhi=false) |
Grow the number of hung off uses. More... | |
~User ()=default | |
template<int Idx> | |
Use & | Op () |
template<int Idx> | |
const Use & | Op () const |
Protected Member Functions inherited from llvm::Value | |
Value (Type *Ty, unsigned scid) | |
~Value () | |
Value's destructor should be virtual by design, but that would require that Value and all of its subclasses have a vtable that effectively duplicates the information in the value ID. More... | |
unsigned short | getSubclassDataFromValue () const |
void | setValueSubclassData (unsigned short D) |
Protected Member Functions inherited from llvm::ilist_node_with_parent< Instruction, BasicBlock > | |
ilist_node_with_parent ()=default | |
Protected Member Functions inherited from llvm::ilist_node_impl< ilist_detail::compute_node_options< Instruction, Options... >::type > | |
ilist_node_impl ()=default | |
Friends | |
class | SymbolTableListTraits< Instruction > |
Definition at line 44 of file Instruction.h.
Definition at line 680 of file Instruction.h.
Definition at line 694 of file Instruction.h.
Definition at line 701 of file Instruction.h.
Definition at line 687 of file Instruction.h.
When checking for operation equivalence (using isSameOperationAs) it is sometimes useful to ignore certain attributes.
Enumerator | |
---|---|
CompareIgnoringAlignment | Check for equivalence ignoring load/store alignment. |
CompareUsingScalarTypes | Check for equivalence treating a type and a vector of that type as equivalent. |
Definition at line 624 of file Instruction.h.
Definition at line 708 of file Instruction.h.
Definition at line 666 of file Instruction.h.
Definition at line 673 of file Instruction.h.
|
protected |
Definition at line 45 of file Instruction.cpp.
|
delete |
|
protected |
Definition at line 24 of file Instruction.cpp.
References assert(), llvm::BasicBlock::getInstList(), llvm::ilist_node_impl< OptionsT >::getIterator(), getParent(), and llvm::iplist_impl< IntrusiveListT, TraitsT >::insert().
|
protected |
Definition at line 36 of file Instruction.cpp.
References assert(), llvm::BasicBlock::getInstList(), and llvm::iplist_impl< IntrusiveListT, TraitsT >::push_back().
Logical 'and' of any supported wrapping, exact, and fast-math flags of V and this instruction.
Definition at line 266 of file Instruction.cpp.
References copyFastMathFlags(), getFastMathFlags(), hasNoSignedWrap(), hasNoUnsignedWrap(), isExact(), llvm::X86II::OB, setHasNoSignedWrap(), setHasNoUnsignedWrap(), and setIsExact().
Referenced by llvm::GVNExpression::Expression::dump(), foldSelectShuffle(), getSelectFoldableConstant(), HoistThenElseCodeToIf(), isSafeAndProfitableToSinkLoad(), NegateValue(), llvm::patchReplacementInstruction(), llvm::propagateIRFlags(), and sinkLastInstruction().
void Instruction::applyMergedLocation | ( | const DILocation * | LocA, |
const DILocation * | LocB | ||
) |
Merge 2 debug locations and apply it to the Instruction.
If the instruction is a CallIns, we need to traverse the inline chain to find the common scope. This is not efficient for N-way merging as each time you merge 2 iterations, you need to rebuild the hashmap to find the common scope. However, we still choose this API because: 1) Simplicity: it takes 2 locations instead of a list of locations. 2) In worst case, it increases the complexity from O(N*I) to O(2*N*I), where N is # of Instructions to merge, and I is the maximum level of inline stack. So it is still linear. 3) Merging of call instructions should be extremely rare in real applications, thus the N-way merging should be in code path. The DebugLoc attached to this instruction will be overwritten by the merged DebugLoc.
Definition at line 689 of file DebugInfo.cpp.
References llvm::DILocation::getMergedLocation().
Referenced by HoistThenElseCodeToIf(), sinkLastInstruction(), SpeculativelyExecuteBB(), and updateForIncomingValueLocation().
Methods for support type inquiry through isa, cast, and dyn_cast:
Definition at line 659 of file Instruction.h.
References llvm::Value::getValueID().
Instruction * Instruction::clone | ( | ) | const |
Create a copy of 'this' instruction that is identical in all ways except the following:
Definition at line 716 of file Instruction.cpp.
References copyMetadata(), getOpcode(), llvm_unreachable, and llvm::Value::SubclassOptionalData.
Referenced by canonicalizeSaturatedSubtract(), llvm::CloneFunction(), cloneInstForMustTail(), CloneInstructionInExitBlock(), llvm::createSeparateConstOffsetFromGEPPass(), ehAwareSplitEdge(), llvm::FoldBranchToCommonDest(), llvm::FoldReturnIntoUncondBranch(), HoistThenElseCodeToIf(), llvm::insertDebugValuesForPHIs(), isAlwaysFoldable(), isOnlyReachableViaThisEdge(), isReportingError(), LLVMInstructionClone(), okayForPHIOfOps(), optimizeSQRT(), rematerializeLiveValues(), replaceGEPIdxWithZero(), llvm::InnerLoopVectorizer::scalarizeInstruction(), shouldRotateLoopExitingLatch(), simplifyTerminatorLeadingToRet(), sinkInstruction(), llvm::SplitLandingPadPredecessors(), unswitchNontrivialInvariants(), unswitchTrivialBranch(), and updateOperand().
void Instruction::copyFastMathFlags | ( | FastMathFlags | FMF | ) |
Convenience function for transferring all fast-math flag values to this instruction, which must be an operator which supports these flags.
See LangRef.html for the meaning of these flags.
Definition at line 188 of file Instruction.cpp.
References assert().
Referenced by andIRFlags(), copyFastMathFlags(), copyIRFlags(), createCallHelper(), foldOperationIntoPhiValue(), foldOperationIntoSelectOperand(), getMulHu(), llvm::InstCombiner::visitCallInst(), llvm::InstCombiner::visitFMul(), llvm::InstCombiner::visitFPTrunc(), and llvm::InnerLoopVectorizer::widenInstruction().
void Instruction::copyFastMathFlags | ( | const Instruction * | I | ) |
Copy I's fast-math flags.
Definition at line 238 of file Instruction.cpp.
References copyFastMathFlags(), and getFastMathFlags().
Convenience method to copy supported exact, fast-math, and (optionally) wrapping flags from V to this instruction.
Definition at line 242 of file Instruction.cpp.
References copyFastMathFlags(), llvm::X86II::OB, setHasNoSignedWrap(), setHasNoUnsignedWrap(), and setIsExact().
Referenced by llvm::CmpInst::CmpInst(), llvm::BinaryOperator::CreateWithCopiedFlags(), foldSelectShuffle(), foldSelectShuffleWith1Binop(), getSelectFoldableConstant(), isSafeAndProfitableToSinkLoad(), isSelect01(), and llvm::InstCombiner::visitCallInst().
void Instruction::copyMetadata | ( | const Instruction & | SrcInst, |
ArrayRef< unsigned > | WL = ArrayRef<unsigned>() |
||
) |
Copy metadata from SrcInst
to this instruction.
WL
, if not empty, specifies the list of meta data that needs to be copied. If WL
is empty, all meta data will be copied.
Definition at line 695 of file Instruction.cpp.
References llvm::detail::DenseSetImpl< ValueT, MapTy, ValueInfoT >::count(), getAllMetadataOtherThanDebugLoc(), getDebugLoc(), hasMetadata(), llvm::detail::DenseSetImpl< ValueT, MapTy, ValueInfoT >::insert(), llvm::LLVMContext::MD_dbg, setDebugLoc(), and setMetadata().
Referenced by changeToCall(), clone(), llvm::SelectInst::Create(), llvm::IRBuilder< TargetFolder >::CreateCondBr(), llvm::createSeparateConstOffsetFromGEPPass(), getMulHu(), getTypePartition(), ShrinkDemandedConstant(), and llvm::sroa::AllocaSliceRewriter::visit().
void Instruction::dropPoisonGeneratingFlags | ( | ) |
Drops flags that may cause this instruction to evaluate to poison despite having non-poison inputs.
Definition at line 121 of file Instruction.cpp.
References llvm::MCID::Add, getOpcode(), setHasNoSignedWrap(), setHasNoUnsignedWrap(), and setIsExact().
Referenced by clearAssumptionsOfUsers(), foldSelectShuffle(), foldSelectShuffleWith1Binop(), and ShrinkDemandedConstant().
Drop all unknown metadata except for debug locations.
Passes are required to drop metadata they don't understand. This is a convenience method for passes to do so.
Definition at line 1199 of file Metadata.cpp.
References llvm::ArrayRef< T >::begin(), llvm::SmallSet< T, N, C >::count(), llvm::SmallSet< T, N, C >::empty(), llvm::ArrayRef< T >::end(), llvm::MDNode::getContext(), I, Info, llvm::SmallSet< T, N, C >::insert(), llvm::LLVMContextImpl::InstructionMetadata, and llvm::LLVMContext::pImpl.
Referenced by llvm::combineMetadata(), llvm::FoldBranchToCommonDest(), hoist(), llvm::hoistAllInstructionsInto(), llvm::Loop::makeLoopInvariant(), SpeculativelyExecuteBB(), and stripInvalidMetadataFromInstruction().
|
inline |
Definition at line 276 of file Instruction.h.
References llvm::None.
|
inline |
Definition at line 279 of file Instruction.h.
References llvm::makeArrayRef().
Definition at line 282 of file Instruction.h.
References llvm::RISCVFenceField::W.
iplist< Instruction >::iterator Instruction::eraseFromParent | ( | ) |
This method unlinks 'this' from the containing basic block and deletes it.
Definition at line 68 of file Instruction.cpp.
References llvm::iplist_impl< IntrusiveListT, TraitsT >::erase(), llvm::BasicBlock::getInstList(), llvm::ilist_node_impl< ilist_detail::compute_node_options< Instruction, Options... >::type >::getIterator(), and getParent().
Referenced by AddReachableCodeToWorklist(), assertBranchOrSelectConditionHoisted(), atomicSizeSupported(), buildMultiplyTree(), BuildSubAggregate(), changeToCall(), CleanupPointerRootUsers(), llvm::CloneAndPruneIntoFromInst(), CombineUAddWithOverflow(), ComputePostOrders(), ConnectEpilog(), ConnectProlog(), llvm::ConstantFoldTerminator(), ConvertToSInt(), createCallInst(), createCast(), llvm::createDeadArgHackingPass(), llvm::createDwarfEHPass(), llvm::createEfficiencySanitizerPass(), CreateGCRelocates(), llvm::createMemCpyLoopUnknownSize(), createMemMoveLoop(), createMemSetLoop(), llvm::createObjCARCOptPass(), createOrdering(), CreatePrologue(), llvm::createScalarizerPass(), llvm::createSeparateConstOffsetFromGEPPass(), cse(), DCEInstruction(), deleteDeadInstruction(), DeleteTriviallyDeadInstructions(), llvm::DemotePHIToStack(), llvm::DemoteRegToStack(), despeculateCountZeros(), doPromotion(), llvm::GVNExpression::Expression::dump(), llvm::EliminateDuplicatePHINodes(), llvm::InstCombiner::eraseInstFromFunction(), llvm::objcarc::EraseInstruction(), eraseInstruction(), EraseTerminatorAndDCECond(), llvm::VPlan::execute(), llvm::expandAtomicRMWToCmpXchg(), llvm::expandDivision(), llvm::expandDivisionUpTo32Bits(), llvm::expandDivisionUpTo64Bits(), llvm::expandRemainder(), llvm::expandRemainderUpTo32Bits(), llvm::expandRemainderUpTo64Bits(), llvm::CodeExtractor::extractCodeRegion(), llvm::CodeExtractor::findInputsOutputs(), findPHIToPartitionLoops(), llvm::FoldReturnIntoUncondBranch(), FoldTwoEntryPHINode(), getChainID(), getMulHu(), getNarrowIntrinsic(), getOnlyLiveSuccessor(), getOrInsertValueProfilingCall(), getReducedType(), GetRMWLibcall(), getScalarIntrinsicDeclaration(), getTrueOrFalseValue(), llvm::SSAUpdater::GetValueInMiddleOfBlock(), GlobalWasGeneratedByCompiler(), handleFinalSuspend(), handleMemIntrinsicPtrUse(), handleNoSuspendCoroutine(), hasSameExtUse(), hasUndefContents(), llvm::hoistAllInstructionsInto(), INITIALIZE_PASS(), llvm::InlineFunction(), insertBoundsCheck(), InsertRootInitializers(), isAlwaysFoldable(), isBroadcastShuffle(), isCallPromotable(), isKnownTypeIdMember(), IsNonLocalValue(), isOnlyReachableViaThisEdge(), isUnconditionalBranch(), llvm::log2(), LowerAtomicCmpXchgInst(), LowerAtomicRMWInst(), llvm::LowerDbgDeclare(), lowerExpectIntrinsic(), LowerFenceInst(), llvm::IntrinsicLowering::LowerIntrinsicCall(), LowerRotate(), llvm::IntrinsicLowering::LowerToByteSwap(), llvm::makeGuardControlFlowExplicit(), mapBinOpcode(), MarkBlocksLiveIn(), mayLoopAccessLocation(), llvm::MergeBasicBlockIntoOnlyPred(), mergeCleanupPad(), mergeConditionalStoreToAddress(), mergeEmptyReturnBlocks(), mergeInlinedArrayAllocas(), moveUp(), llvm::InstDeleterIRStrategy::mutate(), optimizeDivRem(), OptimizeEmptyGlobalCXXDtors(), OptimizeExtractBits(), OptimizeGlobalAddressOfMalloc(), optimizeSQRT(), patchAndReplaceAllUsesWith(), PerformHeapAllocSRoA(), performMaskedAtomicOp(), llvm::PHITransAddr::PHITranslateWithInsertion(), processAShr(), llvm::JumpThreadingPass::ProcessBlock(), llvm::JumpThreadingPass::ProcessBranchOnXOR(), processCmp(), processOverflowIntrinsic(), processPHI(), processSDiv(), processSelect(), processSRem(), llvm::JumpThreadingPass::ProcessThreadableEdges(), processUDivOrURem(), promotedOpIsNUW(), promoteSingleBlockAlloca(), PropagateConstantReturn(), propagateMetadata(), llvm::RecursivelyDeleteTriviallyDeadInstructions(), llvm::safestack::StackColoring::removeAllMarkers(), llvm::removeAllNonTerminatorAndEHPadInstructions(), removeCoroEnds(), llvm::PHINode::removeIncomingValue(), removeLifetimeIntrinsicUsers(), llvm::BasicBlock::removePredecessor(), RemoveSwitchAfterSelectConversion(), removeUndefIntroducingPredecessor(), llvm::removeUnwindEdge(), replaceAndRecursivelySimplifyImpl(), llvm::AMDGPULibCalls::replaceCall(), llvm::replaceCreatedSSACopys(), llvm::replaceDbgDeclare(), ReplaceFoldableUses(), replaceFrameSize(), replaceOneDbgValueForAlloca(), ReplaceUsesOfWith(), rewriteDebugUsers(), rewritePHIs(), rewriteSingleStoreAlloca(), RewriteUsesOfLoadForHeapSRoA(), llvm::runIPSCCP(), runSCCP(), scalarizeMaskedGather(), scalarizeMaskedLoad(), scalarizeMaskedScatter(), scalarizeMaskedStore(), scaleWeights(), shouldKeepFDivF32(), shouldRotateLoopExitingLatch(), simplifyAndDCEInstruction(), SimplifyBranchOnICmpChain(), simplifyCommonValuePhi(), SimplifyIndirectBrOnSelect(), simplifyOneLoop(), llvm::JumpThreadingPass::SimplifyPartiallyRedundantLoad(), simplifySuspendPoint(), sinkAndCmp0Expression(), SinkCast(), SinkCmpExpression(), sinkLastInstruction(), speculatePHINodeLoads(), speculateSelectInstLoads(), SpeculativelyExecuteBB(), splitBeforeCatchSwitch(), llvm::fuzzerop::splitBlockDescriptor(), splitCallSite(), llvm::SplitLandingPadPredecessors(), splitMergedValStore(), StackMallocSizeClass(), StripSymbolNames(), SwitchToLookupTable(), llvm::InnerLoopVectorizer::truncateToMinimalBitwidths(), tryCSEWithPredecessor(), tryPromoteAllocaToVector(), TryToMergeLandingPad(), tryToOptimizeStoreOfMallocToGlobal(), TryToShrinkGlobalToBoolean(), llvm::TryToSimplifyUncondBranchFromEmptyBlock(), llvm::JumpThreadingPass::TryToUnfoldSelectInCurrBB(), TurnSwitchRangeIntoICmp(), turnToExplicitForm(), TypeSizeToSizeIndex(), llvm::JumpThreadingPass::UnfoldSelectInstr(), unifyReturnBlockSet(), llvm::UnrollAndJamLoop(), llvm::UnrollLoop(), llvm::UnrollRuntimeLoopRemainder(), unswitchNontrivialInvariants(), unswitchTrivialBranch(), unswitchTrivialSwitch(), updateOperand(), llvm::AMDGPULibCalls::useNative(), versionCallSite(), llvm::LoopVersioning::versionLoop(), llvm::sroa::AllocaSliceRewriter::visit(), and llvm::ObjectSizeOffsetEvaluator::visitPHINode().
bool Instruction::extractProfMetadata | ( | uint64_t & | TrueVal, |
uint64_t & | FalseVal | ||
) | const |
Retrieve the raw weight values of a conditional branch or select.
Returns true on success with profile weights filled in. Returns false if no metadata or invalid metadata was found.
Definition at line 1315 of file Metadata.cpp.
References assert(), llvm::dyn_cast(), getOpcode(), llvm::LLVMContext::MD_prof, and llvm::MCID::Select.
Referenced by extractPredSuccWeights(), llvm::getLoopEstimatedTripCount(), hasProfileData(), isFormingBranchFromSelectProfitable(), llvm::peelLoop(), and updatePredecessorProfileMetadata().
bool Instruction::extractProfTotalWeight | ( | uint64_t & | TotalVal | ) | const |
Retrieve total raw weight values of a branch.
Returns true on success with profile total weights filled in. Returns false if no metadata was found.
Definition at line 1340 of file Metadata.cpp.
References assert(), llvm::MCID::Call, llvm::dyn_cast(), llvm::MDNode::getContext(), getOpcode(), llvm::LLVMContextImpl::InstructionMetadata, llvm::LLVMContext::MD_prof, llvm::LLVMContext::pImpl, and llvm::MCID::Select.
Referenced by llvm::createDeadArgHackingPass(), findInitTrampoline(), llvm::ProfileSummaryInfo::getProfileCount(), and SortCallTargets().
Fills the AAMDNodes structure with AA metadata from this instruction.
When Merge is true, the existing AA metadata is merged with that from this instruction providing the most-general result.
Definition at line 519 of file TypeBasedAliasAnalysis.cpp.
References llvm::MDNode::getMostGenericAliasScope(), llvm::MDNode::getMostGenericTBAA(), llvm::MDNode::intersect(), llvm::LLVMContext::MD_alias_scope, llvm::LLVMContext::MD_noalias, llvm::LLVMContext::MD_tbaa, llvm::AAMDNodes::NoAlias, llvm::AAMDNodes::Scope, and llvm::AAMDNodes::TBAA.
Referenced by checkFunctionMemoryAccess(), llvm::FastISel::createMachineMemOperandFor(), doPromotion(), llvm::MemoryLocation::get(), llvm::MemoryLocation::getForArgument(), llvm::MemoryLocation::getForDest(), llvm::MemoryLocation::getForSource(), getUniformBase(), hasOnlySelectUsers(), mergeConditionalStoreToAddress(), llvm::promoteLoopAccessesToScalars(), reportMayClobberedLoad(), llvm::JumpThreadingPass::SimplifyPartiallyRedundantLoad(), speculatePHINodeLoads(), speculateSelectInstLoads(), unpackLoadToAggregate(), unpackStoreToAggregate(), llvm::sroa::AllocaSliceRewriter::visit(), and llvm::InstCombiner::visitStoreInst().
|
inline |
Get all metadata attached to this Instruction.
The first element of each pair returned is the KindID, the second element is the metadata value. This list is returned sorted by the KindID.
Definition at line 237 of file Instruction.h.
Referenced by combineLoadToNewType(), combineStoreToNewValue(), llvm::SlotTracker::initializeIndexIfNeeded(), maybePrintCallAddrSpace(), and wrapConstantAsMetadata().
|
inline |
This does the same thing as getAllMetadata, except that it filters out the debug location.
Definition at line 244 of file Instruction.h.
References hasMetadataOtherThanDebugLoc(), Merge, N, and setMetadata().
Referenced by llvm::combineMetadata(), copyMetadata(), llvm::createScalarizerPass(), and llvm::propagateMetadata().
Return the debug location for this node as a DebugLoc.
Definition at line 311 of file Instruction.h.
References B, isAssociative(), and LLVM_READONLY.
Referenced by llvm::LoopAccessInfo::blockNeedsPredication(), buildMultiplyTree(), callsiteIsHot(), canFoldIVIncExpr(), changeToCall(), llvm::changeToInvokeAndSplitBasicBlock(), llvm::changeToUnreachable(), CombineUAddWithOverflow(), llvm::ConvertDebugDeclareToDebugValue(), ConvertShiftToMul(), copyMetadata(), llvm::CallInst::Create(), llvm::InvokeInst::Create(), createAndInstr(), createCallInst(), llvm::createDeadArgHackingPass(), createFFSIntrinsic(), llvm::createLVMissedAnalysis(), createRdxShuffleMask(), llvm::createScalarizerPass(), llvm::InnerLoopVectorizer::createVectorizedLoopSkeleton(), despeculateCountZeros(), detectShiftUntilZeroIdiom(), eliminateRecursiveTailCall(), emitSignedInt64(), llvm::CodeExtractor::extractCodeRegion(), findInitTrampoline(), llvm::CodeExtractor::findInputsOutputs(), FitWeights(), fixupLineNumbers(), llvm::formLCSSAForInstructions(), getCompareCC(), llvm::SelectionDAGBuilder::getCurDebugLoc(), getDebugLocFromInstOrOperands(), llvm::VNCoercion::getLoadValueForLoad(), getMulHu(), getNarrowIntrinsic(), getOffsetFromIndices(), getParentPad(), getSubprogram(), getSuccPad(), getTrueOrFalseValue(), getTypePartition(), hasSameExtUse(), llvm::hoistAllInstructionsInto(), HoistThenElseCodeToIf(), llvm::InlineFunction(), llvm::InstCombiner::InsertNewInstWith(), instrumentMaskedLoadOrStore(), inversePermutation(), llvm::IRTranslator::IRTranslator(), isBroadcastShuffle(), isOnlyReachableViaThisEdge(), isUnconditionalBranch(), llvm::LowerDbgDeclare(), makeStatepointExplicitImpl(), mayLoopAccessLocation(), OptimizeExtractBits(), processAShr(), processDbgDeclares(), llvm::DebugInfoFinder::processInstruction(), processSDiv(), processSRem(), promotedOpIsNUW(), llvm::removeUnwindEdge(), llvm::ReplaceInstWithInst(), replaceOneDbgValueForAlloca(), reportLoadElim(), reportMayClobberedLoad(), llvm::InstCombiner::run(), runOnFunction(), llvm::IRTranslator::runOnMachineFunction(), scalarizeMaskedGather(), scalarizeMaskedLoad(), scalarizeMaskedScatter(), scalarizeMaskedStore(), llvm::SDLoc::SDLoc(), llvm::FastISel::selectInstruction(), llvm::FastISel::selectOperator(), llvm::IRBuilderBase::SetInsertPoint(), shouldKeepFDivF32(), shouldRotateLoopExitingLatch(), SimplifyIndirectBrOnSelect(), llvm::JumpThreadingPass::SimplifyPartiallyRedundantLoad(), SimplifyTerminatorOnSelect(), sinkAndCmp0Expression(), SinkCast(), SinkCmpExpression(), sinkLastInstruction(), SinkShiftAndTruncate(), SortCallTargets(), SpeculativelyExecuteBB(), llvm::SplitBlockAndInsertIfThen(), llvm::SplitBlockAndInsertIfThenElse(), llvm::SplitBlockPredecessors(), splitCallSite(), llvm::SplitCriticalEdge(), llvm::SplitLandingPadPredecessors(), llvm::JumpThreadingPass::ThreadEdge(), TryToShrinkGlobalToBoolean(), llvm::UnrollRuntimeLoopRemainder(), updateForIncomingValueLocation(), updateOperand(), llvm::sroa::AllocaSliceRewriter::visit(), llvm::InstCombiner::visitLoadInst(), llvm::InstCombiner::visitStoreInst(), llvm::InstCombiner::visitXor(), and X86ChooseCmpImmediateOpcode().
FastMathFlags Instruction::getFastMathFlags | ( | ) | const |
Convenience function for getting all the fast-math flags, which must be an operator which supports these flags.
See LangRef.html for the meaning of these flags.
Definition at line 233 of file Instruction.cpp.
References assert().
Referenced by addStackMapLiveVars(), andIRFlags(), canonicalizeSaturatedSubtract(), ClearSubclassDataAfterReassociation(), copyFastMathFlags(), llvm::IRBuilder< TargetFolder >::CreateFAddFMF(), llvm::IRBuilder< TargetFolder >::CreateFDivFMF(), llvm::IRBuilder< TargetFolder >::CreateFMulFMF(), llvm::IRBuilder< TargetFolder >::CreateFRemFMF(), llvm::IRBuilder< TargetFolder >::CreateFSubFMF(), getBinOpsForFactorization(), getSqrtCall(), llvm::hoistRegion(), LinearizeExprTree(), llvm::matchSelectPattern(), optimizeBinaryDoubleFP(), optimizeDoubleFP(), optimizeTrigReflections(), replaceUnaryCall(), simplifyAssocCastAssoc(), llvm::SimplifyInstruction(), llvm::InstCombiner::visitCallInst(), llvm::InstCombiner::visitFAdd(), llvm::InstCombiner::visitFCmpInst(), llvm::InstCombiner::visitFDiv(), llvm::InstCombiner::visitFMul(), llvm::InstCombiner::visitFRem(), and llvm::InstCombiner::visitFSub().
Return the function this instruction belongs to.
Note: it is undefined behavior to call this on an instruction not currently inserted into a function.
Definition at line 60 of file Instruction.cpp.
References getParent(), and llvm::BasicBlock::getParent().
Referenced by canSimplifyNullLoadOrGEP(), canSimplifyNullStoreOrGEP(), canTransformToMemCmp(), llvm::createSeparateConstOffsetFromGEPPass(), llvm::SCEVExpander::expandCodeFor(), FindAllMemoryUses(), findInitTrampoline(), getFirstNonAllocaInTheEntryBlock(), getParentPad(), GetRMWLibcall(), getSuccPad(), HandleByValArgument(), hasSameExtUse(), llvm::InlineFunction(), insertLifetimeMarkersSurroundingCall(), insertParsePoints(), insertSinCosCall(), IsNonLocalValue(), IsOperandAMemoryOperand(), isReportingError(), llvm::isSafeToSpeculativelyExecute(), llvm::LoopInfo::movementPreservesLCSSAForm(), OptimizeAwayTrappingUsesOfValue(), optimizeDoubleFP(), passingValueIsAlwaysUndefined(), removeTailCallAttribute(), SimplifyNVVMIntrinsic(), valueDominatesPHI(), and llvm::InstCombiner::visitCallInst().
|
inline |
Definition at line 86 of file Instruction.h.
References getFunction(), and I.
Get the metadata of given kind attached to this Instruction.
If the metadata is not found then return null.
Definition at line 221 of file Instruction.h.
Referenced by AddAliasScopeMetadata(), llvm::LoopVersioning::annotateInstWithNoAlias(), canonicalizeSaturatedSubtract(), checkBiasedBranch(), checkBiasedSelect(), CloneAliasScopeMetadata(), llvm::combineMetadata(), llvm::createHWAddressSanitizerPass(), llvm::FastISel::createMachineMemOperandFor(), llvm::createObjCARCOptPass(), llvm::DiagnosticInfoInlineAsm::DiagnosticInfoInlineAsm(), findMatchingInlineAsmOperand(), llvm::FoldBranchToCommonDest(), foldCtpop(), foldCttzCtlz(), llvm::getAlign(), GetBranchWeights(), getConstantValue(), llvm::ConstrainedFPIntrinsic::getExceptionBehavior(), llvm::FPMathOperator::getFPAccuracy(), getFromRangeMetadata(), llvm::MemoryDependenceResults::getInvariantGroupPointerDependency(), llvm::BasicBlock::getIrrLoopHeaderWeight(), llvm::Loop::getLoopID(), getMemSetPatternValue(), llvm::InstrInfoQuery::getMetadata(), llvm::AArch64TargetLowering::getMMOFlags(), llvm::TypeBasedAAResult::getModRefBehavior(), llvm::ScopedNoAliasAAResult::getModRefInfo(), llvm::TypeBasedAAResult::getModRefInfo(), getMulHu(), getParentPad(), GetRangeFromMetadata(), llvm::DbgVariableIntrinsic::getRawExpression(), llvm::DbgLabelInst::getRawLabel(), llvm::DbgVariableIntrinsic::getRawVariable(), llvm::ConstrainedFPIntrinsic::getRoundingMode(), llvm::MemoryDependenceResults::getSimplePointerDependencyFrom(), getTrueOrFalseValue(), getUniformBase(), getValueFromICmpCondition(), llvm::getValueProfDataFromInst(), llvm::DbgVariableIntrinsic::getVariableLocation(), GlobalWasGeneratedByCompiler(), handleMemIntrinsicPtrUse(), HasBranchWeights(), hasOnlySelectUsers(), llvm::objcarc::BottomUpPtrState::InitBottomUp(), insertUniqueBackedgeBlock(), llvm::intersectAccessGroups(), isContiguous(), isInstrUniform(), llvm::SITargetLowering::isMemOpHasNoClobberedMemOperand(), isSafeAndProfitableToSinkLoad(), llvm::AMDGPUInstrInfo::isUniformMMO(), isUseTriviallyOptimizableToLiveOnEntry(), isVtableAccess(), llvm::SelectionDAGBuilder::lowerRangeToAssertZExt(), llvm::makeGuardControlFlowExplicit(), llvm::objcarc::TopDownPtrState::MatchWithRelease(), moveUp(), promoteSingleBlockAlloca(), llvm::propagateMetadata(), propagateMetadata(), PropagateParallelLoopAccessMetadata(), reportMayClobberedLoad(), rewriteSingleStoreAlloca(), setBranchWeights(), llvm::SelectionDAGBuilder::ShouldEmitAsBranches(), shouldKeepFDivF32(), swapProfMetadata(), llvm::JumpThreadingPass::ThreadEdge(), llvm::TryToSimplifyUncondBranchFromEmptyBlock(), TypeSizeToSizeIndex(), updateProfWeight(), and llvm::sroa::AllocaSliceRewriter::visit().
Get the metadata of given kind attached to this Instruction.
If the metadata is not found then return null.
Definition at line 228 of file Instruction.h.
Return the module owning the function this instruction belongs to or nullptr it the function does not have a module.
Note: this is undefined behavior if the instruction does not have a parent, or the parent basic block does not have a parent function.
Definition at line 56 of file Instruction.cpp.
References llvm::BasicBlock::getModule(), and getParent().
Referenced by addAssumeNonNull(), llvm::IVUsers::AddUsersImpl(), atomicSizeSupported(), llvm::AAResults::callCapturesBefore(), llvm::objcarc::CanAlterRefCount(), llvm::slpvectorizer::BoUpSLP::canMapToVector(), canonicalizeSaturatedSubtract(), canTransformToMemCmp(), llvm::objcarc::CanUse(), CombineUAddWithOverflow(), computeRecurrenceType(), llvm::JumpThreadingPass::ComputeValueKnownInPredecessorsImpl(), computeValueLLTs(), createCoroSave(), CreateGCRelocates(), llvm::createHWAddressSanitizerPass(), createMaskInstrs(), llvm::DemotePHIToStack(), llvm::AMDGPULibCalls::fold(), foldGuardedRotateToFunnelShift(), foldVecTruncToExtElt(), llvm::MemoryLocation::get(), getAllocaSizeInBytes(), getAtomicOpAlign(), getAtomicOpSize(), llvm::DemandedBits::getDemandedBits(), llvm::getGEPInductionOperand(), getIntrinsicForMaskedAtomicRMWBinOp32(), llvm::MemoryDependenceResults::getLoadLoadClobberFullWidthSize(), getPow(), llvm::LazyValueInfo::getPredicateAt(), GetRMWLibcall(), getScalarIntrinsicDeclaration(), getSignature(), getSqrtCall(), llvm::InstrProfIncrementInst::getStep(), llvm::AArch64TargetLowering::getTgtMemIntrinsic(), llvm::NVPTXTargetLowering::getTgtMemIntrinsic(), getTypePartition(), GlobalWasGeneratedByCompiler(), handleFree(), hasUndefContents(), llvm::hoistRegion(), INITIALIZE_PASS(), llvm::AMDGPULibCalls::initNativeFuncs(), insertUseHolderAfter(), isAlwaysLive(), isCallingConvCCompatible(), llvm::InductionDescriptor::isInductionPHI(), isLoadInvariantInLoop(), isObjectDereferencedInBlock(), isOnlyReachableViaThisEdge(), llvm::AArch64TargetLowering::isProfitableToHoist(), isSafePHIToSpeculate(), isSafeSelectToSpeculate(), llvm::isSafeToSpeculativelyExecute(), llvm::LoopVectorizationLegality::isUniform(), isZero(), llvm::AArch64TargetLowering::isZExtFree(), llvm::LibCallSimplifier::LibCallSimplifier(), llvm::log2(), llvm::AArch64TargetLowering::lowerInterleavedLoad(), llvm::ARMTargetLowering::lowerInterleavedLoad(), llvm::AArch64TargetLowering::lowerInterleavedStore(), llvm::ARMTargetLowering::lowerInterleavedStore(), llvm::IntrinsicLowering::LowerToByteSwap(), matchRotate(), llvm::gvn::AvailableValue::MaterializeAdjustedValue(), llvm::LoopVectorizationCostModel::memoryInstructionCanBeWidened(), moveUp(), operator<<(), optimizeBinaryDoubleFP(), optimizeDoubleFP(), performMaskedAtomicOp(), PrintOps(), processUGT_ADDCST_ADD(), processUMulZExtIdiom(), promoteSingleBlockAlloca(), llvm::recognizeBSwapOrBitReverseIdiom(), RedzoneSizeForScale(), llvm::replaceAllDbgUsesWith(), replaceAndRecursivelySimplifyImpl(), ReplaceCallWith(), replaceUnaryCall(), reportMayClobberedLoad(), rewriteSingleStoreAlloca(), llvm::salvageDebugInfo(), llvm::HexagonTargetLowering::shouldExpandAtomicCmpXchgInIR(), SimplifyBSwap(), SimplifyNVVMIntrinsic(), AllocaSlices::SliceBuilder::SliceBuilder(), splitMergedValStore(), TypeSizeToSizeIndex(), upgradeAVX512MaskToSelect(), UpgradeX86AddSubSatIntrinsics(), upgradeX86ConcatShift(), UpgradeX86MaskedShift(), upgradeX86Rotate(), UpgradeX86VPERMT2Intrinsics(), llvm::AMDGPULibCalls::useNative(), valueCoversEntireFragment(), llvm::InnerLoopVectorizer::vectorizeInterleaveGroup(), llvm::InnerLoopVectorizer::vectorizeMemoryInstruction(), llvm::InstCombiner::visitAllocSite(), llvm::InstCombiner::visitCallInst(), llvm::InstCombiner::visitFPTrunc(), and visitIVCast().
|
inline |
Definition at line 76 of file Instruction.h.
References getFunction().
const Instruction * Instruction::getNextNonDebugInstruction | ( | ) | const |
Return a pointer to the next non-debug instruction in the same basic block as 'this', or nullptr if no such instruction exists.
Definition at line 609 of file Instruction.cpp.
References llvm::ilist_node_with_parent< Instruction, BasicBlock >::getNextNode(), and I.
Referenced by rewriteDebugUsers(), llvm::InstCombiner::visitCallInst(), and llvm::InstCombiner::visitFenceInst().
|
inline |
Definition at line 592 of file Instruction.h.
unsigned Instruction::getNumSuccessors | ( | ) | const |
Return the number of successors that this instruction has.
The instruction must be a terminator.
Definition at line 638 of file Instruction.cpp.
References getOpcode(), and llvm_unreachable.
Referenced by llvm::DivergenceAnalysis::addUniformOverride(), allPredecessorsComeFromSameSource(), alwaysAvailable(), llvm::CFGMST< Edge, BBInfo >::buildEdges(), canRenameComdat(), llvm::changeToUnreachable(), llvm::CatchReturnInst::classof(), CloneLoop(), llvm::FunctionComparator::compare(), llvm::createObjCARCOptPass(), llvm::createPGOInstrumentationUseLegacyPass(), eliminateDeadStores(), llvm::FastISel::fastEmitZExtFromI1(), llvm::CodeExtractor::findInputsOutputs(), FindMostPopularDest(), findUnconditionalPreds(), llvm::foldBlockIntoPredecessor(), FoldCondBranchOnPHI(), llvm::SwitchInst::CaseIteratorImpl< CaseHandleT >::fromSuccessorIndex(), llvm::FunctionComparator::functionHash(), GetBestDestForJumpOnUndef(), getBranchHint(), GetCaseResults(), llvm::RegionTraits< Function >::getNumSuccessors(), llvm::BranchInst::getSuccessor(), llvm::SwitchInst::getSuccessor(), llvm::CatchSwitchInst::getSuccessor(), llvm::GetSuccessorNumber(), insertUniqueBackedgeBlock(), llvm::isCriticalEdge(), llvm::SparseSolver< LatticeKey, LatticeVal, KeyInfo >::isEdgeFeasible(), isSafeAndProfitableToSinkLoad(), isSafePHIToSpeculate(), llvm::BasicBlockEdge::isSingleEdge(), llvm::SyncDependenceAnalysis::join_blocks(), llvm::SparseSolver< LatticeKey, LatticeVal, KeyInfo >::MarkBlockExecutable(), mayUsePostIncMode(), partitionOuterLoopBlocks(), llvm::JumpThreadingPass::ProcessBlock(), ProcessBlock(), llvm::JumpThreadingPass::ProcessThreadableEdges(), llvm::GVNHoist::rank(), replaceConstantExprOp(), reportMayClobberedLoad(), llvm::BranchInst::setSuccessor(), llvm::SwitchInst::setSuccessor(), llvm::CatchSwitchInst::setSuccessor(), llvm::CaptureTracker::shouldExplore(), shouldKeepInEntry(), llvm::JumpThreadingPass::SimplifyPartiallyRedundantLoad(), SortCallTargets(), llvm::SplitAllCriticalEdges(), llvm::SplitCriticalEdge(), SplitCriticalSideEffectEdges(), llvm::SplitEdge(), llvm::SplitIndirectBrCriticalEdges(), llvm::JumpThreadingPass::ThreadEdge(), and tryToElideArgumentCopy().
|
inline |
Returns a member of one of the enums like Instruction::Add.
Definition at line 126 of file Instruction.h.
Referenced by AddMACCandidate(), alwaysAvailable(), buildMultiplyTree(), buildNew(), canEvaluateShifted(), canEvaluateShiftedShift(), canEvaluateShuffled(), llvm::slpvectorizer::BoUpSLP::canMapToVector(), canonicalizeSaturatedSubtract(), CanPHITrans(), llvm::canReplaceOperandWithVariable(), canTRE(), canVectorizeInst(), CC_MipsO32_FP64(), llvm::UnaryInstruction::classof(), llvm::OverflowingBinaryOperator::classof(), llvm::AllocaInst::classof(), llvm::PossiblyExactOperator::classof(), llvm::LoadInst::classof(), llvm::ConcreteOperator< Operator, Instruction::PtrToInt >::classof(), llvm::StoreInst::classof(), llvm::FenceInst::classof(), llvm::AtomicCmpXchgInst::classof(), llvm::AtomicRMWInst::classof(), llvm::CmpInst::classof(), llvm::CallBase::classof(), llvm::GetElementPtrInst::classof(), llvm::ICmpInst::classof(), llvm::FCmpInst::classof(), llvm::CallInst::classof(), llvm::SelectInst::classof(), llvm::VAArgInst::classof(), llvm::ExtractElementInst::classof(), llvm::InsertElementInst::classof(), llvm::ShuffleVectorInst::classof(), llvm::ExtractValueInst::classof(), llvm::InsertValueInst::classof(), llvm::PHINode::classof(), llvm::LandingPadInst::classof(), llvm::ReturnInst::classof(), llvm::BranchInst::classof(), llvm::SwitchInst::classof(), llvm::IndirectBrInst::classof(), llvm::InvokeInst::classof(), llvm::ResumeInst::classof(), llvm::CatchSwitchInst::classof(), llvm::CleanupPadInst::classof(), llvm::CatchPadInst::classof(), llvm::CatchReturnInst::classof(), llvm::CleanupReturnInst::classof(), llvm::UnreachableInst::classof(), llvm::TruncInst::classof(), llvm::ZExtInst::classof(), llvm::SExtInst::classof(), llvm::FPTruncInst::classof(), llvm::FPExtInst::classof(), llvm::UIToFPInst::classof(), llvm::SIToFPInst::classof(), llvm::FPToUIInst::classof(), llvm::FPToSIInst::classof(), llvm::IntToPtrInst::classof(), llvm::PtrToIntInst::classof(), llvm::BitCastInst::classof(), llvm::AddrSpaceCastInst::classof(), clone(), cloneInstructionWithNewAddressSpace(), llvm::FunctionComparator::cmpOperations(), collectHomogenousInstGraphLoopInvariants(), collectInsertionElements(), collectValuesToDemote(), computeBytesPoppedByCalleeForSRet(), llvm::JumpThreadingPass::ComputeValueKnownInPredecessorsImpl(), llvm::ConstantFoldInstOperands(), createFFSIntrinsic(), createRdxShuffleMask(), decomposeSimpleLinearExpr(), detectPopcountIdiom(), detectShiftUntilZeroIdiom(), determinePointerReadAttrs(), dropPoisonGeneratingFlags(), llvm::GVNExpression::Expression::dump(), emitSignedInt64(), findIBRPredecessor(), llvm::SelectionDAGBuilder::FindMergedConditions(), llvm::InnerLoopVectorizer::fixupIVUsers(), foldGuardedRotateToFunnelShift(), foldOperationIntoSelectOperand(), foldSignedTruncationCheck(), llvm::AArch64TTIImpl::getCastInstrCost(), llvm::TargetTransformInfo::getCastInstrCost(), llvm::TargetTransformInfo::getCmpSelInstrCost(), getCompareCC(), getComparePred(), GetConstantInt(), getExtractIndex(), getFromRangeMetadata(), llvm::getGuaranteedNonFullPoisonOp(), llvm::SCEVExpander::getIVIncOperand(), getLoopPhiForCounter(), llvm::TargetTransformInfo::getMemoryOpCost(), llvm::AAResults::getModRefInfo(), getNarrowIntrinsic(), getNumSuccessors(), getOffsetFromIndices(), llvm::BinaryOperator::getOpcode(), llvm::CastInst::getOpcode(), llvm::CmpInst::getOpcode(), llvm::UnaryOperator::getOpcode(), llvm::SelectInst::getOpcode(), llvm::MemoryLocation::getOrNone(), getReducedType(), getReductionData(), getRelevantOperands(), getScalarIntrinsicDeclaration(), getSelectFoldableConstant(), getShiftedValue(), getSqrtCall(), getSuccessor(), llvm::DenseMapInfo< SimpleValue >::getTombstoneKey(), llvm::DenseMapInfo< CallValue >::getTombstoneKey(), hasAtomicLoad(), hasAtomicStore(), hasOnlyOneNonZeroIndex(), hasSameExtUse(), llvm::FastISel::hasTrivialKill(), llvm::NVPTXTTIImpl::hasVolatileVariant(), hasZeroSignBit(), haveSameSpecialState(), llvm::hoistRegion(), INITIALIZE_PASS(), llvm::InlineFunction(), InTreeUserNeedToExtract(), isAllocSiteRemovable(), isAlwaysLive(), isAssociative(), isAtomic(), isBroadcastShuffle(), isCallPromotable(), isCompatibleReplacement(), llvm::TargetLoweringBase::isExtFree(), isExtractBitsCandidateUse(), llvm::SystemZTTIImpl::isFoldableLoad(), isHighCostExpansion(), isIdenticalToWhenDefined(), isLoopInvariant(), isMulPowOf2(), isPotentiallyNaryReassociable(), llvm::AArch64TargetLowering::isProfitableToHoist(), isPromotedInstructionLegal(), llvm::RecurrenceDescriptor::isRecurrenceInstr(), isReturnNonNull(), isSameOperationAs(), llvm::LoopVectorizationCostModel::isScalarWithPredication(), isSExtLoad(), isShuffle(), isSink(), isStrideMul(), isVectorReductionOp(), llvm::AArch64TargetLowering::isZExtFree(), LLVMGetInstructionOpcode(), llvm::GVN::ValueTable::lookupOrAdd(), mapBinOpcode(), MatchParallelMACSequences(), matchVectorSplittingReduction(), llvm::gvn::AvailableValueInBlock::MaterializeAdjustedValue(), mayDivideByZero(), mayReadFromMemory(), mayWriteToMemory(), MightBeFoldableInst(), needsFP(), optimizeDivRem(), false::LibCallsShrinkWrap::perform(), llvm::PointerMayBeCaptured(), PrintOps(), llvm::JumpThreadingPass::ProcessBlock(), promotedOpIsNSW(), promotedOpIsNUW(), llvm::propagateIRFlags(), propagateMetadata(), llvm::propagatesFullPoison(), PushDefUseChildren(), llvm::CatchSwitchInst::removeHandler(), RemoveInstInputs(), replaceAllUsesOfWithIn(), runImpl(), llvm::FastISel::selectInstruction(), llvm::FastISel::selectPatchpoint(), llvm::LoopVectorizationCostModel::setCostBasedWideningDecision(), setSuccessor(), shouldMergeGEPs(), shouldReorderOperands(), ShrinkDemandedConstant(), SimplifyBranchOnICmpChain(), llvm::SimplifyInstruction(), SinkShiftAndTruncate(), llvm::InstCombiner::SliceUpIllegalIntegerPHI(), ThreadBinOpOverSelect(), truncateIVUse(), tryPromoteAllocaToVector(), llvm::VPRecipeBuilder::tryToWiden(), unswitchBestCondition(), llvm::InstVisitor< ObjectSizeOffsetVisitor, SizeOffsetType >::visit(), llvm::SelectionDAGBuilder::visit(), llvm::Interpreter::visitAllocaInst(), llvm::InstCombiner::visitCallInst(), llvm::InstCombiner::visitFCmpInst(), llvm::InnerLoopVectorizer::widenInstruction(), X86ChooseCmpImmediateOpcode(), and llvm::reassociate::XorOpnd::XorOpnd().
Definition at line 128 of file Instruction.h.
References getOpcode(), and getOpcodeName().
Referenced by llvm::VPRecipeBuilder::createReplicateRegion(), getOpcodeName(), llvm::ConstantExpr::getOpcodeName(), maybePrintCallAddrSpace(), llvm::VPInstruction::print(), and PrintOps().
Definition at line 291 of file Instruction.cpp.
References llvm::MCID::Add, llvm::SPII::Load, llvm::MipsISD::Ret, llvm::MCID::Select, and llvm::SPII::Store.
|
inline |
Definition at line 67 of file Instruction.h.
Referenced by llvm::GVN::ValueTable::add(), addBoundsChecking(), llvm::RecurrenceDescriptor::AddReductionVar(), llvm::DivergenceAnalysis::addUniformOverride(), llvm::IVUsers::AddUsersImpl(), allPredecessorsComeFromSameSource(), allSameBlock(), AllUsesDominatedByBlock(), alwaysAvailable(), llvm::InterleavedAccessInfo::analyzeInterleaving(), llvm::PredicatedScalarEvolution::areAddRecsEqualWithPreds(), AreEquivalentPhiNodes(), areLoopExitPHIsSupported(), BlockIsSimpleEnoughToThreadThrough(), llvm::LoopAccessInfo::blockNeedsPredication(), BrPHIToSelect(), BuildConstantFromSCEV(), buildMultiplyTree(), llvm::calculateClrEHStateNumbers(), calculateCXXStateNumbers(), calculateIterationsToInvariance(), calculateSEHStateNumbers(), calculateUnswitchCostMultiplier(), callsiteIsHot(), canConstantEvolve(), canFoldIVIncExpr(), llvm::AAResults::canInstructionRangeModRef(), canonicalizeSaturatedSubtract(), canSinkInstructions(), canSplitCallSite(), canSplitPredecessors(), CC_MipsO32_FP64(), changeToCall(), llvm::changeToInvokeAndSplitBasicBlock(), llvm::changeToUnreachable(), checkHoistValue(), llvm::CloneAndPruneIntoFromInst(), CloneInstructionInExitBlock(), CloneLoop(), llvm::collectCmpOps(), llvm::CodeMetrics::collectEphemeralValues(), llvm::LoopVectorizationCostModel::collectInstsToScalarize(), combineADDToADDZE(), CombineUAddWithOverflow(), computeKnownBitsFromAssume(), ComputePostOrders(), llvm::JumpThreadingPass::ComputeValueKnownInPredecessorsImpl(), computeValueLLTs(), ConstructSSAForLoadSet(), llvm::ConvertDebugDeclareToDebugValue(), ConvertToSInt(), llvm::createArgumentPromotionPass(), llvm::createBlockExtractorPass(), createCallInst(), llvm::createCodeGenPreparePass(), llvm::createConstantHoistingPass(), llvm::createControlHeightReductionLegacyPass(), llvm::createDwarfEHPass(), createFree(), CreateGCRelocates(), CreateLoadIns(), llvm::createLVMissedAnalysis(), createMalloc(), createMaskInstrs(), llvm::createMemCpyLoopKnownSize(), llvm::createMemCpyLoopUnknownSize(), createMemMoveLoop(), llvm::MemorySSAUpdater::createMemoryAccessAfter(), llvm::MemorySSAUpdater::createMemoryAccessBefore(), createMemSetLoop(), llvm::createObjCARCOptPass(), createRdxShuffleMask(), llvm::VPRecipeBuilder::createReplicateRegion(), createResumeEntryBlock(), createRetPHINode(), llvm::createScalarizerPass(), llvm::createSeparateConstOffsetFromGEPPass(), llvm::DemotePHIToStack(), llvm::DemoteRegToStack(), despeculateCountZeros(), llvm::OrderedInstructions::dfsBefore(), llvm::ICFLoopSafetyInfo::doesNotWriteMemoryBefore(), llvm::OrderedInstructions::dominates(), llvm::OrderedBasicBlock::dominates(), llvm::DominatorTree::dominates(), llvm::InstCombiner::dominatesAllUses(), DominatesMergePoint(), llvm::GVNExpression::Expression::dump(), llvm::JumpThreadingPass::DuplicateCondBranchOnPHIIntoPred(), eliminateDeadSwitchCases(), eliminateRecursiveTailCall(), enableCallSafepoints(), llvm::LazyValueInfo::enableDT(), eraseFromParent(), llvm::VPPredInstPHIRecipe::execute(), llvm::SCEVExpander::expandCodeFor(), llvm::AlignmentFromAssumptionsPass::extractAlignmentInfo(), findBasePointer(), llvm::findDevirtualizableCallsForTypeTest(), findInitTrampolineFromBB(), llvm::CodeExtractor::findInputsOutputs(), findLiveSetAtInst(), llvm::SelectionDAGBuilder::FindMergedConditions(), findRetainForStoreStrongContraction(), findSafeStoreForStoreStrongContraction(), findTRECandidate(), findUnwindDestinations(), first_use_of_in_block(), FitWeights(), llvm::InnerLoopVectorizer::fixNonInductionPHIs(), llvm::AMDGPULibCalls::fold(), llvm::FoldBranchToCommonDest(), FoldCondBranchOnPHI(), foldGuardedRotateToFunnelShift(), foldICmpShlOne(), foldOperationIntoPhiValue(), foldReturnAndProcessPred(), FoldTwoEntryPHINode(), forceIndeterminateEdge(), llvm::formLCSSAForInstructions(), ForwardSwitchConditionToPHI(), llvm::ScalarEvolution::getBlockDisposition(), getBlockName(), getBranchInsertPoint(), llvm::InnerLoopVectorizer::getBroadcastInstrs(), llvm::CallBase::getCaller(), GetCaseResults(), llvm::SystemZTTIImpl::getCmpSelInstrCost(), getCommonReturnValue(), getCompareCC(), getComparePred(), getConstantAt(), getConstantPart(), getCoroBeginPredBlocks(), llvm::MemoryDependenceResults::getDependency(), llvm::BasicTTIImplBase< AMDGPUTTIImpl >::getEstimatedNumberOfCaseClusters(), getFirstInst(), getFromRangeMetadata(), getFunction(), getInsertPointForUses(), llvm::MemoryDependenceResults::getInvariantGroupPointerDependency(), getJumpThreadDuplicationCost(), llvm::MemoryDependenceResults::getLoadLoadClobberFullWidthSize(), llvm::VNCoercion::getLoadValueForLoad(), getLoopPhiForCounter(), getModule(), llvm::MemoryDependenceResults::getNonLocalCallDependency(), llvm::MemoryDependenceResults::getNonLocalPointerDependency(), getNotRelocatableInstructions(), getOffsetFromIndices(), getOtherIncomingValue(), getParameterABIAttributes(), getParentPad(), GetPointerOperand(), getPointerOperands(), llvm::LazyValueInfo::getPredicateAt(), llvm::ProfileSummaryInfo::getProfileCount(), getRangeForAffineARHelper(), getReductionValue(), getRetComponentType(), getScalarIntrinsicDeclaration(), getSignature(), llvm::slpvectorizer::BoUpSLP::getSpillCost(), getSubprogram(), getSuccPad(), llvm::HexagonTargetLowering::getTgtMemIntrinsic(), getTrueOrFalseValue(), getVarName(), getX86SSEConditionCode(), handleFinalSuspend(), handleFree(), HandleInlinedEHPad(), HandleInlinedLandingPad(), handlePhiDef(), hasCallsBetween(), hasProfileData(), HasSafePathToPredecessorCall(), hasSameExtUse(), llvm::FastISel::hasTrivialKill(), hasUndefContents(), hasValueBeenRAUWed(), llvm::SCEVExpander::hoistIVInc(), llvm::hoistRegion(), HoistThenElseCodeToIf(), InBlock(), INITIALIZE_PASS(), llvm::InlineFunction(), llvm::DivergenceAnalysis::inRegion(), insertAfter(), insertBefore(), insertCall(), llvm::DIBuilder::insertDbgValueIntrinsic(), llvm::DIBuilder::insertDeclare(), llvm::DIBuilder::insertLabel(), llvm::InstCombiner::InsertNewInstBefore(), Instruction(), llvm::LoopVectorizationCostModel::interleavedAccessCanBeWidened(), inversePermutation(), IsAcceptableTarget(), llvm::isAllocaPromotable(), isBlockInLCSSAForm(), isBroadcastShuffle(), isCallPromotable(), isChainSelectCmpBranch(), isColdCallSite(), isDynamicConstant(), llvm::SparseSolver< LatticeKey, LatticeVal, KeyInfo >::isEdgeFeasible(), llvm::RecurrenceDescriptor::isFirstOrderRecurrence(), llvm::InductionDescriptor::isFPInductionPHI(), isFreeInLoop(), llvm::SimpleLoopSafetyInfo::isGuaranteedToExecute(), llvm::ICFLoopSafetyInfo::isGuaranteedToExecute(), llvm::isGuaranteedToExecuteForEveryIteration(), llvm::isImpliedByDomCondition(), isIndirectBrTarget(), llvm::isInTailCallPosition(), isIntegerLoopHeaderPHI(), isInteresting(), isKnownNonNullFromDominatingCondition(), isKnownTypeIdMember(), isLoadConditional(), isLoadInvariantInLoop(), isLoadOrStore(), llvm::ScalarEvolution::isLoopEntryGuardedByCond(), isLoopInvariant(), IsNonLocalValue(), isObjectDereferencedInBlock(), isOnlyReachableViaThisEdge(), isOrdered(), isPointerValueDeadOnEntryToFunction(), llvm::isPotentiallyReachable(), llvm::InstructionPrecedenceTracking::isPreceededBySpecialInstruction(), llvm::LoopVectorizationCostModel::isPredicatedInst(), isPredicatedOnPHI(), isProfitableForVectorization(), isProfitableToFoldUnconditional(), llvm::DominatorTree::isReachableFromEntry(), isSafeAndProfitableToSinkLoad(), isSafePHIToSpeculate(), llvm::isSafeToExpandAt(), llvm::isSafeToLoadUnconditionally(), isSafeToSpeculatePHIUsers(), llvm::isSafeToUnrollAndJam(), isSameUnderlyingObjectInLoop(), llvm::LoopVectorizationCostModel::isScalarWithPredication(), llvm::AllocaInst::isStaticAlloca(), llvm::TargetLoweringBase::isSuitableForJumpTable(), isUnconditionalBranch(), llvm::AMDGPULibCalls::isUnsafeMath(), isUsedOutsideOfBlock(), isUsedOutsideOfDefiningBlock(), llvm::isValidAssumeForContext(), isValidCandidateForColdCC(), isZero(), IVUseShouldUsePostIncValue(), LdStHasDebugValue(), LLVMGetNextInstruction(), LLVMGetPreviousInstruction(), LLVMPositionBuilderBefore(), llvm::log2(), llvm::SelectionDAGBuilder::LowerAsSTATEPOINT(), llvm::SelectionDAGBuilder::LowerCallSiteWithDeoptBundle(), llvm::SelectionDAGBuilder::LowerCallTo(), LowerInterruptReturn(), llvm::SelectionDAGBuilder::LowerStatepoint(), lowerStatepointMetaArgs(), makeBitReverse(), llvm::makeGuardControlFlowExplicit(), llvm::AMDGPUSubtarget::makeLIDRangeMetadata(), MarkBlocksLiveIn(), llvm::HexagonTargetLowering::mayBeEmittedAsTailCall(), llvm::SITargetLowering::mayBeEmittedAsTailCall(), mayLoopAccessLocation(), mayUsePostIncMode(), memoryIsNotModifiedBetween(), MergeAliasResults(), mergeCleanupPad(), mergeConditionalStores(), mergeConditionalStoreToAddress(), mergeInlinedArrayAllocas(), moveAfter(), moveBBContents(), moveBefore(), moveHeaderPhiOperandsToForeBlocks(), moveInstructionBefore(), llvm::LoopInfo::movementPreservesLCSSAForm(), moveUp(), llvm::InstDeleterIRStrategy::mutate(), needsRuntimeRegistrationOfSectionRange(), NegateValue(), okayForPHIOfOps(), operator<<(), optimizeDivRem(), OptimizeExtractBits(), llvm::slpvectorizer::BoUpSLP::optimizeGatherSequence(), llvm::OrderedBasicBlock::OrderedBasicBlock(), passingValueIsAlwaysUndefined(), patchAndReplaceAllUsesWith(), false::LibCallsShrinkWrap::perform(), PerformHeapAllocSRoA(), performMaskedAtomicOp(), llvm::PointerMayBeCapturedBefore(), llvm::LegacyDivergenceAnalysis::print(), llvm::Value::print(), processAdd(), llvm::JumpThreadingPass::ProcessBlock(), llvm::JumpThreadingPass::ProcessBranchOnPHI(), llvm::JumpThreadingPass::ProcessBranchOnXOR(), processCmp(), processHeaderPhiOperands(), processMemAccess(), processPHI(), processSelect(), processSwitch(), processUDivOrURem(), processUGT_ADDCST_ADD(), llvm::programUndefinedIfFullPoison(), promoteSingleBlockAlloca(), propagateMetadata(), PushLoopPHIs(), llvm::GVNHoist::rank(), ReduceSwitchRange(), llvm::AssumptionCache::registerAssumption(), removeEmptyCleanup(), removeFromParent(), RemoveInstInputs(), llvm::InstructionPrecedenceTracking::removeInstruction(), RemoveSwitchAfterSelectConversion(), removeTriviallyEmptyRange(), replaceAndRecursivelySimplifyImpl(), ReplaceCallWith(), llvm::SCEVExpander::replaceCongruentIVs(), llvm::InstCombiner::replacedSelectWithOperand(), replaceExtractElements(), ReplaceFoldableUses(), llvm::ReplaceInstWithInst(), llvm::LoopInfo::replacementPreservesLCSSAForm(), llvm::replaceNonLocalUsesWith(), ReplaceUsesOfWith(), reportLoadElim(), reportMayClobberedLoad(), RetagMask(), returnEdge(), reuseTableCompare(), rewriteSingleStoreAlloca(), llvm::SSAUpdater::RewriteUse(), llvm::SSAUpdater::RewriteUseAfterInsertions(), RewriteUsesOfClonedInstructions(), llvm::SyntheticCountsPropagation::run(), llvm::InstCombiner::run(), safeCxtI(), SafeToMergeTerminators(), scalarizeMaskedGather(), scalarizeMaskedLoad(), scalarizeMaskedScatter(), scalarizeMaskedStore(), scaleCaseProbality(), scanPHIsAndUpdateValueMap(), llvm::FastISel::selectInstruction(), setBranchWeights(), llvm::LoopVectorizationCostModel::setCostBasedWideningDecision(), llvm::IRBuilderBase::SetInsertPoint(), llvm::setProfMetadata(), llvm::AArch64TTIImpl::shouldConsiderAddressTypePromotion(), shouldConvert(), llvm::CaptureTracker::shouldExplore(), shouldGuaranteeTCO(), shouldKeepFDivF32(), shouldReorderOperands(), shouldSplitOnPHIPredicatedArgument(), shouldSplitOnPredicatedArgument(), ShrinkDemandedConstant(), SimplifyBranchOnICmpChain(), simplifyCommonValuePhi(), SimplifyCondBranchToCondBranch(), SimplifyCondBranchToTwoReturns(), llvm::InstCombiner::simplifyDivRemOfSelectWithZeroOp(), SimplifyIndirectBrOnSelect(), simplifyOneLoop(), llvm::JumpThreadingPass::SimplifyPartiallyRedundantLoad(), simplifyRelocatesOffABase(), simplifySuspendPoint(), SimplifyTerminatorOnSelect(), llvm::simplifyUsersOfIV(), sink(), sinkAndCmp0Expression(), SinkCast(), SinkCmpExpression(), SinkInstruction(), sinkInstruction(), sinkLastInstruction(), llvm::sinkRegion(), llvm::InnerLoopVectorizer::sinkScalarOperands(), SinkShiftAndTruncate(), sinkThroughTriviallyReplaceablePHI(), llvm::InstCombiner::SliceUpIllegalIntegerPHI(), SortNonLocalDepInfoCache(), SpeculativelyExecuteBB(), splitBeforeCatchSwitch(), llvm::SplitBlockAndInsertIfThen(), llvm::SplitBlockAndInsertIfThenElse(), splitBlockIfNotFirst(), splitCallSite(), llvm::SplitCriticalEdge(), splitMergedValStore(), splitPredecessorsOfLoopExit(), StackMallocSizeClass(), supportedAddressingMode(), SwitchToLookupTable(), llvm::JumpThreadingPass::ThreadEdge(), truncateIVUse(), llvm::VPRecipeBuilder::tryToBlend(), tryToElideArgumentCopy(), llvm::FastISel::tryToFoldLoad(), llvm::VPRecipeBuilder::tryToInterleaveMemory(), TryToMergeLandingPad(), tryToMoveFreeBeforeNullTest(), TryToSinkInstruction(), llvm::JumpThreadingPass::TryToUnfoldSelect(), llvm::JumpThreadingPass::TryToUnfoldSelectInCurrBB(), tryToVectorizeHorReductionOrInstOperands(), llvm::VPRecipeBuilder::tryToWidenMemory(), tryUnmergingGEPsAcrossIndirectBr(), turnGuardIntoBranch(), TurnSwitchRangeIntoICmp(), turnToExplicitForm(), unswitchBestCondition(), unswitchNontrivialInvariants(), unswitchTrivialBranch(), unswitchTrivialSwitch(), updateOperand(), updatePredecessorProfileMetadata(), llvm::SelectionDAGBuilder::UpdateSplitBlock(), updateSuccessor(), llvm::UpgradeIntrinsicCall(), useFuncSeen(), valueDominatesPHI(), versionCallSite(), llvm::SelectionDAGBuilder::visit(), llvm::sroa::AllocaSliceRewriter::visit(), llvm::InstCombiner::visitAllocaInst(), llvm::InstCombiner::visitCallInst(), llvm::Interpreter::visitCallSite(), llvm::InstCombiner::visitFCmpInst(), llvm::InstCombiner::visitGetElementPtrInst(), visitIVCast(), llvm::InstCombiner::visitLandingPadInst(), llvm::InstCombiner::visitLoadInst(), llvm::InstCombiner::visitPHINode(), llvm::InstCombiner::visitStoreInst(), llvm::InnerLoopVectorizer::widenInstruction(), llvm::InnerLoopVectorizer::widenPHIInstruction(), willNotOverflow(), and X86ChooseCmpImmediateOpcode().
|
inline |
Definition at line 68 of file Instruction.h.
const Instruction * Instruction::getPrevNonDebugInstruction | ( | ) | const |
Return a pointer to the previous non-debug instruction in the same basic block as 'this', or nullptr if no such instruction exists.
Definition at line 616 of file Instruction.cpp.
References llvm::ilist_node_with_parent< Instruction, BasicBlock >::getPrevNode(), and I.
|
inline |
Definition at line 600 of file Instruction.h.
|
inlineprotected |
Definition at line 745 of file Instruction.h.
Referenced by llvm::AllocaInst::getAlignment(), llvm::LoadInst::getAlignment(), llvm::StoreInst::getAlignment(), llvm::AtomicCmpXchgInst::getFailureOrdering(), llvm::InvokeInst::getLandingPadInst(), llvm::AtomicRMWInst::getOperation(), llvm::LoadInst::getOrdering(), llvm::StoreInst::getOrdering(), llvm::FenceInst::getOrdering(), llvm::AtomicRMWInst::getOrdering(), llvm::AtomicCmpXchgInst::getSuccessOrdering(), llvm::CallInst::getTailCallKind(), llvm::CatchSwitchInst::hasUnwindDest(), llvm::CleanupReturnInst::hasUnwindDest(), llvm::LandingPadInst::isCleanup(), llvm::CallInst::isMustTailCall(), llvm::CallInst::isNoTailCall(), llvm::AllocaInst::isSwiftError(), llvm::CallInst::isTailCall(), llvm::AllocaInst::isUsedWithInAlloca(), llvm::LoadInst::isVolatile(), llvm::StoreInst::isVolatile(), llvm::AtomicCmpXchgInst::isVolatile(), llvm::AtomicRMWInst::isVolatile(), llvm::AtomicCmpXchgInst::isWeak(), llvm::AllocaInst::setAlignment(), llvm::LoadInst::setAlignment(), llvm::StoreInst::setAlignment(), llvm::LandingPadInst::setCleanup(), llvm::AtomicCmpXchgInst::setFailureOrdering(), llvm::AtomicRMWInst::setOperation(), llvm::LoadInst::setOrdering(), llvm::StoreInst::setOrdering(), llvm::FenceInst::setOrdering(), llvm::AtomicRMWInst::setOrdering(), llvm::AtomicCmpXchgInst::setSuccessOrdering(), llvm::AllocaInst::setSwiftError(), llvm::CallInst::setTailCall(), llvm::CallInst::setTailCallKind(), llvm::AllocaInst::setUsedWithInAlloca(), llvm::LoadInst::setVolatile(), llvm::StoreInst::setVolatile(), llvm::AtomicCmpXchgInst::setVolatile(), llvm::AtomicRMWInst::setVolatile(), and llvm::AtomicCmpXchgInst::setWeak().
BasicBlock * Instruction::getSuccessor | ( | unsigned | Idx | ) | const |
Return the specified successor. This instruction must be a terminator.
Definition at line 650 of file Instruction.cpp.
References getOpcode(), and llvm_unreachable.
Referenced by allPredecessorsComeFromSameSource(), alwaysAvailable(), llvm::CFGMST< Edge, BBInfo >::buildEdges(), canSinkInstructions(), llvm::ReturnInst::classof(), llvm::ResumeInst::classof(), llvm::CatchReturnInst::classof(), llvm::CleanupReturnInst::classof(), llvm::UnreachableInst::classof(), CloneLoop(), llvm::FunctionComparator::compare(), llvm::createPGOInstrumentationUseLegacyPass(), llvm::FastISel::fastEmitZExtFromI1(), llvm::CodeExtractor::findInputsOutputs(), FindMostPopularDest(), FoldCondBranchOnPHI(), llvm::FunctionComparator::functionHash(), GetBestDestForJumpOnUndef(), getBranchHint(), GetCaseResults(), llvm::IndirectBrInst::getDestination(), getOnlyLiveSuccessor(), llvm::GetSuccessorNumber(), INITIALIZE_PASS(), insertUniqueBackedgeBlock(), instrumentMaskedLoadOrStore(), llvm::isCriticalEdge(), llvm::SparseSolver< LatticeKey, LatticeVal, KeyInfo >::isEdgeFeasible(), llvm::BasicBlockEdge::isSingleEdge(), llvm::makeGuardControlFlowExplicit(), partitionOuterLoopBlocks(), llvm::JumpThreadingPass::ProcessBlock(), llvm::InstCombiner::replacedSelectWithOperand(), shouldKeepInEntry(), shouldRotateLoopExitingLatch(), SimplifyIndirectBrOnSelect(), SortCallTargets(), SpeculativelyExecuteBB(), llvm::SplitCriticalEdge(), llvm::SplitEdge(), llvm::JumpThreadingPass::ThreadEdge(), tryToElideArgumentCopy(), llvm::MemorySSAUpdater::updateForClonedBlockIntoPred(), and llvm::InstCombiner::visitStoreInst().
bool Instruction::hasAllowContract | ( | ) | const |
Determine whether the allow-contract flag is set.
Definition at line 223 of file Instruction.cpp.
References assert().
bool Instruction::hasAllowReassoc | ( | ) | const |
Determine whether the allow-reassociation flag is set.
Definition at line 198 of file Instruction.cpp.
References assert().
Referenced by factorizeFAddFSub(), foldFDivConstantDividend(), isAssociative(), simplifyUnaryIntrinsic(), llvm::InstCombiner::visitFAdd(), llvm::InstCombiner::visitFDiv(), llvm::InstCombiner::visitFMul(), and llvm::InstCombiner::visitFSub().
bool Instruction::hasAllowReciprocal | ( | ) | const |
Determine whether the allow-reciprocal flag is set.
Definition at line 218 of file Instruction.cpp.
References assert().
Referenced by foldFDivConstantDividend(), foldFDivConstantDivisor(), llvm::hoistRegion(), and llvm::InstCombiner::visitFDiv().
bool Instruction::hasApproxFunc | ( | ) | const |
Determine whether the approximate-math-functions flag is set.
Definition at line 228 of file Instruction.cpp.
References assert().
bool Instruction::hasAtomicLoad | ( | ) | const |
Return true if this atomic instruction loads from memory.
Definition at line 562 of file Instruction.cpp.
References assert(), getOpcode(), isAtomic(), and llvm::SPII::Load.
Referenced by llvm::PPCTargetLowering::emitTrailingFence().
bool Instruction::hasAtomicStore | ( | ) | const |
Return true if this atomic instruction stores to memory.
Definition at line 574 of file Instruction.cpp.
References assert(), getOpcode(), isAtomic(), and llvm::SPII::Store.
Referenced by llvm::ARMTargetLowering::emitLeadingFence(), and llvm::TargetLoweringBase::emitLeadingFence().
|
inline |
Return true if this instruction has any metadata attached to it.
Definition at line 211 of file Instruction.h.
Referenced by copyMetadata().
|
inline |
Return true if this instruction has metadata attached to it other than a debug location.
Definition at line 215 of file Instruction.h.
Referenced by emitSignedInt64(), and hoist().
bool Instruction::hasNoInfs | ( | ) | const |
Determine whether the no-infs flag is set.
Definition at line 208 of file Instruction.cpp.
References assert().
Referenced by foldFCmpReciprocalAndZero(), and getSqrtCall().
bool Instruction::hasNoNaNs | ( | ) | const |
Determine whether the no-NaNs flag is set.
Definition at line 203 of file Instruction.cpp.
References assert().
Referenced by foldFabsWithFcmpZero(), getSqrtCall(), getUnderlyingArgReg(), llvm::InstCombiner::visitFDiv(), and llvm::InstCombiner::visitFMul().
bool Instruction::hasNoSignedWrap | ( | ) | const |
Determine whether the no signed wrap flag is set.
Definition at line 117 of file Instruction.cpp.
Referenced by andIRFlags(), buildNew(), checkForNegativeOperand(), llvm::createSeparateConstOffsetFromGEPPass(), foldICmpShlOne(), foldICmpWithTruncSignExtendedVal(), getBinOpsForFactorization(), GetLoopInvariantInsertPosition(), getRangeForAffineARHelper(), isPromotedInstructionLegal(), processAdd(), processUGT_ADDCST_ADD(), replaceAllUsesOfWithIn(), setLimitsForBinOp(), shouldMergeGEPs(), ShrinkDemandedConstant(), simplifyAssocCastAssoc(), llvm::InstCombiner::visitAdd(), llvm::InstCombiner::visitMul(), llvm::InstCombiner::visitShl(), and llvm::InstCombiner::visitSub().
bool Instruction::hasNoSignedZeros | ( | ) | const |
Determine whether the no-signed-zeros flag is set.
Definition at line 213 of file Instruction.cpp.
References assert().
Referenced by factorizeFAddFSub(), foldSelectBinOpIdentity(), getSqrtCall(), isAssociative(), mapBinOpcode(), llvm::InstCombiner::visitFAdd(), and llvm::InstCombiner::visitFSub().
bool Instruction::hasNoUnsignedWrap | ( | ) | const |
Determine whether the no unsigned wrap flag is set.
Definition at line 113 of file Instruction.cpp.
Referenced by andIRFlags(), buildNew(), canonicalizeLowbitMask(), checkForNegativeOperand(), llvm::createSeparateConstOffsetFromGEPPass(), foldICmpShlOne(), foldICmpWithTruncSignExtendedVal(), GetLoopInvariantInsertPosition(), getRangeForAffineARHelper(), isPromotedInstructionLegal(), isSink(), processAdd(), promotedOpIsNSW(), promotedOpIsNUW(), replaceAllUsesOfWithIn(), ShrinkDemandedConstant(), simplifyValueKnownNonZero(), llvm::InstCombiner::visitAdd(), llvm::InstCombiner::visitMul(), llvm::InstCombiner::visitShl(), and llvm::InstCombiner::visitSub().
void Instruction::insertAfter | ( | Instruction * | InsertPos | ) |
Insert an unlinked instruction into a basic block immediately after the specified instruction.
Definition at line 80 of file Instruction.cpp.
References llvm::BasicBlock::getInstList(), llvm::ilist_node_impl< OptionsT >::getIterator(), getParent(), and llvm::iplist_impl< IntrusiveListT, TraitsT >::insertAfter().
Referenced by addAssumeNonNull(), llvm::ConvertDebugDeclareToDebugValue(), GetPointerOperand(), getStartOrEndSlot(), insertLifetimeMarkersSurroundingCall(), insertRelocationStores(), insertRematerializationStores(), InsertRootInitializers(), makeBitReverse(), MarkBlocksLiveIn(), operator<<(), optimizeDivRem(), relocationViaAlloca(), and replaceExtractElements().
void Instruction::insertBefore | ( | Instruction * | InsertPos | ) |
Insert an unlinked instruction into a basic block immediately before the specified instruction.
Definition at line 74 of file Instruction.cpp.
References llvm::BasicBlock::getInstList(), llvm::ilist_node_impl< OptionsT >::getIterator(), getParent(), and llvm::iplist_impl< IntrusiveListT, TraitsT >::insert().
Referenced by buildMultiplyTree(), cloneInstForMustTail(), llvm::createObjCARCOptPass(), llvm::createSeparateConstOffsetFromGEPPass(), llvm::DuplicateInstructionsInSplitBetween(), llvm::FoldBranchToCommonDest(), INITIALIZE_PASS(), insertLifetimeMarkersSurroundingCall(), isOnlyReachableViaThisEdge(), makeAllConstantUsesInstructions(), makeBitReverse(), operator<<(), propagateMetadata(), relocationViaAlloca(), rematerializeLiveValues(), replaceGEPIdxWithZero(), rewriteMaterializableInstructions(), scaleWeights(), shouldRotateLoopExitingLatch(), splitCallSite(), llvm::JumpThreadingPass::ThreadGuard(), versionCallSite(), and llvm::InstCombiner::visitUDiv().
|
inline |
Return true if this is an arithmetic shift right.
Definition at line 168 of file Instruction.h.
References getOpcode().
Referenced by processUGT_ADDCST_ADD().
bool Instruction::isAssociative | ( | ) | const |
Return true if the instruction is associative:
Associative operators satisfy: x op (y op z) === (x op y) op z
In LLVM, the Add, Mul, And, Or, and Xor operators are associative.
Definition at line 623 of file Instruction.cpp.
References getOpcode(), hasAllowReassoc(), and hasNoSignedZeros().
Referenced by buildMultiplyTree(), canTransformAccumulatorRecursion(), llvm::ConstantFoldBinaryInstruction(), createRdxShuffleMask(), isIgnorableInst(), LinearizeExprTree(), simplifyAssocCastAssoc(), and SimplifyAssociativeBinOp().
Definition at line 466 of file Instruction.h.
References llvm::MCID::Add.
bool Instruction::isAtomic | ( | ) | const |
Return true if this instruction has an AtomicOrdering of unordered or higher.
Definition at line 547 of file Instruction.cpp.
References getOpcode(), llvm::SPII::Load, llvm::NotAtomic, and llvm::SPII::Store.
Referenced by alwaysAvailable(), atomicSizeSupported(), combineLoadToNewType(), combineLoadToOperationType(), combineStoreToNewValue(), combineStoreToValueType(), llvm::FindAvailableLoadedValue(), getMemSetPatternValue(), hasAtomicLoad(), hasAtomicStore(), hasOnlySelectUsers(), isContiguous(), isSafeAndProfitableToSinkLoad(), llvm::LoadInst::isSimple(), llvm::StoreInst::isSimple(), llvm::AllocaInst::isStaticAlloca(), reportMayClobberedLoad(), llvm::LoadInst::setAlignment(), llvm::JumpThreadingPass::SimplifyPartiallyRedundantLoad(), and TypeSizeToSizeIndex().
|
inline |
Definition at line 131 of file Instruction.h.
References getOpcode(), and isBinaryOp().
Referenced by alwaysAvailable(), llvm::ConstantRange::binaryOp(), llvm::slpvectorizer::BoUpSLP::canMapToVector(), llvm::BinaryOperator::classof(), llvm::ConstantFoldBinaryInstruction(), llvm::ConstantFoldBinaryOpOperands(), llvm::ConstantFoldLoadFromConstPtr(), llvm::VPRecipeBase::eraseFromParent(), foldOperationIntoSelectOperand(), llvm::ConstantExpr::get(), llvm::ConstantExpr::getBinOpIdentity(), hasUsesOutsideLoop(), INITIALIZE_PASS(), inversePermutation(), isBinaryOp(), llvm::RecurrenceDescriptor::isConditionalRdxPattern(), and llvm::ConstantRange::makeGuaranteedNoWrapRegion().
Definition at line 149 of file Instruction.h.
Determine if the Opcode is and/or/xor.
Definition at line 173 of file Instruction.h.
Referenced by foldBitCastBitwiseLogic(), foldLogicCastConstant(), simplifyAssocCastAssoc(), and SimplifyBSwap().
|
inline |
Return true if this is and/or/xor.
Definition at line 178 of file Instruction.h.
References getOpcode().
Referenced by llvm::PatternMatch::is_bitwiselogic_op::isOpType(), and rightDistributesOverLeft().
|
inline |
Definition at line 134 of file Instruction.h.
References getOpcode(), and isCast().
Referenced by llvm::slpvectorizer::BoUpSLP::canMapToVector(), llvm::CastInst::classof(), llvm::ConstantFoldCastOperand(), llvm::ConstantFoldLoadFromConstPtr(), llvm::ConstantExprKeyType::create(), llvm::createConstantHoistingPass(), emitSignedInt64(), findArgumentCopyElisionCandidates(), foldConstantCastPair(), llvm::ConstantExpr::getCast(), getSelectFoldableConstant(), INITIALIZE_PASS(), inversePermutation(), isCast(), llvm::ConstantExpr::isCast(), isZero(), and updateOperand().
Determine if the OpCode is one of the CastInst instructions.
Definition at line 183 of file Instruction.h.
|
inline |
Return true if the instruction is commutative:
Commutative operators satisfy: (x op y) === (y op x)
In LLVM, these are the commutative operators, plus SetEQ and SetNE, when applied to any type.
Definition at line 478 of file Instruction.h.
References getOpcode(), and isCommutative().
Referenced by alwaysAvailable(), areCommutative(), buildMultiplyTree(), canTransformAccumulatorRecursion(), llvm::ConstantFoldBinaryInstruction(), ExpandBinOp(), foldICmpWithMinMax(), foldOrCommuteConstant(), foldSelectBinOpIdentity(), llvm::ConstantExpr::getBinOpIdentity(), getBinOpsForFactorization(), getSelectFoldableConstant(), llvm::slpvectorizer::BoUpSLP::getTreeCost(), inversePermutation(), isCommutative(), isIgnorableInst(), isReassociableOp(), LinearizeExprTree(), llvm::gvn::AvailableValueInBlock::MaterializeAdjustedValue(), rightDistributesOverLeft(), shouldReorderOperands(), simplifyAssocCastAssoc(), SimplifyAssociativeBinOp(), llvm::BinaryOperator::swapOperands(), and ThreadBinOpOverSelect().
Definition at line 479 of file Instruction.h.
References llvm::MCID::Add.
|
inline |
Return true if the instruction is a variety of EH-block.
Definition at line 573 of file Instruction.h.
References getOpcode().
Referenced by canFoldIVIncExpr(), canSinkInstructions(), llvm::BasicBlock::canSplitPredecessors(), canSplitPredecessors(), CloneInstructionInExitBlock(), llvm::createConstantHoistingPass(), llvm::GVNExpression::Expression::dump(), ehAwareSplitEdge(), getEHPadFromPredecessor(), getParentPad(), HandleInlinedEHPad(), llvm::InlineFunction(), llvm::insertDebugValuesForPHIs(), isAlwaysLive(), llvm::BasicBlock::isEHPad(), isFoldedOrDeadInstruction(), isPromotedInstructionLegal(), isSafeToMove(), isUnconditionalBranch(), makeBitReverse(), llvm::Loop::makeLoopInvariant(), llvm::removeAllNonTerminatorAndEHPadInstructions(), replaceAndRecursivelySimplifyImpl(), SinkCast(), llvm::SplitIndirectBrCriticalEdges(), TryToSinkInstruction(), and llvm::wouldInstructionBeTriviallyDead().
bool Instruction::isExact | ( | ) | const |
Determine whether the exact flag is set.
Definition at line 144 of file Instruction.cpp.
Referenced by andIRFlags(), buildNew(), llvm::InstCombiner::commonIDivTransforms(), foldICmpShlOne(), foldICmpWithTruncSignExtendedVal(), foldUDivPow2Cst(), foldUDivShl(), GetLoopInvariantInsertPosition(), processAShr(), processSDiv(), processUDivOrURem(), simplifyValueKnownNonZero(), llvm::InstCombiner::visitAShr(), llvm::InstCombiner::visitLShr(), llvm::InstCombiner::visitMul(), llvm::InstCombiner::visitSDiv(), and llvm::InstCombiner::visitUDiv().
|
inline |
Definition at line 136 of file Instruction.h.
References getOpcode().
Referenced by GetCaseResults(), IsAcceptableTarget(), llvm::SparseSolver< LatticeKey, LatticeVal, KeyInfo >::MarkBlockExecutable(), llvm::MergeBlockIntoPredecessor(), and llvm::JumpThreadingPass::ProcessBlock().
Returns true if the OpCode is a terminator related to exception handling.
Definition at line 193 of file Instruction.h.
bool Instruction::isFast | ( | ) | const |
Determine whether all fast-math-flags are set.
Definition at line 193 of file Instruction.cpp.
References assert().
Referenced by buildMultiplyTree(), getPow(), getSqrtCall(), llvm::RecurrenceDescriptor::isConditionalRdxPattern(), llvm::RecurrenceDescriptor::isRecurrenceInstr(), optimizeBinaryDoubleFP(), llvm::LibCallSimplifier::optimizeCall(), llvm::InstCombiner::visitCallInst(), and llvm::InstCombiner::visitFMul().
|
inline |
Return true if this instruction behaves like a memory fence: it can load or store to memory location without being given a memory location.
Definition at line 541 of file Instruction.h.
References llvm::MCID::Call, and getOpcode().
Referenced by llvm::MemorySSA::ClobberWalkerBase::getClobberingMemoryAccessBase(), and llvm::AAResults::getModRefInfo().
|
inline |
Definition at line 135 of file Instruction.h.
References getOpcode(), and isFuncletPad().
Referenced by llvm::FuncletPadInst::classof(), and isFuncletPad().
Determine if the OpCode is one of the FuncletPadInst instructions.
Definition at line 188 of file Instruction.h.
|
inline |
Return true if the instruction is idempotent:
Idempotent operators satisfy: x op x === x
In LLVM, the And and Or operators are idempotent.
Definition at line 496 of file Instruction.h.
References getOpcode(), and isIdempotent().
Referenced by IncorporateWeight(), and isIdempotent().
Definition at line 497 of file Instruction.h.
bool Instruction::isIdenticalTo | ( | const Instruction * | I | ) | const |
Return true if the specified instruction is exactly identical to the current one.
This means that all operands match and any extra information (e.g. load is volatile) agree.
Definition at line 434 of file Instruction.cpp.
References isIdenticalToWhenDefined(), and llvm::Value::SubclassOptionalData.
Referenced by createRdxShuffleMask(), llvm::EliminateDuplicatePHINodes(), llvm::InnerLoopVectorizer::fixupIVUsers(), foldOperationIntoPhiValue(), llvm::DenseMapInfo< CallValue >::getTombstoneKey(), HasSameValue(), markAliveBlocks(), llvm::slpvectorizer::BoUpSLP::optimizeGatherSequence(), tryCSEWithPredecessor(), TryToMergeLandingPad(), and llvm::InstCombiner::visitFenceInst().
bool Instruction::isIdenticalToWhenDefined | ( | const Instruction * | I | ) | const |
This is like isIdenticalTo, except that it ignores the SubclassOptionalData flags, which may specify conditions under which the instruction's result is undefined.
Definition at line 439 of file Instruction.cpp.
References llvm::PHINode::block_begin(), llvm::lltok::equal, llvm::User::getNumOperands(), getOpcode(), llvm::Value::getType(), haveSameSpecialState(), I, llvm::User::op_begin(), and llvm::User::op_end().
Referenced by GetLocation(), llvm::DenseMapInfo< SimpleValue >::getTombstoneKey(), HoistThenElseCodeToIf(), and isIdenticalTo().
|
inline |
Definition at line 132 of file Instruction.h.
References getOpcode(), and isIntDivRem().
Referenced by llvm::ConstantFoldBinaryInstruction(), foldSelectShuffle(), foldSelectShuffleWith1Binop(), isIntDivRem(), shouldMergeGEPs(), and ShrinkDemandedConstant().
Definition at line 153 of file Instruction.h.
bool Instruction::isLifetimeStartOrEnd | ( | ) | const |
Return true if the instruction is a llvm.lifetime.start or llvm.lifetime.end marker.
Definition at line 601 of file Instruction.cpp.
References llvm::dyn_cast(), llvm::Intrinsic::lifetime_end, and llvm::Intrinsic::lifetime_start.
Referenced by llvm::BasicBlock::getFirstNonPHIOrDbgOrLifetime(), llvm::safestack::StackColoring::getLiveRange(), llvm::CodeExtractor::isLegalToShrinkwrapLifetimeMarkers(), llvm::onlyUsedByLifetimeMarkers(), RedzoneSizeForScale(), AllocaSlices::SliceBuilder::SliceBuilder(), and llvm::sroa::AllocaSliceRewriter::visit().
|
inline |
Return true if this is a logical shift left or a logical shift right.
Definition at line 163 of file Instruction.h.
References getOpcode().
Referenced by canEvaluateShiftedShift(), llvm::InstCombiner::FoldShiftByConstant(), and simplifyValueKnownNonZero().
|
inline |
Return true if the instruction is nilpotent:
Nilpotent operators satisfy: x op x === Id,
where Id is the identity for the operator, i.e. a constant such that x op Id === x and Id op x === x for all x.
In LLVM, the Xor operator is nilpotent.
Definition at line 510 of file Instruction.h.
References getOpcode(), and isNilpotent().
Referenced by IncorporateWeight(), and isNilpotent().
Definition at line 511 of file Instruction.h.
bool Instruction::isSafeToRemove | ( | ) | const |
Return true if the instruction can be removed if the result is unused.
When constant folding some instructions cannot be removed even if their results are unused. Specifically terminator instructions and calls that may have side effects cannot be removed without semantically changing the generated program.
Definition at line 596 of file Instruction.cpp.
References isTerminator(), and mayHaveSideEffects().
Referenced by llvm::runIPSCCP(), and tryToReplaceWithConstant().
bool Instruction::isSameOperationAs | ( | const Instruction * | I, |
unsigned | flags = 0 |
||
) | const |
This function determines if the specified instruction executes the same operation as the current one.
This means that the opcodes, type, operand types and any other factors affecting the operation must be the same. This is similar to isIdenticalTo except the operands themselves don't have to be identical.
Definition at line 465 of file Instruction.cpp.
References CompareIgnoringAlignment, CompareUsingScalarTypes, llvm::User::getNumOperands(), getOpcode(), llvm::User::getOperand(), llvm::Type::getScalarType(), llvm::Value::getType(), and haveSameSpecialState().
Referenced by canSinkInstructions(), hasUsesOutsideLoop(), isIgnorableInst(), isSafeAndProfitableToSinkLoad(), and llvm::InstCombiner::visitStoreInst().
|
inline |
Definition at line 133 of file Instruction.h.
References getOpcode(), and isShift().
Referenced by detectShiftUntilZeroIdiom(), foldSelectShuffle(), foldSelectShuffleWith1Binop(), llvm::InstCombiner::FoldShiftByConstant(), isBroadcastShuffle(), llvm::PatternMatch::is_shift_op::isOpType(), isShift(), processUGT_ADDCST_ADD(), rightDistributesOverLeft(), shouldMergeGEPs(), and ShrinkDemandedConstant().
Determine if the Opcode is one of the shift instructions.
Definition at line 158 of file Instruction.h.
|
inline |
Definition at line 129 of file Instruction.h.
References getOpcode(), and isTerminator().
Referenced by llvm::DivergenceAnalysis::compute(), DeleteBasicBlock(), llvm::DemoteRegToStack(), findLocationForEntrySafepoint(), FoldTwoEntryPHINode(), FunctionNumber(), GetCaseResults(), llvm::DOTGraphTraits< BoUpSLP * >::getNodeAttributes(), HoistThenElseCodeToIf(), INITIALIZE_PASS(), isAlwaysLive(), llvm::isCriticalEdge(), llvm::SparseSolver< LatticeKey, LatticeVal, KeyInfo >::isEdgeFeasible(), isFoldedOrDeadInstruction(), isOnlyReachableViaThisEdge(), isSafeToMove(), isSafeToRemove(), isTerminator(), isUnconditionalBranch(), LLVMIsATerminatorInst(), makeBitReverse(), mergeCleanupPad(), mergeConditionalStoreToAddress(), llvm::InstDeleterIRStrategy::mutate(), okayForPHIOfOps(), llvm::MemoryDependenceResults::removeInstruction(), replaceAllUsesOfWithIn(), replaceAndRecursivelySimplifyImpl(), runSCCP(), llvm::FastISel::selectInstruction(), shouldRotateLoopExitingLatch(), SimplifyCondBranchToTwoReturns(), simplifyTerminatorLeadingToRet(), TryToSinkInstruction(), llvm::SelectionDAGBuilder::visit(), and llvm::wouldInstructionBeTriviallyDead().
Definition at line 142 of file Instruction.h.
|
inline |
Definition at line 130 of file Instruction.h.
References getOpcode(), and isUnaryOp().
Referenced by llvm::ConstantExpr::get(), and isUnaryOp().
Definition at line 146 of file Instruction.h.
bool Instruction::isUsedOutsideOfBlock | ( | const BasicBlock * | BB | ) | const |
Return true if there are any uses of this instruction in blocks other than the specified block.
Note that PHI nodes are considered to evaluate their operands in the corresponding predecessor block.
Definition at line 489 of file Instruction.cpp.
References llvm::dyn_cast(), getParent(), I, and llvm::Value::uses().
|
inline |
Return true if the instruction may have side effects.
Note that this does not consider malloc and alloca to have side effects because the newly allocated memory is completely invisible to instructions which don't use the returned value. For cases where this matters, isSafeToSpeculativelyExecute may be more appropriate.
Definition at line 562 of file Instruction.h.
References llvm::WebAssembly::mayThrow().
Referenced by canMoveAboveCall(), llvm::CloneFunction(), ConvertToSInt(), llvm::JumpThreadingPass::DuplicateCondBranchOnPHIIntoPred(), ExposePointerBase(), FoldCondBranchOnPHI(), getInductionVariable(), getRangeForAffineARHelper(), isAlwaysLive(), llvm::isInTailCallPosition(), isLoopDead(), isOnlyReachableViaThisEdge(), IsSafeComputationToRemove(), isSafePHIToSpeculate(), isSafeToRemove(), llvm::isSafeToUnrollAndJam(), isUnconditionalBranch(), replaceAndRecursivelySimplifyImpl(), ReplaceFoldableUses(), ReplaceUsesOfWith(), shouldRotateLoopExitingLatch(), llvm::sinkRegion(), SpeculativelyExecuteBB(), TryToSinkInstruction(), unswitchAllTrivialConditions(), and llvm::wouldInstructionBeTriviallyDead().
bool Instruction::mayReadFromMemory | ( | ) | const |
Return true if this instruction may read memory.
Definition at line 507 of file Instruction.cpp.
References llvm::MCID::Call, getOpcode(), llvm::SPII::Load, and llvm::SPII::Store.
Referenced by AliasCandidates(), llvm::InterleavedAccessInfo::analyzeInterleaving(), checkFunctionMemoryAccess(), llvm::createMemDepPrinter(), llvm::DependenceInfo::depends(), getInductionVariable(), GetLocation(), llvm::DependenceInfo::getSplitIteration(), hasConcreteDefImpl(), IsAcceptableTarget(), isIgnorableInst(), llvm::isInTailCallPosition(), isOnlyReachableViaThisEdge(), llvm::Loop::makeLoopInvariant(), llvm::LoopDataPrefetchPass::run(), shouldRotateLoopExitingLatch(), TryToSinkInstruction(), and llvm::InstCombiner::visitStoreInst().
|
inline |
Return true if this instruction may read or write memory.
Definition at line 522 of file Instruction.h.
References isAtomic(), and llvm::WebAssembly::mayThrow().
Referenced by llvm::AliasSetTracker::addUnknown(), llvm::AliasSet::aliasesUnknownInst(), llvm::canSinkOrHoistInst(), CloneAliasScopeMetadata(), getChainID(), llvm::intersectAccessGroups(), llvm::isSafeToUnrollAndJam(), llvm::mayBeMemoryDependent(), mergeConditionalStoreToAddress(), llvm::slpvectorizer::BoUpSLP::optimizeGatherSequence(), propagateMetadata(), and PropagateParallelLoopAccessMetadata().
bool Instruction::mayThrow | ( | ) | const |
Return true if this instruction may throw an exception.
Definition at line 586 of file Instruction.cpp.
Referenced by eliminateDeadStores(), InstrBreaksNonThrowing(), isSafeToMove(), MarkBlocksLiveIn(), moveUp(), propagateMetadata(), llvm::GVNHoist::rank(), runImpl(), and llvm::InstCombiner::visitStoreInst().
bool Instruction::mayWriteToMemory | ( | ) | const |
Return true if this instruction may modify memory.
Definition at line 527 of file Instruction.cpp.
References llvm::MCID::Call, getOpcode(), llvm::SPII::Load, and llvm::SPII::Store.
Referenced by AliasCandidates(), llvm::InterleavedAccessInfo::analyzeInterleaving(), checkFunctionMemoryAccess(), llvm::createMemDepPrinter(), llvm::DependenceInfo::depends(), llvm::FindAvailablePtrLoadStore(), findInitTrampolineFromBB(), GetLocation(), llvm::DependenceInfo::getSplitIteration(), isFoldedOrDeadInstruction(), isIgnorableInst(), isSafeToMove(), llvm::MemoryWriteTracking::isSpecialInstruction(), memoryIsNotModifiedBetween(), llvm::AliasSet::mergeSetIn(), propagateMetadata(), shouldRotateLoopExitingLatch(), and llvm::InstCombiner::visitStoreInst().
void Instruction::moveAfter | ( | Instruction * | MovePos | ) |
Unlink this instruction from its current basic block and insert it into the basic block that MovePos lives in, right after MovePos.
Definition at line 91 of file Instruction.cpp.
References llvm::ilist_node_impl< OptionsT >::getIterator(), getParent(), and moveBefore().
Referenced by getNarrowIntrinsic(), hasSameExtUse(), optimizeDivRem(), and rewriteDebugUsers().
void Instruction::moveBefore | ( | Instruction * | MovePos | ) |
Unlink this instruction from its current basic block and insert it into the basic block that MovePos lives in, right before MovePos.
Definition at line 87 of file Instruction.cpp.
References llvm::ilist_node_impl< OptionsT >::getIterator(), and getParent().
Referenced by canonicalizeSaturatedSubtract(), despeculateCountZeros(), llvm::GVNExpression::Expression::dump(), getNarrowIntrinsic(), llvm::SCEVExpander::hoistIVInc(), isAlwaysFoldable(), isProfitableForVectorization(), LinearizeExprTree(), llvm::Loop::makeLoopInvariant(), MarkBlocksLiveIn(), moveAfter(), moveHeaderPhiOperandsToForeBlocks(), moveInstructionBefore(), NegateValue(), operator<<(), optimizeDivRem(), llvm::slpvectorizer::BoUpSLP::optimizeGatherSequence(), relocateInstructionBefore(), removeEmptyCleanup(), shouldRotateLoopExitingLatch(), simplifyRelocatesOffABase(), SinkInstruction(), sinkInstruction(), sinkLastInstruction(), StackMallocSizeClass(), TryToSinkInstruction(), turnGuardIntoBranch(), llvm::UnrollAndJamLoop(), llvm::InstCombiner::visitAllocaInst(), and llvm::InstCombiner::visitCallInst().
void Instruction::moveBefore | ( | BasicBlock & | BB, |
SymbolTableList< Instruction >::iterator | I | ||
) |
Unlink this instruction and insert into BB before I.
Definition at line 95 of file Instruction.cpp.
References assert(), llvm::BasicBlock::end(), llvm::BasicBlock::getInstList(), llvm::ilist_node_impl< ilist_detail::compute_node_options< Instruction, Options... >::type >::getIterator(), getParent(), and llvm::iplist_impl< IntrusiveListT, TraitsT >::splice().
|
delete |
void Instruction::removeFromParent | ( | ) |
This method unlinks 'this' from the containing basic block, but does not delete it.
Definition at line 64 of file Instruction.cpp.
References llvm::BasicBlock::getInstList(), llvm::ilist_node_impl< ilist_detail::compute_node_options< Instruction, Options... >::type >::getIterator(), getParent(), and llvm::iplist_impl< IntrusiveListT, TraitsT >::remove().
Referenced by CloneLoop(), llvm::slpvectorizer::BoUpSLP::getORE(), hasSameExtUse(), makeBitReverse(), operator<<(), false::LibCallsShrinkWrap::perform(), propagateMetadata(), scaleWeights(), llvm::JumpThreadingPass::UnfoldSelectInstr(), and llvm::InstCombiner::visitAnd().
Sets the metadata on this instruction from the AAMDNodes structure.
Definition at line 1265 of file Metadata.cpp.
References assert(), llvm::MDNode::getContext(), Info, llvm::LLVMContextImpl::InstructionMetadata, llvm::LLVMContext::MD_alias_scope, llvm::LLVMContext::MD_dbg, llvm::LLVMContext::MD_noalias, llvm::LLVMContext::MD_tbaa, llvm::AAMDNodes::NoAlias, llvm::LLVMContext::pImpl, llvm::AAMDNodes::Scope, setMetadata(), and llvm::AAMDNodes::TBAA.
Referenced by doPromotion(), isSafeToExecuteUnconditionally(), mergeConditionalStoreToAddress(), llvm::promoteLoopAccessesToScalars(), speculatePHINodeLoads(), speculateSelectInstLoads(), unpackLoadToAggregate(), unpackStoreToAggregate(), llvm::sroa::AllocaSliceRewriter::visit(), llvm::InstCombiner::visitExtractValueInst(), and llvm::InstCombiner::visitStoreInst().
|
inline |
Set the debug location information for this instruction.
Definition at line 308 of file Instruction.h.
Referenced by buildMultiplyTree(), changeToCall(), llvm::changeToInvokeAndSplitBasicBlock(), llvm::changeToUnreachable(), CombineUAddWithOverflow(), ConvertShiftToMul(), copyMetadata(), createAndInstr(), createCallInst(), createFFSIntrinsic(), createPopcntIntrinsic(), llvm::InnerLoopVectorizer::createVectorizedLoopSkeleton(), eliminateRecursiveTailCall(), findInitTrampoline(), llvm::CodeExtractor::findInputsOutputs(), findInsertPointAfter(), FitWeights(), llvm::formLCSSAForInstructions(), getSignature(), getTrueOrFalseValue(), getTypePartition(), llvm::SSAUpdater::GetValueInMiddleOfBlock(), hasSameExtUse(), hoist(), llvm::hoistAllInstructionsInto(), INITIALIZE_PASS(), llvm::InlineFunction(), insertCall(), llvm::InstCombiner::InsertNewInstWith(), instrumentMaskedLoadOrStore(), isOnlyReachableViaThisEdge(), isSafeToExecuteUnconditionally(), isThunkProfitable(), isUnconditionalBranch(), LowerNegateToMultiply(), mayLoopAccessLocation(), OptimizeExtractBits(), llvm::PHITransAddr::PHITranslateWithInsertion(), llvm::promoteLoopAccessesToScalars(), llvm::removeUnwindEdge(), llvm::ReplaceInstWithInst(), reportLoadElim(), reportMayClobberedLoad(), llvm::IRBuilderBase::SetInstDebugLocation(), shouldRotateLoopExitingLatch(), llvm::JumpThreadingPass::SimplifyPartiallyRedundantLoad(), sinkAndCmp0Expression(), SinkCast(), SinkCmpExpression(), SinkShiftAndTruncate(), llvm::BasicBlock::splitBasicBlock(), splitCallSite(), llvm::SplitLandingPadPredecessors(), llvm::JumpThreadingPass::ThreadEdge(), truncateIVUse(), TryToShrinkGlobalToBoolean(), tryUnmergingGEPsAcrossIndirectBr(), llvm::UnrollRuntimeLoopRemainder(), updateForIncomingValueLocation(), updateOperand(), llvm::InstCombiner::visitLoadInst(), and llvm::InstCombiner::visitStoreInst().
void Instruction::setFast | ( | bool | B | ) |
Set or clear all fast-math-flags on this instruction, which must be an operator which supports this flag.
See LangRef.html for the meaning of this flag.
Definition at line 148 of file Instruction.cpp.
References assert().
void Instruction::setFastMathFlags | ( | FastMathFlags | FMF | ) |
Convenience function for setting multiple fast-math flags on this instruction, which must be an operator which supports these flags.
See LangRef.html for the meaning of these flags.
Definition at line 183 of file Instruction.cpp.
References assert().
Referenced by buildMultiplyTree(), canonicalizeSaturatedSubtract(), ClearSubclassDataAfterReassociation(), CreateAdd(), CreateMul(), CreateNeg(), llvm::IRBuilder< TargetFolder >::CreateUnreachable(), FunctionNumber(), LinearizeExprTree(), and simplifyAssocCastAssoc().
void Instruction::setHasAllowReassoc | ( | bool | B | ) |
Set or clear the reassociation flag on this instruction, which must be an operator which supports this flag.
See LangRef.html for the meaning of this flag.
Definition at line 153 of file Instruction.cpp.
References assert().
void Instruction::setHasAllowReciprocal | ( | bool | B | ) |
Set or clear the allow-reciprocal flag on this instruction, which must be an operator which supports this flag.
See LangRef.html for the meaning of this flag.
Definition at line 173 of file Instruction.cpp.
References assert().
void Instruction::setHasApproxFunc | ( | bool | B | ) |
Set or clear the approximate-math-functions flag on this instruction, which must be an operator which supports this flag.
See LangRef.html for the meaning of this flag.
Definition at line 178 of file Instruction.cpp.
References assert().
void Instruction::setHasNoInfs | ( | bool | B | ) |
Set or clear the no-infs flag on this instruction, which must be an operator which supports this flag.
See LangRef.html for the meaning of this flag.
Definition at line 163 of file Instruction.cpp.
References assert().
void Instruction::setHasNoNaNs | ( | bool | B | ) |
Set or clear the no-nans flag on this instruction, which must be an operator which supports this flag.
See LangRef.html for the meaning of this flag.
Definition at line 158 of file Instruction.cpp.
References assert().
Set or clear the nsw flag on this instruction, which must be an operator which supports this flag.
See LangRef.html for the meaning of this flag.
Definition at line 105 of file Instruction.cpp.
Referenced by andIRFlags(), ConvertShiftToMul(), copyIRFlags(), llvm::NoFolder::CreateAdd(), llvm::NoFolder::CreateMul(), llvm::NoFolder::CreateNeg(), llvm::BinaryOperator::CreateNSW(), llvm::NoFolder::CreateShl(), llvm::NoFolder::CreateSub(), llvm::IRBuilder< TargetFolder >::CreateUnreachable(), dropPoisonGeneratingFlags(), foldSelectShuffle(), foldShiftedShift(), llvm::ConstantExpr::getAsInstruction(), GetLoopInvariantInsertPosition(), NegateValue(), llvm::PHITransAddr::PHITranslateWithInsertion(), processAdd(), ShrinkDemandedConstant(), simplifyAssocCastAssoc(), llvm::InstCombiner::visitAdd(), llvm::InstCombiner::visitMul(), llvm::InstCombiner::visitShl(), and llvm::InstCombiner::visitSub().
void Instruction::setHasNoSignedZeros | ( | bool | B | ) |
Set or clear the no-signed-zeros flag on this instruction, which must be an operator which supports this flag.
See LangRef.html for the meaning of this flag.
Definition at line 168 of file Instruction.cpp.
References assert().
Set or clear the nuw flag on this instruction, which must be an operator which supports this flag.
See LangRef.html for the meaning of this flag.
Definition at line 101 of file Instruction.cpp.
Referenced by andIRFlags(), ConvertShiftToMul(), copyIRFlags(), llvm::NoFolder::CreateAdd(), llvm::NoFolder::CreateMul(), llvm::NoFolder::CreateNeg(), llvm::BinaryOperator::CreateNUW(), llvm::NoFolder::CreateShl(), llvm::NoFolder::CreateSub(), llvm::IRBuilder< TargetFolder >::CreateUnreachable(), dropPoisonGeneratingFlags(), foldShiftedShift(), llvm::ConstantExpr::getAsInstruction(), GetLoopInvariantInsertPosition(), NegateValue(), llvm::PHITransAddr::PHITranslateWithInsertion(), processAdd(), ShrinkDemandedConstant(), simplifyValueKnownNonZero(), llvm::InstCombiner::visitAdd(), llvm::InstCombiner::visitMul(), llvm::InstCombiner::visitShl(), and llvm::InstCombiner::visitSub().
|
inlineprotected |
Definition at line 740 of file Instruction.h.
References assert().
Referenced by llvm::AllocaInst::classof(), llvm::LoadInst::classof(), llvm::StoreInst::classof(), llvm::FenceInst::classof(), llvm::AtomicCmpXchgInst::classof(), llvm::AtomicRMWInst::classof(), llvm::CallInst::classof(), llvm::InvokeInst::classof(), and llvm::CleanupReturnInst::classof().
Set or clear the exact flag on this instruction, which must be an operator which supports this flag.
See LangRef.html for the meaning of this flag.
Definition at line 109 of file Instruction.cpp.
Referenced by andIRFlags(), llvm::InstCombiner::commonIDivTransforms(), copyIRFlags(), llvm::BinaryOperator::CreateExact(), dropPoisonGeneratingFlags(), foldShiftedShift(), foldUDivPow2Cst(), foldUDivShl(), llvm::ConstantExpr::getAsInstruction(), GetLoopInvariantInsertPosition(), ShrinkDemandedConstant(), simplifyValueKnownNonZero(), llvm::InstCombiner::visitAShr(), llvm::InstCombiner::visitLShr(), and llvm::InstCombiner::visitUDiv().
Set the metadata of the specified kind to the specified node.
This updates or replaces metadata if already present, or removes it if Node is null.
Definition at line 1226 of file Metadata.cpp.
Referenced by AddAliasScopeMetadata(), llvm::LoopVersioning::annotateInstWithNoAlias(), llvm::annotateValueSite(), assertBranchOrSelectConditionHoisted(), CloneAliasScopeMetadata(), combineLoadToNewType(), llvm::combineMetadata(), combineStoreToNewValue(), ComputePostOrders(), llvm::ConstantFoldTerminator(), copyMetadata(), llvm::copyNonnullMetadata(), llvm::copyRangeMetadata(), llvm::IRBuilderBase::CreateElementUnorderedAtomicMemCpy(), llvm::IRBuilderBase::CreateElementUnorderedAtomicMemMove(), llvm::IRBuilderBase::CreateElementUnorderedAtomicMemSet(), llvm::createFalkorMarkStridedAccessesPass(), llvm::IRBuilderBase::CreateMemCpy(), llvm::IRBuilderBase::CreateMemMove(), llvm::IRBuilderBase::CreateMemSet(), llvm::createObjCARCOptPass(), llvm::IRBuilder< TargetFolder >::CreateUnreachable(), findBasePointer(), llvm::CodeExtractor::findInputsOutputs(), llvm::FoldBranchToCommonDest(), foldCtpop(), foldCttzCtlz(), getMulHu(), getNegativeIsTrueBoolVec(), handlePhiDef(), handleSwitchExpect(), hasOnlyUniformBranches(), insertUniqueBackedgeBlock(), isKnownTypeIdMember(), isSafeAndProfitableToSinkLoad(), parseOptionalLinkageAux(), llvm::peelLoop(), llvm::promoteCall(), llvm::pgo::promoteIndirectCall(), llvm::propagateMetadata(), PropagateParallelLoopAccessMetadata(), runCVP(), setBranchWeights(), llvm::setIrrLoopHeaderMetadata(), llvm::Loop::setLoopID(), setNoClobberMetadata(), llvm::setProfMetadata(), setProfWeight(), SortCallTargets(), llvm::SplitBlockAndInsertIfThen(), llvm::SplitBlockAndInsertIfThenElse(), swapProfMetadata(), llvm::JumpThreadingPass::ThreadEdge(), llvm::TryToSimplifyUncondBranchFromEmptyBlock(), tryUnmergingGEPsAcrossIndirectBr(), updateBranchWeights(), updatePredecessorProfileMetadata(), updateProfWeight(), llvm::InstCombiner::visitCallInst(), and wrapConstantAsMetadata().
Definition at line 1189 of file Metadata.cpp.
void Instruction::setProfWeight | ( | uint64_t | W | ) |
Sets the branch_weights metadata to W
for CallInst.
Definition at line 777 of file Instruction.cpp.
References assert(), llvm::MDBuilder::createBranchWeights(), llvm::Value::getContext(), llvm::LLVMContext::MD_prof, llvm::SmallVectorTemplateBase< T >::push_back(), and setMetadata().
void Instruction::setSuccessor | ( | unsigned | Idx, |
BasicBlock * | BB | ||
) |
Update the specified successor to point at the provided block.
This instruction must be a terminator.
Definition at line 662 of file Instruction.cpp.
References getOpcode(), and llvm_unreachable.
Referenced by llvm::ReturnInst::classof(), llvm::ResumeInst::classof(), llvm::CatchReturnInst::classof(), llvm::CleanupReturnInst::classof(), llvm::UnreachableInst::classof(), CloneLoopBlocks(), cloneLoopBlocks(), llvm::createMemCpyLoopKnownSize(), llvm::CodeExtractor::findInputsOutputs(), FoldCondBranchOnPHI(), insertUniqueBackedgeBlock(), isUnconditionalBranch(), llvm::SplitCriticalEdge(), and llvm::JumpThreadingPass::ThreadEdge().
void Instruction::swapProfMetadata | ( | ) |
If the instruction has "branch_weights" MD_prof metadata and the MDNode has three operands (including name string), swap the order of the metadata.
Definition at line 678 of file Instruction.cpp.
References llvm::MDNode::get(), llvm::MDNode::getContext(), getMetadata(), llvm::MDNode::getNumOperands(), llvm::MDNode::getOperand(), llvm::MDString::getString(), llvm::LLVMContext::MD_prof, and setMetadata().
Referenced by canonicalizeSaturatedSubtract(), CloneLoop(), and llvm::BranchInst::swapSuccessors().
void Instruction::updateProfWeight | ( | uint64_t | S, |
uint64_t | T | ||
) |
Updates branch_weights metadata by scaling it by S
/ T
.
Definition at line 734 of file Instruction.cpp.
References llvm::MDBuilder::createConstant(), llvm::dyn_cast(), llvm::ConstantInt::get(), llvm::MDNode::get(), llvm::Value::getContext(), llvm::Type::getInt64Ty(), getMetadata(), llvm::LLVMContext::MD_prof, llvm::SmallVectorTemplateBase< T >::push_back(), and setMetadata().
|
inline |
Specialize the methods defined in Value, as we know that an instruction can only be used by other instructions.
Definition at line 64 of file Instruction.h.
Referenced by buildMultiplyTree(), llvm::slpvectorizer::BoUpSLP::canMapToVector(), canonicalizeSaturatedSubtract(), canTransformAccumulatorRecursion(), cheapToScalarize(), combineLoadToOperationType(), ConvertToSInt(), DeadPHICycle(), llvm::DemoteRegToStack(), doPromotion(), llvm::FoldBranchToCommonDest(), foldInsSequenceIntoBroadcast(), llvm::RecurrenceDescriptor::isFirstOrderRecurrence(), llvm::AArch64TargetLowering::isProfitableToHoist(), OptimizeGlobalAddressOfMalloc(), promoteSingleBlockAlloca(), llvm::recognizeBSwapOrBitReverseIdiom(), replaceExtractElements(), ShouldBreakUpSubtract(), shouldMergeGEPs(), SimplifyIndirectBrOnSelect(), llvm::InstCombiner::SliceUpIllegalIntegerPHI(), speculatePHINodeLoads(), speculateSelectInstLoads(), llvm::FastISel::tryToFoldLoad(), updateOperand(), llvm::InstCombiner::visitFCmpInst(), llvm::InstCombiner::visitICmpInst(), llvm::InstCombiner::visitPHINode(), llvm::InstCombiner::visitSExt(), and llvm::InstCombiner::visitZExt().
|
inline |
Definition at line 65 of file Instruction.h.
|
friend |
Definition at line 716 of file Instruction.h.