blob: d020c399fd077ffb1077160c4b0194c3003c35d6 [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
Chris Lattnera1d850e2008-04-30 03:55:40 +0000168/// isName - Return true if this value has the name specified by the provided
169/// nul terminated string.
170bool Value::isName(const char *N) const {
171 unsigned InLen = strlen(N);
Chris Lattner78769f02008-04-30 15:27:09 +0000172 return InLen == getNameLen() && memcmp(getNameStart(), N, InLen) == 0;
Chris Lattnera1d850e2008-04-30 03:55:40 +0000173}
174
Chris Lattner5109a882007-08-10 15:34:35 +0000175
Chris Lattnerfd27ed92007-02-15 18:53:54 +0000176std::string Value::getNameStr() const {
Chris Lattner32ab6432007-02-12 05:18:08 +0000177 if (Name == 0) return "";
178 return std::string(Name->getKeyData(),
179 Name->getKeyData()+Name->getKeyLength());
180}
Chris Lattnercdb9bfc2005-03-05 19:51:50 +0000181
Daniel Dunbarf01154c2009-07-23 18:50:53 +0000182StringRef Value::getNameRef() const {
183 if (Name == 0) return StringRef();
184 return StringRef(Name->getKeyData(), Name->getKeyLength());
185}
186
Daniel Dunbar4975db62009-07-25 04:41:11 +0000187void Value::setName(const Twine &Name) {
188 SmallString<32> NameData;
189 Name.toVector(NameData);
190 setName(NameData.begin(), NameData.size());
Chris Lattner1a5de582007-02-12 18:52:59 +0000191}
192
Chris Lattnercb9a6262007-02-13 07:53:34 +0000193void Value::setName(const char *Name) {
194 setName(Name, Name ? strlen(Name) : 0);
195}
196
Chris Lattner1a5de582007-02-12 18:52:59 +0000197void Value::setName(const char *NameStr, unsigned NameLen) {
198 if (NameLen == 0 && !hasName()) return;
Jeff Cohenb622c112007-03-05 00:00:42 +0000199 assert(getType() != Type::VoidTy && "Cannot assign a name to void values!");
Chris Lattner32ab6432007-02-12 05:18:08 +0000200
Chris Lattnerffb37782005-03-06 02:14:28 +0000201 // Get the symbol table to update for this object.
Chris Lattnerb6250822007-02-11 00:37:27 +0000202 ValueSymbolTable *ST;
203 if (getSymTab(this, ST))
204 return; // Cannot set a name on this value (e.g. constant).
Chris Lattnercdb9bfc2005-03-05 19:51:50 +0000205
Chris Lattner32ab6432007-02-12 05:18:08 +0000206 if (!ST) { // No symbol table to update? Just do the change.
Chris Lattner1a5de582007-02-12 18:52:59 +0000207 if (NameLen == 0) {
Chris Lattner32ab6432007-02-12 05:18:08 +0000208 // Free the name for this value.
209 Name->Destroy();
210 Name = 0;
Chris Lattner1a5de582007-02-12 18:52:59 +0000211 return;
Chris Lattnerffb37782005-03-06 02:14:28 +0000212 }
Chris Lattner1a5de582007-02-12 18:52:59 +0000213
214 if (Name) {
215 // Name isn't changing?
216 if (NameLen == Name->getKeyLength() &&
217 !memcmp(Name->getKeyData(), NameStr, NameLen))
218 return;
219 Name->Destroy();
220 }
221
222 // NOTE: Could optimize for the case the name is shrinking to not deallocate
223 // then reallocated.
224
225 // Create the new name.
226 Name = ValueName::Create(NameStr, NameStr+NameLen);
227 Name->setValue(this);
Chris Lattner32ab6432007-02-12 05:18:08 +0000228 return;
Chris Lattnerffb37782005-03-06 02:14:28 +0000229 }
Chris Lattner32ab6432007-02-12 05:18:08 +0000230
231 // NOTE: Could optimize for the case the name is shrinking to not deallocate
232 // then reallocated.
233 if (hasName()) {
234 // Name isn't changing?
Chris Lattner1a5de582007-02-12 18:52:59 +0000235 if (NameLen == Name->getKeyLength() &&
236 !memcmp(Name->getKeyData(), NameStr, NameLen))
Chris Lattner32ab6432007-02-12 05:18:08 +0000237 return;
238
239 // Remove old name.
240 ST->removeValueName(Name);
241 Name->Destroy();
242 Name = 0;
243
Chris Lattner1a5de582007-02-12 18:52:59 +0000244 if (NameLen == 0)
245 return;
Chris Lattner32ab6432007-02-12 05:18:08 +0000246 }
247
248 // Name is changing to something new.
Daniel Dunbarf01154c2009-07-23 18:50:53 +0000249 Name = ST->createValueName(StringRef(NameStr, NameLen), this);
Chris Lattnercdb9bfc2005-03-05 19:51:50 +0000250}
251
Chris Lattner1a5de582007-02-12 18:52:59 +0000252
Chris Lattnerb6250822007-02-11 00:37:27 +0000253/// takeName - transfer the name from V to this value, setting V's name to
254/// empty. It is an error to call V->takeName(V).
255void Value::takeName(Value *V) {
Chris Lattnercf835ff2007-02-15 20:01:43 +0000256 ValueSymbolTable *ST = 0;
257 // If this value has a name, drop it.
258 if (hasName()) {
259 // Get the symtab this is in.
260 if (getSymTab(this, ST)) {
261 // We can't set a name on this value, but we need to clear V's name if
262 // it has one.
263 if (V->hasName()) V->setName(0, 0);
264 return; // Cannot set a name on this value (e.g. constant).
265 }
266
267 // Remove old name.
268 if (ST)
269 ST->removeValueName(Name);
270 Name->Destroy();
271 Name = 0;
272 }
273
274 // Now we know that this has no name.
275
276 // If V has no name either, we're done.
277 if (!V->hasName()) return;
278
279 // Get this's symtab if we didn't before.
280 if (!ST) {
281 if (getSymTab(this, ST)) {
282 // Clear V's name.
283 V->setName(0, 0);
284 return; // Cannot set a name on this value (e.g. constant).
285 }
286 }
287
288 // Get V's ST, this should always succed, because V has a name.
289 ValueSymbolTable *VST;
290 bool Failure = getSymTab(V, VST);
Chris Lattner106b0462008-06-21 19:47:03 +0000291 assert(!Failure && "V has a name, so it should have a ST!"); Failure=Failure;
Chris Lattnercf835ff2007-02-15 20:01:43 +0000292
293 // If these values are both in the same symtab, we can do this very fast.
294 // This works even if both values have no symtab yet.
295 if (ST == VST) {
296 // Take the name!
297 Name = V->Name;
298 V->Name = 0;
299 Name->setValue(this);
Chris Lattnercba18e32007-02-11 01:04:09 +0000300 return;
301 }
302
Chris Lattnercf835ff2007-02-15 20:01:43 +0000303 // Otherwise, things are slightly more complex. Remove V's name from VST and
304 // then reinsert it into ST.
305
306 if (VST)
307 VST->removeValueName(V->Name);
308 Name = V->Name;
309 V->Name = 0;
310 Name->setValue(this);
311
312 if (ST)
313 ST->reinsertValue(this);
Chris Lattnerb6250822007-02-11 00:37:27 +0000314}
315
316
Chris Lattner9f158122003-08-29 05:09:37 +0000317// uncheckedReplaceAllUsesWith - This is exactly the same as replaceAllUsesWith,
318// except that it doesn't have all of the asserts. The asserts fail because we
319// are half-way done resolving types, which causes some types to exist as two
320// different Type*'s at the same time. This is a sledgehammer to work around
321// this problem.
322//
323void Value::uncheckedReplaceAllUsesWith(Value *New) {
Chris Lattner90234f32009-03-31 22:11:05 +0000324 // Notify all ValueHandles (if present) that this value is going away.
325 if (HasValueHandle)
326 ValueHandleBase::ValueIsRAUWd(this, New);
327
Chris Lattner4947e672005-02-01 01:24:21 +0000328 while (!use_empty()) {
Gabor Greif715b9d22008-09-19 15:13:20 +0000329 Use &U = *UseList;
Chris Lattner9f158122003-08-29 05:09:37 +0000330 // Must handle Constants specially, we cannot call replaceUsesOfWith on a
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000331 // constant because they are uniqued.
Chris Lattner079edeb2003-10-16 16:53:07 +0000332 if (Constant *C = dyn_cast<Constant>(U.getUser())) {
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000333 if (!isa<GlobalValue>(C)) {
Chris Lattner7a1450d2005-10-04 18:13:04 +0000334 C->replaceUsesOfWithOnConstant(this, New, &U);
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000335 continue;
336 }
Chris Lattner9f158122003-08-29 05:09:37 +0000337 }
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000338
339 U.set(New);
Chris Lattner9f158122003-08-29 05:09:37 +0000340 }
341}
342
Chris Lattner079edeb2003-10-16 16:53:07 +0000343void Value::replaceAllUsesWith(Value *New) {
344 assert(New && "Value::replaceAllUsesWith(<null>) is invalid!");
345 assert(New != this && "this->replaceAllUsesWith(this) is NOT valid!");
346 assert(New->getType() == getType() &&
347 "replaceAllUses of value with new value of different type!");
Chris Lattner9f158122003-08-29 05:09:37 +0000348
Chris Lattner079edeb2003-10-16 16:53:07 +0000349 uncheckedReplaceAllUsesWith(New);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000350}
351
Anton Korobeynikovfc2edad2008-05-07 22:54:15 +0000352Value *Value::stripPointerCasts() {
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000353 if (!isa<PointerType>(getType()))
354 return this;
Duncan Sandse59fa782008-12-29 21:06:19 +0000355 Value *V = this;
356 do {
Dan Gohmane1019db2009-07-17 23:55:56 +0000357 if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
Duncan Sandse59fa782008-12-29 21:06:19 +0000358 if (!GEP->hasAllZeroIndices())
359 return V;
Dan Gohmane1019db2009-07-17 23:55:56 +0000360 V = GEP->getPointerOperand();
361 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
362 V = cast<Operator>(V)->getOperand(0);
Duncan Sandse59fa782008-12-29 21:06:19 +0000363 } else {
364 return V;
Anton Korobeynikovfc2edad2008-05-07 22:54:15 +0000365 }
Duncan Sandse59fa782008-12-29 21:06:19 +0000366 assert(isa<PointerType>(V->getType()) && "Unexpected operand type!");
367 } while (1);
Anton Korobeynikovfc2edad2008-05-07 22:54:15 +0000368}
369
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000370Value *Value::getUnderlyingObject() {
371 if (!isa<PointerType>(getType()))
372 return this;
Duncan Sandse59fa782008-12-29 21:06:19 +0000373 Value *V = this;
Nick Lewycky4a7bcf62009-04-15 06:23:41 +0000374 unsigned MaxLookup = 6;
Duncan Sandse59fa782008-12-29 21:06:19 +0000375 do {
Dan Gohmane1019db2009-07-17 23:55:56 +0000376 if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
Dan Gohmane1019db2009-07-17 23:55:56 +0000377 V = GEP->getPointerOperand();
378 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
379 V = cast<Operator>(V)->getOperand(0);
Duncan Sandse59fa782008-12-29 21:06:19 +0000380 } else {
381 return V;
382 }
383 assert(isa<PointerType>(V->getType()) && "Unexpected operand type!");
Nick Lewycky4a7bcf62009-04-15 06:23:41 +0000384 } while (--MaxLookup);
385 return V;
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000386}
387
Chris Lattner027d7262008-12-02 18:33:11 +0000388/// DoPHITranslation - If this value is a PHI node with CurBB as its parent,
Chris Lattner9c1b5022008-12-02 07:16:45 +0000389/// return the value in the PHI node corresponding to PredBB. If not, return
390/// ourself. This is useful if you want to know the value something has in a
391/// predecessor block.
392Value *Value::DoPHITranslation(const BasicBlock *CurBB,
393 const BasicBlock *PredBB) {
394 PHINode *PN = dyn_cast<PHINode>(this);
395 if (PN && PN->getParent() == CurBB)
396 return PN->getIncomingValueForBlock(PredBB);
397 return this;
398}
399
Owen Anderson47db9412009-07-22 00:24:57 +0000400LLVMContext &Value::getContext() const { return VTy->getContext(); }
401
Chris Lattner90234f32009-03-31 22:11:05 +0000402//===----------------------------------------------------------------------===//
403// ValueHandleBase Class
404//===----------------------------------------------------------------------===//
405
406/// ValueHandles - This map keeps track of all of the value handles that are
407/// watching a Value*. The Value::HasValueHandle bit is used to know whether or
408/// not a value has an entry in this map.
409typedef DenseMap<Value*, ValueHandleBase*> ValueHandlesTy;
410static ManagedStatic<ValueHandlesTy> ValueHandles;
Owen Anderson5e1f6d92009-06-18 20:36:21 +0000411static ManagedStatic<sys::SmartRWMutex<true> > ValueHandlesLock;
Chris Lattner90234f32009-03-31 22:11:05 +0000412
Dan Gohman3f025952009-05-04 17:25:21 +0000413/// AddToExistingUseList - Add this ValueHandle to the use list for VP, where
414/// List is known to point into the existing use list.
Chris Lattner90234f32009-03-31 22:11:05 +0000415void ValueHandleBase::AddToExistingUseList(ValueHandleBase **List) {
416 assert(List && "Handle list is null?");
417
418 // Splice ourselves into the list.
419 Next = *List;
420 *List = this;
421 setPrevPtr(List);
422 if (Next) {
423 Next->setPrevPtr(&Next);
424 assert(VP == Next->VP && "Added to wrong list?");
425 }
426}
427
428/// AddToUseList - Add this ValueHandle to the use list for VP.
429void ValueHandleBase::AddToUseList() {
430 assert(VP && "Null pointer doesn't have a use list!");
431 if (VP->HasValueHandle) {
432 // If this value already has a ValueHandle, then it must be in the
433 // ValueHandles map already.
Owen Anderson5c96ef72009-07-07 18:33:04 +0000434 sys::SmartScopedReader<true> Reader(*ValueHandlesLock);
Chris Lattner90234f32009-03-31 22:11:05 +0000435 ValueHandleBase *&Entry = (*ValueHandles)[VP];
436 assert(Entry != 0 && "Value doesn't have any handles?");
Owen Anderson4b660a82009-06-17 17:36:57 +0000437 AddToExistingUseList(&Entry);
Owen Anderson4b660a82009-06-17 17:36:57 +0000438 return;
Chris Lattner90234f32009-03-31 22:11:05 +0000439 }
440
441 // Ok, it doesn't have any handles yet, so we must insert it into the
442 // DenseMap. However, doing this insertion could cause the DenseMap to
443 // reallocate itself, which would invalidate all of the PrevP pointers that
444 // point into the old table. Handle this by checking for reallocation and
445 // updating the stale pointers only if needed.
Owen Anderson5c96ef72009-07-07 18:33:04 +0000446 sys::SmartScopedWriter<true> Writer(*ValueHandlesLock);
Chris Lattner90234f32009-03-31 22:11:05 +0000447 ValueHandlesTy &Handles = *ValueHandles;
448 const void *OldBucketPtr = Handles.getPointerIntoBucketsArray();
449
450 ValueHandleBase *&Entry = Handles[VP];
451 assert(Entry == 0 && "Value really did already have handles?");
452 AddToExistingUseList(&Entry);
Dan Gohman3f025952009-05-04 17:25:21 +0000453 VP->HasValueHandle = true;
Chris Lattner90234f32009-03-31 22:11:05 +0000454
455 // If reallocation didn't happen or if this was the first insertion, don't
456 // walk the table.
457 if (Handles.isPointerIntoBucketsArray(OldBucketPtr) ||
Owen Anderson4b660a82009-06-17 17:36:57 +0000458 Handles.size() == 1) {
Chris Lattner90234f32009-03-31 22:11:05 +0000459 return;
Owen Anderson4b660a82009-06-17 17:36:57 +0000460 }
Chris Lattner90234f32009-03-31 22:11:05 +0000461
462 // Okay, reallocation did happen. Fix the Prev Pointers.
463 for (ValueHandlesTy::iterator I = Handles.begin(), E = Handles.end();
464 I != E; ++I) {
465 assert(I->second && I->first == I->second->VP && "List invariant broken!");
466 I->second->setPrevPtr(&I->second);
467 }
468}
469
470/// RemoveFromUseList - Remove this ValueHandle from its current use list.
471void ValueHandleBase::RemoveFromUseList() {
472 assert(VP && VP->HasValueHandle && "Pointer doesn't have a use list!");
473
474 // Unlink this from its use list.
475 ValueHandleBase **PrevPtr = getPrevPtr();
476 assert(*PrevPtr == this && "List invariant broken");
477
478 *PrevPtr = Next;
479 if (Next) {
480 assert(Next->getPrevPtr() == &Next && "List invariant broken");
481 Next->setPrevPtr(PrevPtr);
482 return;
483 }
484
485 // If the Next pointer was null, then it is possible that this was the last
486 // ValueHandle watching VP. If so, delete its entry from the ValueHandles
487 // map.
Owen Anderson5c96ef72009-07-07 18:33:04 +0000488 sys::SmartScopedWriter<true> Writer(*ValueHandlesLock);
Chris Lattner90234f32009-03-31 22:11:05 +0000489 ValueHandlesTy &Handles = *ValueHandles;
490 if (Handles.isPointerIntoBucketsArray(PrevPtr)) {
491 Handles.erase(VP);
492 VP->HasValueHandle = false;
493 }
494}
495
496
497void ValueHandleBase::ValueIsDeleted(Value *V) {
498 assert(V->HasValueHandle && "Should only be called if ValueHandles present");
499
500 // Get the linked list base, which is guaranteed to exist since the
501 // HasValueHandle flag is set.
Owen Anderson5e1f6d92009-06-18 20:36:21 +0000502 ValueHandlesLock->reader_acquire();
Chris Lattner90234f32009-03-31 22:11:05 +0000503 ValueHandleBase *Entry = (*ValueHandles)[V];
Owen Anderson5e1f6d92009-06-18 20:36:21 +0000504 ValueHandlesLock->reader_release();
Chris Lattner90234f32009-03-31 22:11:05 +0000505 assert(Entry && "Value bit set but no entries exist");
506
507 while (Entry) {
508 // Advance pointer to avoid invalidation.
509 ValueHandleBase *ThisNode = Entry;
510 Entry = Entry->Next;
511
512 switch (ThisNode->getKind()) {
513 case Assert:
514#ifndef NDEBUG // Only in -g mode...
Daniel Dunbarb99eac82009-07-24 10:05:20 +0000515 errs() << "While deleting: " << *V->getType() << " %" << V->getNameStr()
516 << "\n";
Chris Lattner90234f32009-03-31 22:11:05 +0000517#endif
Torok Edwinfbcc6632009-07-14 16:55:14 +0000518 llvm_unreachable("An asserting value handle still pointed to this"
Jeffrey Yasskind8d725d2009-07-08 22:09:00 +0000519 " value!");
Chris Lattner90234f32009-03-31 22:11:05 +0000520 case Weak:
521 // Weak just goes to null, which will unlink it from the list.
522 ThisNode->operator=(0);
523 break;
524 case Callback:
Dan Gohman745ad442009-05-02 21:10:48 +0000525 // Forward to the subclass's implementation.
526 static_cast<CallbackVH*>(ThisNode)->deleted();
527 break;
Chris Lattner90234f32009-03-31 22:11:05 +0000528 }
529 }
530
531 // All callbacks and weak references should be dropped by now.
532 assert(!V->HasValueHandle && "All references to V were not removed?");
533}
534
535
536void ValueHandleBase::ValueIsRAUWd(Value *Old, Value *New) {
537 assert(Old->HasValueHandle &&"Should only be called if ValueHandles present");
538 assert(Old != New && "Changing value into itself!");
539
540 // Get the linked list base, which is guaranteed to exist since the
541 // HasValueHandle flag is set.
Owen Anderson5e1f6d92009-06-18 20:36:21 +0000542 ValueHandlesLock->reader_acquire();
Chris Lattner90234f32009-03-31 22:11:05 +0000543 ValueHandleBase *Entry = (*ValueHandles)[Old];
Owen Anderson5e1f6d92009-06-18 20:36:21 +0000544 ValueHandlesLock->reader_release();
Chris Lattner90234f32009-03-31 22:11:05 +0000545 assert(Entry && "Value bit set but no entries exist");
546
547 while (Entry) {
548 // Advance pointer to avoid invalidation.
549 ValueHandleBase *ThisNode = Entry;
550 Entry = Entry->Next;
551
552 switch (ThisNode->getKind()) {
553 case Assert:
554 // Asserting handle does not follow RAUW implicitly.
555 break;
556 case Weak:
557 // Weak goes to the new value, which will unlink it from Old's list.
558 ThisNode->operator=(New);
559 break;
560 case Callback:
Dan Gohman745ad442009-05-02 21:10:48 +0000561 // Forward to the subclass's implementation.
562 static_cast<CallbackVH*>(ThisNode)->allUsesReplacedWith(New);
563 break;
Chris Lattner90234f32009-03-31 22:11:05 +0000564 }
565 }
566}
567
Dan Gohman745ad442009-05-02 21:10:48 +0000568/// ~CallbackVH. Empty, but defined here to avoid emitting the vtable
569/// more than once.
570CallbackVH::~CallbackVH() {}
571
Chris Lattner9c1b5022008-12-02 07:16:45 +0000572
Chris Lattner2f7c9632001-06-06 20:29:01 +0000573//===----------------------------------------------------------------------===//
574// User Class
575//===----------------------------------------------------------------------===//
576
Chris Lattner2f7c9632001-06-06 20:29:01 +0000577// replaceUsesOfWith - Replaces all references to the "From" definition with
578// references to the "To" definition.
579//
580void User::replaceUsesOfWith(Value *From, Value *To) {
581 if (From == To) return; // Duh what?
582
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000583 assert((!isa<Constant>(this) || isa<GlobalValue>(this)) &&
Chris Lattner2c6abea2002-10-09 23:12:59 +0000584 "Cannot call User::replaceUsesofWith on a constant!");
585
Chris Lattnera073acb2001-07-07 08:36:50 +0000586 for (unsigned i = 0, E = getNumOperands(); i != E; ++i)
587 if (getOperand(i) == From) { // Is This operand is pointing to oldval?
Chris Lattner2f7c9632001-06-06 20:29:01 +0000588 // The side effects of this setOperand call include linking to
589 // "To", adding "this" to the uses list of To, and
590 // most importantly, removing "this" from the use list of "From".
Chris Lattnera073acb2001-07-07 08:36:50 +0000591 setOperand(i, To); // Fix it now...
Chris Lattner2f7c9632001-06-06 20:29:01 +0000592 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000593}