Home | History | Annotate | Download | only in VMCore

Lines Matching refs:Old

217     // Remove old name.
247 // Remove old name.
517 // point into the old table. Handle this by checking for reallocation and
628 void ValueHandleBase::ValueIsRAUWd(Value *Old, Value *New) {
629 assert(Old->HasValueHandle &&"Should only be called if ValueHandles present");
630 assert(Old != New && "Changing value into itself!");
634 LLVMContextImpl *pImpl = Old->getContext().pImpl;
635 ValueHandleBase *Entry = pImpl->ValueHandles[Old];
660 // Weak goes to the new value, which will unlink it from Old's list.
673 if (Old->HasValueHandle)
674 for (Entry = pImpl->ValueHandles[Old]; Entry; Entry = Entry->Next)
678 dbgs() << "After RAUW from " << *Old->getType() << " %"
679 << Old->getName() << " to " << *New->getType() << " %"
682 " old value!\n");