diff options
author | Chris Lattner <sabre@nondot.org> | 2001-10-18 01:32:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-10-18 01:32:34 +0000 |
commit | 5398a6eb6c371051617379809a2438712cedd49d (patch) | |
tree | 2445af8dc2451175654431f08e1059c8e8d37126 /llvm/lib/Transforms/Scalar/DCE.cpp | |
parent | f71b8274417db06af09a4fa9808813ddc84d4d1f (diff) | |
download | bcm5719-llvm-5398a6eb6c371051617379809a2438712cedd49d.tar.gz bcm5719-llvm-5398a6eb6c371051617379809a2438712cedd49d.zip |
Convert optimizations to the pass infrastructure
llvm-svn: 873
Diffstat (limited to 'llvm/lib/Transforms/Scalar/DCE.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/DCE.cpp | 25 |
1 files changed, 19 insertions, 6 deletions
diff --git a/llvm/lib/Transforms/Scalar/DCE.cpp b/llvm/lib/Transforms/Scalar/DCE.cpp index 10dcf1eeae4..e089525eca4 100644 --- a/llvm/lib/Transforms/Scalar/DCE.cpp +++ b/llvm/lib/Transforms/Scalar/DCE.cpp @@ -26,6 +26,7 @@ #include "llvm/Optimizations/DCE.h" #include "llvm/Support/STLExtras.h" #include "llvm/Module.h" +#include "llvm/GlobalVariable.h" #include "llvm/Method.h" #include "llvm/BasicBlock.h" #include "llvm/iTerminators.h" @@ -293,28 +294,40 @@ static bool DoDCEPass(Method *M) { // It is possible that we may require multiple passes over the code to fully // eliminate dead code. Iterate until we are done. // -bool opt::DoDeadCodeElimination(Method *M) { +bool opt::DeadCodeElimination::doDCE(Method *M) { bool Changed = false; while (DoDCEPass(M)) Changed = true; return Changed; } -bool opt::DoDeadCodeElimination(Module *Mod) { +bool opt::DeadCodeElimination::RemoveUnusedGlobalValues(Module *Mod) { bool Changed = false; for (Module::iterator MI = Mod->begin(); MI != Mod->end(); ) { Method *Meth = *MI; - if (!Meth->isExternal()) { // DCE normal methods - Changed |= DoDeadCodeElimination(Meth); - ++MI; // Next method please - } else if (Meth->use_size() == 0) { // No references to prototype? + if (Meth->isExternal() && Meth->use_size() == 0) { + // No references to prototype? //cerr << "Removing method proto: " << Meth->getName() << endl; delete Mod->getMethodList().remove(MI); // Remove prototype // Remove moves iterator to point to the next one automatically + Changed = true; } else { ++MI; // Skip prototype in use. } } + for (Module::giterator GI = Mod->gbegin(); GI != Mod->gend(); ) { + GlobalVariable *GV = *GI; + if (!GV->hasInitializer() && GV->use_size() == 0) { + // No references to uninitialized global variable? + //cerr << "Removing global var: " << GV->getName() << endl; + delete Mod->getGlobalList().remove(GI); + // Remove moves iterator to point to the next one automatically + Changed = true; + } else { + ++GI; + } + } + return Changed; } |