[AMDGPU][MC] Generate relative relocations for allocatable (more particularly, eh_fra...
authorJuan Manuel MARTINEZ CAAMAÑO <juamarti@amd.com>
Fri, 10 Feb 2023 14:05:05 +0000 (15:05 +0100)
committerJuan Manuel MARTINEZ CAAMAÑO <juamarti@amd.com>
Fri, 10 Feb 2023 14:54:43 +0000 (15:54 +0100)
Reviewed By: scott.linder

Differential Revision: https://reviews.llvm.org/D142453

llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFObjectWriter.cpp
llvm/test/MC/AMDGPU/cfi_reloc.s [new file with mode: 0644]

index 066b366..3f18847 100644 (file)
@@ -74,9 +74,9 @@ unsigned AMDGPUELFObjectWriter::getRelocType(MCContext &Ctx,
     return ELF::R_AMDGPU_REL32;
   case FK_Data_4:
   case FK_SecRel_4:
-    return ELF::R_AMDGPU_ABS32;
+    return IsPCRel ? ELF::R_AMDGPU_REL32 : ELF::R_AMDGPU_ABS32;
   case FK_Data_8:
-    return ELF::R_AMDGPU_ABS64;
+    return IsPCRel ? ELF::R_AMDGPU_REL64 : ELF::R_AMDGPU_ABS64;
   }
 
   if (Fixup.getTargetKind() == AMDGPU::fixup_si_sopp_br) {
diff --git a/llvm/test/MC/AMDGPU/cfi_reloc.s b/llvm/test/MC/AMDGPU/cfi_reloc.s
new file mode 100644 (file)
index 0000000..add81a8
--- /dev/null
@@ -0,0 +1,16 @@
+// RUN: llvm-mc -filetype=obj -triple amdgcn-- -mcpu=kaveri -show-encoding %s | llvm-readobj -r - | FileCheck %s
+
+// CHECK: Relocations [
+// CHECK: .rel.eh_frame {
+// CHECK: R_AMDGPU_REL32 .text
+// CHECK: }
+// CHECK: .rel.debug_frame {
+// CHECK: R_AMDGPU_ABS64 .text
+// CHECK: }
+// CHECK: ]
+
+kernel:
+  .cfi_startproc
+  .cfi_sections .debug_frame, .eh_frame
+  s_endpgm
+  .cfi_endproc
\ No newline at end of file