1 //===-- Value.cpp - Implement the Value class -----------------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements the Value, ValueHandle, and User classes.
12 //===----------------------------------------------------------------------===//
14 #include "LLVMContextImpl.h"
15 #include "llvm/Constant.h"
16 #include "llvm/Constants.h"
17 #include "llvm/DerivedTypes.h"
18 #include "llvm/InstrTypes.h"
19 #include "llvm/Instructions.h"
20 #include "llvm/Operator.h"
21 #include "llvm/Module.h"
22 #include "llvm/ValueSymbolTable.h"
23 #include "llvm/ADT/SmallString.h"
24 #include "llvm/Support/Debug.h"
25 #include "llvm/Support/ErrorHandling.h"
26 #include "llvm/Support/LeakDetector.h"
27 #include "llvm/Support/ManagedStatic.h"
28 #include "llvm/Support/ValueHandle.h"
29 #include "llvm/ADT/DenseMap.h"
33 //===----------------------------------------------------------------------===//
35 //===----------------------------------------------------------------------===//
37 static inline const Type
*checkType(const Type
*Ty
) {
38 assert(Ty
&& "Value defined with a null type: Error!");
42 Value::Value(const Type
*ty
, unsigned scid
)
43 : SubclassID(scid
), HasValueHandle(0),
44 SubclassOptionalData(0), SubclassData(0), VTy(checkType(ty
)),
46 if (isa
<CallInst
>(this) || isa
<InvokeInst
>(this))
47 assert((VTy
->isFirstClassType() || VTy
->isVoidTy() ||
48 ty
->isOpaqueTy() || VTy
->isStructTy()) &&
49 "invalid CallInst type!");
50 else if (!isa
<Constant
>(this) && !isa
<BasicBlock
>(this))
51 assert((VTy
->isFirstClassType() || VTy
->isVoidTy() ||
53 "Cannot create non-first-class values except for constants!");
57 // Notify all ValueHandles (if present) that this value is going away.
59 ValueHandleBase::ValueIsDeleted(this);
61 #ifndef NDEBUG // Only in -g mode...
62 // 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
65 // still being referenced. The value in question should be printed as
69 dbgs() << "While deleting: " << *VTy
<< " %" << getNameStr() << "\n";
70 for (use_iterator I
= use_begin(), E
= use_end(); I
!= E
; ++I
)
71 dbgs() << "Use still stuck around after Def is destroyed:"
75 assert(use_empty() && "Uses remain when a value is destroyed!");
77 // If this value is named, destroy the name. This should not be in a symtab
82 // There should be no uses of this object anymore, remove it.
83 LeakDetector::removeGarbageObject(this);
86 /// hasNUses - Return true if this Value has exactly N users.
88 bool Value::hasNUses(unsigned N
) const {
89 const_use_iterator UI
= use_begin(), E
= use_end();
92 if (UI
== E
) return false; // Too few.
96 /// hasNUsesOrMore - Return true if this value has N users or more. This is
97 /// logically equivalent to getNumUses() >= N.
99 bool Value::hasNUsesOrMore(unsigned N
) const {
100 const_use_iterator UI
= use_begin(), E
= use_end();
103 if (UI
== E
) return false; // Too few.
108 /// isUsedInBasicBlock - Return true if this value is used in the specified
110 bool Value::isUsedInBasicBlock(const BasicBlock
*BB
) const {
111 for (const_use_iterator I
= use_begin(), E
= use_end(); I
!= E
; ++I
) {
112 const Instruction
*User
= dyn_cast
<Instruction
>(*I
);
113 if (User
&& User
->getParent() == BB
)
120 /// 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
123 unsigned Value::getNumUses() const {
124 return (unsigned)std::distance(use_begin(), use_end());
127 static bool getSymTab(Value
*V
, ValueSymbolTable
*&ST
) {
129 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
)) {
134 if (Function
*P
= BB
->getParent())
135 ST
= &P
->getValueSymbolTable();
136 } else if (GlobalValue
*GV
= dyn_cast
<GlobalValue
>(V
)) {
137 if (Module
*P
= GV
->getParent())
138 ST
= &P
->getValueSymbolTable();
139 } else if (Argument
*A
= dyn_cast
<Argument
>(V
)) {
140 if (Function
*P
= A
->getParent())
141 ST
= &P
->getValueSymbolTable();
142 } else if (isa
<MDString
>(V
))
145 assert(isa
<Constant
>(V
) && "Unknown value type!");
146 return true; // no name is setable for this.
151 StringRef
Value::getName() const {
152 // 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
155 if (!Name
) return StringRef("", 0);
156 return Name
->getKey();
159 std::string
Value::getNameStr() const {
160 return getName().str();
163 void Value::setName(const Twine
&NewName
) {
164 // Fast path for common IRBuilder case of setName("") when there is no name.
165 if (NewName
.isTriviallyEmpty() && !hasName())
168 SmallString
<256> NameData
;
169 StringRef NameRef
= NewName
.toStringRef(NameData
);
171 // Name isn't changing?
172 if (getName() == NameRef
)
175 assert(!getType()->isVoidTy() && "Cannot assign a name to void values!");
177 // Get the symbol table to update for this object.
178 ValueSymbolTable
*ST
;
179 if (getSymTab(this, ST
))
180 return; // Cannot set a name on this value (e.g. constant).
182 if (!ST
) { // No symbol table to update? Just do the change.
183 if (NameRef
.empty()) {
184 // Free the name for this value.
193 // NOTE: Could optimize for the case the name is shrinking to not deallocate
196 // Create the new name.
197 Name
= ValueName::Create(NameRef
.begin(), NameRef
.end());
198 Name
->setValue(this);
202 // NOTE: Could optimize for the case the name is shrinking to not deallocate
206 ST
->removeValueName(Name
);
214 // Name is changing to something new.
215 Name
= ST
->createValueName(NameRef
, this);
219 /// takeName - transfer the name from V to this value, setting V's name to
220 /// empty. It is an error to call V->takeName(V).
221 void Value::takeName(Value
*V
) {
222 ValueSymbolTable
*ST
= 0;
223 // If this value has a name, drop it.
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
229 if (V
->hasName()) V
->setName("");
230 return; // Cannot set a name on this value (e.g. constant).
235 ST
->removeValueName(Name
);
240 // Now we know that this has no name.
242 // If V has no name either, we're done.
243 if (!V
->hasName()) return;
245 // Get this's symtab if we didn't before.
247 if (getSymTab(this, ST
)) {
250 return; // Cannot set a name on this value (e.g. constant).
254 // Get V's ST, this should always succed, because V has a name.
255 ValueSymbolTable
*VST
;
256 bool Failure
= getSymTab(V
, VST
);
257 assert(!Failure
&& "V has a name, so it should have a ST!"); Failure
=Failure
;
259 // 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.
265 Name
->setValue(this);
269 // Otherwise, things are slightly more complex. Remove V's name from VST and
270 // then reinsert it into ST.
273 VST
->removeValueName(V
->Name
);
276 Name
->setValue(this);
279 ST
->reinsertValue(this);
283 // uncheckedReplaceAllUsesWith - This is exactly the same as replaceAllUsesWith,
284 // except that it doesn't have all of the asserts. The asserts fail because we
285 // are half-way done resolving types, which causes some types to exist as two
286 // different Type*'s at the same time. This is a sledgehammer to work around
289 void Value::uncheckedReplaceAllUsesWith(Value
*New
) {
290 // Notify all ValueHandles (if present) that this value is going away.
292 ValueHandleBase::ValueIsRAUWd(this, New
);
294 while (!use_empty()) {
296 // Must handle Constants specially, we cannot call replaceUsesOfWith on a
297 // constant because they are uniqued.
298 if (Constant
*C
= dyn_cast
<Constant
>(U
.getUser())) {
299 if (!isa
<GlobalValue
>(C
)) {
300 C
->replaceUsesOfWithOnConstant(this, New
, &U
);
309 void Value::replaceAllUsesWith(Value
*New
) {
310 assert(New
&& "Value::replaceAllUsesWith(<null>) is invalid!");
311 assert(New
!= this && "this->replaceAllUsesWith(this) is NOT valid!");
312 assert(New
->getType() == getType() &&
313 "replaceAllUses of value with new value of different type!");
315 uncheckedReplaceAllUsesWith(New
);
318 Value
*Value::stripPointerCasts() {
319 if (!getType()->isPointerTy())
322 // Even though we don't look through PHI nodes, we could be called on an
323 // instruction in an unreachable block, which may be on a cycle.
324 SmallPtrSet
<Value
*, 4> Visited
;
329 if (GEPOperator
*GEP
= dyn_cast
<GEPOperator
>(V
)) {
330 if (!GEP
->hasAllZeroIndices())
332 V
= GEP
->getPointerOperand();
333 } else if (Operator::getOpcode(V
) == Instruction::BitCast
) {
334 V
= cast
<Operator
>(V
)->getOperand(0);
335 } else if (GlobalAlias
*GA
= dyn_cast
<GlobalAlias
>(V
)) {
336 if (GA
->mayBeOverridden())
338 V
= GA
->getAliasee();
342 assert(V
->getType()->isPointerTy() && "Unexpected operand type!");
343 } while (Visited
.insert(V
));
348 Value
*Value::getUnderlyingObject(unsigned MaxLookup
) {
349 if (!getType()->isPointerTy())
352 for (unsigned Count
= 0; MaxLookup
== 0 || Count
< MaxLookup
; ++Count
) {
353 if (GEPOperator
*GEP
= dyn_cast
<GEPOperator
>(V
)) {
354 V
= GEP
->getPointerOperand();
355 } else if (Operator::getOpcode(V
) == Instruction::BitCast
) {
356 V
= cast
<Operator
>(V
)->getOperand(0);
357 } else if (GlobalAlias
*GA
= dyn_cast
<GlobalAlias
>(V
)) {
358 if (GA
->mayBeOverridden())
360 V
= GA
->getAliasee();
364 assert(V
->getType()->isPointerTy() && "Unexpected operand type!");
369 /// DoPHITranslation - If this value is a PHI node with CurBB as its parent,
370 /// return the value in the PHI node corresponding to PredBB. If not, return
371 /// ourself. This is useful if you want to know the value something has in a
372 /// predecessor block.
373 Value
*Value::DoPHITranslation(const BasicBlock
*CurBB
,
374 const BasicBlock
*PredBB
) {
375 PHINode
*PN
= dyn_cast
<PHINode
>(this);
376 if (PN
&& PN
->getParent() == CurBB
)
377 return PN
->getIncomingValueForBlock(PredBB
);
381 LLVMContext
&Value::getContext() const { return VTy
->getContext(); }
383 //===----------------------------------------------------------------------===//
384 // ValueHandleBase Class
385 //===----------------------------------------------------------------------===//
387 /// AddToExistingUseList - Add this ValueHandle to the use list for VP, where
388 /// List is known to point into the existing use list.
389 void ValueHandleBase::AddToExistingUseList(ValueHandleBase
**List
) {
390 assert(List
&& "Handle list is null?");
392 // Splice ourselves into the list.
397 Next
->setPrevPtr(&Next
);
398 assert(VP
== Next
->VP
&& "Added to wrong list?");
402 void ValueHandleBase::AddToExistingUseListAfter(ValueHandleBase
*List
) {
403 assert(List
&& "Must insert after existing node");
406 setPrevPtr(&List
->Next
);
409 Next
->setPrevPtr(&Next
);
412 /// AddToUseList - Add this ValueHandle to the use list for VP.
413 void ValueHandleBase::AddToUseList() {
414 assert(VP
&& "Null pointer doesn't have a use list!");
416 LLVMContextImpl
*pImpl
= VP
->getContext().pImpl
;
418 if (VP
->HasValueHandle
) {
419 // If this value already has a ValueHandle, then it must be in the
420 // ValueHandles map already.
421 ValueHandleBase
*&Entry
= pImpl
->ValueHandles
[VP
];
422 assert(Entry
!= 0 && "Value doesn't have any handles?");
423 AddToExistingUseList(&Entry
);
427 // Ok, it doesn't have any handles yet, so we must insert it into the
428 // DenseMap. However, doing this insertion could cause the DenseMap to
429 // reallocate itself, which would invalidate all of the PrevP pointers that
430 // point into the old table. Handle this by checking for reallocation and
431 // updating the stale pointers only if needed.
432 DenseMap
<Value
*, ValueHandleBase
*> &Handles
= pImpl
->ValueHandles
;
433 const void *OldBucketPtr
= Handles
.getPointerIntoBucketsArray();
435 ValueHandleBase
*&Entry
= Handles
[VP
];
436 assert(Entry
== 0 && "Value really did already have handles?");
437 AddToExistingUseList(&Entry
);
438 VP
->HasValueHandle
= true;
440 // If reallocation didn't happen or if this was the first insertion, don't
442 if (Handles
.isPointerIntoBucketsArray(OldBucketPtr
) ||
443 Handles
.size() == 1) {
447 // Okay, reallocation did happen. Fix the Prev Pointers.
448 for (DenseMap
<Value
*, ValueHandleBase
*>::iterator I
= Handles
.begin(),
449 E
= Handles
.end(); I
!= E
; ++I
) {
450 assert(I
->second
&& I
->first
== I
->second
->VP
&& "List invariant broken!");
451 I
->second
->setPrevPtr(&I
->second
);
455 /// RemoveFromUseList - Remove this ValueHandle from its current use list.
456 void ValueHandleBase::RemoveFromUseList() {
457 assert(VP
&& VP
->HasValueHandle
&& "Pointer doesn't have a use list!");
459 // Unlink this from its use list.
460 ValueHandleBase
**PrevPtr
= getPrevPtr();
461 assert(*PrevPtr
== this && "List invariant broken");
465 assert(Next
->getPrevPtr() == &Next
&& "List invariant broken");
466 Next
->setPrevPtr(PrevPtr
);
470 // If the Next pointer was null, then it is possible that this was the last
471 // ValueHandle watching VP. If so, delete its entry from the ValueHandles
473 LLVMContextImpl
*pImpl
= VP
->getContext().pImpl
;
474 DenseMap
<Value
*, ValueHandleBase
*> &Handles
= pImpl
->ValueHandles
;
475 if (Handles
.isPointerIntoBucketsArray(PrevPtr
)) {
477 VP
->HasValueHandle
= false;
482 void ValueHandleBase::ValueIsDeleted(Value
*V
) {
483 assert(V
->HasValueHandle
&& "Should only be called if ValueHandles present");
485 // Get the linked list base, which is guaranteed to exist since the
486 // HasValueHandle flag is set.
487 LLVMContextImpl
*pImpl
= V
->getContext().pImpl
;
488 ValueHandleBase
*Entry
= pImpl
->ValueHandles
[V
];
489 assert(Entry
&& "Value bit set but no entries exist");
491 // We use a local ValueHandleBase as an iterator so that ValueHandles can add
492 // and remove themselves from the list without breaking our iteration. This
493 // is not really an AssertingVH; we just have to give ValueHandleBase a kind.
494 // Note that we deliberately do not the support the case when dropping a value
495 // handle results in a new value handle being permanently added to the list
496 // (as might occur in theory for CallbackVH's): the new value handle will not
497 // be processed and the checking code will mete out righteous punishment if
498 // the handle is still present once we have finished processing all the other
499 // value handles (it is fine to momentarily add then remove a value handle).
500 for (ValueHandleBase
Iterator(Assert
, *Entry
); Entry
; Entry
= Iterator
.Next
) {
501 Iterator
.RemoveFromUseList();
502 Iterator
.AddToExistingUseListAfter(Entry
);
503 assert(Entry
->Next
== &Iterator
&& "Loop invariant broken.");
505 switch (Entry
->getKind()) {
509 // Mark that this value has been deleted by setting it to an invalid Value
511 Entry
->operator=(DenseMapInfo
<Value
*>::getTombstoneKey());
514 // Weak just goes to null, which will unlink it from the list.
518 // Forward to the subclass's implementation.
519 static_cast<CallbackVH
*>(Entry
)->deleted();
524 // All callbacks, weak references, and assertingVHs should be dropped by now.
525 if (V
->HasValueHandle
) {
526 #ifndef NDEBUG // Only in +Asserts mode...
527 dbgs() << "While deleting: " << *V
->getType() << " %" << V
->getNameStr()
529 if (pImpl
->ValueHandles
[V
]->getKind() == Assert
)
530 llvm_unreachable("An asserting value handle still pointed to this"
534 llvm_unreachable("All references to V were not removed?");
539 void ValueHandleBase::ValueIsRAUWd(Value
*Old
, Value
*New
) {
540 assert(Old
->HasValueHandle
&&"Should only be called if ValueHandles present");
541 assert(Old
!= New
&& "Changing value into itself!");
543 // Get the linked list base, which is guaranteed to exist since the
544 // HasValueHandle flag is set.
545 LLVMContextImpl
*pImpl
= Old
->getContext().pImpl
;
546 ValueHandleBase
*Entry
= pImpl
->ValueHandles
[Old
];
548 assert(Entry
&& "Value bit set but no entries exist");
550 // We use a local ValueHandleBase as an iterator so that
551 // ValueHandles can add and remove themselves from the list without
552 // breaking our iteration. This is not really an AssertingVH; we
553 // just have to give ValueHandleBase some kind.
554 for (ValueHandleBase
Iterator(Assert
, *Entry
); Entry
; Entry
= Iterator
.Next
) {
555 Iterator
.RemoveFromUseList();
556 Iterator
.AddToExistingUseListAfter(Entry
);
557 assert(Entry
->Next
== &Iterator
&& "Loop invariant broken.");
559 switch (Entry
->getKind()) {
561 // Asserting handle does not follow RAUW implicitly.
564 // Tracking goes to new value like a WeakVH. Note that this may make it
565 // something incompatible with its templated type. We don't want to have a
566 // virtual (or inline) interface to handle this though, so instead we make
567 // the TrackingVH accessors guarantee that a client never sees this value.
571 // Weak goes to the new value, which will unlink it from Old's list.
572 Entry
->operator=(New
);
575 // Forward to the subclass's implementation.
576 static_cast<CallbackVH
*>(Entry
)->allUsesReplacedWith(New
);
582 // If any new tracking or weak value handles were added while processing the
583 // list, then complain about it now.
584 if (Old
->HasValueHandle
)
585 for (Entry
= pImpl
->ValueHandles
[Old
]; Entry
; Entry
= Entry
->Next
)
586 switch (Entry
->getKind()) {
589 dbgs() << "After RAUW from " << *Old
->getType() << " %"
590 << Old
->getNameStr() << " to " << *New
->getType() << " %"
591 << New
->getNameStr() << "\n";
592 llvm_unreachable("A tracking or weak value handle still pointed to the"
600 /// ~CallbackVH. Empty, but defined here to avoid emitting the vtable
602 CallbackVH::~CallbackVH() {}
605 //===----------------------------------------------------------------------===//
607 //===----------------------------------------------------------------------===//
609 // replaceUsesOfWith - Replaces all references to the "From" definition with
610 // references to the "To" definition.
612 void User::replaceUsesOfWith(Value
*From
, Value
*To
) {
613 if (From
== To
) return; // Duh what?
615 assert((!isa
<Constant
>(this) || isa
<GlobalValue
>(this)) &&
616 "Cannot call User::replaceUsesOfWith on a constant!");
618 for (unsigned i
= 0, E
= getNumOperands(); i
!= E
; ++i
)
619 if (getOperand(i
) == From
) { // Is This operand is pointing to oldval?
620 // The side effects of this setOperand call include linking to
621 // "To", adding "this" to the uses list of To, and
622 // most importantly, removing "this" from the use list of "From".
623 setOperand(i
, To
); // Fix it now...