diff options
| author | Owen Anderson <resistor@mac.com> | 2010-10-12 19:48:12 +0000 |
|---|---|---|
| committer | Owen Anderson <resistor@mac.com> | 2010-10-12 19:48:12 +0000 |
| commit | 8ac477ffb509943c940ce37f45b8429388dfdf58 (patch) | |
| tree | 5a2e58c26e0101534213aaf595a9ee348ee8b63f /llvm/lib/CodeGen/StrongPHIElimination.cpp | |
| parent | 604e142844b7eee7d995e04b9042904b3849d571 (diff) | |
| download | bcm5719-llvm-8ac477ffb509943c940ce37f45b8429388dfdf58.tar.gz bcm5719-llvm-8ac477ffb509943c940ce37f45b8429388dfdf58.zip | |
Begin adding static dependence information to passes, which will allow us to
perform initialization without static constructors AND without explicit initialization
by the client. For the moment, passes are required to initialize both their
(potential) dependencies and any passes they preserve. I hope to be able to relax
the latter requirement in the future.
llvm-svn: 116334
Diffstat (limited to 'llvm/lib/CodeGen/StrongPHIElimination.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/StrongPHIElimination.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/StrongPHIElimination.cpp b/llvm/lib/CodeGen/StrongPHIElimination.cpp index 55b2897bab1..223f0a2820e 100644 --- a/llvm/lib/CodeGen/StrongPHIElimination.cpp +++ b/llvm/lib/CodeGen/StrongPHIElimination.cpp @@ -150,7 +150,12 @@ namespace { } char StrongPHIElimination::ID = 0; -INITIALIZE_PASS(StrongPHIElimination, "strong-phi-node-elimination", +INITIALIZE_PASS_BEGIN(StrongPHIElimination, "strong-phi-node-elimination", + "Eliminate PHI nodes for register allocation, intelligently", false, false) +INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree) +INITIALIZE_PASS_DEPENDENCY(SlotIndexes) +INITIALIZE_PASS_DEPENDENCY(LiveIntervals) +INITIALIZE_PASS_END(StrongPHIElimination, "strong-phi-node-elimination", "Eliminate PHI nodes for register allocation, intelligently", false, false) char &llvm::StrongPHIEliminationID = StrongPHIElimination::ID; |

