mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-12 15:05:06 +00:00
a1db5de9e7
This patch adjust the r171506 to make all DWARF enconding pc-relative for PPC64. It also adds the R_PPC64_REL32 relocation handling in MCJIT (since the eh_frame will not generate PIC-relative relocation) and also adds the emission of stubs created by the TTypeEncoding. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171979 91177308-0d34-0410-b5e6-96231b3b80d8
79 lines
3.0 KiB
LLVM
79 lines
3.0 KiB
LLVM
; RUN: llc -mtriple=powerpc64-unknown-linux-gnu -filetype=obj -relocation-model=static %s -o - | \
|
|
; RUN: elf-dump --dump-section-data | FileCheck %s -check-prefix=STATIC
|
|
; RUN: llc -mtriple=powerpc64-unknown-linux-gnu -filetype=obj -relocation-model=pic %s -o - | \
|
|
; RUN: elf-dump --dump-section-data | FileCheck %s -check-prefix=PIC
|
|
|
|
; FIXME: this file should be in .s form, change when asm parser is available.
|
|
|
|
define void @f() {
|
|
entry:
|
|
ret void
|
|
}
|
|
|
|
; STATIC: ('sh_name', 0x{{.*}}) # '.eh_frame'
|
|
; STATIC-NEXT: ('sh_type', 0x00000001)
|
|
; STATIC-NEXT: ('sh_flags', 0x0000000000000002)
|
|
; STATIC-NEXT: ('sh_addr', 0x{{.*}})
|
|
; STATIC-NEXT: ('sh_offset', 0x{{.*}})
|
|
; STATIC-NEXT: ('sh_size', 0x0000000000000028)
|
|
; STATIC-NEXT: ('sh_link', 0x00000000)
|
|
; STATIC-NEXT: ('sh_info', 0x00000000)
|
|
; STATIC-NEXT: ('sh_addralign', 0x0000000000000008)
|
|
; STATIC-NEXT: ('sh_entsize', 0x0000000000000000)
|
|
; STATIC-NEXT: ('_section_data', '00000010 00000000 017a5200 01784101 1b0c0100 00000010 00000018 00000000 00000010 00000000')
|
|
|
|
; STATIC: ('sh_name', 0x{{.*}}) # '.rela.eh_frame'
|
|
; STATIC-NEXT: ('sh_type', 0x00000004)
|
|
; STATIC-NEXT: ('sh_flags', 0x0000000000000000)
|
|
; STATIC-NEXT: ('sh_addr', 0x{{.*}})
|
|
; STATIC-NEXT: ('sh_offset', 0x{{.*}})
|
|
; STATIC-NEXT: ('sh_size', 0x0000000000000018)
|
|
; STATIC-NEXT: ('sh_link', 0x{{.*}})
|
|
; STATIC-NEXT: ('sh_info', 0x{{.*}})
|
|
; STATIC-NEXT: ('sh_addralign', 0x0000000000000008)
|
|
; STATIC-NEXT: ('sh_entsize', 0x0000000000000018)
|
|
; STATIC-NEXT: ('_relocations', [
|
|
|
|
; Static build should create R_PPC64_REL32 relocations
|
|
; STATIC-NEXT: # Relocation 0
|
|
; STATIC-NEXT: (('r_offset', 0x000000000000001c)
|
|
; STATIC-NEXT: ('r_sym', 0x{{.*}})
|
|
; STATIC-NEXT: ('r_type', 0x0000001a)
|
|
; STATIC-NEXT: ('r_addend', 0x0000000000000000)
|
|
; STATIC-NEXT: ),
|
|
; STATIC-NEXT: ])
|
|
|
|
|
|
; PIC: ('sh_name', 0x{{.*}}) # '.eh_frame'
|
|
; PIC-NEXT: ('sh_type', 0x00000001)
|
|
; PIC-NEXT: ('sh_flags', 0x0000000000000002)
|
|
; PIC-NEXT: ('sh_addr', 0x{{.*}})
|
|
; PIC-NEXT: ('sh_offset', 0x{{.*}})
|
|
; PIC-NEXT: ('sh_size', 0x0000000000000028)
|
|
; PIC-NEXT: ('sh_link', 0x00000000)
|
|
; PIC-NEXT: ('sh_info', 0x00000000)
|
|
; PIC-NEXT: ('sh_addralign', 0x0000000000000008)
|
|
; PIC-NEXT: ('sh_entsize', 0x0000000000000000)
|
|
; PIC-NEXT: ('_section_data', '00000010 00000000 017a5200 01784101 1b0c0100 00000010 00000018 00000000 00000010 00000000')
|
|
|
|
; PIC: ('sh_name', 0x{{.*}}) # '.rela.eh_frame'
|
|
; PIC-NEXT: ('sh_type', 0x00000004)
|
|
; PIC-NEXT: ('sh_flags', 0x0000000000000000)
|
|
; PIC-NEXT: ('sh_addr', 0x{{.*}})
|
|
; PIC-NEXT: ('sh_offset', 0x{{.*}})
|
|
; PIC-NEXT: ('sh_size', 0x0000000000000018)
|
|
; PIC-NEXT: ('sh_link', 0x{{.*}})
|
|
; PIC-NEXT: ('sh_info', 0x{{.*}})
|
|
; PIC-NEXT: ('sh_addralign', 0x0000000000000008)
|
|
; PIC-NEXT: ('sh_entsize', 0x0000000000000018)
|
|
; PIC-NEXT: ('_relocations', [
|
|
|
|
; PIC build should create R_PPC64_REL32 relocations
|
|
; PIC-NEXT: # Relocation 0
|
|
; PIC-NEXT: (('r_offset', 0x000000000000001c)
|
|
; PIC-NEXT: ('r_sym', 0x{{.*}})
|
|
; PIC-NEXT: ('r_type', 0x0000001a)
|
|
; PIC-NEXT: ('r_addend', 0x0000000000000000)
|
|
; PIC-NEXT: ),
|
|
; PIC-NEXT: ])
|