mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-29 10:32:47 +00:00
7486d92a6c
For COFF and MachO, sections semantically have relocations that apply to them. That is not the case on ELF. In relocatable objects (.o), a section with relocations in ELF has offsets to another section where the relocations should be applied. In dynamic objects and executables, relocations don't have an offset, they have a virtual address. The section sh_info may or may not point to another section, but that is not actually used for resolving the relocations. This patch exposes that in the ObjectFile API. It has the following advantages: * Most (all?) clients can handle this more efficiently. They will normally walk all relocations, so doing an effort to iterate in a particular order doesn't save time. * llvm-readobj now prints relocations in the same way the native readelf does. * probably most important, relocations that don't point to any section are now visible. This is the case of relocations in the rela.dyn section. See the updated relocation-executable.test for example. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182908 91177308-0d34-0410-b5e6-96231b3b80d8
47 lines
1.1 KiB
ArmAsm
47 lines
1.1 KiB
ArmAsm
// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | llvm-readobj -r -t | FileCheck %s
|
|
|
|
// Test that this produces a R_X86_64_PLT32 with bar.
|
|
|
|
.globl foo
|
|
foo:
|
|
bar = foo
|
|
.section zed, "", @progbits
|
|
call bar@PLT
|
|
|
|
|
|
// Test that this produres a relocation with bar2
|
|
|
|
.weak foo2
|
|
foo2:
|
|
.weak bar2
|
|
.set bar2,foo2
|
|
.quad bar2
|
|
|
|
// CHECK: Relocations [
|
|
// CHECK-NEXT: Section ({{[0-9]+}}) .relazed {
|
|
// CHECK-NEXT: 0x1 R_X86_64_PLT32 bar 0xFFFFFFFFFFFFFFFC
|
|
// CHECK-NEXT: 0x5 R_X86_64_64 bar2 0x0
|
|
// CHECK-NEXT: }
|
|
// CHECK-NEXT: ]
|
|
|
|
// CHECK: Symbols [
|
|
// CHECK: Symbol {
|
|
// CHECK-NEXT: Name: bar
|
|
// CHECK-NEXT: Value: 0x0
|
|
// CHECK-NEXT: Size: 0
|
|
// CHECK-NEXT: Binding: Local
|
|
// CHECK-NEXT: Type: None
|
|
// CHECK-NEXT: Other: 0
|
|
// CHECK-NEXT: Section: .text
|
|
// CHECK-NEXT: }
|
|
|
|
// CHECK: Symbol {
|
|
// CHECK: Name: bar2
|
|
// CHECK-NEXT: Value: 0x5
|
|
// CHECK-NEXT: Size: 0
|
|
// CHECK-NEXT: Binding: Weak
|
|
// CHECK-NEXT: Type: None
|
|
// CHECK-NEXT: Other: 0
|
|
// CHECK-NEXT: Section: zed
|
|
// CHECK-NEXT: }
|