summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/python_api/default-constructor
diff options
context:
space:
mode:
authorRoger Ferrer Ibanez <roger.ferrer@bsc.es>2019-11-08 08:26:30 +0000
committerRoger Ferrer Ibanez <roger.ferrer@bsc.es>2019-11-08 08:37:37 +0000
commit41449c58c58e466bcf9cdc4f7415950382bad8d7 (patch)
tree2e5aa9d3aeca7771f8abbdf088a15d1baca26ec5 /lldb/packages/Python/lldbsuite/test/python_api/default-constructor
parent0f88caeef8f2d4708f442d03db7723396712a143 (diff)
downloadbcm5719-llvm-41449c58c58e466bcf9cdc4f7415950382bad8d7.tar.gz
bcm5719-llvm-41449c58c58e466bcf9cdc4f7415950382bad8d7.zip
[RISCV] Fix evaluation of %pcrel_lo
The following testcase function: .Lpcrel_label1: auipc a0, %pcrel_hi(other_function) addi a1, a0, %pcrel_lo(.Lpcrel_label1) .p2align 2 # Causes a new fragment to be emitted .type other_function,@function other_function: ret exposes an odd behaviour in which only the %pcrel_hi relocation is evaluated but not the %pcrel_lo. $ llvm-mc -triple riscv64 -filetype obj t.s | llvm-objdump -d -r - <stdin>: file format ELF64-riscv Disassembly of section .text: 0000000000000000 function: 0: 17 05 00 00 auipc a0, 0 4: 93 05 05 00 mv a1, a0 0000000000000004: R_RISCV_PCREL_LO12_I other_function+4 0000000000000008 other_function: 8: 67 80 00 00 ret The reason seems to be that in RISCVAsmBackend::shouldForceRelocation we only consider the fragment but in RISCVMCExpr::evaluatePCRelLo we consider the section. This usually works but there are cases where the section may still be the same but the fragment may be another one. In that case we end forcing a %pcrel_lo relocation without any %pcrel_hi. This patch makes RISCVAsmBackend::shouldForceRelocation use the section, if any, to determine if the relocation must be forced or not. Differential Revision: https://reviews.llvm.org/D60657
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/python_api/default-constructor')
0 files changed, 0 insertions, 0 deletions
OpenPOWER on IntegriCloud