summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorPeter Collingbourne <peter@pcc.me.uk>2017-07-20 18:02:05 +0000
committerPeter Collingbourne <peter@pcc.me.uk>2017-07-20 18:02:05 +0000
commit6f6788b99c757dae20faa4ed9a40c27b9b3b682c (patch)
treef35ffd0ebd68e6a50d6dc82f154ae0431971d9be /llvm/lib
parentd23254a00844f640599333ff88694213e11df184 (diff)
downloadbcm5719-llvm-6f6788b99c757dae20faa4ed9a40c27b9b3b682c.tar.gz
bcm5719-llvm-6f6788b99c757dae20faa4ed9a40c27b9b3b682c.zip
LowerTypeTests: Drop function type metadata only if we're going to replace it.
Previously we were (mis)handling jump table members with a prevailing definition in a full LTO module and a non-prevailing definition in a ThinLTO module by dropping type metadata on those functions entirely, which would cause type tests involving such functions to fail. This patch causes us to drop metadata only if we are about to replace it with metadata from cfi.functions. We also want to replace metadata for available_externally functions, which can arise in the opposite scenario (prevailing ThinLTO definition, non-prevailing full LTO definition). The simplest way to handle that is to remove the definition; there's little value in keeping it around at this point (i.e. after most optimization passes have already run) and later code will try to use the function's linkage to create an alias, which would result in invalid IR if the function is available_externally. Fixes PR33832. Differential Revision: https://reviews.llvm.org/D35604 llvm-svn: 308642
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Transforms/IPO/LowerTypeTests.cpp19
1 files changed, 16 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/IPO/LowerTypeTests.cpp b/llvm/lib/Transforms/IPO/LowerTypeTests.cpp
index 693df5e7ba9..cdda8a68ecc 100644
--- a/llvm/lib/Transforms/IPO/LowerTypeTests.cpp
+++ b/llvm/lib/Transforms/IPO/LowerTypeTests.cpp
@@ -1512,14 +1512,27 @@ bool LowerTypeTestsModule::lower() {
FunctionType::get(Type::getVoidTy(M.getContext()), false),
GlobalVariable::ExternalLinkage, FunctionName, &M);
- if (Linkage == CFL_Definition)
- F->eraseMetadata(LLVMContext::MD_type);
+ // If the function is available_externally, remove its definition so
+ // that it is handled the same way as a declaration. Later we will try
+ // to create an alias using this function's linkage, which will fail if
+ // the linkage is available_externally. This will also result in us
+ // following the code path below to replace the type metadata.
+ if (F->hasAvailableExternallyLinkage()) {
+ F->setLinkage(GlobalValue::ExternalLinkage);
+ F->deleteBody();
+ F->setComdat(nullptr);
+ F->clearMetadata();
+ }
+ // If the function in the full LTO module is a declaration, replace its
+ // type metadata with the type metadata we found in cfi.functions. That
+ // metadata is presumed to be more accurate than the metadata attached
+ // to the declaration.
if (F->isDeclaration()) {
if (Linkage == CFL_WeakDeclaration)
F->setLinkage(GlobalValue::ExternalWeakLinkage);
- SmallVector<MDNode *, 2> Types;
+ F->eraseMetadata(LLVMContext::MD_type);
for (unsigned I = 2; I < FuncMD->getNumOperands(); ++I)
F->addMetadata(LLVMContext::MD_type,
*cast<MDNode>(FuncMD->getOperand(I).get()));
OpenPOWER on IntegriCloud