mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
55b2eb3ef8
* Increases consistency with other iterators (e.g. df_iterator, po_iterator...) * It's shorter * We don't name classes by the implementation, we name it for the interface! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8273 91177308-0d34-0410-b5e6-96231b3b80d8
31 lines
1.2 KiB
C++
31 lines
1.2 KiB
C++
//===- CallGraphSCCPass.cpp - Pass that operates BU on call graph ---------===//
|
|
//
|
|
// This file implements the CallGraphSCCPass class, which is used for passes
|
|
// which are implemented as bottom-up traversals on the call graph. Because
|
|
// there may be cycles in the call graph, passes of this type operate on the
|
|
// call-graph in SCC order: that is, they process function bottom-up, except for
|
|
// recursive functions, which they process all at once.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/CallGraphSCCPass.h"
|
|
#include "llvm/Analysis/CallGraph.h"
|
|
#include "Support/SCCIterator.h"
|
|
|
|
/// getAnalysisUsage - For this class, we declare that we require and preserve
|
|
/// the call graph. If the derived class implements this method, it should
|
|
/// always explicitly call the implementation here.
|
|
void CallGraphSCCPass::getAnalysisUsage(AnalysisUsage &AU) const {
|
|
AU.addRequired<CallGraph>();
|
|
AU.addPreserved<CallGraph>();
|
|
}
|
|
|
|
bool CallGraphSCCPass::run(Module &M) {
|
|
CallGraph &CG = getAnalysis<CallGraph>();
|
|
bool Changed = false;
|
|
for (scc_iterator<CallGraph*> I = scc_begin(&CG), E = scc_end(&CG);
|
|
I != E; ++I)
|
|
Changed = runOnSCC(*I);
|
|
return Changed;
|
|
}
|