Files
clang-p2996/lld/test/ELF/linkerscript/thunk-gen-mips.s
Thomas Preud'homme d735c7048c [test] Fix lld's ELF/linkerscript/thunk-gen-mips.s
Summary:
Lld test ELF/linkerscript/thunk-gen-mips.s was accidentally disabled due
to the use of wrong FileCheck directives. As a result the test seems to
have bitrotted as it fails to pass if fixing the directive. To ease
updates to the test in case of change of the __start address the checks
have been changed to use numeric variables to express all the addresses
based on the __start address.

Reviewed By: atanasyan

Differential Revision: https://reviews.llvm.org/D79270
2020-05-02 22:49:23 +01:00

41 lines
1.1 KiB
ArmAsm

# REQUIRES: mips
# RUN: llvm-mc -filetype=obj -defsym=MAIN=1 -triple=mips-unknown-freebsd %s -o %t
# RUN: llvm-mc -filetype=obj -defsym=TARGET=1 -triple=mips-unknown-freebsd %s -o %t1
# SECTIONS command with the first pattern that does not match.
# Linking a PIC and non-PIC object files triggers the LA25 thunk generation.
# RUN: echo 'SECTIONS { \
# RUN: .text : { \
# RUN: *(.nomatch) \
# RUN: "%t"(.text) \
# RUN: . = . + 0x100000 ; \
# RUN: "%t1"(.text) \
# RUN: } \
# RUN: }' > %t.script
# RUN: ld.lld -o %t.exe --script %t.script %t %t1
# RUN: llvm-objdump -t %t.exe | FileCheck %s
# CHECK: SYMBOL TABLE:
# CHECK-DAG: [[#%x, START_ADDR:]] g .text 00000000 _start
# CHECK-DAG: {{0*}}[[#THUNK_ADDR:START_ADDR+0x100000+12]] l F .text 00000010 __LA25Thunk_too_far
# CHECK-DAG: {{0*}}[[#THUNK_ADDR+20]] g F .text 0000000c too_far
.ifdef MAIN
.global _start
_start:
j too_far
nop
.endif
.ifdef TARGET
.text
.abicalls
.set noreorder
.globl too_far
.ent too_far
too_far:
nop
jr $ra
nop
.end too_far
.endif