Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1 | //===-- Value.cpp - Implement the Value class -----------------------------===// |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 9 | // |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 10 | // This file implements the Value, ValueHandle, and User classes. |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Owen Anderson | e8f2185 | 2009-08-18 18:28:58 +0000 | [diff] [blame] | 14 | #include "LLVMContextImpl.h" |
Chris Lattner | 2c6abea | 2002-10-09 23:12:59 +0000 | [diff] [blame] | 15 | #include "llvm/Constant.h" |
Anton Korobeynikov | 82c02b2 | 2008-05-06 22:52:30 +0000 | [diff] [blame] | 16 | #include "llvm/Constants.h" |
Chris Lattner | cdb9bfc | 2005-03-05 19:51:50 +0000 | [diff] [blame] | 17 | #include "llvm/DerivedTypes.h" |
| 18 | #include "llvm/InstrTypes.h" |
Devang Patel | 1f00b53 | 2008-02-21 01:54:02 +0000 | [diff] [blame] | 19 | #include "llvm/Instructions.h" |
Dan Gohman | 1d548d8 | 2009-07-17 22:25:10 +0000 | [diff] [blame] | 20 | #include "llvm/Operator.h" |
Chris Lattner | cdb9bfc | 2005-03-05 19:51:50 +0000 | [diff] [blame] | 21 | #include "llvm/Module.h" |
Devang Patel | a4f43fb | 2009-07-28 21:49:47 +0000 | [diff] [blame] | 22 | #include "llvm/Metadata.h" |
Reid Spencer | 3aaaa0b | 2007-02-05 20:47:22 +0000 | [diff] [blame] | 23 | #include "llvm/ValueSymbolTable.h" |
Daniel Dunbar | 4975db6 | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/SmallString.h" |
Bill Wendling | 6a462f1 | 2006-11-17 08:03:48 +0000 | [diff] [blame] | 25 | #include "llvm/Support/Debug.h" |
Torok Edwin | 6dd2730 | 2009-07-08 18:01:40 +0000 | [diff] [blame] | 26 | #include "llvm/Support/ErrorHandling.h" |
Reid Spencer | 7c16caa | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 27 | #include "llvm/Support/LeakDetector.h" |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 28 | #include "llvm/Support/ManagedStatic.h" |
| 29 | #include "llvm/Support/ValueHandle.h" |
| 30 | #include "llvm/ADT/DenseMap.h" |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 31 | #include <algorithm> |
Chris Lattner | 189d19f | 2003-11-21 20:23:48 +0000 | [diff] [blame] | 32 | using namespace llvm; |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 33 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 34 | //===----------------------------------------------------------------------===// |
| 35 | // Value Class |
| 36 | //===----------------------------------------------------------------------===// |
| 37 | |
Chris Lattner | 25450e3 | 2001-12-13 00:41:27 +0000 | [diff] [blame] | 38 | static inline const Type *checkType(const Type *Ty) { |
| 39 | assert(Ty && "Value defined with a null type: Error!"); |
| 40 | return Ty; |
| 41 | } |
| 42 | |
Chris Lattner | 32ab643 | 2007-02-12 05:18:08 +0000 | [diff] [blame] | 43 | Value::Value(const Type *ty, unsigned scid) |
Benjamin Kramer | 5ff90ed | 2009-09-17 14:51:57 +0000 | [diff] [blame] | 44 | : SubclassID(scid), HasValueHandle(0), HasMetadata(0), |
| 45 | SubclassOptionalData(0), SubclassData(0), VTy(checkType(ty)), |
Gabor Greif | 715b9d2 | 2008-09-19 15:13:20 +0000 | [diff] [blame] | 46 | UseList(0), Name(0) { |
Devang Patel | ad582fc | 2008-02-21 02:14:01 +0000 | [diff] [blame] | 47 | if (isa<CallInst>(this) || isa<InvokeInst>(this)) |
Owen Anderson | 55f1c09 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 48 | assert((VTy->isFirstClassType() || |
| 49 | VTy == Type::getVoidTy(ty->getContext()) || |
Evan Cheng | a05c07e | 2008-07-24 00:08:56 +0000 | [diff] [blame] | 50 | isa<OpaqueType>(ty) || VTy->getTypeID() == Type::StructTyID) && |
Devang Patel | 1f00b53 | 2008-02-21 01:54:02 +0000 | [diff] [blame] | 51 | "invalid CallInst type!"); |
| 52 | else if (!isa<Constant>(this) && !isa<BasicBlock>(this)) |
Owen Anderson | 55f1c09 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 53 | assert((VTy->isFirstClassType() || |
| 54 | VTy == Type::getVoidTy(ty->getContext()) || |
Chris Lattner | 9df9afd | 2004-07-07 18:07:46 +0000 | [diff] [blame] | 55 | isa<OpaqueType>(ty)) && |
Chris Lattner | bea7247 | 2004-07-06 17:44:17 +0000 | [diff] [blame] | 56 | "Cannot create non-first-class values except for constants!"); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 57 | } |
| 58 | |
Gordon Henriksen | 14a5569 | 2007-12-10 02:14:30 +0000 | [diff] [blame] | 59 | Value::~Value() { |
Devang Patel | d5497a4b | 2009-09-16 18:09:00 +0000 | [diff] [blame] | 60 | if (HasMetadata) { |
| 61 | LLVMContext &Context = getContext(); |
| 62 | Context.pImpl->TheMetadata.ValueIsDeleted(this); |
| 63 | } |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 64 | |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 65 | // Notify all ValueHandles (if present) that this value is going away. |
| 66 | if (HasValueHandle) |
| 67 | ValueHandleBase::ValueIsDeleted(this); |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 68 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 69 | #ifndef NDEBUG // Only in -g mode... |
Chris Lattner | 874ddad | 2001-06-11 15:04:40 +0000 | [diff] [blame] | 70 | // Check to make sure that there are no uses of this value that are still |
| 71 | // around when the value is destroyed. If there are, then we have a dangling |
| 72 | // reference and something is wrong. This code is here to print out what is |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 73 | // still being referenced. The value in question should be printed as |
Chris Lattner | 874ddad | 2001-06-11 15:04:40 +0000 | [diff] [blame] | 74 | // a <badref> |
| 75 | // |
Gordon Henriksen | 14a5569 | 2007-12-10 02:14:30 +0000 | [diff] [blame] | 76 | if (!use_empty()) { |
Daniel Dunbar | b99eac8 | 2009-07-24 10:05:20 +0000 | [diff] [blame] | 77 | errs() << "While deleting: " << *VTy << " %" << getNameStr() << "\n"; |
Gordon Henriksen | 14a5569 | 2007-12-10 02:14:30 +0000 | [diff] [blame] | 78 | for (use_iterator I = use_begin(), E = use_end(); I != E; ++I) |
Daniel Dunbar | b99eac8 | 2009-07-24 10:05:20 +0000 | [diff] [blame] | 79 | errs() << "Use still stuck around after Def is destroyed:" |
Bill Wendling | 6a462f1 | 2006-11-17 08:03:48 +0000 | [diff] [blame] | 80 | << **I << "\n"; |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 81 | } |
| 82 | #endif |
Gordon Henriksen | 14a5569 | 2007-12-10 02:14:30 +0000 | [diff] [blame] | 83 | assert(use_empty() && "Uses remain when a value is destroyed!"); |
Chris Lattner | 694285c | 2009-08-04 23:07:12 +0000 | [diff] [blame] | 84 | |
| 85 | // If this value is named, destroy the name. This should not be in a symtab |
| 86 | // at this point. |
| 87 | if (Name) |
| 88 | Name->Destroy(); |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 89 | |
Chris Lattner | 694285c | 2009-08-04 23:07:12 +0000 | [diff] [blame] | 90 | // There should be no uses of this object anymore, remove it. |
| 91 | LeakDetector::removeGarbageObject(this); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 92 | } |
| 93 | |
Chris Lattner | 4947e67 | 2005-02-01 01:24:21 +0000 | [diff] [blame] | 94 | /// hasNUses - Return true if this Value has exactly N users. |
| 95 | /// |
| 96 | bool Value::hasNUses(unsigned N) const { |
| 97 | use_const_iterator UI = use_begin(), E = use_end(); |
| 98 | |
| 99 | for (; N; --N, ++UI) |
| 100 | if (UI == E) return false; // Too few. |
| 101 | return UI == E; |
| 102 | } |
| 103 | |
Chris Lattner | d36552f | 2005-02-23 16:51:11 +0000 | [diff] [blame] | 104 | /// hasNUsesOrMore - Return true if this value has N users or more. This is |
| 105 | /// logically equivalent to getNumUses() >= N. |
| 106 | /// |
| 107 | bool Value::hasNUsesOrMore(unsigned N) const { |
| 108 | use_const_iterator UI = use_begin(), E = use_end(); |
| 109 | |
| 110 | for (; N; --N, ++UI) |
| 111 | if (UI == E) return false; // Too few. |
| 112 | |
| 113 | return true; |
| 114 | } |
| 115 | |
Evan Cheng | 89553cc | 2008-06-12 21:15:59 +0000 | [diff] [blame] | 116 | /// isUsedInBasicBlock - Return true if this value is used in the specified |
| 117 | /// basic block. |
Bill Wendling | 0c37421 | 2008-09-25 22:42:01 +0000 | [diff] [blame] | 118 | bool Value::isUsedInBasicBlock(const BasicBlock *BB) const { |
Evan Cheng | 89553cc | 2008-06-12 21:15:59 +0000 | [diff] [blame] | 119 | for (use_const_iterator I = use_begin(), E = use_end(); I != E; ++I) { |
| 120 | const Instruction *User = dyn_cast<Instruction>(*I); |
| 121 | if (User && User->getParent() == BB) |
| 122 | return true; |
| 123 | } |
| 124 | return false; |
| 125 | } |
| 126 | |
Chris Lattner | d36552f | 2005-02-23 16:51:11 +0000 | [diff] [blame] | 127 | |
Chris Lattner | 4947e67 | 2005-02-01 01:24:21 +0000 | [diff] [blame] | 128 | /// getNumUses - This method computes the number of uses of this Value. This |
| 129 | /// is a linear time operation. Use hasOneUse or hasNUses to check for specific |
| 130 | /// values. |
| 131 | unsigned Value::getNumUses() const { |
| 132 | return (unsigned)std::distance(use_begin(), use_end()); |
| 133 | } |
| 134 | |
Chris Lattner | b625082 | 2007-02-11 00:37:27 +0000 | [diff] [blame] | 135 | static bool getSymTab(Value *V, ValueSymbolTable *&ST) { |
Chris Lattner | 569c8ac | 2007-02-11 19:12:18 +0000 | [diff] [blame] | 136 | ST = 0; |
Chris Lattner | b625082 | 2007-02-11 00:37:27 +0000 | [diff] [blame] | 137 | if (Instruction *I = dyn_cast<Instruction>(V)) { |
| 138 | if (BasicBlock *P = I->getParent()) |
| 139 | if (Function *PP = P->getParent()) |
| 140 | ST = &PP->getValueSymbolTable(); |
| 141 | } else if (BasicBlock *BB = dyn_cast<BasicBlock>(V)) { |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 142 | if (Function *P = BB->getParent()) |
Chris Lattner | b625082 | 2007-02-11 00:37:27 +0000 | [diff] [blame] | 143 | ST = &P->getValueSymbolTable(); |
| 144 | } else if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) { |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 145 | if (Module *P = GV->getParent()) |
Chris Lattner | b625082 | 2007-02-11 00:37:27 +0000 | [diff] [blame] | 146 | ST = &P->getValueSymbolTable(); |
| 147 | } else if (Argument *A = dyn_cast<Argument>(V)) { |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 148 | if (Function *P = A->getParent()) |
Chris Lattner | b625082 | 2007-02-11 00:37:27 +0000 | [diff] [blame] | 149 | ST = &P->getValueSymbolTable(); |
Devang Patel | 18dfdc9 | 2009-07-29 17:16:17 +0000 | [diff] [blame] | 150 | } else if (NamedMDNode *N = dyn_cast<NamedMDNode>(V)) { |
| 151 | if (Module *P = N->getParent()) { |
| 152 | ST = &P->getValueSymbolTable(); |
| 153 | } |
Devang Patel | 7428d8a | 2009-07-22 17:43:22 +0000 | [diff] [blame] | 154 | } else if (isa<MDString>(V)) |
| 155 | return true; |
| 156 | else { |
Chris Lattner | b625082 | 2007-02-11 00:37:27 +0000 | [diff] [blame] | 157 | assert(isa<Constant>(V) && "Unknown value type!"); |
| 158 | return true; // no name is setable for this. |
| 159 | } |
| 160 | return false; |
| 161 | } |
Chris Lattner | 2c6abea | 2002-10-09 23:12:59 +0000 | [diff] [blame] | 162 | |
Daniel Dunbar | 3228594 | 2009-07-26 00:51:56 +0000 | [diff] [blame] | 163 | StringRef Value::getName() const { |
Daniel Dunbar | 7cc8f7e | 2009-07-26 09:22:02 +0000 | [diff] [blame] | 164 | // Make sure the empty string is still a C string. For historical reasons, |
| 165 | // some clients want to call .data() on the result and expect it to be null |
| 166 | // terminated. |
| 167 | if (!Name) return StringRef("", 0); |
Daniel Dunbar | 3228594 | 2009-07-26 00:51:56 +0000 | [diff] [blame] | 168 | return Name->getKey(); |
Chris Lattner | 5109a88 | 2007-08-10 15:34:35 +0000 | [diff] [blame] | 169 | } |
| 170 | |
Chris Lattner | fd27ed9 | 2007-02-15 18:53:54 +0000 | [diff] [blame] | 171 | std::string Value::getNameStr() const { |
Daniel Dunbar | 987ec56 | 2009-07-26 00:17:14 +0000 | [diff] [blame] | 172 | return getName().str(); |
Chris Lattner | 32ab643 | 2007-02-12 05:18:08 +0000 | [diff] [blame] | 173 | } |
Chris Lattner | cdb9bfc | 2005-03-05 19:51:50 +0000 | [diff] [blame] | 174 | |
Daniel Dunbar | d786b51 | 2009-07-26 00:34:27 +0000 | [diff] [blame] | 175 | void Value::setName(const Twine &NewName) { |
Daniel Dunbar | cb13b48 | 2009-08-19 23:37:23 +0000 | [diff] [blame] | 176 | // Fast path for common IRBuilder case of setName("") when there is no name. |
| 177 | if (NewName.isTriviallyEmpty() && !hasName()) |
| 178 | return; |
| 179 | |
Daniel Dunbar | acf0b25 | 2009-08-19 05:08:06 +0000 | [diff] [blame] | 180 | SmallString<256> NameData; |
Daniel Dunbar | d786b51 | 2009-07-26 00:34:27 +0000 | [diff] [blame] | 181 | NewName.toVector(NameData); |
Chris Lattner | 1a5de58 | 2007-02-12 18:52:59 +0000 | [diff] [blame] | 182 | |
Daniel Dunbar | d786b51 | 2009-07-26 00:34:27 +0000 | [diff] [blame] | 183 | const char *NameStr = NameData.data(); |
| 184 | unsigned NameLen = NameData.size(); |
| 185 | |
Daniel Dunbar | a32c999 | 2009-07-26 00:42:33 +0000 | [diff] [blame] | 186 | // Name isn't changing? |
| 187 | if (getName() == StringRef(NameStr, NameLen)) |
| 188 | return; |
| 189 | |
Owen Anderson | 55f1c09 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 190 | assert(getType() != Type::getVoidTy(getContext()) && |
| 191 | "Cannot assign a name to void values!"); |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 192 | |
Chris Lattner | ffb3778 | 2005-03-06 02:14:28 +0000 | [diff] [blame] | 193 | // Get the symbol table to update for this object. |
Chris Lattner | b625082 | 2007-02-11 00:37:27 +0000 | [diff] [blame] | 194 | ValueSymbolTable *ST; |
| 195 | if (getSymTab(this, ST)) |
| 196 | return; // Cannot set a name on this value (e.g. constant). |
Chris Lattner | cdb9bfc | 2005-03-05 19:51:50 +0000 | [diff] [blame] | 197 | |
Chris Lattner | 32ab643 | 2007-02-12 05:18:08 +0000 | [diff] [blame] | 198 | if (!ST) { // No symbol table to update? Just do the change. |
Chris Lattner | 1a5de58 | 2007-02-12 18:52:59 +0000 | [diff] [blame] | 199 | if (NameLen == 0) { |
Chris Lattner | 32ab643 | 2007-02-12 05:18:08 +0000 | [diff] [blame] | 200 | // Free the name for this value. |
| 201 | Name->Destroy(); |
| 202 | Name = 0; |
Chris Lattner | 1a5de58 | 2007-02-12 18:52:59 +0000 | [diff] [blame] | 203 | return; |
Chris Lattner | ffb3778 | 2005-03-06 02:14:28 +0000 | [diff] [blame] | 204 | } |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 205 | |
Daniel Dunbar | a32c999 | 2009-07-26 00:42:33 +0000 | [diff] [blame] | 206 | if (Name) |
Chris Lattner | 1a5de58 | 2007-02-12 18:52:59 +0000 | [diff] [blame] | 207 | Name->Destroy(); |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 208 | |
Chris Lattner | 1a5de58 | 2007-02-12 18:52:59 +0000 | [diff] [blame] | 209 | // NOTE: Could optimize for the case the name is shrinking to not deallocate |
| 210 | // then reallocated. |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 211 | |
Chris Lattner | 1a5de58 | 2007-02-12 18:52:59 +0000 | [diff] [blame] | 212 | // Create the new name. |
| 213 | Name = ValueName::Create(NameStr, NameStr+NameLen); |
| 214 | Name->setValue(this); |
Chris Lattner | 32ab643 | 2007-02-12 05:18:08 +0000 | [diff] [blame] | 215 | return; |
Chris Lattner | ffb3778 | 2005-03-06 02:14:28 +0000 | [diff] [blame] | 216 | } |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 217 | |
Chris Lattner | 32ab643 | 2007-02-12 05:18:08 +0000 | [diff] [blame] | 218 | // NOTE: Could optimize for the case the name is shrinking to not deallocate |
| 219 | // then reallocated. |
| 220 | if (hasName()) { |
Chris Lattner | 32ab643 | 2007-02-12 05:18:08 +0000 | [diff] [blame] | 221 | // Remove old name. |
| 222 | ST->removeValueName(Name); |
| 223 | Name->Destroy(); |
| 224 | Name = 0; |
| 225 | |
Chris Lattner | 1a5de58 | 2007-02-12 18:52:59 +0000 | [diff] [blame] | 226 | if (NameLen == 0) |
| 227 | return; |
Chris Lattner | 32ab643 | 2007-02-12 05:18:08 +0000 | [diff] [blame] | 228 | } |
| 229 | |
| 230 | // Name is changing to something new. |
Daniel Dunbar | f01154c | 2009-07-23 18:50:53 +0000 | [diff] [blame] | 231 | Name = ST->createValueName(StringRef(NameStr, NameLen), this); |
Chris Lattner | cdb9bfc | 2005-03-05 19:51:50 +0000 | [diff] [blame] | 232 | } |
| 233 | |
Chris Lattner | 1a5de58 | 2007-02-12 18:52:59 +0000 | [diff] [blame] | 234 | |
Chris Lattner | b625082 | 2007-02-11 00:37:27 +0000 | [diff] [blame] | 235 | /// takeName - transfer the name from V to this value, setting V's name to |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 236 | /// empty. It is an error to call V->takeName(V). |
Chris Lattner | b625082 | 2007-02-11 00:37:27 +0000 | [diff] [blame] | 237 | void Value::takeName(Value *V) { |
Chris Lattner | cf835ff | 2007-02-15 20:01:43 +0000 | [diff] [blame] | 238 | ValueSymbolTable *ST = 0; |
| 239 | // If this value has a name, drop it. |
| 240 | if (hasName()) { |
| 241 | // Get the symtab this is in. |
| 242 | if (getSymTab(this, ST)) { |
| 243 | // We can't set a name on this value, but we need to clear V's name if |
| 244 | // it has one. |
Daniel Dunbar | d786b51 | 2009-07-26 00:34:27 +0000 | [diff] [blame] | 245 | if (V->hasName()) V->setName(""); |
Chris Lattner | cf835ff | 2007-02-15 20:01:43 +0000 | [diff] [blame] | 246 | return; // Cannot set a name on this value (e.g. constant). |
| 247 | } |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 248 | |
Chris Lattner | cf835ff | 2007-02-15 20:01:43 +0000 | [diff] [blame] | 249 | // Remove old name. |
| 250 | if (ST) |
| 251 | ST->removeValueName(Name); |
| 252 | Name->Destroy(); |
| 253 | Name = 0; |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 254 | } |
| 255 | |
Chris Lattner | cf835ff | 2007-02-15 20:01:43 +0000 | [diff] [blame] | 256 | // Now we know that this has no name. |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 257 | |
Chris Lattner | cf835ff | 2007-02-15 20:01:43 +0000 | [diff] [blame] | 258 | // If V has no name either, we're done. |
| 259 | if (!V->hasName()) return; |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 260 | |
Chris Lattner | cf835ff | 2007-02-15 20:01:43 +0000 | [diff] [blame] | 261 | // Get this's symtab if we didn't before. |
| 262 | if (!ST) { |
| 263 | if (getSymTab(this, ST)) { |
| 264 | // Clear V's name. |
Daniel Dunbar | d786b51 | 2009-07-26 00:34:27 +0000 | [diff] [blame] | 265 | V->setName(""); |
Chris Lattner | cf835ff | 2007-02-15 20:01:43 +0000 | [diff] [blame] | 266 | return; // Cannot set a name on this value (e.g. constant). |
| 267 | } |
| 268 | } |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 269 | |
Chris Lattner | cf835ff | 2007-02-15 20:01:43 +0000 | [diff] [blame] | 270 | // Get V's ST, this should always succed, because V has a name. |
| 271 | ValueSymbolTable *VST; |
| 272 | bool Failure = getSymTab(V, VST); |
Chris Lattner | 106b046 | 2008-06-21 19:47:03 +0000 | [diff] [blame] | 273 | assert(!Failure && "V has a name, so it should have a ST!"); Failure=Failure; |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 274 | |
Chris Lattner | cf835ff | 2007-02-15 20:01:43 +0000 | [diff] [blame] | 275 | // If these values are both in the same symtab, we can do this very fast. |
| 276 | // This works even if both values have no symtab yet. |
| 277 | if (ST == VST) { |
| 278 | // Take the name! |
| 279 | Name = V->Name; |
| 280 | V->Name = 0; |
| 281 | Name->setValue(this); |
Chris Lattner | cba18e3 | 2007-02-11 01:04:09 +0000 | [diff] [blame] | 282 | return; |
| 283 | } |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 284 | |
Chris Lattner | cf835ff | 2007-02-15 20:01:43 +0000 | [diff] [blame] | 285 | // Otherwise, things are slightly more complex. Remove V's name from VST and |
| 286 | // then reinsert it into ST. |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 287 | |
Chris Lattner | cf835ff | 2007-02-15 20:01:43 +0000 | [diff] [blame] | 288 | if (VST) |
| 289 | VST->removeValueName(V->Name); |
| 290 | Name = V->Name; |
| 291 | V->Name = 0; |
| 292 | Name->setValue(this); |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 293 | |
Chris Lattner | cf835ff | 2007-02-15 20:01:43 +0000 | [diff] [blame] | 294 | if (ST) |
| 295 | ST->reinsertValue(this); |
Chris Lattner | b625082 | 2007-02-11 00:37:27 +0000 | [diff] [blame] | 296 | } |
| 297 | |
| 298 | |
Chris Lattner | 9f15812 | 2003-08-29 05:09:37 +0000 | [diff] [blame] | 299 | // uncheckedReplaceAllUsesWith - This is exactly the same as replaceAllUsesWith, |
| 300 | // except that it doesn't have all of the asserts. The asserts fail because we |
| 301 | // are half-way done resolving types, which causes some types to exist as two |
| 302 | // different Type*'s at the same time. This is a sledgehammer to work around |
| 303 | // this problem. |
| 304 | // |
| 305 | void Value::uncheckedReplaceAllUsesWith(Value *New) { |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 306 | // Notify all ValueHandles (if present) that this value is going away. |
| 307 | if (HasValueHandle) |
| 308 | ValueHandleBase::ValueIsRAUWd(this, New); |
Devang Patel | e6f26a7 | 2009-10-13 17:00:54 +0000 | [diff] [blame] | 309 | if (HasMetadata) { |
| 310 | LLVMContext &Context = getContext(); |
| 311 | Context.pImpl->TheMetadata.ValueIsRAUWd(this, New); |
| 312 | } |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 313 | |
Chris Lattner | 4947e67 | 2005-02-01 01:24:21 +0000 | [diff] [blame] | 314 | while (!use_empty()) { |
Gabor Greif | 715b9d2 | 2008-09-19 15:13:20 +0000 | [diff] [blame] | 315 | Use &U = *UseList; |
Chris Lattner | 9f15812 | 2003-08-29 05:09:37 +0000 | [diff] [blame] | 316 | // Must handle Constants specially, we cannot call replaceUsesOfWith on a |
Chris Lattner | 8e5b2c2 | 2007-08-21 00:21:07 +0000 | [diff] [blame] | 317 | // constant because they are uniqued. |
Chris Lattner | 079edeb | 2003-10-16 16:53:07 +0000 | [diff] [blame] | 318 | if (Constant *C = dyn_cast<Constant>(U.getUser())) { |
Chris Lattner | 8e5b2c2 | 2007-08-21 00:21:07 +0000 | [diff] [blame] | 319 | if (!isa<GlobalValue>(C)) { |
Chris Lattner | 7a1450d | 2005-10-04 18:13:04 +0000 | [diff] [blame] | 320 | C->replaceUsesOfWithOnConstant(this, New, &U); |
Chris Lattner | 8e5b2c2 | 2007-08-21 00:21:07 +0000 | [diff] [blame] | 321 | continue; |
| 322 | } |
Chris Lattner | 9f15812 | 2003-08-29 05:09:37 +0000 | [diff] [blame] | 323 | } |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 324 | |
Chris Lattner | 8e5b2c2 | 2007-08-21 00:21:07 +0000 | [diff] [blame] | 325 | U.set(New); |
Chris Lattner | 9f15812 | 2003-08-29 05:09:37 +0000 | [diff] [blame] | 326 | } |
| 327 | } |
| 328 | |
Chris Lattner | 079edeb | 2003-10-16 16:53:07 +0000 | [diff] [blame] | 329 | void Value::replaceAllUsesWith(Value *New) { |
| 330 | assert(New && "Value::replaceAllUsesWith(<null>) is invalid!"); |
| 331 | assert(New != this && "this->replaceAllUsesWith(this) is NOT valid!"); |
| 332 | assert(New->getType() == getType() && |
| 333 | "replaceAllUses of value with new value of different type!"); |
Chris Lattner | 9f15812 | 2003-08-29 05:09:37 +0000 | [diff] [blame] | 334 | |
Chris Lattner | 079edeb | 2003-10-16 16:53:07 +0000 | [diff] [blame] | 335 | uncheckedReplaceAllUsesWith(New); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 336 | } |
| 337 | |
Anton Korobeynikov | fc2edad | 2008-05-07 22:54:15 +0000 | [diff] [blame] | 338 | Value *Value::stripPointerCasts() { |
Duncan Sands | d65a4da | 2008-10-01 15:25:41 +0000 | [diff] [blame] | 339 | if (!isa<PointerType>(getType())) |
| 340 | return this; |
Duncan Sands | e59fa78 | 2008-12-29 21:06:19 +0000 | [diff] [blame] | 341 | Value *V = this; |
| 342 | do { |
Dan Gohman | e1019db | 2009-07-17 23:55:56 +0000 | [diff] [blame] | 343 | if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) { |
Duncan Sands | e59fa78 | 2008-12-29 21:06:19 +0000 | [diff] [blame] | 344 | if (!GEP->hasAllZeroIndices()) |
| 345 | return V; |
Dan Gohman | e1019db | 2009-07-17 23:55:56 +0000 | [diff] [blame] | 346 | V = GEP->getPointerOperand(); |
| 347 | } else if (Operator::getOpcode(V) == Instruction::BitCast) { |
| 348 | V = cast<Operator>(V)->getOperand(0); |
Dan Gohman | 4ce5ade | 2009-08-27 17:55:13 +0000 | [diff] [blame] | 349 | } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) { |
| 350 | if (GA->mayBeOverridden()) |
| 351 | return V; |
| 352 | V = GA->getAliasee(); |
Duncan Sands | e59fa78 | 2008-12-29 21:06:19 +0000 | [diff] [blame] | 353 | } else { |
| 354 | return V; |
Anton Korobeynikov | fc2edad | 2008-05-07 22:54:15 +0000 | [diff] [blame] | 355 | } |
Duncan Sands | e59fa78 | 2008-12-29 21:06:19 +0000 | [diff] [blame] | 356 | assert(isa<PointerType>(V->getType()) && "Unexpected operand type!"); |
| 357 | } while (1); |
Anton Korobeynikov | fc2edad | 2008-05-07 22:54:15 +0000 | [diff] [blame] | 358 | } |
| 359 | |
Duncan Sands | d65a4da | 2008-10-01 15:25:41 +0000 | [diff] [blame] | 360 | Value *Value::getUnderlyingObject() { |
| 361 | if (!isa<PointerType>(getType())) |
| 362 | return this; |
Duncan Sands | e59fa78 | 2008-12-29 21:06:19 +0000 | [diff] [blame] | 363 | Value *V = this; |
Nick Lewycky | 4a7bcf6 | 2009-04-15 06:23:41 +0000 | [diff] [blame] | 364 | unsigned MaxLookup = 6; |
Duncan Sands | e59fa78 | 2008-12-29 21:06:19 +0000 | [diff] [blame] | 365 | do { |
Dan Gohman | e1019db | 2009-07-17 23:55:56 +0000 | [diff] [blame] | 366 | if (GEPOperator *GEP = dyn_cast<GEPOperator>(V)) { |
Dan Gohman | e1019db | 2009-07-17 23:55:56 +0000 | [diff] [blame] | 367 | V = GEP->getPointerOperand(); |
| 368 | } else if (Operator::getOpcode(V) == Instruction::BitCast) { |
| 369 | V = cast<Operator>(V)->getOperand(0); |
Dan Gohman | 4ce5ade | 2009-08-27 17:55:13 +0000 | [diff] [blame] | 370 | } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) { |
| 371 | if (GA->mayBeOverridden()) |
| 372 | return V; |
| 373 | V = GA->getAliasee(); |
Duncan Sands | e59fa78 | 2008-12-29 21:06:19 +0000 | [diff] [blame] | 374 | } else { |
| 375 | return V; |
| 376 | } |
| 377 | assert(isa<PointerType>(V->getType()) && "Unexpected operand type!"); |
Nick Lewycky | 4a7bcf6 | 2009-04-15 06:23:41 +0000 | [diff] [blame] | 378 | } while (--MaxLookup); |
| 379 | return V; |
Duncan Sands | d65a4da | 2008-10-01 15:25:41 +0000 | [diff] [blame] | 380 | } |
| 381 | |
Chris Lattner | 027d726 | 2008-12-02 18:33:11 +0000 | [diff] [blame] | 382 | /// DoPHITranslation - If this value is a PHI node with CurBB as its parent, |
Chris Lattner | 9c1b502 | 2008-12-02 07:16:45 +0000 | [diff] [blame] | 383 | /// return the value in the PHI node corresponding to PredBB. If not, return |
| 384 | /// ourself. This is useful if you want to know the value something has in a |
| 385 | /// predecessor block. |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 386 | Value *Value::DoPHITranslation(const BasicBlock *CurBB, |
Chris Lattner | 9c1b502 | 2008-12-02 07:16:45 +0000 | [diff] [blame] | 387 | const BasicBlock *PredBB) { |
| 388 | PHINode *PN = dyn_cast<PHINode>(this); |
| 389 | if (PN && PN->getParent() == CurBB) |
| 390 | return PN->getIncomingValueForBlock(PredBB); |
| 391 | return this; |
| 392 | } |
| 393 | |
Owen Anderson | 47db941 | 2009-07-22 00:24:57 +0000 | [diff] [blame] | 394 | LLVMContext &Value::getContext() const { return VTy->getContext(); } |
| 395 | |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 396 | //===----------------------------------------------------------------------===// |
| 397 | // ValueHandleBase Class |
| 398 | //===----------------------------------------------------------------------===// |
| 399 | |
Dan Gohman | 3f02595 | 2009-05-04 17:25:21 +0000 | [diff] [blame] | 400 | /// AddToExistingUseList - Add this ValueHandle to the use list for VP, where |
| 401 | /// List is known to point into the existing use list. |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 402 | void ValueHandleBase::AddToExistingUseList(ValueHandleBase **List) { |
| 403 | assert(List && "Handle list is null?"); |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 404 | |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 405 | // Splice ourselves into the list. |
| 406 | Next = *List; |
| 407 | *List = this; |
| 408 | setPrevPtr(List); |
| 409 | if (Next) { |
| 410 | Next->setPrevPtr(&Next); |
| 411 | assert(VP == Next->VP && "Added to wrong list?"); |
| 412 | } |
| 413 | } |
| 414 | |
Jeffrey Yasskin | 406ac81 | 2009-10-12 17:43:32 +0000 | [diff] [blame] | 415 | void ValueHandleBase::AddToExistingUseListAfter(ValueHandleBase *List) { |
| 416 | assert(List && "Must insert after existing node"); |
| 417 | |
| 418 | Next = List->Next; |
| 419 | setPrevPtr(&List->Next); |
| 420 | List->Next = this; |
| 421 | if (Next) |
| 422 | Next->setPrevPtr(&Next); |
| 423 | } |
| 424 | |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 425 | /// AddToUseList - Add this ValueHandle to the use list for VP. |
| 426 | void ValueHandleBase::AddToUseList() { |
| 427 | assert(VP && "Null pointer doesn't have a use list!"); |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 428 | |
Owen Anderson | e8f2185 | 2009-08-18 18:28:58 +0000 | [diff] [blame] | 429 | LLVMContextImpl *pImpl = VP->getContext().pImpl; |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 430 | |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 431 | if (VP->HasValueHandle) { |
| 432 | // If this value already has a ValueHandle, then it must be in the |
| 433 | // ValueHandles map already. |
Owen Anderson | e8f2185 | 2009-08-18 18:28:58 +0000 | [diff] [blame] | 434 | ValueHandleBase *&Entry = pImpl->ValueHandles[VP]; |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 435 | assert(Entry != 0 && "Value doesn't have any handles?"); |
Owen Anderson | 4b660a8 | 2009-06-17 17:36:57 +0000 | [diff] [blame] | 436 | AddToExistingUseList(&Entry); |
Owen Anderson | 4b660a8 | 2009-06-17 17:36:57 +0000 | [diff] [blame] | 437 | return; |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 438 | } |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 439 | |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 440 | // Ok, it doesn't have any handles yet, so we must insert it into the |
| 441 | // DenseMap. However, doing this insertion could cause the DenseMap to |
| 442 | // reallocate itself, which would invalidate all of the PrevP pointers that |
| 443 | // point into the old table. Handle this by checking for reallocation and |
| 444 | // updating the stale pointers only if needed. |
Owen Anderson | e8f2185 | 2009-08-18 18:28:58 +0000 | [diff] [blame] | 445 | DenseMap<Value*, ValueHandleBase*> &Handles = pImpl->ValueHandles; |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 446 | const void *OldBucketPtr = Handles.getPointerIntoBucketsArray(); |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 447 | |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 448 | ValueHandleBase *&Entry = Handles[VP]; |
| 449 | assert(Entry == 0 && "Value really did already have handles?"); |
| 450 | AddToExistingUseList(&Entry); |
Dan Gohman | 3f02595 | 2009-05-04 17:25:21 +0000 | [diff] [blame] | 451 | VP->HasValueHandle = true; |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 452 | |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 453 | // If reallocation didn't happen or if this was the first insertion, don't |
| 454 | // walk the table. |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 455 | if (Handles.isPointerIntoBucketsArray(OldBucketPtr) || |
Owen Anderson | 4b660a8 | 2009-06-17 17:36:57 +0000 | [diff] [blame] | 456 | Handles.size() == 1) { |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 457 | return; |
Owen Anderson | 4b660a8 | 2009-06-17 17:36:57 +0000 | [diff] [blame] | 458 | } |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 459 | |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 460 | // Okay, reallocation did happen. Fix the Prev Pointers. |
Owen Anderson | e8f2185 | 2009-08-18 18:28:58 +0000 | [diff] [blame] | 461 | for (DenseMap<Value*, ValueHandleBase*>::iterator I = Handles.begin(), |
| 462 | E = Handles.end(); I != E; ++I) { |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 463 | assert(I->second && I->first == I->second->VP && "List invariant broken!"); |
| 464 | I->second->setPrevPtr(&I->second); |
| 465 | } |
| 466 | } |
| 467 | |
| 468 | /// RemoveFromUseList - Remove this ValueHandle from its current use list. |
| 469 | void ValueHandleBase::RemoveFromUseList() { |
| 470 | assert(VP && VP->HasValueHandle && "Pointer doesn't have a use list!"); |
| 471 | |
| 472 | // Unlink this from its use list. |
| 473 | ValueHandleBase **PrevPtr = getPrevPtr(); |
| 474 | assert(*PrevPtr == this && "List invariant broken"); |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 475 | |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 476 | *PrevPtr = Next; |
| 477 | if (Next) { |
| 478 | assert(Next->getPrevPtr() == &Next && "List invariant broken"); |
| 479 | Next->setPrevPtr(PrevPtr); |
| 480 | return; |
| 481 | } |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 482 | |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 483 | // If the Next pointer was null, then it is possible that this was the last |
| 484 | // ValueHandle watching VP. If so, delete its entry from the ValueHandles |
| 485 | // map. |
Owen Anderson | e8f2185 | 2009-08-18 18:28:58 +0000 | [diff] [blame] | 486 | LLVMContextImpl *pImpl = VP->getContext().pImpl; |
| 487 | DenseMap<Value*, ValueHandleBase*> &Handles = pImpl->ValueHandles; |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 488 | if (Handles.isPointerIntoBucketsArray(PrevPtr)) { |
| 489 | Handles.erase(VP); |
| 490 | VP->HasValueHandle = false; |
| 491 | } |
| 492 | } |
| 493 | |
| 494 | |
| 495 | void ValueHandleBase::ValueIsDeleted(Value *V) { |
| 496 | assert(V->HasValueHandle && "Should only be called if ValueHandles present"); |
| 497 | |
| 498 | // Get the linked list base, which is guaranteed to exist since the |
| 499 | // HasValueHandle flag is set. |
Owen Anderson | e8f2185 | 2009-08-18 18:28:58 +0000 | [diff] [blame] | 500 | LLVMContextImpl *pImpl = V->getContext().pImpl; |
| 501 | ValueHandleBase *Entry = pImpl->ValueHandles[V]; |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 502 | assert(Entry && "Value bit set but no entries exist"); |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 503 | |
Jeffrey Yasskin | 406ac81 | 2009-10-12 17:43:32 +0000 | [diff] [blame] | 504 | // We use a local ValueHandleBase as an iterator so that |
| 505 | // ValueHandles can add and remove themselves from the list without |
| 506 | // breaking our iteration. This is not really an AssertingVH; we |
| 507 | // just have to give ValueHandleBase some kind. |
| 508 | for (ValueHandleBase Iterator(Assert, *Entry); Entry; Entry = Iterator.Next) { |
| 509 | Iterator.RemoveFromUseList(); |
| 510 | Iterator.AddToExistingUseListAfter(Entry); |
| 511 | assert(Entry->Next == &Iterator && "Loop invariant broken."); |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 512 | |
Jeffrey Yasskin | 406ac81 | 2009-10-12 17:43:32 +0000 | [diff] [blame] | 513 | switch (Entry->getKind()) { |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 514 | case Assert: |
Jeffrey Yasskin | 406ac81 | 2009-10-12 17:43:32 +0000 | [diff] [blame] | 515 | break; |
Daniel Dunbar | 70d4fb0 | 2009-09-22 02:02:33 +0000 | [diff] [blame] | 516 | case Tracking: |
| 517 | // Mark that this value has been deleted by setting it to an invalid Value |
| 518 | // pointer. |
Jeffrey Yasskin | 406ac81 | 2009-10-12 17:43:32 +0000 | [diff] [blame] | 519 | Entry->operator=(DenseMapInfo<Value *>::getTombstoneKey()); |
Daniel Dunbar | 70d4fb0 | 2009-09-22 02:02:33 +0000 | [diff] [blame] | 520 | break; |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 521 | case Weak: |
| 522 | // Weak just goes to null, which will unlink it from the list. |
Jeffrey Yasskin | 406ac81 | 2009-10-12 17:43:32 +0000 | [diff] [blame] | 523 | Entry->operator=(0); |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 524 | break; |
| 525 | case Callback: |
Dan Gohman | 745ad44 | 2009-05-02 21:10:48 +0000 | [diff] [blame] | 526 | // Forward to the subclass's implementation. |
Jeffrey Yasskin | 406ac81 | 2009-10-12 17:43:32 +0000 | [diff] [blame] | 527 | static_cast<CallbackVH*>(Entry)->deleted(); |
Dan Gohman | 745ad44 | 2009-05-02 21:10:48 +0000 | [diff] [blame] | 528 | break; |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 529 | } |
| 530 | } |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 531 | |
Jeffrey Yasskin | 406ac81 | 2009-10-12 17:43:32 +0000 | [diff] [blame] | 532 | // All callbacks, weak references, and assertingVHs should be dropped by now. |
| 533 | if (V->HasValueHandle) { |
| 534 | #ifndef NDEBUG // Only in +Asserts mode... |
| 535 | errs() << "While deleting: " << *V->getType() << " %" << V->getNameStr() |
| 536 | << "\n"; |
| 537 | if (pImpl->ValueHandles[V]->getKind() == Assert) |
| 538 | llvm_unreachable("An asserting value handle still pointed to this" |
| 539 | " value!"); |
| 540 | |
| 541 | #endif |
| 542 | llvm_unreachable("All references to V were not removed?"); |
| 543 | } |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 544 | } |
| 545 | |
| 546 | |
| 547 | void ValueHandleBase::ValueIsRAUWd(Value *Old, Value *New) { |
| 548 | assert(Old->HasValueHandle &&"Should only be called if ValueHandles present"); |
| 549 | assert(Old != New && "Changing value into itself!"); |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 550 | |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 551 | // Get the linked list base, which is guaranteed to exist since the |
| 552 | // HasValueHandle flag is set. |
Owen Anderson | e8f2185 | 2009-08-18 18:28:58 +0000 | [diff] [blame] | 553 | LLVMContextImpl *pImpl = Old->getContext().pImpl; |
| 554 | ValueHandleBase *Entry = pImpl->ValueHandles[Old]; |
| 555 | |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 556 | assert(Entry && "Value bit set but no entries exist"); |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 557 | |
Jeffrey Yasskin | 406ac81 | 2009-10-12 17:43:32 +0000 | [diff] [blame] | 558 | // We use a local ValueHandleBase as an iterator so that |
| 559 | // ValueHandles can add and remove themselves from the list without |
| 560 | // breaking our iteration. This is not really an AssertingVH; we |
| 561 | // just have to give ValueHandleBase some kind. |
| 562 | for (ValueHandleBase Iterator(Assert, *Entry); Entry; Entry = Iterator.Next) { |
| 563 | Iterator.RemoveFromUseList(); |
| 564 | Iterator.AddToExistingUseListAfter(Entry); |
| 565 | assert(Entry->Next == &Iterator && "Loop invariant broken."); |
Daniel Dunbar | 6058b51 | 2009-09-20 04:03:34 +0000 | [diff] [blame] | 566 | |
Jeffrey Yasskin | 406ac81 | 2009-10-12 17:43:32 +0000 | [diff] [blame] | 567 | switch (Entry->getKind()) { |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 568 | case Assert: |
| 569 | // Asserting handle does not follow RAUW implicitly. |
| 570 | break; |
Daniel Dunbar | 70d4fb0 | 2009-09-22 02:02:33 +0000 | [diff] [blame] | 571 | case Tracking: |
| 572 | // Tracking goes to new value like a WeakVH. Note that this may make it |
| 573 | // something incompatible with its templated type. We don't want to have a |
| 574 | // virtual (or inline) interface to handle this though, so instead we make |
Daniel Dunbar | 86707c9 | 2009-09-22 10:30:34 +0000 | [diff] [blame] | 575 | // the TrackingVH accessors guarantee that a client never sees this value. |
Daniel Dunbar | 70d4fb0 | 2009-09-22 02:02:33 +0000 | [diff] [blame] | 576 | |
| 577 | // FALLTHROUGH |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 578 | case Weak: |
| 579 | // Weak goes to the new value, which will unlink it from Old's list. |
Jeffrey Yasskin | 406ac81 | 2009-10-12 17:43:32 +0000 | [diff] [blame] | 580 | Entry->operator=(New); |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 581 | break; |
| 582 | case Callback: |
Dan Gohman | 745ad44 | 2009-05-02 21:10:48 +0000 | [diff] [blame] | 583 | // Forward to the subclass's implementation. |
Jeffrey Yasskin | 406ac81 | 2009-10-12 17:43:32 +0000 | [diff] [blame] | 584 | static_cast<CallbackVH*>(Entry)->allUsesReplacedWith(New); |
Dan Gohman | 745ad44 | 2009-05-02 21:10:48 +0000 | [diff] [blame] | 585 | break; |
Chris Lattner | 90234f3 | 2009-03-31 22:11:05 +0000 | [diff] [blame] | 586 | } |
| 587 | } |
| 588 | } |
| 589 | |
Dan Gohman | 745ad44 | 2009-05-02 21:10:48 +0000 | [diff] [blame] | 590 | /// ~CallbackVH. Empty, but defined here to avoid emitting the vtable |
| 591 | /// more than once. |
| 592 | CallbackVH::~CallbackVH() {} |
| 593 | |
Chris Lattner | 9c1b502 | 2008-12-02 07:16:45 +0000 | [diff] [blame] | 594 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 595 | //===----------------------------------------------------------------------===// |
| 596 | // User Class |
| 597 | //===----------------------------------------------------------------------===// |
| 598 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 599 | // replaceUsesOfWith - Replaces all references to the "From" definition with |
| 600 | // references to the "To" definition. |
| 601 | // |
| 602 | void User::replaceUsesOfWith(Value *From, Value *To) { |
| 603 | if (From == To) return; // Duh what? |
| 604 | |
Anton Korobeynikov | 579f071 | 2008-02-20 11:08:44 +0000 | [diff] [blame] | 605 | assert((!isa<Constant>(this) || isa<GlobalValue>(this)) && |
Dan Gohman | 5211b01 | 2009-08-11 15:53:15 +0000 | [diff] [blame] | 606 | "Cannot call User::replaceUsesOfWith on a constant!"); |
Chris Lattner | 2c6abea | 2002-10-09 23:12:59 +0000 | [diff] [blame] | 607 | |
Chris Lattner | a073acb | 2001-07-07 08:36:50 +0000 | [diff] [blame] | 608 | for (unsigned i = 0, E = getNumOperands(); i != E; ++i) |
| 609 | if (getOperand(i) == From) { // Is This operand is pointing to oldval? |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 610 | // The side effects of this setOperand call include linking to |
| 611 | // "To", adding "this" to the uses list of To, and |
| 612 | // most importantly, removing "this" from the use list of "From". |
Chris Lattner | a073acb | 2001-07-07 08:36:50 +0000 | [diff] [blame] | 613 | setOperand(i, To); // Fix it now... |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 614 | } |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 615 | } |