[PM] Split the CallGraph out from the ModulePass which creates the
authorChandler Carruth <chandlerc@gmail.com>
Tue, 26 Nov 2013 04:19:30 +0000 (04:19 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Tue, 26 Nov 2013 04:19:30 +0000 (04:19 +0000)
commit54fec07ec00b4449393a66e8e2e62fd241781f80
tree6bbf30c8cf3c092fe0c5035e0705c6aa912eada3
parentbdd300b22cec875c3400378b1badd943988b3f9d
[PM] Split the CallGraph out from the ModulePass which creates the
CallGraph.

This makes the CallGraph a totally generic analysis object that is the
container for the graph data structure and the primary interface for
querying and manipulating it. The pass logic is separated into its own
class. For compatibility reasons, the pass provides wrapper methods for
most of the methods on CallGraph -- they all just forward.

This will allow the new pass manager infrastructure to provide its own
analysis pass that constructs the same CallGraph object and makes it
available. The idea is that in the new pass manager, the analysis pass's
'run' method returns a concrete analysis 'result'. Here, that result is
a 'CallGraph'. The 'run' method will typically do only minimal work,
deferring much of the work into the implementation of the result object
in order to be lazy about computing things, but when (like DomTree)
there is *some* up-front computation, the analysis does it prior to
handing the result back to the querying pass.

I know some of this is fairly ugly. I'm happy to change it around if
folks can suggest a cleaner interim state, but there is going to be some
amount of unavoidable ugliness during the transition period. The good
thing is that this is very limited and will naturally go away when the
old pass infrastructure goes away. It won't hang around to bother us
later.

Next up is the initial new-PM-style call graph analysis. =]

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195722 91177308-0d34-0410-b5e6-96231b3b80d8
17 files changed:
include/llvm/Analysis/CallGraph.h
include/llvm/InitializePasses.h
lib/Analysis/IPA/CallGraph.cpp
lib/Analysis/IPA/CallGraphSCCPass.cpp
lib/Analysis/IPA/CallPrinter.cpp
lib/Analysis/IPA/GlobalsModRef.cpp
lib/Analysis/IPA/IPA.cpp
lib/Transforms/IPO/ArgumentPromotion.cpp
lib/Transforms/IPO/FunctionAttrs.cpp
lib/Transforms/IPO/InlineAlways.cpp
lib/Transforms/IPO/InlineSimple.cpp
lib/Transforms/IPO/Inliner.cpp
lib/Transforms/IPO/Internalize.cpp
lib/Transforms/IPO/PruneEH.cpp
tools/opt/AnalysisWrappers.cpp
tools/opt/PrintSCC.cpp
unittests/IR/LegacyPassManagerTest.cpp