Home
last modified time | relevance | path

Searched refs:OptPassGate (Results 1 – 21 of 21) sorted by relevance

/external/llvm-project/llvm/include/llvm/IR/
DOptBisect.h25 class OptPassGate {
27 virtual ~OptPassGate() = default;
43 class OptBisect : public OptPassGate {
DLLVMContext.h32 class OptPassGate; variable
318 OptPassGate &getOptPassGate() const;
325 void setOptPassGate(OptPassGate&);
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DOptBisect.h25 class OptPassGate {
27 virtual ~OptPassGate() = default;
43 class OptBisect : public OptPassGate {
DLLVMContext.h32 class OptPassGate; variable
292 OptPassGate &getOptPassGate() const;
299 void setOptPassGate(OptPassGate&);
/external/llvm-project/llvm/lib/IR/
DPass.cpp60 OptPassGate &Gate = M.getContext().getOptPassGate(); in skipModule()
164 OptPassGate &Gate = F.getContext().getOptPassGate(); in skipFunction()
DOptBisect.cpp31 OptBisect::OptBisect() : OptPassGate() { in OptBisect()
DLLVMContextImpl.cpp235 OptPassGate &LLVMContextImpl::getOptPassGate() const { in getOptPassGate()
241 void LLVMContextImpl::setOptPassGate(OptPassGate& OPG) { in setOptPassGate()
DLLVMContext.cpp349 OptPassGate &LLVMContext::getOptPassGate() const { in getOptPassGate()
353 void LLVMContext::setOptPassGate(OptPassGate& OPG) { in setOptPassGate()
DLLVMContextImpl.h1503 mutable OptPassGate *OPG = nullptr;
1507 OptPassGate &getOptPassGate() const;
1514 void setOptPassGate(OptPassGate&);
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DPass.cpp63 OptPassGate &Gate = M.getContext().getOptPassGate(); in skipModule()
167 OptPassGate &Gate = F.getContext().getOptPassGate(); in skipFunction()
DOptBisect.cpp31 OptBisect::OptBisect() : OptPassGate() { in OptBisect()
DLLVMContextImpl.cpp243 OptPassGate &LLVMContextImpl::getOptPassGate() const { in getOptPassGate()
249 void LLVMContextImpl::setOptPassGate(OptPassGate& OPG) { in setOptPassGate()
DLLVMContext.cpp317 OptPassGate &LLVMContext::getOptPassGate() const { in getOptPassGate()
321 void LLVMContext::setOptPassGate(OptPassGate& OPG) { in setOptPassGate()
DLLVMContextImpl.h1411 mutable OptPassGate *OPG = nullptr;
1415 OptPassGate &getOptPassGate() const;
1422 void setOptPassGate(OptPassGate&);
/external/llvm-project/llvm/lib/Analysis/
DRegionPass.cpp281 OptPassGate &Gate = F.getContext().getOptPassGate(); in skipRegion()
DLoopPass.cpp378 OptPassGate &Gate = F->getContext().getOptPassGate(); in skipLoop()
DCallGraphSCCPass.cpp754 OptPassGate &Gate = in skipSCC()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DRegionPass.cpp287 OptPassGate &Gate = F.getContext().getOptPassGate(); in skipRegion()
DLoopPass.cpp399 OptPassGate &Gate = F->getContext().getOptPassGate(); in skipLoop()
DCallGraphSCCPass.cpp703 OptPassGate &Gate = in skipSCC()
/external/llvm-project/llvm/unittests/IR/
DLegacyPassManagerTest.cpp358 struct CustomOptPassGate : public OptPassGate {
364 return OptPassGate::shouldRunPass(P, IRDescription); in shouldRunPass()