1 //===- ValueHandle.h - Value Smart Pointer classes --------------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file declares the ValueHandle class and its sub-classes. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #ifndef LLVM_IR_VALUEHANDLE_H 15 #define LLVM_IR_VALUEHANDLE_H 16 17 #include "llvm/ADT/DenseMapInfo.h" 18 #include "llvm/ADT/PointerIntPair.h" 19 #include "llvm/IR/Value.h" 20 21 namespace llvm { 22 class ValueHandleBase; 23 template<typename From> struct simplify_type; 24 25 // ValueHandleBase** is only 4-byte aligned. 26 template<> 27 class PointerLikeTypeTraits<ValueHandleBase**> { 28 public: getAsVoidPointer(ValueHandleBase ** P)29 static inline void *getAsVoidPointer(ValueHandleBase** P) { return P; } getFromVoidPointer(void * P)30 static inline ValueHandleBase **getFromVoidPointer(void *P) { 31 return static_cast<ValueHandleBase**>(P); 32 } 33 enum { NumLowBitsAvailable = 2 }; 34 }; 35 36 /// \brief This is the common base class of value handles. 37 /// 38 /// ValueHandle's are smart pointers to Value's that have special behavior when 39 /// the value is deleted or ReplaceAllUsesWith'd. See the specific handles 40 /// below for details. 41 class ValueHandleBase { 42 friend class Value; 43 protected: 44 /// \brief This indicates what sub class the handle actually is. 45 /// 46 /// This is to avoid having a vtable for the light-weight handle pointers. The 47 /// fully general Callback version does have a vtable. 48 enum HandleBaseKind { 49 Assert, 50 Callback, 51 Tracking, 52 Weak 53 }; 54 55 private: 56 PointerIntPair<ValueHandleBase**, 2, HandleBaseKind> PrevPair; 57 ValueHandleBase *Next; 58 59 Value* V; 60 61 ValueHandleBase(const ValueHandleBase&) = delete; 62 public: ValueHandleBase(HandleBaseKind Kind)63 explicit ValueHandleBase(HandleBaseKind Kind) 64 : PrevPair(nullptr, Kind), Next(nullptr), V(nullptr) {} ValueHandleBase(HandleBaseKind Kind,Value * V)65 ValueHandleBase(HandleBaseKind Kind, Value *V) 66 : PrevPair(nullptr, Kind), Next(nullptr), V(V) { 67 if (isValid(V)) 68 AddToUseList(); 69 } ValueHandleBase(HandleBaseKind Kind,const ValueHandleBase & RHS)70 ValueHandleBase(HandleBaseKind Kind, const ValueHandleBase &RHS) 71 : PrevPair(nullptr, Kind), Next(nullptr), V(RHS.V) { 72 if (isValid(V)) 73 AddToExistingUseList(RHS.getPrevPtr()); 74 } ~ValueHandleBase()75 ~ValueHandleBase() { 76 if (isValid(V)) 77 RemoveFromUseList(); 78 } 79 80 Value *operator=(Value *RHS) { 81 if (V == RHS) return RHS; 82 if (isValid(V)) RemoveFromUseList(); 83 V = RHS; 84 if (isValid(V)) AddToUseList(); 85 return RHS; 86 } 87 88 Value *operator=(const ValueHandleBase &RHS) { 89 if (V == RHS.V) return RHS.V; 90 if (isValid(V)) RemoveFromUseList(); 91 V = RHS.V; 92 if (isValid(V)) AddToExistingUseList(RHS.getPrevPtr()); 93 return V; 94 } 95 96 Value *operator->() const { return V; } 97 Value &operator*() const { return *V; } 98 99 protected: getValPtr()100 Value *getValPtr() const { return V; } 101 isValid(Value * V)102 static bool isValid(Value *V) { 103 return V && 104 V != DenseMapInfo<Value *>::getEmptyKey() && 105 V != DenseMapInfo<Value *>::getTombstoneKey(); 106 } 107 108 public: 109 // Callbacks made from Value. 110 static void ValueIsDeleted(Value *V); 111 static void ValueIsRAUWd(Value *Old, Value *New); 112 113 private: 114 // Internal implementation details. getPrevPtr()115 ValueHandleBase **getPrevPtr() const { return PrevPair.getPointer(); } getKind()116 HandleBaseKind getKind() const { return PrevPair.getInt(); } setPrevPtr(ValueHandleBase ** Ptr)117 void setPrevPtr(ValueHandleBase **Ptr) { PrevPair.setPointer(Ptr); } 118 119 /// \brief Add this ValueHandle to the use list for V. 120 /// 121 /// List is the address of either the head of the list or a Next node within 122 /// the existing use list. 123 void AddToExistingUseList(ValueHandleBase **List); 124 125 /// \brief Add this ValueHandle to the use list after Node. 126 void AddToExistingUseListAfter(ValueHandleBase *Node); 127 128 /// \brief Add this ValueHandle to the use list for V. 129 void AddToUseList(); 130 /// \brief Remove this ValueHandle from its current use list. 131 void RemoveFromUseList(); 132 }; 133 134 /// \brief Value handle that is nullable, but tries to track the Value. 135 /// 136 /// This is a value handle that tries hard to point to a Value, even across 137 /// RAUW operations, but will null itself out if the value is destroyed. this 138 /// is useful for advisory sorts of information, but should not be used as the 139 /// key of a map (since the map would have to rearrange itself when the pointer 140 /// changes). 141 class WeakVH : public ValueHandleBase { 142 public: WeakVH()143 WeakVH() : ValueHandleBase(Weak) {} WeakVH(Value * P)144 WeakVH(Value *P) : ValueHandleBase(Weak, P) {} WeakVH(const WeakVH & RHS)145 WeakVH(const WeakVH &RHS) 146 : ValueHandleBase(Weak, RHS) {} 147 148 Value *operator=(Value *RHS) { 149 return ValueHandleBase::operator=(RHS); 150 } 151 Value *operator=(const ValueHandleBase &RHS) { 152 return ValueHandleBase::operator=(RHS); 153 } 154 155 operator Value*() const { 156 return getValPtr(); 157 } 158 }; 159 160 // Specialize simplify_type to allow WeakVH to participate in 161 // dyn_cast, isa, etc. 162 template<> struct simplify_type<WeakVH> { 163 typedef Value* SimpleType; 164 static SimpleType getSimplifiedValue(WeakVH &WVH) { 165 return WVH; 166 } 167 }; 168 169 /// \brief Value handle that asserts if the Value is deleted. 170 /// 171 /// This is a Value Handle that points to a value and asserts out if the value 172 /// is destroyed while the handle is still live. This is very useful for 173 /// catching dangling pointer bugs and other things which can be non-obvious. 174 /// One particularly useful place to use this is as the Key of a map. Dangling 175 /// pointer bugs often lead to really subtle bugs that only occur if another 176 /// object happens to get allocated to the same address as the old one. Using 177 /// an AssertingVH ensures that an assert is triggered as soon as the bad 178 /// delete occurs. 179 /// 180 /// Note that an AssertingVH handle does *not* follow values across RAUW 181 /// operations. This means that RAUW's need to explicitly update the 182 /// AssertingVH's as it moves. This is required because in non-assert mode this 183 /// class turns into a trivial wrapper around a pointer. 184 template <typename ValueTy> 185 class AssertingVH 186 #ifndef NDEBUG 187 : public ValueHandleBase 188 #endif 189 { 190 friend struct DenseMapInfo<AssertingVH<ValueTy> >; 191 192 #ifndef NDEBUG 193 Value *getRawValPtr() const { return ValueHandleBase::getValPtr(); } 194 void setRawValPtr(Value *P) { ValueHandleBase::operator=(P); } 195 #else 196 Value *ThePtr; 197 Value *getRawValPtr() const { return ThePtr; } 198 void setRawValPtr(Value *P) { ThePtr = P; } 199 #endif 200 // Convert a ValueTy*, which may be const, to the raw Value*. 201 static Value *GetAsValue(Value *V) { return V; } 202 static Value *GetAsValue(const Value *V) { return const_cast<Value*>(V); } 203 204 ValueTy *getValPtr() const { return static_cast<ValueTy *>(getRawValPtr()); } 205 void setValPtr(ValueTy *P) { setRawValPtr(GetAsValue(P)); } 206 207 public: 208 #ifndef NDEBUG 209 AssertingVH() : ValueHandleBase(Assert) {} 210 AssertingVH(ValueTy *P) : ValueHandleBase(Assert, GetAsValue(P)) {} 211 AssertingVH(const AssertingVH &RHS) : ValueHandleBase(Assert, RHS) {} 212 #else 213 AssertingVH() : ThePtr(nullptr) {} 214 AssertingVH(ValueTy *P) : ThePtr(GetAsValue(P)) {} 215 #endif 216 217 operator ValueTy*() const { 218 return getValPtr(); 219 } 220 221 ValueTy *operator=(ValueTy *RHS) { 222 setValPtr(RHS); 223 return getValPtr(); 224 } 225 ValueTy *operator=(const AssertingVH<ValueTy> &RHS) { 226 setValPtr(RHS.getValPtr()); 227 return getValPtr(); 228 } 229 230 ValueTy *operator->() const { return getValPtr(); } 231 ValueTy &operator*() const { return *getValPtr(); } 232 }; 233 234 // Specialize DenseMapInfo to allow AssertingVH to participate in DenseMap. 235 template<typename T> 236 struct DenseMapInfo<AssertingVH<T> > { 237 static inline AssertingVH<T> getEmptyKey() { 238 AssertingVH<T> Res; 239 Res.setRawValPtr(DenseMapInfo<Value *>::getEmptyKey()); 240 return Res; 241 } 242 static inline AssertingVH<T> getTombstoneKey() { 243 AssertingVH<T> Res; 244 Res.setRawValPtr(DenseMapInfo<Value *>::getTombstoneKey()); 245 return Res; 246 } 247 static unsigned getHashValue(const AssertingVH<T> &Val) { 248 return DenseMapInfo<Value *>::getHashValue(Val.getRawValPtr()); 249 } 250 static bool isEqual(const AssertingVH<T> &LHS, const AssertingVH<T> &RHS) { 251 return DenseMapInfo<Value *>::isEqual(LHS.getRawValPtr(), 252 RHS.getRawValPtr()); 253 } 254 }; 255 256 template <typename T> 257 struct isPodLike<AssertingVH<T> > { 258 #ifdef NDEBUG 259 static const bool value = true; 260 #else 261 static const bool value = false; 262 #endif 263 }; 264 265 266 /// \brief Value handle that tracks a Value across RAUW. 267 /// 268 /// TrackingVH is designed for situations where a client needs to hold a handle 269 /// to a Value (or subclass) across some operations which may move that value, 270 /// but should never destroy it or replace it with some unacceptable type. 271 /// 272 /// It is an error to do anything with a TrackingVH whose value has been 273 /// destroyed, except to destruct it. 274 /// 275 /// It is an error to attempt to replace a value with one of a type which is 276 /// incompatible with any of its outstanding TrackingVHs. 277 template<typename ValueTy> 278 class TrackingVH : public ValueHandleBase { 279 void CheckValidity() const { 280 Value *VP = ValueHandleBase::getValPtr(); 281 282 // Null is always ok. 283 if (!VP) return; 284 285 // Check that this value is valid (i.e., it hasn't been deleted). We 286 // explicitly delay this check until access to avoid requiring clients to be 287 // unnecessarily careful w.r.t. destruction. 288 assert(ValueHandleBase::isValid(VP) && "Tracked Value was deleted!"); 289 290 // Check that the value is a member of the correct subclass. We would like 291 // to check this property on assignment for better debugging, but we don't 292 // want to require a virtual interface on this VH. Instead we allow RAUW to 293 // replace this value with a value of an invalid type, and check it here. 294 assert(isa<ValueTy>(VP) && 295 "Tracked Value was replaced by one with an invalid type!"); 296 } 297 298 ValueTy *getValPtr() const { 299 CheckValidity(); 300 return (ValueTy*)ValueHandleBase::getValPtr(); 301 } 302 void setValPtr(ValueTy *P) { 303 CheckValidity(); 304 ValueHandleBase::operator=(GetAsValue(P)); 305 } 306 307 // Convert a ValueTy*, which may be const, to the type the base 308 // class expects. 309 static Value *GetAsValue(Value *V) { return V; } 310 static Value *GetAsValue(const Value *V) { return const_cast<Value*>(V); } 311 312 public: 313 TrackingVH() : ValueHandleBase(Tracking) {} 314 TrackingVH(ValueTy *P) : ValueHandleBase(Tracking, GetAsValue(P)) {} 315 TrackingVH(const TrackingVH &RHS) : ValueHandleBase(Tracking, RHS) {} 316 317 operator ValueTy*() const { 318 return getValPtr(); 319 } 320 321 ValueTy *operator=(ValueTy *RHS) { 322 setValPtr(RHS); 323 return getValPtr(); 324 } 325 ValueTy *operator=(const TrackingVH<ValueTy> &RHS) { 326 setValPtr(RHS.getValPtr()); 327 return getValPtr(); 328 } 329 330 ValueTy *operator->() const { return getValPtr(); } 331 ValueTy &operator*() const { return *getValPtr(); } 332 }; 333 334 /// \brief Value handle with callbacks on RAUW and destruction. 335 /// 336 /// This is a value handle that allows subclasses to define callbacks that run 337 /// when the underlying Value has RAUW called on it or is destroyed. This 338 /// class can be used as the key of a map, as long as the user takes it out of 339 /// the map before calling setValPtr() (since the map has to rearrange itself 340 /// when the pointer changes). Unlike ValueHandleBase, this class has a vtable 341 /// and a virtual destructor. 342 class CallbackVH : public ValueHandleBase { 343 virtual void anchor(); 344 protected: 345 CallbackVH(const CallbackVH &RHS) 346 : ValueHandleBase(Callback, RHS) {} 347 348 virtual ~CallbackVH() {} 349 350 void setValPtr(Value *P) { 351 ValueHandleBase::operator=(P); 352 } 353 354 public: 355 CallbackVH() : ValueHandleBase(Callback) {} 356 CallbackVH(Value *P) : ValueHandleBase(Callback, P) {} 357 358 operator Value*() const { 359 return getValPtr(); 360 } 361 362 /// \brief Callback for Value destruction. 363 /// 364 /// Called when this->getValPtr() is destroyed, inside ~Value(), so you 365 /// may call any non-virtual Value method on getValPtr(), but no subclass 366 /// methods. If WeakVH were implemented as a CallbackVH, it would use this 367 /// method to call setValPtr(NULL). AssertingVH would use this method to 368 /// cause an assertion failure. 369 /// 370 /// All implementations must remove the reference from this object to the 371 /// Value that's being destroyed. 372 virtual void deleted() { setValPtr(nullptr); } 373 374 /// \brief Callback for Value RAUW. 375 /// 376 /// Called when this->getValPtr()->replaceAllUsesWith(new_value) is called, 377 /// _before_ any of the uses have actually been replaced. If WeakVH were 378 /// implemented as a CallbackVH, it would use this method to call 379 /// setValPtr(new_value). AssertingVH would do nothing in this method. 380 virtual void allUsesReplacedWith(Value *) {} 381 }; 382 383 } // End llvm namespace 384 385 #endif 386