mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 22:24:07 +00:00
Utils: Keep distinct MDNodes distinct in MapMetadata()
Create new copies of distinct `MDNode`s instead of following the uniquing `MDNode` logic. Just like self-references (or other cycles), `MapMetadata()` creates a new node. In practice most calls use `RF_NoModuleLevelChanges`, in which case nothing is duplicated anyway. Part of PR22111. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225476 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -212,6 +212,20 @@ static Metadata *MapMetadataImpl(const Metadata *MD, ValueToValueMapTy &VM,
|
||||
if (Flags & RF_NoModuleLevelChanges)
|
||||
return mapToSelf(VM, MD);
|
||||
|
||||
// Distinct nodes are always recreated.
|
||||
if (Node->isDistinct()) {
|
||||
// Create the node first so it's available for cyclical references.
|
||||
SmallVector<Metadata *, 4> EmptyOps(Node->getNumOperands());
|
||||
MDNode *NewMD = MDNode::getDistinct(Node->getContext(), EmptyOps);
|
||||
mapToMetadata(VM, Node, NewMD);
|
||||
|
||||
// Fix the operands.
|
||||
for (unsigned I = 0, E = Node->getNumOperands(); I != E; ++I)
|
||||
NewMD->replaceOperandWith(I, getMappedOp(Node->getOperand(I)));
|
||||
|
||||
return NewMD;
|
||||
}
|
||||
|
||||
// Create a dummy node in case we have a metadata cycle.
|
||||
MDNodeFwdDecl *Dummy = MDNode::getTemporary(Node->getContext(), None);
|
||||
mapToMetadata(VM, Node, Dummy);
|
||||
|
Reference in New Issue
Block a user