blob: 0155fa5cfeff942a51bd6cec978ca8e2868d934a [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"
30#include "llvm/ADT/DenseMap.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000031#include <algorithm>
Chris Lattner189d19f2003-11-21 20:23:48 +000032using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000033
Chris Lattner2f7c9632001-06-06 20:29:01 +000034//===----------------------------------------------------------------------===//
35// Value Class
36//===----------------------------------------------------------------------===//
37
Chris Lattner25450e32001-12-13 00:41:27 +000038static inline const Type *checkType(const Type *Ty) {
39 assert(Ty && "Value defined with a null type: Error!");
40 return Ty;
41}
42
Chris Lattner32ab6432007-02-12 05:18:08 +000043Value::Value(const Type *ty, unsigned scid)
Chris Lattner2f2aa2b2009-12-28 23:41:32 +000044 : SubclassID(scid), HasValueHandle(0),
Benjamin Kramer5ff90ed2009-09-17 14:51:57 +000045 SubclassOptionalData(0), SubclassData(0), VTy(checkType(ty)),
Gabor Greif715b9d22008-09-19 15:13:20 +000046 UseList(0), Name(0) {
Devang Patelad582fc2008-02-21 02:14:01 +000047 if (isa<CallInst>(this) || isa<InvokeInst>(this))
Owen Anderson55f1c092009-08-13 21:58:54 +000048 assert((VTy->isFirstClassType() ||
49 VTy == Type::getVoidTy(ty->getContext()) ||
Evan Chenga05c07e2008-07-24 00:08:56 +000050 isa<OpaqueType>(ty) || VTy->getTypeID() == Type::StructTyID) &&
Devang Patel1f00b532008-02-21 01:54:02 +000051 "invalid CallInst type!");
52 else if (!isa<Constant>(this) && !isa<BasicBlock>(this))
Owen Anderson55f1c092009-08-13 21:58:54 +000053 assert((VTy->isFirstClassType() ||
54 VTy == Type::getVoidTy(ty->getContext()) ||
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);
Daniel Dunbar6058b512009-09-20 04:03:34 +000063
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 Lattner694285c2009-08-04 23:07:12 +000079
80 // If this value is named, destroy the name. This should not be in a symtab
81 // at this point.
82 if (Name)
83 Name->Destroy();
Daniel Dunbar6058b512009-09-20 04:03:34 +000084
Chris Lattner694285c2009-08-04 23:07:12 +000085 // There should be no uses of this object anymore, remove it.
86 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)) {
Daniel Dunbar6058b512009-09-20 04:03:34 +0000137 if (Function *P = BB->getParent())
Chris Lattnerb6250822007-02-11 00:37:27 +0000138 ST = &P->getValueSymbolTable();
139 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
Daniel Dunbar6058b512009-09-20 04:03:34 +0000140 if (Module *P = GV->getParent())
Chris Lattnerb6250822007-02-11 00:37:27 +0000141 ST = &P->getValueSymbolTable();
142 } else if (Argument *A = dyn_cast<Argument>(V)) {
Daniel Dunbar6058b512009-09-20 04:03:34 +0000143 if (Function *P = A->getParent())
Chris Lattnerb6250822007-02-11 00:37:27 +0000144 ST = &P->getValueSymbolTable();
Devang Patel18dfdc92009-07-29 17:16:17 +0000145 } else if (NamedMDNode *N = dyn_cast<NamedMDNode>(V)) {
146 if (Module *P = N->getParent()) {
147 ST = &P->getValueSymbolTable();
148 }
Devang Patel7428d8a2009-07-22 17:43:22 +0000149 } else if (isa<MDString>(V))
150 return true;
151 else {
Chris Lattnerb6250822007-02-11 00:37:27 +0000152 assert(isa<Constant>(V) && "Unknown value type!");
153 return true; // no name is setable for this.
154 }
155 return false;
156}
Chris Lattner2c6abea2002-10-09 23:12:59 +0000157
Daniel Dunbar32285942009-07-26 00:51:56 +0000158StringRef Value::getName() const {
Daniel Dunbar7cc8f7e2009-07-26 09:22:02 +0000159 // Make sure the empty string is still a C string. For historical reasons,
160 // some clients want to call .data() on the result and expect it to be null
161 // terminated.
162 if (!Name) return StringRef("", 0);
Daniel Dunbar32285942009-07-26 00:51:56 +0000163 return Name->getKey();
Chris Lattner5109a882007-08-10 15:34:35 +0000164}
165
Chris Lattnerfd27ed92007-02-15 18:53:54 +0000166std::string Value::getNameStr() const {
Daniel Dunbar987ec562009-07-26 00:17:14 +0000167 return getName().str();
Chris Lattner32ab6432007-02-12 05:18:08 +0000168}
Chris Lattnercdb9bfc2005-03-05 19:51:50 +0000169
Daniel Dunbard786b512009-07-26 00:34:27 +0000170void Value::setName(const Twine &NewName) {
Daniel Dunbarcb13b482009-08-19 23:37:23 +0000171 // Fast path for common IRBuilder case of setName("") when there is no name.
172 if (NewName.isTriviallyEmpty() && !hasName())
173 return;
174
Daniel Dunbaracf0b252009-08-19 05:08:06 +0000175 SmallString<256> NameData;
Daniel Dunbard786b512009-07-26 00:34:27 +0000176 NewName.toVector(NameData);
Chris Lattner1a5de582007-02-12 18:52:59 +0000177
Daniel Dunbard786b512009-07-26 00:34:27 +0000178 const char *NameStr = NameData.data();
179 unsigned NameLen = NameData.size();
180
Daniel Dunbara32c9992009-07-26 00:42:33 +0000181 // Name isn't changing?
182 if (getName() == StringRef(NameStr, NameLen))
183 return;
184
Owen Anderson55f1c092009-08-13 21:58:54 +0000185 assert(getType() != Type::getVoidTy(getContext()) &&
186 "Cannot assign a name to void values!");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000187
Chris Lattnerffb37782005-03-06 02:14:28 +0000188 // Get the symbol table to update for this object.
Chris Lattnerb6250822007-02-11 00:37:27 +0000189 ValueSymbolTable *ST;
190 if (getSymTab(this, ST))
191 return; // Cannot set a name on this value (e.g. constant).
Chris Lattnercdb9bfc2005-03-05 19:51:50 +0000192
Chris Lattner32ab6432007-02-12 05:18:08 +0000193 if (!ST) { // No symbol table to update? Just do the change.
Chris Lattner1a5de582007-02-12 18:52:59 +0000194 if (NameLen == 0) {
Chris Lattner32ab6432007-02-12 05:18:08 +0000195 // Free the name for this value.
196 Name->Destroy();
197 Name = 0;
Chris Lattner1a5de582007-02-12 18:52:59 +0000198 return;
Chris Lattnerffb37782005-03-06 02:14:28 +0000199 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000200
Daniel Dunbara32c9992009-07-26 00:42:33 +0000201 if (Name)
Chris Lattner1a5de582007-02-12 18:52:59 +0000202 Name->Destroy();
Daniel Dunbar6058b512009-09-20 04:03:34 +0000203
Chris Lattner1a5de582007-02-12 18:52:59 +0000204 // NOTE: Could optimize for the case the name is shrinking to not deallocate
205 // then reallocated.
Daniel Dunbar6058b512009-09-20 04:03:34 +0000206
Chris Lattner1a5de582007-02-12 18:52:59 +0000207 // Create the new name.
208 Name = ValueName::Create(NameStr, NameStr+NameLen);
209 Name->setValue(this);
Chris Lattner32ab6432007-02-12 05:18:08 +0000210 return;
Chris Lattnerffb37782005-03-06 02:14:28 +0000211 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000212
Chris Lattner32ab6432007-02-12 05:18:08 +0000213 // NOTE: Could optimize for the case the name is shrinking to not deallocate
214 // then reallocated.
215 if (hasName()) {
Chris Lattner32ab6432007-02-12 05:18:08 +0000216 // Remove old name.
217 ST->removeValueName(Name);
218 Name->Destroy();
219 Name = 0;
220
Chris Lattner1a5de582007-02-12 18:52:59 +0000221 if (NameLen == 0)
222 return;
Chris Lattner32ab6432007-02-12 05:18:08 +0000223 }
224
225 // Name is changing to something new.
Daniel Dunbarf01154c2009-07-23 18:50:53 +0000226 Name = ST->createValueName(StringRef(NameStr, NameLen), this);
Chris Lattnercdb9bfc2005-03-05 19:51:50 +0000227}
228
Chris Lattner1a5de582007-02-12 18:52:59 +0000229
Chris Lattnerb6250822007-02-11 00:37:27 +0000230/// takeName - transfer the name from V to this value, setting V's name to
Daniel Dunbar6058b512009-09-20 04:03:34 +0000231/// empty. It is an error to call V->takeName(V).
Chris Lattnerb6250822007-02-11 00:37:27 +0000232void Value::takeName(Value *V) {
Chris Lattnercf835ff2007-02-15 20:01:43 +0000233 ValueSymbolTable *ST = 0;
234 // If this value has a name, drop it.
235 if (hasName()) {
236 // Get the symtab this is in.
237 if (getSymTab(this, ST)) {
238 // We can't set a name on this value, but we need to clear V's name if
239 // it has one.
Daniel Dunbard786b512009-07-26 00:34:27 +0000240 if (V->hasName()) V->setName("");
Chris Lattnercf835ff2007-02-15 20:01:43 +0000241 return; // Cannot set a name on this value (e.g. constant).
242 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000243
Chris Lattnercf835ff2007-02-15 20:01:43 +0000244 // Remove old name.
245 if (ST)
246 ST->removeValueName(Name);
247 Name->Destroy();
248 Name = 0;
Daniel Dunbar6058b512009-09-20 04:03:34 +0000249 }
250
Chris Lattnercf835ff2007-02-15 20:01:43 +0000251 // Now we know that this has no name.
Daniel Dunbar6058b512009-09-20 04:03:34 +0000252
Chris Lattnercf835ff2007-02-15 20:01:43 +0000253 // If V has no name either, we're done.
254 if (!V->hasName()) return;
Daniel Dunbar6058b512009-09-20 04:03:34 +0000255
Chris Lattnercf835ff2007-02-15 20:01:43 +0000256 // Get this's symtab if we didn't before.
257 if (!ST) {
258 if (getSymTab(this, ST)) {
259 // Clear V's name.
Daniel Dunbard786b512009-07-26 00:34:27 +0000260 V->setName("");
Chris Lattnercf835ff2007-02-15 20:01:43 +0000261 return; // Cannot set a name on this value (e.g. constant).
262 }
263 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000264
Chris Lattnercf835ff2007-02-15 20:01:43 +0000265 // Get V's ST, this should always succed, because V has a name.
266 ValueSymbolTable *VST;
267 bool Failure = getSymTab(V, VST);
Chris Lattner106b0462008-06-21 19:47:03 +0000268 assert(!Failure && "V has a name, so it should have a ST!"); Failure=Failure;
Daniel Dunbar6058b512009-09-20 04:03:34 +0000269
Chris Lattnercf835ff2007-02-15 20:01:43 +0000270 // If these values are both in the same symtab, we can do this very fast.
271 // This works even if both values have no symtab yet.
272 if (ST == VST) {
273 // Take the name!
274 Name = V->Name;
275 V->Name = 0;
276 Name->setValue(this);
Chris Lattnercba18e32007-02-11 01:04:09 +0000277 return;
278 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000279
Chris Lattnercf835ff2007-02-15 20:01:43 +0000280 // Otherwise, things are slightly more complex. Remove V's name from VST and
281 // then reinsert it into ST.
Daniel Dunbar6058b512009-09-20 04:03:34 +0000282
Chris Lattnercf835ff2007-02-15 20:01:43 +0000283 if (VST)
284 VST->removeValueName(V->Name);
285 Name = V->Name;
286 V->Name = 0;
287 Name->setValue(this);
Daniel Dunbar6058b512009-09-20 04:03:34 +0000288
Chris Lattnercf835ff2007-02-15 20:01:43 +0000289 if (ST)
290 ST->reinsertValue(this);
Chris Lattnerb6250822007-02-11 00:37:27 +0000291}
292
293
Chris Lattner9f158122003-08-29 05:09:37 +0000294// uncheckedReplaceAllUsesWith - This is exactly the same as replaceAllUsesWith,
295// except that it doesn't have all of the asserts. The asserts fail because we
296// are half-way done resolving types, which causes some types to exist as two
297// different Type*'s at the same time. This is a sledgehammer to work around
298// this problem.
299//
300void Value::uncheckedReplaceAllUsesWith(Value *New) {
Chris Lattner90234f32009-03-31 22:11:05 +0000301 // Notify all ValueHandles (if present) that this value is going away.
302 if (HasValueHandle)
303 ValueHandleBase::ValueIsRAUWd(this, New);
Chris Lattner2f2aa2b2009-12-28 23:41:32 +0000304
305 // FIXME: It doesn't make sense at all for metadata to follow RAUW.
306 if (Instruction *I = dyn_cast<Instruction>(this))
307 if (I->hasMetadata()) {
308 LLVMContext &Context = getContext();
309 // FIXME: NUKE ValueIsRAUWd??
310 Context.pImpl->TheMetadata.ValueIsRAUWd(this, New);
311 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000312
Chris Lattner4947e672005-02-01 01:24:21 +0000313 while (!use_empty()) {
Gabor Greif715b9d22008-09-19 15:13:20 +0000314 Use &U = *UseList;
Chris Lattner9f158122003-08-29 05:09:37 +0000315 // Must handle Constants specially, we cannot call replaceUsesOfWith on a
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000316 // constant because they are uniqued.
Chris Lattner079edeb2003-10-16 16:53:07 +0000317 if (Constant *C = dyn_cast<Constant>(U.getUser())) {
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000318 if (!isa<GlobalValue>(C)) {
Chris Lattner7a1450d2005-10-04 18:13:04 +0000319 C->replaceUsesOfWithOnConstant(this, New, &U);
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000320 continue;
321 }
Chris Lattner9f158122003-08-29 05:09:37 +0000322 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000323
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000324 U.set(New);
Chris Lattner9f158122003-08-29 05:09:37 +0000325 }
326}
327
Chris Lattner079edeb2003-10-16 16:53:07 +0000328void Value::replaceAllUsesWith(Value *New) {
329 assert(New && "Value::replaceAllUsesWith(<null>) is invalid!");
330 assert(New != this && "this->replaceAllUsesWith(this) is NOT valid!");
331 assert(New->getType() == getType() &&
332 "replaceAllUses of value with new value of different type!");
Chris Lattner9f158122003-08-29 05:09:37 +0000333
Chris Lattner079edeb2003-10-16 16:53:07 +0000334 uncheckedReplaceAllUsesWith(New);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000335}
336
Anton Korobeynikovfc2edad2008-05-07 22:54:15 +0000337Value *Value::stripPointerCasts() {
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000338 if (!isa<PointerType>(getType()))
339 return this;
Duncan Sandse59fa782008-12-29 21:06:19 +0000340 Value *V = this;
341 do {
Dan Gohmane1019db2009-07-17 23:55:56 +0000342 if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
Duncan Sandse59fa782008-12-29 21:06:19 +0000343 if (!GEP->hasAllZeroIndices())
344 return V;
Dan Gohmane1019db2009-07-17 23:55:56 +0000345 V = GEP->getPointerOperand();
346 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
347 V = cast<Operator>(V)->getOperand(0);
Dan Gohman4ce5ade2009-08-27 17:55:13 +0000348 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) {
349 if (GA->mayBeOverridden())
350 return V;
351 V = GA->getAliasee();
Duncan Sandse59fa782008-12-29 21:06:19 +0000352 } else {
353 return V;
Anton Korobeynikovfc2edad2008-05-07 22:54:15 +0000354 }
Duncan Sandse59fa782008-12-29 21:06:19 +0000355 assert(isa<PointerType>(V->getType()) && "Unexpected operand type!");
356 } while (1);
Anton Korobeynikovfc2edad2008-05-07 22:54:15 +0000357}
358
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000359Value *Value::getUnderlyingObject() {
360 if (!isa<PointerType>(getType()))
361 return this;
Duncan Sandse59fa782008-12-29 21:06:19 +0000362 Value *V = this;
Nick Lewycky4a7bcf62009-04-15 06:23:41 +0000363 unsigned MaxLookup = 6;
Duncan Sandse59fa782008-12-29 21:06:19 +0000364 do {
Dan Gohmane1019db2009-07-17 23:55:56 +0000365 if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
Dan Gohmane1019db2009-07-17 23:55:56 +0000366 V = GEP->getPointerOperand();
367 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
368 V = cast<Operator>(V)->getOperand(0);
Dan Gohman4ce5ade2009-08-27 17:55:13 +0000369 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) {
370 if (GA->mayBeOverridden())
371 return V;
372 V = GA->getAliasee();
Duncan Sandse59fa782008-12-29 21:06:19 +0000373 } else {
374 return V;
375 }
376 assert(isa<PointerType>(V->getType()) && "Unexpected operand type!");
Nick Lewycky4a7bcf62009-04-15 06:23:41 +0000377 } while (--MaxLookup);
378 return V;
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000379}
380
Chris Lattner027d7262008-12-02 18:33:11 +0000381/// DoPHITranslation - If this value is a PHI node with CurBB as its parent,
Chris Lattner9c1b5022008-12-02 07:16:45 +0000382/// return the value in the PHI node corresponding to PredBB. If not, return
383/// ourself. This is useful if you want to know the value something has in a
384/// predecessor block.
Daniel Dunbar6058b512009-09-20 04:03:34 +0000385Value *Value::DoPHITranslation(const BasicBlock *CurBB,
Chris Lattner9c1b5022008-12-02 07:16:45 +0000386 const BasicBlock *PredBB) {
387 PHINode *PN = dyn_cast<PHINode>(this);
388 if (PN && PN->getParent() == CurBB)
389 return PN->getIncomingValueForBlock(PredBB);
390 return this;
391}
392
Owen Anderson47db9412009-07-22 00:24:57 +0000393LLVMContext &Value::getContext() const { return VTy->getContext(); }
394
Chris Lattner90234f32009-03-31 22:11:05 +0000395//===----------------------------------------------------------------------===//
396// ValueHandleBase Class
397//===----------------------------------------------------------------------===//
398
Dan Gohman3f025952009-05-04 17:25:21 +0000399/// AddToExistingUseList - Add this ValueHandle to the use list for VP, where
400/// List is known to point into the existing use list.
Chris Lattner90234f32009-03-31 22:11:05 +0000401void ValueHandleBase::AddToExistingUseList(ValueHandleBase **List) {
402 assert(List && "Handle list is null?");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000403
Chris Lattner90234f32009-03-31 22:11:05 +0000404 // Splice ourselves into the list.
405 Next = *List;
406 *List = this;
407 setPrevPtr(List);
408 if (Next) {
409 Next->setPrevPtr(&Next);
410 assert(VP == Next->VP && "Added to wrong list?");
411 }
412}
413
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000414void ValueHandleBase::AddToExistingUseListAfter(ValueHandleBase *List) {
415 assert(List && "Must insert after existing node");
416
417 Next = List->Next;
418 setPrevPtr(&List->Next);
419 List->Next = this;
420 if (Next)
421 Next->setPrevPtr(&Next);
422}
423
Chris Lattner90234f32009-03-31 22:11:05 +0000424/// AddToUseList - Add this ValueHandle to the use list for VP.
425void ValueHandleBase::AddToUseList() {
426 assert(VP && "Null pointer doesn't have a use list!");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000427
Owen Andersone8f21852009-08-18 18:28:58 +0000428 LLVMContextImpl *pImpl = VP->getContext().pImpl;
Daniel Dunbar6058b512009-09-20 04:03:34 +0000429
Chris Lattner90234f32009-03-31 22:11:05 +0000430 if (VP->HasValueHandle) {
431 // If this value already has a ValueHandle, then it must be in the
432 // ValueHandles map already.
Owen Andersone8f21852009-08-18 18:28:58 +0000433 ValueHandleBase *&Entry = pImpl->ValueHandles[VP];
Chris Lattner90234f32009-03-31 22:11:05 +0000434 assert(Entry != 0 && "Value doesn't have any handles?");
Owen Anderson4b660a82009-06-17 17:36:57 +0000435 AddToExistingUseList(&Entry);
Owen Anderson4b660a82009-06-17 17:36:57 +0000436 return;
Chris Lattner90234f32009-03-31 22:11:05 +0000437 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000438
Chris Lattner90234f32009-03-31 22:11:05 +0000439 // Ok, it doesn't have any handles yet, so we must insert it into the
440 // DenseMap. However, doing this insertion could cause the DenseMap to
441 // reallocate itself, which would invalidate all of the PrevP pointers that
442 // point into the old table. Handle this by checking for reallocation and
443 // updating the stale pointers only if needed.
Owen Andersone8f21852009-08-18 18:28:58 +0000444 DenseMap<Value*, ValueHandleBase*> &Handles = pImpl->ValueHandles;
Chris Lattner90234f32009-03-31 22:11:05 +0000445 const void *OldBucketPtr = Handles.getPointerIntoBucketsArray();
Daniel Dunbar6058b512009-09-20 04:03:34 +0000446
Chris Lattner90234f32009-03-31 22:11:05 +0000447 ValueHandleBase *&Entry = Handles[VP];
448 assert(Entry == 0 && "Value really did already have handles?");
449 AddToExistingUseList(&Entry);
Dan Gohman3f025952009-05-04 17:25:21 +0000450 VP->HasValueHandle = true;
Daniel Dunbar6058b512009-09-20 04:03:34 +0000451
Chris Lattner90234f32009-03-31 22:11:05 +0000452 // If reallocation didn't happen or if this was the first insertion, don't
453 // walk the table.
Daniel Dunbar6058b512009-09-20 04:03:34 +0000454 if (Handles.isPointerIntoBucketsArray(OldBucketPtr) ||
Owen Anderson4b660a82009-06-17 17:36:57 +0000455 Handles.size() == 1) {
Chris Lattner90234f32009-03-31 22:11:05 +0000456 return;
Owen Anderson4b660a82009-06-17 17:36:57 +0000457 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000458
Chris Lattner90234f32009-03-31 22:11:05 +0000459 // Okay, reallocation did happen. Fix the Prev Pointers.
Owen Andersone8f21852009-08-18 18:28:58 +0000460 for (DenseMap<Value*, ValueHandleBase*>::iterator I = Handles.begin(),
461 E = Handles.end(); I != E; ++I) {
Chris Lattner90234f32009-03-31 22:11:05 +0000462 assert(I->second && I->first == I->second->VP && "List invariant broken!");
463 I->second->setPrevPtr(&I->second);
464 }
465}
466
467/// RemoveFromUseList - Remove this ValueHandle from its current use list.
468void ValueHandleBase::RemoveFromUseList() {
469 assert(VP && VP->HasValueHandle && "Pointer doesn't have a use list!");
470
471 // Unlink this from its use list.
472 ValueHandleBase **PrevPtr = getPrevPtr();
473 assert(*PrevPtr == this && "List invariant broken");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000474
Chris Lattner90234f32009-03-31 22:11:05 +0000475 *PrevPtr = Next;
476 if (Next) {
477 assert(Next->getPrevPtr() == &Next && "List invariant broken");
478 Next->setPrevPtr(PrevPtr);
479 return;
480 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000481
Chris Lattner90234f32009-03-31 22:11:05 +0000482 // If the Next pointer was null, then it is possible that this was the last
483 // ValueHandle watching VP. If so, delete its entry from the ValueHandles
484 // map.
Owen Andersone8f21852009-08-18 18:28:58 +0000485 LLVMContextImpl *pImpl = VP->getContext().pImpl;
486 DenseMap<Value*, ValueHandleBase*> &Handles = pImpl->ValueHandles;
Chris Lattner90234f32009-03-31 22:11:05 +0000487 if (Handles.isPointerIntoBucketsArray(PrevPtr)) {
488 Handles.erase(VP);
489 VP->HasValueHandle = false;
490 }
491}
492
493
494void ValueHandleBase::ValueIsDeleted(Value *V) {
495 assert(V->HasValueHandle && "Should only be called if ValueHandles present");
496
497 // Get the linked list base, which is guaranteed to exist since the
498 // HasValueHandle flag is set.
Owen Andersone8f21852009-08-18 18:28:58 +0000499 LLVMContextImpl *pImpl = V->getContext().pImpl;
500 ValueHandleBase *Entry = pImpl->ValueHandles[V];
Chris Lattner90234f32009-03-31 22:11:05 +0000501 assert(Entry && "Value bit set but no entries exist");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000502
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000503 // We use a local ValueHandleBase as an iterator so that
504 // ValueHandles can add and remove themselves from the list without
505 // breaking our iteration. This is not really an AssertingVH; we
506 // just have to give ValueHandleBase some kind.
507 for (ValueHandleBase Iterator(Assert, *Entry); Entry; Entry = Iterator.Next) {
508 Iterator.RemoveFromUseList();
509 Iterator.AddToExistingUseListAfter(Entry);
510 assert(Entry->Next == &Iterator && "Loop invariant broken.");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000511
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000512 switch (Entry->getKind()) {
Chris Lattner90234f32009-03-31 22:11:05 +0000513 case Assert:
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000514 break;
Daniel Dunbar70d4fb02009-09-22 02:02:33 +0000515 case Tracking:
516 // Mark that this value has been deleted by setting it to an invalid Value
517 // pointer.
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000518 Entry->operator=(DenseMapInfo<Value *>::getTombstoneKey());
Daniel Dunbar70d4fb02009-09-22 02:02:33 +0000519 break;
Chris Lattner90234f32009-03-31 22:11:05 +0000520 case Weak:
521 // Weak just goes to null, which will unlink it from the list.
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000522 Entry->operator=(0);
Chris Lattner90234f32009-03-31 22:11:05 +0000523 break;
524 case Callback:
Dan Gohman745ad442009-05-02 21:10:48 +0000525 // Forward to the subclass's implementation.
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000526 static_cast<CallbackVH*>(Entry)->deleted();
Dan Gohman745ad442009-05-02 21:10:48 +0000527 break;
Chris Lattner90234f32009-03-31 22:11:05 +0000528 }
529 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000530
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000531 // All callbacks, weak references, and assertingVHs should be dropped by now.
532 if (V->HasValueHandle) {
533#ifndef NDEBUG // Only in +Asserts mode...
534 errs() << "While deleting: " << *V->getType() << " %" << V->getNameStr()
535 << "\n";
536 if (pImpl->ValueHandles[V]->getKind() == Assert)
537 llvm_unreachable("An asserting value handle still pointed to this"
538 " value!");
539
540#endif
541 llvm_unreachable("All references to V were not removed?");
542 }
Chris Lattner90234f32009-03-31 22:11:05 +0000543}
544
545
546void ValueHandleBase::ValueIsRAUWd(Value *Old, Value *New) {
547 assert(Old->HasValueHandle &&"Should only be called if ValueHandles present");
548 assert(Old != New && "Changing value into itself!");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000549
Chris Lattner90234f32009-03-31 22:11:05 +0000550 // Get the linked list base, which is guaranteed to exist since the
551 // HasValueHandle flag is set.
Owen Andersone8f21852009-08-18 18:28:58 +0000552 LLVMContextImpl *pImpl = Old->getContext().pImpl;
553 ValueHandleBase *Entry = pImpl->ValueHandles[Old];
554
Chris Lattner90234f32009-03-31 22:11:05 +0000555 assert(Entry && "Value bit set but no entries exist");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000556
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000557 // We use a local ValueHandleBase as an iterator so that
558 // ValueHandles can add and remove themselves from the list without
559 // breaking our iteration. This is not really an AssertingVH; we
560 // just have to give ValueHandleBase some kind.
561 for (ValueHandleBase Iterator(Assert, *Entry); Entry; Entry = Iterator.Next) {
562 Iterator.RemoveFromUseList();
563 Iterator.AddToExistingUseListAfter(Entry);
564 assert(Entry->Next == &Iterator && "Loop invariant broken.");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000565
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000566 switch (Entry->getKind()) {
Chris Lattner90234f32009-03-31 22:11:05 +0000567 case Assert:
568 // Asserting handle does not follow RAUW implicitly.
569 break;
Daniel Dunbar70d4fb02009-09-22 02:02:33 +0000570 case Tracking:
571 // Tracking goes to new value like a WeakVH. Note that this may make it
572 // something incompatible with its templated type. We don't want to have a
573 // virtual (or inline) interface to handle this though, so instead we make
Daniel Dunbar86707c92009-09-22 10:30:34 +0000574 // the TrackingVH accessors guarantee that a client never sees this value.
Daniel Dunbar70d4fb02009-09-22 02:02:33 +0000575
576 // FALLTHROUGH
Chris Lattner90234f32009-03-31 22:11:05 +0000577 case Weak:
578 // Weak goes to the new value, which will unlink it from Old's list.
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000579 Entry->operator=(New);
Chris Lattner90234f32009-03-31 22:11:05 +0000580 break;
581 case Callback:
Dan Gohman745ad442009-05-02 21:10:48 +0000582 // Forward to the subclass's implementation.
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000583 static_cast<CallbackVH*>(Entry)->allUsesReplacedWith(New);
Dan Gohman745ad442009-05-02 21:10:48 +0000584 break;
Chris Lattner90234f32009-03-31 22:11:05 +0000585 }
586 }
587}
588
Dan Gohman745ad442009-05-02 21:10:48 +0000589/// ~CallbackVH. Empty, but defined here to avoid emitting the vtable
590/// more than once.
591CallbackVH::~CallbackVH() {}
592
Chris Lattner9c1b5022008-12-02 07:16:45 +0000593
Chris Lattner2f7c9632001-06-06 20:29:01 +0000594//===----------------------------------------------------------------------===//
595// User Class
596//===----------------------------------------------------------------------===//
597
Chris Lattner2f7c9632001-06-06 20:29:01 +0000598// replaceUsesOfWith - Replaces all references to the "From" definition with
599// references to the "To" definition.
600//
601void User::replaceUsesOfWith(Value *From, Value *To) {
602 if (From == To) return; // Duh what?
603
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000604 assert((!isa<Constant>(this) || isa<GlobalValue>(this)) &&
Dan Gohman5211b012009-08-11 15:53:15 +0000605 "Cannot call User::replaceUsesOfWith on a constant!");
Chris Lattner2c6abea2002-10-09 23:12:59 +0000606
Chris Lattnera073acb2001-07-07 08:36:50 +0000607 for (unsigned i = 0, E = getNumOperands(); i != E; ++i)
608 if (getOperand(i) == From) { // Is This operand is pointing to oldval?
Chris Lattner2f7c9632001-06-06 20:29:01 +0000609 // The side effects of this setOperand call include linking to
610 // "To", adding "this" to the uses list of To, and
611 // most importantly, removing "this" from the use list of "From".
Chris Lattnera073acb2001-07-07 08:36:50 +0000612 setOperand(i, To); // Fix it now...
Chris Lattner2f7c9632001-06-06 20:29:01 +0000613 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000614}