diff options
author | Cameron Zwarich <zwarich@apple.com> | 2011-01-08 17:01:52 +0000 |
---|---|---|
committer | Cameron Zwarich <zwarich@apple.com> | 2011-01-08 17:01:52 +0000 |
commit | 84986b298ae1110529871a19e1b4c9ab81281e10 (patch) | |
tree | acfb2a73430bb63c7a0e038371a245b35f6724d0 /llvm/lib/CodeGen/UnreachableBlockElim.cpp | |
parent | 45e6c195d7f48a9507edb4888db2964f1cd928d7 (diff) | |
download | bcm5719-llvm-84986b298ae1110529871a19e1b4c9ab81281e10.tar.gz bcm5719-llvm-84986b298ae1110529871a19e1b4c9ab81281e10.zip |
Make more passes preserve dominators (or state that they preserve dominators if
they all ready do). This removes two dominator recomputations prior to isel,
which is a 1% improvement in total llc time for 403.gcc.
The only potentially suspect thing is making GCStrategy recompute dominators if
it used a custom lowering strategy.
llvm-svn: 123064
Diffstat (limited to 'llvm/lib/CodeGen/UnreachableBlockElim.cpp')
-rw-r--r-- | llvm/lib/CodeGen/UnreachableBlockElim.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/UnreachableBlockElim.cpp b/llvm/lib/CodeGen/UnreachableBlockElim.cpp index 4fdb2288247..48d8ab1658d 100644 --- a/llvm/lib/CodeGen/UnreachableBlockElim.cpp +++ b/llvm/lib/CodeGen/UnreachableBlockElim.cpp @@ -26,6 +26,7 @@ #include "llvm/Function.h" #include "llvm/Pass.h" #include "llvm/Type.h" +#include "llvm/Analysis/Dominators.h" #include "llvm/Analysis/ProfileInfo.h" #include "llvm/CodeGen/MachineDominators.h" #include "llvm/CodeGen/MachineFunctionPass.h" @@ -48,6 +49,7 @@ namespace { } virtual void getAnalysisUsage(AnalysisUsage &AU) const { + AU.addPreserved<DominatorTree>(); AU.addPreserved<ProfileInfo>(); } }; |