[llvm] r339764 - [yaml2obj] - Teach tool to produce SHT_GROUP section with a custom type.
George Rimar via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 15 04:43:00 PDT 2018
Author: grimar
Date: Wed Aug 15 04:43:00 2018
New Revision: 339764
URL: http://llvm.org/viewvc/llvm-project?rev=339764&view=rev
Log:
[yaml2obj] - Teach tool to produce SHT_GROUP section with a custom type.
Currently, it is possible to use yaml2obj for producing SHT_GROUP sections
of type GRP_COMDAT. For LLD test case I need to produce an object with
a broken (different from GRP_COMDAT) type.
The patch teaches tool to do such things.
Differential revision: https://reviews.llvm.org/D50761
Added:
llvm/trunk/test/tools/yaml2obj/elf-comdat-broken.yaml
Modified:
llvm/trunk/tools/yaml2obj/yaml2elf.cpp
Added: llvm/trunk/test/tools/yaml2obj/elf-comdat-broken.yaml
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/tools/yaml2obj/elf-comdat-broken.yaml?rev=339764&view=auto
==============================================================================
--- llvm/trunk/test/tools/yaml2obj/elf-comdat-broken.yaml (added)
+++ llvm/trunk/test/tools/yaml2obj/elf-comdat-broken.yaml Wed Aug 15 04:43:00 2018
@@ -0,0 +1,34 @@
+# RUN: yaml2obj %s -o %t
+# RUN: llvm-readobj -sections -elf-section-groups %t | FileCheck %s
+
+--- !ELF
+FileHeader:
+ Class: ELFCLASS64
+ Data: ELFDATA2LSB
+ Type: ET_REL
+ Machine: EM_X86_64
+Sections:
+ - Name: .group
+ Type: SHT_GROUP
+ Link: .symtab
+ Info: foo
+ Members:
+ - SectionOrType: 0xFF
+ - SectionOrType: 3
+Symbols:
+ Global:
+ - Name: foo
+
+## Check we are able to produce SHT_GROUP section with a custom Type (0xFF).
+# CHECK: Groups {
+# CHECK-NEXT: Group {
+# CHECK-NEXT: Name: .group
+# CHECK-NEXT: Index: 1
+# CHECK-NEXT: Link: 2
+# CHECK-NEXT: Info: 1
+# CHECK-NEXT: Type: COMDAT (0xFF)
+# CHECK-NEXT: Signature: foo
+# CHECK-NEXT: Section(s) in group [
+# CHECK-NEXT: .strtab (3)
+# CHECK-NEXT: ]
+# CHECK-NEXT: }
Modified: llvm/trunk/tools/yaml2obj/yaml2elf.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/yaml2obj/yaml2elf.cpp?rev=339764&r1=339763&r2=339764&view=diff
==============================================================================
--- llvm/trunk/tools/yaml2obj/yaml2elf.cpp (original)
+++ llvm/trunk/tools/yaml2obj/yaml2elf.cpp Wed Aug 15 04:43:00 2018
@@ -537,7 +537,8 @@ bool ELFState<ELFT>::writeSectionContent
unsigned int sectionIndex = 0;
if (member.sectionNameOrType == "GRP_COMDAT")
sectionIndex = llvm::ELF::GRP_COMDAT;
- else if (SN2I.lookup(member.sectionNameOrType, sectionIndex)) {
+ else if (SN2I.lookup(member.sectionNameOrType, sectionIndex) &&
+ !to_integer(member.sectionNameOrType, sectionIndex)) {
WithColor::error() << "Unknown section referenced: '"
<< member.sectionNameOrType << "' at YAML section' "
<< Section.Name << "\n";
More information about the llvm-commits
mailing list