Lines Matching defs:Old
62 DelayedBasicBlock(const BlockAddress &Old)
63 : OldBB(Old.getBasicBlock()),
64 TempBB(BasicBlock::Create(Old.getContext())) {}
700 Metadata *Old = N.getOperand(I);
701 Metadata *New = mapOperand(Old);
702 if (Old != New)
703 LLVM_DEBUG(dbgs() << "Replacing Op " << Old << " with " << New << " in "
706 if (Old != New)
815 remapOperands(*ClonedN, [this, &D, &G](Metadata *Old) {
816 if (std::optional<Metadata *> MappedOp = getMappedOp(Old))
819 assert(G.Info[Old].ID > D.ID && "Expected a forward reference");
820 return &G.getFwdReference(*cast<MDNode>(Old));
854 remapOperands(*DistinctWorklist.pop_back_val(), [this](Metadata *Old) {
855 if (std::optional<Metadata *> MappedOp = tryToMapOperand(Old))
857 return mapTopLevelUniquedNode(*cast<MDNode>(Old));
999 MDNode *Old = MI.second;
1000 MDNode *New = cast_or_null<MDNode>(mapMetadata(Old));
1001 if (New != Old)