[PATCH] D149347: [LLD][ELF] Fix --check-dynamic-relocations for 32-bit targets

Andrew Ng via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed May 3 03:21:07 PDT 2023


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGed5dd8e5f0fb: [LLD][ELF] Fix --check-dynamic-relocations for 32-bit targets (authored by andrewng).
Herald added a project: LLVM.

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D149347/new/

https://reviews.llvm.org/D149347

Files:
  lld/ELF/SyntheticSections.cpp
  lld/test/ELF/arm-pie-relative.s


Index: lld/test/ELF/arm-pie-relative.s
===================================================================
--- lld/test/ELF/arm-pie-relative.s
+++ lld/test/ELF/arm-pie-relative.s
@@ -3,6 +3,10 @@
 // RUN: ld.lld %t.o --pie -o %t
 // RUN: llvm-readobj -r %t | FileCheck %s
 // RUN: llvm-readelf -x .got %t | FileCheck %s --check-prefix=GOT
+// RUN: ld.lld %t.o --pie --image-base=0x80000000 --check-dynamic-relocations -o %t1 2>&1 | \
+// RUN:   FileCheck %s -allow-empty -check-prefix=NOERR
+// RUN: llvm-readobj -r %t1 | FileCheck %s --check-prefix=CHECK1
+// RUN: llvm-readelf -x .got %t1 | FileCheck %s --check-prefix=GOT1
 
 // Test that a R_ARM_GOT_BREL relocation with PIE results in a R_ARM_RELATIVE
 // dynamic relocation
@@ -23,3 +27,12 @@
 
 // GOT:      section '.got':
 // GOT-NEXT: 0x000201e4 e8010300
+
+// NOERR-NOT: internal linker error
+
+// CHECK1:      Relocations [
+// CHECK1-NEXT:   Section (5) .rel.dyn {
+// CHECK1-NEXT:     0x800201E4 R_ARM_RELATIVE
+
+// GOT1:      section '.got':
+// GOT1-NEXT: 0x800201e4 e8010380
Index: lld/ELF/SyntheticSections.cpp
===================================================================
--- lld/ELF/SyntheticSections.cpp
+++ lld/ELF/SyntheticSections.cpp
@@ -1564,9 +1564,11 @@
     assert(sym != nullptr);
     return addend;
   case AddendOnlyWithTargetVA:
-  case AgainstSymbolWithTargetVA:
-    return InputSection::getRelocTargetVA(inputSec->file, type, addend,
-                                          getOffset(), *sym, expr);
+  case AgainstSymbolWithTargetVA: {
+    uint64_t ca = InputSection::getRelocTargetVA(inputSec->file, type, addend,
+                                                 getOffset(), *sym, expr);
+    return config->is64 ? ca : SignExtend64<32>(ca);
+  }
   case MipsMultiGotPage:
     assert(sym == nullptr);
     return getMipsPageAddr(outputSec->addr) + addend;


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D149347.519024.patch
Type: text/x-patch
Size: 1860 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230503/478850c6/attachment.bin>


More information about the llvm-commits mailing list