2018-06-27 00:58:19 +08:00
|
|
|
# REQUIRES: mips
|
2017-09-12 21:08:24 +08:00
|
|
|
# Check handling of microMIPS relocations.
|
|
|
|
|
2019-09-10 06:04:20 +08:00
|
|
|
# RUN: echo "SECTIONS { \
|
|
|
|
# RUN: . = 0x20000; .text ALIGN(0x100) : { *(.text) } \
|
|
|
|
# RUN: . = 0x20300; .plt : { *(.plt) } \
|
|
|
|
# RUN: . = 0x30000; .data : { *(.data) } \
|
|
|
|
# RUN: }" > %t.script
|
|
|
|
|
2017-09-12 21:08:24 +08:00
|
|
|
# RUN: llvm-mc -filetype=obj -triple=mips-unknown-linux \
|
|
|
|
# RUN: -mattr=micromips %S/Inputs/mips-micro.s -o %t1eb.o
|
|
|
|
# RUN: llvm-mc -filetype=obj -triple=mips-unknown-linux \
|
|
|
|
# RUN: -mattr=micromips %s -o %t2eb.o
|
2019-09-10 06:04:20 +08:00
|
|
|
# RUN: ld.lld -o %teb.exe -script %t.script %t1eb.o %t2eb.o
|
2020-03-16 08:47:44 +08:00
|
|
|
# RUN: llvm-objdump -d -t -s --mattr=micromips --no-show-raw-insn %teb.exe \
|
2019-09-10 06:04:20 +08:00
|
|
|
# RUN: | FileCheck --check-prefixes=ASM,EB %s
|
|
|
|
# RUN: llvm-readelf -h %teb.exe | FileCheck --check-prefix=ELF %s
|
2017-09-12 21:08:24 +08:00
|
|
|
|
|
|
|
# RUN: llvm-mc -filetype=obj -triple=mipsel-unknown-linux \
|
|
|
|
# RUN: -mattr=micromips %S/Inputs/mips-micro.s -o %t1el.o
|
|
|
|
# RUN: llvm-mc -filetype=obj -triple=mipsel-unknown-linux \
|
|
|
|
# RUN: -mattr=micromips %s -o %t2el.o
|
2019-09-10 06:04:20 +08:00
|
|
|
# RUN: ld.lld -o %tel.exe -script %t.script %t1el.o %t2el.o
|
2020-03-16 08:47:44 +08:00
|
|
|
# RUN: llvm-objdump -d -t -s --mattr=micromips --no-show-raw-insn %tel.exe \
|
2019-09-10 06:04:20 +08:00
|
|
|
# RUN: | FileCheck --check-prefixes=ASM,EL %s
|
|
|
|
# RUN: llvm-readelf -h %tel.exe | FileCheck --check-prefix=ELF %s
|
2017-09-12 21:08:24 +08:00
|
|
|
|
2020-03-05 09:19:18 +08:00
|
|
|
# ASM: 00038000 l .got 00000000 .hidden _gp
|
[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
|
|
|
# ASM: 00020100 g F .text 00000000 0x80 foo
|
2020-03-05 09:19:18 +08:00
|
|
|
# ASM: 00020110 g .text 00000000 0x80 __start
|
2017-09-21 12:55:27 +08:00
|
|
|
|
2019-02-19 18:36:58 +08:00
|
|
|
# EB: Contents of section .data:
|
2019-09-10 06:04:20 +08:00
|
|
|
# EB-NEXT: 30000 fffe8111
|
2019-02-19 18:36:58 +08:00
|
|
|
|
|
|
|
# EB: Contents of section .debug_info
|
2019-09-10 06:04:20 +08:00
|
|
|
# EB-NEXT: 0000 00020111
|
2017-09-12 21:08:24 +08:00
|
|
|
|
2019-02-19 18:36:58 +08:00
|
|
|
# EL: Contents of section .data:
|
2019-09-10 06:04:20 +08:00
|
|
|
# EL-NEXT: 30000 1181feff
|
2019-02-19 18:36:58 +08:00
|
|
|
|
|
|
|
# EL: Contents of section .debug_info
|
2019-09-10 06:04:20 +08:00
|
|
|
# EL-NEXT: 0000 11010200
|
2019-02-19 18:36:58 +08:00
|
|
|
|
2020-03-06 06:18:38 +08:00
|
|
|
# ASM: <__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
|
|
|
# ASM-NEXT: 20110: lui $3, 1
|
|
|
|
# ASM-NEXT: addiu $3, $3, 32495
|
|
|
|
# ASM-NEXT: lw $3, -32744($gp)
|
|
|
|
# ASM-NEXT: lw $3, -32744($3)
|
|
|
|
# ASM-NEXT: beqz16 $6, -32
|
|
|
|
# ASM-NEXT: sll $3, $fp, 0
|
|
|
|
# ASM-NEXT: b16 -40
|
|
|
|
# ASM-NEXT: nop
|
|
|
|
# ASM-NEXT: b -44
|
2017-09-12 21:08:24 +08:00
|
|
|
|
2019-09-10 06:04:20 +08:00
|
|
|
# ELF: Entry point address: 0x20111
|
2019-02-19 18:36:58 +08:00
|
|
|
|
2017-09-12 21:08:24 +08:00
|
|
|
.text
|
|
|
|
.set micromips
|
|
|
|
.global __start
|
|
|
|
__start:
|
|
|
|
lui $3, %hi(_gp_disp) # R_MICROMIPS_HI16
|
|
|
|
addiu $3, $3, %lo(_gp_disp) # R_MICROMIPS_LO16
|
|
|
|
|
|
|
|
lw $3, %call16(foo)($gp) # R_MICROMIPS_CALL16
|
|
|
|
lw $3, %got(foo)($3) # R_MICROMIPS_GOT16
|
|
|
|
|
|
|
|
beqz16 $6, foo # R_MICROMIPS_PC7_S1
|
|
|
|
b16 foo # R_MICROMIPS_PC10_S1
|
|
|
|
b foo # R_MICROMIPS_PC16_S1
|
2019-02-19 18:36:58 +08:00
|
|
|
|
|
|
|
.data
|
|
|
|
.gpword __start # R_MIPS_GPREL32
|
|
|
|
|
2020-02-20 13:27:13 +08:00
|
|
|
.section .debug_info,"",@0x7000001e
|
2019-02-19 18:36:58 +08:00
|
|
|
.word __start # R_MIPS_32
|