llvm-6502/test/MC/ELF/basic-elf-32.s
Rafael Espindola 7486d92a6c Change how we iterate over relocations on ELF.
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
2013-05-30 03:05:14 +00:00

83 lines
1.6 KiB
ArmAsm

// RUN: llvm-mc -filetype=obj -triple i686-pc-linux-gnu %s -o - | llvm-readobj -h -s -r -t | FileCheck %s
.text
.globl main
.align 16, 0x90
.type main,@function
main: # @main
# BB#0:
subl $4, %esp
movl $.L.str1, (%esp)
calll puts
movl $.L.str2, (%esp)
calll puts
xorl %eax, %eax
addl $4, %esp
ret
.Ltmp0:
.size main, .Ltmp0-main
.type .L.str1,@object # @.str1
.section .rodata.str1.1,"aMS",@progbits,1
.L.str1:
.asciz "Hello"
.size .L.str1, 6
.type .L.str2,@object # @.str2
.L.str2:
.asciz "World!"
.size .L.str2, 7
.section .note.GNU-stack,"",@progbits
// CHECK: ElfHeader {
// CHECK: Class: 32-bit
// CHECK: DataEncoding: LittleEndian
// CHECK: FileVersion: 1
// CHECK: }
// CHECK: Sections [
// CHECK: Section {
// CHECK: Index: 0
// CHECK: Name: (0)
// CHECK: Name: .text
// CHECK: Name: .rel.text
// CHECK: Relocations [
// CHECK: Section (2) .rel.text {
// CHECK: 0x6 R_386_32 .rodata.str1.1
// CHECK: 0xB R_386_PC32 puts
// CHECK: 0x12 R_386_32 .rodata.str1.1
// CHECK: 0x17 R_386_PC32 puts
// CHECK: }
// CHECK: ]
// CHECK: Symbols [
// CHECK: Symbol {
// CHECK: Binding: Local
// CHECK: Type: Section
// CHECK: }
// CHECK: Symbol {
// CHECK: Binding: Local
// CHECK: Type: Section
// CHECK: }
// CHECK: Symbol {
// CHECK: Binding: Local
// CHECK: Type: Section
// CHECK: }
// CHECK: Symbol {
// CHECK: Name: main
// CHECK: Binding: Global
// CHECK: Type: Function
// CHECK: }
// CHECK: Symbol {
// CHECK: Name: puts
// CHECK: Binding: Global
// CHECK: Type: None
// CHECK: }