Lines Matching defs:PassName
371 bool isInteresting(Any IR, StringRef PassID, StringRef PassName) {
372 if (isIgnored(PassID) || !isPassInPrintList(PassName))
387 StringRef PassName) {
400 if (!isInteresting(IR, PassID, PassName))
410 StringRef PassName) {
418 } else if (!isInteresting(IR, PassID, PassName)) {
785 std::string PrintIRInstrumentation::fetchDumpFilename(StringRef PassName,
798 FilenameStream << PassName;
978 StringRef PassName = PIC->getPassNameForClassName(PassID);
979 return is_contained(printBeforePasses(), PassName);
986 StringRef PassName = PIC->getPassNameForClassName(PassID);
987 return is_contained(printAfterPasses(), PassName);
1057 bool OptPassGateInstrumentation::shouldRun(StringRef PassName, Any IR) {
1058 if (isIgnored(PassName))
1062 Context.getOptPassGate().shouldRunPass(PassName, getIRName(IR));
1084 PIC.registerShouldRunOptionalPassCallback([this](StringRef PassName, Any IR) {
1085 return this->shouldRun(PassName, IR);