Chris Lattner | 62b7fd1 | 2002-04-07 20:49:59 +0000 | [diff] [blame] | 1 | //===-- GlobalDCE.cpp - DCE unreachable internal functions ----------------===// |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 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 | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | bd422e6 | 2001-11-26 18:42:17 +0000 | [diff] [blame] | 9 | // |
Chris Lattner | ec6d7a6 | 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 | bd422e6 | 2001-11-26 18:42:17 +0000 | [diff] [blame] | 15 | // |
| 16 | //===----------------------------------------------------------------------===// |
| 17 | |
Chris Lattner | 99a53f6 | 2002-07-24 17:12:05 +0000 | [diff] [blame] | 18 | #include "llvm/Transforms/IPO.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/SmallPtrSet.h" |
| 20 | #include "llvm/ADT/Statistic.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 21 | #include "llvm/IR/Constants.h" |
Nico Weber | 4b2acde | 2014-05-02 18:35:25 +0000 | [diff] [blame] | 22 | #include "llvm/IR/Instructions.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 23 | #include "llvm/IR/Module.h" |
Nico Weber | 4b2acde | 2014-05-02 18:35:25 +0000 | [diff] [blame] | 24 | #include "llvm/Transforms/Utils/CtorUtils.h" |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 25 | #include "llvm/Pass.h" |
Chris Lattner | f52e03c | 2003-11-21 21:54:22 +0000 | [diff] [blame] | 26 | using namespace llvm; |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 27 | |
Chandler Carruth | 964daaa | 2014-04-22 02:55:47 +0000 | [diff] [blame] | 28 | #define DEBUG_TYPE "globaldce" |
| 29 | |
Duncan Sands | 821d13c | 2009-01-05 20:39:50 +0000 | [diff] [blame] | 30 | STATISTIC(NumAliases , "Number of global aliases removed"); |
Chris Lattner | 1631bcb | 2006-12-19 22:09:18 +0000 | [diff] [blame] | 31 | STATISTIC(NumFunctions, "Number of functions removed"); |
| 32 | STATISTIC(NumVariables, "Number of global variables removed"); |
Chris Lattner | bf3a099 | 2002-10-01 22:38:41 +0000 | [diff] [blame] | 33 | |
Chris Lattner | 1631bcb | 2006-12-19 22:09:18 +0000 | [diff] [blame] | 34 | namespace { |
Nick Lewycky | 02d5f77 | 2009-10-25 06:33:48 +0000 | [diff] [blame] | 35 | struct GlobalDCE : public ModulePass { |
Nick Lewycky | e7da2d6 | 2007-05-06 13:37:16 +0000 | [diff] [blame] | 36 | static char ID; // Pass identification, replacement for typeid |
Owen Anderson | 6c18d1a | 2010-10-19 17:21:58 +0000 | [diff] [blame] | 37 | GlobalDCE() : ModulePass(ID) { |
| 38 | initializeGlobalDCEPass(*PassRegistry::getPassRegistry()); |
| 39 | } |
Duncan Sands | f5dbbae | 2009-01-05 20:37:33 +0000 | [diff] [blame] | 40 | |
Chris Lattner | 04805fa | 2002-02-26 21:46:54 +0000 | [diff] [blame] | 41 | // run - Do the GlobalDCE pass on the specified module, optionally updating |
| 42 | // the specified callgraph to reflect the changes. |
| 43 | // |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 44 | bool runOnModule(Module &M) override; |
Chris Lattner | 8f3acc6 | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 45 | |
| 46 | private: |
Chris Lattner | b5d9c8c | 2009-11-01 19:03:42 +0000 | [diff] [blame] | 47 | SmallPtrSet<GlobalValue*, 32> AliveGlobals; |
Benjamin Kramer | 89ca4bc | 2013-04-13 12:53:18 +0000 | [diff] [blame] | 48 | SmallPtrSet<Constant *, 8> SeenConstants; |
Chris Lattner | 8f3acc6 | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 49 | |
Duncan Sands | f5dbbae | 2009-01-05 20:37:33 +0000 | [diff] [blame] | 50 | /// GlobalIsNeeded - mark the specific global value as needed, and |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 51 | /// recursively mark anything that it uses as also needed. |
| 52 | void GlobalIsNeeded(GlobalValue *GV); |
| 53 | void MarkUsedGlobalsAsNeeded(Constant *C); |
Chris Lattner | 8f3acc6 | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 54 | |
Reid Spencer | 5f68159 | 2004-07-18 00:25:04 +0000 | [diff] [blame] | 55 | bool RemoveUnusedGlobalValue(GlobalValue &GV); |
Chris Lattner | 04805fa | 2002-02-26 21:46:54 +0000 | [diff] [blame] | 56 | }; |
Richard Smith | c167d65 | 2014-05-06 01:44:26 +0000 | [diff] [blame] | 57 | } |
Nico Weber | 4b2acde | 2014-05-02 18:35:25 +0000 | [diff] [blame] | 58 | |
| 59 | /// Returns true if F contains only a single "ret" instruction. |
Richard Smith | c167d65 | 2014-05-06 01:44:26 +0000 | [diff] [blame] | 60 | static bool isEmptyFunction(Function *F) { |
Nico Weber | 4b2acde | 2014-05-02 18:35:25 +0000 | [diff] [blame] | 61 | BasicBlock &Entry = F->getEntryBlock(); |
| 62 | if (Entry.size() != 1 || !isa<ReturnInst>(Entry.front())) |
| 63 | return false; |
| 64 | ReturnInst &RI = cast<ReturnInst>(Entry.front()); |
Craig Topper | 66f09ad | 2014-06-08 22:29:17 +0000 | [diff] [blame^] | 65 | return RI.getReturnValue() == nullptr; |
Nico Weber | 4b2acde | 2014-05-02 18:35:25 +0000 | [diff] [blame] | 66 | } |
Chris Lattner | d5d5678 | 2002-01-31 00:45:11 +0000 | [diff] [blame] | 67 | |
Dan Gohman | d78c400 | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 68 | char GlobalDCE::ID = 0; |
Owen Anderson | a57b97e | 2010-07-21 22:09:45 +0000 | [diff] [blame] | 69 | INITIALIZE_PASS(GlobalDCE, "globaldce", |
Owen Anderson | df7a4f2 | 2010-10-07 22:25:06 +0000 | [diff] [blame] | 70 | "Dead Global Elimination", false, false) |
Dan Gohman | d78c400 | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 71 | |
Chris Lattner | 4f2cf03 | 2004-09-20 04:48:05 +0000 | [diff] [blame] | 72 | ModulePass *llvm::createGlobalDCEPass() { return new GlobalDCE(); } |
Chris Lattner | 8f3acc6 | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 73 | |
Chris Lattner | 4f2cf03 | 2004-09-20 04:48:05 +0000 | [diff] [blame] | 74 | bool GlobalDCE::runOnModule(Module &M) { |
Chris Lattner | 8f3acc6 | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 75 | bool Changed = false; |
Nico Weber | 4b2acde | 2014-05-02 18:35:25 +0000 | [diff] [blame] | 76 | |
| 77 | // Remove empty functions from the global ctors list. |
Richard Smith | c167d65 | 2014-05-06 01:44:26 +0000 | [diff] [blame] | 78 | Changed |= optimizeGlobalCtorsList(M, isEmptyFunction); |
Nico Weber | 4b2acde | 2014-05-02 18:35:25 +0000 | [diff] [blame] | 79 | |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 80 | // Loop over the module, adding globals which are obviously necessary. |
Chris Lattner | 8f3acc6 | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 81 | for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) { |
Reid Spencer | 5f68159 | 2004-07-18 00:25:04 +0000 | [diff] [blame] | 82 | Changed |= RemoveUnusedGlobalValue(*I); |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 83 | // Functions with external linkage are needed if they have a body |
Rafael Espindola | def1b09 | 2012-06-14 22:48:13 +0000 | [diff] [blame] | 84 | if (!I->isDiscardableIfUnused() && |
Torok Edwin | 7996339 | 2009-05-23 14:06:57 +0000 | [diff] [blame] | 85 | !I->isDeclaration() && !I->hasAvailableExternallyLinkage()) |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 86 | GlobalIsNeeded(I); |
Chris Lattner | 8f3acc6 | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 87 | } |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 88 | |
Anton Korobeynikov | a97b694 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 89 | for (Module::global_iterator I = M.global_begin(), E = M.global_end(); |
| 90 | I != E; ++I) { |
Reid Spencer | 5f68159 | 2004-07-18 00:25:04 +0000 | [diff] [blame] | 91 | Changed |= RemoveUnusedGlobalValue(*I); |
Chris Lattner | c8dfbbb | 2003-09-20 19:00:50 +0000 | [diff] [blame] | 92 | // Externally visible & appending globals are needed, if they have an |
| 93 | // initializer. |
Rafael Espindola | def1b09 | 2012-06-14 22:48:13 +0000 | [diff] [blame] | 94 | if (!I->isDiscardableIfUnused() && |
Torok Edwin | 7996339 | 2009-05-23 14:06:57 +0000 | [diff] [blame] | 95 | !I->isDeclaration() && !I->hasAvailableExternallyLinkage()) |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 96 | GlobalIsNeeded(I); |
Chris Lattner | 8f3acc6 | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 97 | } |
| 98 | |
Anton Korobeynikov | a97b694 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 99 | for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end(); |
| 100 | I != E; ++I) { |
Duncan Sands | f5dbbae | 2009-01-05 20:37:33 +0000 | [diff] [blame] | 101 | Changed |= RemoveUnusedGlobalValue(*I); |
| 102 | // Externally visible aliases are needed. |
Rafael Espindola | def1b09 | 2012-06-14 22:48:13 +0000 | [diff] [blame] | 103 | if (!I->isDiscardableIfUnused()) |
Duncan Sands | f5dbbae | 2009-01-05 20:37:33 +0000 | [diff] [blame] | 104 | GlobalIsNeeded(I); |
Anton Korobeynikov | a97b694 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 105 | } |
| 106 | |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 107 | // Now that all globals which are needed are in the AliveGlobals set, we loop |
| 108 | // through the program, deleting those which are not alive. |
Chris Lattner | 8f3acc6 | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 109 | // |
Chris Lattner | 8f3acc6 | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 110 | |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 111 | // The first pass is to drop initializers of global variables which are dead. |
| 112 | std::vector<GlobalVariable*> DeadGlobalVars; // Keep track of dead globals |
Chris Lattner | b5d9c8c | 2009-11-01 19:03:42 +0000 | [diff] [blame] | 113 | for (Module::global_iterator I = M.global_begin(), E = M.global_end(); |
| 114 | I != E; ++I) |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 115 | if (!AliveGlobals.count(I)) { |
| 116 | DeadGlobalVars.push_back(I); // Keep track of dead globals |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 117 | I->setInitializer(nullptr); |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 118 | } |
| 119 | |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 120 | // The second pass drops the bodies of functions which are dead... |
| 121 | std::vector<Function*> DeadFunctions; |
| 122 | for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) |
| 123 | if (!AliveGlobals.count(I)) { |
| 124 | DeadFunctions.push_back(I); // Keep track of dead globals |
Reid Spencer | 5301e7c | 2007-01-30 20:08:39 +0000 | [diff] [blame] | 125 | if (!I->isDeclaration()) |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 126 | I->deleteBody(); |
| 127 | } |
| 128 | |
Duncan Sands | bf3ba5a | 2009-02-17 23:05:26 +0000 | [diff] [blame] | 129 | // The third pass drops targets of aliases which are dead... |
| 130 | std::vector<GlobalAlias*> DeadAliases; |
| 131 | for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end(); I != E; |
| 132 | ++I) |
| 133 | if (!AliveGlobals.count(I)) { |
| 134 | DeadAliases.push_back(I); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 135 | I->setAliasee(nullptr); |
Duncan Sands | bf3ba5a | 2009-02-17 23:05:26 +0000 | [diff] [blame] | 136 | } |
| 137 | |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 138 | if (!DeadFunctions.empty()) { |
Duncan Sands | f5dbbae | 2009-01-05 20:37:33 +0000 | [diff] [blame] | 139 | // Now that all interferences have been dropped, delete the actual objects |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 140 | // themselves. |
| 141 | for (unsigned i = 0, e = DeadFunctions.size(); i != e; ++i) { |
Reid Spencer | 5f68159 | 2004-07-18 00:25:04 +0000 | [diff] [blame] | 142 | RemoveUnusedGlobalValue(*DeadFunctions[i]); |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 143 | M.getFunctionList().erase(DeadFunctions[i]); |
| 144 | } |
| 145 | NumFunctions += DeadFunctions.size(); |
| 146 | Changed = true; |
Chris Lattner | 8f3acc6 | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 147 | } |
| 148 | |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 149 | if (!DeadGlobalVars.empty()) { |
| 150 | for (unsigned i = 0, e = DeadGlobalVars.size(); i != e; ++i) { |
Reid Spencer | 5f68159 | 2004-07-18 00:25:04 +0000 | [diff] [blame] | 151 | RemoveUnusedGlobalValue(*DeadGlobalVars[i]); |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 152 | M.getGlobalList().erase(DeadGlobalVars[i]); |
| 153 | } |
| 154 | NumVariables += DeadGlobalVars.size(); |
| 155 | Changed = true; |
| 156 | } |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 157 | |
Duncan Sands | f5dbbae | 2009-01-05 20:37:33 +0000 | [diff] [blame] | 158 | // Now delete any dead aliases. |
Duncan Sands | bf3ba5a | 2009-02-17 23:05:26 +0000 | [diff] [blame] | 159 | if (!DeadAliases.empty()) { |
| 160 | for (unsigned i = 0, e = DeadAliases.size(); i != e; ++i) { |
| 161 | RemoveUnusedGlobalValue(*DeadAliases[i]); |
| 162 | M.getAliasList().erase(DeadAliases[i]); |
Duncan Sands | f5dbbae | 2009-01-05 20:37:33 +0000 | [diff] [blame] | 163 | } |
Duncan Sands | bf3ba5a | 2009-02-17 23:05:26 +0000 | [diff] [blame] | 164 | NumAliases += DeadAliases.size(); |
| 165 | Changed = true; |
Duncan Sands | f5dbbae | 2009-01-05 20:37:33 +0000 | [diff] [blame] | 166 | } |
| 167 | |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 168 | // Make sure that all memory is released |
| 169 | AliveGlobals.clear(); |
Benjamin Kramer | 89ca4bc | 2013-04-13 12:53:18 +0000 | [diff] [blame] | 170 | SeenConstants.clear(); |
Devang Patel | c5aa8c6 | 2009-08-11 06:31:57 +0000 | [diff] [blame] | 171 | |
Chris Lattner | 8f3acc6 | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 172 | return Changed; |
| 173 | } |
| 174 | |
Devang Patel | 95b1812 | 2008-11-11 19:16:41 +0000 | [diff] [blame] | 175 | /// GlobalIsNeeded - the specific global value as needed, and |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 176 | /// recursively mark anything that it uses as also needed. |
| 177 | void GlobalDCE::GlobalIsNeeded(GlobalValue *G) { |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 178 | // If the global is already in the set, no need to reprocess it. |
Chris Lattner | b5d9c8c | 2009-11-01 19:03:42 +0000 | [diff] [blame] | 179 | if (!AliveGlobals.insert(G)) |
| 180 | return; |
| 181 | |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 182 | if (GlobalVariable *GV = dyn_cast<GlobalVariable>(G)) { |
| 183 | // If this is a global variable, we must make sure to add any global values |
| 184 | // referenced by the initializer to the alive set. |
| 185 | if (GV->hasInitializer()) |
| 186 | MarkUsedGlobalsAsNeeded(GV->getInitializer()); |
Duncan Sands | f5dbbae | 2009-01-05 20:37:33 +0000 | [diff] [blame] | 187 | } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(G)) { |
| 188 | // The target of a global alias is needed. |
Duncan Sands | 187c571 | 2009-01-07 18:45:53 +0000 | [diff] [blame] | 189 | MarkUsedGlobalsAsNeeded(GA->getAliasee()); |
Duncan Sands | f5dbbae | 2009-01-05 20:37:33 +0000 | [diff] [blame] | 190 | } else { |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 191 | // Otherwise this must be a function object. We have to scan the body of |
| 192 | // the function looking for constants and global values which are used as |
| 193 | // operands. Any operands of these types must be processed to ensure that |
| 194 | // any globals used will be marked as needed. |
| 195 | Function *F = cast<Function>(G); |
Chris Lattner | b5d9c8c | 2009-11-01 19:03:42 +0000 | [diff] [blame] | 196 | |
Peter Collingbourne | 3fa50f9 | 2013-09-16 01:08:15 +0000 | [diff] [blame] | 197 | if (F->hasPrefixData()) |
| 198 | MarkUsedGlobalsAsNeeded(F->getPrefixData()); |
| 199 | |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 200 | for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 201 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 202 | for (User::op_iterator U = I->op_begin(), E = I->op_end(); U != E; ++U) |
| 203 | if (GlobalValue *GV = dyn_cast<GlobalValue>(*U)) |
| 204 | GlobalIsNeeded(GV); |
| 205 | else if (Constant *C = dyn_cast<Constant>(*U)) |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 206 | MarkUsedGlobalsAsNeeded(C); |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 207 | } |
| 208 | } |
| 209 | |
| 210 | void GlobalDCE::MarkUsedGlobalsAsNeeded(Constant *C) { |
Reid Spencer | 5f68159 | 2004-07-18 00:25:04 +0000 | [diff] [blame] | 211 | if (GlobalValue *GV = dyn_cast<GlobalValue>(C)) |
Chris Lattner | ee8b951 | 2009-10-29 01:21:20 +0000 | [diff] [blame] | 212 | return GlobalIsNeeded(GV); |
Benjamin Kramer | 89ca4bc | 2013-04-13 12:53:18 +0000 | [diff] [blame] | 213 | |
Chris Lattner | ee8b951 | 2009-10-29 01:21:20 +0000 | [diff] [blame] | 214 | // Loop over all of the operands of the constant, adding any globals they |
| 215 | // use to the list of needed globals. |
Benjamin Kramer | 89ca4bc | 2013-04-13 12:53:18 +0000 | [diff] [blame] | 216 | for (User::op_iterator I = C->op_begin(), E = C->op_end(); I != E; ++I) { |
| 217 | // If we've already processed this constant there's no need to do it again. |
Benjamin Kramer | adc1727 | 2013-04-13 16:11:14 +0000 | [diff] [blame] | 218 | Constant *Op = dyn_cast<Constant>(*I); |
| 219 | if (Op && SeenConstants.insert(Op)) |
Benjamin Kramer | 89ca4bc | 2013-04-13 12:53:18 +0000 | [diff] [blame] | 220 | MarkUsedGlobalsAsNeeded(Op); |
| 221 | } |
Chris Lattner | ec6d7a6 | 2003-09-16 19:27:31 +0000 | [diff] [blame] | 222 | } |
Chris Lattner | 8f3acc6 | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 223 | |
Reid Spencer | 5f68159 | 2004-07-18 00:25:04 +0000 | [diff] [blame] | 224 | // RemoveUnusedGlobalValue - Loop over all of the uses of the specified |
Chris Lattner | 8f3acc6 | 2002-08-18 01:28:30 +0000 | [diff] [blame] | 225 | // GlobalValue, looking for the constant pointer ref that may be pointing to it. |
| 226 | // If found, check to see if the constant pointer ref is safe to destroy, and if |
| 227 | // so, nuke it. This will reduce the reference count on the global value, which |
| 228 | // might make it deader. |
| 229 | // |
Reid Spencer | 5f68159 | 2004-07-18 00:25:04 +0000 | [diff] [blame] | 230 | bool GlobalDCE::RemoveUnusedGlobalValue(GlobalValue &GV) { |
Chris Lattner | 9238d78 | 2004-07-18 07:22:58 +0000 | [diff] [blame] | 231 | if (GV.use_empty()) return false; |
| 232 | GV.removeDeadConstantUsers(); |
| 233 | return GV.use_empty(); |
| 234 | } |