aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/MachineDominators.cpp
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2010-10-19 17:21:58 +0000
committerOwen Anderson <resistor@mac.com>2010-10-19 17:21:58 +0000
commita65d6a686e6ad865c61aec70c5bdfb30bf6f5b22 (patch)
tree5fb6448503c7a8f98fc776a9c6af43f98370e6ff /lib/CodeGen/MachineDominators.cpp
parent1ea11fd65ecb7650ec9346aa24e1b716af04a59a (diff)
downloadexternal_llvm-a65d6a686e6ad865c61aec70c5bdfb30bf6f5b22.zip
external_llvm-a65d6a686e6ad865c61aec70c5bdfb30bf6f5b22.tar.gz
external_llvm-a65d6a686e6ad865c61aec70c5bdfb30bf6f5b22.tar.bz2
Get rid of static constructors for pass registration. Instead, every pass exposes an initializeMyPassFunction(), which
must be called in the pass's constructor. This function uses static dependency declarations to recursively initialize the pass's dependencies. Clients that only create passes through the createFooPass() APIs will require no changes. Clients that want to use the CommandLine options for passes will need to manually call the appropriate initialization functions in PassInitialization.h before parsing commandline arguments. I have tested this with all standard configurations of clang and llvm-gcc on Darwin. It is possible that there are problems with the static dependencies that will only be visible with non-standard options. If you encounter any crash in pass registration/creation, please send the testcase to me directly. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116820 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineDominators.cpp')
-rw-r--r--lib/CodeGen/MachineDominators.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/MachineDominators.cpp b/lib/CodeGen/MachineDominators.cpp
index b90607a..04c8ecb 100644
--- a/lib/CodeGen/MachineDominators.cpp
+++ b/lib/CodeGen/MachineDominators.cpp
@@ -42,6 +42,7 @@ bool MachineDominatorTree::runOnMachineFunction(MachineFunction &F) {
MachineDominatorTree::MachineDominatorTree()
: MachineFunctionPass(ID) {
+ initializeMachineDominatorTreePass(*PassRegistry::getPassRegistry());
DT = new DominatorTreeBase<MachineBasicBlock>(false);
}