blob: ba72af635cdcb5fa8154431ac25619fecab70afd [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)
Benjamin Kramer5ff90ed2009-09-17 14:51:57 +000047 : SubclassID(scid), HasValueHandle(0), HasMetadata(0),
48 SubclassOptionalData(0), 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() {
Devang Pateld5497a4b2009-09-16 18:09:00 +000063 if (HasMetadata) {
64 LLVMContext &Context = getContext();
65 Context.pImpl->TheMetadata.ValueIsDeleted(this);
66 }
Daniel Dunbar6058b512009-09-20 04:03:34 +000067
Chris Lattner90234f32009-03-31 22:11:05 +000068 // Notify all ValueHandles (if present) that this value is going away.
69 if (HasValueHandle)
70 ValueHandleBase::ValueIsDeleted(this);
Daniel Dunbar6058b512009-09-20 04:03:34 +000071
Chris Lattner2f7c9632001-06-06 20:29:01 +000072#ifndef NDEBUG // Only in -g mode...
Chris Lattner874ddad2001-06-11 15:04:40 +000073 // Check to make sure that there are no uses of this value that are still
74 // around when the value is destroyed. If there are, then we have a dangling
75 // reference and something is wrong. This code is here to print out what is
Misha Brukmanb1c93172005-04-21 23:48:37 +000076 // still being referenced. The value in question should be printed as
Chris Lattner874ddad2001-06-11 15:04:40 +000077 // a <badref>
78 //
Gordon Henriksen14a55692007-12-10 02:14:30 +000079 if (!use_empty()) {
Daniel Dunbarb99eac82009-07-24 10:05:20 +000080 errs() << "While deleting: " << *VTy << " %" << getNameStr() << "\n";
Gordon Henriksen14a55692007-12-10 02:14:30 +000081 for (use_iterator I = use_begin(), E = use_end(); I != E; ++I)
Daniel Dunbarb99eac82009-07-24 10:05:20 +000082 errs() << "Use still stuck around after Def is destroyed:"
Bill Wendling6a462f12006-11-17 08:03:48 +000083 << **I << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +000084 }
85#endif
Gordon Henriksen14a55692007-12-10 02:14:30 +000086 assert(use_empty() && "Uses remain when a value is destroyed!");
Chris Lattner694285c2009-08-04 23:07:12 +000087
88 // If this value is named, destroy the name. This should not be in a symtab
89 // at this point.
90 if (Name)
91 Name->Destroy();
Daniel Dunbar6058b512009-09-20 04:03:34 +000092
Chris Lattner694285c2009-08-04 23:07:12 +000093 // There should be no uses of this object anymore, remove it.
94 LeakDetector::removeGarbageObject(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +000095}
96
Chris Lattner4947e672005-02-01 01:24:21 +000097/// hasNUses - Return true if this Value has exactly N users.
98///
99bool Value::hasNUses(unsigned N) const {
100 use_const_iterator UI = use_begin(), E = use_end();
101
102 for (; N; --N, ++UI)
103 if (UI == E) return false; // Too few.
104 return UI == E;
105}
106
Chris Lattnerd36552f2005-02-23 16:51:11 +0000107/// hasNUsesOrMore - Return true if this value has N users or more. This is
108/// logically equivalent to getNumUses() >= N.
109///
110bool Value::hasNUsesOrMore(unsigned N) const {
111 use_const_iterator UI = use_begin(), E = use_end();
112
113 for (; N; --N, ++UI)
114 if (UI == E) return false; // Too few.
115
116 return true;
117}
118
Evan Cheng89553cc2008-06-12 21:15:59 +0000119/// isUsedInBasicBlock - Return true if this value is used in the specified
120/// basic block.
Bill Wendling0c374212008-09-25 22:42:01 +0000121bool Value::isUsedInBasicBlock(const BasicBlock *BB) const {
Evan Cheng89553cc2008-06-12 21:15:59 +0000122 for (use_const_iterator I = use_begin(), E = use_end(); I != E; ++I) {
123 const Instruction *User = dyn_cast<Instruction>(*I);
124 if (User && User->getParent() == BB)
125 return true;
126 }
127 return false;
128}
129
Chris Lattnerd36552f2005-02-23 16:51:11 +0000130
Chris Lattner4947e672005-02-01 01:24:21 +0000131/// getNumUses - This method computes the number of uses of this Value. This
132/// is a linear time operation. Use hasOneUse or hasNUses to check for specific
133/// values.
134unsigned Value::getNumUses() const {
135 return (unsigned)std::distance(use_begin(), use_end());
136}
137
Chris Lattnerb6250822007-02-11 00:37:27 +0000138static bool getSymTab(Value *V, ValueSymbolTable *&ST) {
Chris Lattner569c8ac2007-02-11 19:12:18 +0000139 ST = 0;
Chris Lattnerb6250822007-02-11 00:37:27 +0000140 if (Instruction *I = dyn_cast<Instruction>(V)) {
141 if (BasicBlock *P = I->getParent())
142 if (Function *PP = P->getParent())
143 ST = &PP->getValueSymbolTable();
144 } else if (BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
Daniel Dunbar6058b512009-09-20 04:03:34 +0000145 if (Function *P = BB->getParent())
Chris Lattnerb6250822007-02-11 00:37:27 +0000146 ST = &P->getValueSymbolTable();
147 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
Daniel Dunbar6058b512009-09-20 04:03:34 +0000148 if (Module *P = GV->getParent())
Chris Lattnerb6250822007-02-11 00:37:27 +0000149 ST = &P->getValueSymbolTable();
150 } else if (Argument *A = dyn_cast<Argument>(V)) {
Daniel Dunbar6058b512009-09-20 04:03:34 +0000151 if (Function *P = A->getParent())
Chris Lattnerb6250822007-02-11 00:37:27 +0000152 ST = &P->getValueSymbolTable();
Devang Patel18dfdc92009-07-29 17:16:17 +0000153 } else if (NamedMDNode *N = dyn_cast<NamedMDNode>(V)) {
154 if (Module *P = N->getParent()) {
155 ST = &P->getValueSymbolTable();
156 }
Devang Patel7428d8a2009-07-22 17:43:22 +0000157 } else if (isa<MDString>(V))
158 return true;
159 else {
Chris Lattnerb6250822007-02-11 00:37:27 +0000160 assert(isa<Constant>(V) && "Unknown value type!");
161 return true; // no name is setable for this.
162 }
163 return false;
164}
Chris Lattner2c6abea2002-10-09 23:12:59 +0000165
Daniel Dunbar32285942009-07-26 00:51:56 +0000166StringRef Value::getName() const {
Daniel Dunbar7cc8f7e2009-07-26 09:22:02 +0000167 // Make sure the empty string is still a C string. For historical reasons,
168 // some clients want to call .data() on the result and expect it to be null
169 // terminated.
170 if (!Name) return StringRef("", 0);
Daniel Dunbar32285942009-07-26 00:51:56 +0000171 return Name->getKey();
Chris Lattner5109a882007-08-10 15:34:35 +0000172}
173
Chris Lattnerfd27ed92007-02-15 18:53:54 +0000174std::string Value::getNameStr() const {
Daniel Dunbar987ec562009-07-26 00:17:14 +0000175 return getName().str();
Chris Lattner32ab6432007-02-12 05:18:08 +0000176}
Chris Lattnercdb9bfc2005-03-05 19:51:50 +0000177
Daniel Dunbard786b512009-07-26 00:34:27 +0000178void Value::setName(const Twine &NewName) {
Daniel Dunbarcb13b482009-08-19 23:37:23 +0000179 // Fast path for common IRBuilder case of setName("") when there is no name.
180 if (NewName.isTriviallyEmpty() && !hasName())
181 return;
182
Daniel Dunbaracf0b252009-08-19 05:08:06 +0000183 SmallString<256> NameData;
Daniel Dunbard786b512009-07-26 00:34:27 +0000184 NewName.toVector(NameData);
Chris Lattner1a5de582007-02-12 18:52:59 +0000185
Daniel Dunbard786b512009-07-26 00:34:27 +0000186 const char *NameStr = NameData.data();
187 unsigned NameLen = NameData.size();
188
Daniel Dunbara32c9992009-07-26 00:42:33 +0000189 // Name isn't changing?
190 if (getName() == StringRef(NameStr, NameLen))
191 return;
192
Owen Anderson55f1c092009-08-13 21:58:54 +0000193 assert(getType() != Type::getVoidTy(getContext()) &&
194 "Cannot assign a name to void values!");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000195
Chris Lattnerffb37782005-03-06 02:14:28 +0000196 // Get the symbol table to update for this object.
Chris Lattnerb6250822007-02-11 00:37:27 +0000197 ValueSymbolTable *ST;
198 if (getSymTab(this, ST))
199 return; // Cannot set a name on this value (e.g. constant).
Chris Lattnercdb9bfc2005-03-05 19:51:50 +0000200
Chris Lattner32ab6432007-02-12 05:18:08 +0000201 if (!ST) { // No symbol table to update? Just do the change.
Chris Lattner1a5de582007-02-12 18:52:59 +0000202 if (NameLen == 0) {
Chris Lattner32ab6432007-02-12 05:18:08 +0000203 // Free the name for this value.
204 Name->Destroy();
205 Name = 0;
Chris Lattner1a5de582007-02-12 18:52:59 +0000206 return;
Chris Lattnerffb37782005-03-06 02:14:28 +0000207 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000208
Daniel Dunbara32c9992009-07-26 00:42:33 +0000209 if (Name)
Chris Lattner1a5de582007-02-12 18:52:59 +0000210 Name->Destroy();
Daniel Dunbar6058b512009-09-20 04:03:34 +0000211
Chris Lattner1a5de582007-02-12 18:52:59 +0000212 // NOTE: Could optimize for the case the name is shrinking to not deallocate
213 // then reallocated.
Daniel Dunbar6058b512009-09-20 04:03:34 +0000214
Chris Lattner1a5de582007-02-12 18:52:59 +0000215 // Create the new name.
216 Name = ValueName::Create(NameStr, NameStr+NameLen);
217 Name->setValue(this);
Chris Lattner32ab6432007-02-12 05:18:08 +0000218 return;
Chris Lattnerffb37782005-03-06 02:14:28 +0000219 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000220
Chris Lattner32ab6432007-02-12 05:18:08 +0000221 // NOTE: Could optimize for the case the name is shrinking to not deallocate
222 // then reallocated.
223 if (hasName()) {
Chris Lattner32ab6432007-02-12 05:18:08 +0000224 // Remove old name.
225 ST->removeValueName(Name);
226 Name->Destroy();
227 Name = 0;
228
Chris Lattner1a5de582007-02-12 18:52:59 +0000229 if (NameLen == 0)
230 return;
Chris Lattner32ab6432007-02-12 05:18:08 +0000231 }
232
233 // Name is changing to something new.
Daniel Dunbarf01154c2009-07-23 18:50:53 +0000234 Name = ST->createValueName(StringRef(NameStr, NameLen), this);
Chris Lattnercdb9bfc2005-03-05 19:51:50 +0000235}
236
Chris Lattner1a5de582007-02-12 18:52:59 +0000237
Chris Lattnerb6250822007-02-11 00:37:27 +0000238/// takeName - transfer the name from V to this value, setting V's name to
Daniel Dunbar6058b512009-09-20 04:03:34 +0000239/// empty. It is an error to call V->takeName(V).
Chris Lattnerb6250822007-02-11 00:37:27 +0000240void Value::takeName(Value *V) {
Chris Lattnercf835ff2007-02-15 20:01:43 +0000241 ValueSymbolTable *ST = 0;
242 // If this value has a name, drop it.
243 if (hasName()) {
244 // Get the symtab this is in.
245 if (getSymTab(this, ST)) {
246 // We can't set a name on this value, but we need to clear V's name if
247 // it has one.
Daniel Dunbard786b512009-07-26 00:34:27 +0000248 if (V->hasName()) V->setName("");
Chris Lattnercf835ff2007-02-15 20:01:43 +0000249 return; // Cannot set a name on this value (e.g. constant).
250 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000251
Chris Lattnercf835ff2007-02-15 20:01:43 +0000252 // Remove old name.
253 if (ST)
254 ST->removeValueName(Name);
255 Name->Destroy();
256 Name = 0;
Daniel Dunbar6058b512009-09-20 04:03:34 +0000257 }
258
Chris Lattnercf835ff2007-02-15 20:01:43 +0000259 // Now we know that this has no name.
Daniel Dunbar6058b512009-09-20 04:03:34 +0000260
Chris Lattnercf835ff2007-02-15 20:01:43 +0000261 // If V has no name either, we're done.
262 if (!V->hasName()) return;
Daniel Dunbar6058b512009-09-20 04:03:34 +0000263
Chris Lattnercf835ff2007-02-15 20:01:43 +0000264 // Get this's symtab if we didn't before.
265 if (!ST) {
266 if (getSymTab(this, ST)) {
267 // Clear V's name.
Daniel Dunbard786b512009-07-26 00:34:27 +0000268 V->setName("");
Chris Lattnercf835ff2007-02-15 20:01:43 +0000269 return; // Cannot set a name on this value (e.g. constant).
270 }
271 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000272
Chris Lattnercf835ff2007-02-15 20:01:43 +0000273 // Get V's ST, this should always succed, because V has a name.
274 ValueSymbolTable *VST;
275 bool Failure = getSymTab(V, VST);
Chris Lattner106b0462008-06-21 19:47:03 +0000276 assert(!Failure && "V has a name, so it should have a ST!"); Failure=Failure;
Daniel Dunbar6058b512009-09-20 04:03:34 +0000277
Chris Lattnercf835ff2007-02-15 20:01:43 +0000278 // If these values are both in the same symtab, we can do this very fast.
279 // This works even if both values have no symtab yet.
280 if (ST == VST) {
281 // Take the name!
282 Name = V->Name;
283 V->Name = 0;
284 Name->setValue(this);
Chris Lattnercba18e32007-02-11 01:04:09 +0000285 return;
286 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000287
Chris Lattnercf835ff2007-02-15 20:01:43 +0000288 // Otherwise, things are slightly more complex. Remove V's name from VST and
289 // then reinsert it into ST.
Daniel Dunbar6058b512009-09-20 04:03:34 +0000290
Chris Lattnercf835ff2007-02-15 20:01:43 +0000291 if (VST)
292 VST->removeValueName(V->Name);
293 Name = V->Name;
294 V->Name = 0;
295 Name->setValue(this);
Daniel Dunbar6058b512009-09-20 04:03:34 +0000296
Chris Lattnercf835ff2007-02-15 20:01:43 +0000297 if (ST)
298 ST->reinsertValue(this);
Chris Lattnerb6250822007-02-11 00:37:27 +0000299}
300
301
Chris Lattner9f158122003-08-29 05:09:37 +0000302// uncheckedReplaceAllUsesWith - This is exactly the same as replaceAllUsesWith,
303// except that it doesn't have all of the asserts. The asserts fail because we
304// are half-way done resolving types, which causes some types to exist as two
305// different Type*'s at the same time. This is a sledgehammer to work around
306// this problem.
307//
308void Value::uncheckedReplaceAllUsesWith(Value *New) {
Chris Lattner90234f32009-03-31 22:11:05 +0000309 // Notify all ValueHandles (if present) that this value is going away.
310 if (HasValueHandle)
311 ValueHandleBase::ValueIsRAUWd(this, New);
Devang Patele6f26a72009-10-13 17:00:54 +0000312 if (HasMetadata) {
313 LLVMContext &Context = getContext();
314 Context.pImpl->TheMetadata.ValueIsRAUWd(this, New);
315 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000316
Chris Lattner4947e672005-02-01 01:24:21 +0000317 while (!use_empty()) {
Gabor Greif715b9d22008-09-19 15:13:20 +0000318 Use &U = *UseList;
Chris Lattner9f158122003-08-29 05:09:37 +0000319 // Must handle Constants specially, we cannot call replaceUsesOfWith on a
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000320 // constant because they are uniqued.
Chris Lattner079edeb2003-10-16 16:53:07 +0000321 if (Constant *C = dyn_cast<Constant>(U.getUser())) {
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000322 if (!isa<GlobalValue>(C)) {
Chris Lattner7a1450d2005-10-04 18:13:04 +0000323 C->replaceUsesOfWithOnConstant(this, New, &U);
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000324 continue;
325 }
Chris Lattner9f158122003-08-29 05:09:37 +0000326 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000327
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000328 U.set(New);
Chris Lattner9f158122003-08-29 05:09:37 +0000329 }
330}
331
Chris Lattner079edeb2003-10-16 16:53:07 +0000332void Value::replaceAllUsesWith(Value *New) {
333 assert(New && "Value::replaceAllUsesWith(<null>) is invalid!");
334 assert(New != this && "this->replaceAllUsesWith(this) is NOT valid!");
335 assert(New->getType() == getType() &&
336 "replaceAllUses of value with new value of different type!");
Chris Lattner9f158122003-08-29 05:09:37 +0000337
Chris Lattner079edeb2003-10-16 16:53:07 +0000338 uncheckedReplaceAllUsesWith(New);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000339}
340
Anton Korobeynikovfc2edad2008-05-07 22:54:15 +0000341Value *Value::stripPointerCasts() {
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000342 if (!isa<PointerType>(getType()))
343 return this;
Duncan Sandse59fa782008-12-29 21:06:19 +0000344 Value *V = this;
345 do {
Dan Gohmane1019db2009-07-17 23:55:56 +0000346 if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
Duncan Sandse59fa782008-12-29 21:06:19 +0000347 if (!GEP->hasAllZeroIndices())
348 return V;
Dan Gohmane1019db2009-07-17 23:55:56 +0000349 V = GEP->getPointerOperand();
350 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
351 V = cast<Operator>(V)->getOperand(0);
Dan Gohman4ce5ade2009-08-27 17:55:13 +0000352 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) {
353 if (GA->mayBeOverridden())
354 return V;
355 V = GA->getAliasee();
Duncan Sandse59fa782008-12-29 21:06:19 +0000356 } else {
357 return V;
Anton Korobeynikovfc2edad2008-05-07 22:54:15 +0000358 }
Duncan Sandse59fa782008-12-29 21:06:19 +0000359 assert(isa<PointerType>(V->getType()) && "Unexpected operand type!");
360 } while (1);
Anton Korobeynikovfc2edad2008-05-07 22:54:15 +0000361}
362
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000363Value *Value::getUnderlyingObject() {
364 if (!isa<PointerType>(getType()))
365 return this;
Duncan Sandse59fa782008-12-29 21:06:19 +0000366 Value *V = this;
Nick Lewycky4a7bcf62009-04-15 06:23:41 +0000367 unsigned MaxLookup = 6;
Duncan Sandse59fa782008-12-29 21:06:19 +0000368 do {
Dan Gohmane1019db2009-07-17 23:55:56 +0000369 if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
Dan Gohmane1019db2009-07-17 23:55:56 +0000370 V = GEP->getPointerOperand();
371 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
372 V = cast<Operator>(V)->getOperand(0);
Dan Gohman4ce5ade2009-08-27 17:55:13 +0000373 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) {
374 if (GA->mayBeOverridden())
375 return V;
376 V = GA->getAliasee();
Duncan Sandse59fa782008-12-29 21:06:19 +0000377 } else {
378 return V;
379 }
380 assert(isa<PointerType>(V->getType()) && "Unexpected operand type!");
Nick Lewycky4a7bcf62009-04-15 06:23:41 +0000381 } while (--MaxLookup);
382 return V;
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000383}
384
Chris Lattner027d7262008-12-02 18:33:11 +0000385/// DoPHITranslation - If this value is a PHI node with CurBB as its parent,
Chris Lattner9c1b5022008-12-02 07:16:45 +0000386/// return the value in the PHI node corresponding to PredBB. If not, return
387/// ourself. This is useful if you want to know the value something has in a
388/// predecessor block.
Daniel Dunbar6058b512009-09-20 04:03:34 +0000389Value *Value::DoPHITranslation(const BasicBlock *CurBB,
Chris Lattner9c1b5022008-12-02 07:16:45 +0000390 const BasicBlock *PredBB) {
391 PHINode *PN = dyn_cast<PHINode>(this);
392 if (PN && PN->getParent() == CurBB)
393 return PN->getIncomingValueForBlock(PredBB);
394 return this;
395}
396
Owen Anderson47db9412009-07-22 00:24:57 +0000397LLVMContext &Value::getContext() const { return VTy->getContext(); }
398
Chris Lattner90234f32009-03-31 22:11:05 +0000399//===----------------------------------------------------------------------===//
400// ValueHandleBase Class
401//===----------------------------------------------------------------------===//
402
Dan Gohman3f025952009-05-04 17:25:21 +0000403/// AddToExistingUseList - Add this ValueHandle to the use list for VP, where
404/// List is known to point into the existing use list.
Chris Lattner90234f32009-03-31 22:11:05 +0000405void ValueHandleBase::AddToExistingUseList(ValueHandleBase **List) {
406 assert(List && "Handle list is null?");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000407
Chris Lattner90234f32009-03-31 22:11:05 +0000408 // Splice ourselves into the list.
409 Next = *List;
410 *List = this;
411 setPrevPtr(List);
412 if (Next) {
413 Next->setPrevPtr(&Next);
414 assert(VP == Next->VP && "Added to wrong list?");
415 }
416}
417
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000418void ValueHandleBase::AddToExistingUseListAfter(ValueHandleBase *List) {
419 assert(List && "Must insert after existing node");
420
421 Next = List->Next;
422 setPrevPtr(&List->Next);
423 List->Next = this;
424 if (Next)
425 Next->setPrevPtr(&Next);
426}
427
Chris Lattner90234f32009-03-31 22:11:05 +0000428/// AddToUseList - Add this ValueHandle to the use list for VP.
429void ValueHandleBase::AddToUseList() {
430 assert(VP && "Null pointer doesn't have a use list!");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000431
Owen Andersone8f21852009-08-18 18:28:58 +0000432 LLVMContextImpl *pImpl = VP->getContext().pImpl;
Daniel Dunbar6058b512009-09-20 04:03:34 +0000433
Chris Lattner90234f32009-03-31 22:11:05 +0000434 if (VP->HasValueHandle) {
435 // If this value already has a ValueHandle, then it must be in the
436 // ValueHandles map already.
Owen Andersone8f21852009-08-18 18:28:58 +0000437 ValueHandleBase *&Entry = pImpl->ValueHandles[VP];
Chris Lattner90234f32009-03-31 22:11:05 +0000438 assert(Entry != 0 && "Value doesn't have any handles?");
Owen Anderson4b660a82009-06-17 17:36:57 +0000439 AddToExistingUseList(&Entry);
Owen Anderson4b660a82009-06-17 17:36:57 +0000440 return;
Chris Lattner90234f32009-03-31 22:11:05 +0000441 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000442
Chris Lattner90234f32009-03-31 22:11:05 +0000443 // Ok, it doesn't have any handles yet, so we must insert it into the
444 // DenseMap. However, doing this insertion could cause the DenseMap to
445 // reallocate itself, which would invalidate all of the PrevP pointers that
446 // point into the old table. Handle this by checking for reallocation and
447 // updating the stale pointers only if needed.
Owen Andersone8f21852009-08-18 18:28:58 +0000448 DenseMap<Value*, ValueHandleBase*> &Handles = pImpl->ValueHandles;
Chris Lattner90234f32009-03-31 22:11:05 +0000449 const void *OldBucketPtr = Handles.getPointerIntoBucketsArray();
Daniel Dunbar6058b512009-09-20 04:03:34 +0000450
Chris Lattner90234f32009-03-31 22:11:05 +0000451 ValueHandleBase *&Entry = Handles[VP];
452 assert(Entry == 0 && "Value really did already have handles?");
453 AddToExistingUseList(&Entry);
Dan Gohman3f025952009-05-04 17:25:21 +0000454 VP->HasValueHandle = true;
Daniel Dunbar6058b512009-09-20 04:03:34 +0000455
Chris Lattner90234f32009-03-31 22:11:05 +0000456 // If reallocation didn't happen or if this was the first insertion, don't
457 // walk the table.
Daniel Dunbar6058b512009-09-20 04:03:34 +0000458 if (Handles.isPointerIntoBucketsArray(OldBucketPtr) ||
Owen Anderson4b660a82009-06-17 17:36:57 +0000459 Handles.size() == 1) {
Chris Lattner90234f32009-03-31 22:11:05 +0000460 return;
Owen Anderson4b660a82009-06-17 17:36:57 +0000461 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000462
Chris Lattner90234f32009-03-31 22:11:05 +0000463 // Okay, reallocation did happen. Fix the Prev Pointers.
Owen Andersone8f21852009-08-18 18:28:58 +0000464 for (DenseMap<Value*, ValueHandleBase*>::iterator I = Handles.begin(),
465 E = Handles.end(); I != E; ++I) {
Chris Lattner90234f32009-03-31 22:11:05 +0000466 assert(I->second && I->first == I->second->VP && "List invariant broken!");
467 I->second->setPrevPtr(&I->second);
468 }
469}
470
471/// RemoveFromUseList - Remove this ValueHandle from its current use list.
472void ValueHandleBase::RemoveFromUseList() {
473 assert(VP && VP->HasValueHandle && "Pointer doesn't have a use list!");
474
475 // Unlink this from its use list.
476 ValueHandleBase **PrevPtr = getPrevPtr();
477 assert(*PrevPtr == this && "List invariant broken");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000478
Chris Lattner90234f32009-03-31 22:11:05 +0000479 *PrevPtr = Next;
480 if (Next) {
481 assert(Next->getPrevPtr() == &Next && "List invariant broken");
482 Next->setPrevPtr(PrevPtr);
483 return;
484 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000485
Chris Lattner90234f32009-03-31 22:11:05 +0000486 // If the Next pointer was null, then it is possible that this was the last
487 // ValueHandle watching VP. If so, delete its entry from the ValueHandles
488 // map.
Owen Andersone8f21852009-08-18 18:28:58 +0000489 LLVMContextImpl *pImpl = VP->getContext().pImpl;
490 DenseMap<Value*, ValueHandleBase*> &Handles = pImpl->ValueHandles;
Chris Lattner90234f32009-03-31 22:11:05 +0000491 if (Handles.isPointerIntoBucketsArray(PrevPtr)) {
492 Handles.erase(VP);
493 VP->HasValueHandle = false;
494 }
495}
496
497
498void ValueHandleBase::ValueIsDeleted(Value *V) {
499 assert(V->HasValueHandle && "Should only be called if ValueHandles present");
500
501 // Get the linked list base, which is guaranteed to exist since the
502 // HasValueHandle flag is set.
Owen Andersone8f21852009-08-18 18:28:58 +0000503 LLVMContextImpl *pImpl = V->getContext().pImpl;
504 ValueHandleBase *Entry = pImpl->ValueHandles[V];
Chris Lattner90234f32009-03-31 22:11:05 +0000505 assert(Entry && "Value bit set but no entries exist");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000506
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000507 // We use a local ValueHandleBase as an iterator so that
508 // ValueHandles can add and remove themselves from the list without
509 // breaking our iteration. This is not really an AssertingVH; we
510 // just have to give ValueHandleBase some kind.
511 for (ValueHandleBase Iterator(Assert, *Entry); Entry; Entry = Iterator.Next) {
512 Iterator.RemoveFromUseList();
513 Iterator.AddToExistingUseListAfter(Entry);
514 assert(Entry->Next == &Iterator && "Loop invariant broken.");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000515
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000516 switch (Entry->getKind()) {
Chris Lattner90234f32009-03-31 22:11:05 +0000517 case Assert:
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000518 break;
Daniel Dunbar70d4fb02009-09-22 02:02:33 +0000519 case Tracking:
520 // Mark that this value has been deleted by setting it to an invalid Value
521 // pointer.
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000522 Entry->operator=(DenseMapInfo<Value *>::getTombstoneKey());
Daniel Dunbar70d4fb02009-09-22 02:02:33 +0000523 break;
Chris Lattner90234f32009-03-31 22:11:05 +0000524 case Weak:
525 // Weak just goes to null, which will unlink it from the list.
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000526 Entry->operator=(0);
Chris Lattner90234f32009-03-31 22:11:05 +0000527 break;
528 case Callback:
Dan Gohman745ad442009-05-02 21:10:48 +0000529 // Forward to the subclass's implementation.
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000530 static_cast<CallbackVH*>(Entry)->deleted();
Dan Gohman745ad442009-05-02 21:10:48 +0000531 break;
Chris Lattner90234f32009-03-31 22:11:05 +0000532 }
533 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000534
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000535 // All callbacks, weak references, and assertingVHs should be dropped by now.
536 if (V->HasValueHandle) {
537#ifndef NDEBUG // Only in +Asserts mode...
538 errs() << "While deleting: " << *V->getType() << " %" << V->getNameStr()
539 << "\n";
540 if (pImpl->ValueHandles[V]->getKind() == Assert)
541 llvm_unreachable("An asserting value handle still pointed to this"
542 " value!");
543
544#endif
545 llvm_unreachable("All references to V were not removed?");
546 }
Chris Lattner90234f32009-03-31 22:11:05 +0000547}
548
549
550void ValueHandleBase::ValueIsRAUWd(Value *Old, Value *New) {
551 assert(Old->HasValueHandle &&"Should only be called if ValueHandles present");
552 assert(Old != New && "Changing value into itself!");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000553
Chris Lattner90234f32009-03-31 22:11:05 +0000554 // Get the linked list base, which is guaranteed to exist since the
555 // HasValueHandle flag is set.
Owen Andersone8f21852009-08-18 18:28:58 +0000556 LLVMContextImpl *pImpl = Old->getContext().pImpl;
557 ValueHandleBase *Entry = pImpl->ValueHandles[Old];
558
Chris Lattner90234f32009-03-31 22:11:05 +0000559 assert(Entry && "Value bit set but no entries exist");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000560
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000561 // We use a local ValueHandleBase as an iterator so that
562 // ValueHandles can add and remove themselves from the list without
563 // breaking our iteration. This is not really an AssertingVH; we
564 // just have to give ValueHandleBase some kind.
565 for (ValueHandleBase Iterator(Assert, *Entry); Entry; Entry = Iterator.Next) {
566 Iterator.RemoveFromUseList();
567 Iterator.AddToExistingUseListAfter(Entry);
568 assert(Entry->Next == &Iterator && "Loop invariant broken.");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000569
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000570 switch (Entry->getKind()) {
Chris Lattner90234f32009-03-31 22:11:05 +0000571 case Assert:
572 // Asserting handle does not follow RAUW implicitly.
573 break;
Daniel Dunbar70d4fb02009-09-22 02:02:33 +0000574 case Tracking:
575 // Tracking goes to new value like a WeakVH. Note that this may make it
576 // something incompatible with its templated type. We don't want to have a
577 // virtual (or inline) interface to handle this though, so instead we make
Daniel Dunbar86707c92009-09-22 10:30:34 +0000578 // the TrackingVH accessors guarantee that a client never sees this value.
Daniel Dunbar70d4fb02009-09-22 02:02:33 +0000579
580 // FALLTHROUGH
Chris Lattner90234f32009-03-31 22:11:05 +0000581 case Weak:
582 // Weak goes to the new value, which will unlink it from Old's list.
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000583 Entry->operator=(New);
Chris Lattner90234f32009-03-31 22:11:05 +0000584 break;
585 case Callback:
Dan Gohman745ad442009-05-02 21:10:48 +0000586 // Forward to the subclass's implementation.
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000587 static_cast<CallbackVH*>(Entry)->allUsesReplacedWith(New);
Dan Gohman745ad442009-05-02 21:10:48 +0000588 break;
Chris Lattner90234f32009-03-31 22:11:05 +0000589 }
590 }
591}
592
Dan Gohman745ad442009-05-02 21:10:48 +0000593/// ~CallbackVH. Empty, but defined here to avoid emitting the vtable
594/// more than once.
595CallbackVH::~CallbackVH() {}
596
Chris Lattner9c1b5022008-12-02 07:16:45 +0000597
Chris Lattner2f7c9632001-06-06 20:29:01 +0000598//===----------------------------------------------------------------------===//
599// User Class
600//===----------------------------------------------------------------------===//
601
Chris Lattner2f7c9632001-06-06 20:29:01 +0000602// replaceUsesOfWith - Replaces all references to the "From" definition with
603// references to the "To" definition.
604//
605void User::replaceUsesOfWith(Value *From, Value *To) {
606 if (From == To) return; // Duh what?
607
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000608 assert((!isa<Constant>(this) || isa<GlobalValue>(this)) &&
Dan Gohman5211b012009-08-11 15:53:15 +0000609 "Cannot call User::replaceUsesOfWith on a constant!");
Chris Lattner2c6abea2002-10-09 23:12:59 +0000610
Chris Lattnera073acb2001-07-07 08:36:50 +0000611 for (unsigned i = 0, E = getNumOperands(); i != E; ++i)
612 if (getOperand(i) == From) { // Is This operand is pointing to oldval?
Chris Lattner2f7c9632001-06-06 20:29:01 +0000613 // The side effects of this setOperand call include linking to
614 // "To", adding "this" to the uses list of To, and
615 // most importantly, removing "this" from the use list of "From".
Chris Lattnera073acb2001-07-07 08:36:50 +0000616 setOperand(i, To); // Fix it now...
Chris Lattner2f7c9632001-06-06 20:29:01 +0000617 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000618}