LLVM
8.0.1
|
A cache of @llvm.assume calls within a function. More...
#include "llvm/Analysis/AssumptionCache.h"
Public Member Functions | |
AssumptionCache (Function &F) | |
Construct an AssumptionCache from a function by scanning all of its instructions. More... | |
bool | invalidate (Function &, const PreservedAnalyses &, FunctionAnalysisManager::Invalidator &) |
This cache is designed to be self-updating and so it should never be invalidated. More... | |
void | registerAssumption (CallInst *CI) |
Add an @llvm.assume intrinsic to this function's cache. More... | |
void | updateAffectedValues (CallInst *CI) |
Update the cache of values being affected by this assumption (i.e. More... | |
void | clear () |
Clear the cache of @llvm.assume intrinsics for a function. More... | |
MutableArrayRef< WeakTrackingVH > | assumptions () |
Access the list of assumption handles currently tracked for this function. More... | |
MutableArrayRef< WeakTrackingVH > | assumptionsFor (const Value *V) |
Access the list of assumptions which affect this value. More... | |
A cache of @llvm.assume calls within a function.
This cache provides fast lookup of assumptions within a function by caching them and amortizing the cost of scanning for them across all queries. Passes that create new assumptions are required to call registerAssumption() to register any new @llvm.assume calls that they create. Deletions of @llvm.assume calls do not require special handling.
Definition at line 42 of file AssumptionCache.h.
|
inline |
Construct an AssumptionCache from a function by scanning all of its instructions.
Definition at line 92 of file AssumptionCache.h.
Referenced by llvm::AssumptionAnalysis::run().
|
inline |
Access the list of assumption handles currently tracked for this function.
Note that these produce weak handles that may be null. The caller must handle that case. FIXME: We should replace this with pointee_iterator<filter_iterator<...>> when we can write that to filter out the null values. Then caller code will become simpler.
Definition at line 128 of file AssumptionCache.h.
Referenced by llvm::CodeMetrics::collectEphemeralValues(), llvm::AssumptionPrinterPass::run(), and llvm::AlignmentFromAssumptionsPass::runImpl().
|
inline |
Access the list of assumptions which affect this value.
Definition at line 135 of file AssumptionCache.h.
References llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::end(), and llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::find_as().
|
inline |
Clear the cache of @llvm.assume intrinsics for a function.
It will be re-scanned the next time it is requested.
Definition at line 114 of file AssumptionCache.h.
References llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::clear(), and llvm::SmallVectorImpl< T >::clear().
|
inline |
This cache is designed to be self-updating and so it should never be invalidated.
Definition at line 96 of file AssumptionCache.h.
References registerAssumption(), and updateAffectedValues().
void AssumptionCache::registerAssumption | ( | CallInst * | CI | ) |
Add an @llvm.assume intrinsic to this function's cache.
The call passed in must be an instruction within this function and must not already be in the cache.
Definition at line 169 of file AssumptionCache.cpp.
References assert(), F(), llvm::Instruction::getParent(), llvm::BasicBlock::getParent(), getParent(), and llvm::PatternMatch::match().
Referenced by AddAlignmentAssumptions(), addAssumeNonNull(), buildClonedLoopBlocks(), CloneLoop(), combineInstructionsOverFunction(), FoldCondBranchOnPHI(), invalidate(), llvm::InnerLoopVectorizer::scalarizeInstruction(), llvm::UnrollAndJamLoop(), and llvm::UnrollLoop().
void AssumptionCache::updateAffectedValues | ( | CallInst * | CI | ) |
Update the cache of values being affected by this assumption (i.e.
the values about which this assumption provides information).
Definition at line 57 of file AssumptionCache.cpp.
References assert(), B, C, F(), llvm::find(), llvm::CallBase::getArgOperand(), I, llvm::CmpInst::ICMP_EQ, llvm::PatternMatch::m_BitCast(), llvm::PatternMatch::m_BitwiseLogic(), llvm::PatternMatch::m_ConstantInt(), llvm::PatternMatch::m_ICmp(), llvm::PatternMatch::m_Not(), llvm::PatternMatch::m_PtrToInt(), llvm::PatternMatch::m_Shift(), llvm::PatternMatch::m_Value(), llvm::PatternMatch::match(), and llvm::SmallVectorTemplateBase< T >::push_back().
Referenced by invalidate().