From: Chris Lattner Date: Mon, 29 Apr 2002 18:13:11 +0000 (+0000) Subject: Eliminate dead global variables X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=f772f8ef387b9b168f814e5a7c4f9cc0834894bc;p=oota-llvm.git Eliminate dead global variables git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2400 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/IPO/GlobalDCE.cpp b/lib/Transforms/IPO/GlobalDCE.cpp index 2f938079a84..a0614e2bf31 100644 --- a/lib/Transforms/IPO/GlobalDCE.cpp +++ b/lib/Transforms/IPO/GlobalDCE.cpp @@ -6,9 +6,10 @@ //===----------------------------------------------------------------------===// #include "llvm/Transforms/IPO/GlobalDCE.h" -#include "llvm/Analysis/CallGraph.h" #include "llvm/Module.h" #include "llvm/Function.h" +#include "llvm/GlobalVariable.h" +#include "llvm/Analysis/CallGraph.h" #include "Support/DepthFirstIterator.h" static bool RemoveUnreachableFunctions(Module *M, CallGraph &CallGraph) { @@ -45,6 +46,22 @@ static bool RemoveUnreachableFunctions(Module *M, CallGraph &CallGraph) { return true; } +static bool RemoveUnreachableGlobalVariables(Module *M) { + bool Changed = false; + // Eliminate all global variables that are unused, and that are internal, or + // do not have an initializer. + // + for (Module::giterator I = M->gbegin(); I != M->gend(); ) + if (!(*I)->use_empty() || + ((*I)->hasExternalLinkage() && (*I)->hasInitializer())) + ++I; // Cannot eliminate global variable + else { + delete M->getGlobalList().remove(I); + Changed = true; + } + return Changed; +} + namespace { struct GlobalDCE : public Pass { const char *getPassName() const { return "Dead Global Elimination"; } @@ -53,7 +70,8 @@ namespace { // the specified callgraph to reflect the changes. // bool run(Module *M) { - return RemoveUnreachableFunctions(M, getAnalysis()); + return RemoveUnreachableFunctions(M, getAnalysis()) | + RemoveUnreachableGlobalVariables(M); } // getAnalysisUsage - This function works on the call graph of a module.