//===--- PassManager.cpp - Swift Pass Manager -----------------------------===// // // This source file is part of the Swift.org open source project // // Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors // Licensed under Apache License v2.0 with Runtime Library Exception // // See https://swift.org/LICENSE.txt for license information // See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors // //===----------------------------------------------------------------------===// #define DEBUG_TYPE "sil-passmanager" #include "swift/SILOptimizer/PassManager/PassManager.h" #include "../../IRGen/IRGenModule.h" #include "swift/AST/ASTMangler.h" #include "swift/AST/SILOptimizerRequests.h" #include "swift/Basic/Assertions.h" #include "swift/Demangling/Demangle.h" #include "swift/Demangling/Demangler.h" #include "swift/SIL/ApplySite.h" #include "swift/SIL/SILFunction.h" #include "swift/SIL/SILModule.h" #include "swift/SILOptimizer/Analysis/BasicCalleeAnalysis.h" #include "swift/SILOptimizer/Analysis/FunctionOrder.h" #include "swift/SILOptimizer/PassManager/PrettyStackTrace.h" #include "swift/SILOptimizer/PassManager/Transforms.h" #include "swift/SILOptimizer/Utils/OptimizerStatsUtils.h" #include "swift/SILOptimizer/Utils/SILOptFunctionBuilder.h" #include "swift/SILOptimizer/Utils/SILSSAUpdater.h" #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/Statistic.h" #include "llvm/ADT/StringSwitch.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/Debug.h" #include "llvm/Support/GraphWriter.h" #include "llvm/Support/ManagedStatic.h" #include "llvm/Support/Casting.h" #include using namespace swift; llvm::cl::opt SILPrintAll( "sil-print-all", llvm::cl::init(false), llvm::cl::desc("Print SIL after each pass")); llvm::cl::opt SILPrintPassName( "sil-print-pass-name", llvm::cl::init(false), llvm::cl::desc("Print the name of each SIL pass before it runs")); llvm::cl::opt SILPrintPassTime( "sil-print-pass-time", llvm::cl::init(false), llvm::cl::desc("Print the execution time of each SIL pass")); llvm::cl::opt SILMinPassTime( "sil-min-pass-time", llvm::cl::init(0), llvm::cl::desc("The minimum number of milliseconds for which a pass is printed with -sil-print-pass-time")); llvm::cl::opt SILPrintLast( "sil-print-last", llvm::cl::init(false), llvm::cl::desc("Print the last optimized function before and after the last pass")); llvm::cl::opt SILNumOptPassesToRun( "sil-opt-pass-count", llvm::cl::init(""), llvm::cl::desc("Stop optimizing after passes or . passes/sub-passes")); // Read pass counts for each module from a config file. // Config file format: // :(.)? // // This is useful for bisecting passes in large projects: // 1. create a config file from a full build log. E.g. with // grep -e '-module-name' build.log | sed -e 's/.*-module-name \([^ ]*\) .*/\1:10000000/' | sort | uniq > config.txt // 2. add the `-Xllvm -sil-pass-count-config-file config.txt` option to the project settings // 3. bisect by modifying the counts in the config file // 4. clean-rebuild after each bisecting step llvm::cl::opt SILPassCountConfigFile( "sil-pass-count-config-file", llvm::cl::init(""), llvm::cl::desc("Read optimization counts from file")); llvm::cl::opt SILOptProfileRepeat( "sil-opt-profile-repeat", llvm::cl::init(1), llvm::cl::desc("repeat passes N times and report the run time")); llvm::cl::opt SILBreakOnFun( "sil-break-on-function", llvm::cl::init(""), llvm::cl::desc( "Break before running each function pass on a particular function")); llvm::cl::opt SILBreakOnPass( "sil-break-on-pass", llvm::cl::init(""), llvm::cl::desc("Break before running a particular function pass")); llvm::cl::opt SILBreakBeforePassCount("sil-break-before-pass-count", llvm::cl::init(""), llvm::cl::desc("Break before running pass number")); llvm::cl::list SILPrintFunction("sil-print-function", llvm::cl::CommaSeparated, llvm::cl::desc("Only print out the sil for this function")); llvm::cl::opt SILPrintFunctions("sil-print-functions", llvm::cl::init(""), llvm::cl::desc("Only print out the sil for the functions " "whose name contains this substring")); llvm::cl::list SILPrintBefore("sil-print-before", llvm::cl::CommaSeparated, llvm::cl::desc("Print out the sil before passes which " "contain a string from this list.")); llvm::cl::list SILPrintAfter("sil-print-after", llvm::cl::CommaSeparated, llvm::cl::desc("Print out the sil after passes which contain " "a string from this list.")); llvm::cl::list SILPrintAround("sil-print-around", llvm::cl::CommaSeparated, llvm::cl::desc("Print out the sil before and after passes " "which contain a string from this list")); llvm::cl::list SILDisablePass("sil-disable-pass", llvm::cl::CommaSeparated, llvm::cl::desc("Disable passes " "which contain a string from this list")); llvm::cl::list SILDisablePassOnlyFun( "sil-disable-pass-only-function", llvm::cl::CommaSeparated, llvm::cl::desc("Apply -sil-disable-pass only on this function")); llvm::cl::list SILVerifyBeforePass( "sil-verify-before-pass", llvm::cl::CommaSeparated, llvm::cl::desc("Verify the module/analyses before we run " "a pass from this list")); llvm::cl::list SILVerifyAroundPass( "sil-verify-around-pass", llvm::cl::CommaSeparated, llvm::cl::desc("Verify the module/analyses before/after we run " "a pass from this list")); llvm::cl::list SILVerifyAfterPass("sil-verify-after-pass", llvm::cl::CommaSeparated, llvm::cl::desc("Verify the module/analyses after we run " "a pass from this list")); llvm::cl::list SILForceVerifyAroundPass( "sil-verify-force-analysis-around-pass", llvm::cl::CommaSeparated, llvm::cl::desc("For the given passes, precompute analyses before the pass " "and verify analyses after the pass")); llvm::cl::opt SILVerifyWithoutInvalidation( "sil-verify-without-invalidation", llvm::cl::init(false), llvm::cl::desc("Verify after passes even if the pass has not invalidated")); llvm::cl::opt SILDisableSkippingPasses( "sil-disable-skipping-passes", llvm::cl::init(false), llvm::cl::desc("Do not skip passes even if nothing was changed")); llvm::cl::opt SILForceVerifyAll( "sil-verify-force-analysis", llvm::cl::init(false), llvm::cl::desc("For all passes, precompute analyses before the pass and " "verify analyses after the pass")); static llvm::ManagedStatic> DebugPassNumbers; namespace { struct DebugOnlyPassNumberOpt { void operator=(const std::string &Val) const { if (Val.empty()) return; SmallVector dbgPassNumbers; StringRef(Val).split(dbgPassNumbers, ',', -1, false); for (auto dbgPassNumber : dbgPassNumbers) { int PassNumber; if (dbgPassNumber.getAsInteger(10, PassNumber) || PassNumber < 0) llvm_unreachable("The pass number should be an integer number >= 0"); DebugPassNumbers->push_back(static_cast(PassNumber)); } } }; } // end anonymous namespace static DebugOnlyPassNumberOpt DebugOnlyPassNumberOptLoc; static llvm::cl::opt> DebugOnly("debug-only-pass-number", llvm::cl::desc("Enable a specific type of debug output (comma " "separated list pass numbers)"), llvm::cl::Hidden, llvm::cl::ZeroOrMore, llvm::cl::value_desc("pass number"), llvm::cl::location(DebugOnlyPassNumberOptLoc), llvm::cl::ValueRequired); static llvm::cl::opt SILPrintEverySubpass( "sil-print-every-subpass", llvm::cl::init(false), llvm::cl::desc("Print the function before every subpass run of passes that " "have multiple subpasses")); static bool isInPrintFunctionList(SILFunction *F) { for (const std::string &printFnName : SILPrintFunction) { if (printFnName == F->getName()) return true; if (!printFnName.empty() && printFnName[0] != '$' && !F->getName().empty() && F->getName()[0] == '$' && printFnName == F->getName().drop_front()) { return true; } } return false; } bool isFunctionSelectedForPrinting(SILFunction *F) { if (!SILPrintFunction.empty() && !isInPrintFunctionList(F)) return false; if (!F->getName().contains(SILPrintFunctions)) return false; return true; } void printInliningDetails(StringRef passName, SILFunction *caller, SILFunction *callee, bool isCaller, bool alreadyInlined) { if (!isFunctionSelectedForPrinting(caller)) return; llvm::dbgs() << " " << passName << (alreadyInlined ? " has inlined " : " will inline ") << callee->getName() << " into " << caller->getName() << ".\n"; auto *printee = isCaller ? caller : callee; printee->dump(caller->getModule().getOptions().EmitVerboseSIL); llvm::dbgs() << '\n'; } void printInliningDetailsCallee(StringRef passName, SILFunction *caller, SILFunction *callee) { printInliningDetails(passName, caller, callee, /*isCaller=*/false, /*alreadyInlined=*/false); } void printInliningDetailsCallerBefore(StringRef passName, SILFunction *caller, SILFunction *callee) { printInliningDetails(passName, caller, callee, /*isCaller=*/true, /*alreadyInlined=*/false); } void printInliningDetailsCallerAfter(StringRef passName, SILFunction *caller, SILFunction *callee) { printInliningDetails(passName, caller, callee, /*isCaller=*/true, /*alreadyInlined=*/true); } static bool functionSelectionEmpty() { return SILPrintFunction.empty() && SILPrintFunctions.empty(); } bool SILPassManager::doPrintBefore(SILTransform *T, SILFunction *F) { if (NumPassesRun == maxNumPassesToRun - 1 && SILPrintLast && maxNumSubpassesToRun == UINT_MAX && !isMandatory) return true; if (F && !isFunctionSelectedForPrinting(F)) return false; auto MatchFun = [&](const std::string &Str) -> bool { return T->getTag().contains(Str) || T->getID().contains(Str); }; if (SILPrintBefore.end() != std::find_if(SILPrintBefore.begin(), SILPrintBefore.end(), MatchFun)) return true; if (!SILPrintBefore.empty()) return false; if (SILPrintAround.end() != std::find_if(SILPrintAround.begin(), SILPrintAround.end(), MatchFun)) return true; if (!SILPrintAround.empty()) return false; return false; } bool SILPassManager::doPrintAfter(SILTransform *T, SILFunction *F, bool PassChangedSIL) { if (NumPassesRun == maxNumPassesToRun - 1 && SILPrintLast && !isMandatory) return true; if (F && !isFunctionSelectedForPrinting(F)) return false; auto MatchFun = [&](const std::string &Str) -> bool { return T->getTag().contains(Str) || T->getID().contains(Str); }; if (SILPrintAfter.end() != std::find_if(SILPrintAfter.begin(), SILPrintAfter.end(), MatchFun)) return true; if (!SILPrintAfter.empty()) return false; if (SILPrintAround.end() != std::find_if(SILPrintAround.begin(), SILPrintAround.end(), MatchFun)) return true; if (!SILPrintAround.empty()) return false; return PassChangedSIL && (SILPrintAll || !functionSelectionEmpty()); } static void printModule(SILModule *Mod, bool EmitVerboseSIL) { if (functionSelectionEmpty()) { Mod->dump(); return; } for (auto &F : *Mod) { if (isFunctionSelectedForPrinting(&F)) F.dump(EmitVerboseSIL); } } class DebugPrintEnabler { #ifndef NDEBUG bool OldDebugFlag; #endif public: DebugPrintEnabler(unsigned PassNumber) { #ifndef NDEBUG OldDebugFlag = llvm::DebugFlag; if (llvm::DebugFlag) return; if (DebugPassNumbers->empty()) return; // Enable debug printing if the pass number matches // one of the pass numbers provided as a command line option. for (auto DebugPassNumber : *DebugPassNumbers) { if (DebugPassNumber == PassNumber) { llvm::DebugFlag = true; return; } } #endif } ~DebugPrintEnabler() { #ifndef NDEBUG llvm::DebugFlag = OldDebugFlag; #endif } }; //===----------------------------------------------------------------------===// // Serialization Notification Implementation //===----------------------------------------------------------------------===// namespace { class PassManagerDeserializationNotificationHandler final : public DeserializationNotificationHandler { NullablePtr pm; public: PassManagerDeserializationNotificationHandler(SILPassManager *pm) : pm(pm) {} ~PassManagerDeserializationNotificationHandler() override = default; StringRef getName() const override { return "PassManagerDeserializationNotificationHandler"; } /// Observe that we deserialized a function declaration. void didDeserialize(ModuleDecl *mod, SILFunction *fn) override { pm.get()->notifyAnalysisOfFunction(fn); } }; } // end anonymous namespace evaluator::SideEffect ExecuteSILPipelineRequest::evaluate( Evaluator &evaluator, SILPipelineExecutionDescriptor desc) const { SILPassManager PM(desc.SM, desc.IsMandatory, desc.IRMod); PM.executePassPipelinePlan(desc.Plan); return std::make_tuple<>(); } void swift::executePassPipelinePlan(SILModule *SM, const SILPassPipelinePlan &plan, bool isMandatory, irgen::IRGenModule *IRMod) { auto &evaluator = SM->getASTContext().evaluator; SILPipelineExecutionDescriptor desc{SM, plan, isMandatory, IRMod}; (void)evaluateOrFatal(evaluator, ExecuteSILPipelineRequest{desc}); } SILPassManager::SILPassManager(SILModule *M, bool isMandatory, irgen::IRGenModule *IRMod) : Mod(M), IRMod(IRMod), irgen(nullptr), swiftPassInvocation(this), isMandatory(isMandatory), deserializationNotificationHandler(nullptr) { #define SIL_ANALYSIS(NAME) \ Analyses.push_back(create##NAME##Analysis(Mod)); #include "swift/SILOptimizer/Analysis/Analysis.def" if (!SILNumOptPassesToRun.empty()) { parsePassesToRunCount(SILNumOptPassesToRun); } else if (!SILPassCountConfigFile.empty()) { StringRef moduleName = M->getSwiftModule()->getName().str(); std::fstream fs(SILPassCountConfigFile); if (!fs) { llvm::errs() << "cannot open pass count config file\n"; exit(1); } std::string line; while (std::getline(fs, line)) { auto pair = StringRef(line).split(":"); StringRef modName = pair.first; StringRef countsStr = pair.second; if (modName == moduleName) { parsePassesToRunCount(countsStr); break; } } fs.close(); } if (!SILBreakBeforePassCount.empty()) { parseBreakBeforePassCount(SILBreakBeforePassCount); } for (SILAnalysis *A : Analyses) { A->initialize(this); } std::unique_ptr handler( new PassManagerDeserializationNotificationHandler(this)); deserializationNotificationHandler = handler.get(); M->registerDeserializationNotificationHandler(std::move(handler)); } void SILPassManager::parsePassesToRunCount(StringRef countsStr) { bool validFormat = true; if (countsStr.consumeInteger(10, maxNumPassesToRun)) validFormat = false; if (countsStr.starts_with(".")) { countsStr = countsStr.drop_front(1); if (countsStr.consumeInteger(10, maxNumSubpassesToRun)) validFormat = false; } if (!validFormat || !countsStr.empty()) { llvm::errs() << "error: wrong format of -sil-opt-pass-count option\n"; exit(1); } } void SILPassManager::parseBreakBeforePassCount(StringRef countsStr) { bool validFormat = true; if (countsStr.consumeInteger(10, breakBeforePassCount)) validFormat = false; if (!validFormat || !countsStr.empty()) { llvm::errs() << "error: wrong format of -sil-break-before-pass-count option\n"; exit(1); } } bool SILPassManager::continueTransforming() { if (isMandatory) return true; return NumPassesRun < maxNumPassesToRun; } bool SILPassManager::continueWithNextSubpassRun( std::optional origTransformee, SILFunction *function, SILTransform *trans) { // Rewrite .some(nullptr) as .none. std::optional> forTransformee; if (origTransformee) { auto forValue = dyn_cast(*origTransformee); if (forValue) { forTransformee = forValue; } else if (auto *forInst = cast(*origTransformee)) { forTransformee = forInst; } } unsigned subPass = numSubpassesRun++; if (isFunctionSelectedForPrinting(function) && SILPrintEverySubpass) { dumpPassInfo("*** SIL function before ", trans, function); llvm::dbgs() << " *** sub-pass " << subPass << " for "; if (forTransformee) { auto forValue = dyn_cast(*forTransformee); if (forValue) { llvm::dbgs() << forValue; } else { auto *forInst = cast(*forTransformee); llvm::dbgs() << *forInst; } } else { llvm::dbgs() << "???\n"; } function->dump(getOptions().EmitVerboseSIL); } if (isMandatory) return true; if (NumPassesRun != maxNumPassesToRun - 1) return true; if (subPass == maxNumSubpassesToRun - 1 && SILPrintLast) { dumpPassInfo("*** SIL function before ", trans, function); if (forTransformee) { auto forValue = dyn_cast(*forTransformee); if (forValue) { llvm::dbgs() << forValue; } else { auto *forInst = cast(*forTransformee); llvm::dbgs() << *forInst; } } else { llvm::dbgs() << "???\n"; } function->dump(getOptions().EmitVerboseSIL); } return subPass < maxNumSubpassesToRun; } bool SILPassManager::analysesUnlocked() { for (auto *A : Analyses) if (A->isLocked()) return false; return true; } // Test the function and pass names we're given against the debug // options that force us to break prior to a given pass and/or on a // given function. bool SILPassManager::breakBeforeRunning(StringRef fnName, SILFunctionTransform *SFT) { if (SILBreakOnFun.empty() && SILBreakOnPass.empty() && SILBreakBeforePassCount.empty()) return false; if (!SILBreakOnPass.empty() && (SFT->getID() == SILBreakOnPass || SFT->getTag() == SILBreakOnPass)) return true; if (!SILBreakOnFun.empty() && fnName == SILBreakOnFun) return true; if (!SILBreakBeforePassCount.empty() && breakBeforePassCount == NumPassesRun) { return true; } return false; } void SILPassManager::dumpPassInfo(const char *Title, SILTransform *Tr, SILFunction *F, int passIdx) { llvm::dbgs() << " " << Title << " #" << NumPassesRun << ", stage " << StageName << ", pass"; if (passIdx >= 0) llvm::dbgs() << ' ' << passIdx; llvm::dbgs() << ": " << Tr->getID() << " (" << Tr->getTag() << ")"; if (F) llvm::dbgs() << ", Function: " << F->getName(); llvm::dbgs() << '\n'; } void SILPassManager::dumpPassInfo(const char *Title, unsigned TransIdx, SILFunction *F) { dumpPassInfo(Title, Transformations[TransIdx], F, (int)TransIdx); } bool SILPassManager::isMandatoryFunctionPass(SILFunctionTransform *sft) { return isMandatory || sft->getPassKind() == PassKind::OwnershipModelEliminator; } static bool isDisabled(SILTransform *T, SILFunction *F = nullptr) { if (SILDisablePass.empty()) return false; if (SILPassManager::isPassDisabled(T->getTag()) || SILPassManager::isPassDisabled(T->getID())) { if (F && !SILPassManager::disablePassesForFunction(F)) return false; return true; } return false; } bool SILPassManager::isPassDisabled(StringRef passName) { for (const std::string &namePattern : SILDisablePass) { if (passName.contains(namePattern)) return true; } return false; } bool SILPassManager::isInstructionPassDisabled(StringRef instName) { StringRef prefix("simplify-"); for (const std::string &namePattern : SILDisablePass) { StringRef pattern(namePattern); if (pattern.starts_with(prefix) && pattern.ends_with(instName) && pattern.size() == prefix.size() + instName.size()) { return true; } } return false; } bool SILPassManager::isAnyPassDisabled() { return !SILDisablePass.empty(); } bool SILPassManager::disablePassesForFunction(SILFunction *function) { if (SILDisablePassOnlyFun.empty()) return true; return std::find(SILDisablePassOnlyFun.begin(), SILDisablePassOnlyFun.end(), function->getName()) != SILDisablePassOnlyFun.end(); } void SILPassManager::runPassOnFunction(unsigned TransIdx, SILFunction *F) { assert(analysesUnlocked() && "Expected all analyses to be unlocked!"); auto *SFT = cast(Transformations[TransIdx]); if (!F->shouldOptimize() && !isMandatoryFunctionPass(SFT)) { return; } SFT->injectPassManager(this); SFT->injectFunction(F); PrettyStackTraceSILFunctionTransform X(SFT, NumPassesRun); DebugPrintEnabler DebugPrint(NumPassesRun); // If nothing changed since the last run of this pass, we can skip this // pass if it is not mandatory CompletedPasses &completedPasses = CompletedPassesMap[F]; if (!isMandatoryFunctionPass(SFT) && completedPasses.test((size_t)SFT->getPassKind()) && !SILDisableSkippingPasses) { if (SILPrintPassName) dumpPassInfo("(Skip)", TransIdx, F); return; } if (isDisabled(SFT, F)) { if (SILPrintPassName) dumpPassInfo("(Disabled)", TransIdx, F); return; } updateSILModuleStatsBeforeTransform(F->getModule(), SFT, *this, NumPassesRun); CurrentPassHasInvalidated = false; currentPassDependsOnCalleeBodies = false; numSubpassesRun = 0; auto MatchFun = [&](const std::string &Str) -> bool { return SFT->getTag().contains(Str) || SFT->getID().contains(Str); }; if ((SILVerifyBeforePass.end() != std::find_if(SILVerifyBeforePass.begin(), SILVerifyBeforePass.end(), MatchFun)) || (SILVerifyAroundPass.end() != std::find_if(SILVerifyAroundPass.begin(), SILVerifyAroundPass.end(), MatchFun))) { F->verify(getAnalysis()->getCalleeCache()); verifyAnalyses(); runSwiftFunctionVerification(F); } if (SILPrintPassName) dumpPassInfo("Run", TransIdx, F); if (doPrintBefore(SFT, F)) { dumpPassInfo("*** SIL function before ", TransIdx); F->dump(getOptions().EmitVerboseSIL); } if (breakBeforeRunning(F->getName(), SFT)) LLVM_BUILTIN_DEBUGTRAP; if (SILForceVerifyAll || SILForceVerifyAroundPass.end() != std::find_if(SILForceVerifyAroundPass.begin(), SILForceVerifyAroundPass.end(), MatchFun)) { forcePrecomputeAnalyses(F); } llvm::sys::TimePoint<> startTime = std::chrono::system_clock::now(); std::chrono::nanoseconds duration(0); enum { // In future we might want to make snapshots with positive number (e.g. // corresponding to pass indices). Therefore use -1 here to avoid collisions. SnapshotID = -1 }; unsigned numRepeats = SILOptProfileRepeat; if (numRepeats > 1) { // Need to create a snapshot to restore the original state for consecutive runs. F->createSnapshot(SnapshotID); } for (unsigned runIdx = 0; runIdx < numRepeats; runIdx++) { swiftPassInvocation.startFunctionPassRun(SFT); // Run it! SFT->run(); swiftPassInvocation.finishedFunctionPassRun(); if (CurrentPassHasInvalidated) { // Pause time measurement while invalidating analysis and restoring the snapshot. duration += (std::chrono::system_clock::now() - startTime); if (runIdx < numRepeats - 1) { invalidateAnalysis(F, SILAnalysis::InvalidationKind::Everything); F->restoreFromSnapshot(SnapshotID); } // Continue time measurement (including flushing deleted instructions). startTime = std::chrono::system_clock::now(); } else { if (Mod->hasInstructionsScheduledForDeletion()) { // Last chance for invalidating analysis if the pass forgot to call invalidateAnalysis. invalidateAnalysis(F, SILAnalysis::InvalidationKind::FunctionBody); } } Mod->flushDeletedInsts(); } duration += (std::chrono::system_clock::now() - startTime); totalPassRuntime += duration; if (SILPrintPassTime) { double milliSecs = (double)duration.count() / 1000000.; if (milliSecs > (double)SILMinPassTime) { llvm::dbgs() << llvm::format("%9.3f", milliSecs) << " ms: " << SFT->getTag() << " #" << NumPassesRun << " @" << F->getName() << "\n"; } } if (numRepeats > 1) F->deleteSnapshot(SnapshotID); assert(analysesUnlocked() && "Expected all analyses to be unlocked!"); if (SILForceVerifyAll || SILForceVerifyAroundPass.end() != std::find_if(SILForceVerifyAroundPass.begin(), SILForceVerifyAroundPass.end(), MatchFun)) { verifyAnalyses(F); } // If this pass invalidated anything, print and verify. if (doPrintAfter(SFT, F, CurrentPassHasInvalidated)) { dumpPassInfo("*** SIL function after ", TransIdx); F->dump(getOptions().EmitVerboseSIL); } updateSILModuleStatsAfterTransform(F->getModule(), SFT, *this, NumPassesRun, duration.count()); // Remember if this pass didn't change anything. if (!CurrentPassHasInvalidated && !currentPassDependsOnCalleeBodies) completedPasses.set((size_t)SFT->getPassKind()); if (getOptions().VerifyAll && (CurrentPassHasInvalidated || SILVerifyWithoutInvalidation)) { F->verify(getAnalysis()->getCalleeCache()); verifyAnalyses(F); runSwiftFunctionVerification(F); } else if (getOptions().VerifyOwnershipAll && (CurrentPassHasInvalidated || SILVerifyWithoutInvalidation)) { F->verifyOwnership(); } else { if ((SILVerifyAfterPass.end() != std::find_if(SILVerifyAfterPass.begin(), SILVerifyAfterPass.end(), MatchFun)) || (SILVerifyAroundPass.end() != std::find_if(SILVerifyAroundPass.begin(), SILVerifyAroundPass.end(), MatchFun))) { F->verify(getAnalysis()->getCalleeCache()); verifyAnalyses(); runSwiftFunctionVerification(F); } } ++NumPassesRun; } void SILPassManager:: runFunctionPasses(unsigned FromTransIdx, unsigned ToTransIdx) { if (ToTransIdx <= FromTransIdx) return; BasicCalleeAnalysis *BCA = getAnalysis(); BottomUpFunctionOrder BottomUpOrder(*Mod, BCA); auto BottomUpFunctions = BottomUpOrder.getFunctions(); assert(FunctionWorklist.empty() && "Expected empty function worklist!"); FunctionWorklist.reserve(BottomUpFunctions.size()); for (auto I = BottomUpFunctions.rbegin(), E = BottomUpFunctions.rend(); I != E; ++I) { auto &F = **I; // Only include functions that are definitions, and which have not // been intentionally excluded from optimization. if (F.isDefinition()) FunctionWorklist.push_back(*I); } DerivationLevels.clear(); // The maximum number of times the pass pipeline can be restarted for a // function. This is used to ensure we are not going into an infinite loop in // cases where (for example) we have recursive type-based specialization // happening. const unsigned MaxNumRestarts = 20; if (SILPrintPassName) llvm::dbgs() << "Start function passes at stage: " << StageName << "\n"; // Run all transforms for all functions, starting at the tail of the worklist. while (!FunctionWorklist.empty() && continueTransforming()) { unsigned TailIdx = FunctionWorklist.size() - 1; unsigned PipelineIdx = FunctionWorklist[TailIdx].PipelineIdx; SILFunction *F = FunctionWorklist[TailIdx].F; if (PipelineIdx >= (ToTransIdx - FromTransIdx)) { // All passes did already run for the function. Pop it off the worklist. FunctionWorklist.pop_back(); continue; } assert(!shouldRestartPipeline() && "Did not expect function pipeline set up to restart from beginning!"); runPassOnFunction(FromTransIdx + PipelineIdx, F); // Note: Don't get entry reference prior to runPassOnFunction(). // A pass can push a new function to the worklist which may cause a // reallocation of the buffer and that would invalidate the reference. WorklistEntry &Entry = FunctionWorklist[TailIdx]; if (shouldRestartPipeline() && Entry.NumRestarts < MaxNumRestarts) { ++Entry.NumRestarts; Entry.PipelineIdx = 0; } else { ++Entry.PipelineIdx; } clearRestartPipeline(); } } void SILPassManager::runModulePass(unsigned TransIdx) { auto *SMT = cast(Transformations[TransIdx]); if (isDisabled(SMT)) return; const SILOptions &Options = getOptions(); SMT->injectPassManager(this); SMT->injectModule(Mod); PrettyStackTraceSILModuleTransform X(SMT, NumPassesRun); DebugPrintEnabler DebugPrint(NumPassesRun); updateSILModuleStatsBeforeTransform(*Mod, SMT, *this, NumPassesRun); CurrentPassHasInvalidated = false; numSubpassesRun = 0; if (SILPrintPassName) dumpPassInfo("Run module pass", TransIdx); if (doPrintBefore(SMT, nullptr)) { dumpPassInfo("*** SIL module before", TransIdx); printModule(Mod, Options.EmitVerboseSIL); } auto MatchFun = [&](const std::string &Str) -> bool { return SMT->getTag().contains(Str) || SMT->getID().contains(Str); }; if ((SILVerifyBeforePass.end() != std::find_if(SILVerifyBeforePass.begin(), SILVerifyBeforePass.end(), MatchFun)) || (SILVerifyAroundPass.end() != std::find_if(SILVerifyAroundPass.begin(), SILVerifyAroundPass.end(), MatchFun))) { Mod->verify(getAnalysis()->getCalleeCache()); verifyAnalyses(); runSwiftModuleVerification(); } swiftPassInvocation.startModulePassRun(SMT); llvm::sys::TimePoint<> StartTime = std::chrono::system_clock::now(); assert(analysesUnlocked() && "Expected all analyses to be unlocked!"); SMT->run(); assert(analysesUnlocked() && "Expected all analyses to be unlocked!"); if (!CurrentPassHasInvalidated && Mod->hasInstructionsScheduledForDeletion()) { // Last chance for invalidating analysis if the pass forgot to call invalidateAnalysis. invalidateAllAnalysis(); } Mod->flushDeletedInsts(); swiftPassInvocation.finishedModulePassRun(); std::chrono::nanoseconds duration = std::chrono::system_clock::now() - StartTime; totalPassRuntime += duration; if (SILPrintPassTime) { double milliSecs = (double)duration.count() / 1000000.; if (milliSecs > (double)SILMinPassTime) { llvm::dbgs() << llvm::format("%9.3f", milliSecs) << " ms: " << SMT->getTag() << " #" << NumPassesRun << "\n"; } } // If this pass invalidated anything, print and verify. if (doPrintAfter(SMT, nullptr, CurrentPassHasInvalidated)) { dumpPassInfo("*** SIL module after", TransIdx); printModule(Mod, Options.EmitVerboseSIL); } updateSILModuleStatsAfterTransform(*Mod, SMT, *this, NumPassesRun, duration.count()); if (Options.VerifyAll && (CurrentPassHasInvalidated || !SILVerifyWithoutInvalidation)) { Mod->verify(getAnalysis()->getCalleeCache()); verifyAnalyses(); runSwiftModuleVerification(); } else { if ((SILVerifyAfterPass.end() != std::find_if(SILVerifyAfterPass.begin(), SILVerifyAfterPass.end(), MatchFun)) || (SILVerifyAroundPass.end() != std::find_if(SILVerifyAroundPass.begin(), SILVerifyAroundPass.end(), MatchFun))) { Mod->verify(getAnalysis()->getCalleeCache()); verifyAnalyses(); runSwiftModuleVerification(); } } } void SILPassManager::verifyAnalyses() const { if (Mod->getOptions().VerifyNone) return; for (auto *A : Analyses) { A->verify(); } } void SILPassManager::verifyAnalyses(SILFunction *F) const { if (Mod->getOptions().VerifyNone) return; for (auto *A : Analyses) { A->verify(F); } } void SILPassManager::executePassPipelinePlan(const SILPassPipelinePlan &Plan) { for (const SILPassPipeline &Pipeline : Plan.getPipelines()) { setStageName(Pipeline.Name); resetAndRemoveTransformations(); for (PassKind Kind : Plan.getPipelinePasses(Pipeline)) { addPass(Kind); assert(!Pipeline.isFunctionPassPipeline || isa(Transformations.back())); } execute(); } } void SILPassManager::execute() { const SILOptions &Options = getOptions(); LLVM_DEBUG(llvm::dbgs() << "*** Optimizing the module (" << StageName << ") *** \n"); if (SILPrintAll) { llvm::dbgs() << "*** SIL module before " << StageName << " ***\n"; printModule(Mod, Options.EmitVerboseSIL); } // Run the transforms by alternating between function transforms and // module transforms. We'll queue up all the function transforms // that we see in a row and then run the entire group of transforms // on each function in turn. Then we move on to running the next set // of consecutive module transforms. unsigned Idx = 0, NumTransforms = Transformations.size(); while (Idx < NumTransforms && continueTransforming()) { SILTransform *Tr = Transformations[Idx]; assert((isa(Tr) || isa(Tr)) && "Unexpected pass kind!"); (void)Tr; unsigned FirstFuncTrans = Idx; while (Idx < NumTransforms && isa(Transformations[Idx])) ++Idx; runFunctionPasses(FirstFuncTrans, Idx); while (Idx < NumTransforms && isa(Transformations[Idx]) && continueTransforming()) { runModulePass(Idx); ++Idx; ++NumPassesRun; } } } irgen::IRGenModule *SILPassManager::getIRGenModule() { // We need an IRGenModule to get the actual sizes from type lowering. // Creating an IRGenModule involves some effort, let's cache it for the // whole pass. if (IRMod == nullptr) { SILModule *module = getModule(); auto *irgenOpts = module->getIRGenOptionsOrNull(); if (!irgenOpts) return nullptr; if (irgen == nullptr) irgen = new irgen::IRGenerator(*irgenOpts, *module); auto targetMachine = irgen->createTargetMachine(); assert(targetMachine && "failed to create target"); IRMod = new irgen::IRGenModule(*irgen, std::move(targetMachine)); } return IRMod; } /// D'tor. SILPassManager::~SILPassManager() { if (SILOptProfileRepeat > 1) { double milliSecs = (double)totalPassRuntime.count() / 1000000.; llvm::dbgs() << llvm::format("%9.3f", milliSecs) << " ms: total runtime of all passes\n"; } // Before we do anything further, verify the module and our analyses. These // are natural points with which to verify. // // TODO: We currently do not verify the module here since the verifier asserts // in the normal build. This should be enabled and those problems resolved // either by changing the verifier or treating those asserts as signs of a // bug. for (auto *A : Analyses) { // We use verify full instead of just verify to ensure that passes that want // to run more expensive verification after a pass manager is destroyed // properly trigger. // // NOTE: verifyFull() has a default implementation that just calls // verify(). So functionally, there is no difference here. A->verifyFull(); } // Remove our deserialization notification handler. Mod->removeDeserializationNotificationHandler( deserializationNotificationHandler); // Free all transformations. for (auto *T : Transformations) delete T; // delete the analysis. for (auto *A : Analyses) { assert(!A->isLocked() && "Deleting a locked analysis. Did we forget to unlock ?"); delete A; } if (irgen) { // If irgen is set, we also own the IRGenModule if (IRMod) { delete IRMod; IRMod = nullptr; } delete irgen; irgen = nullptr; } } void SILPassManager::notifyOfNewFunction(SILFunction *F, SILTransform *T) { if (doPrintAfter(T, F, /*PassChangedSIL*/ true)) { dumpPassInfo("*** New SIL function in ", T, F); F->dump(getOptions().EmitVerboseSIL); } } void SILPassManager::addFunctionToWorklist(SILFunction *F, SILFunction *DerivedFrom) { assert(F && F->isDefinition() && (isMandatory || F->shouldOptimize()) && "Expected optimizable function definition!"); constexpr int MaxDeriveLevels = 10; int NewLevel = 1; if (DerivedFrom) { if (!functionSelectionEmpty() && isFunctionSelectedForPrinting(F)) { llvm::dbgs() << F->getName() << " was derived from " << DerivedFrom->getName() << "\n"; } // When SILVerifyAll is enabled, individual functions are verified after // function passes are run upon them. This means that any functions created // by a function pass will not be verified after the pass runs. Thus // specialization errors that cause the verifier to trip will be // misattributed to the first pass that makes a change to the specialized // function. This is very misleading and increases triage time. // // As a result, when SILVerifyAll is enabled, we always verify newly // specialized functions as they are added to the worklist. // // TODO: Currently, all specialized functions are added to the function // worklist in this manner. This is all well and good, but we should really // add support for verifying that all specialized functions are added via // this function to the pass manager to ensure that we perform this // verification. if (getOptions().VerifyAll) { F->verify(getAnalysis()->getCalleeCache()); } NewLevel = DerivationLevels[DerivedFrom] + 1; // Limit the number of derivations, i.e. don't allow that a pass specializes // a specialized function which is itself a specialized function, and so on. if (NewLevel >= MaxDeriveLevels) return; } int &StoredLevel = DerivationLevels[F]; // Only allow a function to be pushed on the worklist a single time // (not counting the initial population of the worklist with the bottom-up // function order). if (StoredLevel > 0) return; StoredLevel = NewLevel; FunctionWorklist.push_back(F); } void SILPassManager::restartWithCurrentFunction(SILTransform *T) { assert(isa(T) && "Can only restart the pipeline from function passes"); RestartPipeline = true; } /// Reset the state of the pass manager and remove all transformation /// owned by the pass manager. Analysis passes will be kept. void SILPassManager::resetAndRemoveTransformations() { for (auto *T : Transformations) delete T; Transformations.clear(); } void SILPassManager::setStageName(llvm::StringRef NextStage) { StageName = NextStage.str(); } StringRef SILPassManager::getStageName() const { return StageName; } const SILOptions &SILPassManager::getOptions() const { return Mod->getOptions(); } namespace { enum class IRGenPasses : uint8_t { #define PASS(ID, TAG, NAME) #define IRGEN_PASS(ID, TAG, NAME) ID, #include "swift/SILOptimizer/PassManager/Passes.def" }; } // end anonymous namespace void SILPassManager::addPass(PassKind Kind) { ASSERT(unsigned(PassKind::numPasses) > unsigned(Kind) && "Invalid pass kind"); switch (Kind) { #define PASS(ID, TAG, NAME) \ case PassKind::ID: { \ SILTransform *T = swift::create##ID(); \ T->setPassKind(PassKind::ID); \ Transformations.push_back(T); \ break; \ } #define IRGEN_PASS(ID, TAG, NAME) \ case PassKind::ID: { \ auto &ctx = Mod->getASTContext(); \ auto irPasses = ctx.getIRGenSILTransforms(); \ SILTransform *T = irPasses[static_cast(IRGenPasses::ID)](); \ assert(T && "Missing IRGen pass?"); \ T->setPassKind(PassKind::ID); \ Transformations.push_back(T); \ break; \ } #include "swift/SILOptimizer/PassManager/Passes.def" case PassKind::invalidPassKind: llvm_unreachable("invalid pass kind"); } } void SILPassManager::addPassForName(StringRef Name) { PassKind P = llvm::StringSwitch(Name) #define PASS(ID, TAG, NAME) .Case(#ID, PassKind::ID) #include "swift/SILOptimizer/PassManager/Passes.def" ; addPass(P); } //===----------------------------------------------------------------------===// // View Call-Graph Implementation //===----------------------------------------------------------------------===// #ifndef NDEBUG namespace { /// An explicit graph data structure for the call graph. /// Used for viewing the callgraph as dot file with llvm::ViewGraph. struct CallGraph { struct Node; struct Edge { FullApplySite FAS; Node *Child; bool Incomplete; }; struct Node { SILFunction *F; CallGraph *CG; int NumCallSites = 0; SmallVector Children; }; struct child_iterator { using iterator_category = std::random_access_iterator_tag; using value_type = Node*; using difference_type = std::ptrdiff_t; using pointer = value_type*; using reference = value_type&; SmallVectorImpl::iterator baseIter; child_iterator(SmallVectorImpl::iterator baseIter) : baseIter(baseIter) { } child_iterator &operator++() { baseIter++; return *this; } child_iterator operator++(int) { auto tmp = *this; ++baseIter; return tmp; } Node *operator*() const { return baseIter->Child; } bool operator==(const child_iterator &RHS) const { return baseIter == RHS.baseIter; } bool operator!=(const child_iterator &RHS) const { return baseIter != RHS.baseIter; } difference_type operator-(const child_iterator &RHS) const { return baseIter - RHS.baseIter; } }; CallGraph(SILModule *M, BasicCalleeAnalysis *BCA); std::vector Nodes; /// The SILValue IDs which are printed as edge source labels. llvm::DenseMap InstToIDMap; typedef std::vector::iterator iterator; }; CallGraph::CallGraph(SILModule *M, BasicCalleeAnalysis *BCA) { Nodes.resize(M->getFunctionList().size()); llvm::DenseMap NodeMap; int idx = 0; for (SILFunction &F : *M) { Node &Nd = Nodes[idx++]; Nd.F = &F; Nd.CG = this; NodeMap[&F] = &Nd; F.numberValues(InstToIDMap); } for (Node &Nd : Nodes) { for (SILBasicBlock &BB : *Nd.F) { for (SILInstruction &I : BB) { if (FullApplySite FAS = FullApplySite::isa(&I)) { auto CList = BCA->getCalleeList(FAS); for (SILFunction *Callee : CList) { Node *CalleeNode = NodeMap[Callee]; Nd.Children.push_back({FAS, CalleeNode,CList.isIncomplete()}); } } } } } } } // end anonymous namespace namespace llvm { /// Wraps a dot node label string to multiple lines. The \p NumEdgeLabels /// gives an estimate on the minimum width of the node shape. static void wrap(std::string &Str, int NumEdgeLabels) { unsigned ColNum = 0; unsigned LastSpace = 0; unsigned MaxColumns = std::max(60, NumEdgeLabels * 8); for (unsigned i = 0; i != Str.length(); ++i) { if (ColNum == MaxColumns) { if (!LastSpace) LastSpace = i; Str.insert(LastSpace + 1, "\\l"); ColNum = i - LastSpace - 1; LastSpace = 0; } else ++ColNum; if (Str[i] == ' ' || Str[i] == '.') LastSpace = i; } } /// CallGraph GraphTraits specialization so the CallGraph can be /// iterable by generic graph iterators. template <> struct GraphTraits { typedef CallGraph::child_iterator ChildIteratorType; typedef CallGraph::Node *NodeRef; static NodeRef getEntryNode(NodeRef N) { return N; } static inline ChildIteratorType child_begin(NodeRef N) { return N->Children.begin(); } static inline ChildIteratorType child_end(NodeRef N) { return N->Children.end(); } }; template <> struct GraphTraits : public GraphTraits { typedef CallGraph *GraphType; typedef CallGraph::Node *NodeRef; static NodeRef getEntryNode(GraphType F) { return nullptr; } typedef pointer_iterator nodes_iterator; static nodes_iterator nodes_begin(GraphType CG) { return nodes_iterator(CG->Nodes.begin()); } static nodes_iterator nodes_end(GraphType CG) { return nodes_iterator(CG->Nodes.end()); } static unsigned size(GraphType CG) { return CG->Nodes.size(); } }; /// This is everything the llvm::GraphWriter needs to write the call graph in /// a dot file. template <> struct DOTGraphTraits : public DefaultDOTGraphTraits { DOTGraphTraits(bool isSimple = false) : DefaultDOTGraphTraits(isSimple) {} std::string getNodeLabel(const CallGraph::Node *Node, const CallGraph *Graph) { std::string Label = Node->F->getName().str(); wrap(Label, Node->NumCallSites); return Label; } std::string getNodeDescription(const CallGraph::Node *Node, const CallGraph *Graph) { std::string Label = Demangle:: demangleSymbolAsString(Node->F->getName()); wrap(Label, Node->NumCallSites); return Label; } static std::string getEdgeSourceLabel(const CallGraph::Node *Node, CallGraph::child_iterator I) { std::string Label; raw_string_ostream O(Label); SILInstruction *Inst = I.baseIter->FAS.getInstruction(); O << '%' << Node->CG->InstToIDMap[Inst->asSILNode()]; return Label; } static std::string getEdgeAttributes(const CallGraph::Node *Node, CallGraph::child_iterator I, const CallGraph *Graph) { CallGraph::Edge *Edge = I.baseIter; if (Edge->Incomplete) return "color=\"red\""; return ""; } }; } // namespace llvm #endif void SILPassManager::viewCallGraph() { /// When asserts are disabled, this should be a NoOp. #ifndef NDEBUG CallGraph OCG(getModule(), getAnalysis()); llvm::ViewGraph(&OCG, "callgraph"); #endif } //===----------------------------------------------------------------------===// // SwiftPassInvocation //===----------------------------------------------------------------------===// void SwiftPassInvocation::startModulePassRun(SILModuleTransform *transform) { ASSERT(!this->function && !this->transform && "a pass is already running"); this->transform = transform; } void SwiftPassInvocation::finishedModulePassRun() { ASSERT(!function && transform && "not running a module pass"); if (changeNotifications != 0) { ASSERT((changeNotifications & ~SILContext::NotificationKind::FunctionTables) == 0 && "a module pass must change the SIL of a function"); passManager->invalidateFunctionTables(); changeNotifications = SILContext::NotificationKind::Nothing; } transform = nullptr; verifyEverythingIsCleared(); } void SwiftPassInvocation::startFunctionPassRun(SILFunctionTransform *transform) { ASSERT(!this->function && !this->transform && "a pass is already running"); this->transform = transform; this->function = transform->getFunction(); } void SwiftPassInvocation::finishedFunctionPassRun() { ASSERT(function && transform && "not running a function pass"); ASSERT((changeNotifications & SILContext::NotificationKind::FunctionTables) == 0 && "a function pass must not change function tables"); if (changeNotifications != SILContext::NotificationKind::Nothing) { passManager->invalidateAnalysis(function, (SILAnalysis::InvalidationKind)changeNotifications); } changeNotifications = SILContext::NotificationKind::Nothing; insertedPhisBySSAUpdater.clear(); if (ssaUpdater) { delete ssaUpdater; ssaUpdater = nullptr; } function = nullptr; transform = nullptr; verifyEverythingIsCleared(); } void SwiftPassInvocation::startInstructionPassRun(SILInstruction *inst) { ASSERT(inst->getFunction() == function && "running instruction pass on wrong function"); } void SwiftPassInvocation::finishedInstructionPassRun() { verifyEverythingIsCleared(); } void SwiftPassInvocation::verifyEverythingIsCleared() { ASSERT(!needFixStackNesting && "Stack nesting not fixed"); SILContext::verifyEverythingIsCleared(); } void SwiftPassInvocation::beginVerifyFunction(SILFunction *function) { if (transform) { ASSERT(this->function == function); } else { ASSERT(!this->function); this->function = function; } } void SwiftPassInvocation::endVerifyFunction() { ASSERT(function); if (!transform) { verifyEverythingIsCleared(); function = nullptr; } } irgen::IRGenModule *SwiftPassInvocation::getIRGenModule() { return passManager->getIRGenModule(); } SwiftPassInvocation::~SwiftPassInvocation() {} SILFunction *SwiftPassInvocation:: createEmptyFunction(StringRef name, ArrayRef params, bool hasSelfParam, SILFunction *fromFn) { CanSILFunctionType fTy = fromFn->getLoweredFunctionType(); assert(fromFn->getGenericSignature().isNull() && "generic functions are not supported"); auto extInfo = fTy->getExtInfo(); if (fTy->hasSelfParam() && !hasSelfParam) extInfo = extInfo.withRepresentation(SILFunctionTypeRepresentation::Thin); CanSILFunctionType newTy = SILFunctionType::get( /*GenericSignature=*/nullptr, extInfo, fTy->getCoroutineKind(), fTy->getCalleeConvention(), params, fTy->getYields(), fTy->getResults(), fTy->getOptionalErrorResult(), SubstitutionMap(), SubstitutionMap(), getModule()->getASTContext()); SILOptFunctionBuilder functionBuilder(*getTransform()); SILFunction *newF = functionBuilder.createFunction( fromFn->getLinkage(), name, newTy, nullptr, fromFn->getLocation(), fromFn->isBare(), fromFn->isTransparent(), fromFn->getSerializedKind(), IsNotDynamic, IsNotDistributed, IsNotRuntimeAccessible, fromFn->getEntryCount(), fromFn->isThunk(), fromFn->getClassSubclassScope(), fromFn->getInlineStrategy(), fromFn->getEffectsKind(), nullptr, fromFn->getDebugScope()); return newF; } void SwiftPassInvocation::moveFunctionBody(SILFunction *sourceFn, SILFunction *destFn) { destFn->moveAllBlocksFromOtherFunction(sourceFn); getPassManager()->invalidateAnalysis(sourceFn, SILAnalysis::InvalidationKind::Everything); getPassManager()->invalidateAnalysis(destFn, SILAnalysis::InvalidationKind::Everything); } SILFunction *SwiftPassInvocation::lookupStdlibFunction(StringRef name) { SmallVector results; getModule()->getASTContext().lookupInSwiftModule(name, results); if (results.size() != 1) return nullptr; auto *decl = dyn_cast(results.front()); if (!decl) return nullptr; SILDeclRef declRef(decl, SILDeclRef::Kind::Func); SILOptFunctionBuilder funcBuilder(*getTransform()); return funcBuilder.getOrCreateFunction(SILLocation(decl), declRef, NotForDefinition); } void SwiftPassInvocation::initializeSSAUpdater(SILFunction *function, SILType type, ValueOwnershipKind ownership) { if (!ssaUpdater) ssaUpdater = new SILSSAUpdater(&insertedPhisBySSAUpdater); ssaUpdater->initialize(function, type, ownership); } void SwiftPassInvocation::SSAUpdater_addAvailableValue(SILBasicBlock *block, SILValue value) { ssaUpdater->addAvailableValue(block, value); } SILValue SwiftPassInvocation::SSAUpdater_getValueAtEndOfBlock(SILBasicBlock *block) { return ssaUpdater->getValueAtEndOfBlock(block); } SILValue SwiftPassInvocation::SSAUpdater_getValueInMiddleOfBlock(SILBasicBlock *block) { return ssaUpdater->getValueInMiddleOfBlock(block); }