Changeset View
Changeset View
Standalone View
Standalone View
lld/test/ELF/riscv-tls-le.s
# REQUIRES: riscv | # REQUIRES: riscv | ||||
# RUN: llvm-mc -filetype=obj -triple=riscv32 %s -o %t.32.o | # RUN: llvm-mc -filetype=obj -triple=riscv32 %s -o %t.32.o | ||||
# RUN: ld.lld %t.32.o -o %t.32 | # RUN: ld.lld %t.32.o -o %t.32 | ||||
# RUN: llvm-nm -p %t.32 | FileCheck --check-prefixes=NM %s | # RUN: llvm-nm -p %t.32 | FileCheck --check-prefixes=NM %s | ||||
# RUN: llvm-objdump -d --no-show-raw-insn %t.32 | FileCheck --check-prefixes=LE %s | # RUN: llvm-objdump -d --no-show-raw-insn %t.32 | FileCheck --check-prefixes=LE %s | ||||
# RUN: ld.lld -pie %t.32.o -o %t.32 | # RUN: ld.lld -pie %t.32.o -o %t.32 | ||||
# RUN: llvm-objdump -d --no-show-raw-insn %t.32 | FileCheck --check-prefixes=LE %s | # RUN: llvm-objdump -d --no-show-raw-insn %t.32 | FileCheck --check-prefixes=LE %s | ||||
# RUN: llvm-mc -filetype=obj -triple=riscv64 %s -o %t.64.o | # RUN: llvm-mc -filetype=obj -triple=riscv64 %s -o %t.64.o | ||||
# RUN: ld.lld %t.64.o -o %t.64 | # RUN: ld.lld %t.64.o -o %t.64 | ||||
# RUN: llvm-objdump -d --no-show-raw-insn %t.64 | FileCheck --check-prefixes=LE %s | # RUN: llvm-objdump -d --no-show-raw-insn %t.64 | FileCheck --check-prefixes=LE %s | ||||
# RUN: ld.lld -pie %t.64.o -o %t.64 | # RUN: ld.lld -pie %t.64.o -o %t.64 | ||||
# RUN: llvm-objdump -d --no-show-raw-insn %t.64 | FileCheck --check-prefixes=LE %s | # RUN: llvm-objdump -d --no-show-raw-insn %t.64 | FileCheck --check-prefixes=LE %s | ||||
# RUN: not ld.lld -shared %t.32.o -o /dev/null 2>&1 | FileCheck %s --check-prefix=ERR --implicit-check-not=error: | |||||
# ERR: error: relocation R_RISCV_TPREL_HI20 against .LANCHOR0 cannot be used with -shared | |||||
# ERR: error: relocation R_RISCV_TPREL_LO12_I against .LANCHOR0 cannot be used with -shared | |||||
# ERR: error: relocation R_RISCV_TPREL_HI20 against a cannot be used with -shared | |||||
# ERR: error: relocation R_RISCV_TPREL_LO12_S against a cannot be used with -shared | |||||
# NM: {{0*}}00000008 b .LANCHOR0 | # NM: {{0*}}00000008 b .LANCHOR0 | ||||
# NM: {{0*}}0000000c B a | # NM: {{0*}}0000000c B a | ||||
## .LANCHOR0@tprel = 8 | ## .LANCHOR0@tprel = 8 | ||||
## a@tprel = 12 | ## a@tprel = 12 | ||||
# LE: lui a5, 0 | # LE: lui a5, 0 | ||||
# LE-NEXT: add a5, a5, tp | # LE-NEXT: add a5, a5, tp | ||||
# LE-NEXT: addi a5, a5, 8 | # LE-NEXT: addi a5, a5, 8 | ||||
Show All 18 Lines |