mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
26d8b75a51
Currently `yaml2obj` require `Offset` field in a relocation description. There are many cases when `Offset` is insignificant in a context of a test case. Making `Offset` optional allows to simplify our test cases. This is what this patch does. Also, with this patch `obj2yaml` does not dump a zero offset of a relocation. Differential revision: https://reviews.llvm.org/D75608
59 lines
1.6 KiB
YAML
59 lines
1.6 KiB
YAML
# RUN: yaml2obj %s -o %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:
|
|
- Symbol: main
|
|
Type: R_LANAI_32
|
|
- Offset: 0x4
|
|
Type: R_LANAI_NONE
|
|
- Offset: 0x8
|
|
Type: R_LANAI_21
|
|
- Offset: 0xC
|
|
Type: R_LANAI_21_F
|
|
- Offset: 0x10
|
|
Type: R_LANAI_25
|
|
- Offset: 0x14
|
|
Type: R_LANAI_HI16
|
|
- Offset: 0x18
|
|
Type: R_LANAI_LO16
|
|
|
|
|
|
Symbols:
|
|
- Name: .text
|
|
Type: STT_SECTION
|
|
Section: .text
|
|
- Name: main
|
|
Type: STT_FUNC
|
|
Section: .text
|
|
Size: 0x08
|
|
Binding: STB_GLOBAL
|