Searched defs:AssertingVH (Results 1 - 1 of 1) sorted by relevance

/external/llvm/include/llvm/IR/
H A DValueHandle.h185 /// an AssertingVH ensures that an assert is triggered as soon as the bad
188 /// Note that an AssertingVH handle does *not* follow values across RAUW
190 /// AssertingVH's as it moves. This is required because in non-assert mode this
193 class AssertingVH class in namespace:llvm
198 friend struct DenseMapInfo<AssertingVH<ValueTy> >;
217 AssertingVH() : ValueHandleBase(Assert) {} function in class:llvm::AssertingVH
218 AssertingVH(ValueTy *P) : ValueHandleBase(Assert, GetAsValue(P)) {} function in class:llvm::AssertingVH
219 AssertingVH(const AssertingVH &RHS) : ValueHandleBase(Assert, RHS) {} function in class:llvm::AssertingVH
221 AssertingVH() function in class:llvm::AssertingVH
222 AssertingVH(ValueTy *P) : ThePtr(GetAsValue(P)) {} function in class:llvm::AssertingVH
[all...]

Completed in 25 milliseconds