Searched refs:LazyValueInfoWrapperPass (Results 1 - 5 of 5) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DLazyValueInfo.h32 friend class LazyValueInfoWrapperPass;
122 // For old PM pass. Delete once LazyValueInfoWrapperPass is gone.
142 class LazyValueInfoWrapperPass : public FunctionPass { class in namespace:llvm
143 LazyValueInfoWrapperPass(const LazyValueInfoWrapperPass&) = delete;
144 void operator=(const LazyValueInfoWrapperPass&) = delete;
147 LazyValueInfoWrapperPass();
148 ~LazyValueInfoWrapperPass() override {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLazyValueInfo.cpp50 char LazyValueInfoWrapperPass::ID = 0;
51 LazyValueInfoWrapperPass::LazyValueInfoWrapperPass() : FunctionPass(ID) { function in class:LazyValueInfoWrapperPass
54 INITIALIZE_PASS_BEGIN(LazyValueInfoWrapperPass, "lazy-value-info",
58 INITIALIZE_PASS_END(LazyValueInfoWrapperPass, "lazy-value-info",
62 FunctionPass *createLazyValueInfoPass() { return new LazyValueInfoWrapperPass(); }
1627 bool LazyValueInfoWrapperPass::runOnFunction(Function &F) {
1643 void LazyValueInfoWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const {
1649 LazyValueInfo &LazyValueInfoWrapperPass::getLVI() { return Info; }
1673 void LazyValueInfoWrapperPass
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp86 AU.addRequired<LazyValueInfoWrapperPass>();
138 INITIALIZE_PASS_DEPENDENCY(LazyValueInfoWrapperPass)
148 LazyValueInfo *LVI = &getAnalysis<LazyValueInfoWrapperPass>().getLVI();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DCorrelatedValuePropagation.cpp103 AU.addRequired<LazyValueInfoWrapperPass>();
106 AU.addPreserved<LazyValueInfoWrapperPass>();
117 INITIALIZE_PASS_DEPENDENCY(LazyValueInfoWrapperPass)
920 LazyValueInfo *LVI = &getAnalysis<LazyValueInfoWrapperPass>().getLVI();
H A DJumpThreading.cpp145 AU.addRequired<LazyValueInfoWrapperPass>();
146 AU.addPreserved<LazyValueInfoWrapperPass>();
161 INITIALIZE_PASS_DEPENDENCY(LazyValueInfoWrapperPass)
304 auto LVI = &getAnalysis<LazyValueInfoWrapperPass>().getLVI();

Completed in 406 milliseconds