2017-12-07 21:19:57 +08:00
|
|
|
# RUN: llvm-mc -triple riscv32 -mattr=+c < %s -show-encoding \
|
2017-09-28 16:26:24 +08:00
|
|
|
# RUN: | FileCheck -check-prefix=INSTR -check-prefix=FIXUP %s
|
2017-12-07 21:19:57 +08:00
|
|
|
# RUN: llvm-mc -filetype=obj -triple riscv32 -mattr=+c < %s \
|
2017-09-28 16:26:24 +08:00
|
|
|
# RUN: | llvm-readobj -r | FileCheck -check-prefix=RELOC %s
|
|
|
|
|
|
|
|
# Check prefixes:
|
|
|
|
# RELOC - Check the relocation in the object.
|
|
|
|
# FIXUP - Check the fixup on the instruction.
|
|
|
|
# INSTR - Check the instruction is handled properly by the ASMPrinter
|
|
|
|
|
|
|
|
.long foo
|
|
|
|
# RELOC: R_RISCV_32 foo
|
|
|
|
|
|
|
|
.quad foo
|
|
|
|
# RELOC: R_RISCV_64 foo
|
|
|
|
|
|
|
|
lui t1, %hi(foo)
|
|
|
|
# RELOC: R_RISCV_HI20 foo 0x0
|
|
|
|
# INSTR: lui t1, %hi(foo)
|
|
|
|
# FIXUP: fixup A - offset: 0, value: %hi(foo), kind: fixup_riscv_hi20
|
|
|
|
|
|
|
|
lui t1, %hi(foo+4)
|
|
|
|
# RELOC: R_RISCV_HI20 foo 0x4
|
|
|
|
# INSTR: lui t1, %hi(foo+4)
|
|
|
|
# FIXUP: fixup A - offset: 0, value: %hi(foo+4), kind: fixup_riscv_hi20
|
|
|
|
|
|
|
|
addi t1, t1, %lo(foo)
|
|
|
|
# RELOC: R_RISCV_LO12_I foo 0x0
|
|
|
|
# INSTR: addi t1, t1, %lo(foo)
|
|
|
|
# FIXUP: fixup A - offset: 0, value: %lo(foo), kind: fixup_riscv_lo12_i
|
|
|
|
|
|
|
|
addi t1, t1, %lo(foo+4)
|
|
|
|
# RELOC: R_RISCV_LO12_I foo 0x4
|
|
|
|
# INSTR: addi t1, t1, %lo(foo+4)
|
|
|
|
# FIXUP: fixup A - offset: 0, value: %lo(foo+4), kind: fixup_riscv_lo12_i
|
|
|
|
|
|
|
|
sb t1, %lo(foo)(a2)
|
|
|
|
# RELOC: R_RISCV_LO12_S foo 0x0
|
|
|
|
# INSTR: sb t1, %lo(foo)(a2)
|
|
|
|
# FIXUP: fixup A - offset: 0, value: %lo(foo), kind: fixup_riscv_lo12_s
|
|
|
|
|
|
|
|
sb t1, %lo(foo+4)(a2)
|
|
|
|
# RELOC: R_RISCV_LO12_S foo 0x4
|
|
|
|
# INSTR: sb t1, %lo(foo+4)(a2)
|
|
|
|
# FIXUP: fixup A - offset: 0, value: %lo(foo+4), kind: fixup_riscv_lo12_s
|
|
|
|
|
|
|
|
auipc t1, %pcrel_hi(foo)
|
|
|
|
# RELOC: R_RISCV_PCREL_HI20 foo 0x0
|
|
|
|
# INSTR: auipc t1, %pcrel_hi(foo)
|
|
|
|
# FIXUP: fixup A - offset: 0, value: %pcrel_hi(foo), kind: fixup_riscv_pcrel_hi20
|
|
|
|
|
|
|
|
auipc t1, %pcrel_hi(foo+4)
|
|
|
|
# RELOC: R_RISCV_PCREL_HI20 foo 0x4
|
|
|
|
# INSTR: auipc t1, %pcrel_hi(foo+4)
|
|
|
|
# FIXUP: fixup A - offset: 0, value: %pcrel_hi(foo+4), kind: fixup_riscv_pcrel_hi20
|
|
|
|
|
|
|
|
jal zero, foo
|
|
|
|
# RELOC: R_RISCV_JAL
|
|
|
|
# INSTR: jal zero, foo
|
|
|
|
# FIXUP: fixup A - offset: 0, value: foo, kind: fixup_riscv_jal
|
|
|
|
|
|
|
|
bgeu a0, a1, foo
|
|
|
|
# RELOC: R_RISCV_BRANCH
|
|
|
|
# INSTR: bgeu a0, a1, foo
|
|
|
|
# FIXUP: fixup A - offset: 0, value: foo, kind: fixup_riscv_branch
|
2017-12-07 21:19:57 +08:00
|
|
|
|
|
|
|
c.jal foo
|
|
|
|
# RELOC: R_RISCV_RVC_JUMP
|
|
|
|
# INSTR: c.jal foo
|
|
|
|
# FIXUP: fixup A - offset: 0, value: foo, kind: fixup_riscv_rvc_jump
|
|
|
|
|
|
|
|
c.bnez a0, foo
|
|
|
|
# RELOC: R_RISCV_RVC_BRANCH
|
|
|
|
# INSTR: c.bnez a0, foo
|
|
|
|
# FIXUP: fixup A - offset: 0, value: foo, kind: fixup_riscv_rvc_branch
|