blob: f309847ecf245d73210b1af98f585c8befbda167 [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//
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.
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
Chris Lattner86453c52006-12-19 22:09:18 +000028STATISTIC(NumFunctions, "Number of functions removed");
29STATISTIC(NumVariables, "Number of global variables removed");
Chris Lattnera92f6962002-10-01 22:38:41 +000030
Chris Lattner86453c52006-12-19 22:09:18 +000031namespace {
Reid Spencer9133fe22007-02-05 23:32:05 +000032 struct VISIBILITY_HIDDEN GlobalDCE : public ModulePass {
Devang Patel19974732007-05-03 01:11:54 +000033 static char ID; // Pass identifcation, replacement for typeid
Devang Patel794fd752007-05-01 21:15:47 +000034 GlobalDCE() : ModulePass((intptr_t)&ID) {}
35
Chris Lattnerbd0ef772002-02-26 21:46:54 +000036 // run - Do the GlobalDCE pass on the specified module, optionally updating
37 // the specified callgraph to reflect the changes.
38 //
Chris Lattnerb12914b2004-09-20 04:48:05 +000039 bool runOnModule(Module &M);
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000040
41 private:
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000042 std::set<GlobalValue*> AliveGlobals;
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000043
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000044 /// MarkGlobalIsNeeded - the specific global value as needed, and
45 /// recursively mark anything that it uses as also needed.
46 void GlobalIsNeeded(GlobalValue *GV);
47 void MarkUsedGlobalsAsNeeded(Constant *C);
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000048
Reid Spencer0c4a0412004-07-18 00:25:04 +000049 bool SafeToDestroyConstant(Constant* C);
50 bool RemoveUnusedGlobalValue(GlobalValue &GV);
Chris Lattnerbd0ef772002-02-26 21:46:54 +000051 };
Devang Patel19974732007-05-03 01:11:54 +000052 char GlobalDCE::ID = 0;
Chris Lattner7f8897f2006-08-27 22:42:52 +000053 RegisterPass<GlobalDCE> X("globaldce", "Dead Global Elimination");
Chris Lattner793c6b82002-01-31 00:45:11 +000054}
55
Chris Lattnerb12914b2004-09-20 04:48:05 +000056ModulePass *llvm::createGlobalDCEPass() { return new GlobalDCE(); }
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000057
Chris Lattnerb12914b2004-09-20 04:48:05 +000058bool GlobalDCE::runOnModule(Module &M) {
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000059 bool Changed = false;
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000060 // Loop over the module, adding globals which are obviously necessary.
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000061 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
Reid Spencer0c4a0412004-07-18 00:25:04 +000062 Changed |= RemoveUnusedGlobalValue(*I);
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000063 // Functions with external linkage are needed if they have a body
Chris Lattnera2d51af2003-09-20 19:00:50 +000064 if ((!I->hasInternalLinkage() && !I->hasLinkOnceLinkage()) &&
Reid Spencer5cbf9852007-01-30 20:08:39 +000065 !I->isDeclaration())
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000066 GlobalIsNeeded(I);
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000067 }
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000068
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +000069 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
70 I != E; ++I) {
Reid Spencer0c4a0412004-07-18 00:25:04 +000071 Changed |= RemoveUnusedGlobalValue(*I);
Chris Lattnera2d51af2003-09-20 19:00:50 +000072 // Externally visible & appending globals are needed, if they have an
73 // initializer.
74 if ((!I->hasInternalLinkage() && !I->hasLinkOnceLinkage()) &&
Reid Spencer5cbf9852007-01-30 20:08:39 +000075 !I->isDeclaration())
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000076 GlobalIsNeeded(I);
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000077 }
78
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000079
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +000080 for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end();
81 I != E; ++I) {
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +000082 // Aliases are always needed even if they are not used.
Anton Korobeynikovc6c98af2007-04-29 18:02:48 +000083 MarkUsedGlobalsAsNeeded(I->getAliasee());
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +000084 }
85
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000086 // Now that all globals which are needed are in the AliveGlobals set, we loop
87 // through the program, deleting those which are not alive.
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000088 //
Chris Lattner0bfb6ba2002-08-18 01:28:30 +000089
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000090 // The first pass is to drop initializers of global variables which are dead.
91 std::vector<GlobalVariable*> DeadGlobalVars; // Keep track of dead globals
Chris Lattnere4d5c442005-03-15 04:54:21 +000092 for (Module::global_iterator I = M.global_begin(), E = M.global_end(); I != E; ++I)
Chris Lattner1cbcd0f2003-09-16 19:27:31 +000093 if (!AliveGlobals.count(I)) {
94 DeadGlobalVars.push_back(I); // Keep track of dead globals
95 I->setInitializer(0);
96 }
97
98
99 // The second pass drops the bodies of functions which are dead...
100 std::vector<Function*> DeadFunctions;
101 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
102 if (!AliveGlobals.count(I)) {
103 DeadFunctions.push_back(I); // Keep track of dead globals
Reid Spencer5cbf9852007-01-30 20:08:39 +0000104 if (!I->isDeclaration())
Chris Lattner1cbcd0f2003-09-16 19:27:31 +0000105 I->deleteBody();
106 }
107
108 if (!DeadFunctions.empty()) {
109 // Now that all interreferences have been dropped, delete the actual objects
110 // themselves.
111 for (unsigned i = 0, e = DeadFunctions.size(); i != e; ++i) {
Reid Spencer0c4a0412004-07-18 00:25:04 +0000112 RemoveUnusedGlobalValue(*DeadFunctions[i]);
Chris Lattner1cbcd0f2003-09-16 19:27:31 +0000113 M.getFunctionList().erase(DeadFunctions[i]);
114 }
115 NumFunctions += DeadFunctions.size();
116 Changed = true;
Chris Lattner0bfb6ba2002-08-18 01:28:30 +0000117 }
118
Chris Lattner1cbcd0f2003-09-16 19:27:31 +0000119 if (!DeadGlobalVars.empty()) {
120 for (unsigned i = 0, e = DeadGlobalVars.size(); i != e; ++i) {
Reid Spencer0c4a0412004-07-18 00:25:04 +0000121 RemoveUnusedGlobalValue(*DeadGlobalVars[i]);
Chris Lattner1cbcd0f2003-09-16 19:27:31 +0000122 M.getGlobalList().erase(DeadGlobalVars[i]);
123 }
124 NumVariables += DeadGlobalVars.size();
125 Changed = true;
126 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000127
Chris Lattner1cbcd0f2003-09-16 19:27:31 +0000128 // Make sure that all memory is released
129 AliveGlobals.clear();
Chris Lattner0bfb6ba2002-08-18 01:28:30 +0000130 return Changed;
131}
132
Chris Lattner1cbcd0f2003-09-16 19:27:31 +0000133/// MarkGlobalIsNeeded - the specific global value as needed, and
134/// recursively mark anything that it uses as also needed.
135void GlobalDCE::GlobalIsNeeded(GlobalValue *G) {
136 std::set<GlobalValue*>::iterator I = AliveGlobals.lower_bound(G);
137
138 // If the global is already in the set, no need to reprocess it.
139 if (I != AliveGlobals.end() && *I == G) return;
140
141 // Otherwise insert it now, so we do not infinitely recurse
142 AliveGlobals.insert(I, G);
143
144 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(G)) {
145 // If this is a global variable, we must make sure to add any global values
146 // referenced by the initializer to the alive set.
147 if (GV->hasInitializer())
148 MarkUsedGlobalsAsNeeded(GV->getInitializer());
Anton Korobeynikova80e1182007-04-28 13:45:00 +0000149 } else if (!isa<GlobalAlias>(G)) {
Chris Lattner1cbcd0f2003-09-16 19:27:31 +0000150 // Otherwise this must be a function object. We have to scan the body of
151 // the function looking for constants and global values which are used as
152 // operands. Any operands of these types must be processed to ensure that
153 // any globals used will be marked as needed.
154 Function *F = cast<Function>(G);
155 // For all basic blocks...
156 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
157 // For all instructions...
158 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
159 // For all operands...
160 for (User::op_iterator U = I->op_begin(), E = I->op_end(); U != E; ++U)
161 if (GlobalValue *GV = dyn_cast<GlobalValue>(*U))
162 GlobalIsNeeded(GV);
163 else if (Constant *C = dyn_cast<Constant>(*U))
Misha Brukmanfd939082005-04-21 23:48:37 +0000164 MarkUsedGlobalsAsNeeded(C);
Chris Lattner1cbcd0f2003-09-16 19:27:31 +0000165 }
166}
167
168void GlobalDCE::MarkUsedGlobalsAsNeeded(Constant *C) {
Reid Spencer0c4a0412004-07-18 00:25:04 +0000169 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
170 GlobalIsNeeded(GV);
Chris Lattner1cbcd0f2003-09-16 19:27:31 +0000171 else {
172 // Loop over all of the operands of the constant, adding any globals they
173 // use to the list of needed globals.
174 for (User::op_iterator I = C->op_begin(), E = C->op_end(); I != E; ++I)
175 MarkUsedGlobalsAsNeeded(cast<Constant>(*I));
176 }
177}
Chris Lattner0bfb6ba2002-08-18 01:28:30 +0000178
Reid Spencer0c4a0412004-07-18 00:25:04 +0000179// RemoveUnusedGlobalValue - Loop over all of the uses of the specified
Chris Lattner0bfb6ba2002-08-18 01:28:30 +0000180// GlobalValue, looking for the constant pointer ref that may be pointing to it.
181// If found, check to see if the constant pointer ref is safe to destroy, and if
182// so, nuke it. This will reduce the reference count on the global value, which
183// might make it deader.
184//
Reid Spencer0c4a0412004-07-18 00:25:04 +0000185bool GlobalDCE::RemoveUnusedGlobalValue(GlobalValue &GV) {
Chris Lattner25c6d682004-07-18 07:22:58 +0000186 if (GV.use_empty()) return false;
187 GV.removeDeadConstantUsers();
188 return GV.use_empty();
189}
Misha Brukmanfd939082005-04-21 23:48:37 +0000190
Chris Lattner0bfb6ba2002-08-18 01:28:30 +0000191// SafeToDestroyConstant - It is safe to destroy a constant iff it is only used
192// by constants itself. Note that constants cannot be cyclic, so this test is
193// pretty easy to implement recursively.
194//
195bool GlobalDCE::SafeToDestroyConstant(Constant *C) {
196 for (Value::use_iterator I = C->use_begin(), E = C->use_end(); I != E; ++I)
197 if (Constant *User = dyn_cast<Constant>(*I)) {
198 if (!SafeToDestroyConstant(User)) return false;
199 } else {
200 return false;
201 }
Chris Lattner0bfb6ba2002-08-18 01:28:30 +0000202 return true;
203}