brintos

brintos / llvm-project-archived public Read only

0
0
Text · 2.2 KiB · 9f9e763 Raw
46 lines · plain
1# REQUIRES: riscv2 3# RUN: llvm-mc -filetype=obj -triple=riscv32-unknown-elf -mattr=-relax %s -o %t.rv32.o4# RUN: llvm-mc -filetype=obj -triple=riscv64-unknown-elf -mattr=-relax %s -o %t.rv64.o5 6# RUN: ld.lld %t.rv32.o --defsym foo=_start+12 --defsym bar=_start -o %t.rv327# RUN: ld.lld %t.rv64.o --defsym foo=_start+12 --defsym bar=_start -o %t.rv648# RUN: llvm-objdump -d --no-show-raw-insn %t.rv32 | FileCheck %s9# RUN: llvm-objdump -d --no-show-raw-insn %t.rv64 | FileCheck %s10# RUN: ld.lld -pie %t.rv32.o --defsym foo=_start+12 --defsym bar=_start -o %t.rv3211# RUN: ld.lld -pie %t.rv64.o --defsym foo=_start+12 --defsym bar=_start -o %t.rv6412# RUN: llvm-objdump -d --no-show-raw-insn %t.rv32 | FileCheck %s13# RUN: llvm-objdump -d --no-show-raw-insn %t.rv64 | FileCheck %s14# CHECK:      auipc   a0, 0x015# CHECK-NEXT: addi    a0, a0, 0xc16# CHECK-NEXT: sw      zero, 0xc(a0)17# CHECK:      auipc   a0, 0x018# CHECK-NEXT: addi    a0, a0, -0xc19# CHECK-NEXT: sw      zero, -0xc(a0)20 21# RUN: ld.lld %t.rv32.o --defsym foo=_start+0x7ffff7ff --defsym bar=_start+12-0x80000800 -o %t.rv32.limits22# RUN: ld.lld %t.rv64.o --defsym foo=_start+0x7ffff7ff --defsym bar=_start+12-0x80000800 -o %t.rv64.limits23# RUN: llvm-objdump -d --no-show-raw-insn %t.rv32.limits | FileCheck --check-prefix=LIMITS %s24# RUN: llvm-objdump -d --no-show-raw-insn %t.rv64.limits | FileCheck --check-prefix=LIMITS %s25# LIMITS:      auipc   a0, 0x7ffff26# LIMITS-NEXT: addi    a0, a0, 0x7ff27# LIMITS-NEXT: sw      zero, 0x7ff(a0)28# LIMITS:      auipc   a0, 0x8000029# LIMITS-NEXT: addi    a0, a0, -0x80030# LIMITS-NEXT: sw      zero, -0x800(a0)31 32# RUN: ld.lld %t.rv32.o --defsym foo=_start+0x7ffff800 --defsym bar=_start+12-0x80000801 -o %t33# RUN: not ld.lld %t.rv64.o --defsym foo=_start+0x7ffff800 --defsym bar=_start+12-0x80000801 -o /dev/null 2>&1 | FileCheck --check-prefix=ERROR %s34# ERROR: relocation R_RISCV_PCREL_HI20 out of range: 524288 is not in [-524288, 524287]; references 'foo'35# ERROR: relocation R_RISCV_PCREL_HI20 out of range: -524289 is not in [-524288, 524287]; references 'bar'36 37.global _start38_start:39    auipc   a0, %pcrel_hi(foo)40    addi    a0, a0, %pcrel_lo(_start)41    sw      x0, %pcrel_lo(_start)(a0)42.L1:43    auipc   a0, %pcrel_hi(bar)44    addi    a0, a0, %pcrel_lo(.L1)45    sw      x0, %pcrel_lo(.L1)(a0)46