mirror of
https://src.fedoraproject.org/rpms/llvm.git
synced 2024-11-24 17:34:47 +00:00
Fix discriminators in metadata, rhbz#1668033
This commit is contained in:
parent
8eccc650c2
commit
cf8888829a
3 changed files with 95 additions and 1 deletions
|
@ -0,0 +1,60 @@
|
||||||
|
From 2ad5ac11b17dac347d29191872b2b3d601bbcd1f Mon Sep 17 00:00:00 2001
|
||||||
|
From: Jonas Devlieghere <jonas@devlieghere.com>
|
||||||
|
Date: Fri, 21 Sep 2018 12:03:14 +0000
|
||||||
|
Subject: [PATCH 1/2] Ensure that variant part discriminator is read by
|
||||||
|
MetadataLoader
|
||||||
|
|
||||||
|
https://reviews.llvm.org/D42082 introduced variant parts to debug info
|
||||||
|
in LLVM. Subsequent work on the Rust compiler has found a bug in that
|
||||||
|
patch; namely, there is a path in MetadataLoader that fails to restore
|
||||||
|
the discriminator.
|
||||||
|
|
||||||
|
This patch fixes the bug.
|
||||||
|
|
||||||
|
Patch by: Tom Tromey
|
||||||
|
|
||||||
|
Differential revision: https://reviews.llvm.org/D52340
|
||||||
|
|
||||||
|
llvm-svn: 342725
|
||||||
|
---
|
||||||
|
llvm/lib/Bitcode/Reader/MetadataLoader.cpp | 2 +-
|
||||||
|
llvm/test/Assembler/debug-variant-discriminator.ll | 14 ++++++++++++++
|
||||||
|
2 files changed, 15 insertions(+), 1 deletion(-)
|
||||||
|
create mode 100644 llvm/test/Assembler/debug-variant-discriminator.ll
|
||||||
|
|
||||||
|
diff --git a/lib/Bitcode/Reader/MetadataLoader.cpp b/lib/Bitcode/Reader/MetadataLoader.cpp
|
||||||
|
index 011c41e2cecd..a7b542efc19e 100644
|
||||||
|
--- a/lib/Bitcode/Reader/MetadataLoader.cpp
|
||||||
|
+++ b/lib/Bitcode/Reader/MetadataLoader.cpp
|
||||||
|
@@ -1308,7 +1308,7 @@ Error MetadataLoader::MetadataLoaderImpl::parseOneMetadata(
|
||||||
|
(Context, Tag, Name, File, Line, Scope, BaseType,
|
||||||
|
SizeInBits, AlignInBits, OffsetInBits, Flags,
|
||||||
|
Elements, RuntimeLang, VTableHolder, TemplateParams,
|
||||||
|
- Identifier));
|
||||||
|
+ Identifier, Discriminator));
|
||||||
|
if (!IsNotUsedInTypeRef && Identifier)
|
||||||
|
MetadataList.addTypeRef(*Identifier, *cast<DICompositeType>(CT));
|
||||||
|
|
||||||
|
diff --git a/test/Assembler/debug-variant-discriminator.ll b/test/Assembler/debug-variant-discriminator.ll
|
||||||
|
new file mode 100644
|
||||||
|
index 000000000000..5be001cad6be
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/test/Assembler/debug-variant-discriminator.ll
|
||||||
|
@@ -0,0 +1,14 @@
|
||||||
|
+; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | FileCheck %s
|
||||||
|
+; RUN: verify-uselistorder %s
|
||||||
|
+
|
||||||
|
+; CHECK: !named = !{!0, !1, !2}
|
||||||
|
+!named = !{!0, !1, !2}
|
||||||
|
+
|
||||||
|
+; CHECK: !0 = !DICompositeType(tag: DW_TAG_structure_type, name: "Outer", size: 64, align: 64, identifier: "Outer")
|
||||||
|
+; CHECK-NEXT: !1 = !DICompositeType(tag: DW_TAG_variant_part, scope: !0, size: 64, discriminator: !2)
|
||||||
|
+; CHECK-NEXT: !2 = !DIDerivedType(tag: DW_TAG_member, scope: !1, baseType: !3, size: 64, align: 64, flags: DIFlagArtificial)
|
||||||
|
+; CHECK-NEXT: !3 = !DIBasicType(name: "u64", size: 64, encoding: DW_ATE_unsigned)
|
||||||
|
+!0 = !DICompositeType(tag: DW_TAG_structure_type, name: "Outer", size: 64, align: 64, identifier: "Outer")
|
||||||
|
+!1 = !DICompositeType(tag: DW_TAG_variant_part, scope: !0, size: 64, discriminator: !2)
|
||||||
|
+!2 = !DIDerivedType(tag: DW_TAG_member, scope: !1, baseType: !3, size: 64, align: 64, flags: DIFlagArtificial)
|
||||||
|
+!3 = !DIBasicType(name: "u64", size: 64, encoding: DW_ATE_unsigned)
|
||||||
|
--
|
||||||
|
2.20.1
|
||||||
|
|
28
0002-test-Fix-Assembler-debug-info.ll.patch
Normal file
28
0002-test-Fix-Assembler-debug-info.ll.patch
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
From 9bfebd6e47cb8513dcd7f7203f29489bdec7bfe4 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Jonas Devlieghere <jonas@devlieghere.com>
|
||||||
|
Date: Fri, 21 Sep 2018 12:28:44 +0000
|
||||||
|
Subject: [PATCH 2/2] [test] Fix Assembler/debug-info.ll
|
||||||
|
|
||||||
|
Update Assembler/debug-info.ll to contain discriminator.
|
||||||
|
|
||||||
|
llvm-svn: 342727
|
||||||
|
---
|
||||||
|
llvm/test/Assembler/debug-info.ll | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/test/Assembler/debug-info.ll b/test/Assembler/debug-info.ll
|
||||||
|
index 5dfb8cd93435..605afc3f1587 100644
|
||||||
|
--- a/test/Assembler/debug-info.ll
|
||||||
|
+++ b/test/Assembler/debug-info.ll
|
||||||
|
@@ -83,7 +83,7 @@
|
||||||
|
; CHECK-NEXT: !32 = !DIFile(filename: "file", directory: "dir", checksumkind: CSK_MD5, checksum: "000102030405060708090a0b0c0d0e0f")
|
||||||
|
!35 = !DIFile(filename: "file", directory: "dir", checksumkind: CSK_MD5, checksum: "000102030405060708090a0b0c0d0e0f")
|
||||||
|
|
||||||
|
-; CHECK-NEXT: !33 = !DICompositeType(tag: DW_TAG_variant_part, name: "A", scope: !14, size: 64)
|
||||||
|
+; CHECK-NEXT: !33 = !DICompositeType(tag: DW_TAG_variant_part, name: "A", scope: !14, size: 64, discriminator: !34)
|
||||||
|
; CHECK-NEXT: !34 = !DIDerivedType(tag: DW_TAG_member, scope: !33, baseType: !35, size: 64, align: 64, flags: DIFlagArtificial)
|
||||||
|
; CHECK-NEXT: !35 = !DIBasicType(name: "u64", size: 64, encoding: DW_ATE_unsigned)
|
||||||
|
!36 = !DICompositeType(tag: DW_TAG_variant_part, name: "A", scope: !16, size: 64, discriminator: !37)
|
||||||
|
--
|
||||||
|
2.20.1
|
||||||
|
|
|
@ -55,7 +55,7 @@
|
||||||
|
|
||||||
Name: %{pkg_name}
|
Name: %{pkg_name}
|
||||||
Version: %{maj_ver}.%{min_ver}.%{patch_ver}
|
Version: %{maj_ver}.%{min_ver}.%{patch_ver}
|
||||||
Release: 1%{?rc_ver:.rc%{rc_ver}}%{?dist}
|
Release: 2%{?rc_ver:.rc%{rc_ver}}%{?dist}
|
||||||
Summary: The Low Level Virtual Machine
|
Summary: The Low Level Virtual Machine
|
||||||
|
|
||||||
License: NCSA
|
License: NCSA
|
||||||
|
@ -73,6 +73,9 @@ Patch12: 0001-unittests-Don-t-install-TestPlugin.so.patch
|
||||||
Patch14: 0001-CMake-Don-t-prefer-python2.7.patch
|
Patch14: 0001-CMake-Don-t-prefer-python2.7.patch
|
||||||
Patch15: 0001-Don-t-set-rpath-when-installing.patch
|
Patch15: 0001-Don-t-set-rpath-when-installing.patch
|
||||||
|
|
||||||
|
Patch16: 0001-Ensure-that-variant-part-discriminator-is-read-by-Me.patch
|
||||||
|
Patch17: 0002-test-Fix-Assembler-debug-info.ll.patch
|
||||||
|
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: cmake
|
BuildRequires: cmake
|
||||||
|
@ -447,6 +450,9 @@ fi
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jan 21 2019 Josh Stone <jistone@redhat.com> - 7.0.1-2
|
||||||
|
- Fix discriminators in metadata, rhbz#1668033
|
||||||
|
|
||||||
* Mon Dec 17 2018 sguelton@redhat.com - 7.0.1-1
|
* Mon Dec 17 2018 sguelton@redhat.com - 7.0.1-1
|
||||||
- 7.0.1 release
|
- 7.0.1 release
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue