reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
42 bool OptBisect::shouldRunPass(const Pass *P, StringRef IRDescription) {
unittests/IR/LegacyPassManagerTest.cpp 403 bool shouldRunPass(const Pass *P, StringRef IRDescription) {
705 return Gate.isEnabled() && !Gate.shouldRunPass(this, getDescription(SCC));
lib/Analysis/LoopPass.cpp 399 if (Gate.isEnabled() && !Gate.shouldRunPass(this, getDescription(*L)))
lib/Analysis/RegionPass.cpp 288 if (Gate.isEnabled() && !Gate.shouldRunPass(this, getDescription(R)))
lib/IR/Pass.cpp64 return Gate.isEnabled() && !Gate.shouldRunPass(this, getDescription(M)); 168 if (Gate.isEnabled() && !Gate.shouldRunPass(this, getDescription(F))) 208 if (Gate.isEnabled() && !Gate.shouldRunPass(this, getDescription(BB)))unittests/IR/LegacyPassManagerTest.cpp
406 return OptPassGate::shouldRunPass(P, IRDescription);