Lines Matching defs:PassName
378 bool isInteresting(Any IR, StringRef PassID, StringRef PassName) {
379 if (isIgnored(PassID) || !isPassInPrintList(PassName))
394 StringRef PassName) {
407 if (!isInteresting(IR, PassID, PassName))
417 StringRef PassName) {
425 } else if (!isInteresting(IR, PassID, PassName)) {
792 std::string PrintIRInstrumentation::fetchDumpFilename(StringRef PassName,
805 FilenameStream << PassName;
985 StringRef PassName = PIC->getPassNameForClassName(PassID);
986 return is_contained(printBeforePasses(), PassName);
993 StringRef PassName = PIC->getPassNameForClassName(PassID);
994 return is_contained(printAfterPasses(), PassName);
1066 bool OptPassGateInstrumentation::shouldRun(StringRef PassName, Any IR) {
1067 if (isIgnored(PassName))
1071 Context.getOptPassGate().shouldRunPass(PassName, getIRName(IR));
1093 PIC.registerShouldRunOptionalPassCallback([this](StringRef PassName, Any IR) {
1094 return this->shouldRun(PassName, IR);