diff options
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Analysis/CGSCCPassManager.cpp | 32 | ||||
| -rw-r--r-- | llvm/lib/IR/PassManager.cpp | 67 | 
2 files changed, 0 insertions, 99 deletions
diff --git a/llvm/lib/Analysis/CGSCCPassManager.cpp b/llvm/lib/Analysis/CGSCCPassManager.cpp index 7e86d66a64c..659e37b4d62 100644 --- a/llvm/lib/Analysis/CGSCCPassManager.cpp +++ b/llvm/lib/Analysis/CGSCCPassManager.cpp @@ -17,38 +17,6 @@ static cl::opt<bool>      DebugPM("debug-cgscc-pass-manager", cl::Hidden,              cl::desc("Print CGSCC pass management debugging information")); -PreservedAnalyses CGSCCPassManager::run(LazyCallGraph::SCC &C, -                                        CGSCCAnalysisManager *AM) { -  PreservedAnalyses PA = PreservedAnalyses::all(); - -  if (DebugPM) -    dbgs() << "Starting CGSCC pass manager run.\n"; - -  for (unsigned Idx = 0, Size = Passes.size(); Idx != Size; ++Idx) { -    if (DebugPM) -      dbgs() << "Running CGSCC pass: " << Passes[Idx]->name() << "\n"; - -    PreservedAnalyses PassPA = Passes[Idx]->run(C, AM); - -    // If we have an active analysis manager at this level we want to ensure we -    // update it as each pass runs and potentially invalidates analyses. We -    // also update the preserved set of analyses based on what analyses we have -    // already handled the invalidation for here and don't need to invalidate -    // when finished. -    if (AM) -      PassPA = AM->invalidate(C, std::move(PassPA)); - -    // Finally, we intersect the final preserved analyses to compute the -    // aggregate preserved set for this pass manager. -    PA.intersect(std::move(PassPA)); -  } - -  if (DebugPM) -    dbgs() << "Finished CGSCC pass manager run.\n"; - -  return PA; -} -  char CGSCCAnalysisManagerModuleProxy::PassID;  CGSCCAnalysisManagerModuleProxy::Result diff --git a/llvm/lib/IR/PassManager.cpp b/llvm/lib/IR/PassManager.cpp index 91533cc175a..3e6efb70260 100644 --- a/llvm/lib/IR/PassManager.cpp +++ b/llvm/lib/IR/PassManager.cpp @@ -18,73 +18,6 @@ cl::opt<bool> llvm::detail::DebugPM(      "debug-pass-manager", cl::Hidden,      cl::desc("Print pass management debugging information")); -PreservedAnalyses ModulePassManager::run(Module &M, ModuleAnalysisManager *AM) { -  PreservedAnalyses PA = PreservedAnalyses::all(); - -  if (DebugPM) -    dbgs() << "Starting module pass manager run.\n"; - -  for (unsigned Idx = 0, Size = Passes.size(); Idx != Size; ++Idx) { -    if (DebugPM) -      dbgs() << "Running module pass: " << Passes[Idx]->name() << "\n"; - -    PreservedAnalyses PassPA = Passes[Idx]->run(M, AM); - -    // If we have an active analysis manager at this level we want to ensure we -    // update it as each pass runs and potentially invalidates analyses. We -    // also update the preserved set of analyses based on what analyses we have -    // already handled the invalidation for here and don't need to invalidate -    // when finished. -    if (AM) -      PassPA = AM->invalidate(M, std::move(PassPA)); - -    // Finally, we intersect the final preserved analyses to compute the -    // aggregate preserved set for this pass manager. -    PA.intersect(std::move(PassPA)); - -    M.getContext().yield(); -  } - -  if (DebugPM) -    dbgs() << "Finished module pass manager run.\n"; - -  return PA; -} - -PreservedAnalyses FunctionPassManager::run(Function &F, -                                           FunctionAnalysisManager *AM) { -  PreservedAnalyses PA = PreservedAnalyses::all(); - -  if (DebugPM) -    dbgs() << "Starting function pass manager run.\n"; - -  for (unsigned Idx = 0, Size = Passes.size(); Idx != Size; ++Idx) { -    if (DebugPM) -      dbgs() << "Running function pass: " << Passes[Idx]->name() << "\n"; - -    PreservedAnalyses PassPA = Passes[Idx]->run(F, AM); - -    // If we have an active analysis manager at this level we want to ensure we -    // update it as each pass runs and potentially invalidates analyses. We -    // also update the preserved set of analyses based on what analyses we have -    // already handled the invalidation for here and don't need to invalidate -    // when finished. -    if (AM) -      PassPA = AM->invalidate(F, std::move(PassPA)); - -    // Finally, we intersect the final preserved analyses to compute the -    // aggregate preserved set for this pass manager. -    PA.intersect(std::move(PassPA)); - -    F.getContext().yield(); -  } - -  if (DebugPM) -    dbgs() << "Finished function pass manager run.\n"; - -  return PA; -} -  char FunctionAnalysisManagerModuleProxy::PassID;  FunctionAnalysisManagerModuleProxy::Result  | 

