Home
last modified time | relevance | path

Searched refs:shouldRunPass (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DOptBisect.h32 virtual bool shouldRunPass(const Pass *P, StringRef IRDescription) { in shouldRunPass() function
58 bool shouldRunPass(const Pass *P, StringRef IRDescription) override;
/llvm-project-15.0.7/llvm/lib/IR/
H A DPass.cpp65 return Gate.isEnabled() && !Gate.shouldRunPass(this, getDescription(M)); in skipModule()
175 if (Gate.isEnabled() && !Gate.shouldRunPass(this, getDescription(F))) in skipFunction()
H A DOptBisect.cpp37 bool OptBisect::shouldRunPass(const Pass *P, StringRef IRDescription) { in shouldRunPass() function in OptBisect
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DRegionPass.cpp286 if (Gate.isEnabled() && !Gate.shouldRunPass(this, getDescription(R))) in skipRegion()
H A DLoopPass.cpp376 if (Gate.isEnabled() && !Gate.shouldRunPass(this, getDescription(*L))) in skipLoop()
H A DCallGraphSCCPass.cpp754 return Gate.isEnabled() && !Gate.shouldRunPass(this, getDescription(SCC)); in skipSCC()
/llvm-project-15.0.7/llvm/unittests/IR/
H A DLegacyPassManagerTest.cpp362 bool shouldRunPass(const Pass *P, StringRef IRDescription) override { in shouldRunPass() function
365 return OptPassGate::shouldRunPass(P, IRDescription); in shouldRunPass()