blob: 34291b9d728fa7f7065d4ba0d6d4a1febbee9da9 [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"
Devang Patela4f43fb2009-07-28 21:49:47 +000022#include "llvm/Metadata.h"
Reid Spencer3aaaa0b2007-02-05 20:47:22 +000023#include "llvm/ValueSymbolTable.h"
Daniel Dunbar4975db62009-07-25 04:41:11 +000024#include "llvm/ADT/SmallString.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000025#include "llvm/Support/Debug.h"
Torok Edwin6dd27302009-07-08 18:01:40 +000026#include "llvm/Support/ErrorHandling.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000027#include "llvm/Support/LeakDetector.h"
Chris Lattner90234f32009-03-31 22:11:05 +000028#include "llvm/Support/ManagedStatic.h"
29#include "llvm/Support/ValueHandle.h"
Torok Edwinfb8d6d52009-07-08 20:53:28 +000030#include "llvm/Support/raw_ostream.h"
Owen Anderson4b660a82009-06-17 17:36:57 +000031#include "llvm/System/RWMutex.h"
Owen Anderson7d42b952009-06-18 16:54:52 +000032#include "llvm/System/Threading.h"
Chris Lattner90234f32009-03-31 22:11:05 +000033#include "llvm/ADT/DenseMap.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000034#include <algorithm>
Chris Lattner189d19f2003-11-21 20:23:48 +000035using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000036
Chris Lattner2f7c9632001-06-06 20:29:01 +000037//===----------------------------------------------------------------------===//
38// Value Class
39//===----------------------------------------------------------------------===//
40
Chris Lattner25450e32001-12-13 00:41:27 +000041static inline const Type *checkType(const Type *Ty) {
42 assert(Ty && "Value defined with a null type: Error!");
43 return Ty;
44}
45
Chris Lattner32ab6432007-02-12 05:18:08 +000046Value::Value(const Type *ty, unsigned scid)
Dan Gohman9691e712009-07-17 17:16:59 +000047 : SubclassID(scid), HasValueHandle(0), SubclassOptionalData(0),
48 SubclassData(0), VTy(checkType(ty)),
Gabor Greif715b9d22008-09-19 15:13:20 +000049 UseList(0), Name(0) {
Devang Patelad582fc2008-02-21 02:14:01 +000050 if (isa<CallInst>(this) || isa<InvokeInst>(this))
Owen Anderson55f1c092009-08-13 21:58:54 +000051 assert((VTy->isFirstClassType() ||
52 VTy == Type::getVoidTy(ty->getContext()) ||
Evan Chenga05c07e2008-07-24 00:08:56 +000053 isa<OpaqueType>(ty) || VTy->getTypeID() == Type::StructTyID) &&
Devang Patel1f00b532008-02-21 01:54:02 +000054 "invalid CallInst type!");
55 else if (!isa<Constant>(this) && !isa<BasicBlock>(this))
Owen Anderson55f1c092009-08-13 21:58:54 +000056 assert((VTy->isFirstClassType() ||
57 VTy == Type::getVoidTy(ty->getContext()) ||
Chris Lattner9df9afd2004-07-07 18:07:46 +000058 isa<OpaqueType>(ty)) &&
Chris Lattnerbea72472004-07-06 17:44:17 +000059 "Cannot create non-first-class values except for constants!");
Chris Lattner2f7c9632001-06-06 20:29:01 +000060}
61
Gordon Henriksen14a55692007-12-10 02:14:30 +000062Value::~Value() {
Chris Lattner90234f32009-03-31 22:11:05 +000063 // Notify all ValueHandles (if present) that this value is going away.
64 if (HasValueHandle)
65 ValueHandleBase::ValueIsDeleted(this);
66
Chris Lattner2f7c9632001-06-06 20:29:01 +000067#ifndef NDEBUG // Only in -g mode...
Chris Lattner874ddad2001-06-11 15:04:40 +000068 // Check to make sure that there are no uses of this value that are still
69 // around when the value is destroyed. If there are, then we have a dangling
70 // reference and something is wrong. This code is here to print out what is
Misha Brukmanb1c93172005-04-21 23:48:37 +000071 // still being referenced. The value in question should be printed as
Chris Lattner874ddad2001-06-11 15:04:40 +000072 // a <badref>
73 //
Gordon Henriksen14a55692007-12-10 02:14:30 +000074 if (!use_empty()) {
Daniel Dunbarb99eac82009-07-24 10:05:20 +000075 errs() << "While deleting: " << *VTy << " %" << getNameStr() << "\n";
Gordon Henriksen14a55692007-12-10 02:14:30 +000076 for (use_iterator I = use_begin(), E = use_end(); I != E; ++I)
Daniel Dunbarb99eac82009-07-24 10:05:20 +000077 errs() << "Use still stuck around after Def is destroyed:"
Bill Wendling6a462f12006-11-17 08:03:48 +000078 << **I << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +000079 }
80#endif
Gordon Henriksen14a55692007-12-10 02:14:30 +000081 assert(use_empty() && "Uses remain when a value is destroyed!");
Chris Lattner694285c2009-08-04 23:07:12 +000082
83 // If this value is named, destroy the name. This should not be in a symtab
84 // at this point.
85 if (Name)
86 Name->Destroy();
87
88 // There should be no uses of this object anymore, remove it.
89 LeakDetector::removeGarbageObject(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +000090}
91
Chris Lattner4947e672005-02-01 01:24:21 +000092/// hasNUses - Return true if this Value has exactly N users.
93///
94bool Value::hasNUses(unsigned N) const {
95 use_const_iterator UI = use_begin(), E = use_end();
96
97 for (; N; --N, ++UI)
98 if (UI == E) return false; // Too few.
99 return UI == E;
100}
101
Chris Lattnerd36552f2005-02-23 16:51:11 +0000102/// hasNUsesOrMore - Return true if this value has N users or more. This is
103/// logically equivalent to getNumUses() >= N.
104///
105bool Value::hasNUsesOrMore(unsigned N) const {
106 use_const_iterator UI = use_begin(), E = use_end();
107
108 for (; N; --N, ++UI)
109 if (UI == E) return false; // Too few.
110
111 return true;
112}
113
Evan Cheng89553cc2008-06-12 21:15:59 +0000114/// isUsedInBasicBlock - Return true if this value is used in the specified
115/// basic block.
Bill Wendling0c374212008-09-25 22:42:01 +0000116bool Value::isUsedInBasicBlock(const BasicBlock *BB) const {
Evan Cheng89553cc2008-06-12 21:15:59 +0000117 for (use_const_iterator I = use_begin(), E = use_end(); I != E; ++I) {
118 const Instruction *User = dyn_cast<Instruction>(*I);
119 if (User && User->getParent() == BB)
120 return true;
121 }
122 return false;
123}
124
Chris Lattnerd36552f2005-02-23 16:51:11 +0000125
Chris Lattner4947e672005-02-01 01:24:21 +0000126/// getNumUses - This method computes the number of uses of this Value. This
127/// is a linear time operation. Use hasOneUse or hasNUses to check for specific
128/// values.
129unsigned Value::getNumUses() const {
130 return (unsigned)std::distance(use_begin(), use_end());
131}
132
Chris Lattnerb6250822007-02-11 00:37:27 +0000133static bool getSymTab(Value *V, ValueSymbolTable *&ST) {
Chris Lattner569c8ac2007-02-11 19:12:18 +0000134 ST = 0;
Chris Lattnerb6250822007-02-11 00:37:27 +0000135 if (Instruction *I = dyn_cast<Instruction>(V)) {
136 if (BasicBlock *P = I->getParent())
137 if (Function *PP = P->getParent())
138 ST = &PP->getValueSymbolTable();
139 } else if (BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
140 if (Function *P = BB->getParent())
141 ST = &P->getValueSymbolTable();
142 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
143 if (Module *P = GV->getParent())
144 ST = &P->getValueSymbolTable();
145 } else if (Argument *A = dyn_cast<Argument>(V)) {
146 if (Function *P = A->getParent())
147 ST = &P->getValueSymbolTable();
Devang Patel18dfdc92009-07-29 17:16:17 +0000148 } else if (NamedMDNode *N = dyn_cast<NamedMDNode>(V)) {
149 if (Module *P = N->getParent()) {
150 ST = &P->getValueSymbolTable();
151 }
Devang Patel7428d8a2009-07-22 17:43:22 +0000152 } else if (isa<MDString>(V))
153 return true;
154 else {
Chris Lattnerb6250822007-02-11 00:37:27 +0000155 assert(isa<Constant>(V) && "Unknown value type!");
156 return true; // no name is setable for this.
157 }
158 return false;
159}
Chris Lattner2c6abea2002-10-09 23:12:59 +0000160
Daniel Dunbar32285942009-07-26 00:51:56 +0000161StringRef Value::getName() const {
Daniel Dunbar7cc8f7e2009-07-26 09:22:02 +0000162 // Make sure the empty string is still a C string. For historical reasons,
163 // some clients want to call .data() on the result and expect it to be null
164 // terminated.
165 if (!Name) return StringRef("", 0);
Daniel Dunbar32285942009-07-26 00:51:56 +0000166 return Name->getKey();
Chris Lattner5109a882007-08-10 15:34:35 +0000167}
168
Chris Lattnerfd27ed92007-02-15 18:53:54 +0000169std::string Value::getNameStr() const {
Daniel Dunbar987ec562009-07-26 00:17:14 +0000170 return getName().str();
Chris Lattner32ab6432007-02-12 05:18:08 +0000171}
Chris Lattnercdb9bfc2005-03-05 19:51:50 +0000172
Daniel Dunbard786b512009-07-26 00:34:27 +0000173void Value::setName(const Twine &NewName) {
Daniel Dunbarcb13b482009-08-19 23:37:23 +0000174 // Fast path for common IRBuilder case of setName("") when there is no name.
175 if (NewName.isTriviallyEmpty() && !hasName())
176 return;
177
Daniel Dunbaracf0b252009-08-19 05:08:06 +0000178 SmallString<256> NameData;
Daniel Dunbard786b512009-07-26 00:34:27 +0000179 NewName.toVector(NameData);
Chris Lattner1a5de582007-02-12 18:52:59 +0000180
Daniel Dunbard786b512009-07-26 00:34:27 +0000181 const char *NameStr = NameData.data();
182 unsigned NameLen = NameData.size();
183
Daniel Dunbara32c9992009-07-26 00:42:33 +0000184 // Name isn't changing?
185 if (getName() == StringRef(NameStr, NameLen))
186 return;
187
Owen Anderson55f1c092009-08-13 21:58:54 +0000188 assert(getType() != Type::getVoidTy(getContext()) &&
189 "Cannot assign a name to void values!");
Chris Lattner32ab6432007-02-12 05:18:08 +0000190
Chris Lattnerffb37782005-03-06 02:14:28 +0000191 // Get the symbol table to update for this object.
Chris Lattnerb6250822007-02-11 00:37:27 +0000192 ValueSymbolTable *ST;
193 if (getSymTab(this, ST))
194 return; // Cannot set a name on this value (e.g. constant).
Chris Lattnercdb9bfc2005-03-05 19:51:50 +0000195
Chris Lattner32ab6432007-02-12 05:18:08 +0000196 if (!ST) { // No symbol table to update? Just do the change.
Chris Lattner1a5de582007-02-12 18:52:59 +0000197 if (NameLen == 0) {
Chris Lattner32ab6432007-02-12 05:18:08 +0000198 // Free the name for this value.
199 Name->Destroy();
200 Name = 0;
Chris Lattner1a5de582007-02-12 18:52:59 +0000201 return;
Chris Lattnerffb37782005-03-06 02:14:28 +0000202 }
Chris Lattner1a5de582007-02-12 18:52:59 +0000203
Daniel Dunbara32c9992009-07-26 00:42:33 +0000204 if (Name)
Chris Lattner1a5de582007-02-12 18:52:59 +0000205 Name->Destroy();
Chris Lattner1a5de582007-02-12 18:52:59 +0000206
207 // NOTE: Could optimize for the case the name is shrinking to not deallocate
208 // then reallocated.
209
210 // Create the new name.
211 Name = ValueName::Create(NameStr, NameStr+NameLen);
212 Name->setValue(this);
Chris Lattner32ab6432007-02-12 05:18:08 +0000213 return;
Chris Lattnerffb37782005-03-06 02:14:28 +0000214 }
Chris Lattner32ab6432007-02-12 05:18:08 +0000215
216 // NOTE: Could optimize for the case the name is shrinking to not deallocate
217 // then reallocated.
218 if (hasName()) {
Chris Lattner32ab6432007-02-12 05:18:08 +0000219 // Remove old name.
220 ST->removeValueName(Name);
221 Name->Destroy();
222 Name = 0;
223
Chris Lattner1a5de582007-02-12 18:52:59 +0000224 if (NameLen == 0)
225 return;
Chris Lattner32ab6432007-02-12 05:18:08 +0000226 }
227
228 // Name is changing to something new.
Daniel Dunbarf01154c2009-07-23 18:50:53 +0000229 Name = ST->createValueName(StringRef(NameStr, NameLen), this);
Chris Lattnercdb9bfc2005-03-05 19:51:50 +0000230}
231
Chris Lattner1a5de582007-02-12 18:52:59 +0000232
Chris Lattnerb6250822007-02-11 00:37:27 +0000233/// takeName - transfer the name from V to this value, setting V's name to
234/// empty. It is an error to call V->takeName(V).
235void Value::takeName(Value *V) {
Chris Lattnercf835ff2007-02-15 20:01:43 +0000236 ValueSymbolTable *ST = 0;
237 // If this value has a name, drop it.
238 if (hasName()) {
239 // Get the symtab this is in.
240 if (getSymTab(this, ST)) {
241 // We can't set a name on this value, but we need to clear V's name if
242 // it has one.
Daniel Dunbard786b512009-07-26 00:34:27 +0000243 if (V->hasName()) V->setName("");
Chris Lattnercf835ff2007-02-15 20:01:43 +0000244 return; // Cannot set a name on this value (e.g. constant).
245 }
246
247 // Remove old name.
248 if (ST)
249 ST->removeValueName(Name);
250 Name->Destroy();
251 Name = 0;
252 }
253
254 // Now we know that this has no name.
255
256 // If V has no name either, we're done.
257 if (!V->hasName()) return;
258
259 // Get this's symtab if we didn't before.
260 if (!ST) {
261 if (getSymTab(this, ST)) {
262 // Clear V's name.
Daniel Dunbard786b512009-07-26 00:34:27 +0000263 V->setName("");
Chris Lattnercf835ff2007-02-15 20:01:43 +0000264 return; // Cannot set a name on this value (e.g. constant).
265 }
266 }
267
268 // Get V's ST, this should always succed, because V has a name.
269 ValueSymbolTable *VST;
270 bool Failure = getSymTab(V, VST);
Chris Lattner106b0462008-06-21 19:47:03 +0000271 assert(!Failure && "V has a name, so it should have a ST!"); Failure=Failure;
Chris Lattnercf835ff2007-02-15 20:01:43 +0000272
273 // If these values are both in the same symtab, we can do this very fast.
274 // This works even if both values have no symtab yet.
275 if (ST == VST) {
276 // Take the name!
277 Name = V->Name;
278 V->Name = 0;
279 Name->setValue(this);
Chris Lattnercba18e32007-02-11 01:04:09 +0000280 return;
281 }
282
Chris Lattnercf835ff2007-02-15 20:01:43 +0000283 // Otherwise, things are slightly more complex. Remove V's name from VST and
284 // then reinsert it into ST.
285
286 if (VST)
287 VST->removeValueName(V->Name);
288 Name = V->Name;
289 V->Name = 0;
290 Name->setValue(this);
291
292 if (ST)
293 ST->reinsertValue(this);
Chris Lattnerb6250822007-02-11 00:37:27 +0000294}
295
296
Chris Lattner9f158122003-08-29 05:09:37 +0000297// uncheckedReplaceAllUsesWith - This is exactly the same as replaceAllUsesWith,
298// except that it doesn't have all of the asserts. The asserts fail because we
299// are half-way done resolving types, which causes some types to exist as two
300// different Type*'s at the same time. This is a sledgehammer to work around
301// this problem.
302//
303void Value::uncheckedReplaceAllUsesWith(Value *New) {
Chris Lattner90234f32009-03-31 22:11:05 +0000304 // Notify all ValueHandles (if present) that this value is going away.
305 if (HasValueHandle)
306 ValueHandleBase::ValueIsRAUWd(this, New);
307
Chris Lattner4947e672005-02-01 01:24:21 +0000308 while (!use_empty()) {
Gabor Greif715b9d22008-09-19 15:13:20 +0000309 Use &U = *UseList;
Chris Lattner9f158122003-08-29 05:09:37 +0000310 // Must handle Constants specially, we cannot call replaceUsesOfWith on a
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000311 // constant because they are uniqued.
Chris Lattner079edeb2003-10-16 16:53:07 +0000312 if (Constant *C = dyn_cast<Constant>(U.getUser())) {
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000313 if (!isa<GlobalValue>(C)) {
Chris Lattner7a1450d2005-10-04 18:13:04 +0000314 C->replaceUsesOfWithOnConstant(this, New, &U);
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000315 continue;
316 }
Chris Lattner9f158122003-08-29 05:09:37 +0000317 }
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000318
319 U.set(New);
Chris Lattner9f158122003-08-29 05:09:37 +0000320 }
321}
322
Chris Lattner079edeb2003-10-16 16:53:07 +0000323void Value::replaceAllUsesWith(Value *New) {
324 assert(New && "Value::replaceAllUsesWith(<null>) is invalid!");
325 assert(New != this && "this->replaceAllUsesWith(this) is NOT valid!");
326 assert(New->getType() == getType() &&
327 "replaceAllUses of value with new value of different type!");
Chris Lattner9f158122003-08-29 05:09:37 +0000328
Chris Lattner079edeb2003-10-16 16:53:07 +0000329 uncheckedReplaceAllUsesWith(New);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000330}
331
Anton Korobeynikovfc2edad2008-05-07 22:54:15 +0000332Value *Value::stripPointerCasts() {
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000333 if (!isa<PointerType>(getType()))
334 return this;
Duncan Sandse59fa782008-12-29 21:06:19 +0000335 Value *V = this;
336 do {
Dan Gohmane1019db2009-07-17 23:55:56 +0000337 if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
Duncan Sandse59fa782008-12-29 21:06:19 +0000338 if (!GEP->hasAllZeroIndices())
339 return V;
Dan Gohmane1019db2009-07-17 23:55:56 +0000340 V = GEP->getPointerOperand();
341 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
342 V = cast<Operator>(V)->getOperand(0);
Duncan Sandse59fa782008-12-29 21:06:19 +0000343 } else {
344 return V;
Anton Korobeynikovfc2edad2008-05-07 22:54:15 +0000345 }
Duncan Sandse59fa782008-12-29 21:06:19 +0000346 assert(isa<PointerType>(V->getType()) && "Unexpected operand type!");
347 } while (1);
Anton Korobeynikovfc2edad2008-05-07 22:54:15 +0000348}
349
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000350Value *Value::getUnderlyingObject() {
351 if (!isa<PointerType>(getType()))
352 return this;
Duncan Sandse59fa782008-12-29 21:06:19 +0000353 Value *V = this;
Nick Lewycky4a7bcf62009-04-15 06:23:41 +0000354 unsigned MaxLookup = 6;
Duncan Sandse59fa782008-12-29 21:06:19 +0000355 do {
Dan Gohmane1019db2009-07-17 23:55:56 +0000356 if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
Dan Gohmane1019db2009-07-17 23:55:56 +0000357 V = GEP->getPointerOperand();
358 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
359 V = cast<Operator>(V)->getOperand(0);
Duncan Sandse59fa782008-12-29 21:06:19 +0000360 } else {
361 return V;
362 }
363 assert(isa<PointerType>(V->getType()) && "Unexpected operand type!");
Nick Lewycky4a7bcf62009-04-15 06:23:41 +0000364 } while (--MaxLookup);
365 return V;
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000366}
367
Chris Lattner027d7262008-12-02 18:33:11 +0000368/// DoPHITranslation - If this value is a PHI node with CurBB as its parent,
Chris Lattner9c1b5022008-12-02 07:16:45 +0000369/// return the value in the PHI node corresponding to PredBB. If not, return
370/// ourself. This is useful if you want to know the value something has in a
371/// predecessor block.
372Value *Value::DoPHITranslation(const BasicBlock *CurBB,
373 const BasicBlock *PredBB) {
374 PHINode *PN = dyn_cast<PHINode>(this);
375 if (PN && PN->getParent() == CurBB)
376 return PN->getIncomingValueForBlock(PredBB);
377 return this;
378}
379
Owen Anderson47db9412009-07-22 00:24:57 +0000380LLVMContext &Value::getContext() const { return VTy->getContext(); }
381
Chris Lattner90234f32009-03-31 22:11:05 +0000382//===----------------------------------------------------------------------===//
383// ValueHandleBase Class
384//===----------------------------------------------------------------------===//
385
Dan Gohman3f025952009-05-04 17:25:21 +0000386/// AddToExistingUseList - Add this ValueHandle to the use list for VP, where
387/// List is known to point into the existing use list.
Chris Lattner90234f32009-03-31 22:11:05 +0000388void ValueHandleBase::AddToExistingUseList(ValueHandleBase **List) {
389 assert(List && "Handle list is null?");
390
391 // Splice ourselves into the list.
392 Next = *List;
393 *List = this;
394 setPrevPtr(List);
395 if (Next) {
396 Next->setPrevPtr(&Next);
397 assert(VP == Next->VP && "Added to wrong list?");
398 }
399}
400
401/// AddToUseList - Add this ValueHandle to the use list for VP.
402void ValueHandleBase::AddToUseList() {
403 assert(VP && "Null pointer doesn't have a use list!");
Owen Andersone8f21852009-08-18 18:28:58 +0000404
405 LLVMContextImpl *pImpl = VP->getContext().pImpl;
406
Chris Lattner90234f32009-03-31 22:11:05 +0000407 if (VP->HasValueHandle) {
408 // If this value already has a ValueHandle, then it must be in the
409 // ValueHandles map already.
Owen Andersone8f21852009-08-18 18:28:58 +0000410 ValueHandleBase *&Entry = pImpl->ValueHandles[VP];
Chris Lattner90234f32009-03-31 22:11:05 +0000411 assert(Entry != 0 && "Value doesn't have any handles?");
Owen Anderson4b660a82009-06-17 17:36:57 +0000412 AddToExistingUseList(&Entry);
Owen Anderson4b660a82009-06-17 17:36:57 +0000413 return;
Chris Lattner90234f32009-03-31 22:11:05 +0000414 }
415
416 // Ok, it doesn't have any handles yet, so we must insert it into the
417 // DenseMap. However, doing this insertion could cause the DenseMap to
418 // reallocate itself, which would invalidate all of the PrevP pointers that
419 // point into the old table. Handle this by checking for reallocation and
420 // updating the stale pointers only if needed.
Owen Andersone8f21852009-08-18 18:28:58 +0000421 DenseMap<Value*, ValueHandleBase*> &Handles = pImpl->ValueHandles;
Chris Lattner90234f32009-03-31 22:11:05 +0000422 const void *OldBucketPtr = Handles.getPointerIntoBucketsArray();
423
424 ValueHandleBase *&Entry = Handles[VP];
425 assert(Entry == 0 && "Value really did already have handles?");
426 AddToExistingUseList(&Entry);
Dan Gohman3f025952009-05-04 17:25:21 +0000427 VP->HasValueHandle = true;
Chris Lattner90234f32009-03-31 22:11:05 +0000428
429 // If reallocation didn't happen or if this was the first insertion, don't
430 // walk the table.
431 if (Handles.isPointerIntoBucketsArray(OldBucketPtr) ||
Owen Anderson4b660a82009-06-17 17:36:57 +0000432 Handles.size() == 1) {
Chris Lattner90234f32009-03-31 22:11:05 +0000433 return;
Owen Anderson4b660a82009-06-17 17:36:57 +0000434 }
Chris Lattner90234f32009-03-31 22:11:05 +0000435
436 // Okay, reallocation did happen. Fix the Prev Pointers.
Owen Andersone8f21852009-08-18 18:28:58 +0000437 for (DenseMap<Value*, ValueHandleBase*>::iterator I = Handles.begin(),
438 E = Handles.end(); I != E; ++I) {
Chris Lattner90234f32009-03-31 22:11:05 +0000439 assert(I->second && I->first == I->second->VP && "List invariant broken!");
440 I->second->setPrevPtr(&I->second);
441 }
442}
443
444/// RemoveFromUseList - Remove this ValueHandle from its current use list.
445void ValueHandleBase::RemoveFromUseList() {
446 assert(VP && VP->HasValueHandle && "Pointer doesn't have a use list!");
447
448 // Unlink this from its use list.
449 ValueHandleBase **PrevPtr = getPrevPtr();
450 assert(*PrevPtr == this && "List invariant broken");
451
452 *PrevPtr = Next;
453 if (Next) {
454 assert(Next->getPrevPtr() == &Next && "List invariant broken");
455 Next->setPrevPtr(PrevPtr);
456 return;
457 }
458
459 // If the Next pointer was null, then it is possible that this was the last
460 // ValueHandle watching VP. If so, delete its entry from the ValueHandles
461 // map.
Owen Andersone8f21852009-08-18 18:28:58 +0000462 LLVMContextImpl *pImpl = VP->getContext().pImpl;
463 DenseMap<Value*, ValueHandleBase*> &Handles = pImpl->ValueHandles;
Chris Lattner90234f32009-03-31 22:11:05 +0000464 if (Handles.isPointerIntoBucketsArray(PrevPtr)) {
465 Handles.erase(VP);
466 VP->HasValueHandle = false;
467 }
468}
469
470
471void ValueHandleBase::ValueIsDeleted(Value *V) {
472 assert(V->HasValueHandle && "Should only be called if ValueHandles present");
473
474 // Get the linked list base, which is guaranteed to exist since the
475 // HasValueHandle flag is set.
Owen Andersone8f21852009-08-18 18:28:58 +0000476 LLVMContextImpl *pImpl = V->getContext().pImpl;
477 ValueHandleBase *Entry = pImpl->ValueHandles[V];
Chris Lattner90234f32009-03-31 22:11:05 +0000478 assert(Entry && "Value bit set but no entries exist");
479
480 while (Entry) {
481 // Advance pointer to avoid invalidation.
482 ValueHandleBase *ThisNode = Entry;
483 Entry = Entry->Next;
484
485 switch (ThisNode->getKind()) {
486 case Assert:
487#ifndef NDEBUG // Only in -g mode...
Daniel Dunbarb99eac82009-07-24 10:05:20 +0000488 errs() << "While deleting: " << *V->getType() << " %" << V->getNameStr()
489 << "\n";
Chris Lattner90234f32009-03-31 22:11:05 +0000490#endif
Torok Edwinfbcc6632009-07-14 16:55:14 +0000491 llvm_unreachable("An asserting value handle still pointed to this"
Jeffrey Yasskind8d725d2009-07-08 22:09:00 +0000492 " value!");
Chris Lattner90234f32009-03-31 22:11:05 +0000493 case Weak:
494 // Weak just goes to null, which will unlink it from the list.
495 ThisNode->operator=(0);
496 break;
497 case Callback:
Dan Gohman745ad442009-05-02 21:10:48 +0000498 // Forward to the subclass's implementation.
499 static_cast<CallbackVH*>(ThisNode)->deleted();
500 break;
Chris Lattner90234f32009-03-31 22:11:05 +0000501 }
502 }
503
504 // All callbacks and weak references should be dropped by now.
505 assert(!V->HasValueHandle && "All references to V were not removed?");
506}
507
508
509void ValueHandleBase::ValueIsRAUWd(Value *Old, Value *New) {
510 assert(Old->HasValueHandle &&"Should only be called if ValueHandles present");
511 assert(Old != New && "Changing value into itself!");
512
513 // Get the linked list base, which is guaranteed to exist since the
514 // HasValueHandle flag is set.
Owen Andersone8f21852009-08-18 18:28:58 +0000515 LLVMContextImpl *pImpl = Old->getContext().pImpl;
516 ValueHandleBase *Entry = pImpl->ValueHandles[Old];
517
Chris Lattner90234f32009-03-31 22:11:05 +0000518 assert(Entry && "Value bit set but no entries exist");
519
520 while (Entry) {
521 // Advance pointer to avoid invalidation.
522 ValueHandleBase *ThisNode = Entry;
523 Entry = Entry->Next;
524
525 switch (ThisNode->getKind()) {
526 case Assert:
527 // Asserting handle does not follow RAUW implicitly.
528 break;
529 case Weak:
530 // Weak goes to the new value, which will unlink it from Old's list.
531 ThisNode->operator=(New);
532 break;
533 case Callback:
Dan Gohman745ad442009-05-02 21:10:48 +0000534 // Forward to the subclass's implementation.
535 static_cast<CallbackVH*>(ThisNode)->allUsesReplacedWith(New);
536 break;
Chris Lattner90234f32009-03-31 22:11:05 +0000537 }
538 }
539}
540
Dan Gohman745ad442009-05-02 21:10:48 +0000541/// ~CallbackVH. Empty, but defined here to avoid emitting the vtable
542/// more than once.
543CallbackVH::~CallbackVH() {}
544
Chris Lattner9c1b5022008-12-02 07:16:45 +0000545
Chris Lattner2f7c9632001-06-06 20:29:01 +0000546//===----------------------------------------------------------------------===//
547// User Class
548//===----------------------------------------------------------------------===//
549
Chris Lattner2f7c9632001-06-06 20:29:01 +0000550// replaceUsesOfWith - Replaces all references to the "From" definition with
551// references to the "To" definition.
552//
553void User::replaceUsesOfWith(Value *From, Value *To) {
554 if (From == To) return; // Duh what?
555
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000556 assert((!isa<Constant>(this) || isa<GlobalValue>(this)) &&
Dan Gohman5211b012009-08-11 15:53:15 +0000557 "Cannot call User::replaceUsesOfWith on a constant!");
Chris Lattner2c6abea2002-10-09 23:12:59 +0000558
Chris Lattnera073acb2001-07-07 08:36:50 +0000559 for (unsigned i = 0, E = getNumOperands(); i != E; ++i)
560 if (getOperand(i) == From) { // Is This operand is pointing to oldval?
Chris Lattner2f7c9632001-06-06 20:29:01 +0000561 // The side effects of this setOperand call include linking to
562 // "To", adding "this" to the uses list of To, and
563 // most importantly, removing "this" from the use list of "From".
Chris Lattnera073acb2001-07-07 08:36:50 +0000564 setOperand(i, To); // Fix it now...
Chris Lattner2f7c9632001-06-06 20:29:01 +0000565 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000566}