Chris Lattner | 2fbfdcf | 2002-04-07 20:49:59 +0000 | [diff] [blame] | 1 | //===-- GlobalDCE.cpp - DCE unreachable internal functions ----------------===// |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 30474bb | 2001-11-26 18:42:17 +0000 | [diff] [blame] | 9 | // |
Chris Lattner | 1cbcd0f | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 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. |
Chris Lattner | 30474bb | 2001-11-26 18:42:17 +0000 | [diff] [blame] | 15 | // |
| 16 | //===----------------------------------------------------------------------===// |
| 17 | |
Chris Lattner | 86453c5 | 2006-12-19 22:09:18 +0000 | [diff] [blame] | 18 | #define DEBUG_TYPE "globaldce" |
Chris Lattner | 568ddab | 2002-07-24 17:12:05 +0000 | [diff] [blame] | 19 | #include "llvm/Transforms/IPO.h" |
Chris Lattner | 0bfb6ba | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 20 | #include "llvm/Constants.h" |
Chris Lattner | 1cbcd0f | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 21 | #include "llvm/Module.h" |
| 22 | #include "llvm/Pass.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 23 | #include "llvm/ADT/Statistic.h" |
Reid Spencer | 9133fe2 | 2007-02-05 23:32:05 +0000 | [diff] [blame] | 24 | #include "llvm/Support/Compiler.h" |
Chris Lattner | 1cbcd0f | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 25 | #include <set> |
Chris Lattner | 1e2385b | 2003-11-21 21:54:22 +0000 | [diff] [blame] | 26 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 27 | |
Duncan Sands | 15b5750 | 2009-01-05 20:39:50 +0000 | [diff] [blame] | 28 | STATISTIC(NumAliases , "Number of global aliases removed"); |
Chris Lattner | 86453c5 | 2006-12-19 22:09:18 +0000 | [diff] [blame] | 29 | STATISTIC(NumFunctions, "Number of functions removed"); |
| 30 | STATISTIC(NumVariables, "Number of global variables removed"); |
Chris Lattner | a92f696 | 2002-10-01 22:38:41 +0000 | [diff] [blame] | 31 | |
Chris Lattner | 86453c5 | 2006-12-19 22:09:18 +0000 | [diff] [blame] | 32 | namespace { |
Reid Spencer | 9133fe2 | 2007-02-05 23:32:05 +0000 | [diff] [blame] | 33 | struct VISIBILITY_HIDDEN GlobalDCE : public ModulePass { |
Nick Lewycky | ecd94c8 | 2007-05-06 13:37:16 +0000 | [diff] [blame] | 34 | static char ID; // Pass identification, replacement for typeid |
Dan Gohman | ae73dc1 | 2008-09-04 17:05:41 +0000 | [diff] [blame] | 35 | GlobalDCE() : ModulePass(&ID) {} |
Duncan Sands | 1da5f2d | 2009-01-05 20:37:33 +0000 | [diff] [blame] | 36 | |
Chris Lattner | bd0ef77 | 2002-02-26 21:46:54 +0000 | [diff] [blame] | 37 | // run - Do the GlobalDCE pass on the specified module, optionally updating |
| 38 | // the specified callgraph to reflect the changes. |
| 39 | // |
Chris Lattner | b12914b | 2004-09-20 04:48:05 +0000 | [diff] [blame] | 40 | bool runOnModule(Module &M); |
Chris Lattner | 0bfb6ba | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 41 | |
| 42 | private: |
Chris Lattner | 1cbcd0f | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 43 | std::set<GlobalValue*> AliveGlobals; |
Chris Lattner | 0bfb6ba | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 44 | |
Duncan Sands | 1da5f2d | 2009-01-05 20:37:33 +0000 | [diff] [blame] | 45 | /// GlobalIsNeeded - mark the specific global value as needed, and |
Chris Lattner | 1cbcd0f | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 46 | /// recursively mark anything that it uses as also needed. |
| 47 | void GlobalIsNeeded(GlobalValue *GV); |
| 48 | void MarkUsedGlobalsAsNeeded(Constant *C); |
Chris Lattner | 0bfb6ba | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 49 | |
Reid Spencer | 0c4a041 | 2004-07-18 00:25:04 +0000 | [diff] [blame] | 50 | bool RemoveUnusedGlobalValue(GlobalValue &GV); |
Chris Lattner | bd0ef77 | 2002-02-26 21:46:54 +0000 | [diff] [blame] | 51 | }; |
Chris Lattner | 793c6b8 | 2002-01-31 00:45:11 +0000 | [diff] [blame] | 52 | } |
| 53 | |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 54 | char GlobalDCE::ID = 0; |
| 55 | static RegisterPass<GlobalDCE> X("globaldce", "Dead Global Elimination"); |
| 56 | |
Chris Lattner | b12914b | 2004-09-20 04:48:05 +0000 | [diff] [blame] | 57 | ModulePass *llvm::createGlobalDCEPass() { return new GlobalDCE(); } |
Chris Lattner | 0bfb6ba | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 58 | |
Chris Lattner | b12914b | 2004-09-20 04:48:05 +0000 | [diff] [blame] | 59 | bool GlobalDCE::runOnModule(Module &M) { |
Chris Lattner | 0bfb6ba | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 60 | bool Changed = false; |
Owen Anderson | 001dbfe | 2009-07-16 18:04:31 +0000 | [diff] [blame] | 61 | |
Chris Lattner | 1cbcd0f | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 62 | // Loop over the module, adding globals which are obviously necessary. |
Chris Lattner | 0bfb6ba | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 63 | for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) { |
Reid Spencer | 0c4a041 | 2004-07-18 00:25:04 +0000 | [diff] [blame] | 64 | Changed |= RemoveUnusedGlobalValue(*I); |
Chris Lattner | 1cbcd0f | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 65 | // Functions with external linkage are needed if they have a body |
Chris Lattner | 2c71b8f | 2009-04-13 05:38:23 +0000 | [diff] [blame] | 66 | if (!I->hasLocalLinkage() && !I->hasLinkOnceLinkage() && |
Torok Edwin | f5ff1d3 | 2009-05-23 14:06:57 +0000 | [diff] [blame] | 67 | !I->isDeclaration() && !I->hasAvailableExternallyLinkage()) |
Chris Lattner | 1cbcd0f | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 68 | GlobalIsNeeded(I); |
Chris Lattner | 0bfb6ba | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 69 | } |
Chris Lattner | 1cbcd0f | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 70 | |
Anton Korobeynikov | 8b0a8c8 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 71 | for (Module::global_iterator I = M.global_begin(), E = M.global_end(); |
| 72 | I != E; ++I) { |
Reid Spencer | 0c4a041 | 2004-07-18 00:25:04 +0000 | [diff] [blame] | 73 | Changed |= RemoveUnusedGlobalValue(*I); |
Chris Lattner | a2d51af | 2003-09-20 19:00:50 +0000 | [diff] [blame] | 74 | // Externally visible & appending globals are needed, if they have an |
| 75 | // initializer. |
Chris Lattner | 2c71b8f | 2009-04-13 05:38:23 +0000 | [diff] [blame] | 76 | if (!I->hasLocalLinkage() && !I->hasLinkOnceLinkage() && |
Torok Edwin | f5ff1d3 | 2009-05-23 14:06:57 +0000 | [diff] [blame] | 77 | !I->isDeclaration() && !I->hasAvailableExternallyLinkage()) |
Chris Lattner | 1cbcd0f | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 78 | GlobalIsNeeded(I); |
Chris Lattner | 0bfb6ba | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 79 | } |
| 80 | |
Anton Korobeynikov | 8b0a8c8 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 81 | for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end(); |
| 82 | I != E; ++I) { |
Duncan Sands | 1da5f2d | 2009-01-05 20:37:33 +0000 | [diff] [blame] | 83 | Changed |= RemoveUnusedGlobalValue(*I); |
| 84 | // Externally visible aliases are needed. |
Duncan Sands | cdf5ffb | 2009-02-17 23:05:26 +0000 | [diff] [blame] | 85 | if (!I->hasLocalLinkage() && !I->hasLinkOnceLinkage()) |
Duncan Sands | 1da5f2d | 2009-01-05 20:37:33 +0000 | [diff] [blame] | 86 | GlobalIsNeeded(I); |
Anton Korobeynikov | 8b0a8c8 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 87 | } |
| 88 | |
Chris Lattner | 1cbcd0f | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 89 | // Now that all globals which are needed are in the AliveGlobals set, we loop |
| 90 | // through the program, deleting those which are not alive. |
Chris Lattner | 0bfb6ba | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 91 | // |
Chris Lattner | 0bfb6ba | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 92 | |
Chris Lattner | 1cbcd0f | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 93 | // The first pass is to drop initializers of global variables which are dead. |
| 94 | std::vector<GlobalVariable*> DeadGlobalVars; // Keep track of dead globals |
Chris Lattner | e4d5c44 | 2005-03-15 04:54:21 +0000 | [diff] [blame] | 95 | for (Module::global_iterator I = M.global_begin(), E = M.global_end(); I != E; ++I) |
Chris Lattner | 1cbcd0f | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 96 | if (!AliveGlobals.count(I)) { |
| 97 | DeadGlobalVars.push_back(I); // Keep track of dead globals |
| 98 | I->setInitializer(0); |
| 99 | } |
| 100 | |
Chris Lattner | 1cbcd0f | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 101 | // 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 |
Reid Spencer | 5cbf985 | 2007-01-30 20:08:39 +0000 | [diff] [blame] | 106 | if (!I->isDeclaration()) |
Chris Lattner | 1cbcd0f | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 107 | I->deleteBody(); |
| 108 | } |
| 109 | |
Duncan Sands | cdf5ffb | 2009-02-17 23:05:26 +0000 | [diff] [blame] | 110 | // 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 | |
Chris Lattner | 1cbcd0f | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 119 | if (!DeadFunctions.empty()) { |
Duncan Sands | 1da5f2d | 2009-01-05 20:37:33 +0000 | [diff] [blame] | 120 | // Now that all interferences have been dropped, delete the actual objects |
Chris Lattner | 1cbcd0f | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 121 | // themselves. |
| 122 | for (unsigned i = 0, e = DeadFunctions.size(); i != e; ++i) { |
Reid Spencer | 0c4a041 | 2004-07-18 00:25:04 +0000 | [diff] [blame] | 123 | RemoveUnusedGlobalValue(*DeadFunctions[i]); |
Chris Lattner | 1cbcd0f | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 124 | M.getFunctionList().erase(DeadFunctions[i]); |
| 125 | } |
| 126 | NumFunctions += DeadFunctions.size(); |
| 127 | Changed = true; |
Chris Lattner | 0bfb6ba | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 128 | } |
| 129 | |
Chris Lattner | 1cbcd0f | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 130 | if (!DeadGlobalVars.empty()) { |
| 131 | for (unsigned i = 0, e = DeadGlobalVars.size(); i != e; ++i) { |
Reid Spencer | 0c4a041 | 2004-07-18 00:25:04 +0000 | [diff] [blame] | 132 | RemoveUnusedGlobalValue(*DeadGlobalVars[i]); |
Chris Lattner | 1cbcd0f | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 133 | M.getGlobalList().erase(DeadGlobalVars[i]); |
| 134 | } |
| 135 | NumVariables += DeadGlobalVars.size(); |
| 136 | Changed = true; |
| 137 | } |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 138 | |
Duncan Sands | 1da5f2d | 2009-01-05 20:37:33 +0000 | [diff] [blame] | 139 | // Now delete any dead aliases. |
Duncan Sands | cdf5ffb | 2009-02-17 23:05:26 +0000 | [diff] [blame] | 140 | 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 Sands | 1da5f2d | 2009-01-05 20:37:33 +0000 | [diff] [blame] | 144 | } |
Duncan Sands | cdf5ffb | 2009-02-17 23:05:26 +0000 | [diff] [blame] | 145 | NumAliases += DeadAliases.size(); |
| 146 | Changed = true; |
Duncan Sands | 1da5f2d | 2009-01-05 20:37:33 +0000 | [diff] [blame] | 147 | } |
| 148 | |
Chris Lattner | 1cbcd0f | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 149 | // Make sure that all memory is released |
| 150 | AliveGlobals.clear(); |
Devang Patel | 9d3627e | 2009-08-11 06:31:57 +0000 | [diff] [blame] | 151 | |
Chris Lattner | 0bfb6ba | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 152 | return Changed; |
| 153 | } |
| 154 | |
Devang Patel | 772777e | 2008-11-11 19:16:41 +0000 | [diff] [blame] | 155 | /// GlobalIsNeeded - the specific global value as needed, and |
Chris Lattner | 1cbcd0f | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 156 | /// recursively mark anything that it uses as also needed. |
| 157 | void GlobalDCE::GlobalIsNeeded(GlobalValue *G) { |
Dan Gohman | c418bf3 | 2008-07-11 20:58:19 +0000 | [diff] [blame] | 158 | std::set<GlobalValue*>::iterator I = AliveGlobals.find(G); |
Chris Lattner | 1cbcd0f | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 159 | |
| 160 | // If the global is already in the set, no need to reprocess it. |
Dan Gohman | c418bf3 | 2008-07-11 20:58:19 +0000 | [diff] [blame] | 161 | if (I != AliveGlobals.end()) return; |
Chris Lattner | 1cbcd0f | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 162 | |
| 163 | // Otherwise insert it now, so we do not infinitely recurse |
| 164 | AliveGlobals.insert(I, G); |
| 165 | |
| 166 | if (GlobalVariable *GV = dyn_cast<GlobalVariable>(G)) { |
| 167 | // If this is a global variable, we must make sure to add any global values |
| 168 | // referenced by the initializer to the alive set. |
| 169 | if (GV->hasInitializer()) |
| 170 | MarkUsedGlobalsAsNeeded(GV->getInitializer()); |
Duncan Sands | 1da5f2d | 2009-01-05 20:37:33 +0000 | [diff] [blame] | 171 | } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(G)) { |
| 172 | // The target of a global alias is needed. |
Duncan Sands | b18715a | 2009-01-07 18:45:53 +0000 | [diff] [blame] | 173 | MarkUsedGlobalsAsNeeded(GA->getAliasee()); |
Duncan Sands | 1da5f2d | 2009-01-05 20:37:33 +0000 | [diff] [blame] | 174 | } else { |
Chris Lattner | 1cbcd0f | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 175 | // Otherwise this must be a function object. We have to scan the body of |
| 176 | // the function looking for constants and global values which are used as |
| 177 | // operands. Any operands of these types must be processed to ensure that |
| 178 | // any globals used will be marked as needed. |
| 179 | Function *F = cast<Function>(G); |
| 180 | // For all basic blocks... |
| 181 | for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) |
| 182 | // For all instructions... |
| 183 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
| 184 | // For all operands... |
| 185 | for (User::op_iterator U = I->op_begin(), E = I->op_end(); U != E; ++U) |
| 186 | if (GlobalValue *GV = dyn_cast<GlobalValue>(*U)) |
| 187 | GlobalIsNeeded(GV); |
| 188 | else if (Constant *C = dyn_cast<Constant>(*U)) |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 189 | MarkUsedGlobalsAsNeeded(C); |
Chris Lattner | 1cbcd0f | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 190 | } |
| 191 | } |
| 192 | |
| 193 | void GlobalDCE::MarkUsedGlobalsAsNeeded(Constant *C) { |
Reid Spencer | 0c4a041 | 2004-07-18 00:25:04 +0000 | [diff] [blame] | 194 | if (GlobalValue *GV = dyn_cast<GlobalValue>(C)) |
| 195 | GlobalIsNeeded(GV); |
Chris Lattner | 1cbcd0f | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 196 | else { |
| 197 | // Loop over all of the operands of the constant, adding any globals they |
| 198 | // use to the list of needed globals. |
| 199 | for (User::op_iterator I = C->op_begin(), E = C->op_end(); I != E; ++I) |
| 200 | MarkUsedGlobalsAsNeeded(cast<Constant>(*I)); |
| 201 | } |
| 202 | } |
Chris Lattner | 0bfb6ba | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 203 | |
Reid Spencer | 0c4a041 | 2004-07-18 00:25:04 +0000 | [diff] [blame] | 204 | // RemoveUnusedGlobalValue - Loop over all of the uses of the specified |
Chris Lattner | 0bfb6ba | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 205 | // GlobalValue, looking for the constant pointer ref that may be pointing to it. |
| 206 | // If found, check to see if the constant pointer ref is safe to destroy, and if |
| 207 | // so, nuke it. This will reduce the reference count on the global value, which |
| 208 | // might make it deader. |
| 209 | // |
Reid Spencer | 0c4a041 | 2004-07-18 00:25:04 +0000 | [diff] [blame] | 210 | bool GlobalDCE::RemoveUnusedGlobalValue(GlobalValue &GV) { |
Chris Lattner | 25c6d68 | 2004-07-18 07:22:58 +0000 | [diff] [blame] | 211 | if (GV.use_empty()) return false; |
| 212 | GV.removeDeadConstantUsers(); |
| 213 | return GV.use_empty(); |
| 214 | } |