mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-30 20:24:32 +00:00
[yaml2obj] Support AArch64 relocations.
Patch by Daniel Stewart <stewartd@codeaurora.org>! Phabricator Revision: http://reviews.llvm.org/D6192 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@221639 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
47
test/Object/AArch64/yaml2obj-elf-aarch64-rel.yaml
Normal file
47
test/Object/AArch64/yaml2obj-elf-aarch64-rel.yaml
Normal file
@ -0,0 +1,47 @@
|
||||
# RUN: yaml2obj -format=elf %s > %t
|
||||
# RUN: obj2yaml %t | FileCheck %s
|
||||
|
||||
# CHECK: - Name: .rela.text
|
||||
# CHECK-NEXT: Type: SHT_RELA
|
||||
# CHECK-NEXT: Link: .symtab
|
||||
# CHECK-NEXT: AddressAlign: 0x0000000000000008
|
||||
# CHECK-NEXT: Info: .text
|
||||
# CHECK-NEXT: Relocations:
|
||||
# CHECK-NEXT: - Offset: 0x0000000000000000
|
||||
# CHECK-NEXT: Symbol: main
|
||||
# CHECK-NEXT: Type: R_AARCH64_ABS64
|
||||
# CHECK-NEXT: Addend: 0
|
||||
|
||||
FileHeader:
|
||||
Class: ELFCLASS64
|
||||
Data: ELFDATA2LSB
|
||||
Type: ET_REL
|
||||
Machine: EM_AARCH64
|
||||
Sections:
|
||||
- Type: SHT_PROGBITS
|
||||
Name: .text
|
||||
Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
|
||||
AddressAlign: 0x04
|
||||
Content: 0000000000000000
|
||||
- Type: SHT_RELA
|
||||
Name: .rela.text
|
||||
Link: .symtab
|
||||
Info: .text
|
||||
AddressAlign: 0x08
|
||||
Relocations:
|
||||
- Offset: 0
|
||||
Symbol: main
|
||||
Type: R_AARCH64_ABS64
|
||||
Addend: 0
|
||||
|
||||
Symbols:
|
||||
Local:
|
||||
- Name: .text
|
||||
Type: STT_SECTION
|
||||
Section: .text
|
||||
|
||||
Global:
|
||||
- Name: main
|
||||
Type: STT_FUNC
|
||||
Section: .text
|
||||
Size: 0x08
|
Reference in New Issue
Block a user