[ThinLTO] Fix a crash in lazy loading of Metadata
authorTeresa Johnson <tejohnson@google.com>
Wed, 14 Nov 2018 20:58:04 +0000 (20:58 +0000)
committerTeresa Johnson <tejohnson@google.com>
Wed, 14 Nov 2018 20:58:04 +0000 (20:58 +0000)
commitf61a563a19a3f4c999011c8c6287717532dcdfd9
tree94aeda0b7ddf7789aafd510ff9bed1e5bdca8bc3
parentbe527b545fb72552d0a1acc6c85243bf0ffce3d3
[ThinLTO] Fix a crash in lazy loading of Metadata

This is a revised version of D41474.

When the debug location is parsed in BitcodeReader::parseFunction, the
scope and inlinedAt MDNodes are obtained via MDLoader->getMDNodeFwdRefOrNull(),
which will create a forward ref if they were not yet loaded.
Specifically, if one of these MDNodes is in the module level metadata
block, and this is during ThinLTO importing, that metadata block is
lazily loaded.

Most places in that invoke getMDNodeFwdRefOrNull have a corresponding call
to resolveForwardRefsAndPlaceholders which will take care of resolving them.
E.g. places that call getMetadataFwdRefOrLoad, or at the end of parsing a
function-level metadata block, or at the end of the initial lazy load of
module level metadata in order to handle invocations of getMDNodeFwdRefOrNull
for named metadata and global object attachments. However, the calls for
the scope/inlinedAt of debug locations are not backed by any such call to
resolveForwardRefsAndPlaceholders.

To fix this, change the scope and inlinedAt parsing to instead use
getMetadataFwdRefOrLoad, which will ensure the forward refs to lazily
loaded metadata are resolved.

Fixes PR35472.

llvm-svn: 346891
llvm/lib/Bitcode/Reader/BitcodeReader.cpp
llvm/test/ThinLTO/X86/Inputs/pr35472.ll [new file with mode: 0644]
llvm/test/ThinLTO/X86/pr35472.ll [new file with mode: 0644]