Chris Lattner | eef2fe7 | 2006-01-24 04:13:11 +0000 | [diff] [blame] | 1 | //===-- Globals.cpp - Implement the GlobalValue & GlobalVariable class ----===// |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
Reid Spencer | 3d169b1 | 2004-07-18 00:06:26 +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 | // |
Reid Spencer | 3d169b1 | 2004-07-18 00:06:26 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the GlobalValue & GlobalVariable classes for the VMCore |
| 11 | // library. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Anton Korobeynikov | 546ea7e | 2007-04-29 18:02:48 +0000 | [diff] [blame] | 15 | #include "llvm/Constants.h" |
Reid Spencer | 3d169b1 | 2004-07-18 00:06:26 +0000 | [diff] [blame] | 16 | #include "llvm/GlobalVariable.h" |
Anton Korobeynikov | a97b694 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 17 | #include "llvm/GlobalAlias.h" |
Chris Lattner | eef2fe7 | 2006-01-24 04:13:11 +0000 | [diff] [blame] | 18 | #include "llvm/DerivedTypes.h" |
Reid Spencer | 3d169b1 | 2004-07-18 00:06:26 +0000 | [diff] [blame] | 19 | #include "llvm/Module.h" |
Anton Korobeynikov | da7db7d | 2008-03-11 22:28:56 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/SmallPtrSet.h" |
Torok Edwin | 6dd2730 | 2009-07-08 18:01:40 +0000 | [diff] [blame] | 21 | #include "llvm/Support/ErrorHandling.h" |
Reid Spencer | 7c16caa | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 22 | #include "llvm/Support/LeakDetector.h" |
Reid Spencer | 3d169b1 | 2004-07-18 00:06:26 +0000 | [diff] [blame] | 23 | using namespace llvm; |
| 24 | |
| 25 | //===----------------------------------------------------------------------===// |
| 26 | // GlobalValue Class |
| 27 | //===----------------------------------------------------------------------===// |
| 28 | |
Chris Lattner | dd89d9c | 2007-02-26 05:02:39 +0000 | [diff] [blame] | 29 | /// removeDeadUsersOfConstant - If the specified constantexpr is dead, remove |
| 30 | /// it. This involves recursively eliminating any dead users of the |
| 31 | /// constantexpr. |
Chris Lattner | 6f884e0 | 2009-03-09 05:50:45 +0000 | [diff] [blame] | 32 | static bool removeDeadUsersOfConstant(const Constant *C) { |
Chris Lattner | 0145eb7 | 2004-07-18 08:12:57 +0000 | [diff] [blame] | 33 | if (isa<GlobalValue>(C)) return false; // Cannot remove this |
| 34 | |
Chris Lattner | dd89d9c | 2007-02-26 05:02:39 +0000 | [diff] [blame] | 35 | while (!C->use_empty()) { |
Chris Lattner | 6f884e0 | 2009-03-09 05:50:45 +0000 | [diff] [blame] | 36 | const Constant *User = dyn_cast<Constant>(C->use_back()); |
Chris Lattner | dd89d9c | 2007-02-26 05:02:39 +0000 | [diff] [blame] | 37 | if (!User) return false; // Non-constant usage; |
| 38 | if (!removeDeadUsersOfConstant(User)) |
| 39 | return false; // Constant wasn't dead |
| 40 | } |
Chris Lattner | 0145eb7 | 2004-07-18 08:12:57 +0000 | [diff] [blame] | 41 | |
Chris Lattner | 6f884e0 | 2009-03-09 05:50:45 +0000 | [diff] [blame] | 42 | const_cast<Constant*>(C)->destroyConstant(); |
Reid Spencer | 3d169b1 | 2004-07-18 00:06:26 +0000 | [diff] [blame] | 43 | return true; |
| 44 | } |
Reid Spencer | 3d169b1 | 2004-07-18 00:06:26 +0000 | [diff] [blame] | 45 | |
Jeffrey Yasskin | 091217b | 2010-01-27 20:34:15 +0000 | [diff] [blame] | 46 | bool GlobalValue::isMaterializable() const { |
Nick Lewycky | 780d2fe | 2010-02-15 21:27:20 +0000 | [diff] [blame^] | 47 | return getParent() && getParent()->isMaterializable(this); |
Jeffrey Yasskin | 091217b | 2010-01-27 20:34:15 +0000 | [diff] [blame] | 48 | } |
| 49 | bool GlobalValue::isDematerializable() const { |
Nick Lewycky | 780d2fe | 2010-02-15 21:27:20 +0000 | [diff] [blame^] | 50 | return getParent() && getParent()->isDematerializable(this); |
Jeffrey Yasskin | 091217b | 2010-01-27 20:34:15 +0000 | [diff] [blame] | 51 | } |
| 52 | bool GlobalValue::Materialize(std::string *ErrInfo) { |
| 53 | return getParent()->Materialize(this, ErrInfo); |
| 54 | } |
| 55 | void GlobalValue::Dematerialize() { |
| 56 | getParent()->Dematerialize(this); |
| 57 | } |
| 58 | |
Reid Spencer | 3d169b1 | 2004-07-18 00:06:26 +0000 | [diff] [blame] | 59 | /// removeDeadConstantUsers - If there are any dead constant users dangling |
| 60 | /// off of this global value, remove them. This method is useful for clients |
| 61 | /// that want to check to see if a global is unused, but don't want to deal |
| 62 | /// with potentially dead constants hanging off of the globals. |
Chris Lattner | 6f884e0 | 2009-03-09 05:50:45 +0000 | [diff] [blame] | 63 | void GlobalValue::removeDeadConstantUsers() const { |
| 64 | Value::use_const_iterator I = use_begin(), E = use_end(); |
| 65 | Value::use_const_iterator LastNonDeadUser = E; |
Chris Lattner | dd89d9c | 2007-02-26 05:02:39 +0000 | [diff] [blame] | 66 | while (I != E) { |
Chris Lattner | 6f884e0 | 2009-03-09 05:50:45 +0000 | [diff] [blame] | 67 | if (const Constant *User = dyn_cast<Constant>(*I)) { |
Chris Lattner | dd89d9c | 2007-02-26 05:02:39 +0000 | [diff] [blame] | 68 | if (!removeDeadUsersOfConstant(User)) { |
| 69 | // If the constant wasn't dead, remember that this was the last live use |
| 70 | // and move on to the next constant. |
| 71 | LastNonDeadUser = I; |
| 72 | ++I; |
| 73 | } else { |
| 74 | // If the constant was dead, then the iterator is invalidated. |
| 75 | if (LastNonDeadUser == E) { |
| 76 | I = use_begin(); |
| 77 | if (I == E) break; |
| 78 | } else { |
| 79 | I = LastNonDeadUser; |
| 80 | ++I; |
| 81 | } |
| 82 | } |
Reid Spencer | 3d169b1 | 2004-07-18 00:06:26 +0000 | [diff] [blame] | 83 | } else { |
Chris Lattner | dd89d9c | 2007-02-26 05:02:39 +0000 | [diff] [blame] | 84 | LastNonDeadUser = I; |
| 85 | ++I; |
Reid Spencer | 3d169b1 | 2004-07-18 00:06:26 +0000 | [diff] [blame] | 86 | } |
| 87 | } |
Reid Spencer | 3d169b1 | 2004-07-18 00:06:26 +0000 | [diff] [blame] | 88 | } |
| 89 | |
Chris Lattner | 2747174 | 2009-11-01 04:08:01 +0000 | [diff] [blame] | 90 | |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 91 | /// Override destroyConstant to make sure it doesn't get called on |
Reid Spencer | 3d169b1 | 2004-07-18 00:06:26 +0000 | [diff] [blame] | 92 | /// GlobalValue's because they shouldn't be treated like other constants. |
Owen Anderson | 0d2de8c | 2009-06-20 00:24:58 +0000 | [diff] [blame] | 93 | void GlobalValue::destroyConstant() { |
Torok Edwin | fbcc663 | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 94 | llvm_unreachable("You can't GV->destroyConstant()!"); |
Reid Spencer | 3d169b1 | 2004-07-18 00:06:26 +0000 | [diff] [blame] | 95 | } |
Duncan Sands | dd7daee | 2008-05-26 19:58:59 +0000 | [diff] [blame] | 96 | |
| 97 | /// copyAttributesFrom - copy all additional attributes (those not needed to |
| 98 | /// create a GlobalValue) from the GlobalValue Src to this one. |
| 99 | void GlobalValue::copyAttributesFrom(const GlobalValue *Src) { |
| 100 | setAlignment(Src->getAlignment()); |
| 101 | setSection(Src->getSection()); |
| 102 | setVisibility(Src->getVisibility()); |
| 103 | } |
| 104 | |
| 105 | |
Reid Spencer | 3d169b1 | 2004-07-18 00:06:26 +0000 | [diff] [blame] | 106 | //===----------------------------------------------------------------------===// |
| 107 | // GlobalVariable Implementation |
| 108 | //===----------------------------------------------------------------------===// |
| 109 | |
Chris Lattner | 46b5c64 | 2009-11-06 04:27:31 +0000 | [diff] [blame] | 110 | GlobalVariable::GlobalVariable(const Type *Ty, bool constant, LinkageTypes Link, |
Daniel Dunbar | 4975db6 | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 111 | Constant *InitVal, const Twine &Name, |
Owen Anderson | b17f329 | 2009-07-08 19:03:57 +0000 | [diff] [blame] | 112 | bool ThreadLocal, unsigned AddressSpace) |
Owen Anderson | 4056ca9 | 2009-07-29 22:17:13 +0000 | [diff] [blame] | 113 | : GlobalValue(PointerType::get(Ty, AddressSpace), |
Owen Anderson | 5948fdf | 2009-07-08 01:26:06 +0000 | [diff] [blame] | 114 | Value::GlobalVariableVal, |
Gabor Greif | f6caff66 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 115 | OperandTraits<GlobalVariable>::op_begin(this), |
| 116 | InitVal != 0, Link, Name), |
Lauro Ramos Venancio | 749e466 | 2007-04-12 18:32:50 +0000 | [diff] [blame] | 117 | isConstantGlobal(constant), isThreadLocalSymbol(ThreadLocal) { |
Chris Lattner | 5d1bc2c | 2005-01-29 00:35:33 +0000 | [diff] [blame] | 118 | if (InitVal) { |
| 119 | assert(InitVal->getType() == Ty && |
Alkis Evlogimenos | f45cc7a | 2004-08-05 11:28:34 +0000 | [diff] [blame] | 120 | "Initializer should be the same type as the GlobalVariable!"); |
Gabor Greif | 2d3024d | 2008-05-26 21:33:52 +0000 | [diff] [blame] | 121 | Op<0>() = InitVal; |
Alkis Evlogimenos | f45cc7a | 2004-08-05 11:28:34 +0000 | [diff] [blame] | 122 | } |
Reid Spencer | 3d169b1 | 2004-07-18 00:06:26 +0000 | [diff] [blame] | 123 | |
| 124 | LeakDetector::addGarbageObject(this); |
Reid Spencer | 3d169b1 | 2004-07-18 00:06:26 +0000 | [diff] [blame] | 125 | } |
| 126 | |
Owen Anderson | b17f329 | 2009-07-08 19:03:57 +0000 | [diff] [blame] | 127 | GlobalVariable::GlobalVariable(Module &M, const Type *Ty, bool constant, |
| 128 | LinkageTypes Link, Constant *InitVal, |
Daniel Dunbar | 4975db6 | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 129 | const Twine &Name, |
Christopher Lamb | 54dd24c | 2007-12-11 08:59:05 +0000 | [diff] [blame] | 130 | GlobalVariable *Before, bool ThreadLocal, |
| 131 | unsigned AddressSpace) |
Owen Anderson | 4056ca9 | 2009-07-29 22:17:13 +0000 | [diff] [blame] | 132 | : GlobalValue(PointerType::get(Ty, AddressSpace), |
Owen Anderson | 785c56c | 2009-07-08 23:50:31 +0000 | [diff] [blame] | 133 | Value::GlobalVariableVal, |
Gabor Greif | f6caff66 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 134 | OperandTraits<GlobalVariable>::op_begin(this), |
| 135 | InitVal != 0, Link, Name), |
Lauro Ramos Venancio | 749e466 | 2007-04-12 18:32:50 +0000 | [diff] [blame] | 136 | isConstantGlobal(constant), isThreadLocalSymbol(ThreadLocal) { |
Chris Lattner | 87732cf | 2006-09-30 21:31:26 +0000 | [diff] [blame] | 137 | if (InitVal) { |
| 138 | assert(InitVal->getType() == Ty && |
| 139 | "Initializer should be the same type as the GlobalVariable!"); |
Gabor Greif | 2d3024d | 2008-05-26 21:33:52 +0000 | [diff] [blame] | 140 | Op<0>() = InitVal; |
Chris Lattner | 87732cf | 2006-09-30 21:31:26 +0000 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | LeakDetector::addGarbageObject(this); |
| 144 | |
| 145 | if (Before) |
| 146 | Before->getParent()->getGlobalList().insert(Before, this); |
Owen Anderson | b17f329 | 2009-07-08 19:03:57 +0000 | [diff] [blame] | 147 | else |
| 148 | M.getGlobalList().push_back(this); |
Chris Lattner | 87732cf | 2006-09-30 21:31:26 +0000 | [diff] [blame] | 149 | } |
| 150 | |
Reid Spencer | 3d169b1 | 2004-07-18 00:06:26 +0000 | [diff] [blame] | 151 | void GlobalVariable::setParent(Module *parent) { |
| 152 | if (getParent()) |
| 153 | LeakDetector::addGarbageObject(this); |
| 154 | Parent = parent; |
| 155 | if (getParent()) |
| 156 | LeakDetector::removeGarbageObject(this); |
| 157 | } |
| 158 | |
Chris Lattner | 02a71e7 | 2004-10-11 22:21:39 +0000 | [diff] [blame] | 159 | void GlobalVariable::removeFromParent() { |
| 160 | getParent()->getGlobalList().remove(this); |
| 161 | } |
| 162 | |
| 163 | void GlobalVariable::eraseFromParent() { |
| 164 | getParent()->getGlobalList().erase(this); |
| 165 | } |
| 166 | |
Reid Spencer | 3d169b1 | 2004-07-18 00:06:26 +0000 | [diff] [blame] | 167 | void GlobalVariable::replaceUsesOfWithOnConstant(Value *From, Value *To, |
Chris Lattner | 7a1450d | 2005-10-04 18:13:04 +0000 | [diff] [blame] | 168 | Use *U) { |
Reid Spencer | 3d169b1 | 2004-07-18 00:06:26 +0000 | [diff] [blame] | 169 | // If you call this, then you better know this GVar has a constant |
| 170 | // initializer worth replacing. Enforce that here. |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 171 | assert(getNumOperands() == 1 && |
Reid Spencer | 3d169b1 | 2004-07-18 00:06:26 +0000 | [diff] [blame] | 172 | "Attempt to replace uses of Constants on a GVar with no initializer"); |
| 173 | |
| 174 | // And, since you know it has an initializer, the From value better be |
| 175 | // the initializer :) |
| 176 | assert(getOperand(0) == From && |
| 177 | "Attempt to replace wrong constant initializer in GVar"); |
| 178 | |
| 179 | // And, you better have a constant for the replacement value |
| 180 | assert(isa<Constant>(To) && |
| 181 | "Attempt to replace GVar initializer with non-constant"); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 182 | |
Reid Spencer | 3d169b1 | 2004-07-18 00:06:26 +0000 | [diff] [blame] | 183 | // Okay, preconditions out of the way, replace the constant initializer. |
Chris Lattner | 37b570a | 2004-08-04 02:27:17 +0000 | [diff] [blame] | 184 | this->setOperand(0, cast<Constant>(To)); |
Reid Spencer | 3d169b1 | 2004-07-18 00:06:26 +0000 | [diff] [blame] | 185 | } |
Anton Korobeynikov | a97b694 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 186 | |
Jeffrey Yasskin | 7c57c41 | 2009-11-17 00:43:13 +0000 | [diff] [blame] | 187 | void GlobalVariable::setInitializer(Constant *InitVal) { |
| 188 | if (InitVal == 0) { |
| 189 | if (hasInitializer()) { |
| 190 | Op<0>().set(0); |
| 191 | NumOperands = 0; |
| 192 | } |
| 193 | } else { |
| 194 | assert(InitVal->getType() == getType()->getElementType() && |
| 195 | "Initializer type must match GlobalVariable type"); |
| 196 | if (!hasInitializer()) |
| 197 | NumOperands = 1; |
| 198 | Op<0>().set(InitVal); |
| 199 | } |
| 200 | } |
| 201 | |
Duncan Sands | dd7daee | 2008-05-26 19:58:59 +0000 | [diff] [blame] | 202 | /// copyAttributesFrom - copy all additional attributes (those not needed to |
| 203 | /// create a GlobalVariable) from the GlobalVariable Src to this one. |
| 204 | void GlobalVariable::copyAttributesFrom(const GlobalValue *Src) { |
| 205 | assert(isa<GlobalVariable>(Src) && "Expected a GlobalVariable!"); |
| 206 | GlobalValue::copyAttributesFrom(Src); |
| 207 | const GlobalVariable *SrcVar = cast<GlobalVariable>(Src); |
| 208 | setThreadLocal(SrcVar->isThreadLocal()); |
| 209 | } |
| 210 | |
| 211 | |
Anton Korobeynikov | a97b694 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 212 | //===----------------------------------------------------------------------===// |
| 213 | // GlobalAlias Implementation |
| 214 | //===----------------------------------------------------------------------===// |
| 215 | |
| 216 | GlobalAlias::GlobalAlias(const Type *Ty, LinkageTypes Link, |
Daniel Dunbar | d43b86d | 2009-07-25 06:02:13 +0000 | [diff] [blame] | 217 | const Twine &Name, Constant* aliasee, |
Anton Korobeynikov | a97b694 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 218 | Module *ParentModule) |
Gabor Greif | f6caff66 | 2008-05-10 08:32:32 +0000 | [diff] [blame] | 219 | : GlobalValue(Ty, Value::GlobalAliasVal, &Op<0>(), 1, Link, Name) { |
Anton Korobeynikov | a97b694 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 220 | LeakDetector::addGarbageObject(this); |
| 221 | |
Anton Korobeynikov | b18f8f8 | 2007-04-28 13:45:00 +0000 | [diff] [blame] | 222 | if (aliasee) |
| 223 | assert(aliasee->getType() == Ty && "Alias and aliasee types should match!"); |
Gabor Greif | 2d3024d | 2008-05-26 21:33:52 +0000 | [diff] [blame] | 224 | Op<0>() = aliasee; |
Anton Korobeynikov | b18f8f8 | 2007-04-28 13:45:00 +0000 | [diff] [blame] | 225 | |
Anton Korobeynikov | a97b694 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 226 | if (ParentModule) |
| 227 | ParentModule->getAliasList().push_back(this); |
| 228 | } |
| 229 | |
| 230 | void GlobalAlias::setParent(Module *parent) { |
| 231 | if (getParent()) |
| 232 | LeakDetector::addGarbageObject(this); |
| 233 | Parent = parent; |
| 234 | if (getParent()) |
| 235 | LeakDetector::removeGarbageObject(this); |
| 236 | } |
| 237 | |
| 238 | void GlobalAlias::removeFromParent() { |
| 239 | getParent()->getAliasList().remove(this); |
| 240 | } |
| 241 | |
| 242 | void GlobalAlias::eraseFromParent() { |
| 243 | getParent()->getAliasList().erase(this); |
| 244 | } |
| 245 | |
| 246 | bool GlobalAlias::isDeclaration() const { |
Anton Korobeynikov | 546ea7e | 2007-04-29 18:02:48 +0000 | [diff] [blame] | 247 | const GlobalValue* AV = getAliasedGlobal(); |
| 248 | if (AV) |
| 249 | return AV->isDeclaration(); |
| 250 | else |
| 251 | return false; |
Anton Korobeynikov | a97b694 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 252 | } |
| 253 | |
Anton Korobeynikov | b18f8f8 | 2007-04-28 13:45:00 +0000 | [diff] [blame] | 254 | void GlobalAlias::setAliasee(Constant *Aliasee) |
Anton Korobeynikov | a97b694 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 255 | { |
Anton Korobeynikov | 546ea7e | 2007-04-29 18:02:48 +0000 | [diff] [blame] | 256 | if (Aliasee) |
| 257 | assert(Aliasee->getType() == getType() && |
Anton Korobeynikov | b18f8f8 | 2007-04-28 13:45:00 +0000 | [diff] [blame] | 258 | "Alias and aliasee types should match!"); |
Anton Korobeynikov | 546ea7e | 2007-04-29 18:02:48 +0000 | [diff] [blame] | 259 | |
| 260 | setOperand(0, Aliasee); |
| 261 | } |
| 262 | |
Chris Lattner | c2d0530 | 2007-05-05 23:49:02 +0000 | [diff] [blame] | 263 | const GlobalValue *GlobalAlias::getAliasedGlobal() const { |
Anton Korobeynikov | 546ea7e | 2007-04-29 18:02:48 +0000 | [diff] [blame] | 264 | const Constant *C = getAliasee(); |
| 265 | if (C) { |
| 266 | if (const GlobalValue *GV = dyn_cast<GlobalValue>(C)) |
| 267 | return GV; |
| 268 | else { |
| 269 | const ConstantExpr *CE = 0; |
Anton Korobeynikov | a30bc8f | 2007-04-30 10:28:40 +0000 | [diff] [blame] | 270 | if ((CE = dyn_cast<ConstantExpr>(C)) && |
Chris Lattner | c2d0530 | 2007-05-05 23:49:02 +0000 | [diff] [blame] | 271 | (CE->getOpcode() == Instruction::BitCast || |
| 272 | CE->getOpcode() == Instruction::GetElementPtr)) |
| 273 | return dyn_cast<GlobalValue>(CE->getOperand(0)); |
Anton Korobeynikov | 546ea7e | 2007-04-29 18:02:48 +0000 | [diff] [blame] | 274 | else |
Torok Edwin | fbcc663 | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 275 | llvm_unreachable("Unsupported aliasee"); |
Anton Korobeynikov | 546ea7e | 2007-04-29 18:02:48 +0000 | [diff] [blame] | 276 | } |
Jeff Cohen | ee7bf76 | 2007-05-03 22:09:21 +0000 | [diff] [blame] | 277 | } |
| 278 | return 0; |
Anton Korobeynikov | a97b694 | 2007-04-25 14:27:10 +0000 | [diff] [blame] | 279 | } |
| 280 | |
Anton Korobeynikov | 1a11404 | 2008-09-09 20:05:04 +0000 | [diff] [blame] | 281 | const GlobalValue *GlobalAlias::resolveAliasedGlobal(bool stopOnWeak) const { |
Anton Korobeynikov | 2fb3897 | 2008-03-22 07:48:40 +0000 | [diff] [blame] | 282 | SmallPtrSet<const GlobalValue*, 3> Visited; |
Anton Korobeynikov | da7db7d | 2008-03-11 22:28:56 +0000 | [diff] [blame] | 283 | |
Anton Korobeynikov | ac2c655 | 2008-09-09 18:23:48 +0000 | [diff] [blame] | 284 | // Check if we need to stop early. |
Duncan Sands | 715b289 | 2009-01-08 20:55:49 +0000 | [diff] [blame] | 285 | if (stopOnWeak && mayBeOverridden()) |
Anton Korobeynikov | ac2c655 | 2008-09-09 18:23:48 +0000 | [diff] [blame] | 286 | return this; |
| 287 | |
Anton Korobeynikov | da7db7d | 2008-03-11 22:28:56 +0000 | [diff] [blame] | 288 | const GlobalValue *GV = getAliasedGlobal(); |
| 289 | Visited.insert(GV); |
| 290 | |
Anton Korobeynikov | ac2c655 | 2008-09-09 18:23:48 +0000 | [diff] [blame] | 291 | // Iterate over aliasing chain, stopping on weak alias if necessary. |
Anton Korobeynikov | da7db7d | 2008-03-11 22:28:56 +0000 | [diff] [blame] | 292 | while (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV)) { |
Duncan Sands | 715b289 | 2009-01-08 20:55:49 +0000 | [diff] [blame] | 293 | if (stopOnWeak && GA->mayBeOverridden()) |
Anton Korobeynikov | ac2c655 | 2008-09-09 18:23:48 +0000 | [diff] [blame] | 294 | break; |
| 295 | |
Anton Korobeynikov | da7db7d | 2008-03-11 22:28:56 +0000 | [diff] [blame] | 296 | GV = GA->getAliasedGlobal(); |
| 297 | |
| 298 | if (!Visited.insert(GV)) |
| 299 | return NULL; |
| 300 | } |
| 301 | |
| 302 | return GV; |
| 303 | } |