blob: 17dcb31859c9251b025de3c00e4836e8409a67c6 [file] [log] [blame]
Chris Lattner62b7fd12002-04-07 20:49:59 +00001//===-- GlobalDCE.cpp - DCE unreachable internal functions ----------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-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 Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattnerbd422e62001-11-26 18:42:17 +00009//
Chris Lattnerec6d7a62003-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 Lattnerbd422e62001-11-26 18:42:17 +000015//
16//===----------------------------------------------------------------------===//
17
Chris Lattner1631bcb2006-12-19 22:09:18 +000018#define DEBUG_TYPE "globaldce"
Chris Lattner99a53f62002-07-24 17:12:05 +000019#include "llvm/Transforms/IPO.h"
Chris Lattner8f3acc62002-08-18 01:28:30 +000020#include "llvm/Constants.h"
Chris Lattnerec6d7a62003-09-16 19:27:31 +000021#include "llvm/Module.h"
22#include "llvm/Pass.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000023#include "llvm/ADT/Statistic.h"
Chris Lattnerec6d7a62003-09-16 19:27:31 +000024#include <set>
Chris Lattnerf52e03c2003-11-21 21:54:22 +000025using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000026
Chris Lattner1631bcb2006-12-19 22:09:18 +000027STATISTIC(NumFunctions, "Number of functions removed");
28STATISTIC(NumVariables, "Number of global variables removed");
Chris Lattnerbf3a0992002-10-01 22:38:41 +000029
Chris Lattner1631bcb2006-12-19 22:09:18 +000030namespace {
Chris Lattner4f2cf032004-09-20 04:48:05 +000031 struct GlobalDCE : public ModulePass {
Chris Lattner04805fa2002-02-26 21:46:54 +000032 // run - Do the GlobalDCE pass on the specified module, optionally updating
33 // the specified callgraph to reflect the changes.
34 //
Chris Lattner4f2cf032004-09-20 04:48:05 +000035 bool runOnModule(Module &M);
Chris Lattner8f3acc62002-08-18 01:28:30 +000036
37 private:
Chris Lattnerec6d7a62003-09-16 19:27:31 +000038 std::set<GlobalValue*> AliveGlobals;
Chris Lattner8f3acc62002-08-18 01:28:30 +000039
Chris Lattnerec6d7a62003-09-16 19:27:31 +000040 /// MarkGlobalIsNeeded - the specific global value as needed, and
41 /// recursively mark anything that it uses as also needed.
42 void GlobalIsNeeded(GlobalValue *GV);
43 void MarkUsedGlobalsAsNeeded(Constant *C);
Chris Lattner8f3acc62002-08-18 01:28:30 +000044
Reid Spencer5f681592004-07-18 00:25:04 +000045 bool SafeToDestroyConstant(Constant* C);
46 bool RemoveUnusedGlobalValue(GlobalValue &GV);
Chris Lattner04805fa2002-02-26 21:46:54 +000047 };
Chris Lattnerc2d3d312006-08-27 22:42:52 +000048 RegisterPass<GlobalDCE> X("globaldce", "Dead Global Elimination");
Chris Lattnerd5d56782002-01-31 00:45:11 +000049}
50
Chris Lattner4f2cf032004-09-20 04:48:05 +000051ModulePass *llvm::createGlobalDCEPass() { return new GlobalDCE(); }
Chris Lattner8f3acc62002-08-18 01:28:30 +000052
Chris Lattner4f2cf032004-09-20 04:48:05 +000053bool GlobalDCE::runOnModule(Module &M) {
Chris Lattner8f3acc62002-08-18 01:28:30 +000054 bool Changed = false;
Chris Lattnerec6d7a62003-09-16 19:27:31 +000055 // Loop over the module, adding globals which are obviously necessary.
Chris Lattner8f3acc62002-08-18 01:28:30 +000056 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
Reid Spencer5f681592004-07-18 00:25:04 +000057 Changed |= RemoveUnusedGlobalValue(*I);
Chris Lattnerec6d7a62003-09-16 19:27:31 +000058 // Functions with external linkage are needed if they have a body
Chris Lattnerc8dfbbb2003-09-20 19:00:50 +000059 if ((!I->hasInternalLinkage() && !I->hasLinkOnceLinkage()) &&
60 !I->isExternal())
Chris Lattnerec6d7a62003-09-16 19:27:31 +000061 GlobalIsNeeded(I);
Chris Lattner8f3acc62002-08-18 01:28:30 +000062 }
Chris Lattnerec6d7a62003-09-16 19:27:31 +000063
Chris Lattner531f9e92005-03-15 04:54:21 +000064 for (Module::global_iterator I = M.global_begin(), E = M.global_end(); I != E; ++I) {
Reid Spencer5f681592004-07-18 00:25:04 +000065 Changed |= RemoveUnusedGlobalValue(*I);
Chris Lattnerc8dfbbb2003-09-20 19:00:50 +000066 // Externally visible & appending globals are needed, if they have an
67 // initializer.
68 if ((!I->hasInternalLinkage() && !I->hasLinkOnceLinkage()) &&
69 !I->isExternal())
Chris Lattnerec6d7a62003-09-16 19:27:31 +000070 GlobalIsNeeded(I);
Chris Lattner8f3acc62002-08-18 01:28:30 +000071 }
72
Chris Lattnerec6d7a62003-09-16 19:27:31 +000073
74 // Now that all globals which are needed are in the AliveGlobals set, we loop
75 // through the program, deleting those which are not alive.
Chris Lattner8f3acc62002-08-18 01:28:30 +000076 //
Chris Lattner8f3acc62002-08-18 01:28:30 +000077
Chris Lattnerec6d7a62003-09-16 19:27:31 +000078 // The first pass is to drop initializers of global variables which are dead.
79 std::vector<GlobalVariable*> DeadGlobalVars; // Keep track of dead globals
Chris Lattner531f9e92005-03-15 04:54:21 +000080 for (Module::global_iterator I = M.global_begin(), E = M.global_end(); I != E; ++I)
Chris Lattnerec6d7a62003-09-16 19:27:31 +000081 if (!AliveGlobals.count(I)) {
82 DeadGlobalVars.push_back(I); // Keep track of dead globals
83 I->setInitializer(0);
84 }
85
86
87 // The second pass drops the bodies of functions which are dead...
88 std::vector<Function*> DeadFunctions;
89 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
90 if (!AliveGlobals.count(I)) {
91 DeadFunctions.push_back(I); // Keep track of dead globals
92 if (!I->isExternal())
93 I->deleteBody();
94 }
95
96 if (!DeadFunctions.empty()) {
97 // Now that all interreferences have been dropped, delete the actual objects
98 // themselves.
99 for (unsigned i = 0, e = DeadFunctions.size(); i != e; ++i) {
Reid Spencer5f681592004-07-18 00:25:04 +0000100 RemoveUnusedGlobalValue(*DeadFunctions[i]);
Chris Lattnerec6d7a62003-09-16 19:27:31 +0000101 M.getFunctionList().erase(DeadFunctions[i]);
102 }
103 NumFunctions += DeadFunctions.size();
104 Changed = true;
Chris Lattner8f3acc62002-08-18 01:28:30 +0000105 }
106
Chris Lattnerec6d7a62003-09-16 19:27:31 +0000107 if (!DeadGlobalVars.empty()) {
108 for (unsigned i = 0, e = DeadGlobalVars.size(); i != e; ++i) {
Reid Spencer5f681592004-07-18 00:25:04 +0000109 RemoveUnusedGlobalValue(*DeadGlobalVars[i]);
Chris Lattnerec6d7a62003-09-16 19:27:31 +0000110 M.getGlobalList().erase(DeadGlobalVars[i]);
111 }
112 NumVariables += DeadGlobalVars.size();
113 Changed = true;
114 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000115
Chris Lattnerec6d7a62003-09-16 19:27:31 +0000116 // Make sure that all memory is released
117 AliveGlobals.clear();
Chris Lattner8f3acc62002-08-18 01:28:30 +0000118 return Changed;
119}
120
Chris Lattnerec6d7a62003-09-16 19:27:31 +0000121/// MarkGlobalIsNeeded - the specific global value as needed, and
122/// recursively mark anything that it uses as also needed.
123void GlobalDCE::GlobalIsNeeded(GlobalValue *G) {
124 std::set<GlobalValue*>::iterator I = AliveGlobals.lower_bound(G);
125
126 // If the global is already in the set, no need to reprocess it.
127 if (I != AliveGlobals.end() && *I == G) return;
128
129 // Otherwise insert it now, so we do not infinitely recurse
130 AliveGlobals.insert(I, G);
131
132 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(G)) {
133 // If this is a global variable, we must make sure to add any global values
134 // referenced by the initializer to the alive set.
135 if (GV->hasInitializer())
136 MarkUsedGlobalsAsNeeded(GV->getInitializer());
137 } else {
138 // Otherwise this must be a function object. We have to scan the body of
139 // the function looking for constants and global values which are used as
140 // operands. Any operands of these types must be processed to ensure that
141 // any globals used will be marked as needed.
142 Function *F = cast<Function>(G);
143 // For all basic blocks...
144 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
145 // For all instructions...
146 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
147 // For all operands...
148 for (User::op_iterator U = I->op_begin(), E = I->op_end(); U != E; ++U)
149 if (GlobalValue *GV = dyn_cast<GlobalValue>(*U))
150 GlobalIsNeeded(GV);
151 else if (Constant *C = dyn_cast<Constant>(*U))
Misha Brukmanb1c93172005-04-21 23:48:37 +0000152 MarkUsedGlobalsAsNeeded(C);
Chris Lattnerec6d7a62003-09-16 19:27:31 +0000153 }
154}
155
156void GlobalDCE::MarkUsedGlobalsAsNeeded(Constant *C) {
Reid Spencer5f681592004-07-18 00:25:04 +0000157 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
158 GlobalIsNeeded(GV);
Chris Lattnerec6d7a62003-09-16 19:27:31 +0000159 else {
160 // Loop over all of the operands of the constant, adding any globals they
161 // use to the list of needed globals.
162 for (User::op_iterator I = C->op_begin(), E = C->op_end(); I != E; ++I)
163 MarkUsedGlobalsAsNeeded(cast<Constant>(*I));
164 }
165}
Chris Lattner8f3acc62002-08-18 01:28:30 +0000166
Reid Spencer5f681592004-07-18 00:25:04 +0000167// RemoveUnusedGlobalValue - Loop over all of the uses of the specified
Chris Lattner8f3acc62002-08-18 01:28:30 +0000168// GlobalValue, looking for the constant pointer ref that may be pointing to it.
169// If found, check to see if the constant pointer ref is safe to destroy, and if
170// so, nuke it. This will reduce the reference count on the global value, which
171// might make it deader.
172//
Reid Spencer5f681592004-07-18 00:25:04 +0000173bool GlobalDCE::RemoveUnusedGlobalValue(GlobalValue &GV) {
Chris Lattner9238d782004-07-18 07:22:58 +0000174 if (GV.use_empty()) return false;
175 GV.removeDeadConstantUsers();
176 return GV.use_empty();
177}
Misha Brukmanb1c93172005-04-21 23:48:37 +0000178
Chris Lattner8f3acc62002-08-18 01:28:30 +0000179// SafeToDestroyConstant - It is safe to destroy a constant iff it is only used
180// by constants itself. Note that constants cannot be cyclic, so this test is
181// pretty easy to implement recursively.
182//
183bool GlobalDCE::SafeToDestroyConstant(Constant *C) {
184 for (Value::use_iterator I = C->use_begin(), E = C->use_end(); I != E; ++I)
185 if (Constant *User = dyn_cast<Constant>(*I)) {
186 if (!SafeToDestroyConstant(User)) return false;
187 } else {
188 return false;
189 }
Chris Lattner8f3acc62002-08-18 01:28:30 +0000190 return true;
191}