Home
last modified time | relevance | path

Searched refs:Gate (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/lib/IR/
H A DPass.cpp64 OptPassGate &Gate = M.getContext().getOptPassGate(); in skipModule() local
65 return Gate.isEnabled() && !Gate.shouldRunPass(this, getDescription(M)); in skipModule()
174 OptPassGate &Gate = F.getContext().getOptPassGate(); in skipFunction() local
175 if (Gate.isEnabled() && !Gate.shouldRunPass(this, getDescription(F))) in skipFunction()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DRegionPass.cpp285 OptPassGate &Gate = F.getContext().getOptPassGate(); in skipRegion() local
286 if (Gate.isEnabled() && !Gate.shouldRunPass(this, getDescription(R))) in skipRegion()
H A DLoopPass.cpp375 OptPassGate &Gate = F->getContext().getOptPassGate(); in skipLoop() local
376 if (Gate.isEnabled() && !Gate.shouldRunPass(this, getDescription(*L))) in skipLoop()
H A DCallGraphSCCPass.cpp752 OptPassGate &Gate = in skipSCC() local
754 return Gate.isEnabled() && !Gate.shouldRunPass(this, getDescription(SCC)); in skipSCC()