blob: 18c1c7b000510f8f61f3559ddfaecd6ec4d238e0 [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//
Chris Lattnerf3ebc3f2007-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 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"
Chris Lattnerb5d9c8c2009-11-01 19:03:42 +000023#include "llvm/ADT/SmallPtrSet.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000024#include "llvm/ADT/Statistic.h"
Chris Lattnerf52e03c2003-11-21 21:54:22 +000025using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000026
Duncan Sands821d13c2009-01-05 20:39:50 +000027STATISTIC(NumAliases , "Number of global aliases removed");
Chris Lattner1631bcb2006-12-19 22:09:18 +000028STATISTIC(NumFunctions, "Number of functions removed");
29STATISTIC(NumVariables, "Number of global variables removed");
Chris Lattnerbf3a0992002-10-01 22:38:41 +000030
Chris Lattner1631bcb2006-12-19 22:09:18 +000031namespace {
Nick Lewycky02d5f772009-10-25 06:33:48 +000032 struct GlobalDCE : public ModulePass {
Nick Lewyckye7da2d62007-05-06 13:37:16 +000033 static char ID; // Pass identification, replacement for typeid
Owen Anderson6c18d1a2010-10-19 17:21:58 +000034 GlobalDCE() : ModulePass(ID) {
35 initializeGlobalDCEPass(*PassRegistry::getPassRegistry());
36 }
Duncan Sandsf5dbbae2009-01-05 20:37:33 +000037
Chris Lattner04805fa2002-02-26 21:46:54 +000038 // run - Do the GlobalDCE pass on the specified module, optionally updating
39 // the specified callgraph to reflect the changes.
40 //
Chris Lattner4f2cf032004-09-20 04:48:05 +000041 bool runOnModule(Module &M);
Chris Lattner8f3acc62002-08-18 01:28:30 +000042
43 private:
Chris Lattnerb5d9c8c2009-11-01 19:03:42 +000044 SmallPtrSet<GlobalValue*, 32> AliveGlobals;
Chris Lattner8f3acc62002-08-18 01:28:30 +000045
Duncan Sandsf5dbbae2009-01-05 20:37:33 +000046 /// GlobalIsNeeded - mark the specific global value as needed, and
Chris Lattnerec6d7a62003-09-16 19:27:31 +000047 /// recursively mark anything that it uses as also needed.
48 void GlobalIsNeeded(GlobalValue *GV);
49 void MarkUsedGlobalsAsNeeded(Constant *C);
Chris Lattner8f3acc62002-08-18 01:28:30 +000050
Reid Spencer5f681592004-07-18 00:25:04 +000051 bool RemoveUnusedGlobalValue(GlobalValue &GV);
Chris Lattner04805fa2002-02-26 21:46:54 +000052 };
Chris Lattnerd5d56782002-01-31 00:45:11 +000053}
54
Dan Gohmand78c4002008-05-13 00:00:25 +000055char GlobalDCE::ID = 0;
Owen Andersona57b97e2010-07-21 22:09:45 +000056INITIALIZE_PASS(GlobalDCE, "globaldce",
Owen Andersondf7a4f22010-10-07 22:25:06 +000057 "Dead Global Elimination", false, false)
Dan Gohmand78c4002008-05-13 00:00:25 +000058
Chris Lattner4f2cf032004-09-20 04:48:05 +000059ModulePass *llvm::createGlobalDCEPass() { return new GlobalDCE(); }
Chris Lattner8f3acc62002-08-18 01:28:30 +000060
Chris Lattner4f2cf032004-09-20 04:48:05 +000061bool GlobalDCE::runOnModule(Module &M) {
Chris Lattner8f3acc62002-08-18 01:28:30 +000062 bool Changed = false;
Owen Anderson20b34ac2009-07-16 18:04:31 +000063
Chris Lattnerec6d7a62003-09-16 19:27:31 +000064 // Loop over the module, adding globals which are obviously necessary.
Chris Lattner8f3acc62002-08-18 01:28:30 +000065 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
Reid Spencer5f681592004-07-18 00:25:04 +000066 Changed |= RemoveUnusedGlobalValue(*I);
Chris Lattnerec6d7a62003-09-16 19:27:31 +000067 // Functions with external linkage are needed if they have a body
Rafael Espindoladef1b092012-06-14 22:48:13 +000068 if (!I->isDiscardableIfUnused() &&
Torok Edwin79963392009-05-23 14:06:57 +000069 !I->isDeclaration() && !I->hasAvailableExternallyLinkage())
Chris Lattnerec6d7a62003-09-16 19:27:31 +000070 GlobalIsNeeded(I);
Chris Lattner8f3acc62002-08-18 01:28:30 +000071 }
Chris Lattnerec6d7a62003-09-16 19:27:31 +000072
Anton Korobeynikova97b6942007-04-25 14:27:10 +000073 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
74 I != E; ++I) {
Reid Spencer5f681592004-07-18 00:25:04 +000075 Changed |= RemoveUnusedGlobalValue(*I);
Chris Lattnerc8dfbbb2003-09-20 19:00:50 +000076 // Externally visible & appending globals are needed, if they have an
77 // initializer.
Rafael Espindoladef1b092012-06-14 22:48:13 +000078 if (!I->isDiscardableIfUnused() &&
Torok Edwin79963392009-05-23 14:06:57 +000079 !I->isDeclaration() && !I->hasAvailableExternallyLinkage())
Chris Lattnerec6d7a62003-09-16 19:27:31 +000080 GlobalIsNeeded(I);
Chris Lattner8f3acc62002-08-18 01:28:30 +000081 }
82
Anton Korobeynikova97b6942007-04-25 14:27:10 +000083 for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end();
84 I != E; ++I) {
Duncan Sandsf5dbbae2009-01-05 20:37:33 +000085 Changed |= RemoveUnusedGlobalValue(*I);
86 // Externally visible aliases are needed.
Rafael Espindoladef1b092012-06-14 22:48:13 +000087 if (!I->isDiscardableIfUnused())
Duncan Sandsf5dbbae2009-01-05 20:37:33 +000088 GlobalIsNeeded(I);
Anton Korobeynikova97b6942007-04-25 14:27:10 +000089 }
90
Chris Lattnerec6d7a62003-09-16 19:27:31 +000091 // Now that all globals which are needed are in the AliveGlobals set, we loop
92 // through the program, deleting those which are not alive.
Chris Lattner8f3acc62002-08-18 01:28:30 +000093 //
Chris Lattner8f3acc62002-08-18 01:28:30 +000094
Chris Lattnerec6d7a62003-09-16 19:27:31 +000095 // The first pass is to drop initializers of global variables which are dead.
96 std::vector<GlobalVariable*> DeadGlobalVars; // Keep track of dead globals
Chris Lattnerb5d9c8c2009-11-01 19:03:42 +000097 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
98 I != E; ++I)
Chris Lattnerec6d7a62003-09-16 19:27:31 +000099 if (!AliveGlobals.count(I)) {
100 DeadGlobalVars.push_back(I); // Keep track of dead globals
101 I->setInitializer(0);
102 }
103
Chris Lattnerec6d7a62003-09-16 19:27:31 +0000104 // The second pass drops the bodies of functions which are dead...
105 std::vector<Function*> DeadFunctions;
106 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
107 if (!AliveGlobals.count(I)) {
108 DeadFunctions.push_back(I); // Keep track of dead globals
Reid Spencer5301e7c2007-01-30 20:08:39 +0000109 if (!I->isDeclaration())
Chris Lattnerec6d7a62003-09-16 19:27:31 +0000110 I->deleteBody();
111 }
112
Duncan Sandsbf3ba5a2009-02-17 23:05:26 +0000113 // The third pass drops targets of aliases which are dead...
114 std::vector<GlobalAlias*> DeadAliases;
115 for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end(); I != E;
116 ++I)
117 if (!AliveGlobals.count(I)) {
118 DeadAliases.push_back(I);
119 I->setAliasee(0);
120 }
121
Chris Lattnerec6d7a62003-09-16 19:27:31 +0000122 if (!DeadFunctions.empty()) {
Duncan Sandsf5dbbae2009-01-05 20:37:33 +0000123 // Now that all interferences have been dropped, delete the actual objects
Chris Lattnerec6d7a62003-09-16 19:27:31 +0000124 // themselves.
125 for (unsigned i = 0, e = DeadFunctions.size(); i != e; ++i) {
Reid Spencer5f681592004-07-18 00:25:04 +0000126 RemoveUnusedGlobalValue(*DeadFunctions[i]);
Chris Lattnerec6d7a62003-09-16 19:27:31 +0000127 M.getFunctionList().erase(DeadFunctions[i]);
128 }
129 NumFunctions += DeadFunctions.size();
130 Changed = true;
Chris Lattner8f3acc62002-08-18 01:28:30 +0000131 }
132
Chris Lattnerec6d7a62003-09-16 19:27:31 +0000133 if (!DeadGlobalVars.empty()) {
134 for (unsigned i = 0, e = DeadGlobalVars.size(); i != e; ++i) {
Reid Spencer5f681592004-07-18 00:25:04 +0000135 RemoveUnusedGlobalValue(*DeadGlobalVars[i]);
Chris Lattnerec6d7a62003-09-16 19:27:31 +0000136 M.getGlobalList().erase(DeadGlobalVars[i]);
137 }
138 NumVariables += DeadGlobalVars.size();
139 Changed = true;
140 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000141
Duncan Sandsf5dbbae2009-01-05 20:37:33 +0000142 // Now delete any dead aliases.
Duncan Sandsbf3ba5a2009-02-17 23:05:26 +0000143 if (!DeadAliases.empty()) {
144 for (unsigned i = 0, e = DeadAliases.size(); i != e; ++i) {
145 RemoveUnusedGlobalValue(*DeadAliases[i]);
146 M.getAliasList().erase(DeadAliases[i]);
Duncan Sandsf5dbbae2009-01-05 20:37:33 +0000147 }
Duncan Sandsbf3ba5a2009-02-17 23:05:26 +0000148 NumAliases += DeadAliases.size();
149 Changed = true;
Duncan Sandsf5dbbae2009-01-05 20:37:33 +0000150 }
151
Chris Lattnerec6d7a62003-09-16 19:27:31 +0000152 // Make sure that all memory is released
153 AliveGlobals.clear();
Devang Patelc5aa8c62009-08-11 06:31:57 +0000154
Chris Lattner8f3acc62002-08-18 01:28:30 +0000155 return Changed;
156}
157
Devang Patel95b18122008-11-11 19:16:41 +0000158/// GlobalIsNeeded - the specific global value as needed, and
Chris Lattnerec6d7a62003-09-16 19:27:31 +0000159/// recursively mark anything that it uses as also needed.
160void GlobalDCE::GlobalIsNeeded(GlobalValue *G) {
Chris Lattnerec6d7a62003-09-16 19:27:31 +0000161 // If the global is already in the set, no need to reprocess it.
Chris Lattnerb5d9c8c2009-11-01 19:03:42 +0000162 if (!AliveGlobals.insert(G))
163 return;
164
Chris Lattnerec6d7a62003-09-16 19:27:31 +0000165 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(G)) {
166 // If this is a global variable, we must make sure to add any global values
167 // referenced by the initializer to the alive set.
168 if (GV->hasInitializer())
169 MarkUsedGlobalsAsNeeded(GV->getInitializer());
Duncan Sandsf5dbbae2009-01-05 20:37:33 +0000170 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(G)) {
171 // The target of a global alias is needed.
Duncan Sands187c5712009-01-07 18:45:53 +0000172 MarkUsedGlobalsAsNeeded(GA->getAliasee());
Duncan Sandsf5dbbae2009-01-05 20:37:33 +0000173 } else {
Chris Lattnerec6d7a62003-09-16 19:27:31 +0000174 // Otherwise this must be a function object. We have to scan the body of
175 // the function looking for constants and global values which are used as
176 // operands. Any operands of these types must be processed to ensure that
177 // any globals used will be marked as needed.
178 Function *F = cast<Function>(G);
Chris Lattnerb5d9c8c2009-11-01 19:03:42 +0000179
Chris Lattnerec6d7a62003-09-16 19:27:31 +0000180 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
Chris Lattnerec6d7a62003-09-16 19:27:31 +0000181 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
Chris Lattnerec6d7a62003-09-16 19:27:31 +0000182 for (User::op_iterator U = I->op_begin(), E = I->op_end(); U != E; ++U)
183 if (GlobalValue *GV = dyn_cast<GlobalValue>(*U))
184 GlobalIsNeeded(GV);
185 else if (Constant *C = dyn_cast<Constant>(*U))
Misha Brukmanb1c93172005-04-21 23:48:37 +0000186 MarkUsedGlobalsAsNeeded(C);
Chris Lattnerec6d7a62003-09-16 19:27:31 +0000187 }
188}
189
190void GlobalDCE::MarkUsedGlobalsAsNeeded(Constant *C) {
Reid Spencer5f681592004-07-18 00:25:04 +0000191 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
Chris Lattneree8b9512009-10-29 01:21:20 +0000192 return GlobalIsNeeded(GV);
193
194 // Loop over all of the operands of the constant, adding any globals they
195 // use to the list of needed globals.
196 for (User::op_iterator I = C->op_begin(), E = C->op_end(); I != E; ++I)
197 if (Constant *OpC = dyn_cast<Constant>(*I))
198 MarkUsedGlobalsAsNeeded(OpC);
Chris Lattnerec6d7a62003-09-16 19:27:31 +0000199}
Chris Lattner8f3acc62002-08-18 01:28:30 +0000200
Reid Spencer5f681592004-07-18 00:25:04 +0000201// RemoveUnusedGlobalValue - Loop over all of the uses of the specified
Chris Lattner8f3acc62002-08-18 01:28:30 +0000202// GlobalValue, looking for the constant pointer ref that may be pointing to it.
203// If found, check to see if the constant pointer ref is safe to destroy, and if
204// so, nuke it. This will reduce the reference count on the global value, which
205// might make it deader.
206//
Reid Spencer5f681592004-07-18 00:25:04 +0000207bool GlobalDCE::RemoveUnusedGlobalValue(GlobalValue &GV) {
Chris Lattner9238d782004-07-18 07:22:58 +0000208 if (GV.use_empty()) return false;
209 GV.removeDeadConstantUsers();
210 return GV.use_empty();
211}