/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | OptBisect.h | 36 virtual bool shouldRunPass(const Pass *P, const Module &U) { return true; } in shouldRunPass() function 37 virtual bool shouldRunPass(const Pass *P, const Function &U) {return true; } in shouldRunPass() function 38 virtual bool shouldRunPass(const Pass *P, const BasicBlock &U) { return true; } in shouldRunPass() function 39 virtual bool shouldRunPass(const Pass *P, const Region &U) { return true; } in shouldRunPass() function 40 virtual bool shouldRunPass(const Pass *P, const Loop &U) { return true; } in shouldRunPass() function 41 virtual bool shouldRunPass(const Pass *P, const CallGraphSCC &U) { return true; } in shouldRunPass() function 73 bool shouldRunPass(const Pass *P, const Module &U) override; 74 bool shouldRunPass(const Pass *P, const Function &U) override; 75 bool shouldRunPass(const Pass *P, const BasicBlock &U) override; 76 bool shouldRunPass(const Pass *P, const Region &U) override; [all …]
|
/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/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | OptBisect.cpp | 95 bool OptBisect::shouldRunPass(const Pass *P, const Module &U) { in shouldRunPass() function in OptBisect 99 bool OptBisect::shouldRunPass(const Pass *P, const Function &U) { in shouldRunPass() function in OptBisect 103 bool OptBisect::shouldRunPass(const Pass *P, const BasicBlock &U) { in shouldRunPass() function in OptBisect 107 bool OptBisect::shouldRunPass(const Pass *P, const Region &U) { in shouldRunPass() function in OptBisect 111 bool OptBisect::shouldRunPass(const Pass *P, const Loop &U) { in shouldRunPass() function in OptBisect 115 bool OptBisect::shouldRunPass(const Pass *P, const CallGraphSCC &U) { in shouldRunPass() function in OptBisect
|
D | Pass.cpp | 60 return !M.getContext().getOptPassGate().shouldRunPass(this, M); in skipModule() 159 if (!F.getContext().getOptPassGate().shouldRunPass(this, F)) in skipFunction() 193 if (!F->getContext().getOptPassGate().shouldRunPass(this, BB)) in skipBasicBlock()
|
/external/llvm/include/llvm/IR/ |
D | OptBisect.h | 52 bool shouldRunPass(const Pass *P, const UnitT &U);
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | RegionPass.cpp | 283 if (!F.getContext().getOptPassGate().shouldRunPass(this, R)) in skipRegion()
|
D | LoopPass.cpp | 375 if (!Context.getOptPassGate().shouldRunPass(this, *L)) in skipLoop()
|
D | CallGraphSCCPass.cpp | 660 .shouldRunPass(this, SCC); in skipSCC()
|
/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()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/ |
D | LegacyPassManagerTest.cpp | 404 bool shouldRunPass(const Pass *P, const Module &U) { return !Skip; } in shouldRunPass() function
|