forked from OSchip/llvm-project
MapMetadata: Allow unresolved metadata if it won't change
Allow unresolved nodes through the `MapMetadata()` if `RF_NoModuleLevelChanges`, since there's no remapping to do anyway. This fixes PR22929. I'll add a clang test as a follow-up. llvm-svn: 232449
This commit is contained in:
parent
cc6b381651
commit
170c26d75e
|
@ -291,14 +291,18 @@ static Metadata *MapMetadataImpl(const Metadata *MD,
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Note: this cast precedes the Flags check so we always get its associated
|
||||||
|
// assertion.
|
||||||
const MDNode *Node = cast<MDNode>(MD);
|
const MDNode *Node = cast<MDNode>(MD);
|
||||||
assert(Node->isResolved() && "Unexpected unresolved node");
|
|
||||||
|
|
||||||
// If this is a module-level metadata and we know that nothing at the
|
// If this is a module-level metadata and we know that nothing at the
|
||||||
// module level is changing, then use an identity mapping.
|
// module level is changing, then use an identity mapping.
|
||||||
if (Flags & RF_NoModuleLevelChanges)
|
if (Flags & RF_NoModuleLevelChanges)
|
||||||
return mapToSelf(VM, MD);
|
return mapToSelf(VM, MD);
|
||||||
|
|
||||||
|
// Require resolved nodes whenever metadata might be remapped.
|
||||||
|
assert(Node->isResolved() && "Unexpected unresolved node");
|
||||||
|
|
||||||
if (Node->isDistinct())
|
if (Node->isDistinct())
|
||||||
return mapDistinctNode(Node, Cycles, VM, Flags, TypeMapper, Materializer);
|
return mapDistinctNode(Node, Cycles, VM, Flags, TypeMapper, Materializer);
|
||||||
|
|
||||||
|
|
|
@ -9,4 +9,5 @@ add_llvm_unittest(UtilsTests
|
||||||
Cloning.cpp
|
Cloning.cpp
|
||||||
IntegerDivision.cpp
|
IntegerDivision.cpp
|
||||||
Local.cpp
|
Local.cpp
|
||||||
|
ValueMapperTest.cpp
|
||||||
)
|
)
|
||||||
|
|
|
@ -0,0 +1,27 @@
|
||||||
|
//===- ValueMapper.cpp - Unit tests for ValueMapper -----------------------===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is distributed under the University of Illinois Open Source
|
||||||
|
// License. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
#include "llvm/IR/LLVMContext.h"
|
||||||
|
#include "llvm/IR/Metadata.h"
|
||||||
|
#include "llvm/Transforms/Utils/ValueMapper.h"
|
||||||
|
#include "gtest/gtest.h"
|
||||||
|
|
||||||
|
using namespace llvm;
|
||||||
|
|
||||||
|
namespace {
|
||||||
|
|
||||||
|
TEST(ValueMapperTest, MapMetadataUnresolved) {
|
||||||
|
LLVMContext Context;
|
||||||
|
TempMDTuple T = MDTuple::getTemporary(Context, None);
|
||||||
|
|
||||||
|
ValueToValueMapTy VM;
|
||||||
|
EXPECT_EQ(T.get(), MapMetadata(T.get(), VM, RF_NoModuleLevelChanges));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue