summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Atanasyan <simon@atanasyan.com>2016-05-04 22:39:40 +0000
committerSimon Atanasyan <simon@atanasyan.com>2016-05-04 22:39:40 +0000
commitda83bbc1a1c73a441a5d7549407796658abab160 (patch)
treee2307bd3e86ff47946e39e24731f7ad9eb4bb022
parentc91351c2b79baf3b8d1e64069518db508fa30259 (diff)
downloadbcm5719-llvm-da83bbc1a1c73a441a5d7549407796658abab160.tar.gz
bcm5719-llvm-da83bbc1a1c73a441a5d7549407796658abab160.zip
[ELF][MIPS] Create combined dynamic relocation type R_MIPS_REL32/R_MIPS_64/R_MIPS_NONE
MIPS N64 ABI packs multiple relocations into the single relocation record. Particularly it requires to represent dynamic relative relocation as a combination of R_MIPS_REL32 and R_MIPS_64 relocations. llvm-svn: 268565
-rw-r--r--lld/ELF/Target.cpp10
-rw-r--r--lld/test/ELF/mips-64.s67
2 files changed, 75 insertions, 2 deletions
diff --git a/lld/ELF/Target.cpp b/lld/ELF/Target.cpp
index 72544103db6..adf5949f20f 100644
--- a/lld/ELF/Target.cpp
+++ b/lld/ELF/Target.cpp
@@ -1235,7 +1235,10 @@ template <class ELFT> MipsTargetInfo<ELFT>::MipsTargetInfo() {
UseLazyBinding = true;
CopyRel = R_MIPS_COPY;
PltRel = R_MIPS_JUMP_SLOT;
- RelativeRel = R_MIPS_REL32;
+ if (ELFT::Is64Bits)
+ RelativeRel = (R_MIPS_64 << 8) | R_MIPS_REL32;
+ else
+ RelativeRel = R_MIPS_REL32;
}
template <class ELFT>
@@ -1286,7 +1289,7 @@ RelExpr MipsTargetInfo<ELFT>::getRelExpr(uint32_t Type,
template <class ELFT>
uint32_t MipsTargetInfo<ELFT>::getDynRel(uint32_t Type) const {
if (Type == R_MIPS_32 || Type == R_MIPS_64)
- return R_MIPS_REL32;
+ return RelativeRel;
StringRef S = getELFRelocationTypeName(EM_MIPS, Type);
error("relocation " + S + " cannot be used when making a shared object; "
"recompile with -fPIC.");
@@ -1452,6 +1455,9 @@ void MipsTargetInfo<ELFT>::relocateOne(uint8_t *Loc, uint32_t Type,
case R_MIPS_32:
write32<E>(Loc, Val);
break;
+ case R_MIPS_64:
+ write64<E>(Loc, Val);
+ break;
case R_MIPS_26: {
uint32_t Instr = read32<E>(Loc);
write32<E>(Loc, (Instr & ~0x3ffffff) | (Val >> 2));
diff --git a/lld/test/ELF/mips-64.s b/lld/test/ELF/mips-64.s
new file mode 100644
index 00000000000..d4a8df31eb2
--- /dev/null
+++ b/lld/test/ELF/mips-64.s
@@ -0,0 +1,67 @@
+# Check R_MIPS_64 relocation calculation.
+
+# RUN: llvm-mc -filetype=obj -triple=mips64-unknown-linux %s -o %t.o
+# RUN: ld.lld -shared %t.o -o %t.so
+# RUN: llvm-objdump -t -s %t.so | FileCheck -check-prefix=SYM %s
+# RUN: llvm-readobj -r -dynamic-table -mips-plt-got %t.so | FileCheck %s
+
+# REQUIRES: mips
+
+ .global __start
+__start:
+ nop
+
+ .data
+ .type v1,@object
+ .size v1,4
+v1:
+ .quad 0
+
+ .globl v2
+ .type v2,@object
+ .size v2,8
+v2:
+ .quad v2+8 # R_MIPS_64 target v2 addend 8
+ .quad v1 # R_MIPS_64 target v1 addend 0
+
+# SYM: Contents of section .data:
+# SYM-NEXT: 30000 00000000 00000000 00000000 00000000
+# ^-- v2
+# SYM-NEXT: 30010 00000000 00030000
+# ^-- v1
+
+# SYM: SYMBOL TABLE:
+# SYM: 00030000 l .data 00000004 v1
+# SYM: 00030008 g .data 00000008 v2
+
+# CHECK: Relocations [
+# CHECK-NEXT: Section (7) .rela.dyn {
+# CHECK-NEXT: 0x30008 R_MIPS_REL32/R_MIPS_64/R_MIPS_NONE v2 0x8
+# CHECK-NEXT: 0x30010 R_MIPS_REL32/R_MIPS_64/R_MIPS_NONE - 0x30000
+# CHECK-NEXT: }
+# CHECK-NEXT: ]
+
+# CHECK: DynamicSection [
+# CHECK: Tag Type Name/Value
+# CHECK: 0x0000000000000008 RELASZ 48 (bytes)
+# CHECK: 0x0000000000000009 RELAENT 24 (bytes)
+
+# CHECK: Primary GOT {
+# CHECK-NEXT: Canonical gp value:
+# CHECK-NEXT: Reserved entries [
+# CHECK: ]
+# CHECK-NEXT: Local entries [
+# CHECK-NEXT: ]
+# CHECK-NEXT: Global entries [
+# CHECK-NEXT: Entry {
+# CHECK-NEXT: Address:
+# CHECK-NEXT: Access:
+# CHECK-NEXT: Initial: 0x30008
+# CHECK-NEXT: Value: 0x30008
+# CHECK-NEXT: Type: Object
+# CHECK-NEXT: Section: .data
+# CHECK-NEXT: Name: v2
+# CHECK-NEXT: }
+# CHECK-NEXT: ]
+# CHECK-NEXT: Number of TLS and multi-GOT entries: 0
+# CHECK-NEXT: }
OpenPOWER on IntegriCloud