[AMDGPU] Handle s_branch to another section.
authorHafiz Abid Qadeer <abidh@codesourcery.com>
Tue, 13 Jul 2021 10:17:04 +0000 (11:17 +0100)
committerHafiz Abid Qadeer <abidh@codesourcery.com>
Tue, 13 Jul 2021 11:17:47 +0000 (12:17 +0100)
commitb205f2bb8938447638e9ddc4ee1f6b82caeb1ad3
tree297fea7b5771d0f52726906c5a5ef82f00c75be2
parentb6b53ffef4414ed62701a63ad28e70cfd9d26191
[AMDGPU] Handle s_branch to another section.

Currently, if target of s_branch instruction is in another section, it will fail with the error of undefined label.  Although in this case, the label is not undefined but present in another section. This patch tries to handle this issue. So while handling fixup_si_sopp_br fixup in getRelocType, if the target label is undefined we issue an error as before. If it is defined, a new relocation type R_AMDGPU_REL16 is returned.

This issue has been reported in https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100181 and https://bugs.llvm.org/show_bug.cgi?id=45887. Before https://reviews.llvm.org/D79943, we used to get an crash for this scenario. The crash is fixed now but the we still get an undefined label error.  Jumps to other section can arise with hold/cold splitting.

A patch to handle the relocation in lld will follow shortly.

Reviewed By: arsenm

Differential Revision: https://reviews.llvm.org/D105760
llvm/docs/AMDGPUUsage.rst
llvm/include/llvm/BinaryFormat/ELFRelocs/AMDGPU.def
llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFObjectWriter.cpp
llvm/test/MC/AMDGPU/reloc.s
llvm/test/tools/llvm-readobj/ELF/reloc-types-elf-amdgpu.test