1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00
llvm-mirror/test/Object/Lanai/yaml2obj-elf-lanai-rel.yaml
Chris Bieneman 1f183c5130 [yaml2obj] Remove --format option in favor of YAML tags
Summary:
Our YAML library's handling of tags isn't perfect, but it is good enough to get rid of the need for the --format argument to yaml2obj. This patch does exactly that.

Instead of requiring --format, it infers the format based on the tags found in the object file. The supported tags are:

!ELF
!COFF
!mach-o
!fat-mach-o

I have a corresponding patch that is quite large that fixes up all the in-tree test cases.

Reviewers: rafael, Bigcheese, compnerd, silvas

Subscribers: compnerd, llvm-commits

Differential Revision: http://reviews.llvm.org/D21711

llvm-svn: 273915
2016-06-27 19:53:53 +00:00

68 lines
1.8 KiB
YAML

# RUN: yaml2obj %s > %t
# RUN: llvm-readobj -r %t | FileCheck %s
# CHECK: Relocations [
# CHECK-NEXT: Section (2) .rel.text {
# CHECK-NEXT: 0x0 R_LANAI_32 main 0x0
# CHECK-NEXT: 0x4 R_LANAI_NONE - 0x0
# CHECK-NEXT: 0x8 R_LANAI_21 - 0x0
# CHECK-NEXT: 0xC R_LANAI_21_F - 0x0
# CHECK-NEXT: 0x10 R_LANAI_25 - 0x0
# CHECK-NEXT: 0x14 R_LANAI_HI16 - 0x0
# CHECK-NEXT: 0x18 R_LANAI_LO16 - 0x0
# CHECK-NEXT: }
# CHECK-NEXT: ]
!ELF
FileHeader:
Class: ELFCLASS32
Data: ELFDATA2LSB
Type: ET_REL
Machine: EM_LANAI
Sections:
- Type: SHT_PROGBITS
Name: .text
Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
AddressAlign: 0x04
Content: 0000000000000000
- Type: SHT_REL
Name: .rel.text
Link: .symtab
Info: .text
AddressAlign: 0x04
Relocations:
- Offset: 0x0
Symbol: main
Type: R_LANAI_32
- Offset: 0x4
Symbol: a
Type: R_LANAI_NONE
- Offset: 0x8
Symbol: b
Type: R_LANAI_21
- Offset: 0xC
Symbol: c
Type: R_LANAI_21_F
- Offset: 0x10
Symbol: d
Type: R_LANAI_25
- Offset: 0x14
Symbol: e
Type: R_LANAI_HI16
- Offset: 0x18
Symbol: f
Type: R_LANAI_LO16
Symbols:
Local:
- Name: .text
Type: STT_SECTION
Section: .text
Global:
- Name: main
Type: STT_FUNC
Section: .text
Size: 0x08