Home | History | Annotate | Download | only in Support

Lines Matching defs:VP

56   Value *VP;
61 : PrevPair(0, Kind), Next(0), VP(0) {}
63 : PrevPair(0, Kind), Next(0), VP(V) {
64 if (isValid(VP))
68 : PrevPair(0, Kind), Next(0), VP(RHS.VP) {
69 if (isValid(VP))
73 if (isValid(VP))
78 if (VP == RHS) return RHS;
79 if (isValid(VP)) RemoveFromUseList();
80 VP = RHS;
81 if (isValid(VP)) AddToUseList();
86 if (VP == RHS.VP) return RHS.VP;
87 if (isValid(VP)) RemoveFromUseList();
88 VP = RHS.VP;
89 if (isValid(VP)) AddToExistingUseList(RHS.getPrevPtr());
90 return VP;
97 Value *getValPtr() const { return VP; }
114 /// AddToExistingUseList - Add this ValueHandle to the use list for VP, where
123 /// AddToUseList - Add this ValueHandle to the use list for VP.
284 Value *VP = ValueHandleBase::getValPtr();
287 if (!VP) return;
292 assert(ValueHandleBase::isValid(VP) && "Tracked Value was deleted!");
298 assert(isa<ValueTy>(VP) &&