2018-06-27 00:58:19 +08:00
|
|
|
# REQUIRES: mips
|
2016-09-05 23:42:43 +08:00
|
|
|
# Check handling TLS related relocations and symbols when linking
|
|
|
|
# a 64-bit static executable.
|
|
|
|
|
|
|
|
# RUN: llvm-mc -filetype=obj -triple=mips64-unknown-linux %s -o %t
|
|
|
|
# RUN: ld.lld -static %t -o %t.exe
|
|
|
|
# RUN: llvm-objdump -s -t %t.exe | FileCheck %s
|
|
|
|
|
[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]{8}]] g .text 0000000000000000 __tls_get_addr
|
2021-02-18 15:17:20 +08:00
|
|
|
# CHECK: 0000000000000000 g .tdata 0000000000000000 tls1
|
[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
|
|
|
#
|
2016-09-05 23:42:43 +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]] ffffffff ffff8004 ffffffff
|
2019-09-10 06:04:20 +08:00
|
|
|
# CHECK-NEXT: {{.*}} ffff9004
|
2016-09-05 23:42:43 +08:00
|
|
|
|
|
|
|
.text
|
|
|
|
.global __start
|
|
|
|
__start:
|
|
|
|
nop
|
|
|
|
|
|
|
|
.global __tls_get_addr
|
|
|
|
__tls_get_addr:
|
|
|
|
nop
|
|
|
|
|
|
|
|
.data
|
|
|
|
loc:
|
|
|
|
.word __tls_get_addr
|
|
|
|
.dtpreldword tls1+4 # R_MIPS_TLS_DTPREL64
|
|
|
|
.tpreldword tls1+4 # R_MIPS_TLS_TPREL64
|
|
|
|
|
|
|
|
.section .tdata,"awT",%progbits
|
|
|
|
.global tls1
|
|
|
|
tls1:
|
|
|
|
.word __tls_get_addr
|
|
|
|
.word 0
|