LLVM
13.0.0git
|
#include "llvm/Analysis/AliasAnalysis.h"
Classes | |
class | Concept |
A private abstract base class describing the concept of an individual alias analysis implementation. More... | |
Public Member Functions | |
AAResults (const TargetLibraryInfo &TLI) | |
AAResults (AAResults &&Arg) | |
~AAResults () | |
template<typename AAResultT > | |
void | addAAResult (AAResultT &AAResult) |
Register a specific AA result. More... | |
void | addAADependencyID (AnalysisKey *ID) |
Register a function analysis ID that the results aggregation depends on. More... | |
bool | invalidate (Function &F, const PreservedAnalyses &PA, FunctionAnalysisManager::Invalidator &Inv) |
Handle invalidation events in the new pass manager. More... | |
Alias Queries | |
AliasResult | alias (const MemoryLocation &LocA, const MemoryLocation &LocB) |
The main low level interface to the alias analysis implementation. More... | |
AliasResult | alias (const Value *V1, LocationSize V1Size, const Value *V2, LocationSize V2Size) |
A convenience wrapper around the primary alias interface. More... | |
AliasResult | alias (const Value *V1, const Value *V2) |
A convenience wrapper around the primary alias interface. More... | |
bool | isNoAlias (const MemoryLocation &LocA, const MemoryLocation &LocB) |
A trivial helper function to check to see if the specified pointers are no-alias. More... | |
bool | isNoAlias (const Value *V1, LocationSize V1Size, const Value *V2, LocationSize V2Size) |
A convenience wrapper around the isNoAlias helper interface. More... | |
bool | isNoAlias (const Value *V1, const Value *V2) |
A convenience wrapper around the isNoAlias helper interface. More... | |
bool | isMustAlias (const MemoryLocation &LocA, const MemoryLocation &LocB) |
A trivial helper function to check to see if the specified pointers are must-alias. More... | |
bool | isMustAlias (const Value *V1, const Value *V2) |
A convenience wrapper around the isMustAlias helper interface. More... | |
bool | pointsToConstantMemory (const MemoryLocation &Loc, bool OrLocal=false) |
Checks whether the given location points to constant memory, or if OrLocal is true whether it points to a local alloca. More... | |
bool | pointsToConstantMemory (const Value *P, bool OrLocal=false) |
A convenience wrapper around the primary pointsToConstantMemory interface. More... | |
Simple mod/ref information | |
ModRefInfo | getArgModRefInfo (const CallBase *Call, unsigned ArgIdx) |
Get the ModRef info associated with a pointer argument of a call. More... | |
FunctionModRefBehavior | getModRefBehavior (const CallBase *Call) |
Return the behavior of the given call site. More... | |
FunctionModRefBehavior | getModRefBehavior (const Function *F) |
Return the behavior when calling the given function. More... | |
bool | doesNotAccessMemory (const CallBase *Call) |
Checks if the specified call is known to never read or write memory. More... | |
bool | doesNotAccessMemory (const Function *F) |
Checks if the specified function is known to never read or write memory. More... | |
bool | onlyReadsMemory (const CallBase *Call) |
Checks if the specified call is known to only read from non-volatile memory (or not access memory at all). More... | |
bool | onlyReadsMemory (const Function *F) |
Checks if the specified function is known to only read from non-volatile memory (or not access memory at all). More... | |
ModRefInfo | getModRefInfo (const CallBase *Call, const MemoryLocation &Loc) |
getModRefInfo (for call sites) - Return information about whether a particular call site modifies or reads the specified memory location. More... | |
ModRefInfo | getModRefInfo (const CallBase *Call, const Value *P, LocationSize Size) |
getModRefInfo (for call sites) - A convenience wrapper. More... | |
ModRefInfo | getModRefInfo (const LoadInst *L, const MemoryLocation &Loc) |
getModRefInfo (for loads) - Return information about whether a particular load modifies or reads the specified memory location. More... | |
ModRefInfo | getModRefInfo (const LoadInst *L, const Value *P, LocationSize Size) |
getModRefInfo (for loads) - A convenience wrapper. More... | |
ModRefInfo | getModRefInfo (const StoreInst *S, const MemoryLocation &Loc) |
getModRefInfo (for stores) - Return information about whether a particular store modifies or reads the specified memory location. More... | |
ModRefInfo | getModRefInfo (const StoreInst *S, const Value *P, LocationSize Size) |
getModRefInfo (for stores) - A convenience wrapper. More... | |
ModRefInfo | getModRefInfo (const FenceInst *S, const MemoryLocation &Loc) |
getModRefInfo (for fences) - Return information about whether a particular store modifies or reads the specified memory location. More... | |
ModRefInfo | getModRefInfo (const FenceInst *S, const Value *P, LocationSize Size) |
getModRefInfo (for fences) - A convenience wrapper. More... | |
ModRefInfo | getModRefInfo (const AtomicCmpXchgInst *CX, const MemoryLocation &Loc) |
getModRefInfo (for cmpxchges) - Return information about whether a particular cmpxchg modifies or reads the specified memory location. More... | |
ModRefInfo | getModRefInfo (const AtomicCmpXchgInst *CX, const Value *P, LocationSize Size) |
getModRefInfo (for cmpxchges) - A convenience wrapper. More... | |
ModRefInfo | getModRefInfo (const AtomicRMWInst *RMW, const MemoryLocation &Loc) |
getModRefInfo (for atomicrmws) - Return information about whether a particular atomicrmw modifies or reads the specified memory location. More... | |
ModRefInfo | getModRefInfo (const AtomicRMWInst *RMW, const Value *P, LocationSize Size) |
getModRefInfo (for atomicrmws) - A convenience wrapper. More... | |
ModRefInfo | getModRefInfo (const VAArgInst *I, const MemoryLocation &Loc) |
getModRefInfo (for va_args) - Return information about whether a particular va_arg modifies or reads the specified memory location. More... | |
ModRefInfo | getModRefInfo (const VAArgInst *I, const Value *P, LocationSize Size) |
getModRefInfo (for va_args) - A convenience wrapper. More... | |
ModRefInfo | getModRefInfo (const CatchPadInst *I, const MemoryLocation &Loc) |
getModRefInfo (for catchpads) - Return information about whether a particular catchpad modifies or reads the specified memory location. More... | |
ModRefInfo | getModRefInfo (const CatchPadInst *I, const Value *P, LocationSize Size) |
getModRefInfo (for catchpads) - A convenience wrapper. More... | |
ModRefInfo | getModRefInfo (const CatchReturnInst *I, const MemoryLocation &Loc) |
getModRefInfo (for catchrets) - Return information about whether a particular catchret modifies or reads the specified memory location. More... | |
ModRefInfo | getModRefInfo (const CatchReturnInst *I, const Value *P, LocationSize Size) |
getModRefInfo (for catchrets) - A convenience wrapper. More... | |
ModRefInfo | getModRefInfo (const Instruction *I, const Optional< MemoryLocation > &OptLoc) |
Check whether or not an instruction may read or write the optionally specified memory location. More... | |
ModRefInfo | getModRefInfo (const Instruction *I, const Value *P, LocationSize Size) |
A convenience wrapper for constructing the memory location. More... | |
ModRefInfo | getModRefInfo (Instruction *I, const CallBase *Call) |
Return information about whether a call and an instruction may refer to the same memory locations. More... | |
ModRefInfo | getModRefInfo (const CallBase *Call1, const CallBase *Call2) |
Return information about whether two call sites may refer to the same set of memory locations. More... | |
ModRefInfo | callCapturesBefore (const Instruction *I, const MemoryLocation &MemLoc, DominatorTree *DT) |
Return information about whether a particular call site modifies or reads the specified memory location MemLoc before instruction I in a BasicBlock. More... | |
ModRefInfo | callCapturesBefore (const Instruction *I, const Value *P, LocationSize Size, DominatorTree *DT) |
A convenience wrapper to synthesize a memory location. More... | |
static bool | onlyReadsMemory (FunctionModRefBehavior MRB) |
Checks if functions with the specified behavior are known to only read from non-volatile memory (or not access memory at all). More... | |
static bool | doesNotReadMemory (FunctionModRefBehavior MRB) |
Checks if functions with the specified behavior are known to only write memory (or not access memory at all). More... | |
static bool | onlyAccessesArgPointees (FunctionModRefBehavior MRB) |
Checks if functions with the specified behavior are known to read and write at most from objects pointed to by their pointer-typed arguments (with arbitrary offsets). More... | |
static bool | doesAccessArgPointees (FunctionModRefBehavior MRB) |
Checks if functions with the specified behavior are known to potentially read or write from objects pointed to be their pointer-typed arguments (with arbitrary offsets). More... | |
static bool | onlyAccessesInaccessibleMem (FunctionModRefBehavior MRB) |
Checks if functions with the specified behavior are known to read and write at most from memory that is inaccessible from LLVM IR. More... | |
static bool | doesAccessInaccessibleMem (FunctionModRefBehavior MRB) |
Checks if functions with the specified behavior are known to potentially read or write from memory that is inaccessible from LLVM IR. More... | |
static bool | onlyAccessesInaccessibleOrArgMem (FunctionModRefBehavior MRB) |
Checks if functions with the specified behavior are known to read and write at most from memory that is inaccessible from LLVM IR or objects pointed to by their pointer-typed arguments (with arbitrary offsets). More... | |
Higher level methods for querying mod/ref information. | |
template<typename T > | |
class | AAResultBase |
class | BatchAAResults |
bool | canBasicBlockModify (const BasicBlock &BB, const MemoryLocation &Loc) |
Check if it is possible for execution of the specified basic block to modify the location Loc. More... | |
bool | canBasicBlockModify (const BasicBlock &BB, const Value *P, LocationSize Size) |
A convenience wrapper synthesizing a memory location. More... | |
bool | canInstructionRangeModRef (const Instruction &I1, const Instruction &I2, const MemoryLocation &Loc, const ModRefInfo Mode) |
Check if it is possible for the execution of the specified instructions to mod(according to the mode) the location Loc. More... | |
bool | canInstructionRangeModRef (const Instruction &I1, const Instruction &I2, const Value *Ptr, LocationSize Size, const ModRefInfo Mode) |
A convenience wrapper synthesizing a memory location. More... | |
Definition at line 456 of file AliasAnalysis.h.
|
inline |
Definition at line 460 of file AliasAnalysis.h.
AAResults::AAResults | ( | AAResults && | Arg | ) |
Definition at line 77 of file AliasAnalysis.cpp.
AAResults::~AAResults | ( | ) |
Definition at line 83 of file AliasAnalysis.cpp.
|
inline |
Register a function analysis ID that the results aggregation depends on.
This is used in the new pass manager to implement the invalidation logic where we must invalidate the results aggregation if any of our component analyses become invalid.
Definition at line 477 of file AliasAnalysis.h.
|
inline |
Register a specific AA result.
Definition at line 465 of file AliasAnalysis.h.
Referenced by llvm::createLegacyPMAAResults().
AliasResult AAResults::alias | ( | const MemoryLocation & | LocA, |
const MemoryLocation & | LocB | ||
) |
The main low level interface to the alias analysis implementation.
Returns an AliasResult indicating whether the two pointers are aliased to each other. This is the interface that must be implemented by specific alias analysis implementations.
Definition at line 118 of file AliasAnalysis.cpp.
Referenced by alias(), llvm::BatchAAResults::alias(), llvm::AAResultBase< DerivedT >::AAResultsProxy::alias(), llvm::AliasSet::aliasesPointer(), callCapturesBefore(), isMustAlias(), and isNoAlias().
|
inline |
A convenience wrapper around the primary alias
interface.
Definition at line 503 of file AliasAnalysis.h.
References alias(), llvm::MemoryLocation::getBeforeOrAfter(), and llvm::NVPTX::PTXLdStInstCode::V2.
|
inline |
A convenience wrapper around the primary alias
interface.
Definition at line 497 of file AliasAnalysis.h.
References alias(), and llvm::NVPTX::PTXLdStInstCode::V2.
ModRefInfo AAResults::callCapturesBefore | ( | const Instruction * | I, |
const MemoryLocation & | MemLoc, | ||
DominatorTree * | DT | ||
) |
Return information about whether a particular call site modifies or reads the specified memory location MemLoc
before instruction I
in a BasicBlock.
Early exits in callCapturesBefore may lead to ModRefInfo::Must not being set.
FIXME: this is really just shoring-up a deficiency in alias analysis. BasicAA isn't willing to spend linear time determining whether an alloca was captured before or after this particular call, while we are. However, with a smarter AA in place, this test is just wasting compile time.
Definition at line 717 of file AliasAnalysis.cpp.
References alias(), llvm::clearMust(), llvm::getUnderlyingObject(), I, llvm::isIdentifiedObject(), llvm::ModRef, llvm::AliasResult::MustAlias, llvm::AliasResult::NoAlias, llvm::NoModRef, llvm::Object, llvm::PointerMayBeCapturedBefore(), llvm::MemoryLocation::Ptr, llvm::Ref, and llvm::setMust().
Referenced by callCapturesBefore(), and llvm::MemoryDependenceResults::getSimplePointerDependencyFrom().
|
inline |
A convenience wrapper to synthesize a memory location.
Definition at line 801 of file AliasAnalysis.h.
References callCapturesBefore(), I, P, and llvm::Check::Size.
bool AAResults::canBasicBlockModify | ( | const BasicBlock & | BB, |
const MemoryLocation & | Loc | ||
) |
Check if it is possible for execution of the specified basic block to modify the location Loc.
canBasicBlockModify - Return true if it is possible for execution of the specified basic block to modify the location Loc.
Definition at line 775 of file AliasAnalysis.cpp.
References BB, canInstructionRangeModRef(), and llvm::Mod.
Referenced by canBasicBlockModify(), and isSafeToPromoteArgument().
|
inline |
A convenience wrapper synthesizing a memory location.
Definition at line 816 of file AliasAnalysis.h.
References BB, canBasicBlockModify(), P, and llvm::Check::Size.
bool AAResults::canInstructionRangeModRef | ( | const Instruction & | I1, |
const Instruction & | I2, | ||
const MemoryLocation & | Loc, | ||
const ModRefInfo | Mode | ||
) |
Check if it is possible for the execution of the specified instructions to mod(according to the mode) the location Loc.
canInstructionRangeModRef - Return true if it is possible for the execution of the specified instructions to mod(according to the mode) the location Loc.
The instructions to consider are all of the instructions in the range of [I1,I2] INCLUSIVE. I1 and I2 must be in the same basic block.
Definition at line 785 of file AliasAnalysis.cpp.
References assert(), E, llvm::ilist_node_impl< OptionsT >::getIterator(), getModRefInfo(), llvm::Instruction::getParent(), I, llvm::intersectModRef(), llvm::isModOrRefSet(), and Mode.
Referenced by canBasicBlockModify(), canInstructionRangeModRef(), and isSafeToPromoteArgument().
|
inline |
A convenience wrapper synthesizing a memory location.
Definition at line 831 of file AliasAnalysis.h.
References canInstructionRangeModRef(), Mode, and llvm::Check::Size.
|
inlinestatic |
Checks if functions with the specified behavior are known to potentially read or write from objects pointed to be their pointer-typed arguments (with arbitrary offsets).
Definition at line 644 of file AliasAnalysis.h.
References llvm::createModRefInfo(), llvm::FMRL_ArgumentPointees, and llvm::isModOrRefSet().
|
inlinestatic |
Checks if functions with the specified behavior are known to potentially read or write from memory that is inaccessible from LLVM IR.
Definition at line 657 of file AliasAnalysis.h.
References llvm::createModRefInfo(), llvm::FMRL_InaccessibleMem, and llvm::isModOrRefSet().
Checks if the specified call is known to never read or write memory.
Note that if the call only reads from known-constant memory, it is also legal to return true. Also, calls that unwind the stack are legal for this predicate.
Many optimizations (such as CSE and LICM) can be performed on such calls without worrying about aliasing properties, and many calls have this property (e.g. calls to 'sin' and 'cos').
This property corresponds to the GCC 'const' attribute.
Definition at line 577 of file AliasAnalysis.h.
References llvm::FMRB_DoesNotAccessMemory, and getModRefBehavior().
Checks if the specified function is known to never read or write memory.
Note that if the function only reads from known-constant memory, it is also legal to return true. Also, function that unwind the stack are legal for this predicate.
Many optimizations (such as CSE and LICM) can be performed on such calls to such functions without worrying about aliasing properties, and many functions have this property (e.g. 'sin' and 'cos').
This property corresponds to the GCC 'const' attribute.
Definition at line 592 of file AliasAnalysis.h.
References F, llvm::FMRB_DoesNotAccessMemory, and getModRefBehavior().
|
inlinestatic |
Checks if functions with the specified behavior are known to only write memory (or not access memory at all).
Definition at line 630 of file AliasAnalysis.h.
References llvm::createModRefInfo(), and llvm::isRefSet().
Referenced by checkFunctionMemoryAccess().
ModRefInfo AAResults::getArgModRefInfo | ( | const CallBase * | Call, |
unsigned | ArgIdx | ||
) |
Get the ModRef info associated with a pointer argument of a call.
The result's bits are set to indicate the allowed aliasing ModRef kinds. Note that these bits do not necessarily account for the overall behavior of the function, but rather only provide additional per-argument information. This never sets ModRefInfo::Must.
Definition at line 176 of file AliasAnalysis.cpp.
References llvm::intersectModRef(), llvm::isNoModRef(), llvm::ModRef, and llvm::NoModRef.
Referenced by llvm::AliasSetTracker::add(), llvm::BatchAAResults::getArgModRefInfo(), and llvm::AAResultBase< DerivedT >::AAResultsProxy::getArgModRefInfo().
FunctionModRefBehavior AAResults::getModRefBehavior | ( | const CallBase * | Call | ) |
Return the behavior of the given call site.
Definition at line 422 of file AliasAnalysis.cpp.
References llvm::FMRB_DoesNotAccessMemory, and llvm::FMRB_UnknownModRefBehavior.
Referenced by llvm::AliasSetTracker::add(), AddAliasScopeMetadata(), llvm::objcarc::CanAlterRefCount(), llvm::canSinkOrHoistInst(), checkFunctionMemoryAccess(), doesNotAccessMemory(), llvm::BatchAAResults::getModRefBehavior(), llvm::AAResultBase< DerivedT >::AAResultsProxy::getModRefBehavior(), and onlyReadsMemory().
FunctionModRefBehavior AAResults::getModRefBehavior | ( | const Function * | F | ) |
Return the behavior when calling the given function.
Definition at line 436 of file AliasAnalysis.cpp.
References F, llvm::FMRB_DoesNotAccessMemory, and llvm::FMRB_UnknownModRefBehavior.
ModRefInfo AAResults::getModRefInfo | ( | const AtomicCmpXchgInst * | CX, |
const MemoryLocation & | Loc | ||
) |
getModRefInfo (for cmpxchges) - Return information about whether a particular cmpxchg modifies or reads the specified memory location.
Definition at line 617 of file AliasAnalysis.cpp.
References getModRefInfo().
|
inline |
getModRefInfo (for cmpxchges) - A convenience wrapper.
Definition at line 716 of file AliasAnalysis.h.
References getModRefInfo(), P, and llvm::Check::Size.
ModRefInfo AAResults::getModRefInfo | ( | const AtomicRMWInst * | RMW, |
const MemoryLocation & | Loc | ||
) |
getModRefInfo (for atomicrmws) - Return information about whether a particular atomicrmw modifies or reads the specified memory location.
Definition at line 645 of file AliasAnalysis.cpp.
References getModRefInfo().
|
inline |
getModRefInfo (for atomicrmws) - A convenience wrapper.
Definition at line 726 of file AliasAnalysis.h.
References getModRefInfo(), P, and llvm::Check::Size.
ModRefInfo AAResults::getModRefInfo | ( | const CallBase * | Call, |
const MemoryLocation & | Loc | ||
) |
getModRefInfo (for call sites) - Return information about whether a particular call site modifies or reads the specified memory location.
Definition at line 217 of file AliasAnalysis.cpp.
Referenced by llvm::AliasSet::aliasesPointer(), llvm::AliasSet::aliasesUnknownInst(), canInstructionRangeModRef(), canMoveAboveCall(), llvm::canSinkOrHoistInst(), llvm::FindAvailableLoadedValue(), llvm::findAvailablePtrLoadStore(), findSafeStoreForStoreStrongContraction(), getModRefInfo(), llvm::BatchAAResults::getModRefInfo(), llvm::AAResultBase< DerivedT >::AAResultsProxy::getModRefInfo(), isSafeToMove(), mayLoopAccessLocation(), and pointerInvalidatedByLoop().
|
inline |
getModRefInfo (for call sites) - A convenience wrapper.
Definition at line 675 of file AliasAnalysis.h.
References getModRefInfo(), P, and llvm::Check::Size.
ModRefInfo AAResults::getModRefInfo | ( | const CallBase * | Call1, |
const CallBase * | Call2 | ||
) |
Return information about whether two call sites may refer to the same set of memory locations.
See the AA documentation for details: http://llvm.org/docs/AliasAnalysis.html#ModRefInfo
Definition at line 284 of file AliasAnalysis.cpp.
References getModRefInfo().
ModRefInfo AAResults::getModRefInfo | ( | const CatchPadInst * | I, |
const MemoryLocation & | Loc | ||
) |
getModRefInfo (for catchpads) - Return information about whether a particular catchpad modifies or reads the specified memory location.
Definition at line 577 of file AliasAnalysis.cpp.
References getModRefInfo().
|
inline |
getModRefInfo (for catchpads) - A convenience wrapper.
Definition at line 746 of file AliasAnalysis.h.
References getModRefInfo(), I, P, and llvm::Check::Size.
ModRefInfo AAResults::getModRefInfo | ( | const CatchReturnInst * | I, |
const MemoryLocation & | Loc | ||
) |
getModRefInfo (for catchrets) - Return information about whether a particular catchret modifies or reads the specified memory location.
Definition at line 597 of file AliasAnalysis.cpp.
References getModRefInfo().
|
inline |
getModRefInfo (for catchrets) - A convenience wrapper.
Definition at line 756 of file AliasAnalysis.h.
References getModRefInfo(), I, P, and llvm::Check::Size.
ModRefInfo AAResults::getModRefInfo | ( | const FenceInst * | S, |
const MemoryLocation & | Loc | ||
) |
getModRefInfo (for fences) - Return information about whether a particular store modifies or reads the specified memory location.
Definition at line 532 of file AliasAnalysis.cpp.
References getModRefInfo(), and S.
|
inline |
getModRefInfo (for fences) - A convenience wrapper.
Definition at line 705 of file AliasAnalysis.h.
References getModRefInfo(), P, S, and llvm::Check::Size.
|
inline |
Check whether or not an instruction may read or write the optionally specified memory location.
An instruction that doesn't read or write memory may be trivially LICM'd for example.
For function calls, this delegates to the alias-analysis specific call-site mod-ref behavior queries. Otherwise it delegates to the specific helpers above.
Definition at line 771 of file AliasAnalysis.h.
References getModRefInfo(), and I.
|
inline |
A convenience wrapper for constructing the memory location.
Definition at line 778 of file AliasAnalysis.h.
References getModRefInfo(), I, P, and llvm::Check::Size.
ModRefInfo AAResults::getModRefInfo | ( | const LoadInst * | L, |
const MemoryLocation & | Loc | ||
) |
getModRefInfo (for loads) - Return information about whether a particular load modifies or reads the specified memory location.
Definition at line 474 of file AliasAnalysis.cpp.
References getModRefInfo().
|
inline |
getModRefInfo (for loads) - A convenience wrapper.
Definition at line 685 of file AliasAnalysis.h.
References getModRefInfo(), P, and llvm::Check::Size.
ModRefInfo AAResults::getModRefInfo | ( | const StoreInst * | S, |
const MemoryLocation & | Loc | ||
) |
getModRefInfo (for stores) - Return information about whether a particular store modifies or reads the specified memory location.
Definition at line 499 of file AliasAnalysis.cpp.
References getModRefInfo(), and S.
|
inline |
getModRefInfo (for stores) - A convenience wrapper.
Definition at line 695 of file AliasAnalysis.h.
References getModRefInfo(), P, S, and llvm::Check::Size.
ModRefInfo AAResults::getModRefInfo | ( | const VAArgInst * | I, |
const MemoryLocation & | Loc | ||
) |
getModRefInfo (for va_args) - Return information about whether a particular va_arg modifies or reads the specified memory location.
Definition at line 547 of file AliasAnalysis.cpp.
References getModRefInfo().
|
inline |
getModRefInfo (for va_args) - A convenience wrapper.
Definition at line 736 of file AliasAnalysis.h.
References getModRefInfo(), I, P, and llvm::Check::Size.
ModRefInfo AAResults::getModRefInfo | ( | Instruction * | I, |
const CallBase * | Call | ||
) |
Return information about whether a call and an instruction may refer to the same memory locations.
Definition at line 190 of file AliasAnalysis.cpp.
References getModRefInfo(), and I.
bool AAResults::invalidate | ( | Function & | F, |
const PreservedAnalyses & | PA, | ||
FunctionAnalysisManager::Invalidator & | Inv | ||
) |
Handle invalidation events in the new pass manager.
The aggregation is invalidated if any of the underlying analyses is invalidated.
Definition at line 94 of file AliasAnalysis.cpp.
References F, llvm::PreservedAnalyses::getChecker(), and llvm::AnalysisManager< IRUnitT, ExtraArgTs >::Invalidator::invalidate().
|
inline |
A trivial helper function to check to see if the specified pointers are must-alias.
Definition at line 528 of file AliasAnalysis.h.
References alias(), and llvm::AliasResult::MustAlias.
Referenced by hasUndefContentsMSSA(), and llvm::AliasSet::mergeSetIn().
A convenience wrapper around the isMustAlias
helper interface.
Definition at line 533 of file AliasAnalysis.h.
References alias(), llvm::AliasResult::MustAlias, llvm::LocationSize::precise(), and llvm::NVPTX::PTXLdStInstCode::V2.
|
inline |
A trivial helper function to check to see if the specified pointers are no-alias.
Definition at line 510 of file AliasAnalysis.h.
References alias(), and llvm::AliasResult::NoAlias.
Referenced by isNoAlias(), MemOperandsHaveAlias(), operandReferences(), and underlyingObjectsAlias().
A convenience wrapper around the isNoAlias
helper interface.
Definition at line 521 of file AliasAnalysis.h.
References llvm::MemoryLocation::getBeforeOrAfter(), isNoAlias(), and llvm::NVPTX::PTXLdStInstCode::V2.
|
inline |
A convenience wrapper around the isNoAlias
helper interface.
Definition at line 515 of file AliasAnalysis.h.
References isNoAlias(), and llvm::NVPTX::PTXLdStInstCode::V2.
|
inlinestatic |
Checks if functions with the specified behavior are known to read and write at most from objects pointed to by their pointer-typed arguments (with arbitrary offsets).
Definition at line 637 of file AliasAnalysis.h.
References llvm::FMRL_Anywhere, and llvm::FMRL_ArgumentPointees.
Referenced by AddAliasScopeMetadata(), llvm::objcarc::CanAlterRefCount(), and checkFunctionMemoryAccess().
|
inlinestatic |
Checks if functions with the specified behavior are known to read and write at most from memory that is inaccessible from LLVM IR.
Definition at line 651 of file AliasAnalysis.h.
References llvm::FMRL_Anywhere, and llvm::FMRL_InaccessibleMem.
Referenced by AddAliasScopeMetadata().
|
inlinestatic |
Checks if functions with the specified behavior are known to read and write at most from memory that is inaccessible from LLVM IR or objects pointed to by their pointer-typed arguments (with arbitrary offsets).
Definition at line 665 of file AliasAnalysis.h.
References llvm::FMRL_Anywhere, llvm::FMRL_ArgumentPointees, and llvm::FMRL_InaccessibleMem.
Checks if the specified call is known to only read from non-volatile memory (or not access memory at all).
Calls that unwind the stack are legal for this predicate.
This property allows many common optimizations to be performed in the absence of interfering store instructions, such as CSE of strlen calls.
This property corresponds to the GCC 'pure' attribute.
Definition at line 605 of file AliasAnalysis.h.
References getModRefBehavior().
Referenced by llvm::objcarc::CanAlterRefCount(), checkFunctionMemoryAccess(), llvm::MemoryDependenceResults::getDependency(), and onlyReadsMemory().
Checks if the specified function is known to only read from non-volatile memory (or not access memory at all).
Functions that unwind the stack are legal for this predicate.
This property allows many common optimizations to be performed in the absence of interfering store instructions, such as CSE of strlen calls.
This property corresponds to the GCC 'pure' attribute.
Definition at line 618 of file AliasAnalysis.h.
References F, getModRefBehavior(), and onlyReadsMemory().
|
inlinestatic |
Checks if functions with the specified behavior are known to only read from non-volatile memory (or not access memory at all).
Definition at line 624 of file AliasAnalysis.h.
References llvm::createModRefInfo(), and llvm::isModSet().
bool AAResults::pointsToConstantMemory | ( | const MemoryLocation & | Loc, |
bool | OrLocal = false |
||
) |
Checks whether the given location points to constant memory, or if OrLocal
is true whether it points to a local alloca.
Definition at line 161 of file AliasAnalysis.cpp.
Referenced by llvm::canSinkOrHoistInst(), checkFunctionMemoryAccess(), llvm::MachineInstr::isDereferenceableInvariantLoad(), isOnlyCopiedFromConstantMemory(), llvm::objcarc::IsPotentialRetainableObjPtr(), pointsToConstantMemory(), llvm::BatchAAResults::pointsToConstantMemory(), and llvm::AAResultBase< DerivedT >::AAResultsProxy::pointsToConstantMemory().
A convenience wrapper around the primary pointsToConstantMemory
interface.
Definition at line 544 of file AliasAnalysis.h.
References llvm::MemoryLocation::getBeforeOrAfter(), P, and pointsToConstantMemory().
|
friend |
Definition at line 870 of file AliasAnalysis.h.
|
friend |
Definition at line 880 of file AliasAnalysis.h.