bfd/
* reloc.c: Add x86-64 TLS relocs.
* bfd-in2.h, libbfd.h: Rebuilt.
* elf64-x86-64.c (x86_64_elf_howto): Fix size fields for 32-bit
relocs. Add TLS relocs.
(x86_64_reloc_map): Add TLS relocs.
(elf64_x86_64_info_to_howto): Adjust for added TLS relocs.
(struct elf64_x86_64_link_hash_entry): Add tls_type field.
(GOT_UNKNOWN, GOT_NORMAL, GOT_TLS_GD, GOT_TLS_IE): Define.
(elf64_x86_64_hash_entry): Define.
(struct elf64_x86_64_obj_tdata): New.
(elf64_x86_64_tdata, elf64_x86_64_local_got_tls_type): Define.
(struct elf64_x86_64_link_hash_table): Add tls_ld_got.
(link_hash_newfunc): Initialize tls_type.
(elf64_x86_64_link_hash_table_create): Initialize tls_ld_got.
(elf64_x86_64_copy_indirect_symbol): Swap tls_type if necessary.
(elf64_x86_64_mkobject): New.
(elf64_x86_64_elf_object_p): Allocate struct elf64_x86_64_obj_tdata.
(elf64_x86_64_tls_transition): New.
(elf64_x86_64_check_relocs): Add r_type variable and use it.
Handle TLS relocs.
(elf64_x86_64_gc_sweep_hook): Handle TLS relocs.
(allocate_dynrelocs): Allocate GOT space for TLS relocs.
(elf64_x86_64_size_dynamic_sections): Likewise.
(dtpoff_base, tpoff): New.
(elf64_x86_64_relocate_section): Handle TLS relocs.
(elf64_x86_64_finish_dynamic_symbol): Only handle non-TLS GOT
entries.
(bfd_elf64_mkobject): Define.
* elf32-i386.c (elf_i386_check_relocs) [R_386_TLS_LE]: Set
DF_STATIC_TLS if shared.
gas/
* config/tc-i386.c (tc_i386_fix_adjustable): Add x86-64 TLS relocs.
Define them if not BFD_ASSEMBLER.
(lex_got): Handle @tlsgd, @dtpoff and @tpoff in 64-bit mode, add
@tlsld.
(md_apply_fix3): No addend for BFD_RELOC_X86_64_TLSGD,
BFD_RELOC_X86_64_TLSLD and BFD_RELOC_X86_64_GOTTPOFF.
(tc_gen_reloc): Handle x86-64 TLS relocs.
include/
* elf/x86-64.h: Add TLS relocs.
ld/testsuite/
* lib/ld-lib.exp (run_ld_link_tests): Add.
* ld-sh/sh64/sh64.exp (run_ld_link_tests, regexp_diff,
file_contents): Remove.
(sh64tests): Add 6th field to the tests array.
* ld-i386/i386.exp (run_ld_link_tests): Remove.
* ld-x86-64/x86-64.exp: New.
* ld-x86-64/tlsbin.dd: New test.
* ld-x86-64/tlsbinpic.s: New test.
* ld-x86-64/tlsbin.rd: New test.
* ld-x86-64/tlsbin.s: New test.
* ld-x86-64/tlsbin.sd: New test.
* ld-x86-64/tlsbin.td: New test.
* ld-x86-64/tlslib.s: New test.
* ld-x86-64/tlspic1.s: New test.
* ld-x86-64/tlspic2.s: New test.
* ld-x86-64/tlspic.dd: New test.
* ld-x86-64/tlspic.rd: New test.
* ld-x86-64/tlspic.sd: New test.
* ld-x86-64/tlspic.td: New test.
2002-09-27 19:29:18 +00:00
|
|
|
.section ".tbss", "awT", @nobits
|
|
|
|
.globl bg1, bg2, bg3, bg4, bg5, bg6, bg7, bg8
|
|
|
|
bg1: .space 4
|
|
|
|
bg2: .space 4
|
|
|
|
bg3: .space 4
|
|
|
|
bg4: .space 4
|
|
|
|
bg5: .space 4
|
|
|
|
bg6: .space 4
|
|
|
|
bg7: .space 4
|
|
|
|
bg8: .space 4
|
|
|
|
bl1: .space 4
|
|
|
|
bl2: .space 4
|
|
|
|
bl3: .space 4
|
|
|
|
bl4: .space 4
|
|
|
|
bl5: .space 4
|
|
|
|
bl6: .space 4
|
|
|
|
bl7: .space 4
|
|
|
|
bl8: .space 4
|
|
|
|
.text
|
|
|
|
.globl _start
|
|
|
|
.type _start,@function
|
|
|
|
_start:
|
|
|
|
pushq %rbp
|
|
|
|
movq %rsp, %rbp
|
|
|
|
|
|
|
|
/* IE against global var */
|
|
|
|
movq %fs:0, %r11
|
|
|
|
nop;nop
|
|
|
|
addq sG6@gottpoff(%rip), %r11
|
|
|
|
nop;nop;nop;nop
|
|
|
|
|
|
|
|
/* IE -> LE against global var defined in exec */
|
|
|
|
movq %fs:0, %rdx
|
|
|
|
nop;nop
|
|
|
|
addq bg6@gottpoff(%rip), %rdx
|
|
|
|
nop;nop;nop;nop
|
|
|
|
|
|
|
|
/* IE -> LE against local var */
|
|
|
|
movq %fs:0, %r12
|
|
|
|
nop;nop
|
|
|
|
addq bl6@gottpoff(%rip), %r12
|
|
|
|
nop;nop;nop;nop
|
|
|
|
|
|
|
|
/* direct %fs access IE -> LE against local var */
|
|
|
|
movq bl8@gottpoff(%rip), %rdx
|
|
|
|
nop;nop
|
|
|
|
movq %fs:(%rdx), %rax
|
|
|
|
nop;nop;nop;nop
|
|
|
|
|
|
|
|
/* IE -> LE against hidden but not local var */
|
|
|
|
movq %fs:0, %rdx
|
|
|
|
nop;nop
|
|
|
|
addq sh6@gottpoff(%rip), %rdx
|
|
|
|
nop;nop;nop;nop
|
|
|
|
|
|
|
|
/* direct %fs access IE -> LE against hidden but not local var */
|
|
|
|
movq sh8@gottpoff(%rip), %rdx
|
|
|
|
nop;nop
|
|
|
|
movq %fs:(%rdx), %rax
|
|
|
|
nop;nop;nop;nop
|
|
|
|
|
|
|
|
/* LE, global var defined in exec */
|
|
|
|
movq %fs:0, %rax
|
|
|
|
nop;nop
|
|
|
|
leaq sg2@tpoff(%rax), %rdx
|
|
|
|
nop;nop;nop;nop
|
|
|
|
|
|
|
|
/* LE, local var, non-canonical sequence */
|
|
|
|
movq $2+bl2@tpoff, %r9
|
|
|
|
nop;nop
|
|
|
|
movq %fs:0, %rdx
|
|
|
|
nop;nop
|
|
|
|
addq %r9, %rdx
|
|
|
|
nop;nop;nop;nop
|
|
|
|
|
|
|
|
/* LE, hidden var defined in exec, non-canonical sequence */
|
|
|
|
movq %fs:0, %rdx
|
|
|
|
nop;nop
|
|
|
|
addq $sh2@tpoff+1, %rdx
|
|
|
|
nop;nop;nop;nop
|
|
|
|
|
|
|
|
/* Direct %fs access */
|
|
|
|
|
|
|
|
/* LE, global var defined in exec */
|
|
|
|
movq %fs:sg3@tpoff, %rax
|
|
|
|
nop;nop;nop;nop
|
|
|
|
|
|
|
|
/* LE, local var */
|
|
|
|
movq %fs:bl3@tpoff+3, %r10
|
|
|
|
nop;nop;nop;nop
|
|
|
|
|
|
|
|
/* LE, hidden var defined in exec */
|
|
|
|
movq %fs:1+sh3@tpoff, %rdx
|
|
|
|
nop;nop;nop;nop
|
|
|
|
|
2011-05-26 13:22:04 +00:00
|
|
|
/* LE, large model */
|
|
|
|
movabsq $sh2@tpoff+1, %rdx
|
|
|
|
|
bfd/
* reloc.c: Add x86-64 TLS relocs.
* bfd-in2.h, libbfd.h: Rebuilt.
* elf64-x86-64.c (x86_64_elf_howto): Fix size fields for 32-bit
relocs. Add TLS relocs.
(x86_64_reloc_map): Add TLS relocs.
(elf64_x86_64_info_to_howto): Adjust for added TLS relocs.
(struct elf64_x86_64_link_hash_entry): Add tls_type field.
(GOT_UNKNOWN, GOT_NORMAL, GOT_TLS_GD, GOT_TLS_IE): Define.
(elf64_x86_64_hash_entry): Define.
(struct elf64_x86_64_obj_tdata): New.
(elf64_x86_64_tdata, elf64_x86_64_local_got_tls_type): Define.
(struct elf64_x86_64_link_hash_table): Add tls_ld_got.
(link_hash_newfunc): Initialize tls_type.
(elf64_x86_64_link_hash_table_create): Initialize tls_ld_got.
(elf64_x86_64_copy_indirect_symbol): Swap tls_type if necessary.
(elf64_x86_64_mkobject): New.
(elf64_x86_64_elf_object_p): Allocate struct elf64_x86_64_obj_tdata.
(elf64_x86_64_tls_transition): New.
(elf64_x86_64_check_relocs): Add r_type variable and use it.
Handle TLS relocs.
(elf64_x86_64_gc_sweep_hook): Handle TLS relocs.
(allocate_dynrelocs): Allocate GOT space for TLS relocs.
(elf64_x86_64_size_dynamic_sections): Likewise.
(dtpoff_base, tpoff): New.
(elf64_x86_64_relocate_section): Handle TLS relocs.
(elf64_x86_64_finish_dynamic_symbol): Only handle non-TLS GOT
entries.
(bfd_elf64_mkobject): Define.
* elf32-i386.c (elf_i386_check_relocs) [R_386_TLS_LE]: Set
DF_STATIC_TLS if shared.
gas/
* config/tc-i386.c (tc_i386_fix_adjustable): Add x86-64 TLS relocs.
Define them if not BFD_ASSEMBLER.
(lex_got): Handle @tlsgd, @dtpoff and @tpoff in 64-bit mode, add
@tlsld.
(md_apply_fix3): No addend for BFD_RELOC_X86_64_TLSGD,
BFD_RELOC_X86_64_TLSLD and BFD_RELOC_X86_64_GOTTPOFF.
(tc_gen_reloc): Handle x86-64 TLS relocs.
include/
* elf/x86-64.h: Add TLS relocs.
ld/testsuite/
* lib/ld-lib.exp (run_ld_link_tests): Add.
* ld-sh/sh64/sh64.exp (run_ld_link_tests, regexp_diff,
file_contents): Remove.
(sh64tests): Add 6th field to the tests array.
* ld-i386/i386.exp (run_ld_link_tests): Remove.
* ld-x86-64/x86-64.exp: New.
* ld-x86-64/tlsbin.dd: New test.
* ld-x86-64/tlsbinpic.s: New test.
* ld-x86-64/tlsbin.rd: New test.
* ld-x86-64/tlsbin.s: New test.
* ld-x86-64/tlsbin.sd: New test.
* ld-x86-64/tlsbin.td: New test.
* ld-x86-64/tlslib.s: New test.
* ld-x86-64/tlspic1.s: New test.
* ld-x86-64/tlspic2.s: New test.
* ld-x86-64/tlspic.dd: New test.
* ld-x86-64/tlspic.rd: New test.
* ld-x86-64/tlspic.sd: New test.
* ld-x86-64/tlspic.td: New test.
2002-09-27 19:29:18 +00:00
|
|
|
leave
|
|
|
|
ret
|