Searched refs:shouldRunPass (Results 1 – 5 of 5) sorted by relevance
/external/llvm/lib/IR/ |
D | OptBisect.cpp | 89 template bool OptBisect::shouldRunPass(const Pass *, const Module &); 90 template bool OptBisect::shouldRunPass(const Pass *, const Function &); 91 template bool OptBisect::shouldRunPass(const Pass *, const BasicBlock &); 92 template bool OptBisect::shouldRunPass(const Pass *, const Loop &); 93 template bool OptBisect::shouldRunPass(const Pass *, const CallGraphSCC &); 96 bool OptBisect::shouldRunPass(const Pass *P, const UnitT &U) { in shouldRunPass() function in OptBisect
|
D | Pass.cpp | 51 return !M.getContext().getOptBisect().shouldRunPass(this, M); in skipModule() 150 if (!F.getContext().getOptBisect().shouldRunPass(this, F)) in skipFunction() 184 if (!F->getContext().getOptBisect().shouldRunPass(this, BB)) in skipBasicBlock()
|
/external/llvm/include/llvm/IR/ |
D | OptBisect.h | 52 bool shouldRunPass(const Pass *P, const UnitT &U);
|
/external/llvm/lib/Analysis/ |
D | LoopPass.cpp | 346 if (!Context.getOptBisect().shouldRunPass(this, *L)) in skipLoop()
|
D | CallGraphSCCPass.cpp | 639 .shouldRunPass(this, SCC); in skipSCC()
|