blob: f1815e377edc2512c2a18abeda3da496effe255d [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 Lattnerb1ed91f2011-07-09 17:41:24 +000038static inline Type *checkType(const Type *Ty) {
Chris Lattner25450e32001-12-13 00:41:27 +000039 assert(Ty && "Value defined with a null type: Error!");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000040 return const_cast<Type*>(Ty);
Chris Lattner25450e32001-12-13 00:41:27 +000041}
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),
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000045 SubclassOptionalData(0), SubclassData(0), VTy((Type*)checkType(ty)),
Gabor Greif715b9d22008-09-19 15:13:20 +000046 UseList(0), Name(0) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000047 // FIXME: Why isn't this in the subclass gunk??
Devang Patelad582fc2008-02-21 02:14:01 +000048 if (isa<CallInst>(this) || isa<InvokeInst>(this))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000049 assert((VTy->isFirstClassType() || VTy->isVoidTy() || VTy->isStructTy()) &&
50 "invalid CallInst type!");
Devang Patel1f00b532008-02-21 01:54:02 +000051 else if (!isa<Constant>(this) && !isa<BasicBlock>(this))
Chris Lattnerb1ed91f2011-07-09 17:41:24 +000052 assert((VTy->isFirstClassType() || VTy->isVoidTy()) &&
Chris Lattnerbea72472004-07-06 17:44:17 +000053 "Cannot create non-first-class values except for constants!");
Chris Lattner2f7c9632001-06-06 20:29:01 +000054}
55
Gordon Henriksen14a55692007-12-10 02:14:30 +000056Value::~Value() {
Chris Lattner90234f32009-03-31 22:11:05 +000057 // Notify all ValueHandles (if present) that this value is going away.
58 if (HasValueHandle)
59 ValueHandleBase::ValueIsDeleted(this);
Daniel Dunbar6058b512009-09-20 04:03:34 +000060
Chris Lattner2f7c9632001-06-06 20:29:01 +000061#ifndef NDEBUG // Only in -g mode...
Chris Lattner874ddad2001-06-11 15:04:40 +000062 // Check to make sure that there are no uses of this value that are still
63 // around when the value is destroyed. If there are, then we have a dangling
64 // reference and something is wrong. This code is here to print out what is
Misha Brukmanb1c93172005-04-21 23:48:37 +000065 // still being referenced. The value in question should be printed as
Chris Lattner874ddad2001-06-11 15:04:40 +000066 // a <badref>
67 //
Gordon Henriksen14a55692007-12-10 02:14:30 +000068 if (!use_empty()) {
David Greene3f907a92010-01-05 01:30:09 +000069 dbgs() << "While deleting: " << *VTy << " %" << getNameStr() << "\n";
Gordon Henriksen14a55692007-12-10 02:14:30 +000070 for (use_iterator I = use_begin(), E = use_end(); I != E; ++I)
David Greene3f907a92010-01-05 01:30:09 +000071 dbgs() << "Use still stuck around after Def is destroyed:"
Bill Wendling6a462f12006-11-17 08:03:48 +000072 << **I << "\n";
Chris Lattner2f7c9632001-06-06 20:29:01 +000073 }
74#endif
Gordon Henriksen14a55692007-12-10 02:14:30 +000075 assert(use_empty() && "Uses remain when a value is destroyed!");
Chris Lattner694285c2009-08-04 23:07:12 +000076
77 // If this value is named, destroy the name. This should not be in a symtab
78 // at this point.
79 if (Name)
80 Name->Destroy();
Daniel Dunbar6058b512009-09-20 04:03:34 +000081
Chris Lattner694285c2009-08-04 23:07:12 +000082 // There should be no uses of this object anymore, remove it.
83 LeakDetector::removeGarbageObject(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +000084}
85
Chris Lattner4947e672005-02-01 01:24:21 +000086/// hasNUses - Return true if this Value has exactly N users.
87///
88bool Value::hasNUses(unsigned N) const {
Gabor Greifc78d7202010-03-25 23:06:16 +000089 const_use_iterator UI = use_begin(), E = use_end();
Chris Lattner4947e672005-02-01 01:24:21 +000090
91 for (; N; --N, ++UI)
92 if (UI == E) return false; // Too few.
93 return UI == E;
94}
95
Chris Lattnerd36552f2005-02-23 16:51:11 +000096/// hasNUsesOrMore - Return true if this value has N users or more. This is
97/// logically equivalent to getNumUses() >= N.
98///
99bool Value::hasNUsesOrMore(unsigned N) const {
Gabor Greifc78d7202010-03-25 23:06:16 +0000100 const_use_iterator UI = use_begin(), E = use_end();
Chris Lattnerd36552f2005-02-23 16:51:11 +0000101
102 for (; N; --N, ++UI)
103 if (UI == E) return false; // Too few.
104
105 return true;
106}
107
Evan Cheng89553cc2008-06-12 21:15:59 +0000108/// isUsedInBasicBlock - Return true if this value is used in the specified
109/// basic block.
Bill Wendling0c374212008-09-25 22:42:01 +0000110bool Value::isUsedInBasicBlock(const BasicBlock *BB) const {
Gabor Greifc78d7202010-03-25 23:06:16 +0000111 for (const_use_iterator I = use_begin(), E = use_end(); I != E; ++I) {
Evan Cheng89553cc2008-06-12 21:15:59 +0000112 const Instruction *User = dyn_cast<Instruction>(*I);
113 if (User && User->getParent() == BB)
114 return true;
115 }
116 return false;
117}
118
Chris Lattnerd36552f2005-02-23 16:51:11 +0000119
Chris Lattner4947e672005-02-01 01:24:21 +0000120/// getNumUses - This method computes the number of uses of this Value. This
121/// is a linear time operation. Use hasOneUse or hasNUses to check for specific
122/// values.
123unsigned Value::getNumUses() const {
124 return (unsigned)std::distance(use_begin(), use_end());
125}
126
Chris Lattnerb6250822007-02-11 00:37:27 +0000127static bool getSymTab(Value *V, ValueSymbolTable *&ST) {
Chris Lattner569c8ac2007-02-11 19:12:18 +0000128 ST = 0;
Chris Lattnerb6250822007-02-11 00:37:27 +0000129 if (Instruction *I = dyn_cast<Instruction>(V)) {
130 if (BasicBlock *P = I->getParent())
131 if (Function *PP = P->getParent())
132 ST = &PP->getValueSymbolTable();
133 } else if (BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
Daniel Dunbar6058b512009-09-20 04:03:34 +0000134 if (Function *P = BB->getParent())
Chris Lattnerb6250822007-02-11 00:37:27 +0000135 ST = &P->getValueSymbolTable();
136 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
Daniel Dunbar6058b512009-09-20 04:03:34 +0000137 if (Module *P = GV->getParent())
Chris Lattnerb6250822007-02-11 00:37:27 +0000138 ST = &P->getValueSymbolTable();
139 } else if (Argument *A = dyn_cast<Argument>(V)) {
Daniel Dunbar6058b512009-09-20 04:03:34 +0000140 if (Function *P = A->getParent())
Chris Lattnerb6250822007-02-11 00:37:27 +0000141 ST = &P->getValueSymbolTable();
Devang Patel7428d8a2009-07-22 17:43:22 +0000142 } else if (isa<MDString>(V))
143 return true;
144 else {
Chris Lattnerb6250822007-02-11 00:37:27 +0000145 assert(isa<Constant>(V) && "Unknown value type!");
146 return true; // no name is setable for this.
147 }
148 return false;
149}
Chris Lattner2c6abea2002-10-09 23:12:59 +0000150
Daniel Dunbar32285942009-07-26 00:51:56 +0000151StringRef Value::getName() const {
Daniel Dunbar7cc8f7e2009-07-26 09:22:02 +0000152 // Make sure the empty string is still a C string. For historical reasons,
153 // some clients want to call .data() on the result and expect it to be null
154 // terminated.
155 if (!Name) return StringRef("", 0);
Daniel Dunbar32285942009-07-26 00:51:56 +0000156 return Name->getKey();
Chris Lattner5109a882007-08-10 15:34:35 +0000157}
158
Chris Lattnerfd27ed92007-02-15 18:53:54 +0000159std::string Value::getNameStr() const {
Daniel Dunbar987ec562009-07-26 00:17:14 +0000160 return getName().str();
Chris Lattner32ab6432007-02-12 05:18:08 +0000161}
Chris Lattnercdb9bfc2005-03-05 19:51:50 +0000162
Daniel Dunbard786b512009-07-26 00:34:27 +0000163void Value::setName(const Twine &NewName) {
Daniel Dunbarcb13b482009-08-19 23:37:23 +0000164 // Fast path for common IRBuilder case of setName("") when there is no name.
165 if (NewName.isTriviallyEmpty() && !hasName())
166 return;
167
Daniel Dunbaracf0b252009-08-19 05:08:06 +0000168 SmallString<256> NameData;
Benjamin Kramer2e06b932010-01-13 12:45:23 +0000169 StringRef NameRef = NewName.toStringRef(NameData);
Daniel Dunbard786b512009-07-26 00:34:27 +0000170
Daniel Dunbara32c9992009-07-26 00:42:33 +0000171 // Name isn't changing?
Benjamin Kramer2e06b932010-01-13 12:45:23 +0000172 if (getName() == NameRef)
Daniel Dunbara32c9992009-07-26 00:42:33 +0000173 return;
174
Benjamin Kramerccce8ba2010-01-05 13:12:22 +0000175 assert(!getType()->isVoidTy() && "Cannot assign a name to void values!");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000176
Chris Lattnerffb37782005-03-06 02:14:28 +0000177 // Get the symbol table to update for this object.
Chris Lattnerb6250822007-02-11 00:37:27 +0000178 ValueSymbolTable *ST;
179 if (getSymTab(this, ST))
180 return; // Cannot set a name on this value (e.g. constant).
Chris Lattnercdb9bfc2005-03-05 19:51:50 +0000181
Chris Lattner32ab6432007-02-12 05:18:08 +0000182 if (!ST) { // No symbol table to update? Just do the change.
Benjamin Kramer2e06b932010-01-13 12:45:23 +0000183 if (NameRef.empty()) {
Chris Lattner32ab6432007-02-12 05:18:08 +0000184 // Free the name for this value.
185 Name->Destroy();
186 Name = 0;
Chris Lattner1a5de582007-02-12 18:52:59 +0000187 return;
Chris Lattnerffb37782005-03-06 02:14:28 +0000188 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000189
Daniel Dunbara32c9992009-07-26 00:42:33 +0000190 if (Name)
Chris Lattner1a5de582007-02-12 18:52:59 +0000191 Name->Destroy();
Daniel Dunbar6058b512009-09-20 04:03:34 +0000192
Chris Lattner1a5de582007-02-12 18:52:59 +0000193 // NOTE: Could optimize for the case the name is shrinking to not deallocate
194 // then reallocated.
Daniel Dunbar6058b512009-09-20 04:03:34 +0000195
Chris Lattner1a5de582007-02-12 18:52:59 +0000196 // Create the new name.
Benjamin Kramer2e06b932010-01-13 12:45:23 +0000197 Name = ValueName::Create(NameRef.begin(), NameRef.end());
Chris Lattner1a5de582007-02-12 18:52:59 +0000198 Name->setValue(this);
Chris Lattner32ab6432007-02-12 05:18:08 +0000199 return;
Chris Lattnerffb37782005-03-06 02:14:28 +0000200 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000201
Chris Lattner32ab6432007-02-12 05:18:08 +0000202 // NOTE: Could optimize for the case the name is shrinking to not deallocate
203 // then reallocated.
204 if (hasName()) {
Chris Lattner32ab6432007-02-12 05:18:08 +0000205 // Remove old name.
206 ST->removeValueName(Name);
207 Name->Destroy();
208 Name = 0;
209
Benjamin Kramer2e06b932010-01-13 12:45:23 +0000210 if (NameRef.empty())
Chris Lattner1a5de582007-02-12 18:52:59 +0000211 return;
Chris Lattner32ab6432007-02-12 05:18:08 +0000212 }
213
214 // Name is changing to something new.
Benjamin Kramer2e06b932010-01-13 12:45:23 +0000215 Name = ST->createValueName(NameRef, this);
Chris Lattnercdb9bfc2005-03-05 19:51:50 +0000216}
217
Chris Lattner1a5de582007-02-12 18:52:59 +0000218
Chris Lattnerb6250822007-02-11 00:37:27 +0000219/// takeName - transfer the name from V to this value, setting V's name to
Daniel Dunbar6058b512009-09-20 04:03:34 +0000220/// empty. It is an error to call V->takeName(V).
Chris Lattnerb6250822007-02-11 00:37:27 +0000221void Value::takeName(Value *V) {
Chris Lattnercf835ff2007-02-15 20:01:43 +0000222 ValueSymbolTable *ST = 0;
223 // If this value has a name, drop it.
224 if (hasName()) {
225 // Get the symtab this is in.
226 if (getSymTab(this, ST)) {
227 // We can't set a name on this value, but we need to clear V's name if
228 // it has one.
Daniel Dunbard786b512009-07-26 00:34:27 +0000229 if (V->hasName()) V->setName("");
Chris Lattnercf835ff2007-02-15 20:01:43 +0000230 return; // Cannot set a name on this value (e.g. constant).
231 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000232
Chris Lattnercf835ff2007-02-15 20:01:43 +0000233 // Remove old name.
234 if (ST)
235 ST->removeValueName(Name);
236 Name->Destroy();
237 Name = 0;
Daniel Dunbar6058b512009-09-20 04:03:34 +0000238 }
239
Chris Lattnercf835ff2007-02-15 20:01:43 +0000240 // Now we know that this has no name.
Daniel Dunbar6058b512009-09-20 04:03:34 +0000241
Chris Lattnercf835ff2007-02-15 20:01:43 +0000242 // If V has no name either, we're done.
243 if (!V->hasName()) return;
Daniel Dunbar6058b512009-09-20 04:03:34 +0000244
Chris Lattnercf835ff2007-02-15 20:01:43 +0000245 // Get this's symtab if we didn't before.
246 if (!ST) {
247 if (getSymTab(this, ST)) {
248 // Clear V's name.
Daniel Dunbard786b512009-07-26 00:34:27 +0000249 V->setName("");
Chris Lattnercf835ff2007-02-15 20:01:43 +0000250 return; // Cannot set a name on this value (e.g. constant).
251 }
252 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000253
Chris Lattnercf835ff2007-02-15 20:01:43 +0000254 // Get V's ST, this should always succed, because V has a name.
255 ValueSymbolTable *VST;
256 bool Failure = getSymTab(V, VST);
Jeffrey Yasskin9b43f332010-12-23 00:58:24 +0000257 assert(!Failure && "V has a name, so it should have a ST!"); (void)Failure;
Daniel Dunbar6058b512009-09-20 04:03:34 +0000258
Chris Lattnercf835ff2007-02-15 20:01:43 +0000259 // If these values are both in the same symtab, we can do this very fast.
260 // This works even if both values have no symtab yet.
261 if (ST == VST) {
262 // Take the name!
263 Name = V->Name;
264 V->Name = 0;
265 Name->setValue(this);
Chris Lattnercba18e32007-02-11 01:04:09 +0000266 return;
267 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000268
Chris Lattnercf835ff2007-02-15 20:01:43 +0000269 // Otherwise, things are slightly more complex. Remove V's name from VST and
270 // then reinsert it into ST.
Daniel Dunbar6058b512009-09-20 04:03:34 +0000271
Chris Lattnercf835ff2007-02-15 20:01:43 +0000272 if (VST)
273 VST->removeValueName(V->Name);
274 Name = V->Name;
275 V->Name = 0;
276 Name->setValue(this);
Daniel Dunbar6058b512009-09-20 04:03:34 +0000277
Chris Lattnercf835ff2007-02-15 20:01:43 +0000278 if (ST)
279 ST->reinsertValue(this);
Chris Lattnerb6250822007-02-11 00:37:27 +0000280}
281
282
Chris Lattneraf1783f2011-07-15 06:18:52 +0000283void Value::replaceAllUsesWith(Value *New) {
284 assert(New && "Value::replaceAllUsesWith(<null>) is invalid!");
285 assert(New != this && "this->replaceAllUsesWith(this) is NOT valid!");
286 assert(New->getType() == getType() &&
287 "replaceAllUses of value with new value of different type!");
288
Chris Lattner90234f32009-03-31 22:11:05 +0000289 // Notify all ValueHandles (if present) that this value is going away.
290 if (HasValueHandle)
291 ValueHandleBase::ValueIsRAUWd(this, New);
Chris Lattneraf1783f2011-07-15 06:18:52 +0000292
Chris Lattner4947e672005-02-01 01:24:21 +0000293 while (!use_empty()) {
Gabor Greif715b9d22008-09-19 15:13:20 +0000294 Use &U = *UseList;
Chris Lattner9f158122003-08-29 05:09:37 +0000295 // Must handle Constants specially, we cannot call replaceUsesOfWith on a
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000296 // constant because they are uniqued.
Chris Lattner079edeb2003-10-16 16:53:07 +0000297 if (Constant *C = dyn_cast<Constant>(U.getUser())) {
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000298 if (!isa<GlobalValue>(C)) {
Chris Lattner7a1450d2005-10-04 18:13:04 +0000299 C->replaceUsesOfWithOnConstant(this, New, &U);
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000300 continue;
301 }
Chris Lattner9f158122003-08-29 05:09:37 +0000302 }
Chris Lattneraf1783f2011-07-15 06:18:52 +0000303
Chris Lattner8e5b2c22007-08-21 00:21:07 +0000304 U.set(New);
Chris Lattner9f158122003-08-29 05:09:37 +0000305 }
Chris Lattneraf1783f2011-07-15 06:18:52 +0000306
Jay Foad61ea0e42011-06-23 09:09:15 +0000307 if (BasicBlock *BB = dyn_cast<BasicBlock>(this))
308 BB->replaceSuccessorsPhiUsesWith(cast<BasicBlock>(New));
Chris Lattner9f158122003-08-29 05:09:37 +0000309}
310
Anton Korobeynikovfc2edad2008-05-07 22:54:15 +0000311Value *Value::stripPointerCasts() {
Duncan Sands19d0b472010-02-16 11:11:14 +0000312 if (!getType()->isPointerTy())
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000313 return this;
Dan Gohman7c34ece2010-06-28 21:16:52 +0000314
315 // Even though we don't look through PHI nodes, we could be called on an
316 // instruction in an unreachable block, which may be on a cycle.
317 SmallPtrSet<Value *, 4> Visited;
318
Duncan Sandse59fa782008-12-29 21:06:19 +0000319 Value *V = this;
Dan Gohman7c34ece2010-06-28 21:16:52 +0000320 Visited.insert(V);
Duncan Sandse59fa782008-12-29 21:06:19 +0000321 do {
Dan Gohmane1019db2009-07-17 23:55:56 +0000322 if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) {
Duncan Sandse59fa782008-12-29 21:06:19 +0000323 if (!GEP->hasAllZeroIndices())
324 return V;
Dan Gohmane1019db2009-07-17 23:55:56 +0000325 V = GEP->getPointerOperand();
326 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
327 V = cast<Operator>(V)->getOperand(0);
Dan Gohman4ce5ade2009-08-27 17:55:13 +0000328 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) {
329 if (GA->mayBeOverridden())
330 return V;
331 V = GA->getAliasee();
Duncan Sandse59fa782008-12-29 21:06:19 +0000332 } else {
333 return V;
Anton Korobeynikovfc2edad2008-05-07 22:54:15 +0000334 }
Duncan Sands19d0b472010-02-16 11:11:14 +0000335 assert(V->getType()->isPointerTy() && "Unexpected operand type!");
Dan Gohman7c34ece2010-06-28 21:16:52 +0000336 } while (Visited.insert(V));
337
338 return V;
Anton Korobeynikovfc2edad2008-05-07 22:54:15 +0000339}
340
Dan Gohmana826a882010-11-11 21:23:25 +0000341/// isDereferenceablePointer - Test if this value is always a pointer to
Nick Lewyckyadd50b02010-11-11 21:51:44 +0000342/// allocated and suitably aligned memory for a simple load or store.
Dan Gohmana826a882010-11-11 21:23:25 +0000343bool Value::isDereferenceablePointer() const {
344 // Note that it is not safe to speculate into a malloc'd region because
345 // malloc may return null.
346 // It's also not always safe to follow a bitcast, for example:
347 // bitcast i8* (alloca i8) to i32*
348 // would result in a 4-byte load from a 1-byte alloca. Some cases could
349 // be handled using TargetData to check sizes and alignments though.
350
351 // These are obviously ok.
352 if (isa<AllocaInst>(this)) return true;
353
354 // Global variables which can't collapse to null are ok.
355 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(this))
356 return !GV->hasExternalWeakLinkage();
357
Chris Lattner98799652011-01-23 21:15:29 +0000358 // byval arguments are ok.
359 if (const Argument *A = dyn_cast<Argument>(this))
360 return A->hasByValAttr();
361
Dan Gohmana826a882010-11-11 21:23:25 +0000362 // For GEPs, determine if the indexing lands within the allocated object.
363 if (const GEPOperator *GEP = dyn_cast<GEPOperator>(this)) {
364 // Conservatively require that the base pointer be fully dereferenceable.
365 if (!GEP->getOperand(0)->isDereferenceablePointer())
366 return false;
367 // Check the indices.
368 gep_type_iterator GTI = gep_type_begin(GEP);
369 for (User::const_op_iterator I = GEP->op_begin()+1,
370 E = GEP->op_end(); I != E; ++I) {
371 Value *Index = *I;
372 const Type *Ty = *GTI++;
373 // Struct indices can't be out of bounds.
374 if (isa<StructType>(Ty))
375 continue;
376 ConstantInt *CI = dyn_cast<ConstantInt>(Index);
377 if (!CI)
378 return false;
379 // Zero is always ok.
380 if (CI->isZero())
381 continue;
382 // Check to see that it's within the bounds of an array.
383 const ArrayType *ATy = dyn_cast<ArrayType>(Ty);
384 if (!ATy)
385 return false;
386 if (CI->getValue().getActiveBits() > 64)
387 return false;
388 if (CI->getZExtValue() >= ATy->getNumElements())
389 return false;
390 }
391 // Indices check out; this is dereferenceable.
392 return true;
393 }
394
395 // If we don't know, assume the worst.
396 return false;
397}
398
Chris Lattner027d7262008-12-02 18:33:11 +0000399/// DoPHITranslation - If this value is a PHI node with CurBB as its parent,
Chris Lattner9c1b5022008-12-02 07:16:45 +0000400/// return the value in the PHI node corresponding to PredBB. If not, return
401/// ourself. This is useful if you want to know the value something has in a
402/// predecessor block.
Daniel Dunbar6058b512009-09-20 04:03:34 +0000403Value *Value::DoPHITranslation(const BasicBlock *CurBB,
Chris Lattner9c1b5022008-12-02 07:16:45 +0000404 const BasicBlock *PredBB) {
405 PHINode *PN = dyn_cast<PHINode>(this);
406 if (PN && PN->getParent() == CurBB)
407 return PN->getIncomingValueForBlock(PredBB);
408 return this;
409}
410
Owen Anderson47db9412009-07-22 00:24:57 +0000411LLVMContext &Value::getContext() const { return VTy->getContext(); }
412
Chris Lattner90234f32009-03-31 22:11:05 +0000413//===----------------------------------------------------------------------===//
414// ValueHandleBase Class
415//===----------------------------------------------------------------------===//
416
Dan Gohman3f025952009-05-04 17:25:21 +0000417/// AddToExistingUseList - Add this ValueHandle to the use list for VP, where
418/// List is known to point into the existing use list.
Chris Lattner90234f32009-03-31 22:11:05 +0000419void ValueHandleBase::AddToExistingUseList(ValueHandleBase **List) {
420 assert(List && "Handle list is null?");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000421
Chris Lattner90234f32009-03-31 22:11:05 +0000422 // Splice ourselves into the list.
423 Next = *List;
424 *List = this;
425 setPrevPtr(List);
426 if (Next) {
427 Next->setPrevPtr(&Next);
428 assert(VP == Next->VP && "Added to wrong list?");
429 }
430}
431
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000432void ValueHandleBase::AddToExistingUseListAfter(ValueHandleBase *List) {
433 assert(List && "Must insert after existing node");
434
435 Next = List->Next;
436 setPrevPtr(&List->Next);
437 List->Next = this;
438 if (Next)
439 Next->setPrevPtr(&Next);
440}
441
Chris Lattner90234f32009-03-31 22:11:05 +0000442/// AddToUseList - Add this ValueHandle to the use list for VP.
443void ValueHandleBase::AddToUseList() {
444 assert(VP && "Null pointer doesn't have a use list!");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000445
Owen Andersone8f21852009-08-18 18:28:58 +0000446 LLVMContextImpl *pImpl = VP->getContext().pImpl;
Daniel Dunbar6058b512009-09-20 04:03:34 +0000447
Chris Lattner90234f32009-03-31 22:11:05 +0000448 if (VP->HasValueHandle) {
449 // If this value already has a ValueHandle, then it must be in the
450 // ValueHandles map already.
Owen Andersone8f21852009-08-18 18:28:58 +0000451 ValueHandleBase *&Entry = pImpl->ValueHandles[VP];
Chris Lattner90234f32009-03-31 22:11:05 +0000452 assert(Entry != 0 && "Value doesn't have any handles?");
Owen Anderson4b660a82009-06-17 17:36:57 +0000453 AddToExistingUseList(&Entry);
Owen Anderson4b660a82009-06-17 17:36:57 +0000454 return;
Chris Lattner90234f32009-03-31 22:11:05 +0000455 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000456
Chris Lattner90234f32009-03-31 22:11:05 +0000457 // Ok, it doesn't have any handles yet, so we must insert it into the
458 // DenseMap. However, doing this insertion could cause the DenseMap to
459 // reallocate itself, which would invalidate all of the PrevP pointers that
460 // point into the old table. Handle this by checking for reallocation and
461 // updating the stale pointers only if needed.
Owen Andersone8f21852009-08-18 18:28:58 +0000462 DenseMap<Value*, ValueHandleBase*> &Handles = pImpl->ValueHandles;
Chris Lattner90234f32009-03-31 22:11:05 +0000463 const void *OldBucketPtr = Handles.getPointerIntoBucketsArray();
Daniel Dunbar6058b512009-09-20 04:03:34 +0000464
Chris Lattner90234f32009-03-31 22:11:05 +0000465 ValueHandleBase *&Entry = Handles[VP];
466 assert(Entry == 0 && "Value really did already have handles?");
467 AddToExistingUseList(&Entry);
Dan Gohman3f025952009-05-04 17:25:21 +0000468 VP->HasValueHandle = true;
Daniel Dunbar6058b512009-09-20 04:03:34 +0000469
Chris Lattner90234f32009-03-31 22:11:05 +0000470 // If reallocation didn't happen or if this was the first insertion, don't
471 // walk the table.
Daniel Dunbar6058b512009-09-20 04:03:34 +0000472 if (Handles.isPointerIntoBucketsArray(OldBucketPtr) ||
Owen Anderson4b660a82009-06-17 17:36:57 +0000473 Handles.size() == 1) {
Chris Lattner90234f32009-03-31 22:11:05 +0000474 return;
Owen Anderson4b660a82009-06-17 17:36:57 +0000475 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000476
Chris Lattner90234f32009-03-31 22:11:05 +0000477 // Okay, reallocation did happen. Fix the Prev Pointers.
Owen Andersone8f21852009-08-18 18:28:58 +0000478 for (DenseMap<Value*, ValueHandleBase*>::iterator I = Handles.begin(),
479 E = Handles.end(); I != E; ++I) {
Chris Lattner90234f32009-03-31 22:11:05 +0000480 assert(I->second && I->first == I->second->VP && "List invariant broken!");
481 I->second->setPrevPtr(&I->second);
482 }
483}
484
485/// RemoveFromUseList - Remove this ValueHandle from its current use list.
486void ValueHandleBase::RemoveFromUseList() {
487 assert(VP && VP->HasValueHandle && "Pointer doesn't have a use list!");
488
489 // Unlink this from its use list.
490 ValueHandleBase **PrevPtr = getPrevPtr();
491 assert(*PrevPtr == this && "List invariant broken");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000492
Chris Lattner90234f32009-03-31 22:11:05 +0000493 *PrevPtr = Next;
494 if (Next) {
495 assert(Next->getPrevPtr() == &Next && "List invariant broken");
496 Next->setPrevPtr(PrevPtr);
497 return;
498 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000499
Chris Lattner90234f32009-03-31 22:11:05 +0000500 // If the Next pointer was null, then it is possible that this was the last
501 // ValueHandle watching VP. If so, delete its entry from the ValueHandles
502 // map.
Owen Andersone8f21852009-08-18 18:28:58 +0000503 LLVMContextImpl *pImpl = VP->getContext().pImpl;
504 DenseMap<Value*, ValueHandleBase*> &Handles = pImpl->ValueHandles;
Chris Lattner90234f32009-03-31 22:11:05 +0000505 if (Handles.isPointerIntoBucketsArray(PrevPtr)) {
506 Handles.erase(VP);
507 VP->HasValueHandle = false;
508 }
509}
510
511
512void ValueHandleBase::ValueIsDeleted(Value *V) {
513 assert(V->HasValueHandle && "Should only be called if ValueHandles present");
514
515 // Get the linked list base, which is guaranteed to exist since the
516 // HasValueHandle flag is set.
Owen Andersone8f21852009-08-18 18:28:58 +0000517 LLVMContextImpl *pImpl = V->getContext().pImpl;
518 ValueHandleBase *Entry = pImpl->ValueHandles[V];
Chris Lattner90234f32009-03-31 22:11:05 +0000519 assert(Entry && "Value bit set but no entries exist");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000520
Duncan Sands3bc93c22010-07-24 12:09:22 +0000521 // We use a local ValueHandleBase as an iterator so that ValueHandles can add
522 // and remove themselves from the list without breaking our iteration. This
523 // is not really an AssertingVH; we just have to give ValueHandleBase a kind.
524 // Note that we deliberately do not the support the case when dropping a value
525 // handle results in a new value handle being permanently added to the list
526 // (as might occur in theory for CallbackVH's): the new value handle will not
Duncan Sandsfd5c8322010-07-27 06:53:14 +0000527 // be processed and the checking code will mete out righteous punishment if
Duncan Sands3bc93c22010-07-24 12:09:22 +0000528 // the handle is still present once we have finished processing all the other
529 // value handles (it is fine to momentarily add then remove a value handle).
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000530 for (ValueHandleBase Iterator(Assert, *Entry); Entry; Entry = Iterator.Next) {
531 Iterator.RemoveFromUseList();
532 Iterator.AddToExistingUseListAfter(Entry);
533 assert(Entry->Next == &Iterator && "Loop invariant broken.");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000534
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000535 switch (Entry->getKind()) {
Chris Lattner90234f32009-03-31 22:11:05 +0000536 case Assert:
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000537 break;
Daniel Dunbar70d4fb02009-09-22 02:02:33 +0000538 case Tracking:
539 // Mark that this value has been deleted by setting it to an invalid Value
540 // pointer.
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000541 Entry->operator=(DenseMapInfo<Value *>::getTombstoneKey());
Daniel Dunbar70d4fb02009-09-22 02:02:33 +0000542 break;
Chris Lattner90234f32009-03-31 22:11:05 +0000543 case Weak:
544 // Weak just goes to null, which will unlink it from the list.
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000545 Entry->operator=(0);
Chris Lattner90234f32009-03-31 22:11:05 +0000546 break;
547 case Callback:
Dan Gohman745ad442009-05-02 21:10:48 +0000548 // Forward to the subclass's implementation.
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000549 static_cast<CallbackVH*>(Entry)->deleted();
Dan Gohman745ad442009-05-02 21:10:48 +0000550 break;
Chris Lattner90234f32009-03-31 22:11:05 +0000551 }
552 }
Daniel Dunbar6058b512009-09-20 04:03:34 +0000553
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000554 // All callbacks, weak references, and assertingVHs should be dropped by now.
555 if (V->HasValueHandle) {
556#ifndef NDEBUG // Only in +Asserts mode...
David Greene3f907a92010-01-05 01:30:09 +0000557 dbgs() << "While deleting: " << *V->getType() << " %" << V->getNameStr()
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000558 << "\n";
559 if (pImpl->ValueHandles[V]->getKind() == Assert)
560 llvm_unreachable("An asserting value handle still pointed to this"
561 " value!");
562
563#endif
564 llvm_unreachable("All references to V were not removed?");
565 }
Chris Lattner90234f32009-03-31 22:11:05 +0000566}
567
568
569void ValueHandleBase::ValueIsRAUWd(Value *Old, Value *New) {
570 assert(Old->HasValueHandle &&"Should only be called if ValueHandles present");
571 assert(Old != New && "Changing value into itself!");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000572
Chris Lattner90234f32009-03-31 22:11:05 +0000573 // Get the linked list base, which is guaranteed to exist since the
574 // HasValueHandle flag is set.
Owen Andersone8f21852009-08-18 18:28:58 +0000575 LLVMContextImpl *pImpl = Old->getContext().pImpl;
576 ValueHandleBase *Entry = pImpl->ValueHandles[Old];
577
Chris Lattner90234f32009-03-31 22:11:05 +0000578 assert(Entry && "Value bit set but no entries exist");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000579
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000580 // We use a local ValueHandleBase as an iterator so that
581 // ValueHandles can add and remove themselves from the list without
582 // breaking our iteration. This is not really an AssertingVH; we
583 // just have to give ValueHandleBase some kind.
584 for (ValueHandleBase Iterator(Assert, *Entry); Entry; Entry = Iterator.Next) {
585 Iterator.RemoveFromUseList();
586 Iterator.AddToExistingUseListAfter(Entry);
587 assert(Entry->Next == &Iterator && "Loop invariant broken.");
Daniel Dunbar6058b512009-09-20 04:03:34 +0000588
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000589 switch (Entry->getKind()) {
Chris Lattner90234f32009-03-31 22:11:05 +0000590 case Assert:
591 // Asserting handle does not follow RAUW implicitly.
592 break;
Daniel Dunbar70d4fb02009-09-22 02:02:33 +0000593 case Tracking:
594 // Tracking goes to new value like a WeakVH. Note that this may make it
595 // something incompatible with its templated type. We don't want to have a
596 // virtual (or inline) interface to handle this though, so instead we make
Daniel Dunbar86707c92009-09-22 10:30:34 +0000597 // the TrackingVH accessors guarantee that a client never sees this value.
Daniel Dunbar70d4fb02009-09-22 02:02:33 +0000598
599 // FALLTHROUGH
Chris Lattner90234f32009-03-31 22:11:05 +0000600 case Weak:
601 // Weak goes to the new value, which will unlink it from Old's list.
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000602 Entry->operator=(New);
Chris Lattner90234f32009-03-31 22:11:05 +0000603 break;
604 case Callback:
Dan Gohman745ad442009-05-02 21:10:48 +0000605 // Forward to the subclass's implementation.
Jeffrey Yasskin406ac812009-10-12 17:43:32 +0000606 static_cast<CallbackVH*>(Entry)->allUsesReplacedWith(New);
Dan Gohman745ad442009-05-02 21:10:48 +0000607 break;
Chris Lattner90234f32009-03-31 22:11:05 +0000608 }
609 }
Duncan Sandsfd5c8322010-07-27 06:53:14 +0000610
611#ifndef NDEBUG
612 // If any new tracking or weak value handles were added while processing the
613 // list, then complain about it now.
614 if (Old->HasValueHandle)
615 for (Entry = pImpl->ValueHandles[Old]; Entry; Entry = Entry->Next)
616 switch (Entry->getKind()) {
617 case Tracking:
618 case Weak:
619 dbgs() << "After RAUW from " << *Old->getType() << " %"
620 << Old->getNameStr() << " to " << *New->getType() << " %"
621 << New->getNameStr() << "\n";
622 llvm_unreachable("A tracking or weak value handle still pointed to the"
623 " old value!\n");
624 default:
625 break;
626 }
627#endif
Chris Lattner90234f32009-03-31 22:11:05 +0000628}
629
Dan Gohman745ad442009-05-02 21:10:48 +0000630/// ~CallbackVH. Empty, but defined here to avoid emitting the vtable
631/// more than once.
632CallbackVH::~CallbackVH() {}