mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-26 07:24:25 +00:00
Utils: Separate out mapDistinctNode(), NFC
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225902 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -180,6 +180,28 @@ static Metadata *mapMetadataOp(Metadata *Op, ValueToValueMapTy &VM,
|
|||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// \brief Map a distinct MDNode.
|
||||||
|
///
|
||||||
|
/// Distinct nodes are not uniqued, so they must always recreated.
|
||||||
|
static Metadata *mapDistinctNode(const MDNode *Node, ValueToValueMapTy &VM,
|
||||||
|
RemapFlags Flags,
|
||||||
|
ValueMapTypeRemapper *TypeMapper,
|
||||||
|
ValueMaterializer *Materializer) {
|
||||||
|
assert(Node->isDistinct() && "Expected distinct node");
|
||||||
|
|
||||||
|
// Create the node first so it's available for cyclical references.
|
||||||
|
SmallVector<Metadata *, 4> EmptyOps(Node->getNumOperands());
|
||||||
|
MDTuple *NewMD = MDTuple::getDistinct(Node->getContext(), EmptyOps);
|
||||||
|
mapToMetadata(VM, Node, NewMD);
|
||||||
|
|
||||||
|
// Fix the operands.
|
||||||
|
for (unsigned I = 0, E = Node->getNumOperands(); I != E; ++I)
|
||||||
|
NewMD->replaceOperandWith(I, mapMetadataOp(Node->getOperand(I), VM, Flags,
|
||||||
|
TypeMapper, Materializer));
|
||||||
|
|
||||||
|
return NewMD;
|
||||||
|
}
|
||||||
|
|
||||||
static Metadata *MapMetadataImpl(const Metadata *MD, ValueToValueMapTy &VM,
|
static Metadata *MapMetadataImpl(const Metadata *MD, ValueToValueMapTy &VM,
|
||||||
RemapFlags Flags,
|
RemapFlags Flags,
|
||||||
ValueMapTypeRemapper *TypeMapper,
|
ValueMapTypeRemapper *TypeMapper,
|
||||||
@ -220,20 +242,8 @@ static Metadata *MapMetadataImpl(const Metadata *MD, ValueToValueMapTy &VM,
|
|||||||
if (Flags & RF_NoModuleLevelChanges)
|
if (Flags & RF_NoModuleLevelChanges)
|
||||||
return mapToSelf(VM, MD);
|
return mapToSelf(VM, MD);
|
||||||
|
|
||||||
// Distinct nodes are always recreated.
|
if (Node->isDistinct())
|
||||||
if (Node->isDistinct()) {
|
return mapDistinctNode(Node, VM, Flags, TypeMapper, Materializer);
|
||||||
// Create the node first so it's available for cyclical references.
|
|
||||||
SmallVector<Metadata *, 4> EmptyOps(Node->getNumOperands());
|
|
||||||
MDTuple *NewMD = MDTuple::getDistinct(Node->getContext(), EmptyOps);
|
|
||||||
mapToMetadata(VM, Node, NewMD);
|
|
||||||
|
|
||||||
// Fix the operands.
|
|
||||||
for (unsigned I = 0, E = Node->getNumOperands(); I != E; ++I)
|
|
||||||
NewMD->replaceOperandWith(I, mapMetadataOp(Node->getOperand(I), VM, Flags,
|
|
||||||
TypeMapper, Materializer));
|
|
||||||
|
|
||||||
return NewMD;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create a dummy node in case we have a metadata cycle.
|
// Create a dummy node in case we have a metadata cycle.
|
||||||
MDNodeFwdDecl *Dummy = MDNode::getTemporary(Node->getContext(), None);
|
MDNodeFwdDecl *Dummy = MDNode::getTemporary(Node->getContext(), None);
|
||||||
|
Reference in New Issue
Block a user