blob: b7fa5dc7b9edbea0cc19198048aca8c13ef4f57b [file] [log] [blame]
Chris Lattner2fbfdcf2002-04-07 20:49:59 +00001//===-- GlobalDCE.cpp - DCE unreachable internal functions ----------------===//
John Criswellb576c942003-10-20 19:43:21 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Chris Lattner30474bb2001-11-26 18:42:17 +00009//
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000010// This transform is designed to eliminate unreachable internal globals from the
11// program. It uses an aggressive algorithm, searching out globals that are
12// known to be alive. After it finds all of the globals which are needed, it
13// deletes whatever is left over. This allows it to delete recursive chunks of
14// the program which are unreachable.
Chris Lattner30474bb2001-11-26 18:42:17 +000015//
16//===----------------------------------------------------------------------===//
17
Chris Lattner568ddab2002-07-24 17:12:05 +000018#include "llvm/Transforms/IPO.h"
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000019#include "llvm/Constants.h"
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000020#include "llvm/Module.h"
21#include "llvm/Pass.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000022#include "llvm/ADT/Statistic.h"
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000023#include <set>
Chris Lattner1e2385b2003-11-21 21:54:22 +000024using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000025
Chris Lattnerbd0ef772002-02-26 21:46:54 +000026namespace {
Chris Lattnera92f6962002-10-01 22:38:41 +000027 Statistic<> NumFunctions("globaldce","Number of functions removed");
28 Statistic<> NumVariables("globaldce","Number of global variables removed");
Chris Lattnera92f6962002-10-01 22:38:41 +000029
Chris Lattnerb12914b2004-09-20 04:48:05 +000030 struct GlobalDCE : public ModulePass {
Chris Lattnerbd0ef772002-02-26 21:46:54 +000031 // run - Do the GlobalDCE pass on the specified module, optionally updating
32 // the specified callgraph to reflect the changes.
33 //
Chris Lattnerb12914b2004-09-20 04:48:05 +000034 bool runOnModule(Module &M);
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000035
36 private:
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000037 std::set<GlobalValue*> AliveGlobals;
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000038
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000039 /// MarkGlobalIsNeeded - the specific global value as needed, and
40 /// recursively mark anything that it uses as also needed.
41 void GlobalIsNeeded(GlobalValue *GV);
42 void MarkUsedGlobalsAsNeeded(Constant *C);
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000043
Reid Spencer0c4a0412004-07-18 00:25:04 +000044 bool SafeToDestroyConstant(Constant* C);
45 bool RemoveUnusedGlobalValue(GlobalValue &GV);
Chris Lattnerbd0ef772002-02-26 21:46:54 +000046 };
Chris Lattner1e435162002-07-26 21:12:44 +000047 RegisterOpt<GlobalDCE> X("globaldce", "Dead Global Elimination");
Chris Lattner793c6b82002-01-31 00:45:11 +000048}
49
Chris Lattnerb12914b2004-09-20 04:48:05 +000050ModulePass *llvm::createGlobalDCEPass() { return new GlobalDCE(); }
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000051
Chris Lattnerb12914b2004-09-20 04:48:05 +000052bool GlobalDCE::runOnModule(Module &M) {
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000053 bool Changed = false;
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000054 // Loop over the module, adding globals which are obviously necessary.
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000055 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
Reid Spencer0c4a0412004-07-18 00:25:04 +000056 Changed |= RemoveUnusedGlobalValue(*I);
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000057 // Functions with external linkage are needed if they have a body
Chris Lattnera2d51af2003-09-20 19:00:50 +000058 if ((!I->hasInternalLinkage() && !I->hasLinkOnceLinkage()) &&
59 !I->isExternal())
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000060 GlobalIsNeeded(I);
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000061 }
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000062
Chris Lattnere4d5c442005-03-15 04:54:21 +000063 for (Module::global_iterator I = M.global_begin(), E = M.global_end(); I != E; ++I) {
Reid Spencer0c4a0412004-07-18 00:25:04 +000064 Changed |= RemoveUnusedGlobalValue(*I);
Chris Lattnera2d51af2003-09-20 19:00:50 +000065 // Externally visible & appending globals are needed, if they have an
66 // initializer.
67 if ((!I->hasInternalLinkage() && !I->hasLinkOnceLinkage()) &&
68 !I->isExternal())
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000069 GlobalIsNeeded(I);
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000070 }
71
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000072
73 // Now that all globals which are needed are in the AliveGlobals set, we loop
74 // through the program, deleting those which are not alive.
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000075 //
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000076
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000077 // The first pass is to drop initializers of global variables which are dead.
78 std::vector<GlobalVariable*> DeadGlobalVars; // Keep track of dead globals
Chris Lattnere4d5c442005-03-15 04:54:21 +000079 for (Module::global_iterator I = M.global_begin(), E = M.global_end(); I != E; ++I)
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000080 if (!AliveGlobals.count(I)) {
81 DeadGlobalVars.push_back(I); // Keep track of dead globals
82 I->setInitializer(0);
83 }
84
85
86 // The second pass drops the bodies of functions which are dead...
87 std::vector<Function*> DeadFunctions;
88 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
89 if (!AliveGlobals.count(I)) {
90 DeadFunctions.push_back(I); // Keep track of dead globals
91 if (!I->isExternal())
92 I->deleteBody();
93 }
94
95 if (!DeadFunctions.empty()) {
96 // Now that all interreferences have been dropped, delete the actual objects
97 // themselves.
98 for (unsigned i = 0, e = DeadFunctions.size(); i != e; ++i) {
Reid Spencer0c4a0412004-07-18 00:25:04 +000099 RemoveUnusedGlobalValue(*DeadFunctions[i]);
Chris Lattner1cbcd0f2003-09-16 19:27:31 +0000100 M.getFunctionList().erase(DeadFunctions[i]);
101 }
102 NumFunctions += DeadFunctions.size();
103 Changed = true;
Chris Lattner0bfb6ba2002-08-18 01:28:30 +0000104 }
105
Chris Lattner1cbcd0f2003-09-16 19:27:31 +0000106 if (!DeadGlobalVars.empty()) {
107 for (unsigned i = 0, e = DeadGlobalVars.size(); i != e; ++i) {
Reid Spencer0c4a0412004-07-18 00:25:04 +0000108 RemoveUnusedGlobalValue(*DeadGlobalVars[i]);
Chris Lattner1cbcd0f2003-09-16 19:27:31 +0000109 M.getGlobalList().erase(DeadGlobalVars[i]);
110 }
111 NumVariables += DeadGlobalVars.size();
112 Changed = true;
113 }
114
115 // Make sure that all memory is released
116 AliveGlobals.clear();
Chris Lattner0bfb6ba2002-08-18 01:28:30 +0000117 return Changed;
118}
119
Chris Lattner1cbcd0f2003-09-16 19:27:31 +0000120/// MarkGlobalIsNeeded - the specific global value as needed, and
121/// recursively mark anything that it uses as also needed.
122void GlobalDCE::GlobalIsNeeded(GlobalValue *G) {
123 std::set<GlobalValue*>::iterator I = AliveGlobals.lower_bound(G);
124
125 // If the global is already in the set, no need to reprocess it.
126 if (I != AliveGlobals.end() && *I == G) return;
127
128 // Otherwise insert it now, so we do not infinitely recurse
129 AliveGlobals.insert(I, G);
130
131 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(G)) {
132 // If this is a global variable, we must make sure to add any global values
133 // referenced by the initializer to the alive set.
134 if (GV->hasInitializer())
135 MarkUsedGlobalsAsNeeded(GV->getInitializer());
136 } else {
137 // Otherwise this must be a function object. We have to scan the body of
138 // the function looking for constants and global values which are used as
139 // operands. Any operands of these types must be processed to ensure that
140 // any globals used will be marked as needed.
141 Function *F = cast<Function>(G);
142 // For all basic blocks...
143 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
144 // For all instructions...
145 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
146 // For all operands...
147 for (User::op_iterator U = I->op_begin(), E = I->op_end(); U != E; ++U)
148 if (GlobalValue *GV = dyn_cast<GlobalValue>(*U))
149 GlobalIsNeeded(GV);
150 else if (Constant *C = dyn_cast<Constant>(*U))
151 MarkUsedGlobalsAsNeeded(C);
152 }
153}
154
155void GlobalDCE::MarkUsedGlobalsAsNeeded(Constant *C) {
Reid Spencer0c4a0412004-07-18 00:25:04 +0000156 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
157 GlobalIsNeeded(GV);
Chris Lattner1cbcd0f2003-09-16 19:27:31 +0000158 else {
159 // Loop over all of the operands of the constant, adding any globals they
160 // use to the list of needed globals.
161 for (User::op_iterator I = C->op_begin(), E = C->op_end(); I != E; ++I)
162 MarkUsedGlobalsAsNeeded(cast<Constant>(*I));
163 }
164}
Chris Lattner0bfb6ba2002-08-18 01:28:30 +0000165
Reid Spencer0c4a0412004-07-18 00:25:04 +0000166// RemoveUnusedGlobalValue - Loop over all of the uses of the specified
Chris Lattner0bfb6ba2002-08-18 01:28:30 +0000167// GlobalValue, looking for the constant pointer ref that may be pointing to it.
168// If found, check to see if the constant pointer ref is safe to destroy, and if
169// so, nuke it. This will reduce the reference count on the global value, which
170// might make it deader.
171//
Reid Spencer0c4a0412004-07-18 00:25:04 +0000172bool GlobalDCE::RemoveUnusedGlobalValue(GlobalValue &GV) {
Chris Lattner25c6d682004-07-18 07:22:58 +0000173 if (GV.use_empty()) return false;
174 GV.removeDeadConstantUsers();
175 return GV.use_empty();
176}
Reid Spencer0c4a0412004-07-18 00:25:04 +0000177
Chris Lattner0bfb6ba2002-08-18 01:28:30 +0000178// SafeToDestroyConstant - It is safe to destroy a constant iff it is only used
179// by constants itself. Note that constants cannot be cyclic, so this test is
180// pretty easy to implement recursively.
181//
182bool GlobalDCE::SafeToDestroyConstant(Constant *C) {
183 for (Value::use_iterator I = C->use_begin(), E = C->use_end(); I != E; ++I)
184 if (Constant *User = dyn_cast<Constant>(*I)) {
185 if (!SafeToDestroyConstant(User)) return false;
186 } else {
187 return false;
188 }
Chris Lattner0bfb6ba2002-08-18 01:28:30 +0000189 return true;
190}