LLVM API Documentation
#include <AliasAnalysis.h>
Inheritance diagram for llvm::AliasAnalysis:


|
|
Alias analysis result - Either we know for sure that it does not alias, we know for sure it must alias, or we don't know anything: The two pointers _might_ alias. This enum is designed so you can do things like: if (AA.alias(P1, P2)) { ... } to check to see if two pointers might alias. Definition at line 84 of file AliasAnalysis.h. |
|
|
ModRefBehavior - Summary of how a function affects memory in the program. Loads from constant globals are not considered memory accesses for this interface. Also, functions may freely modify stack space local to their invocation without having to report it through these interfaces.
Definition at line 122 of file AliasAnalysis.h. Referenced by getModRefBehavior(), and getModRefInfo(). |
|
|
ModRefResult - Represent the result of a mod/ref query. Mod and Ref are bits which may be or'd together. Definition at line 115 of file AliasAnalysis.h. Referenced by llvm::LibCallAliasAnalysis::getModRefInfo(), GlobalsModRef::getModRefInfo(), and getModRefInfo(). |
|
|
Definition at line 65 of file AliasAnalysis.h. |
|
|
Definition at line 164 of file AliasAnalysis.cpp. |
|
||||||||||||||||||||
|
alias - The main low level interface to the alias analysis implementation. Returns a Result indicating whether the two pointers are aliased to each other. This is the interface that must be implemented by specific alias analysis implementations. Reimplemented in AliasAnalysisCounter, AliasDebugger, NoAA, BasicAliasAnalysis, Andersens, and GlobalsModRef. Definition at line 45 of file AliasAnalysis.cpp. References AA. Referenced by llvm::MemoryDependenceAnalysis::getDependency(), getModRefInfo(), DSE::handleFreeWithNonTrivialDependency(), llvm::AliasSet::mergeSetIn(), DSE::RemoveUndeadPointers(), AAEval::runOnFunction(), and llvm::SelectionDAGLowering::visitIntrinsicCall(). |
|
||||||||||||||||
|
canBasicBlockModify - Return true if it is possible for execution of the specified basic block to modify the value pointed to by Ptr. Definition at line 185 of file AliasAnalysis.cpp. References llvm::BasicBlock::back(), canInstructionRangeModify(), and llvm::BasicBlock::front(). |
|
||||||||||||||||||||
|
canInstructionRangeModify - Return true if it is possible for the execution of the specified instructions to modify the value pointed to by Ptr. 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 195 of file AliasAnalysis.cpp. References getModRefInfo(), and llvm::Instruction::getParent(). Referenced by canBasicBlockModify(). |
|
||||||||||||
|
copyValue - This method should be used whenever a preexisting value in the program is copied or cloned, introducing a new value. Note that analysis implementations should tolerate clients that use this method to introduce the same value multiple times: if the analysis already knows about a value, it should ignore the request. Reimplemented in AliasDebugger, NoAA, Andersens, and GlobalsModRef. Definition at line 78 of file AliasAnalysis.cpp. References AA. Referenced by llvm::AliasSetTracker::copyValue(), and llvm::SplitBlockPredecessors(). |
|
|
deleteValue - This method should be called whenever an LLVM Value is deleted from the program, for example when an instruction is found to be redundant and is eliminated. Reimplemented in AliasDebugger, NoAA, Andersens, and GlobalsModRef. Definition at line 73 of file AliasAnalysis.cpp. References AA. Referenced by llvm::AliasSetTracker::deleteValue(), FindPHIToPartitionLoops(), LoopSimplify::runOnFunction(), and llvm::SplitBlockPredecessors(). |
|
|
doesNotAccessMemory - If the specified function is known to never read or write memory, return true. For use when the call site is not known. Reimplemented in AliasAnalysisCounter. Definition at line 216 of file AliasAnalysis.h. |
|
|
doesNotAccessMemory - If the specified call is known to never read or write memory, return true. If the call only reads from known-constant memory, it is also legal to return true. 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. Reimplemented in AliasAnalysisCounter. Definition at line 209 of file AliasAnalysis.h. Referenced by llvm::AliasSetTracker::add(), llvm::AliasSetTracker::deleteValue(), DSE::handleEndBlock(), ValueTable::lookup_or_add(), and llvm::AliasSetTracker::remove(). |
|
|
getAnalysisUsage - All alias analysis implementations should invoke this directly (using AliasAnalysis::getAnalysisUsage(AU)) to make sure that TargetData is required by the pass. Reimplemented in llvm::LibCallAliasAnalysis, AliasAnalysisCounter, AliasDebugger, NoAA, Andersens, and GlobalsModRef. Definition at line 177 of file AliasAnalysis.cpp. References llvm::AnalysisUsage::addRequired(). Referenced by llvm::LibCallAliasAnalysis::getAnalysisUsage(). |
|
||||||||||||||||
|
getModRefBehavior - Return the behavior of the specified function if called from the specified call site. The call site may be null in which case the most generic behavior of this function should be returned. Reimplemented in AliasDebugger, NoAA, and GlobalsModRef. Definition at line 62 of file AliasAnalysis.cpp. References AA, and getModRefBehavior(). |
|
||||||||||||
|
getModRefBehavior - Return the behavior when calling the given function. For use when the call site is not known. Definition at line 129 of file AliasAnalysis.cpp. References DoesNotAccessMemory, llvm::Function::doesNotAccessMemory(), getModRefBehavior(), ModRefBehavior, and llvm::Function::onlyReadsMemory(). |
|
||||||||||||
|
getModRefBehavior - Return the behavior when calling the given call site.
Definition at line 115 of file AliasAnalysis.cpp. References DoesNotAccessMemory, llvm::CallSite::doesNotAccessMemory(), llvm::CallSite::getCalledFunction(), ModRefBehavior, and llvm::CallSite::onlyReadsMemory(). Referenced by getModRefBehavior(), and getModRefInfo(). |
|
||||||||||||||||
|
Definition at line 290 of file AliasAnalysis.h. References llvm::Instruction::getOpcode(). |
|
||||||||||||||||
|
Definition at line 287 of file AliasAnalysis.h. |
|
||||||||||||||||
|
Definition at line 284 of file AliasAnalysis.h. |
|
||||||||||||||||
|
Definition at line 281 of file AliasAnalysis.h. |
|
||||||||||||||||
|
Definition at line 102 of file AliasAnalysis.cpp. References alias(), llvm::User::getOperand(), llvm::Value::getType(), llvm::TargetData::getTypeStoreSize(), NoModRef, pointsToConstantMemory(), and TD. |
|
||||||||||||||||
|
Convenience functions...
Definition at line 96 of file AliasAnalysis.cpp. References alias(), llvm::User::getOperand(), llvm::Value::getType(), llvm::TargetData::getTypeStoreSize(), Ref, and TD. |
|
||||||||||||
|
getModRefInfo - Return information about whether two call sites may refer to the same set of memory locations. This function returns NoModRef if the two calls refer to disjoint memory locations, Ref if CS1 reads memory written by CS2, Mod if CS1 writes to memory read or written by CS2, or ModRef if CS1 might read or write memory accessed by CS2. Reimplemented in llvm::LibCallAliasAnalysis, AliasAnalysisCounter, AliasDebugger, NoAA, BasicAliasAnalysis, Andersens, and GlobalsModRef. Definition at line 84 of file AliasAnalysis.cpp. References AA, and getModRefInfo(). |
|
||||||||||||||||
|
getModRefInfo (for call sites) - Return whether information about whether a particular call site modifies or reads the memory specified by the pointer. Reimplemented in llvm::LibCallAliasAnalysis, AliasAnalysisCounter, AliasDebugger, NoAA, BasicAliasAnalysis, Andersens, and GlobalsModRef. Definition at line 141 of file AliasAnalysis.cpp. References AA, getModRefBehavior(), Mod, ModRefBehavior, ModRefResult, and pointsToConstantMemory(). Referenced by canInstructionRangeModify(), llvm::MemoryDependenceAnalysis::getDependency(), llvm::LibCallAliasAnalysis::getModRefInfo(), getModRefInfo(), DSE::handleEndBlock(), and AAEval::runOnFunction(). |
|
||||||||||||
|
getMustAliases - If there are any pointers known that must alias this pointer, return them now. This allows alias-set based alias analyses to perform a form a value numbering (which is exposed by load-vn). If an alias analysis supports this, it should ADD any must aliased pointers to the specified vector. Reimplemented in AliasDebugger, NoAA, and Andersens. Definition at line 51 of file AliasAnalysis.cpp. References AA. |
|
|
getTargetData - Every alias analysis implementation depends on the size of data items in the current Target. This provides a uniform way to handle it. Definition at line 72 of file AliasAnalysis.h. Referenced by llvm::AliasSetTracker::add(), BasicAliasAnalysis::alias(), llvm::AliasSetTracker::remove(), and AAEval::runOnFunction(). |
|
|
hasNoModRefInfoForCalls - Return true if the analysis has no mod/ref information for pairs of function calls (other than "pure" and "const" functions). This can be used by clients to avoid many pointless queries. Remember that if you override this and chain to another analysis, you must make sure that it doesn't have mod/ref info either. Reimplemented in llvm::LibCallAliasAnalysis, NoAA, BasicAliasAnalysis, and GlobalsModRef. Definition at line 68 of file AliasAnalysis.cpp. References AA. |
|
|
InitializeAliasAnalysis - Subclasses must call this method to initialize the AliasAnalysis interface before any other methods are called. This is typically called by the run* methods of these subclasses. This may be called multiple times. Definition at line 169 of file AliasAnalysis.cpp. References AA, llvm::Pass::getAnalysis(), and TD. |
|
|
onlyReadsMemory - If the specified function is known to only read from non-volatile memory (or not access memory at all), return true. For use when the call site is not known. Reimplemented in AliasAnalysisCounter. Definition at line 238 of file AliasAnalysis.h. |
|
|
onlyReadsMemory - If the specified call is known to only read from non-volatile memory (or not access memory at all), return true. 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. Reimplemented in AliasAnalysisCounter. Definition at line 229 of file AliasAnalysis.h. Referenced by ValueTable::lookup_or_add(). |
|
|
pointsToConstantMemory - If the specified pointer is known to point into constant global memory, return true. This allows disambiguation of store instructions from constant pointers. Reimplemented in AliasAnalysisCounter, AliasDebugger, NoAA, BasicAliasAnalysis, and Andersens. Definition at line 56 of file AliasAnalysis.cpp. References AA. Referenced by getModRefInfo(), and llvm::SelectionDAGLowering::visitLoad(). |
|
||||||||||||
|
replaceWithNewValue - This method is the obvious combination of the two above, and it provided as a helper to simplify client code. Definition at line 342 of file AliasAnalysis.h. |
|
|
Definition at line 49 of file AliasAnalysis.h. Referenced by alias(), copyValue(), deleteValue(), getModRefBehavior(), getModRefInfo(), getMustAliases(), hasNoModRefInfoForCalls(), InitializeAliasAnalysis(), and pointsToConstantMemory(). |
|
|
Reimplemented in llvm::LibCallAliasAnalysis, AliasAnalysisCounter, AliasDebugger, NoAA, BasicAliasAnalysis, Andersens, and GlobalsModRef. Definition at line 38 of file AliasAnalysis.cpp. |
|
|
Definition at line 48 of file AliasAnalysis.h. Referenced by getModRefInfo(), and InitializeAliasAnalysis(). |