mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
19ffcd1328
This section contains strings specifying libraries to be added to the link by the linker. The strings are encoded as standard null-terminated UTF-8 strings. This patch adds a way to describe and dump SHT_LLVM_DEPENDENT_LIBRARIES sections. I introduced a new YAMLFlowString type here. That used to teach obj2yaml to dump them like: ``` Libraries: [ foo, bar ] ``` instead of the following (if StringRef would be used): ``` Libraries: - foo - bar ``` Differential revision: https://reviews.llvm.org/D70598
43 lines
1.5 KiB
YAML
43 lines
1.5 KiB
YAML
## Check how obj2yaml produces SHT_LLVM_DEPENDENT_LIBRARIES section descriptions.
|
|
|
|
# RUN: yaml2obj %s -o %t
|
|
# RUN: obj2yaml %t | FileCheck %s
|
|
|
|
# CHECK: Sections:
|
|
# CHECK-NEXT: - Name: .deplibs.single
|
|
# CHECK-NEXT: Type: SHT_LLVM_DEPENDENT_LIBRARIES
|
|
# CHECK-NEXT: Libraries: [ foo ]
|
|
# CHECK-NEXT: - Name: .deplibs.multiple
|
|
# CHECK-NEXT: Type: SHT_LLVM_DEPENDENT_LIBRARIES
|
|
# CHECK-NEXT: Libraries: [ foo, bar, foo ]
|
|
# CHECK-NEXT: - Name: .deplibs.empty
|
|
# CHECK-NEXT: Type: SHT_LLVM_DEPENDENT_LIBRARIES
|
|
# CHECK-NEXT: Libraries: [ ]
|
|
# CHECK-NEXT: - Name: .deplibs.nonul
|
|
# CHECK-NEXT: Type: SHT_LLVM_DEPENDENT_LIBRARIES
|
|
# CHECK-NEXT: Content: 666F6F
|
|
|
|
--- !ELF
|
|
FileHeader:
|
|
Class: ELFCLASS64
|
|
Data: ELFDATA2LSB
|
|
Type: ET_REL
|
|
Machine: EM_X86_64
|
|
Sections:
|
|
## Case 1: test we use "Libraries" when dumping a valid section with a null-terminated string.
|
|
- Name: .deplibs.single
|
|
Type: SHT_LLVM_DEPENDENT_LIBRARIES
|
|
Libraries: [ foo ]
|
|
## Case 2: the same, but the section has multiple strings.
|
|
- Name: .deplibs.multiple
|
|
Type: SHT_LLVM_DEPENDENT_LIBRARIES
|
|
Libraries: [ foo, bar, foo ]
|
|
## Case 3: test we use "Libraries" when dumping an empty section.
|
|
- Name: .deplibs.empty
|
|
Type: SHT_LLVM_DEPENDENT_LIBRARIES
|
|
Libraries: [ ]
|
|
## Case 4: test we use "Content" when dumping a non-null terminated section.
|
|
- Name: .deplibs.nonul
|
|
Type: SHT_LLVM_DEPENDENT_LIBRARIES
|
|
Content: "666f6f"
|