Home
last modified time | relevance | path

Searched refs:AssumptionCacheTracker (Results 1 – 25 of 50) sorted by relevance

12

/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DAssumptionCache.cpp220 void AssumptionCacheTracker::FunctionCallbackVH::deleted() { in deleted()
227 AssumptionCache &AssumptionCacheTracker::getAssumptionCache(Function &F) { in getAssumptionCache()
244 void AssumptionCacheTracker::verifyAnalysis() const { in verifyAnalysis()
266 AssumptionCacheTracker::AssumptionCacheTracker() : ImmutablePass(ID) { in AssumptionCacheTracker() function in AssumptionCacheTracker
270 AssumptionCacheTracker::~AssumptionCacheTracker() = default;
272 char AssumptionCacheTracker::ID = 0;
274 INITIALIZE_PASS(AssumptionCacheTracker, "assumption-cache-tracker",
H A DIVUsers.cpp48 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) in INITIALIZE_PASS_DEPENDENCY() argument
359 AU.addRequired<AssumptionCacheTracker>(); in getAnalysisUsage()
367 auto *AC = &getAnalysis<AssumptionCacheTracker>().getAssumptionCache( in runOnLoop()
H A DDemandedBits.cpp61 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) in INITIALIZE_PASS_DEPENDENCY() argument
72 AU.addRequired<AssumptionCacheTracker>(); in getAnalysisUsage()
297 auto &AC = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F); in runOnFunction()
H A DLint.cpp149 AU.addRequired<AssumptionCacheTracker>(); in getAnalysisUsage()
189 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) in INITIALIZE_PASS_DEPENDENCY() argument
207 AC = &getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F);
/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DAssumptionCache.h182 class AssumptionCacheTracker : public ImmutablePass {
186 AssumptionCacheTracker *ACT;
193 FunctionCallbackVH(Value *V, AssumptionCacheTracker *ACT = nullptr)
212 AssumptionCacheTracker();
213 ~AssumptionCacheTracker() override;
H A DInlineCost.h24 class AssumptionCacheTracker; variable
/freebsd-12.1/contrib/llvm/lib/Transforms/Utils/
H A DMem2Reg.cpp90 getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F); in runOnFunction()
95 AU.addRequired<AssumptionCacheTracker>(); in getAnalysisUsage()
108 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) in INITIALIZE_PASS_DEPENDENCY() argument
H A DLoopSimplify.cpp723 AU.addRequired<AssumptionCacheTracker>(); in getAnalysisUsage()
750 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
770 &getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F); in runOnFunction()
H A DPredicateInfo.cpp47 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
753 AU.addRequired<AssumptionCacheTracker>(); in getAnalysisUsage()
772 auto &AC = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F); in runOnFunction()
/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DLoopRotation.cpp78 AU.addRequired<AssumptionCacheTracker>(); in getAnalysisUsage()
94 auto *AC = &getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F); in runOnLoop()
115 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) in INITIALIZE_PASS_DEPENDENCY() argument
H A DInstSimplifyPass.cpp89 AU.addRequired<AssumptionCacheTracker>(); in getAnalysisUsage()
104 &getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F); in runOnFunction()
117 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) in INITIALIZE_PASS_DEPENDENCY() argument
H A DLoopInstSimplify.cpp193 getAnalysis<AssumptionCacheTracker>().getAssumptionCache( in runOnLoop()
209 AU.addRequired<AssumptionCacheTracker>(); in getAnalysisUsage()
244 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) in INITIALIZE_PASS_DEPENDENCY() argument
H A DSimplifyCFGPass.cpp268 Options.AC = &getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F); in runOnFunction()
273 AU.addRequired<AssumptionCacheTracker>(); in getAnalysisUsage()
284 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) in INITIALIZE_PASS_DEPENDENCY()
H A DLoopDataPrefetch.cpp112 AU.addRequired<AssumptionCacheTracker>(); in getAnalysisUsage()
129 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) in INITIALIZE_PASS_DEPENDENCY() argument
186 &getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F); in runOnFunction()
H A DAlignmentFromAssumptions.cpp57 AU.addRequired<AssumptionCacheTracker>(); in getAnalysisUsage()
77 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) in INITIALIZE_PASS_BEGIN()
380 auto &AC = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F); in runOnFunction()
H A DNaryReassociate.cpp137 AU.addRequired<AssumptionCacheTracker>(); in getAnalysisUsage()
155 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) in INITIALIZE_PASS_DEPENDENCY() argument
171 auto *AC = &getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F); in runOnFunction()
H A DLoopUnrollAndJamPass.cpp451 auto &AC = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F); in runOnLoop()
470 AU.addRequired<AssumptionCacheTracker>(); in getAnalysisUsage()
483 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) in INITIALIZE_PASS_DEPENDENCY() argument
H A DEarlyCSE.cpp1276 auto &AC = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F); in runOnFunction()
1286 AU.addRequired<AssumptionCacheTracker>(); in getAnalysisUsage()
1309 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
1330 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
/freebsd-12.1/contrib/llvm/include/llvm/Transforms/IPO/
H A DInliner.h24 class AssumptionCacheTracker; variable
76 AssumptionCacheTracker *ACT;
/freebsd-12.1/contrib/llvm/lib/Transforms/IPO/
H A DSCCP.cpp59 this->getAnalysis<AssumptionCacheTracker>().getAssumptionCache( in runOnModule()
69 AU.addRequired<AssumptionCacheTracker>(); in getAnalysisUsage()
H A DInlineSimple.cpp90 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) in INITIALIZE_PASS_DEPENDENCY() argument
H A DAlwaysInliner.cpp122 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) in INITIALIZE_PASS_DEPENDENCY() argument
H A DThinLTOBitcodeWriter.cpp490 AU.addRequired<AssumptionCacheTracker>(); in getAnalysisUsage()
500 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) in INITIALIZE_PASS_DEPENDENCY() argument
H A DSampleProfile.cpp353 AU.addRequired<AssumptionCacheTracker>(); in getAnalysisUsage()
360 AssumptionCacheTracker *ACT = nullptr;
1521 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) in INITIALIZE_PASS_DEPENDENCY() argument
1608 ACT = &getAnalysis<AssumptionCacheTracker>(); in runOnModule()
/freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/
H A DAMDGPUInline.cpp84 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) in INITIALIZE_PASS_DEPENDENCY() argument

12