blob: 37ac94ae47efa36af8b11defec282bbab2b1ed7c [file] [log] [blame]
Chris Lattner2fbfdcf2002-04-07 20:49:59 +00001//===-- GlobalDCE.cpp - DCE unreachable internal functions ----------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
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 Lattner86453c52006-12-19 22:09:18 +000018#define DEBUG_TYPE "globaldce"
Chris Lattner568ddab2002-07-24 17:12:05 +000019#include "llvm/Transforms/IPO.h"
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000020#include "llvm/Constants.h"
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000021#include "llvm/Module.h"
22#include "llvm/Pass.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000023#include "llvm/ADT/Statistic.h"
Reid Spencer9133fe22007-02-05 23:32:05 +000024#include "llvm/Support/Compiler.h"
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000025#include <set>
Chris Lattner1e2385b2003-11-21 21:54:22 +000026using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000027
Duncan Sands1da5f2d2009-01-05 20:37:33 +000028STATISTIC(NumAliases, "Number of global aliases removed");
Chris Lattner86453c52006-12-19 22:09:18 +000029STATISTIC(NumFunctions, "Number of functions removed");
30STATISTIC(NumVariables, "Number of global variables removed");
Chris Lattnera92f6962002-10-01 22:38:41 +000031
Chris Lattner86453c52006-12-19 22:09:18 +000032namespace {
Reid Spencer9133fe22007-02-05 23:32:05 +000033 struct VISIBILITY_HIDDEN GlobalDCE : public ModulePass {
Nick Lewyckyecd94c82007-05-06 13:37:16 +000034 static char ID; // Pass identification, replacement for typeid
Dan Gohmanae73dc12008-09-04 17:05:41 +000035 GlobalDCE() : ModulePass(&ID) {}
Duncan Sands1da5f2d2009-01-05 20:37:33 +000036
Chris Lattnerbd0ef772002-02-26 21:46:54 +000037 // run - Do the GlobalDCE pass on the specified module, optionally updating
38 // the specified callgraph to reflect the changes.
39 //
Chris Lattnerb12914b2004-09-20 04:48:05 +000040 bool runOnModule(Module &M);
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000041
42 private:
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000043 std::set<GlobalValue*> AliveGlobals;
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000044
Duncan Sands1da5f2d2009-01-05 20:37:33 +000045 /// GlobalIsNeeded - mark the specific global value as needed, and
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000046 /// recursively mark anything that it uses as also needed.
47 void GlobalIsNeeded(GlobalValue *GV);
48 void MarkUsedGlobalsAsNeeded(Constant *C);
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000049
Reid Spencer0c4a0412004-07-18 00:25:04 +000050 bool SafeToDestroyConstant(Constant* C);
51 bool RemoveUnusedGlobalValue(GlobalValue &GV);
Chris Lattnerbd0ef772002-02-26 21:46:54 +000052 };
Chris Lattner793c6b82002-01-31 00:45:11 +000053}
54
Dan Gohman844731a2008-05-13 00:00:25 +000055char GlobalDCE::ID = 0;
56static RegisterPass<GlobalDCE> X("globaldce", "Dead Global Elimination");
57
Chris Lattnerb12914b2004-09-20 04:48:05 +000058ModulePass *llvm::createGlobalDCEPass() { return new GlobalDCE(); }
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000059
Chris Lattnerb12914b2004-09-20 04:48:05 +000060bool GlobalDCE::runOnModule(Module &M) {
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000061 bool Changed = false;
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000062 // Loop over the module, adding globals which are obviously necessary.
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000063 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
Reid Spencer0c4a0412004-07-18 00:25:04 +000064 Changed |= RemoveUnusedGlobalValue(*I);
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000065 // Functions with external linkage are needed if they have a body
Chris Lattnera2d51af2003-09-20 19:00:50 +000066 if ((!I->hasInternalLinkage() && !I->hasLinkOnceLinkage()) &&
Reid Spencer5cbf9852007-01-30 20:08:39 +000067 !I->isDeclaration())
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000068 GlobalIsNeeded(I);
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000069 }
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000070
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +000071 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
72 I != E; ++I) {
Reid Spencer0c4a0412004-07-18 00:25:04 +000073 Changed |= RemoveUnusedGlobalValue(*I);
Chris Lattnera2d51af2003-09-20 19:00:50 +000074 // Externally visible & appending globals are needed, if they have an
75 // initializer.
76 if ((!I->hasInternalLinkage() && !I->hasLinkOnceLinkage()) &&
Reid Spencer5cbf9852007-01-30 20:08:39 +000077 !I->isDeclaration())
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000078 GlobalIsNeeded(I);
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000079 }
80
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +000081 for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end();
82 I != E; ++I) {
Duncan Sands1da5f2d2009-01-05 20:37:33 +000083 Changed |= RemoveUnusedGlobalValue(*I);
84 // Externally visible aliases are needed.
85 if (!I->hasInternalLinkage() && !I->hasLinkOnceLinkage())
86 GlobalIsNeeded(I);
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +000087 }
88
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000089 // Now that all globals which are needed are in the AliveGlobals set, we loop
90 // through the program, deleting those which are not alive.
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000091 //
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000092
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000093 // The first pass is to drop initializers of global variables which are dead.
94 std::vector<GlobalVariable*> DeadGlobalVars; // Keep track of dead globals
Chris Lattnere4d5c442005-03-15 04:54:21 +000095 for (Module::global_iterator I = M.global_begin(), E = M.global_end(); I != E; ++I)
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000096 if (!AliveGlobals.count(I)) {
97 DeadGlobalVars.push_back(I); // Keep track of dead globals
98 I->setInitializer(0);
99 }
100
Chris Lattner1cbcd0f2003-09-16 19:27:31 +0000101 // The second pass drops the bodies of functions which are dead...
102 std::vector<Function*> DeadFunctions;
103 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
104 if (!AliveGlobals.count(I)) {
105 DeadFunctions.push_back(I); // Keep track of dead globals
Reid Spencer5cbf9852007-01-30 20:08:39 +0000106 if (!I->isDeclaration())
Chris Lattner1cbcd0f2003-09-16 19:27:31 +0000107 I->deleteBody();
108 }
109
110 if (!DeadFunctions.empty()) {
Duncan Sands1da5f2d2009-01-05 20:37:33 +0000111 // Now that all interferences have been dropped, delete the actual objects
Chris Lattner1cbcd0f2003-09-16 19:27:31 +0000112 // themselves.
113 for (unsigned i = 0, e = DeadFunctions.size(); i != e; ++i) {
Reid Spencer0c4a0412004-07-18 00:25:04 +0000114 RemoveUnusedGlobalValue(*DeadFunctions[i]);
Chris Lattner1cbcd0f2003-09-16 19:27:31 +0000115 M.getFunctionList().erase(DeadFunctions[i]);
116 }
117 NumFunctions += DeadFunctions.size();
118 Changed = true;
Chris Lattner0bfb6ba2002-08-18 01:28:30 +0000119 }
120
Chris Lattner1cbcd0f2003-09-16 19:27:31 +0000121 if (!DeadGlobalVars.empty()) {
122 for (unsigned i = 0, e = DeadGlobalVars.size(); i != e; ++i) {
Reid Spencer0c4a0412004-07-18 00:25:04 +0000123 RemoveUnusedGlobalValue(*DeadGlobalVars[i]);
Chris Lattner1cbcd0f2003-09-16 19:27:31 +0000124 M.getGlobalList().erase(DeadGlobalVars[i]);
125 }
126 NumVariables += DeadGlobalVars.size();
127 Changed = true;
128 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000129
Duncan Sands1da5f2d2009-01-05 20:37:33 +0000130 // Now delete any dead aliases.
131 for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end(); I != E;) {
132 Module::alias_iterator J = I++;
133 if (!AliveGlobals.count(J)) {
134 RemoveUnusedGlobalValue(*J);
135 M.getAliasList().erase(J);
136 ++NumAliases;
137 Changed = true;
138 }
139 }
140
Chris Lattner1cbcd0f2003-09-16 19:27:31 +0000141 // Make sure that all memory is released
142 AliveGlobals.clear();
Chris Lattner0bfb6ba2002-08-18 01:28:30 +0000143 return Changed;
144}
145
Devang Patel772777e2008-11-11 19:16:41 +0000146/// GlobalIsNeeded - the specific global value as needed, and
Chris Lattner1cbcd0f2003-09-16 19:27:31 +0000147/// recursively mark anything that it uses as also needed.
148void GlobalDCE::GlobalIsNeeded(GlobalValue *G) {
Dan Gohmanc418bf32008-07-11 20:58:19 +0000149 std::set<GlobalValue*>::iterator I = AliveGlobals.find(G);
Chris Lattner1cbcd0f2003-09-16 19:27:31 +0000150
151 // If the global is already in the set, no need to reprocess it.
Dan Gohmanc418bf32008-07-11 20:58:19 +0000152 if (I != AliveGlobals.end()) return;
Chris Lattner1cbcd0f2003-09-16 19:27:31 +0000153
154 // Otherwise insert it now, so we do not infinitely recurse
155 AliveGlobals.insert(I, G);
156
157 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(G)) {
158 // If this is a global variable, we must make sure to add any global values
159 // referenced by the initializer to the alive set.
160 if (GV->hasInitializer())
161 MarkUsedGlobalsAsNeeded(GV->getInitializer());
Duncan Sands1da5f2d2009-01-05 20:37:33 +0000162 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(G)) {
163 // The target of a global alias is needed.
164 MarkUsedGlobalsAsNeeded(GA->getAliasee());
165 } else {
Chris Lattner1cbcd0f2003-09-16 19:27:31 +0000166 // Otherwise this must be a function object. We have to scan the body of
167 // the function looking for constants and global values which are used as
168 // operands. Any operands of these types must be processed to ensure that
169 // any globals used will be marked as needed.
170 Function *F = cast<Function>(G);
171 // For all basic blocks...
172 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
173 // For all instructions...
174 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
175 // For all operands...
176 for (User::op_iterator U = I->op_begin(), E = I->op_end(); U != E; ++U)
177 if (GlobalValue *GV = dyn_cast<GlobalValue>(*U))
178 GlobalIsNeeded(GV);
179 else if (Constant *C = dyn_cast<Constant>(*U))
Misha Brukmanfd939082005-04-21 23:48:37 +0000180 MarkUsedGlobalsAsNeeded(C);
Chris Lattner1cbcd0f2003-09-16 19:27:31 +0000181 }
182}
183
184void GlobalDCE::MarkUsedGlobalsAsNeeded(Constant *C) {
Reid Spencer0c4a0412004-07-18 00:25:04 +0000185 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
186 GlobalIsNeeded(GV);
Chris Lattner1cbcd0f2003-09-16 19:27:31 +0000187 else {
188 // Loop over all of the operands of the constant, adding any globals they
189 // use to the list of needed globals.
190 for (User::op_iterator I = C->op_begin(), E = C->op_end(); I != E; ++I)
191 MarkUsedGlobalsAsNeeded(cast<Constant>(*I));
192 }
193}
Chris Lattner0bfb6ba2002-08-18 01:28:30 +0000194
Reid Spencer0c4a0412004-07-18 00:25:04 +0000195// RemoveUnusedGlobalValue - Loop over all of the uses of the specified
Chris Lattner0bfb6ba2002-08-18 01:28:30 +0000196// GlobalValue, looking for the constant pointer ref that may be pointing to it.
197// If found, check to see if the constant pointer ref is safe to destroy, and if
198// so, nuke it. This will reduce the reference count on the global value, which
199// might make it deader.
200//
Reid Spencer0c4a0412004-07-18 00:25:04 +0000201bool GlobalDCE::RemoveUnusedGlobalValue(GlobalValue &GV) {
Chris Lattner25c6d682004-07-18 07:22:58 +0000202 if (GV.use_empty()) return false;
203 GV.removeDeadConstantUsers();
204 return GV.use_empty();
205}
Misha Brukmanfd939082005-04-21 23:48:37 +0000206
Chris Lattner0bfb6ba2002-08-18 01:28:30 +0000207// SafeToDestroyConstant - It is safe to destroy a constant iff it is only used
208// by constants itself. Note that constants cannot be cyclic, so this test is
209// pretty easy to implement recursively.
210//
211bool GlobalDCE::SafeToDestroyConstant(Constant *C) {
212 for (Value::use_iterator I = C->use_begin(), E = C->use_end(); I != E; ++I)
213 if (Constant *User = dyn_cast<Constant>(*I)) {
214 if (!SafeToDestroyConstant(User)) return false;
215 } else {
216 return false;
217 }
Chris Lattner0bfb6ba2002-08-18 01:28:30 +0000218 return true;
219}