reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Overridden By

lib/IR/OptBisect.cpp
   42 bool OptBisect::shouldRunPass(const Pass *P, StringRef IRDescription) {
unittests/IR/LegacyPassManagerTest.cpp
  403       bool shouldRunPass(const Pass *P, StringRef IRDescription) {

References

lib/Analysis/CallGraphSCCPass.cpp
  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.cpp
   64   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);