Home
last modified time | relevance | path

Searched refs:DependenceAnalysisWrapperPass (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h1020 class LLVM_ABI DependenceAnalysisWrapperPass : public FunctionPass {
1023 DependenceAnalysisWrapperPass();
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp137 INITIALIZE_PASS_BEGIN(DependenceAnalysisWrapperPass, "da",
142 INITIALIZE_PASS_END(DependenceAnalysisWrapperPass, "da", "Dependence Analysis",
145 char DependenceAnalysisWrapperPass::ID = 0;
147 DependenceAnalysisWrapperPass::DependenceAnalysisWrapperPass() in DependenceAnalysisWrapperPass() function in DependenceAnalysisWrapperPass
151 return new DependenceAnalysisWrapperPass(); in createDependenceAnalysisWrapperPass()
154 bool DependenceAnalysisWrapperPass::runOnFunction(Function &F) { in runOnFunction()
162 DependenceInfo &DependenceAnalysisWrapperPass::getDI() const { return *info; } in getDI()
164 void DependenceAnalysisWrapperPass::releaseMemory() { info.reset(); } in releaseMemory()
166 void DependenceAnalysisWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const { in getAnalysisUsage()
228 void DependenceAnalysisWrapperPass::print(raw_ostream &OS, in print()