blob: 645dd5a21c7451850cb68aec4b68fbda2ec111c6 [file] [log] [blame]
Chris Lattner2f7c9632001-06-06 20:29:01 +00001//===-- Value.cpp - Implement the Value class -----------------------------===//
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 Lattner2f7c9632001-06-06 20:29:01 +00009//
Chris Lattner90234f32009-03-31 22:11:05 +000010// This file implements the Value, ValueHandle, and User classes.
Chris Lattner2f7c9632001-06-06 20:29:01 +000011//
12//===----------------------------------------------------------------------===//
13
Owen Andersone8f21852009-08-18 18:28:58 +000014#include "LLVMContextImpl.h"
Chris Lattner2c6abea2002-10-09 23:12:59 +000015#include "llvm/Constant.h"
Anton Korobeynikov82c02b22008-05-06 22:52:30 +000016#include "llvm/Constants.h"
Chris Lattnercdb9bfc2005-03-05 19:51:50 +000017#include "llvm/DerivedTypes.h"
18#include "llvm/InstrTypes.h"
Devang Patel1f00b532008-02-21 01:54:02 +000019#include "llvm/Instructions.h"
Dan Gohman1d548d82009-07-17 22:25:10 +000020#include "llvm/Operator.h"
Chris Lattnercdb9bfc2005-03-05 19:51:50 +000021#include "llvm/Module.h"
Reid Spencer3aaaa0b2007-02-05 20:47:22 +000022#include "llvm/ValueSymbolTable.h"
Daniel Dunbar4975db62009-07-25 04:41:11 +000023#include "llvm/ADT/SmallString.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000024#include "llvm/Support/Debug.h"
Torok Edwin6dd27302009-07-08 18:01:40 +000025#include "llvm/Support/ErrorHandling.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000026#include "llvm/Support/LeakDetector.h"
Chris Lattner90234f32009-03-31 22:11:05 +000027#include "llvm/Support/ManagedStatic.h"
28#include "llvm/Support/ValueHandle.h"
29#include "llvm/ADT/DenseMap.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000030#include <algorithm>
Chris Lattner189d19f2003-11-21 20:23:48 +000031using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000032
Chris Lattner2f7c9632001-06-06 20:29:01 +000033//===----------------------------------------------------------------------===//
34// Value Class
35//===----------------------------------------------------------------------===//
36
Chris Lattner25450e32001-12-13 00:41:27 +000037static inline const Type *checkType(const Type *Ty) {
38 assert(Ty && "Value defined with a null type: Error!");
39 return Ty;
40}
41
Chris Lattner32ab6432007-02-12 05:18:08 +000042Value::Value(const Type *ty, unsigned scid)
Chris Lattner2f2aa2b2009-12-28 23:41:32 +000043 : SubclassID(scid), HasValueHandle(0),
Benjamin Kramer5ff90ed2009-09-17 14:51:57 +000044 SubclassOptionalData(0), SubclassData(0), VTy(checkType(ty)),
Gabor Greif715b9d22008-09-19 15:13:20 +000045 UseList(0), Name(0) {
Devang Patelad582fc2008-02-21 02:14:01 +000046 if (isa<CallInst>(this) || isa<InvokeInst>(this))
Benjamin Kramerccce8ba2010-01-05 13:12:22 +000047 assert((VTy->isFirstClassType() || VTy->isVoidTy() ||
Duncan Sandscbd43f82010-02-16 14:50:09 +000048 ty->isOpaqueTy() || VTy->isStructTy()) &&
Devang Patel1f00b532008-02-21 01:54:02 +000049 "invalid CallInst type!");
50 else if (!isa<Constant>(this) && !isa<BasicBlock>(this))
Benjamin Kramerccce8ba2010-01-05 13:12:22 +000051 assert((VTy->isFirstClassType() || VTy->isVoidTy() ||
Duncan Sandscbd43f82010-02-16 14:50:09 +000052 ty->isOpaqueTy()) &&
Chris Lattnerbea72472004-07-06 17:44:17 +000053 "Cannot create non-first-class values except for constants!");
Chris Lattner2f7c9632001-06-06 20:29:01 +000054}
55
Gordon Henriksen14a55692007-12-10 02:14:30 +000056Value::~Value() {
Chris Lattner90234f32009-03-31 22:11:05 +000057 // Notify all ValueHandles (if present) that this value is going away.
58 if (HasValueHandle)
59 ValueHandleBase::ValueIsDeleted(this);
Daniel Dunbar6058b512009-09-20 04:03:34 +000060
Chris Lattner2f7c9632001-06-06 20:29:01 +000061#ifndef NDEBUG // Only in -g mode...
Chris Lattner874ddad2001-06-11 15:04:40 +000062 // Check to make sure that there are no uses of this value that are still
63 // around when the value is destroyed. If there are, then we have a dangling
64 // reference and something is wrong. This code is here to print out what is
Misha Brukmanb1c93172005-04-21 23:48:37 +000065 // still being referenced. The value in question should be printed as
Chris Lattner874ddad2001-06-11 15:04:40 +000066 // a <badref>
67 //
Gordon Henriksen14a55692007-12-10 02:14:30 +000068 if (!use_empty()) {
David Greene3f907a92010-01-05 01:30:09 +000069 dbgs() << "While deleting: " << *VTy << " %" << getNameStr() << "\n";
Gordon Henriksen14a55692007-12-10 02:14:30 +000070 for (use_iterator I = use_begin(), E = use_end(); I != E; ++I)
David Greene3f907a92010-01-05 01:30:09 +000071 dbgs() << "Use still stuck around after Def is destroyed:"
Bill Wendling6a462f12006-11-17 08:03:48 +000072 << **I << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +000073 }
74#endif
Gordon Henriksen14a55692007-12-10 02:14:30 +000075 assert(use_empty() && "Uses remain when a value is destroyed!");
Chris Lattner694285c2009-08-04 23:07:12 +000076
77 // If this value is named, destroy the name. This should not be in a symtab
78 // at this point.
79 if (Name)
80 Name->Destroy();
Daniel Dunbar6058b512009-09-20 04:03:34 +000081
Chris Lattner694285c2009-08-04 23:07:12 +000082 // There should be no uses of this object anymore, remove it.
83 LeakDetector::removeGarbageObject(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +000084}
85
Chris Lattner4947e672005-02-01 01:24:21 +000086/// hasNUses - Return true if this Value has exactly N users.
87///
88bool Value::hasNUses(unsigned N) const {
Gabor Greifc78d7202010-03-25 23:06:16 +000089 const_use_iterator UI = use_begin(), E = use_end();
Chris Lattner4947e672005-02-01 01:24:21 +000090
91 for (; N; --N, ++UI)
92 if (UI == E) return false; // Too few.
93 return UI == E;
94}
95
Chris Lattnerd36552f2005-02-23 16:51:11 +000096/// hasNUsesOrMore - Return true if this value has N users or more. This is
97/// logically equivalent to getNumUses() >= N.
98///
99bool Value::hasNUsesOrMore(unsigned N) const {
Gabor Greifc78d7202010-03-25 23:06:16 +0000100 const_use_iterator UI = use_begin(), E = use_end();
Chris Lattnerd36552f2005-02-23 16:51:11 +0000101
102 for (; N; --N, ++UI)
103 if (UI == E) return false; // Too few.
104
105 return true;
106}
107
Evan Cheng89553cc2008-06-12 21:15:59 +0000108/// isUsedInBasicBlock - Return true if this value is used in the specified
109/// basic block.
Bill Wendling0c374212008-09-25 22:42:01 +0000110bool Value::isUsedInBasicBlock(const BasicBlock *BB) const {
Gabor Greifc78d7202010-03-25 23:06:16 +0000111 for (const_use_iterator I = use_begin(), E = use_end(); I != E; ++I) {
Evan Cheng89553cc2008-06-12 21:15:59 +0000112 const Instruction *User = dyn_cast<Instruction>(*I);
113 if (User && User->getParent() == BB)
114 return true;
115 }
116 return false;
117}
118
Chris Lattnerd36552f2005-02-23 16:51:11 +0000119
Chris Lattner4947e672005-02-01 01:24:21 +0000120/// getNumUses - This method computes the number of uses of this Value. This
121/// is a linear time operation. Use hasOneUse or hasNUses to check for specific
122/// values.
123unsigned Value::getNumUses() const {
124 return (unsigned)std::distance(use_begin(), use_end());
125}
126
Chris Lattnerb6250822007-02-11 00:37:27 +0000127static bool getSymTab(Value *V, ValueSymbolTable *&ST) {
Chris Lattner569c8ac2007-02-11 19:12:18 +0000128 ST = 0;
Chris Lattnerb6250822007-02-11 00:37:27 +0000129 if (Instruction *I = dyn_cast<Instruction>(V)) {
130 if (BasicBlock *P = I->getParent())
131 if (Function *PP = P->getParent())
132 ST = &PP->getValueSymbolTable();
133 } else if (BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
Daniel Dunbar6058b512009-09-20 04:03:34 +0000134 if (Function *P = BB->getParent())
Chris Lattnerb6250822007-02-11 00:37:27 +0000135 ST = &P->getValueSymbolTable();
136 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
Daniel Dunbar6058b512009-09-20 04:03:34 +0000137 if (Module *P = GV->getParent())
Chris Lattnerb6250822007-02-11 00:37:27 +0000138 ST = &P->getValueSymbolTable();
139 } else if (Argument *A = dyn_cast<Argument>(V)) {
Daniel Dunbar6058b512009-09-20 04:03:34 +0000140 if (Function *P = A->getParent())
Chris Lattnerb6250822007-02-11 00:37:27 +0000141 ST = &P->getValueSymbolTable();
Devang Patel18dfdc92009-07-29 17:16:17 +0000142 } else if (NamedMDNode *N = dyn_cast<NamedMDNode>(V)) {
143 if (Module *P = N->getParent()) {
144 ST = &P->getValueSymbolTable();
145 }
Devang Patel7428d8a2009-07-22 17:43:22 +0000146 } else if (isa<MDString>(V))
147 return true;
148 else {
Chris Lattnerb6250822007-02-11 00:37:27 +0000149 assert(isa<Constant>(V) && "Unknown value type!");
150 return true; // no name is setable for this.
151 }
152 return false;
153}
Chris Lattner2c6abea2002-10-09 23:12:59 +0000154
Daniel Dunbar32285942009-07-26 00:51:56 +0000155StringRef Value::getName() const {
Daniel Dunbar7cc8f7e2009-07-26 09:22:02 +0000156 // Make sure the empty string is still a C string. For historical reasons,
157 // some clients want to call .data() on the result and expect it to be null
158 // terminated.
159 if (!Name) return StringRef("", 0);
Daniel Dunbar32285942009-07-26 00:51:56 +0000160 return Name->getKey();
Chris Lattner5109a882007-08-10 15:34:35 +0000161}
162
Chris Lattnerfd27ed92007-02-15 18:53:54 +0000163std::string Value::getNameStr() const {
Daniel Dunbar987ec562009-07-26 00:17:14 +0000164 return getName().str();
Chris Lattner32ab6432007-02-12 05:18:08 +0000165}
Chris Lattnercdb9bfc2005-03-05 19:51:50 +0000166
Daniel Dunbard786b512009-07-26 00:34:27 +0000167void Value::setName(const Twine &NewName) {
Daniel Dunbarcb13b482009-08-19 23:37:23 +0000168 // Fast path for common IRBuilder case of setName("") when there is no name.
169 if (NewName.isTriviallyEmpty() && !hasName())
170 return;
171
Daniel Dunbaracf0b252009-08-19 05:08:06 +0000172 SmallString<256> NameData;
Benjamin Kramer2e06b932010-01-13 12:45:23 +0000173 StringRef NameRef = NewName.toStringRef(NameData);
Daniel Dunbard786b512009-07-26 00:34:27 +0000174
Daniel Dunbara32c9992009-07-26 00:42:33 +0000175 // Name isn't changing?
Benjamin Kramer2e06b932010-01-13 12:45:23 +0000176 if (getName() == NameRef)
Daniel Dunbara32c9992009-07-26 00:42:33 +0000177 return;
178
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000179 assert(!getType()->isVoidTy() && "Cannot assign a name to void values!");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000180
Chris Lattnerffb37782005-03-06 02:14:28 +0000181 // Get the symbol table to update for this object.
Chris Lattnerb6250822007-02-11 00:37:27 +0000182 ValueSymbolTable *ST;
183 if (getSymTab(this, ST))
184 return; // Cannot set a name on this value (e.g. constant).
Chris Lattnercdb9bfc2005-03-05 19:51:50 +0000185
Chris Lattner32ab6432007-02-12 05:18:08 +0000186 if (!ST) { // No symbol table to update? Just do the change.
Benjamin Kramer2e06b932010-01-13 12:45:23 +0000187 if (NameRef.empty()) {
Chris Lattner32ab6432007-02-12 05:18:08 +0000188 // Free the name for this value.
189 Name->Destroy();
190 Name = 0;
Chris Lattner1a5de582007-02-12 18:52:59 +0000191 return;
Chris Lattnerffb37782005-03-06 02:14:28 +0000192 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000193
Daniel Dunbara32c9992009-07-26 00:42:33 +0000194 if (Name)
Chris Lattner1a5de582007-02-12 18:52:59 +0000195 Name->Destroy();
Daniel Dunbar6058b512009-09-20 04:03:34 +0000196
Chris Lattner1a5de582007-02-12 18:52:59 +0000197 // NOTE: Could optimize for the case the name is shrinking to not deallocate
198 // then reallocated.
Daniel Dunbar6058b512009-09-20 04:03:34 +0000199
Chris Lattner1a5de582007-02-12 18:52:59 +0000200 // Create the new name.
Benjamin Kramer2e06b932010-01-13 12:45:23 +0000201 Name = ValueName::Create(NameRef.begin(), NameRef.end());
Chris Lattner1a5de582007-02-12 18:52:59 +0000202 Name->setValue(this);
Chris Lattner32ab6432007-02-12 05:18:08 +0000203 return;
Chris Lattnerffb37782005-03-06 02:14:28 +0000204 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000205
Chris Lattner32ab6432007-02-12 05:18:08 +0000206 // NOTE: Could optimize for the case the name is shrinking to not deallocate
207 // then reallocated.
208 if (hasName()) {
Chris Lattner32ab6432007-02-12 05:18:08 +0000209 // Remove old name.
210 ST->removeValueName(Name);
211 Name->Destroy();
212 Name = 0;
213
Benjamin Kramer2e06b932010-01-13 12:45:23 +0000214 if (NameRef.empty())
Chris Lattner1a5de582007-02-12 18:52:59 +0000215 return;
Chris Lattner32ab6432007-02-12 05:18:08 +0000216 }
217
218 // Name is changing to something new.
Benjamin Kramer2e06b932010-01-13 12:45:23 +0000219 Name = ST->createValueName(NameRef, this);
Chris Lattnercdb9bfc2005-03-05 19:51:50 +0000220}
221
Chris Lattner1a5de582007-02-12 18:52:59 +0000222
Chris Lattnerb6250822007-02-11 00:37:27 +0000223/// takeName - transfer the name from V to this value, setting V's name to
Daniel Dunbar6058b512009-09-20 04:03:34 +0000224/// empty. It is an error to call V->takeName(V).
Chris Lattnerb6250822007-02-11 00:37:27 +0000225void Value::takeName(Value *V) {
Chris Lattnercf835ff2007-02-15 20:01:43 +0000226 ValueSymbolTable *ST = 0;
227 // If this value has a name, drop it.
228 if (hasName()) {
229 // Get the symtab this is in.
230 if (getSymTab(this, ST)) {
231 // We can't set a name on this value, but we need to clear V's name if
232 // it has one.
Daniel Dunbard786b512009-07-26 00:34:27 +0000233 if (V->hasName()) V->setName("");
Chris Lattnercf835ff2007-02-15 20:01:43 +0000234 return; // Cannot set a name on this value (e.g. constant).
235 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000236
Chris Lattnercf835ff2007-02-15 20:01:43 +0000237 // Remove old name.
238 if (ST)
239 ST->removeValueName(Name);
240 Name->Destroy();
241 Name = 0;
Daniel Dunbar6058b512009-09-20 04:03:34 +0000242 }
243
Chris Lattnercf835ff2007-02-15 20:01:43 +0000244 // Now we know that this has no name.
Daniel Dunbar6058b512009-09-20 04:03:34 +0000245
Chris Lattnercf835ff2007-02-15 20:01:43 +0000246 // If V has no name either, we're done.
247 if (!V->hasName()) return;
Daniel Dunbar6058b512009-09-20 04:03:34 +0000248
Chris Lattnercf835ff2007-02-15 20:01:43 +0000249 // Get this's symtab if we didn't before.
250 if (!ST) {
251 if (getSymTab(this, ST)) {
252 // Clear V's name.
Daniel Dunbard786b512009-07-26 00:34:27 +0000253 V->setName("");
Chris Lattnercf835ff2007-02-15 20:01:43 +0000254 return; // Cannot set a name on this value (e.g. constant).
255 }
256 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000257
Chris Lattnercf835ff2007-02-15 20:01:43 +0000258 // Get V's ST, this should always succed, because V has a name.
259 ValueSymbolTable *VST;
260 bool Failure = getSymTab(V, VST);
Chris Lattner106b0462008-06-21 19:47:03 +0000261 assert(!Failure && "V has a name, so it should have a ST!"); Failure=Failure;
Daniel Dunbar6058b512009-09-20 04:03:34 +0000262
Chris Lattnercf835ff2007-02-15 20:01:43 +0000263 // If these values are both in the same symtab, we can do this very fast.
264 // This works even if both values have no symtab yet.
265 if (ST == VST) {
266 // Take the name!
267 Name = V->Name;
268 V->Name = 0;
269 Name->setValue(this);
Chris Lattnercba18e32007-02-11 01:04:09 +0000270 return;
271 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000272
Chris Lattnercf835ff2007-02-15 20:01:43 +0000273 // Otherwise, things are slightly more complex. Remove V's name from VST and
274 // then reinsert it into ST.
Daniel Dunbar6058b512009-09-20 04:03:34 +0000275
Chris Lattnercf835ff2007-02-15 20:01:43 +0000276 if (VST)
277 VST->removeValueName(V->Name);
278 Name = V->Name;
279 V->Name = 0;
280 Name->setValue(this);
Daniel Dunbar6058b512009-09-20 04:03:34 +0000281
Chris Lattnercf835ff2007-02-15 20:01:43 +0000282 if (ST)
283 ST->reinsertValue(this);
Chris Lattnerb6250822007-02-11 00:37:27 +0000284}
285
286
Chris Lattner9f158122003-08-29 05:09:37 +0000287// uncheckedReplaceAllUsesWith - This is exactly the same as replaceAllUsesWith,
288// except that it doesn't have all of the asserts. The asserts fail because we
289// are half-way done resolving types, which causes some types to exist as two
290// different Type*'s at the same time. This is a sledgehammer to work around
291// this problem.
292//
293void Value::uncheckedReplaceAllUsesWith(Value *New) {
Chris Lattner90234f32009-03-31 22:11:05 +0000294 // Notify all ValueHandles (if present) that this value is going away.
295 if (HasValueHandle)
296 ValueHandleBase::ValueIsRAUWd(this, New);
Chris Lattner2f2aa2b2009-12-28 23:41:32 +0000297
Chris Lattner4947e672005-02-01 01:24:21 +0000298 while (!use_empty()) {
Gabor Greif715b9d22008-09-19 15:13:20 +0000299 Use &U = *UseList;
Chris Lattner9f158122003-08-29 05:09:37 +0000300 // Must handle Constants specially, we cannot call replaceUsesOfWith on a
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000301 // constant because they are uniqued.
Chris Lattner079edeb2003-10-16 16:53:07 +0000302 if (Constant *C = dyn_cast<Constant>(U.getUser())) {
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000303 if (!isa<GlobalValue>(C)) {
Chris Lattner7a1450d2005-10-04 18:13:04 +0000304 C->replaceUsesOfWithOnConstant(this, New, &U);
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000305 continue;
306 }
Chris Lattner9f158122003-08-29 05:09:37 +0000307 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000308
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000309 U.set(New);
Chris Lattner9f158122003-08-29 05:09:37 +0000310 }
311}
312
Chris Lattner079edeb2003-10-16 16:53:07 +0000313void Value::replaceAllUsesWith(Value *New) {
314 assert(New && "Value::replaceAllUsesWith(<null>) is invalid!");
315 assert(New != this && "this->replaceAllUsesWith(this) is NOT valid!");
316 assert(New->getType() == getType() &&
317 "replaceAllUses of value with new value of different type!");
Chris Lattner9f158122003-08-29 05:09:37 +0000318
Chris Lattner079edeb2003-10-16 16:53:07 +0000319 uncheckedReplaceAllUsesWith(New);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000320}
321
Anton Korobeynikovfc2edad2008-05-07 22:54:15 +0000322Value *Value::stripPointerCasts() {
Duncan Sands19d0b472010-02-16 11:11:14 +0000323 if (!getType()->isPointerTy())
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000324 return this;
Duncan Sandse59fa782008-12-29 21:06:19 +0000325 Value *V = this;
326 do {
Dan Gohmane1019db2009-07-17 23:55:56 +0000327 if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
Duncan Sandse59fa782008-12-29 21:06:19 +0000328 if (!GEP->hasAllZeroIndices())
329 return V;
Dan Gohmane1019db2009-07-17 23:55:56 +0000330 V = GEP->getPointerOperand();
331 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
332 V = cast<Operator>(V)->getOperand(0);
Dan Gohman4ce5ade2009-08-27 17:55:13 +0000333 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) {
334 if (GA->mayBeOverridden())
335 return V;
336 V = GA->getAliasee();
Duncan Sandse59fa782008-12-29 21:06:19 +0000337 } else {
338 return V;
Anton Korobeynikovfc2edad2008-05-07 22:54:15 +0000339 }
Duncan Sands19d0b472010-02-16 11:11:14 +0000340 assert(V->getType()->isPointerTy() && "Unexpected operand type!");
Duncan Sandse59fa782008-12-29 21:06:19 +0000341 } while (1);
Anton Korobeynikovfc2edad2008-05-07 22:54:15 +0000342}
343
Bob Wilsonfc060e42010-01-25 18:26:54 +0000344Value *Value::getUnderlyingObject(unsigned MaxLookup) {
Duncan Sands19d0b472010-02-16 11:11:14 +0000345 if (!getType()->isPointerTy())
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000346 return this;
Duncan Sandse59fa782008-12-29 21:06:19 +0000347 Value *V = this;
Bob Wilsonfc060e42010-01-25 18:26:54 +0000348 for (unsigned Count = 0; MaxLookup == 0 || Count < MaxLookup; ++Count) {
Dan Gohmane1019db2009-07-17 23:55:56 +0000349 if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
Dan Gohmane1019db2009-07-17 23:55:56 +0000350 V = GEP->getPointerOperand();
351 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
352 V = cast<Operator>(V)->getOperand(0);
Dan Gohman4ce5ade2009-08-27 17:55:13 +0000353 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) {
354 if (GA->mayBeOverridden())
355 return V;
356 V = GA->getAliasee();
Duncan Sandse59fa782008-12-29 21:06:19 +0000357 } else {
358 return V;
359 }
Duncan Sands19d0b472010-02-16 11:11:14 +0000360 assert(V->getType()->isPointerTy() && "Unexpected operand type!");
Bob Wilsonfc060e42010-01-25 18:26:54 +0000361 }
Nick Lewycky4a7bcf62009-04-15 06:23:41 +0000362 return V;
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000363}
364
Chris Lattner027d7262008-12-02 18:33:11 +0000365/// DoPHITranslation - If this value is a PHI node with CurBB as its parent,
Chris Lattner9c1b5022008-12-02 07:16:45 +0000366/// return the value in the PHI node corresponding to PredBB. If not, return
367/// ourself. This is useful if you want to know the value something has in a
368/// predecessor block.
Daniel Dunbar6058b512009-09-20 04:03:34 +0000369Value *Value::DoPHITranslation(const BasicBlock *CurBB,
Chris Lattner9c1b5022008-12-02 07:16:45 +0000370 const BasicBlock *PredBB) {
371 PHINode *PN = dyn_cast<PHINode>(this);
372 if (PN && PN->getParent() == CurBB)
373 return PN->getIncomingValueForBlock(PredBB);
374 return this;
375}
376
Owen Anderson47db9412009-07-22 00:24:57 +0000377LLVMContext &Value::getContext() const { return VTy->getContext(); }
378
Chris Lattner90234f32009-03-31 22:11:05 +0000379//===----------------------------------------------------------------------===//
380// ValueHandleBase Class
381//===----------------------------------------------------------------------===//
382
Dan Gohman3f025952009-05-04 17:25:21 +0000383/// AddToExistingUseList - Add this ValueHandle to the use list for VP, where
384/// List is known to point into the existing use list.
Chris Lattner90234f32009-03-31 22:11:05 +0000385void ValueHandleBase::AddToExistingUseList(ValueHandleBase **List) {
386 assert(List && "Handle list is null?");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000387
Chris Lattner90234f32009-03-31 22:11:05 +0000388 // Splice ourselves into the list.
389 Next = *List;
390 *List = this;
391 setPrevPtr(List);
392 if (Next) {
393 Next->setPrevPtr(&Next);
394 assert(VP == Next->VP && "Added to wrong list?");
395 }
396}
397
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000398void ValueHandleBase::AddToExistingUseListAfter(ValueHandleBase *List) {
399 assert(List && "Must insert after existing node");
400
401 Next = List->Next;
402 setPrevPtr(&List->Next);
403 List->Next = this;
404 if (Next)
405 Next->setPrevPtr(&Next);
406}
407
Chris Lattner90234f32009-03-31 22:11:05 +0000408/// AddToUseList - Add this ValueHandle to the use list for VP.
409void ValueHandleBase::AddToUseList() {
410 assert(VP && "Null pointer doesn't have a use list!");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000411
Owen Andersone8f21852009-08-18 18:28:58 +0000412 LLVMContextImpl *pImpl = VP->getContext().pImpl;
Daniel Dunbar6058b512009-09-20 04:03:34 +0000413
Chris Lattner90234f32009-03-31 22:11:05 +0000414 if (VP->HasValueHandle) {
415 // If this value already has a ValueHandle, then it must be in the
416 // ValueHandles map already.
Owen Andersone8f21852009-08-18 18:28:58 +0000417 ValueHandleBase *&Entry = pImpl->ValueHandles[VP];
Chris Lattner90234f32009-03-31 22:11:05 +0000418 assert(Entry != 0 && "Value doesn't have any handles?");
Owen Anderson4b660a82009-06-17 17:36:57 +0000419 AddToExistingUseList(&Entry);
Owen Anderson4b660a82009-06-17 17:36:57 +0000420 return;
Chris Lattner90234f32009-03-31 22:11:05 +0000421 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000422
Chris Lattner90234f32009-03-31 22:11:05 +0000423 // Ok, it doesn't have any handles yet, so we must insert it into the
424 // DenseMap. However, doing this insertion could cause the DenseMap to
425 // reallocate itself, which would invalidate all of the PrevP pointers that
426 // point into the old table. Handle this by checking for reallocation and
427 // updating the stale pointers only if needed.
Owen Andersone8f21852009-08-18 18:28:58 +0000428 DenseMap<Value*, ValueHandleBase*> &Handles = pImpl->ValueHandles;
Chris Lattner90234f32009-03-31 22:11:05 +0000429 const void *OldBucketPtr = Handles.getPointerIntoBucketsArray();
Daniel Dunbar6058b512009-09-20 04:03:34 +0000430
Chris Lattner90234f32009-03-31 22:11:05 +0000431 ValueHandleBase *&Entry = Handles[VP];
432 assert(Entry == 0 && "Value really did already have handles?");
433 AddToExistingUseList(&Entry);
Dan Gohman3f025952009-05-04 17:25:21 +0000434 VP->HasValueHandle = true;
Daniel Dunbar6058b512009-09-20 04:03:34 +0000435
Chris Lattner90234f32009-03-31 22:11:05 +0000436 // If reallocation didn't happen or if this was the first insertion, don't
437 // walk the table.
Daniel Dunbar6058b512009-09-20 04:03:34 +0000438 if (Handles.isPointerIntoBucketsArray(OldBucketPtr) ||
Owen Anderson4b660a82009-06-17 17:36:57 +0000439 Handles.size() == 1) {
Chris Lattner90234f32009-03-31 22:11:05 +0000440 return;
Owen Anderson4b660a82009-06-17 17:36:57 +0000441 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000442
Chris Lattner90234f32009-03-31 22:11:05 +0000443 // Okay, reallocation did happen. Fix the Prev Pointers.
Owen Andersone8f21852009-08-18 18:28:58 +0000444 for (DenseMap<Value*, ValueHandleBase*>::iterator I = Handles.begin(),
445 E = Handles.end(); I != E; ++I) {
Chris Lattner90234f32009-03-31 22:11:05 +0000446 assert(I->second && I->first == I->second->VP && "List invariant broken!");
447 I->second->setPrevPtr(&I->second);
448 }
449}
450
451/// RemoveFromUseList - Remove this ValueHandle from its current use list.
452void ValueHandleBase::RemoveFromUseList() {
453 assert(VP && VP->HasValueHandle && "Pointer doesn't have a use list!");
454
455 // Unlink this from its use list.
456 ValueHandleBase **PrevPtr = getPrevPtr();
457 assert(*PrevPtr == this && "List invariant broken");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000458
Chris Lattner90234f32009-03-31 22:11:05 +0000459 *PrevPtr = Next;
460 if (Next) {
461 assert(Next->getPrevPtr() == &Next && "List invariant broken");
462 Next->setPrevPtr(PrevPtr);
463 return;
464 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000465
Chris Lattner90234f32009-03-31 22:11:05 +0000466 // If the Next pointer was null, then it is possible that this was the last
467 // ValueHandle watching VP. If so, delete its entry from the ValueHandles
468 // map.
Owen Andersone8f21852009-08-18 18:28:58 +0000469 LLVMContextImpl *pImpl = VP->getContext().pImpl;
470 DenseMap<Value*, ValueHandleBase*> &Handles = pImpl->ValueHandles;
Chris Lattner90234f32009-03-31 22:11:05 +0000471 if (Handles.isPointerIntoBucketsArray(PrevPtr)) {
472 Handles.erase(VP);
473 VP->HasValueHandle = false;
474 }
475}
476
477
478void ValueHandleBase::ValueIsDeleted(Value *V) {
479 assert(V->HasValueHandle && "Should only be called if ValueHandles present");
480
481 // Get the linked list base, which is guaranteed to exist since the
482 // HasValueHandle flag is set.
Owen Andersone8f21852009-08-18 18:28:58 +0000483 LLVMContextImpl *pImpl = V->getContext().pImpl;
484 ValueHandleBase *Entry = pImpl->ValueHandles[V];
Chris Lattner90234f32009-03-31 22:11:05 +0000485 assert(Entry && "Value bit set but no entries exist");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000486
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000487 // We use a local ValueHandleBase as an iterator so that
488 // ValueHandles can add and remove themselves from the list without
489 // breaking our iteration. This is not really an AssertingVH; we
490 // just have to give ValueHandleBase some kind.
491 for (ValueHandleBase Iterator(Assert, *Entry); Entry; Entry = Iterator.Next) {
492 Iterator.RemoveFromUseList();
493 Iterator.AddToExistingUseListAfter(Entry);
494 assert(Entry->Next == &Iterator && "Loop invariant broken.");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000495
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000496 switch (Entry->getKind()) {
Chris Lattner90234f32009-03-31 22:11:05 +0000497 case Assert:
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000498 break;
Daniel Dunbar70d4fb02009-09-22 02:02:33 +0000499 case Tracking:
500 // Mark that this value has been deleted by setting it to an invalid Value
501 // pointer.
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000502 Entry->operator=(DenseMapInfo<Value *>::getTombstoneKey());
Daniel Dunbar70d4fb02009-09-22 02:02:33 +0000503 break;
Chris Lattner90234f32009-03-31 22:11:05 +0000504 case Weak:
505 // Weak just goes to null, which will unlink it from the list.
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000506 Entry->operator=(0);
Chris Lattner90234f32009-03-31 22:11:05 +0000507 break;
508 case Callback:
Dan Gohman745ad442009-05-02 21:10:48 +0000509 // Forward to the subclass's implementation.
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000510 static_cast<CallbackVH*>(Entry)->deleted();
Dan Gohman745ad442009-05-02 21:10:48 +0000511 break;
Chris Lattner90234f32009-03-31 22:11:05 +0000512 }
513 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000514
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000515 // All callbacks, weak references, and assertingVHs should be dropped by now.
516 if (V->HasValueHandle) {
517#ifndef NDEBUG // Only in +Asserts mode...
David Greene3f907a92010-01-05 01:30:09 +0000518 dbgs() << "While deleting: " << *V->getType() << " %" << V->getNameStr()
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000519 << "\n";
520 if (pImpl->ValueHandles[V]->getKind() == Assert)
521 llvm_unreachable("An asserting value handle still pointed to this"
522 " value!");
523
524#endif
525 llvm_unreachable("All references to V were not removed?");
526 }
Chris Lattner90234f32009-03-31 22:11:05 +0000527}
528
529
530void ValueHandleBase::ValueIsRAUWd(Value *Old, Value *New) {
531 assert(Old->HasValueHandle &&"Should only be called if ValueHandles present");
532 assert(Old != New && "Changing value into itself!");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000533
Chris Lattner90234f32009-03-31 22:11:05 +0000534 // Get the linked list base, which is guaranteed to exist since the
535 // HasValueHandle flag is set.
Owen Andersone8f21852009-08-18 18:28:58 +0000536 LLVMContextImpl *pImpl = Old->getContext().pImpl;
537 ValueHandleBase *Entry = pImpl->ValueHandles[Old];
538
Chris Lattner90234f32009-03-31 22:11:05 +0000539 assert(Entry && "Value bit set but no entries exist");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000540
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000541 // We use a local ValueHandleBase as an iterator so that
542 // ValueHandles can add and remove themselves from the list without
543 // breaking our iteration. This is not really an AssertingVH; we
544 // just have to give ValueHandleBase some kind.
545 for (ValueHandleBase Iterator(Assert, *Entry); Entry; Entry = Iterator.Next) {
546 Iterator.RemoveFromUseList();
547 Iterator.AddToExistingUseListAfter(Entry);
548 assert(Entry->Next == &Iterator && "Loop invariant broken.");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000549
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000550 switch (Entry->getKind()) {
Chris Lattner90234f32009-03-31 22:11:05 +0000551 case Assert:
552 // Asserting handle does not follow RAUW implicitly.
553 break;
Daniel Dunbar70d4fb02009-09-22 02:02:33 +0000554 case Tracking:
555 // Tracking goes to new value like a WeakVH. Note that this may make it
556 // something incompatible with its templated type. We don't want to have a
557 // virtual (or inline) interface to handle this though, so instead we make
Daniel Dunbar86707c92009-09-22 10:30:34 +0000558 // the TrackingVH accessors guarantee that a client never sees this value.
Daniel Dunbar70d4fb02009-09-22 02:02:33 +0000559
560 // FALLTHROUGH
Chris Lattner90234f32009-03-31 22:11:05 +0000561 case Weak:
562 // Weak goes to the new value, which will unlink it from Old's list.
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000563 Entry->operator=(New);
Chris Lattner90234f32009-03-31 22:11:05 +0000564 break;
565 case Callback:
Dan Gohman745ad442009-05-02 21:10:48 +0000566 // Forward to the subclass's implementation.
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000567 static_cast<CallbackVH*>(Entry)->allUsesReplacedWith(New);
Dan Gohman745ad442009-05-02 21:10:48 +0000568 break;
Chris Lattner90234f32009-03-31 22:11:05 +0000569 }
570 }
571}
572
Dan Gohman745ad442009-05-02 21:10:48 +0000573/// ~CallbackVH. Empty, but defined here to avoid emitting the vtable
574/// more than once.
575CallbackVH::~CallbackVH() {}
576
Chris Lattner9c1b5022008-12-02 07:16:45 +0000577
Chris Lattner2f7c9632001-06-06 20:29:01 +0000578//===----------------------------------------------------------------------===//
579// User Class
580//===----------------------------------------------------------------------===//
581
Chris Lattner2f7c9632001-06-06 20:29:01 +0000582// replaceUsesOfWith - Replaces all references to the "From" definition with
583// references to the "To" definition.
584//
585void User::replaceUsesOfWith(Value *From, Value *To) {
586 if (From == To) return; // Duh what?
587
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000588 assert((!isa<Constant>(this) || isa<GlobalValue>(this)) &&
Dan Gohman5211b012009-08-11 15:53:15 +0000589 "Cannot call User::replaceUsesOfWith on a constant!");
Chris Lattner2c6abea2002-10-09 23:12:59 +0000590
Chris Lattnera073acb2001-07-07 08:36:50 +0000591 for (unsigned i = 0, E = getNumOperands(); i != E; ++i)
592 if (getOperand(i) == From) { // Is This operand is pointing to oldval?
Chris Lattner2f7c9632001-06-06 20:29:01 +0000593 // The side effects of this setOperand call include linking to
594 // "To", adding "this" to the uses list of To, and
595 // most importantly, removing "this" from the use list of "From".
Chris Lattnera073acb2001-07-07 08:36:50 +0000596 setOperand(i, To); // Fix it now...
Chris Lattner2f7c9632001-06-06 20:29:01 +0000597 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000598}