2018-06-27 00:58:19 +08:00
|
|
|
# REQUIRES: mips
|
2016-02-04 20:09:49 +08:00
|
|
|
# Check handling of relocations against __gnu_local_gp symbol.
|
|
|
|
|
|
|
|
# RUN: llvm-mc -filetype=obj -triple=mips-unknown-linux %s -o %t.o
|
2019-09-07 23:44:40 +08:00
|
|
|
# RUN: echo "SECTIONS { \
|
|
|
|
# RUN: . = 0x10000; .text ALIGN(0x1000) : { *(.text) } \
|
|
|
|
# RUN: . = 0x30000; .got : { *(.got) } \
|
|
|
|
# RUN: }" > %t.script
|
|
|
|
# RUN: ld.lld --script %t.script -o %t.exe %t.o
|
2019-07-25 15:12:23 +08:00
|
|
|
# RUN: llvm-objdump -d -t --no-show-raw-insn %t.exe | FileCheck %s
|
2016-02-04 20:09:49 +08:00
|
|
|
|
2020-03-05 09:19:18 +08:00
|
|
|
# CHECK: 00037ff0 l .got 00000000 .hidden _gp
|
|
|
|
# CHECK: 00011000 g .text 00000000 __start
|
[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
|
|
|
|
2019-09-07 23:44:40 +08:00
|
|
|
# CHECK: __start:
|
|
|
|
# CHECK-NEXT: lui $8, 3
|
|
|
|
# CHECK-NEXT: addi $8, $8, 32752
|
2016-02-04 20:09:49 +08:00
|
|
|
|
|
|
|
.text
|
|
|
|
.globl __start
|
|
|
|
__start:
|
|
|
|
lui $t0,%hi(__gnu_local_gp)
|
|
|
|
addi $t0,$t0,%lo(__gnu_local_gp)
|