Skip to content

Commit 3bb4d01

Browse files
committedJan 20, 2017
[ThinLTO] Fix lazy-loading of MDString instruction attachments
CFI is using intrinsics that takes MDString as arguments, and this was broken during lazy-loading of metadata. Differential Revision: https://reviews.llvm.org/D28916 llvm-svn: 292641
1 parent f9594db commit 3bb4d01

File tree

4 files changed

+26
-9
lines changed

4 files changed

+26
-9
lines changed
 

‎llvm/lib/Bitcode/Reader/BitcodeReader.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ class BitcodeReader : public BitcodeReaderBase, public GVMaterializer {
512512
}
513513

514514
Metadata *getFnMetadataByID(unsigned ID) {
515-
return MDLoader->getMetadataFwdRef(ID);
515+
return MDLoader->getMetadataFwdRefOrLoad(ID);
516516
}
517517

518518
BasicBlock *getBasicBlock(unsigned ID) const {

‎llvm/lib/Bitcode/Reader/MetadataLoader.cpp

+17-4
Original file line numberDiff line numberDiff line change
@@ -488,8 +488,21 @@ class MetadataLoader::MetadataLoaderImpl {
488488
Error parseMetadata(bool ModuleLevel);
489489

490490
bool hasFwdRefs() const { return MetadataList.hasFwdRefs(); }
491-
Metadata *getMetadataFwdRef(unsigned Idx) {
492-
return MetadataList.getMetadataFwdRef(Idx);
491+
492+
Metadata *getMetadataFwdRefOrLoad(unsigned ID) {
493+
if (ID < MDStringRef.size())
494+
return lazyLoadOneMDString(ID);
495+
if (auto *MD = MetadataList.lookup(ID))
496+
return MD;
497+
// If lazy-loading is enabled, we try recursively to load the operand
498+
// instead of creating a temporary.
499+
if (ID < (MDStringRef.size() + GlobalMetadataBitPosIndex.size())) {
500+
PlaceholderQueue Placeholders;
501+
lazyLoadOneMetadata(ID, Placeholders);
502+
resolveForwardRefsAndPlaceholders(Placeholders);
503+
return MetadataList.lookup(ID);
504+
}
505+
return MetadataList.getMetadataFwdRef(ID);
493506
}
494507

495508
MDNode *getMDNodeFwdRefOrNull(unsigned Idx) {
@@ -1730,8 +1743,8 @@ bool MetadataLoader::hasFwdRefs() const { return Pimpl->hasFwdRefs(); }
17301743

17311744
/// Return the given metadata, creating a replaceable forward reference if
17321745
/// necessary.
1733-
Metadata *MetadataLoader::getMetadataFwdRef(unsigned Idx) {
1734-
return Pimpl->getMetadataFwdRef(Idx);
1746+
Metadata *MetadataLoader::getMetadataFwdRefOrLoad(unsigned Idx) {
1747+
return Pimpl->getMetadataFwdRefOrLoad(Idx);
17351748
}
17361749

17371750
MDNode *MetadataLoader::getMDNodeFwdRefOrNull(unsigned Idx) {

‎llvm/lib/Bitcode/Reader/MetadataLoader.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class MetadataLoader {
6363

6464
/// Return the given metadata, creating a replaceable forward reference if
6565
/// necessary.
66-
Metadata *getMetadataFwdRef(unsigned Idx);
66+
Metadata *getMetadataFwdRefOrLoad(unsigned Idx);
6767

6868
MDNode *getMDNodeFwdRefOrNull(unsigned Idx);
6969

‎llvm/test/ThinLTO/X86/lazyload_metadata.ll

+7-3
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,20 @@
1111
; RUN: -o /dev/null -stats \
1212
; RUN: 2>&1 | FileCheck %s -check-prefix=LAZY
1313
; LAZY: 49 bitcode-reader - Number of Metadata records loaded
14-
; LAZY: 1 bitcode-reader - Number of MDStrings loaded
14+
; LAZY: 2 bitcode-reader - Number of MDStrings loaded
1515

1616
; RUN: llvm-lto -thinlto-action=import %t2.bc -thinlto-index=%t3.bc \
1717
; RUN: -o /dev/null -disable-ondemand-mds-loading -stats \
1818
; RUN: 2>&1 | FileCheck %s -check-prefix=NOTLAZY
1919
; NOTLAZY: 58 bitcode-reader - Number of Metadata records loaded
20-
; NOTLAZY: 6 bitcode-reader - Number of MDStrings loaded
20+
; NOTLAZY: 7 bitcode-reader - Number of MDStrings loaded
2121

2222

2323
target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
2424
target triple = "x86_64-apple-macosx10.11.0"
2525

2626
define void @globalfunc1(i32 %arg) {
27+
%x = call i1 @llvm.type.test(i8* undef, metadata !"typeid1")
2728
%tmp = add i32 %arg, 0, !metadata !2
2829
ret void
2930
}
@@ -34,6 +35,7 @@ define void @globalfunc1(i32 %arg) {
3435
; These function are not imported and so we don't want to load their metadata.
3536

3637
define void @globalfunc2(i32 %arg) {
38+
%x = call i1 @llvm.type.test(i8* undef, metadata !"typeid1")
3739
%tmp = add i32 %arg, 0, !metadata !1
3840
ret void
3941
}
@@ -43,6 +45,8 @@ define void @globalfunc3(i32 %arg) {
4345
ret void
4446
}
4547

48+
declare i1 @llvm.type.test(i8* %ptr, metadata %bitset) nounwind readnone
49+
4650
!1 = !{!2, !3, !4, !5, !6, !7, !8, !9}
4751
!2 = !{!"Hello World"}
4852
!3 = !{!"3"}
@@ -51,4 +55,4 @@ define void @globalfunc3(i32 %arg) {
5155
!6 = !{!9}
5256
!7 = !{!"7"}
5357
!8 = !{!"8"}
54-
!9 = !{!6}
58+
!9 = !{!6}

0 commit comments

Comments
 (0)
Please sign in to comment.