Home | History | Annotate | Download | only in IR

Lines Matching refs:Old

238     // Remove old name.
268 // Remove old name.
593 // point into the old table. Handle this by checking for reallocation and
703 void ValueHandleBase::ValueIsRAUWd(Value *Old, Value *New) {
704 assert(Old->HasValueHandle &&"Should only be called if ValueHandles present");
705 assert(Old != New && "Changing value into itself!");
706 assert(Old->getType() == New->getType() &&
711 LLVMContextImpl *pImpl = Old->getContext().pImpl;
712 ValueHandleBase *Entry = pImpl->ValueHandles[Old];
737 // Weak goes to the new value, which will unlink it from Old's list.
750 if (Old->HasValueHandle)
751 for (Entry = pImpl->ValueHandles[Old]; Entry; Entry = Entry->Next)
755 dbgs() << "After RAUW from " << *Old->getType() << " %"
756 << Old->getName() << " to " << *New->getType() << " %"
759 " old value!\n");