blob: d5e39979608d1f431412d5cdff30783810b5bb87 [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"
Reid Spencer3aaaa0b2007-02-05 20:47:22 +000022#include "llvm/ValueSymbolTable.h"
Daniel Dunbar4975db62009-07-25 04:41:11 +000023#include "llvm/ADT/SmallString.h"
Bill Wendling6a462f12006-11-17 08:03:48 +000024#include "llvm/Support/Debug.h"
Dan Gohmana826a882010-11-11 21:23:25 +000025#include "llvm/Support/GetElementPtrTypeIterator.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))
Benjamin Kramerccce8ba2010-01-05 13:12:22 +000048 assert((VTy->isFirstClassType() || VTy->isVoidTy() ||
Duncan Sandscbd43f82010-02-16 14:50:09 +000049 ty->isOpaqueTy() || VTy->isStructTy()) &&
Devang Patel1f00b532008-02-21 01:54:02 +000050 "invalid CallInst type!");
51 else if (!isa<Constant>(this) && !isa<BasicBlock>(this))
Benjamin Kramerccce8ba2010-01-05 13:12:22 +000052 assert((VTy->isFirstClassType() || VTy->isVoidTy() ||
Duncan Sandscbd43f82010-02-16 14:50:09 +000053 ty->isOpaqueTy()) &&
Chris Lattnerbea72472004-07-06 17:44:17 +000054 "Cannot create non-first-class values except for constants!");
Chris Lattner2f7c9632001-06-06 20:29:01 +000055}
56
Gordon Henriksen14a55692007-12-10 02:14:30 +000057Value::~Value() {
Chris Lattner90234f32009-03-31 22:11:05 +000058 // Notify all ValueHandles (if present) that this value is going away.
59 if (HasValueHandle)
60 ValueHandleBase::ValueIsDeleted(this);
Daniel Dunbar6058b512009-09-20 04:03:34 +000061
Chris Lattner2f7c9632001-06-06 20:29:01 +000062#ifndef NDEBUG // Only in -g mode...
Chris Lattner874ddad2001-06-11 15:04:40 +000063 // Check to make sure that there are no uses of this value that are still
64 // around when the value is destroyed. If there are, then we have a dangling
65 // reference and something is wrong. This code is here to print out what is
Misha Brukmanb1c93172005-04-21 23:48:37 +000066 // still being referenced. The value in question should be printed as
Chris Lattner874ddad2001-06-11 15:04:40 +000067 // a <badref>
68 //
Gordon Henriksen14a55692007-12-10 02:14:30 +000069 if (!use_empty()) {
David Greene3f907a92010-01-05 01:30:09 +000070 dbgs() << "While deleting: " << *VTy << " %" << getNameStr() << "\n";
Gordon Henriksen14a55692007-12-10 02:14:30 +000071 for (use_iterator I = use_begin(), E = use_end(); I != E; ++I)
David Greene3f907a92010-01-05 01:30:09 +000072 dbgs() << "Use still stuck around after Def is destroyed:"
Bill Wendling6a462f12006-11-17 08:03:48 +000073 << **I << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +000074 }
75#endif
Gordon Henriksen14a55692007-12-10 02:14:30 +000076 assert(use_empty() && "Uses remain when a value is destroyed!");
Chris Lattner694285c2009-08-04 23:07:12 +000077
78 // If this value is named, destroy the name. This should not be in a symtab
79 // at this point.
80 if (Name)
81 Name->Destroy();
Daniel Dunbar6058b512009-09-20 04:03:34 +000082
Chris Lattner694285c2009-08-04 23:07:12 +000083 // There should be no uses of this object anymore, remove it.
84 LeakDetector::removeGarbageObject(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +000085}
86
Chris Lattner4947e672005-02-01 01:24:21 +000087/// hasNUses - Return true if this Value has exactly N users.
88///
89bool Value::hasNUses(unsigned N) const {
Gabor Greifc78d7202010-03-25 23:06:16 +000090 const_use_iterator UI = use_begin(), E = use_end();
Chris Lattner4947e672005-02-01 01:24:21 +000091
92 for (; N; --N, ++UI)
93 if (UI == E) return false; // Too few.
94 return UI == E;
95}
96
Chris Lattnerd36552f2005-02-23 16:51:11 +000097/// hasNUsesOrMore - Return true if this value has N users or more. This is
98/// logically equivalent to getNumUses() >= N.
99///
100bool Value::hasNUsesOrMore(unsigned N) const {
Gabor Greifc78d7202010-03-25 23:06:16 +0000101 const_use_iterator UI = use_begin(), E = use_end();
Chris Lattnerd36552f2005-02-23 16:51:11 +0000102
103 for (; N; --N, ++UI)
104 if (UI == E) return false; // Too few.
105
106 return true;
107}
108
Evan Cheng89553cc2008-06-12 21:15:59 +0000109/// isUsedInBasicBlock - Return true if this value is used in the specified
110/// basic block.
Bill Wendling0c374212008-09-25 22:42:01 +0000111bool Value::isUsedInBasicBlock(const BasicBlock *BB) const {
Gabor Greifc78d7202010-03-25 23:06:16 +0000112 for (const_use_iterator I = use_begin(), E = use_end(); I != E; ++I) {
Evan Cheng89553cc2008-06-12 21:15:59 +0000113 const Instruction *User = dyn_cast<Instruction>(*I);
114 if (User && User->getParent() == BB)
115 return true;
116 }
117 return false;
118}
119
Chris Lattnerd36552f2005-02-23 16:51:11 +0000120
Chris Lattner4947e672005-02-01 01:24:21 +0000121/// getNumUses - This method computes the number of uses of this Value. This
122/// is a linear time operation. Use hasOneUse or hasNUses to check for specific
123/// values.
124unsigned Value::getNumUses() const {
125 return (unsigned)std::distance(use_begin(), use_end());
126}
127
Chris Lattnerb6250822007-02-11 00:37:27 +0000128static bool getSymTab(Value *V, ValueSymbolTable *&ST) {
Chris Lattner569c8ac2007-02-11 19:12:18 +0000129 ST = 0;
Chris Lattnerb6250822007-02-11 00:37:27 +0000130 if (Instruction *I = dyn_cast<Instruction>(V)) {
131 if (BasicBlock *P = I->getParent())
132 if (Function *PP = P->getParent())
133 ST = &PP->getValueSymbolTable();
134 } else if (BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
Daniel Dunbar6058b512009-09-20 04:03:34 +0000135 if (Function *P = BB->getParent())
Chris Lattnerb6250822007-02-11 00:37:27 +0000136 ST = &P->getValueSymbolTable();
137 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
Daniel Dunbar6058b512009-09-20 04:03:34 +0000138 if (Module *P = GV->getParent())
Chris Lattnerb6250822007-02-11 00:37:27 +0000139 ST = &P->getValueSymbolTable();
140 } else if (Argument *A = dyn_cast<Argument>(V)) {
Daniel Dunbar6058b512009-09-20 04:03:34 +0000141 if (Function *P = A->getParent())
Chris Lattnerb6250822007-02-11 00:37:27 +0000142 ST = &P->getValueSymbolTable();
Devang Patel7428d8a2009-07-22 17:43:22 +0000143 } else if (isa<MDString>(V))
144 return true;
145 else {
Chris Lattnerb6250822007-02-11 00:37:27 +0000146 assert(isa<Constant>(V) && "Unknown value type!");
147 return true; // no name is setable for this.
148 }
149 return false;
150}
Chris Lattner2c6abea2002-10-09 23:12:59 +0000151
Daniel Dunbar32285942009-07-26 00:51:56 +0000152StringRef Value::getName() const {
Daniel Dunbar7cc8f7e2009-07-26 09:22:02 +0000153 // Make sure the empty string is still a C string. For historical reasons,
154 // some clients want to call .data() on the result and expect it to be null
155 // terminated.
156 if (!Name) return StringRef("", 0);
Daniel Dunbar32285942009-07-26 00:51:56 +0000157 return Name->getKey();
Chris Lattner5109a882007-08-10 15:34:35 +0000158}
159
Chris Lattnerfd27ed92007-02-15 18:53:54 +0000160std::string Value::getNameStr() const {
Daniel Dunbar987ec562009-07-26 00:17:14 +0000161 return getName().str();
Chris Lattner32ab6432007-02-12 05:18:08 +0000162}
Chris Lattnercdb9bfc2005-03-05 19:51:50 +0000163
Daniel Dunbard786b512009-07-26 00:34:27 +0000164void Value::setName(const Twine &NewName) {
Daniel Dunbarcb13b482009-08-19 23:37:23 +0000165 // Fast path for common IRBuilder case of setName("") when there is no name.
166 if (NewName.isTriviallyEmpty() && !hasName())
167 return;
168
Daniel Dunbaracf0b252009-08-19 05:08:06 +0000169 SmallString<256> NameData;
Benjamin Kramer2e06b932010-01-13 12:45:23 +0000170 StringRef NameRef = NewName.toStringRef(NameData);
Daniel Dunbard786b512009-07-26 00:34:27 +0000171
Daniel Dunbara32c9992009-07-26 00:42:33 +0000172 // Name isn't changing?
Benjamin Kramer2e06b932010-01-13 12:45:23 +0000173 if (getName() == NameRef)
Daniel Dunbara32c9992009-07-26 00:42:33 +0000174 return;
175
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000176 assert(!getType()->isVoidTy() && "Cannot assign a name to void values!");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000177
Chris Lattnerffb37782005-03-06 02:14:28 +0000178 // Get the symbol table to update for this object.
Chris Lattnerb6250822007-02-11 00:37:27 +0000179 ValueSymbolTable *ST;
180 if (getSymTab(this, ST))
181 return; // Cannot set a name on this value (e.g. constant).
Chris Lattnercdb9bfc2005-03-05 19:51:50 +0000182
Chris Lattner32ab6432007-02-12 05:18:08 +0000183 if (!ST) { // No symbol table to update? Just do the change.
Benjamin Kramer2e06b932010-01-13 12:45:23 +0000184 if (NameRef.empty()) {
Chris Lattner32ab6432007-02-12 05:18:08 +0000185 // Free the name for this value.
186 Name->Destroy();
187 Name = 0;
Chris Lattner1a5de582007-02-12 18:52:59 +0000188 return;
Chris Lattnerffb37782005-03-06 02:14:28 +0000189 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000190
Daniel Dunbara32c9992009-07-26 00:42:33 +0000191 if (Name)
Chris Lattner1a5de582007-02-12 18:52:59 +0000192 Name->Destroy();
Daniel Dunbar6058b512009-09-20 04:03:34 +0000193
Chris Lattner1a5de582007-02-12 18:52:59 +0000194 // NOTE: Could optimize for the case the name is shrinking to not deallocate
195 // then reallocated.
Daniel Dunbar6058b512009-09-20 04:03:34 +0000196
Chris Lattner1a5de582007-02-12 18:52:59 +0000197 // Create the new name.
Benjamin Kramer2e06b932010-01-13 12:45:23 +0000198 Name = ValueName::Create(NameRef.begin(), NameRef.end());
Chris Lattner1a5de582007-02-12 18:52:59 +0000199 Name->setValue(this);
Chris Lattner32ab6432007-02-12 05:18:08 +0000200 return;
Chris Lattnerffb37782005-03-06 02:14:28 +0000201 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000202
Chris Lattner32ab6432007-02-12 05:18:08 +0000203 // NOTE: Could optimize for the case the name is shrinking to not deallocate
204 // then reallocated.
205 if (hasName()) {
Chris Lattner32ab6432007-02-12 05:18:08 +0000206 // Remove old name.
207 ST->removeValueName(Name);
208 Name->Destroy();
209 Name = 0;
210
Benjamin Kramer2e06b932010-01-13 12:45:23 +0000211 if (NameRef.empty())
Chris Lattner1a5de582007-02-12 18:52:59 +0000212 return;
Chris Lattner32ab6432007-02-12 05:18:08 +0000213 }
214
215 // Name is changing to something new.
Benjamin Kramer2e06b932010-01-13 12:45:23 +0000216 Name = ST->createValueName(NameRef, this);
Chris Lattnercdb9bfc2005-03-05 19:51:50 +0000217}
218
Chris Lattner1a5de582007-02-12 18:52:59 +0000219
Chris Lattnerb6250822007-02-11 00:37:27 +0000220/// takeName - transfer the name from V to this value, setting V's name to
Daniel Dunbar6058b512009-09-20 04:03:34 +0000221/// empty. It is an error to call V->takeName(V).
Chris Lattnerb6250822007-02-11 00:37:27 +0000222void Value::takeName(Value *V) {
Chris Lattnercf835ff2007-02-15 20:01:43 +0000223 ValueSymbolTable *ST = 0;
224 // If this value has a name, drop it.
225 if (hasName()) {
226 // Get the symtab this is in.
227 if (getSymTab(this, ST)) {
228 // We can't set a name on this value, but we need to clear V's name if
229 // it has one.
Daniel Dunbard786b512009-07-26 00:34:27 +0000230 if (V->hasName()) V->setName("");
Chris Lattnercf835ff2007-02-15 20:01:43 +0000231 return; // Cannot set a name on this value (e.g. constant).
232 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000233
Chris Lattnercf835ff2007-02-15 20:01:43 +0000234 // Remove old name.
235 if (ST)
236 ST->removeValueName(Name);
237 Name->Destroy();
238 Name = 0;
Daniel Dunbar6058b512009-09-20 04:03:34 +0000239 }
240
Chris Lattnercf835ff2007-02-15 20:01:43 +0000241 // Now we know that this has no name.
Daniel Dunbar6058b512009-09-20 04:03:34 +0000242
Chris Lattnercf835ff2007-02-15 20:01:43 +0000243 // If V has no name either, we're done.
244 if (!V->hasName()) return;
Daniel Dunbar6058b512009-09-20 04:03:34 +0000245
Chris Lattnercf835ff2007-02-15 20:01:43 +0000246 // Get this's symtab if we didn't before.
247 if (!ST) {
248 if (getSymTab(this, ST)) {
249 // Clear V's name.
Daniel Dunbard786b512009-07-26 00:34:27 +0000250 V->setName("");
Chris Lattnercf835ff2007-02-15 20:01:43 +0000251 return; // Cannot set a name on this value (e.g. constant).
252 }
253 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000254
Chris Lattnercf835ff2007-02-15 20:01:43 +0000255 // Get V's ST, this should always succed, because V has a name.
256 ValueSymbolTable *VST;
257 bool Failure = getSymTab(V, VST);
Chris Lattner106b0462008-06-21 19:47:03 +0000258 assert(!Failure && "V has a name, so it should have a ST!"); Failure=Failure;
Daniel Dunbar6058b512009-09-20 04:03:34 +0000259
Chris Lattnercf835ff2007-02-15 20:01:43 +0000260 // If these values are both in the same symtab, we can do this very fast.
261 // This works even if both values have no symtab yet.
262 if (ST == VST) {
263 // Take the name!
264 Name = V->Name;
265 V->Name = 0;
266 Name->setValue(this);
Chris Lattnercba18e32007-02-11 01:04:09 +0000267 return;
268 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000269
Chris Lattnercf835ff2007-02-15 20:01:43 +0000270 // Otherwise, things are slightly more complex. Remove V's name from VST and
271 // then reinsert it into ST.
Daniel Dunbar6058b512009-09-20 04:03:34 +0000272
Chris Lattnercf835ff2007-02-15 20:01:43 +0000273 if (VST)
274 VST->removeValueName(V->Name);
275 Name = V->Name;
276 V->Name = 0;
277 Name->setValue(this);
Daniel Dunbar6058b512009-09-20 04:03:34 +0000278
Chris Lattnercf835ff2007-02-15 20:01:43 +0000279 if (ST)
280 ST->reinsertValue(this);
Chris Lattnerb6250822007-02-11 00:37:27 +0000281}
282
283
Chris Lattner9f158122003-08-29 05:09:37 +0000284// uncheckedReplaceAllUsesWith - This is exactly the same as replaceAllUsesWith,
285// except that it doesn't have all of the asserts. The asserts fail because we
286// are half-way done resolving types, which causes some types to exist as two
287// different Type*'s at the same time. This is a sledgehammer to work around
288// this problem.
289//
290void Value::uncheckedReplaceAllUsesWith(Value *New) {
Chris Lattner90234f32009-03-31 22:11:05 +0000291 // Notify all ValueHandles (if present) that this value is going away.
292 if (HasValueHandle)
293 ValueHandleBase::ValueIsRAUWd(this, New);
Chris Lattner2f2aa2b2009-12-28 23:41:32 +0000294
Chris Lattner4947e672005-02-01 01:24:21 +0000295 while (!use_empty()) {
Gabor Greif715b9d22008-09-19 15:13:20 +0000296 Use &U = *UseList;
Chris Lattner9f158122003-08-29 05:09:37 +0000297 // Must handle Constants specially, we cannot call replaceUsesOfWith on a
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000298 // constant because they are uniqued.
Chris Lattner079edeb2003-10-16 16:53:07 +0000299 if (Constant *C = dyn_cast<Constant>(U.getUser())) {
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000300 if (!isa<GlobalValue>(C)) {
Chris Lattner7a1450d2005-10-04 18:13:04 +0000301 C->replaceUsesOfWithOnConstant(this, New, &U);
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000302 continue;
303 }
Chris Lattner9f158122003-08-29 05:09:37 +0000304 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000305
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000306 U.set(New);
Chris Lattner9f158122003-08-29 05:09:37 +0000307 }
308}
309
Chris Lattner079edeb2003-10-16 16:53:07 +0000310void Value::replaceAllUsesWith(Value *New) {
311 assert(New && "Value::replaceAllUsesWith(<null>) is invalid!");
312 assert(New != this && "this->replaceAllUsesWith(this) is NOT valid!");
313 assert(New->getType() == getType() &&
314 "replaceAllUses of value with new value of different type!");
Chris Lattner9f158122003-08-29 05:09:37 +0000315
Chris Lattner079edeb2003-10-16 16:53:07 +0000316 uncheckedReplaceAllUsesWith(New);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000317}
318
Anton Korobeynikovfc2edad2008-05-07 22:54:15 +0000319Value *Value::stripPointerCasts() {
Duncan Sands19d0b472010-02-16 11:11:14 +0000320 if (!getType()->isPointerTy())
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000321 return this;
Dan Gohman7c34ece2010-06-28 21:16:52 +0000322
323 // Even though we don't look through PHI nodes, we could be called on an
324 // instruction in an unreachable block, which may be on a cycle.
325 SmallPtrSet<Value *, 4> Visited;
326
Duncan Sandse59fa782008-12-29 21:06:19 +0000327 Value *V = this;
Dan Gohman7c34ece2010-06-28 21:16:52 +0000328 Visited.insert(V);
Duncan Sandse59fa782008-12-29 21:06:19 +0000329 do {
Dan Gohmane1019db2009-07-17 23:55:56 +0000330 if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
Duncan Sandse59fa782008-12-29 21:06:19 +0000331 if (!GEP->hasAllZeroIndices())
332 return V;
Dan Gohmane1019db2009-07-17 23:55:56 +0000333 V = GEP->getPointerOperand();
334 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
335 V = cast<Operator>(V)->getOperand(0);
Dan Gohman4ce5ade2009-08-27 17:55:13 +0000336 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) {
337 if (GA->mayBeOverridden())
338 return V;
339 V = GA->getAliasee();
Duncan Sandse59fa782008-12-29 21:06:19 +0000340 } else {
341 return V;
Anton Korobeynikovfc2edad2008-05-07 22:54:15 +0000342 }
Duncan Sands19d0b472010-02-16 11:11:14 +0000343 assert(V->getType()->isPointerTy() && "Unexpected operand type!");
Dan Gohman7c34ece2010-06-28 21:16:52 +0000344 } while (Visited.insert(V));
345
346 return V;
Anton Korobeynikovfc2edad2008-05-07 22:54:15 +0000347}
348
Bob Wilsonfc060e42010-01-25 18:26:54 +0000349Value *Value::getUnderlyingObject(unsigned MaxLookup) {
Duncan Sands19d0b472010-02-16 11:11:14 +0000350 if (!getType()->isPointerTy())
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000351 return this;
Duncan Sandse59fa782008-12-29 21:06:19 +0000352 Value *V = this;
Bob Wilsonfc060e42010-01-25 18:26:54 +0000353 for (unsigned Count = 0; MaxLookup == 0 || Count < MaxLookup; ++Count) {
Dan Gohmane1019db2009-07-17 23:55:56 +0000354 if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
Dan Gohmane1019db2009-07-17 23:55:56 +0000355 V = GEP->getPointerOperand();
356 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
357 V = cast<Operator>(V)->getOperand(0);
Dan Gohman4ce5ade2009-08-27 17:55:13 +0000358 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) {
359 if (GA->mayBeOverridden())
360 return V;
361 V = GA->getAliasee();
Duncan Sandse59fa782008-12-29 21:06:19 +0000362 } else {
363 return V;
364 }
Duncan Sands19d0b472010-02-16 11:11:14 +0000365 assert(V->getType()->isPointerTy() && "Unexpected operand type!");
Bob Wilsonfc060e42010-01-25 18:26:54 +0000366 }
Nick Lewycky4a7bcf62009-04-15 06:23:41 +0000367 return V;
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000368}
369
Dan Gohmana826a882010-11-11 21:23:25 +0000370/// isDereferenceablePointer - Test if this value is always a pointer to
371// allocated and suitably aligned memory for a simple load or store.
372bool Value::isDereferenceablePointer() const {
373 // Note that it is not safe to speculate into a malloc'd region because
374 // malloc may return null.
375 // It's also not always safe to follow a bitcast, for example:
376 // bitcast i8* (alloca i8) to i32*
377 // would result in a 4-byte load from a 1-byte alloca. Some cases could
378 // be handled using TargetData to check sizes and alignments though.
379
380 // These are obviously ok.
381 if (isa<AllocaInst>(this)) return true;
382
383 // Global variables which can't collapse to null are ok.
384 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(this))
385 return !GV->hasExternalWeakLinkage();
386
387 // For GEPs, determine if the indexing lands within the allocated object.
388 if (const GEPOperator *GEP = dyn_cast<GEPOperator>(this)) {
389 // Conservatively require that the base pointer be fully dereferenceable.
390 if (!GEP->getOperand(0)->isDereferenceablePointer())
391 return false;
392 // Check the indices.
393 gep_type_iterator GTI = gep_type_begin(GEP);
394 for (User::const_op_iterator I = GEP->op_begin()+1,
395 E = GEP->op_end(); I != E; ++I) {
396 Value *Index = *I;
397 const Type *Ty = *GTI++;
398 // Struct indices can't be out of bounds.
399 if (isa<StructType>(Ty))
400 continue;
401 ConstantInt *CI = dyn_cast<ConstantInt>(Index);
402 if (!CI)
403 return false;
404 // Zero is always ok.
405 if (CI->isZero())
406 continue;
407 // Check to see that it's within the bounds of an array.
408 const ArrayType *ATy = dyn_cast<ArrayType>(Ty);
409 if (!ATy)
410 return false;
411 if (CI->getValue().getActiveBits() > 64)
412 return false;
413 if (CI->getZExtValue() >= ATy->getNumElements())
414 return false;
415 }
416 // Indices check out; this is dereferenceable.
417 return true;
418 }
419
420 // If we don't know, assume the worst.
421 return false;
422}
423
Chris Lattner027d7262008-12-02 18:33:11 +0000424/// DoPHITranslation - If this value is a PHI node with CurBB as its parent,
Chris Lattner9c1b5022008-12-02 07:16:45 +0000425/// return the value in the PHI node corresponding to PredBB. If not, return
426/// ourself. This is useful if you want to know the value something has in a
427/// predecessor block.
Daniel Dunbar6058b512009-09-20 04:03:34 +0000428Value *Value::DoPHITranslation(const BasicBlock *CurBB,
Chris Lattner9c1b5022008-12-02 07:16:45 +0000429 const BasicBlock *PredBB) {
430 PHINode *PN = dyn_cast<PHINode>(this);
431 if (PN && PN->getParent() == CurBB)
432 return PN->getIncomingValueForBlock(PredBB);
433 return this;
434}
435
Owen Anderson47db9412009-07-22 00:24:57 +0000436LLVMContext &Value::getContext() const { return VTy->getContext(); }
437
Chris Lattner90234f32009-03-31 22:11:05 +0000438//===----------------------------------------------------------------------===//
439// ValueHandleBase Class
440//===----------------------------------------------------------------------===//
441
Dan Gohman3f025952009-05-04 17:25:21 +0000442/// AddToExistingUseList - Add this ValueHandle to the use list for VP, where
443/// List is known to point into the existing use list.
Chris Lattner90234f32009-03-31 22:11:05 +0000444void ValueHandleBase::AddToExistingUseList(ValueHandleBase **List) {
445 assert(List && "Handle list is null?");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000446
Chris Lattner90234f32009-03-31 22:11:05 +0000447 // Splice ourselves into the list.
448 Next = *List;
449 *List = this;
450 setPrevPtr(List);
451 if (Next) {
452 Next->setPrevPtr(&Next);
453 assert(VP == Next->VP && "Added to wrong list?");
454 }
455}
456
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000457void ValueHandleBase::AddToExistingUseListAfter(ValueHandleBase *List) {
458 assert(List && "Must insert after existing node");
459
460 Next = List->Next;
461 setPrevPtr(&List->Next);
462 List->Next = this;
463 if (Next)
464 Next->setPrevPtr(&Next);
465}
466
Chris Lattner90234f32009-03-31 22:11:05 +0000467/// AddToUseList - Add this ValueHandle to the use list for VP.
468void ValueHandleBase::AddToUseList() {
469 assert(VP && "Null pointer doesn't have a use list!");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000470
Owen Andersone8f21852009-08-18 18:28:58 +0000471 LLVMContextImpl *pImpl = VP->getContext().pImpl;
Daniel Dunbar6058b512009-09-20 04:03:34 +0000472
Chris Lattner90234f32009-03-31 22:11:05 +0000473 if (VP->HasValueHandle) {
474 // If this value already has a ValueHandle, then it must be in the
475 // ValueHandles map already.
Owen Andersone8f21852009-08-18 18:28:58 +0000476 ValueHandleBase *&Entry = pImpl->ValueHandles[VP];
Chris Lattner90234f32009-03-31 22:11:05 +0000477 assert(Entry != 0 && "Value doesn't have any handles?");
Owen Anderson4b660a82009-06-17 17:36:57 +0000478 AddToExistingUseList(&Entry);
Owen Anderson4b660a82009-06-17 17:36:57 +0000479 return;
Chris Lattner90234f32009-03-31 22:11:05 +0000480 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000481
Chris Lattner90234f32009-03-31 22:11:05 +0000482 // Ok, it doesn't have any handles yet, so we must insert it into the
483 // DenseMap. However, doing this insertion could cause the DenseMap to
484 // reallocate itself, which would invalidate all of the PrevP pointers that
485 // point into the old table. Handle this by checking for reallocation and
486 // updating the stale pointers only if needed.
Owen Andersone8f21852009-08-18 18:28:58 +0000487 DenseMap<Value*, ValueHandleBase*> &Handles = pImpl->ValueHandles;
Chris Lattner90234f32009-03-31 22:11:05 +0000488 const void *OldBucketPtr = Handles.getPointerIntoBucketsArray();
Daniel Dunbar6058b512009-09-20 04:03:34 +0000489
Chris Lattner90234f32009-03-31 22:11:05 +0000490 ValueHandleBase *&Entry = Handles[VP];
491 assert(Entry == 0 && "Value really did already have handles?");
492 AddToExistingUseList(&Entry);
Dan Gohman3f025952009-05-04 17:25:21 +0000493 VP->HasValueHandle = true;
Daniel Dunbar6058b512009-09-20 04:03:34 +0000494
Chris Lattner90234f32009-03-31 22:11:05 +0000495 // If reallocation didn't happen or if this was the first insertion, don't
496 // walk the table.
Daniel Dunbar6058b512009-09-20 04:03:34 +0000497 if (Handles.isPointerIntoBucketsArray(OldBucketPtr) ||
Owen Anderson4b660a82009-06-17 17:36:57 +0000498 Handles.size() == 1) {
Chris Lattner90234f32009-03-31 22:11:05 +0000499 return;
Owen Anderson4b660a82009-06-17 17:36:57 +0000500 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000501
Chris Lattner90234f32009-03-31 22:11:05 +0000502 // Okay, reallocation did happen. Fix the Prev Pointers.
Owen Andersone8f21852009-08-18 18:28:58 +0000503 for (DenseMap<Value*, ValueHandleBase*>::iterator I = Handles.begin(),
504 E = Handles.end(); I != E; ++I) {
Chris Lattner90234f32009-03-31 22:11:05 +0000505 assert(I->second && I->first == I->second->VP && "List invariant broken!");
506 I->second->setPrevPtr(&I->second);
507 }
508}
509
510/// RemoveFromUseList - Remove this ValueHandle from its current use list.
511void ValueHandleBase::RemoveFromUseList() {
512 assert(VP && VP->HasValueHandle && "Pointer doesn't have a use list!");
513
514 // Unlink this from its use list.
515 ValueHandleBase **PrevPtr = getPrevPtr();
516 assert(*PrevPtr == this && "List invariant broken");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000517
Chris Lattner90234f32009-03-31 22:11:05 +0000518 *PrevPtr = Next;
519 if (Next) {
520 assert(Next->getPrevPtr() == &Next && "List invariant broken");
521 Next->setPrevPtr(PrevPtr);
522 return;
523 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000524
Chris Lattner90234f32009-03-31 22:11:05 +0000525 // If the Next pointer was null, then it is possible that this was the last
526 // ValueHandle watching VP. If so, delete its entry from the ValueHandles
527 // map.
Owen Andersone8f21852009-08-18 18:28:58 +0000528 LLVMContextImpl *pImpl = VP->getContext().pImpl;
529 DenseMap<Value*, ValueHandleBase*> &Handles = pImpl->ValueHandles;
Chris Lattner90234f32009-03-31 22:11:05 +0000530 if (Handles.isPointerIntoBucketsArray(PrevPtr)) {
531 Handles.erase(VP);
532 VP->HasValueHandle = false;
533 }
534}
535
536
537void ValueHandleBase::ValueIsDeleted(Value *V) {
538 assert(V->HasValueHandle && "Should only be called if ValueHandles present");
539
540 // Get the linked list base, which is guaranteed to exist since the
541 // HasValueHandle flag is set.
Owen Andersone8f21852009-08-18 18:28:58 +0000542 LLVMContextImpl *pImpl = V->getContext().pImpl;
543 ValueHandleBase *Entry = pImpl->ValueHandles[V];
Chris Lattner90234f32009-03-31 22:11:05 +0000544 assert(Entry && "Value bit set but no entries exist");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000545
Duncan Sands3bc93c22010-07-24 12:09:22 +0000546 // We use a local ValueHandleBase as an iterator so that ValueHandles can add
547 // and remove themselves from the list without breaking our iteration. This
548 // is not really an AssertingVH; we just have to give ValueHandleBase a kind.
549 // Note that we deliberately do not the support the case when dropping a value
550 // handle results in a new value handle being permanently added to the list
551 // (as might occur in theory for CallbackVH's): the new value handle will not
Duncan Sandsfd5c8322010-07-27 06:53:14 +0000552 // be processed and the checking code will mete out righteous punishment if
Duncan Sands3bc93c22010-07-24 12:09:22 +0000553 // the handle is still present once we have finished processing all the other
554 // value handles (it is fine to momentarily add then remove a value handle).
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000555 for (ValueHandleBase Iterator(Assert, *Entry); Entry; Entry = Iterator.Next) {
556 Iterator.RemoveFromUseList();
557 Iterator.AddToExistingUseListAfter(Entry);
558 assert(Entry->Next == &Iterator && "Loop invariant broken.");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000559
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000560 switch (Entry->getKind()) {
Chris Lattner90234f32009-03-31 22:11:05 +0000561 case Assert:
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000562 break;
Daniel Dunbar70d4fb02009-09-22 02:02:33 +0000563 case Tracking:
564 // Mark that this value has been deleted by setting it to an invalid Value
565 // pointer.
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000566 Entry->operator=(DenseMapInfo<Value *>::getTombstoneKey());
Daniel Dunbar70d4fb02009-09-22 02:02:33 +0000567 break;
Chris Lattner90234f32009-03-31 22:11:05 +0000568 case Weak:
569 // Weak just goes to null, which will unlink it from the list.
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000570 Entry->operator=(0);
Chris Lattner90234f32009-03-31 22:11:05 +0000571 break;
572 case Callback:
Dan Gohman745ad442009-05-02 21:10:48 +0000573 // Forward to the subclass's implementation.
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000574 static_cast<CallbackVH*>(Entry)->deleted();
Dan Gohman745ad442009-05-02 21:10:48 +0000575 break;
Chris Lattner90234f32009-03-31 22:11:05 +0000576 }
577 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000578
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000579 // All callbacks, weak references, and assertingVHs should be dropped by now.
580 if (V->HasValueHandle) {
581#ifndef NDEBUG // Only in +Asserts mode...
David Greene3f907a92010-01-05 01:30:09 +0000582 dbgs() << "While deleting: " << *V->getType() << " %" << V->getNameStr()
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000583 << "\n";
584 if (pImpl->ValueHandles[V]->getKind() == Assert)
585 llvm_unreachable("An asserting value handle still pointed to this"
586 " value!");
587
588#endif
589 llvm_unreachable("All references to V were not removed?");
590 }
Chris Lattner90234f32009-03-31 22:11:05 +0000591}
592
593
594void ValueHandleBase::ValueIsRAUWd(Value *Old, Value *New) {
595 assert(Old->HasValueHandle &&"Should only be called if ValueHandles present");
596 assert(Old != New && "Changing value into itself!");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000597
Chris Lattner90234f32009-03-31 22:11:05 +0000598 // Get the linked list base, which is guaranteed to exist since the
599 // HasValueHandle flag is set.
Owen Andersone8f21852009-08-18 18:28:58 +0000600 LLVMContextImpl *pImpl = Old->getContext().pImpl;
601 ValueHandleBase *Entry = pImpl->ValueHandles[Old];
602
Chris Lattner90234f32009-03-31 22:11:05 +0000603 assert(Entry && "Value bit set but no entries exist");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000604
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000605 // We use a local ValueHandleBase as an iterator so that
606 // ValueHandles can add and remove themselves from the list without
607 // breaking our iteration. This is not really an AssertingVH; we
608 // just have to give ValueHandleBase some kind.
609 for (ValueHandleBase Iterator(Assert, *Entry); Entry; Entry = Iterator.Next) {
610 Iterator.RemoveFromUseList();
611 Iterator.AddToExistingUseListAfter(Entry);
612 assert(Entry->Next == &Iterator && "Loop invariant broken.");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000613
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000614 switch (Entry->getKind()) {
Chris Lattner90234f32009-03-31 22:11:05 +0000615 case Assert:
616 // Asserting handle does not follow RAUW implicitly.
617 break;
Daniel Dunbar70d4fb02009-09-22 02:02:33 +0000618 case Tracking:
619 // Tracking goes to new value like a WeakVH. Note that this may make it
620 // something incompatible with its templated type. We don't want to have a
621 // virtual (or inline) interface to handle this though, so instead we make
Daniel Dunbar86707c92009-09-22 10:30:34 +0000622 // the TrackingVH accessors guarantee that a client never sees this value.
Daniel Dunbar70d4fb02009-09-22 02:02:33 +0000623
624 // FALLTHROUGH
Chris Lattner90234f32009-03-31 22:11:05 +0000625 case Weak:
626 // Weak goes to the new value, which will unlink it from Old's list.
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000627 Entry->operator=(New);
Chris Lattner90234f32009-03-31 22:11:05 +0000628 break;
629 case Callback:
Dan Gohman745ad442009-05-02 21:10:48 +0000630 // Forward to the subclass's implementation.
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000631 static_cast<CallbackVH*>(Entry)->allUsesReplacedWith(New);
Dan Gohman745ad442009-05-02 21:10:48 +0000632 break;
Chris Lattner90234f32009-03-31 22:11:05 +0000633 }
634 }
Duncan Sandsfd5c8322010-07-27 06:53:14 +0000635
636#ifndef NDEBUG
637 // If any new tracking or weak value handles were added while processing the
638 // list, then complain about it now.
639 if (Old->HasValueHandle)
640 for (Entry = pImpl->ValueHandles[Old]; Entry; Entry = Entry->Next)
641 switch (Entry->getKind()) {
642 case Tracking:
643 case Weak:
644 dbgs() << "After RAUW from " << *Old->getType() << " %"
645 << Old->getNameStr() << " to " << *New->getType() << " %"
646 << New->getNameStr() << "\n";
647 llvm_unreachable("A tracking or weak value handle still pointed to the"
648 " old value!\n");
649 default:
650 break;
651 }
652#endif
Chris Lattner90234f32009-03-31 22:11:05 +0000653}
654
Dan Gohman745ad442009-05-02 21:10:48 +0000655/// ~CallbackVH. Empty, but defined here to avoid emitting the vtable
656/// more than once.
657CallbackVH::~CallbackVH() {}
658
Chris Lattner9c1b5022008-12-02 07:16:45 +0000659
Chris Lattner2f7c9632001-06-06 20:29:01 +0000660//===----------------------------------------------------------------------===//
661// User Class
662//===----------------------------------------------------------------------===//
663
Chris Lattner2f7c9632001-06-06 20:29:01 +0000664// replaceUsesOfWith - Replaces all references to the "From" definition with
665// references to the "To" definition.
666//
667void User::replaceUsesOfWith(Value *From, Value *To) {
668 if (From == To) return; // Duh what?
669
Anton Korobeynikov579f0712008-02-20 11:08:44 +0000670 assert((!isa<Constant>(this) || isa<GlobalValue>(this)) &&
Dan Gohman5211b012009-08-11 15:53:15 +0000671 "Cannot call User::replaceUsesOfWith on a constant!");
Chris Lattner2c6abea2002-10-09 23:12:59 +0000672
Chris Lattnera073acb2001-07-07 08:36:50 +0000673 for (unsigned i = 0, E = getNumOperands(); i != E; ++i)
674 if (getOperand(i) == From) { // Is This operand is pointing to oldval?
Chris Lattner2f7c9632001-06-06 20:29:01 +0000675 // The side effects of this setOperand call include linking to
676 // "To", adding "this" to the uses list of To, and
677 // most importantly, removing "this" from the use list of "From".
Chris Lattnera073acb2001-07-07 08:36:50 +0000678 setOperand(i, To); // Fix it now...
Chris Lattner2f7c9632001-06-06 20:29:01 +0000679 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000680}