blob: 44216a6df99c4c5de9be0b5242fb646ad29daef3 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- GlobalDCE.cpp - DCE unreachable internal functions ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// 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.
15//
16//===----------------------------------------------------------------------===//
17
18#define DEBUG_TYPE "globaldce"
19#include "llvm/Transforms/IPO.h"
20#include "llvm/Constants.h"
21#include "llvm/Module.h"
22#include "llvm/Pass.h"
Chris Lattner3f2e8ec2009-11-01 19:03:42 +000023#include "llvm/ADT/SmallPtrSet.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000024#include "llvm/ADT/Statistic.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000025using namespace llvm;
26
Duncan Sands744917b2009-01-05 20:39:50 +000027STATISTIC(NumAliases , "Number of global aliases removed");
Dan Gohmanf17a25c2007-07-18 16:29:46 +000028STATISTIC(NumFunctions, "Number of functions removed");
29STATISTIC(NumVariables, "Number of global variables removed");
30
31namespace {
Nick Lewycky492d06e2009-10-25 06:33:48 +000032 struct GlobalDCE : public ModulePass {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000033 static char ID; // Pass identification, replacement for typeid
Dan Gohman26f8c272008-09-04 17:05:41 +000034 GlobalDCE() : ModulePass(&ID) {}
Duncan Sandsbd1b4502009-01-05 20:37:33 +000035
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036 // run - Do the GlobalDCE pass on the specified module, optionally updating
37 // the specified callgraph to reflect the changes.
38 //
39 bool runOnModule(Module &M);
40
41 private:
Chris Lattner3f2e8ec2009-11-01 19:03:42 +000042 SmallPtrSet<GlobalValue*, 32> AliveGlobals;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000043
Duncan Sandsbd1b4502009-01-05 20:37:33 +000044 /// GlobalIsNeeded - mark the specific global value as needed, and
Dan Gohmanf17a25c2007-07-18 16:29:46 +000045 /// recursively mark anything that it uses as also needed.
46 void GlobalIsNeeded(GlobalValue *GV);
47 void MarkUsedGlobalsAsNeeded(Constant *C);
48
Dan Gohmanf17a25c2007-07-18 16:29:46 +000049 bool RemoveUnusedGlobalValue(GlobalValue &GV);
50 };
Dan Gohmanf17a25c2007-07-18 16:29:46 +000051}
52
Dan Gohman089efff2008-05-13 00:00:25 +000053char GlobalDCE::ID = 0;
54static RegisterPass<GlobalDCE> X("globaldce", "Dead Global Elimination");
55
Dan Gohmanf17a25c2007-07-18 16:29:46 +000056ModulePass *llvm::createGlobalDCEPass() { return new GlobalDCE(); }
57
58bool GlobalDCE::runOnModule(Module &M) {
59 bool Changed = false;
Owen Andersone1f1f822009-07-16 18:04:31 +000060
Dan Gohmanf17a25c2007-07-18 16:29:46 +000061 // Loop over the module, adding globals which are obviously necessary.
62 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
63 Changed |= RemoveUnusedGlobalValue(*I);
64 // Functions with external linkage are needed if they have a body
Chris Lattner7004abf2009-04-13 05:38:23 +000065 if (!I->hasLocalLinkage() && !I->hasLinkOnceLinkage() &&
Edwin Török6fc3a5f2009-05-23 14:06:57 +000066 !I->isDeclaration() && !I->hasAvailableExternallyLinkage())
Dan Gohmanf17a25c2007-07-18 16:29:46 +000067 GlobalIsNeeded(I);
68 }
69
70 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
71 I != E; ++I) {
72 Changed |= RemoveUnusedGlobalValue(*I);
73 // Externally visible & appending globals are needed, if they have an
74 // initializer.
Chris Lattner7004abf2009-04-13 05:38:23 +000075 if (!I->hasLocalLinkage() && !I->hasLinkOnceLinkage() &&
Edwin Török6fc3a5f2009-05-23 14:06:57 +000076 !I->isDeclaration() && !I->hasAvailableExternallyLinkage())
Dan Gohmanf17a25c2007-07-18 16:29:46 +000077 GlobalIsNeeded(I);
78 }
79
Dan Gohmanf17a25c2007-07-18 16:29:46 +000080 for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end();
81 I != E; ++I) {
Duncan Sandsbd1b4502009-01-05 20:37:33 +000082 Changed |= RemoveUnusedGlobalValue(*I);
83 // Externally visible aliases are needed.
Duncan Sands394c5082009-02-17 23:05:26 +000084 if (!I->hasLocalLinkage() && !I->hasLinkOnceLinkage())
Duncan Sandsbd1b4502009-01-05 20:37:33 +000085 GlobalIsNeeded(I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000086 }
87
88 // Now that all globals which are needed are in the AliveGlobals set, we loop
89 // through the program, deleting those which are not alive.
90 //
91
92 // The first pass is to drop initializers of global variables which are dead.
93 std::vector<GlobalVariable*> DeadGlobalVars; // Keep track of dead globals
Chris Lattner3f2e8ec2009-11-01 19:03:42 +000094 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
95 I != E; ++I)
Dan Gohmanf17a25c2007-07-18 16:29:46 +000096 if (!AliveGlobals.count(I)) {
97 DeadGlobalVars.push_back(I); // Keep track of dead globals
98 I->setInitializer(0);
99 }
100
Dan Gohmanf17a25c2007-07-18 16:29:46 +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
106 if (!I->isDeclaration())
107 I->deleteBody();
108 }
109
Duncan Sands394c5082009-02-17 23:05:26 +0000110 // The third pass drops targets of aliases which are dead...
111 std::vector<GlobalAlias*> DeadAliases;
112 for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end(); I != E;
113 ++I)
114 if (!AliveGlobals.count(I)) {
115 DeadAliases.push_back(I);
116 I->setAliasee(0);
117 }
118
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000119 if (!DeadFunctions.empty()) {
Duncan Sandsbd1b4502009-01-05 20:37:33 +0000120 // Now that all interferences have been dropped, delete the actual objects
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000121 // themselves.
122 for (unsigned i = 0, e = DeadFunctions.size(); i != e; ++i) {
123 RemoveUnusedGlobalValue(*DeadFunctions[i]);
124 M.getFunctionList().erase(DeadFunctions[i]);
125 }
126 NumFunctions += DeadFunctions.size();
127 Changed = true;
128 }
129
130 if (!DeadGlobalVars.empty()) {
131 for (unsigned i = 0, e = DeadGlobalVars.size(); i != e; ++i) {
132 RemoveUnusedGlobalValue(*DeadGlobalVars[i]);
133 M.getGlobalList().erase(DeadGlobalVars[i]);
134 }
135 NumVariables += DeadGlobalVars.size();
136 Changed = true;
137 }
138
Duncan Sandsbd1b4502009-01-05 20:37:33 +0000139 // Now delete any dead aliases.
Duncan Sands394c5082009-02-17 23:05:26 +0000140 if (!DeadAliases.empty()) {
141 for (unsigned i = 0, e = DeadAliases.size(); i != e; ++i) {
142 RemoveUnusedGlobalValue(*DeadAliases[i]);
143 M.getAliasList().erase(DeadAliases[i]);
Duncan Sandsbd1b4502009-01-05 20:37:33 +0000144 }
Duncan Sands394c5082009-02-17 23:05:26 +0000145 NumAliases += DeadAliases.size();
146 Changed = true;
Duncan Sandsbd1b4502009-01-05 20:37:33 +0000147 }
148
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000149 // Make sure that all memory is released
150 AliveGlobals.clear();
Devang Patel16f40332009-08-11 06:31:57 +0000151
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000152 return Changed;
153}
154
Devang Patel57fdf7d2008-11-11 19:16:41 +0000155/// GlobalIsNeeded - the specific global value as needed, and
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000156/// recursively mark anything that it uses as also needed.
157void GlobalDCE::GlobalIsNeeded(GlobalValue *G) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000158 // If the global is already in the set, no need to reprocess it.
Chris Lattner3f2e8ec2009-11-01 19:03:42 +0000159 if (!AliveGlobals.insert(G))
160 return;
161
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000162 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(G)) {
163 // If this is a global variable, we must make sure to add any global values
164 // referenced by the initializer to the alive set.
165 if (GV->hasInitializer())
166 MarkUsedGlobalsAsNeeded(GV->getInitializer());
Duncan Sandsbd1b4502009-01-05 20:37:33 +0000167 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(G)) {
168 // The target of a global alias is needed.
Duncan Sandse9af8ee2009-01-07 18:45:53 +0000169 MarkUsedGlobalsAsNeeded(GA->getAliasee());
Duncan Sandsbd1b4502009-01-05 20:37:33 +0000170 } else {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000171 // Otherwise this must be a function object. We have to scan the body of
172 // the function looking for constants and global values which are used as
173 // operands. Any operands of these types must be processed to ensure that
174 // any globals used will be marked as needed.
175 Function *F = cast<Function>(G);
Chris Lattner3f2e8ec2009-11-01 19:03:42 +0000176
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000177 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000178 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000179 for (User::op_iterator U = I->op_begin(), E = I->op_end(); U != E; ++U)
180 if (GlobalValue *GV = dyn_cast<GlobalValue>(*U))
181 GlobalIsNeeded(GV);
182 else if (Constant *C = dyn_cast<Constant>(*U))
183 MarkUsedGlobalsAsNeeded(C);
184 }
185}
186
187void GlobalDCE::MarkUsedGlobalsAsNeeded(Constant *C) {
188 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
Chris Lattnerff1a8e52009-10-29 01:21:20 +0000189 return GlobalIsNeeded(GV);
190
191 // Loop over all of the operands of the constant, adding any globals they
192 // use to the list of needed globals.
193 for (User::op_iterator I = C->op_begin(), E = C->op_end(); I != E; ++I)
194 if (Constant *OpC = dyn_cast<Constant>(*I))
195 MarkUsedGlobalsAsNeeded(OpC);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000196}
197
198// RemoveUnusedGlobalValue - Loop over all of the uses of the specified
199// GlobalValue, looking for the constant pointer ref that may be pointing to it.
200// If found, check to see if the constant pointer ref is safe to destroy, and if
201// so, nuke it. This will reduce the reference count on the global value, which
202// might make it deader.
203//
204bool GlobalDCE::RemoveUnusedGlobalValue(GlobalValue &GV) {
205 if (GV.use_empty()) return false;
206 GV.removeDeadConstantUsers();
207 return GV.use_empty();
208}