brintos

brintos / llvm-project-archived public Read only

0
0
Text · 2.1 KiB · 5f73fd1 Raw
39 lines · plain
1# REQUIRES: riscv2 3# RUN: llvm-mc -filetype=obj -triple=riscv32-unknown-elf %s -o %t.rv32.o4# RUN: llvm-mc -filetype=obj -triple=riscv64-unknown-elf %s -o %t.rv64.o5 6# RUN: ld.lld %t.rv32.o --defsym foo=_start+4 --defsym bar=_start -o %t.rv327# RUN: ld.lld %t.rv64.o --defsym foo=_start+4 --defsym bar=_start -o %t.rv648# RUN: llvm-objdump -d %t.rv32 | FileCheck %s --check-prefix=CHECK-329# RUN: llvm-objdump -d %t.rv64 | FileCheck %s --check-prefix=CHECK-6410# CHECK-32: 00000263     beqz    zero, 0x110b811# CHECK-32: fe001ee3     bnez    zero, 0x110b412# CHECK-64: 00000263     beqz    zero, 0x1112413# CHECK-64: fe001ee3     bnez    zero, 0x1112014#15# RUN: ld.lld %t.rv32.o --defsym foo=_start+0xffe --defsym bar=_start+4-0x1000 -o %t.rv32.limits16# RUN: ld.lld %t.rv64.o --defsym foo=_start+0xffe --defsym bar=_start+4-0x1000 -o %t.rv64.limits17# RUN: llvm-objdump -d %t.rv32.limits | FileCheck --check-prefix=LIMITS-32 %s18# RUN: llvm-objdump -d %t.rv64.limits | FileCheck --check-prefix=LIMITS-64 %s19# LIMITS-32:      7e000fe3     beqz    zero, 0x120b220# LIMITS-32-NEXT: 80001063     bnez    zero, 0x100b821# LIMITS-64:      7e000fe3     beqz    zero, 0x1211e22# LIMITS-64-NEXT: 80001063     bnez    zero, 0x1012423 24# RUN: not ld.lld %t.rv32.o --defsym foo=_start+0x1000 --defsym bar=_start+4-0x1002 -o /dev/null 2>&1 | FileCheck --check-prefix=ERROR-RANGE %s25# RUN: not ld.lld %t.rv64.o --defsym foo=_start+0x1000 --defsym bar=_start+4-0x1002 -o /dev/null 2>&1 | FileCheck --check-prefix=ERROR-RANGE %s26# ERROR-RANGE: relocation R_RISCV_BRANCH out of range: 4096 is not in [-4096, 4095]; references 'foo'27# ERROR-RANGE: relocation R_RISCV_BRANCH out of range: -4098 is not in [-4096, 4095]; references 'bar'28 29# RUN: not ld.lld %t.rv32.o --defsym foo=_start+1 --defsym bar=_start-1 -o /dev/null 2>&1 | FileCheck --check-prefix=ERROR-ALIGN %s30# RUN: not ld.lld %t.rv64.o --defsym foo=_start+1 --defsym bar=_start-1 -o /dev/null 2>&1 | FileCheck --check-prefix=ERROR-ALIGN %s31# ERROR-ALIGN: improper alignment for relocation R_RISCV_BRANCH: 0x1 is not aligned to 2 bytes32 33.option exact34 35.global _start36_start:37     beq x0, x0, foo38     bne x0, x0, bar39