[PM] Add a new-PM-style CGSCC pass manager using the newly added
authorChandler Carruth <chandlerc@gmail.com>
Mon, 21 Apr 2014 11:12:00 +0000 (11:12 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Mon, 21 Apr 2014 11:12:00 +0000 (11:12 +0000)
commit57418d8f549cde1969e09ab8909869131abb739f
treecf0f4abea6d4bf6a3c32162affea26182d10e3b6
parent6060969b9b8966377cffdedb65b326420e6af76a
[PM] Add a new-PM-style CGSCC pass manager using the newly added
LazyCallGraph analysis framework. Wire it up all the way through the opt
driver and add some very basic testing that we can build pass pipelines
including these components. Still a lot more to do in terms of testing
that all of this works, but the basic pieces are here.

There is a *lot* of boiler plate here. It's something I'm going to
actively look at reducing, but I don't have any immediate ideas that
don't end up making the code terribly complex in order to fold away the
boilerplate. Until I figure out something to minimize the boilerplate,
almost all of this is based on the code for the existing pass managers,
copied and heavily adjusted to suit the needs of the CGSCC pass
management layer.

The actual CG management still has a bunch of FIXMEs in it. Notably, we
don't do *any* updating of the CG as it is potentially invalidated.
I wanted to get this in place to motivate the new analysis, and add
update APIs to the analysis and the pass management layers in concert to
make sure that the *right* APIs are present.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206745 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/Analysis/CGSCCPassManager.h [new file with mode: 0644]
lib/Analysis/CGSCCPassManager.cpp [new file with mode: 0644]
lib/Analysis/CMakeLists.txt
test/Other/pass-pipeline-parsing.ll
tools/opt/NewPMDriver.cpp
tools/opt/PassRegistry.def
tools/opt/Passes.cpp