[llvm] r313879 - [mips] Implement generation of relocations "chains" used by N32 ABI

Simon Atanasyan via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 21 07:04:53 PDT 2017


Author: atanasyan
Date: Thu Sep 21 07:04:53 2017
New Revision: 313879

URL: http://llvm.org/viewvc/llvm-project?rev=313879&view=rev
Log:
[mips] Implement generation of relocations "chains" used by N32 ABI

In case of using a "nested" relocation expressions like this
`%hi(%neg(%gp_rel()))`, N32 ABI requires generation of three consecutive
relocations. That differs from the N64 ABI case where all relocations
are packed into the single relocation record.

Added:
    llvm/trunk/test/MC/Mips/elf-N32.s
Modified:
    llvm/trunk/lib/MC/ELFObjectWriter.cpp

Modified: llvm/trunk/lib/MC/ELFObjectWriter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/MC/ELFObjectWriter.cpp?rev=313879&r1=313878&r2=313879&view=diff
==============================================================================
--- llvm/trunk/lib/MC/ELFObjectWriter.cpp (original)
+++ llvm/trunk/lib/MC/ELFObjectWriter.cpp Thu Sep 21 07:04:53 2017
@@ -1131,6 +1131,23 @@ void ELFObjectWriter::writeRelocations(c
 
       if (hasRelocationAddend())
         write(uint32_t(Entry.Addend));
+
+      if (TargetObjectWriter->getEMachine() == ELF::EM_MIPS) {
+        if (uint32_t RType = TargetObjectWriter->getRType2(Entry.Type)) {
+          write(uint32_t(Entry.Offset));
+
+          ERE32.setSymbolAndType(0, RType);
+          write(ERE32.r_info);
+          write(uint32_t(0));
+        }
+        if (uint32_t RType = TargetObjectWriter->getRType3(Entry.Type)) {
+          write(uint32_t(Entry.Offset));
+
+          ERE32.setSymbolAndType(0, RType);
+          write(ERE32.r_info);
+          write(uint32_t(0));
+        }
+      }
     }
   }
 }

Added: llvm/trunk/test/MC/Mips/elf-N32.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/Mips/elf-N32.s?rev=313879&view=auto
==============================================================================
--- llvm/trunk/test/MC/Mips/elf-N32.s (added)
+++ llvm/trunk/test/MC/Mips/elf-N32.s Thu Sep 21 07:04:53 2017
@@ -0,0 +1,22 @@
+// Check generation of N32 ABI relocations.
+
+// RUN: llvm-mc -filetype=obj -triple=mips64-linux-gnu -mcpu=mips3 \
+// RUN:         -target-abi=n32  %s -o - | llvm-readobj -r | FileCheck %s
+
+// CHECK:      Relocations [
+// CHECK-NEXT:   Section (3) .rela.text {
+// CHECK-NEXT:     0x0 R_MIPS_GPREL16 foo 0x4
+// CHECK-NEXT:     0x0 R_MIPS_SUB - 0x0
+// CHECK-NEXT:     0x0 R_MIPS_HI16 - 0x0
+// CHECK-NEXT:     0x4 R_MIPS_GPREL16 foo 0x4
+// CHECK-NEXT:     0x4 R_MIPS_SUB - 0x0
+// CHECK-NEXT:     0x4 R_MIPS_LO16 - 0x0
+// CHECK-NEXT:   }
+
+  .globl  foo
+  .ent  foo
+foo:
+  lui   $gp, %hi(%neg(%gp_rel(foo+4)))
+  addiu $gp, $gp, %lo(%neg(%gp_rel(foo+4)))
+  daddu $gp, $gp, $25
+  .end  foo




More information about the llvm-commits mailing list