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