blob: 9d6af5a334eebaabaa350b5a45793427e5dc1694 [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
Chris Lattner2c6abea2002-10-09 23:12:59 +000014#include "llvm/Constant.h"
Anton Korobeynikov82c02b22008-05-06 22:52:30 +000015#include "llvm/Constants.h"
Chris Lattnercdb9bfc2005-03-05 19:51:50 +000016#include "llvm/DerivedTypes.h"
17#include "llvm/InstrTypes.h"
Devang Patel1f00b532008-02-21 01:54:02 +000018#include "llvm/Instructions.h"
Dan Gohman1d548d82009-07-17 22:25:10 +000019#include "llvm/Operator.h"
Chris Lattnercdb9bfc2005-03-05 19:51:50 +000020#include "llvm/Module.h"
Devang Patel7428d8a2009-07-22 17:43:22 +000021#include "llvm/MDNode.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"
Torok Edwinfb8d6d52009-07-08 20:53:28 +000029#include "llvm/Support/raw_ostream.h"
Owen Anderson4b660a82009-06-17 17:36:57 +000030#include "llvm/System/RWMutex.h"
Owen Anderson7d42b952009-06-18 16:54:52 +000031#include "llvm/System/Threading.h"
Chris Lattner90234f32009-03-31 22:11:05 +000032#include "llvm/ADT/DenseMap.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000033#include <algorithm>
Chris Lattner189d19f2003-11-21 20:23:48 +000034using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000035
Chris Lattner2f7c9632001-06-06 20:29:01 +000036//===----------------------------------------------------------------------===//
37// Value Class
38//===----------------------------------------------------------------------===//
39
Chris Lattner25450e32001-12-13 00:41:27 +000040static inline const Type *checkType(const Type *Ty) {
41 assert(Ty && "Value defined with a null type: Error!");
42 return Ty;
43}
44
Chris Lattner32ab6432007-02-12 05:18:08 +000045Value::Value(const Type *ty, unsigned scid)
Dan Gohman9691e712009-07-17 17:16:59 +000046 : SubclassID(scid), HasValueHandle(0), SubclassOptionalData(0),
47 SubclassData(0), VTy(checkType(ty)),
Gabor Greif715b9d22008-09-19 15:13:20 +000048 UseList(0), Name(0) {
Devang Patelad582fc2008-02-21 02:14:01 +000049 if (isa<CallInst>(this) || isa<InvokeInst>(this))
Evan Chenga05c07e2008-07-24 00:08:56 +000050 assert((VTy->isFirstClassType() || VTy == Type::VoidTy ||
51 isa<OpaqueType>(ty) || VTy->getTypeID() == Type::StructTyID) &&
Devang Patel1f00b532008-02-21 01:54:02 +000052 "invalid CallInst type!");
53 else if (!isa<Constant>(this) && !isa<BasicBlock>(this))
Evan Chenga05c07e2008-07-24 00:08:56 +000054 assert((VTy->isFirstClassType() || VTy == Type::VoidTy ||
Chris Lattner9df9afd2004-07-07 18:07:46 +000055 isa<OpaqueType>(ty)) &&
Chris Lattnerbea72472004-07-06 17:44:17 +000056 "Cannot create non-first-class values except for constants!");
Chris Lattner2f7c9632001-06-06 20:29:01 +000057}
58
Gordon Henriksen14a55692007-12-10 02:14:30 +000059Value::~Value() {
Chris Lattner90234f32009-03-31 22:11:05 +000060 // Notify all ValueHandles (if present) that this value is going away.
61 if (HasValueHandle)
62 ValueHandleBase::ValueIsDeleted(this);
63
Chris Lattner2f7c9632001-06-06 20:29:01 +000064#ifndef NDEBUG // Only in -g mode...
Chris Lattner874ddad2001-06-11 15:04:40 +000065 // Check to make sure that there are no uses of this value that are still
66 // around when the value is destroyed. If there are, then we have a dangling
67 // reference and something is wrong. This code is here to print out what is
Misha Brukmanb1c93172005-04-21 23:48:37 +000068 // still being referenced. The value in question should be printed as
Chris Lattner874ddad2001-06-11 15:04:40 +000069 // a <badref>
70 //
Gordon Henriksen14a55692007-12-10 02:14:30 +000071 if (!use_empty()) {
Daniel Dunbarb99eac82009-07-24 10:05:20 +000072 errs() << "While deleting: " << *VTy << " %" << getNameStr() << "\n";
Gordon Henriksen14a55692007-12-10 02:14:30 +000073 for (use_iterator I = use_begin(), E = use_end(); I != E; ++I)
Daniel Dunbarb99eac82009-07-24 10:05:20 +000074 errs() << "Use still stuck around after Def is destroyed:"
Bill Wendling6a462f12006-11-17 08:03:48 +000075 << **I << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +000076 }
77#endif
Gordon Henriksen14a55692007-12-10 02:14:30 +000078 assert(use_empty() && "Uses remain when a value is destroyed!");
Chris Lattner184b2982002-09-08 18:59:35 +000079
Chris Lattneraf867a32007-03-20 00:18:10 +000080 // If this value is named, destroy the name. This should not be in a symtab
81 // at this point.
Gordon Henriksen14a55692007-12-10 02:14:30 +000082 if (Name)
83 Name->Destroy();
Chris Lattneraf867a32007-03-20 00:18:10 +000084
Chris Lattner184b2982002-09-08 18:59:35 +000085 // There should be no uses of this object anymore, remove it.
Gordon Henriksen14a55692007-12-10 02:14:30 +000086 LeakDetector::removeGarbageObject(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +000087}
88
Chris Lattner4947e672005-02-01 01:24:21 +000089/// hasNUses - Return true if this Value has exactly N users.
90///
91bool Value::hasNUses(unsigned N) const {
92 use_const_iterator UI = use_begin(), E = use_end();
93
94 for (; N; --N, ++UI)
95 if (UI == E) return false; // Too few.
96 return UI == E;
97}
98
Chris Lattnerd36552f2005-02-23 16:51:11 +000099/// hasNUsesOrMore - Return true if this value has N users or more. This is
100/// logically equivalent to getNumUses() >= N.
101///
102bool Value::hasNUsesOrMore(unsigned N) const {
103 use_const_iterator UI = use_begin(), E = use_end();
104
105 for (; N; --N, ++UI)
106 if (UI == E) return false; // Too few.
107
108 return true;
109}
110
Evan Cheng89553cc2008-06-12 21:15:59 +0000111/// isUsedInBasicBlock - Return true if this value is used in the specified
112/// basic block.
Bill Wendling0c374212008-09-25 22:42:01 +0000113bool Value::isUsedInBasicBlock(const BasicBlock *BB) const {
Evan Cheng89553cc2008-06-12 21:15:59 +0000114 for (use_const_iterator I = use_begin(), E = use_end(); I != E; ++I) {
115 const Instruction *User = dyn_cast<Instruction>(*I);
116 if (User && User->getParent() == BB)
117 return true;
118 }
119 return false;
120}
121
Chris Lattnerd36552f2005-02-23 16:51:11 +0000122
Chris Lattner4947e672005-02-01 01:24:21 +0000123/// getNumUses - This method computes the number of uses of this Value. This
124/// is a linear time operation. Use hasOneUse or hasNUses to check for specific
125/// values.
126unsigned Value::getNumUses() const {
127 return (unsigned)std::distance(use_begin(), use_end());
128}
129
Chris Lattnerb6250822007-02-11 00:37:27 +0000130static bool getSymTab(Value *V, ValueSymbolTable *&ST) {
Chris Lattner569c8ac2007-02-11 19:12:18 +0000131 ST = 0;
Chris Lattnerb6250822007-02-11 00:37:27 +0000132 if (Instruction *I = dyn_cast<Instruction>(V)) {
133 if (BasicBlock *P = I->getParent())
134 if (Function *PP = P->getParent())
135 ST = &PP->getValueSymbolTable();
136 } else if (BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
137 if (Function *P = BB->getParent())
138 ST = &P->getValueSymbolTable();
139 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
140 if (Module *P = GV->getParent())
141 ST = &P->getValueSymbolTable();
142 } else if (Argument *A = dyn_cast<Argument>(V)) {
143 if (Function *P = A->getParent())
144 ST = &P->getValueSymbolTable();
Devang Patel7428d8a2009-07-22 17:43:22 +0000145 } else if (isa<MDString>(V))
146 return true;
147 else {
Chris Lattnerb6250822007-02-11 00:37:27 +0000148 assert(isa<Constant>(V) && "Unknown value type!");
149 return true; // no name is setable for this.
150 }
151 return false;
152}
Chris Lattner2c6abea2002-10-09 23:12:59 +0000153
Chris Lattner5109a882007-08-10 15:34:35 +0000154/// getNameStart - Return a pointer to a null terminated string for this name.
155/// Note that names can have null characters within the string as well as at
156/// their end. This always returns a non-null pointer.
157const char *Value::getNameStart() const {
158 if (Name == 0) return "";
159 return Name->getKeyData();
160}
161
162/// getNameLen - Return the length of the string, correctly handling nul
163/// characters embedded into them.
164unsigned Value::getNameLen() const {
Chris Lattner2be9ec52007-09-28 20:09:40 +0000165 return Name ? Name->getKeyLength() : 0;
Chris Lattner5109a882007-08-10 15:34:35 +0000166}
167
168
Chris Lattnerfd27ed92007-02-15 18:53:54 +0000169std::string Value::getNameStr() const {
Chris Lattner32ab6432007-02-12 05:18:08 +0000170 if (Name == 0) return "";
171 return std::string(Name->getKeyData(),
172 Name->getKeyData()+Name->getKeyLength());
173}
Chris Lattnercdb9bfc2005-03-05 19:51:50 +0000174
Daniel Dunbar4975db62009-07-25 04:41:11 +0000175void Value::setName(const Twine &Name) {
176 SmallString<32> NameData;
177 Name.toVector(NameData);
178 setName(NameData.begin(), NameData.size());
Chris Lattner1a5de582007-02-12 18:52:59 +0000179}
180
Chris Lattnercb9a6262007-02-13 07:53:34 +0000181void Value::setName(const char *Name) {
182 setName(Name, Name ? strlen(Name) : 0);
183}
184
Chris Lattner1a5de582007-02-12 18:52:59 +0000185void Value::setName(const char *NameStr, unsigned NameLen) {
186 if (NameLen == 0 && !hasName()) return;
Jeff Cohenb622c112007-03-05 00:00:42 +0000187 assert(getType() != Type::VoidTy && "Cannot assign a name to void values!");
Chris Lattner32ab6432007-02-12 05:18:08 +0000188
Chris Lattnerffb37782005-03-06 02:14:28 +0000189 // Get the symbol table to update for this object.
Chris Lattnerb6250822007-02-11 00:37:27 +0000190 ValueSymbolTable *ST;
191 if (getSymTab(this, ST))
192 return; // Cannot set a name on this value (e.g. constant).
Chris Lattnercdb9bfc2005-03-05 19:51:50 +0000193
Chris Lattner32ab6432007-02-12 05:18:08 +0000194 if (!ST) { // No symbol table to update? Just do the change.
Chris Lattner1a5de582007-02-12 18:52:59 +0000195 if (NameLen == 0) {
Chris Lattner32ab6432007-02-12 05:18:08 +0000196 // Free the name for this value.
197 Name->Destroy();
198 Name = 0;
Chris Lattner1a5de582007-02-12 18:52:59 +0000199 return;
Chris Lattnerffb37782005-03-06 02:14:28 +0000200 }
Chris Lattner1a5de582007-02-12 18:52:59 +0000201
202 if (Name) {
203 // Name isn't changing?
204 if (NameLen == Name->getKeyLength() &&
205 !memcmp(Name->getKeyData(), NameStr, NameLen))
206 return;
207 Name->Destroy();
208 }
209
210 // NOTE: Could optimize for the case the name is shrinking to not deallocate
211 // then reallocated.
212
213 // Create the new name.
214 Name = ValueName::Create(NameStr, NameStr+NameLen);
215 Name->setValue(this);
Chris Lattner32ab6432007-02-12 05:18:08 +0000216 return;
Chris Lattnerffb37782005-03-06 02:14:28 +0000217 }
Chris Lattner32ab6432007-02-12 05:18:08 +0000218
219 // NOTE: Could optimize for the case the name is shrinking to not deallocate
220 // then reallocated.
221 if (hasName()) {
222 // Name isn't changing?
Chris Lattner1a5de582007-02-12 18:52:59 +0000223 if (NameLen == Name->getKeyLength() &&
224 !memcmp(Name->getKeyData(), NameStr, NameLen))
Chris Lattner32ab6432007-02-12 05:18:08 +0000225 return;
226
227 // Remove old name.
228 ST->removeValueName(Name);
229 Name->Destroy();
230 Name = 0;
231
Chris Lattner1a5de582007-02-12 18:52:59 +0000232 if (NameLen == 0)
233 return;
Chris Lattner32ab6432007-02-12 05:18:08 +0000234 }
235
236 // Name is changing to something new.
Daniel Dunbarf01154c2009-07-23 18:50:53 +0000237 Name = ST->createValueName(StringRef(NameStr, NameLen), this);
Chris Lattnercdb9bfc2005-03-05 19:51:50 +0000238}
239
Chris Lattner1a5de582007-02-12 18:52:59 +0000240
Chris Lattnerb6250822007-02-11 00:37:27 +0000241/// takeName - transfer the name from V to this value, setting V's name to
242/// empty. It is an error to call V->takeName(V).
243void Value::takeName(Value *V) {
Chris Lattnercf835ff2007-02-15 20:01:43 +0000244 ValueSymbolTable *ST = 0;
245 // If this value has a name, drop it.
246 if (hasName()) {
247 // Get the symtab this is in.
248 if (getSymTab(this, ST)) {
249 // We can't set a name on this value, but we need to clear V's name if
250 // it has one.
251 if (V->hasName()) V->setName(0, 0);
252 return; // Cannot set a name on this value (e.g. constant).
253 }
254
255 // Remove old name.
256 if (ST)
257 ST->removeValueName(Name);
258 Name->Destroy();
259 Name = 0;
260 }
261
262 // Now we know that this has no name.
263
264 // If V has no name either, we're done.
265 if (!V->hasName()) return;
266
267 // Get this's symtab if we didn't before.
268 if (!ST) {
269 if (getSymTab(this, ST)) {
270 // Clear V's name.
271 V->setName(0, 0);
272 return; // Cannot set a name on this value (e.g. constant).
273 }
274 }
275
276 // Get V's ST, this should always succed, because V has a name.
277 ValueSymbolTable *VST;
278 bool Failure = getSymTab(V, VST);
Chris Lattner106b0462008-06-21 19:47:03 +0000279 assert(!Failure && "V has a name, so it should have a ST!"); Failure=Failure;
Chris Lattnercf835ff2007-02-15 20:01:43 +0000280
281 // If these values are both in the same symtab, we can do this very fast.
282 // This works even if both values have no symtab yet.
283 if (ST == VST) {
284 // Take the name!
285 Name = V->Name;
286 V->Name = 0;
287 Name->setValue(this);
Chris Lattnercba18e32007-02-11 01:04:09 +0000288 return;
289 }
290
Chris Lattnercf835ff2007-02-15 20:01:43 +0000291 // Otherwise, things are slightly more complex. Remove V's name from VST and
292 // then reinsert it into ST.
293
294 if (VST)
295 VST->removeValueName(V->Name);
296 Name = V->Name;
297 V->Name = 0;
298 Name->setValue(this);
299
300 if (ST)
301 ST->reinsertValue(this);
Chris Lattnerb6250822007-02-11 00:37:27 +0000302}
303
304
Chris Lattner9f158122003-08-29 05:09:37 +0000305// uncheckedReplaceAllUsesWith - This is exactly the same as replaceAllUsesWith,
306// except that it doesn't have all of the asserts. The asserts fail because we
307// are half-way done resolving types, which causes some types to exist as two
308// different Type*'s at the same time. This is a sledgehammer to work around
309// this problem.
310//
311void Value::uncheckedReplaceAllUsesWith(Value *New) {
Chris Lattner90234f32009-03-31 22:11:05 +0000312 // Notify all ValueHandles (if present) that this value is going away.
313 if (HasValueHandle)
314 ValueHandleBase::ValueIsRAUWd(this, New);
315
Chris Lattner4947e672005-02-01 01:24:21 +0000316 while (!use_empty()) {
Gabor Greif715b9d22008-09-19 15:13:20 +0000317 Use &U = *UseList;
Chris Lattner9f158122003-08-29 05:09:37 +0000318 // Must handle Constants specially, we cannot call replaceUsesOfWith on a
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000319 // constant because they are uniqued.
Chris Lattner079edeb2003-10-16 16:53:07 +0000320 if (Constant *C = dyn_cast<Constant>(U.getUser())) {
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000321 if (!isa<GlobalValue>(C)) {
Chris Lattner7a1450d2005-10-04 18:13:04 +0000322 C->replaceUsesOfWithOnConstant(this, New, &U);
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000323 continue;
324 }
Chris Lattner9f158122003-08-29 05:09:37 +0000325 }
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000326
327 U.set(New);
Chris Lattner9f158122003-08-29 05:09:37 +0000328 }
329}
330
Chris Lattner079edeb2003-10-16 16:53:07 +0000331void Value::replaceAllUsesWith(Value *New) {
332 assert(New && "Value::replaceAllUsesWith(<null>) is invalid!");
333 assert(New != this && "this->replaceAllUsesWith(this) is NOT valid!");
334 assert(New->getType() == getType() &&
335 "replaceAllUses of value with new value of different type!");
Chris Lattner9f158122003-08-29 05:09:37 +0000336
Chris Lattner079edeb2003-10-16 16:53:07 +0000337 uncheckedReplaceAllUsesWith(New);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000338}
339
Anton Korobeynikovfc2edad2008-05-07 22:54:15 +0000340Value *Value::stripPointerCasts() {
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000341 if (!isa<PointerType>(getType()))
342 return this;
Duncan Sandse59fa782008-12-29 21:06:19 +0000343 Value *V = this;
344 do {
Dan Gohmane1019db2009-07-17 23:55:56 +0000345 if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
Duncan Sandse59fa782008-12-29 21:06:19 +0000346 if (!GEP->hasAllZeroIndices())
347 return V;
Dan Gohmane1019db2009-07-17 23:55:56 +0000348 V = GEP->getPointerOperand();
349 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
350 V = cast<Operator>(V)->getOperand(0);
Duncan Sandse59fa782008-12-29 21:06:19 +0000351 } else {
352 return V;
Anton Korobeynikovfc2edad2008-05-07 22:54:15 +0000353 }
Duncan Sandse59fa782008-12-29 21:06:19 +0000354 assert(isa<PointerType>(V->getType()) && "Unexpected operand type!");
355 } while (1);
Anton Korobeynikovfc2edad2008-05-07 22:54:15 +0000356}
357
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000358Value *Value::getUnderlyingObject() {
359 if (!isa<PointerType>(getType()))
360 return this;
Duncan Sandse59fa782008-12-29 21:06:19 +0000361 Value *V = this;
Nick Lewycky4a7bcf62009-04-15 06:23:41 +0000362 unsigned MaxLookup = 6;
Duncan Sandse59fa782008-12-29 21:06:19 +0000363 do {
Dan Gohmane1019db2009-07-17 23:55:56 +0000364 if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
Dan Gohmane1019db2009-07-17 23:55:56 +0000365 V = GEP->getPointerOperand();
366 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
367 V = cast<Operator>(V)->getOperand(0);
Duncan Sandse59fa782008-12-29 21:06:19 +0000368 } else {
369 return V;
370 }
371 assert(isa<PointerType>(V->getType()) && "Unexpected operand type!");
Nick Lewycky4a7bcf62009-04-15 06:23:41 +0000372 } while (--MaxLookup);
373 return V;
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000374}
375
Chris Lattner027d7262008-12-02 18:33:11 +0000376/// DoPHITranslation - If this value is a PHI node with CurBB as its parent,
Chris Lattner9c1b5022008-12-02 07:16:45 +0000377/// return the value in the PHI node corresponding to PredBB. If not, return
378/// ourself. This is useful if you want to know the value something has in a
379/// predecessor block.
380Value *Value::DoPHITranslation(const BasicBlock *CurBB,
381 const BasicBlock *PredBB) {
382 PHINode *PN = dyn_cast<PHINode>(this);
383 if (PN && PN->getParent() == CurBB)
384 return PN->getIncomingValueForBlock(PredBB);
385 return this;
386}
387
Owen Anderson47db9412009-07-22 00:24:57 +0000388LLVMContext &Value::getContext() const { return VTy->getContext(); }
389
Chris Lattner90234f32009-03-31 22:11:05 +0000390//===----------------------------------------------------------------------===//
391// ValueHandleBase Class
392//===----------------------------------------------------------------------===//
393
394/// ValueHandles - This map keeps track of all of the value handles that are
395/// watching a Value*. The Value::HasValueHandle bit is used to know whether or
396/// not a value has an entry in this map.
397typedef DenseMap<Value*, ValueHandleBase*> ValueHandlesTy;
398static ManagedStatic<ValueHandlesTy> ValueHandles;
Owen Anderson5e1f6d92009-06-18 20:36:21 +0000399static ManagedStatic<sys::SmartRWMutex<true> > ValueHandlesLock;
Chris Lattner90234f32009-03-31 22:11:05 +0000400
Dan Gohman3f025952009-05-04 17:25:21 +0000401/// AddToExistingUseList - Add this ValueHandle to the use list for VP, where
402/// List is known to point into the existing use list.
Chris Lattner90234f32009-03-31 22:11:05 +0000403void ValueHandleBase::AddToExistingUseList(ValueHandleBase **List) {
404 assert(List && "Handle list is null?");
405
406 // Splice ourselves into the list.
407 Next = *List;
408 *List = this;
409 setPrevPtr(List);
410 if (Next) {
411 Next->setPrevPtr(&Next);
412 assert(VP == Next->VP && "Added to wrong list?");
413 }
414}
415
416/// AddToUseList - Add this ValueHandle to the use list for VP.
417void ValueHandleBase::AddToUseList() {
418 assert(VP && "Null pointer doesn't have a use list!");
419 if (VP->HasValueHandle) {
420 // If this value already has a ValueHandle, then it must be in the
421 // ValueHandles map already.
Owen Anderson5c96ef72009-07-07 18:33:04 +0000422 sys::SmartScopedReader<true> Reader(*ValueHandlesLock);
Chris Lattner90234f32009-03-31 22:11:05 +0000423 ValueHandleBase *&Entry = (*ValueHandles)[VP];
424 assert(Entry != 0 && "Value doesn't have any handles?");
Owen Anderson4b660a82009-06-17 17:36:57 +0000425 AddToExistingUseList(&Entry);
Owen Anderson4b660a82009-06-17 17:36:57 +0000426 return;
Chris Lattner90234f32009-03-31 22:11:05 +0000427 }
428
429 // Ok, it doesn't have any handles yet, so we must insert it into the
430 // DenseMap. However, doing this insertion could cause the DenseMap to
431 // reallocate itself, which would invalidate all of the PrevP pointers that
432 // point into the old table. Handle this by checking for reallocation and
433 // updating the stale pointers only if needed.
Owen Anderson5c96ef72009-07-07 18:33:04 +0000434 sys::SmartScopedWriter<true> Writer(*ValueHandlesLock);
Chris Lattner90234f32009-03-31 22:11:05 +0000435 ValueHandlesTy &Handles = *ValueHandles;
436 const void *OldBucketPtr = Handles.getPointerIntoBucketsArray();
437
438 ValueHandleBase *&Entry = Handles[VP];
439 assert(Entry == 0 && "Value really did already have handles?");
440 AddToExistingUseList(&Entry);
Dan Gohman3f025952009-05-04 17:25:21 +0000441 VP->HasValueHandle = true;
Chris Lattner90234f32009-03-31 22:11:05 +0000442
443 // If reallocation didn't happen or if this was the first insertion, don't
444 // walk the table.
445 if (Handles.isPointerIntoBucketsArray(OldBucketPtr) ||
Owen Anderson4b660a82009-06-17 17:36:57 +0000446 Handles.size() == 1) {
Chris Lattner90234f32009-03-31 22:11:05 +0000447 return;
Owen Anderson4b660a82009-06-17 17:36:57 +0000448 }
Chris Lattner90234f32009-03-31 22:11:05 +0000449
450 // Okay, reallocation did happen. Fix the Prev Pointers.
451 for (ValueHandlesTy::iterator I = Handles.begin(), E = Handles.end();
452 I != E; ++I) {
453 assert(I->second && I->first == I->second->VP && "List invariant broken!");
454 I->second->setPrevPtr(&I->second);
455 }
456}
457
458/// RemoveFromUseList - Remove this ValueHandle from its current use list.
459void ValueHandleBase::RemoveFromUseList() {
460 assert(VP && VP->HasValueHandle && "Pointer doesn't have a use list!");
461
462 // Unlink this from its use list.
463 ValueHandleBase **PrevPtr = getPrevPtr();
464 assert(*PrevPtr == this && "List invariant broken");
465
466 *PrevPtr = Next;
467 if (Next) {
468 assert(Next->getPrevPtr() == &Next && "List invariant broken");
469 Next->setPrevPtr(PrevPtr);
470 return;
471 }
472
473 // If the Next pointer was null, then it is possible that this was the last
474 // ValueHandle watching VP. If so, delete its entry from the ValueHandles
475 // map.
Owen Anderson5c96ef72009-07-07 18:33:04 +0000476 sys::SmartScopedWriter<true> Writer(*ValueHandlesLock);
Chris Lattner90234f32009-03-31 22:11:05 +0000477 ValueHandlesTy &Handles = *ValueHandles;
478 if (Handles.isPointerIntoBucketsArray(PrevPtr)) {
479 Handles.erase(VP);
480 VP->HasValueHandle = false;
481 }
482}
483
484
485void ValueHandleBase::ValueIsDeleted(Value *V) {
486 assert(V->HasValueHandle && "Should only be called if ValueHandles present");
487
488 // Get the linked list base, which is guaranteed to exist since the
489 // HasValueHandle flag is set.
Owen Anderson5e1f6d92009-06-18 20:36:21 +0000490 ValueHandlesLock->reader_acquire();
Chris Lattner90234f32009-03-31 22:11:05 +0000491 ValueHandleBase *Entry = (*ValueHandles)[V];
Owen Anderson5e1f6d92009-06-18 20:36:21 +0000492 ValueHandlesLock->reader_release();
Chris Lattner90234f32009-03-31 22:11:05 +0000493 assert(Entry && "Value bit set but no entries exist");
494
495 while (Entry) {
496 // Advance pointer to avoid invalidation.
497 ValueHandleBase *ThisNode = Entry;
498 Entry = Entry->Next;
499
500 switch (ThisNode->getKind()) {
501 case Assert:
502#ifndef NDEBUG // Only in -g mode...
Daniel Dunbarb99eac82009-07-24 10:05:20 +0000503 errs() << "While deleting: " << *V->getType() << " %" << V->getNameStr()
504 << "\n";
Chris Lattner90234f32009-03-31 22:11:05 +0000505#endif
Torok Edwinfbcc6632009-07-14 16:55:14 +0000506 llvm_unreachable("An asserting value handle still pointed to this"
Jeffrey Yasskind8d725d2009-07-08 22:09:00 +0000507 " value!");
Chris Lattner90234f32009-03-31 22:11:05 +0000508 case Weak:
509 // Weak just goes to null, which will unlink it from the list.
510 ThisNode->operator=(0);
511 break;
512 case Callback:
Dan Gohman745ad442009-05-02 21:10:48 +0000513 // Forward to the subclass's implementation.
514 static_cast<CallbackVH*>(ThisNode)->deleted();
515 break;
Chris Lattner90234f32009-03-31 22:11:05 +0000516 }
517 }
518
519 // All callbacks and weak references should be dropped by now.
520 assert(!V->HasValueHandle && "All references to V were not removed?");
521}
522
523
524void ValueHandleBase::ValueIsRAUWd(Value *Old, Value *New) {
525 assert(Old->HasValueHandle &&"Should only be called if ValueHandles present");
526 assert(Old != New && "Changing value into itself!");
527
528 // Get the linked list base, which is guaranteed to exist since the
529 // HasValueHandle flag is set.
Owen Anderson5e1f6d92009-06-18 20:36:21 +0000530 ValueHandlesLock->reader_acquire();
Chris Lattner90234f32009-03-31 22:11:05 +0000531 ValueHandleBase *Entry = (*ValueHandles)[Old];
Owen Anderson5e1f6d92009-06-18 20:36:21 +0000532 ValueHandlesLock->reader_release();
Chris Lattner90234f32009-03-31 22:11:05 +0000533 assert(Entry && "Value bit set but no entries exist");
534
535 while (Entry) {
536 // Advance pointer to avoid invalidation.
537 ValueHandleBase *ThisNode = Entry;
538 Entry = Entry->Next;
539
540 switch (ThisNode->getKind()) {
541 case Assert:
542 // Asserting handle does not follow RAUW implicitly.
543 break;
544 case Weak:
545 // Weak goes to the new value, which will unlink it from Old's list.
546 ThisNode->operator=(New);
547 break;
548 case Callback:
Dan Gohman745ad442009-05-02 21:10:48 +0000549 // Forward to the subclass's implementation.
550 static_cast<CallbackVH*>(ThisNode)->allUsesReplacedWith(New);
551 break;
Chris Lattner90234f32009-03-31 22:11:05 +0000552 }
553 }
554}
555
Dan Gohman745ad442009-05-02 21:10:48 +0000556/// ~CallbackVH. Empty, but defined here to avoid emitting the vtable
557/// more than once.
558CallbackVH::~CallbackVH() {}
559
Chris Lattner9c1b5022008-12-02 07:16:45 +0000560
Chris Lattner2f7c9632001-06-06 20:29:01 +0000561//===----------------------------------------------------------------------===//
562// User Class
563//===----------------------------------------------------------------------===//
564
Chris Lattner2f7c9632001-06-06 20:29:01 +0000565// replaceUsesOfWith - Replaces all references to the "From" definition with
566// references to the "To" definition.
567//
568void User::replaceUsesOfWith(Value *From, Value *To) {
569 if (From == To) return; // Duh what?
570
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000571 assert((!isa<Constant>(this) || isa<GlobalValue>(this)) &&
Chris Lattner2c6abea2002-10-09 23:12:59 +0000572 "Cannot call User::replaceUsesofWith on a constant!");
573
Chris Lattnera073acb2001-07-07 08:36:50 +0000574 for (unsigned i = 0, E = getNumOperands(); i != E; ++i)
575 if (getOperand(i) == From) { // Is This operand is pointing to oldval?
Chris Lattner2f7c9632001-06-06 20:29:01 +0000576 // The side effects of this setOperand call include linking to
577 // "To", adding "this" to the uses list of To, and
578 // most importantly, removing "this" from the use list of "From".
Chris Lattnera073acb2001-07-07 08:36:50 +0000579 setOperand(i, To); // Fix it now...
Chris Lattner2f7c9632001-06-06 20:29:01 +0000580 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000581}