blob: 8444a452af235e62dcd4d491e25740ff7ee2518e [file] [log] [blame]
Chris Lattner62b7fd12002-04-07 20:49:59 +00001//===-- GlobalDCE.cpp - DCE unreachable internal functions ----------------===//
John Criswell482202a2003-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 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 Lattner99a53f62002-07-24 17:12:05 +000018#include "llvm/Transforms/IPO.h"
Chris Lattner8f3acc62002-08-18 01:28:30 +000019#include "llvm/Constants.h"
Chris Lattnerec6d7a62003-09-16 19:27:31 +000020#include "llvm/Module.h"
21#include "llvm/Pass.h"
Chris Lattnerbf3a0992002-10-01 22:38:41 +000022#include "Support/Statistic.h"
Chris Lattnerec6d7a62003-09-16 19:27:31 +000023#include <set>
Chris Lattnerf52e03c2003-11-21 21:54:22 +000024using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000025
Chris Lattner04805fa2002-02-26 21:46:54 +000026namespace {
Chris Lattnerbf3a0992002-10-01 22:38:41 +000027 Statistic<> NumFunctions("globaldce","Number of functions removed");
28 Statistic<> NumVariables("globaldce","Number of global variables removed");
29 Statistic<> NumCPRs("globaldce", "Number of const pointer refs removed");
Chris Lattnerbf3a0992002-10-01 22:38:41 +000030
Chris Lattner04805fa2002-02-26 21:46:54 +000031 struct GlobalDCE : public Pass {
32 // run - Do the GlobalDCE pass on the specified module, optionally updating
33 // the specified callgraph to reflect the changes.
34 //
Chris Lattnerec6d7a62003-09-16 19:27:31 +000035 bool run(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
Chris Lattner8f3acc62002-08-18 01:28:30 +000045 bool RemoveUnusedConstantPointerRef(GlobalValue &GV);
46 bool SafeToDestroyConstant(Constant *C);
Chris Lattner04805fa2002-02-26 21:46:54 +000047 };
Chris Lattnera2c09852002-07-26 21:12:44 +000048 RegisterOpt<GlobalDCE> X("globaldce", "Dead Global Elimination");
Chris Lattnerd5d56782002-01-31 00:45:11 +000049}
50
Chris Lattnerf52e03c2003-11-21 21:54:22 +000051Pass *llvm::createGlobalDCEPass() { return new GlobalDCE(); }
Chris Lattner8f3acc62002-08-18 01:28:30 +000052
Chris Lattnerec6d7a62003-09-16 19:27:31 +000053bool GlobalDCE::run(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) {
57 Changed |= RemoveUnusedConstantPointerRef(*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 Lattner8f3acc62002-08-18 01:28:30 +000064 for (Module::giterator I = M.gbegin(), E = M.gend(); I != E; ++I) {
65 Changed |= RemoveUnusedConstantPointerRef(*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
80 for (Module::giterator I = M.gbegin(), E = M.gend(); I != E; ++I)
81 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) {
100 RemoveUnusedConstantPointerRef(*DeadFunctions[i]);
101 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) {
109 RemoveUnusedConstantPointerRef(*DeadGlobalVars[i]);
110 M.getGlobalList().erase(DeadGlobalVars[i]);
111 }
112 NumVariables += DeadGlobalVars.size();
113 Changed = true;
114 }
115
116 // 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))
152 MarkUsedGlobalsAsNeeded(C);
153 }
154}
155
156void GlobalDCE::MarkUsedGlobalsAsNeeded(Constant *C) {
157 if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(C))
158 GlobalIsNeeded(CPR->getValue());
159 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
167// RemoveUnusedConstantPointerRef - Loop over all of the uses of the specified
168// 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//
173bool GlobalDCE::RemoveUnusedConstantPointerRef(GlobalValue &GV) {
174 for (Value::use_iterator I = GV.use_begin(), E = GV.use_end(); I != E; ++I)
175 if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(*I))
176 if (SafeToDestroyConstant(CPR)) { // Only if unreferenced...
177 CPR->destroyConstant();
178 ++NumCPRs;
179 return true;
180 }
181
182 return false;
183}
184
185// SafeToDestroyConstant - It is safe to destroy a constant iff it is only used
186// by constants itself. Note that constants cannot be cyclic, so this test is
187// pretty easy to implement recursively.
188//
189bool GlobalDCE::SafeToDestroyConstant(Constant *C) {
190 for (Value::use_iterator I = C->use_begin(), E = C->use_end(); I != E; ++I)
191 if (Constant *User = dyn_cast<Constant>(*I)) {
192 if (!SafeToDestroyConstant(User)) return false;
193 } else {
194 return false;
195 }
196
197 return true;
198}
Brian Gaeke960707c2003-11-11 22:41:34 +0000199