2018-06-27 00:58:19 +08:00
|
|
|
# REQUIRES: mips
|
2016-09-05 23:42:29 +08:00
|
|
|
# Check handling TLS related relocations and symbols when linking
|
|
|
|
# a static executable.
|
|
|
|
|
|
|
|
# RUN: llvm-mc -filetype=obj -triple=mips-unknown-linux %s -o %t
|
|
|
|
# RUN: ld.lld -static %t -o %t.exe
|
2016-09-05 23:42:39 +08:00
|
|
|
# RUN: llvm-objdump -s -t %t.exe | FileCheck %s
|
2016-09-05 23:42:29 +08:00
|
|
|
|
[llvm-objdump] Further rearrange llvm-objdump sections for compatability
Summary:
rL371826 rearranged some output from llvm-objdump for GNU objdump compatability, but there still seem to be some more.
I think this rearrangement is a little closer. Overview of the ordering which matches GNU objdump:
* Archive headers
* File headers
* Section headers
* Symbol table
* Dwarf debugging
* Relocations (if `--disassemble` is not used)
* Section contents
* Disassembly
Reviewers: jhenderson, justice_adams, grimar, ychen, espindola
Reviewed By: jhenderson
Subscribers: aprantl, emaste, arichardson, jrtc27, atanasyan, seiya, llvm-commits, MaskRay
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D68066
llvm-svn: 373671
2019-10-04 06:01:08 +08:00
|
|
|
# CHECK: SYMBOL TABLE:
|
2020-03-05 09:19:18 +08:00
|
|
|
# CHECK: [[TGA:[0-9a-f]+]] g .text 00000000 __tls_get_addr
|
[llvm-objdump] Further rearrange llvm-objdump sections for compatability
Summary:
rL371826 rearranged some output from llvm-objdump for GNU objdump compatability, but there still seem to be some more.
I think this rearrangement is a little closer. Overview of the ordering which matches GNU objdump:
* Archive headers
* File headers
* Section headers
* Symbol table
* Dwarf debugging
* Relocations (if `--disassemble` is not used)
* Section contents
* Disassembly
Reviewers: jhenderson, justice_adams, grimar, ychen, espindola
Reviewed By: jhenderson
Subscribers: aprantl, emaste, arichardson, jrtc27, atanasyan, seiya, llvm-commits, MaskRay
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D68066
llvm-svn: 373671
2019-10-04 06:01:08 +08:00
|
|
|
# CHECK: 00000000 g O .tdata 00000000 tls1
|
|
|
|
#
|
2016-09-05 23:42:39 +08:00
|
|
|
# CHECK: Contents of section .data:
|
[llvm-objdump] Further rearrange llvm-objdump sections for compatability
Summary:
rL371826 rearranged some output from llvm-objdump for GNU objdump compatability, but there still seem to be some more.
I think this rearrangement is a little closer. Overview of the ordering which matches GNU objdump:
* Archive headers
* File headers
* Section headers
* Symbol table
* Dwarf debugging
* Relocations (if `--disassemble` is not used)
* Section contents
* Disassembly
Reviewers: jhenderson, justice_adams, grimar, ychen, espindola
Reviewed By: jhenderson
Subscribers: aprantl, emaste, arichardson, jrtc27, atanasyan, seiya, llvm-commits, MaskRay
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D68066
llvm-svn: 373671
2019-10-04 06:01:08 +08:00
|
|
|
# CHECK-NEXT: {{.*}} [[TGA]] ffff8004 ffff9004
|
2017-01-10 09:21:30 +08:00
|
|
|
# CHECK: Contents of section .got:
|
2019-09-10 06:04:20 +08:00
|
|
|
# CHECK-NEXT: {{.*}} 00000000 80000000 ffff9000 00000001
|
|
|
|
# CHECK-NEXT: {{.*}} ffff8000 00000001 00000000
|
2016-09-05 23:42:29 +08:00
|
|
|
|
|
|
|
.text
|
|
|
|
.global __start
|
|
|
|
__start:
|
2016-09-08 17:07:19 +08:00
|
|
|
addiu $2, $3, %tlsgd(tls1) # R_MIPS_TLS_GD
|
|
|
|
addiu $2, $3, %tlsldm(tls2) # R_MIPS_TLS_LDM
|
|
|
|
addiu $2, $3, %gottprel(tls1) # R_MIPS_TLS_GOTTPREL
|
2016-09-05 23:42:29 +08:00
|
|
|
|
|
|
|
.global __tls_get_addr
|
|
|
|
__tls_get_addr:
|
|
|
|
nop
|
|
|
|
|
|
|
|
.data
|
|
|
|
loc:
|
|
|
|
.word __tls_get_addr
|
2016-09-05 23:42:39 +08:00
|
|
|
.dtprelword tls1+4 # R_MIPS_TLS_DTPREL32
|
|
|
|
.tprelword tls1+4 # R_MIPS_TLS_TPREL32
|
|
|
|
|
|
|
|
.section .tdata,"awT",%progbits
|
|
|
|
.global tls1
|
|
|
|
tls1:
|
|
|
|
.word __tls_get_addr
|
2016-09-08 17:07:19 +08:00
|
|
|
tls2:
|
2016-09-05 23:42:39 +08:00
|
|
|
.word 0
|