]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
x86-64: Estimate output section layout before sizing dynamic sections
authorH.J. Lu <hjl.tools@gmail.com>
Thu, 30 Jan 2025 00:48:45 +0000 (08:48 +0800)
committerH.J. Lu <hjl.tools@gmail.com>
Thu, 6 Feb 2025 22:02:05 +0000 (06:02 +0800)
When sizing dynamic sections, elf_x86_64_scan_relocs converts GOTPCREL
relocations to R_X86_64_PC32, R_X86_64_32S or R_X86_64_32 for local
symbols.  But at that time, since the output section layout is unknown,
the local symbol values can't be determined.  Later linker issues an
error if the converted relocation overflows when resolving relocations
against these local symbols.  Update the x86-64 ELF linker to estimate
output section layout before sizing dynamic sections and use the
preliminary output section layout info to skip the GOTPCREL relocation
conversion if the converted relocation overflows.

bfd/

PR ld/32591
* elf64-x86-64.c (elf_x86_64_convert_load_reloc): Add an input
section argument.  Use the lowest-addressed section to estimate
the __ehdr_start symbol value.  Don't convert relocation if the
converted relocation will overflow.

ld/

PR ld/32591
* emultempl/elf-x86.em (elf_x86_64_before_allocation):
New.  Defined for x86-64.
(LDEMUL_BEFORE_ALLOCATION): Likewise.
* testsuite/ld-x86-64/pr19609-2a.d: Don't fail.
* testsuite/ld-x86-64/pr19609-2b.d: Likewise.
* testsuite/ld-x86-64/pr19609-4a.d: Likewise.
* testsuite/ld-x86-64/pr19609-5d.d: Likewise.
* testsuite/ld-x86-64/pr19609-7a.d: Likewise.
* testsuite/ld-x86-64/pr19609-7c.d: Likewise.
* testsuite/ld-x86-64/pr32591-1.s: New file.
* testsuite/ld-x86-64/pr32591-1a-x32.d: Likewise.
* testsuite/ld-x86-64/pr32591-1a.d: Likewise.
* testsuite/ld-x86-64/pr32591-1a.t: Likewise.
* testsuite/ld-x86-64/pr32591-1b-x32.d: Likewise.
* testsuite/ld-x86-64/pr32591-1b.d: Likewise.
* testsuite/ld-x86-64/pr32591-1b.t: Likewise.
* testsuite/ld-x86-64/pr32591-1c-x32.d: Likewise.
* testsuite/ld-x86-64/pr32591-1c.d: Likewise.
* testsuite/ld-x86-64/pr32591-1c.t: Likewise.
* testsuite/ld-x86-64/pr32591-1d-x32.d: Likewise.
* testsuite/ld-x86-64/pr32591-1d.d: Likewise.
* testsuite/ld-x86-64/pr32591-1d.t: Likewise.
* testsuite/ld-x86-64/pr32591-2.s: Likewise.
* testsuite/ld-x86-64/pr32591-2-x32.d: Likewise.
* testsuite/ld-x86-64/pr32591-2.d: Likewise.
* testsuite/ld-x86-64/pr32591-2.t: Likewise.
* testsuite/ld-x86-64/pr32591-3.s: Likewise.
* testsuite/ld-x86-64/pr32591-3-x32.d: Likewise.
* testsuite/ld-x86-64/pr32591-3.d: Likewise.
* testsuite/ld-x86-64/pr32591-3.t: Likewise.
* testsuite/ld-x86-64/pr32591-4.s: Likewise.
* testsuite/ld-x86-64/pr32591-4-x32.d: Likewise.
* testsuite/ld-x86-64/pr32591-4.d: Likewise.
* testsuite/ld-x86-64/x86-64.exp: Run PR ld/32591 tests.

Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
33 files changed:
bfd/elf64-x86-64.c
ld/emultempl/elf-x86.em
ld/testsuite/ld-x86-64/pr19609-2a.d
ld/testsuite/ld-x86-64/pr19609-2b.d
ld/testsuite/ld-x86-64/pr19609-4a.d
ld/testsuite/ld-x86-64/pr19609-5d.d
ld/testsuite/ld-x86-64/pr19609-7a.d
ld/testsuite/ld-x86-64/pr19609-7c.d
ld/testsuite/ld-x86-64/pr32591-1.s [new file with mode: 0644]
ld/testsuite/ld-x86-64/pr32591-1a-x32.d [new file with mode: 0644]
ld/testsuite/ld-x86-64/pr32591-1a.d [new file with mode: 0644]
ld/testsuite/ld-x86-64/pr32591-1a.t [new file with mode: 0644]
ld/testsuite/ld-x86-64/pr32591-1b-x32.d [new file with mode: 0644]
ld/testsuite/ld-x86-64/pr32591-1b.d [new file with mode: 0644]
ld/testsuite/ld-x86-64/pr32591-1b.t [new file with mode: 0644]
ld/testsuite/ld-x86-64/pr32591-1c-x32.d [new file with mode: 0644]
ld/testsuite/ld-x86-64/pr32591-1c.d [new file with mode: 0644]
ld/testsuite/ld-x86-64/pr32591-1c.t [new file with mode: 0644]
ld/testsuite/ld-x86-64/pr32591-1d-x32.d [new file with mode: 0644]
ld/testsuite/ld-x86-64/pr32591-1d.d [new file with mode: 0644]
ld/testsuite/ld-x86-64/pr32591-1d.t [new file with mode: 0644]
ld/testsuite/ld-x86-64/pr32591-2-x32.d [new file with mode: 0644]
ld/testsuite/ld-x86-64/pr32591-2.d [new file with mode: 0644]
ld/testsuite/ld-x86-64/pr32591-2.s [new file with mode: 0644]
ld/testsuite/ld-x86-64/pr32591-2.t [new file with mode: 0644]
ld/testsuite/ld-x86-64/pr32591-3-x32.d [new file with mode: 0644]
ld/testsuite/ld-x86-64/pr32591-3.d [new file with mode: 0644]
ld/testsuite/ld-x86-64/pr32591-3.s [new file with mode: 0644]
ld/testsuite/ld-x86-64/pr32591-3.t [new file with mode: 0644]
ld/testsuite/ld-x86-64/pr32591-4-x32.d [new file with mode: 0644]
ld/testsuite/ld-x86-64/pr32591-4.d [new file with mode: 0644]
ld/testsuite/ld-x86-64/pr32591-4.s [new file with mode: 0644]
ld/testsuite/ld-x86-64/x86-64.exp

index 2d82c6583c398c096f4e0235ff7d0756f2fcc488..bb42ed5bd632f532c0208c5e39d6a91914e189b6 100644 (file)
@@ -1770,6 +1770,7 @@ static unsigned int evex_move_r_to_b (unsigned int byte1)
 
 static bool
 elf_x86_64_convert_load_reloc (bfd *abfd,
+                              asection *input_section,
                               bfd_byte *contents,
                               unsigned int *r_type_p,
                               Elf_Internal_Rela *irel,
@@ -1793,6 +1794,10 @@ elf_x86_64_convert_load_reloc (bfd *abfd,
   unsigned int r_symndx;
   bfd_vma roff = irel->r_offset;
   bfd_vma abs_relocation;
+  reloc_howto_type *howto;
+  bfd_reloc_status_type r;
+  Elf_Internal_Sym *isym;
+  bfd_vma relocation;
 
   switch (r_type)
     {
@@ -1901,8 +1906,8 @@ elf_x86_64_convert_load_reloc (bfd *abfd,
   /* Get the symbol referred to by the reloc.  */
   if (h == NULL)
     {
-      Elf_Internal_Sym *isym
-       = bfd_sym_from_r_symndx (&htab->elf.sym_cache, abfd, r_symndx);
+      isym = bfd_sym_from_r_symndx (&htab->elf.sym_cache, abfd,
+                                   r_symndx);
 
       /* Skip relocation against undefined symbols.  */
       if (isym->st_shndx == SHN_UNDEF)
@@ -1932,6 +1937,9 @@ elf_x86_64_convert_load_reloc (bfd *abfd,
         R_X86_64_PC32.  */
       struct elf_x86_link_hash_entry *eh = elf_x86_hash_entry (h);
 
+      isym = NULL;
+      tsec = NULL;
+
       abs_symbol = ABS_SYMBOL_P (h);
       abs_relocation = h->root.u.def.value;
 
@@ -1991,6 +1999,22 @@ elf_x86_64_convert_load_reloc (bfd *abfd,
              /* Skip since R_X86_64_32/R_X86_64_32S may overflow.  */
              if (no_overflow)
                return true;
+             if (h->start_stop)
+               tsec = h->root.u.def.section;
+             else if (h == htab->elf.hehdr_start)
+               {
+                 /* Use the lowest-addressed section to estimate the
+                    __ehdr_start symbol value.  */
+                 asection *sec;
+                 tsec = NULL;
+                 for (sec = link_info->output_bfd->sections;
+                      sec != NULL;
+                      sec = sec->next)
+                   if ((sec->flags & SEC_LOAD) != 0
+                       && (tsec == NULL || tsec->vma > sec->vma))
+                     tsec = sec;
+
+               }
              goto convert;
            }
          tsec = h->root.u.def.section;
@@ -2012,6 +2036,25 @@ elf_x86_64_convert_load_reloc (bfd *abfd,
     return true;
 
  convert:
+  /* Compute relocation value so that it can be used later to check for
+     overflow against the converted relocation.  */
+  if (h == NULL)
+    {
+      /* Make a copy of IREL so that _bfd_elf_rela_local_sym won't
+        change IREL.  */
+      Elf_Internal_Rela rel = *irel;
+      relocation = _bfd_elf_rela_local_sym (link_info->output_bfd, isym,
+                                           &tsec, &rel);
+      /* Use the updated r_addend.  */
+      raddend = rel.r_addend;
+    }
+  else if (tsec != NULL)
+    relocation = (h->root.u.def.value
+                 + tsec->output_section->vma
+                 + tsec->output_offset);
+  else
+    relocation = 0;
+
   if (opcode == 0xff)
     {
       /* We have "call/jmp *foo@GOTPCREL(%rip)".  */
@@ -2019,6 +2062,16 @@ elf_x86_64_convert_load_reloc (bfd *abfd,
       unsigned int disp;
       bfd_vma nop_offset;
 
+      r_type = R_X86_64_PC32;
+
+      /* Skip if the converted relocation will overflow.  */
+      howto = elf_x86_64_rtype_to_howto (abfd, r_type);
+      r = _bfd_final_link_relocate (howto, abfd, input_section,
+                                   contents, irel->r_offset,
+                                   relocation, raddend);
+      if (r == bfd_reloc_overflow)
+       return true;
+
       /* Convert R_X86_64_GOTPCRELX and R_X86_64_REX_GOTPCRELX to
         R_X86_64_PC32.  */
       modrm = bfd_get_8 (abfd, contents + roff - 1);
@@ -2063,7 +2116,6 @@ elf_x86_64_convert_load_reloc (bfd *abfd,
        }
       bfd_put_8 (abfd, nop, contents + nop_offset);
       bfd_put_8 (abfd, modrm, contents + irel->r_offset - 1);
-      r_type = R_X86_64_PC32;
     }
   else if (r_type == R_X86_64_CODE_6_GOTPCRELX && opcode != 0x8b)
     {
@@ -2104,6 +2156,14 @@ elf_x86_64_convert_load_reloc (bfd *abfd,
         overflow when sign-extending imm32 to 64 bits.  */
       r_type = evex[1] & 0x80 ? R_X86_64_32S : R_X86_64_32;
 
+      /* Skip if the converted relocation will overflow.  */
+      howto = elf_x86_64_rtype_to_howto (abfd, r_type);
+      r = _bfd_final_link_relocate (howto, abfd, input_section,
+                                   contents, irel->r_offset,
+                                   relocation, 0);
+      if (r == bfd_reloc_overflow)
+       return true;
+
       if (abs_relocation) /* Bogus; should be abs_symbol.  */
        {
          /* Check if R_X86_64_32S/R_X86_64_32 fits.  */
@@ -2189,6 +2249,15 @@ elf_x86_64_convert_load_reloc (bfd *abfd,
              opcode = 0x8d;
              r_type = R_X86_64_PC32;
 
+             /* Skip if the converted relocation will overflow.  */
+             howto = elf_x86_64_rtype_to_howto (abfd, r_type);
+             r = _bfd_final_link_relocate (howto, abfd, input_section,
+                                           contents, irel->r_offset,
+                                           relocation,
+                                           raddend);
+             if (r == bfd_reloc_overflow)
+               return true;
+
              /* For MOVRS move a possible REX prefix as necessary.  */
              if (movrs == 5)
                bfd_put_8 (abfd, rex, contents + roff - 3);
@@ -2248,6 +2317,14 @@ elf_x86_64_convert_load_reloc (bfd *abfd,
          r_type = rex_w ? R_X86_64_32S : R_X86_64_32;
 
        rewrite_modrm_rex:
+         /* Skip if the converted relocation will overflow.  */
+         howto = elf_x86_64_rtype_to_howto (abfd, r_type);
+         r = _bfd_final_link_relocate (howto, abfd, input_section,
+                                       contents, irel->r_offset,
+                                       relocation, 0);
+         if (r == bfd_reloc_overflow)
+           return true;
+
          if (abs_relocation)
            {
              /* Check if R_X86_64_32S/R_X86_64_32 fits.  */
@@ -2465,9 +2542,9 @@ elf_x86_64_scan_relocs (bfd *abfd, struct bfd_link_info *info,
          && (h == NULL || h->type != STT_GNU_IFUNC))
        {
          Elf_Internal_Rela *irel = (Elf_Internal_Rela *) rel;
-         if (!elf_x86_64_convert_load_reloc (abfd, contents, &r_type,
-                                             irel, h, &converted_reloc,
-                                             info))
+         if (!elf_x86_64_convert_load_reloc (abfd, sec, contents,
+                                             &r_type, irel, h,
+                                             &converted_reloc, info))
            goto error_return;
 
          if (converted_reloc)
index 8546923da232dde1429eae6a6adeabc48a11c203..f72a0cd0d4a7367d18620f57b7fdc8f3912de0b5 100644 (file)
@@ -73,3 +73,44 @@ EOF
     LDEMUL_BEFORE_PARSE=elf_x86_64_before_parse
     ;;
 esac
+
+case x${OUTPUT_FORMAT} in
+  x*x86-64*)
+fragment <<EOF
+
+static void
+elf_x86_64_before_allocation (void)
+{
+  if (!bfd_link_relocatable (&link_info)
+      && is_elf_hash_table (link_info.hash)
+      && expld.phase != lang_mark_phase_enum)
+    {
+      struct elf_link_hash_table *htab = elf_hash_table (&link_info);
+      /* Run one_lang_size_sections_pass to estimate the output section
+        layout before sizing dynamic sections.  */
+      expld.dataseg.phase = exp_seg_none;
+      expld.phase = lang_mark_phase_enum;
+      /* NB: Exclude linker created GOT setions when estimating output
+        section layout as sizing dynamic sections may change linker
+        created GOT sections.  */
+      if (htab->sgot != NULL)
+       htab->sgot->flags |= SEC_EXCLUDE;
+      if (htab->sgotplt != NULL)
+       htab->sgotplt->flags |= SEC_EXCLUDE;
+      one_lang_size_sections_pass (NULL, false);
+      /* Restore linker created GOT setions.  */
+      if (htab->sgot != NULL)
+       htab->sgot->flags &= ~SEC_EXCLUDE;
+      if (htab->sgotplt != NULL)
+       htab->sgotplt->flags &= ~SEC_EXCLUDE;
+      lang_reset_memory_regions ();
+    }
+
+  gld${EMULATION_NAME}_before_allocation ();
+}
+
+EOF
+
+LDEMUL_BEFORE_ALLOCATION=elf_x86_64_before_allocation
+    ;;
+esac
index 6d3db92afb71b6eb3eb457949946fdf64ef06cd7..401d64affefe1ba4782e02ebde1242f374f7ee8e 100644 (file)
@@ -1,4 +1,13 @@
 #source: pr19609-2.s
 #as: --64 -mrelax-relocations=yes
 #ld: -melf_x86_64 -Ttext=0x70000000 -Tdata=0xa0000000
-#error: .*failed to convert GOTPCREL relocation against 'foo'; relink with --no-relax.*
+#objdump: -dw
+
+.*: +file format .*
+
+
+Disassembly of section .text:
+
+0+70000000 <_start>:
+[      ]*[a-f0-9]+:    48 3b 05 ([0-9a-f]{2} ){4}      cmp    -?0x[a-f0-9]+\(%rip\),%rax        # .*
+#pass
index 4fee93d7034d7c218ad658acb49a1535e1ea9fa3..7e6e8cd3c9147e48ea384bc7dc0c7148df4bccfe 100644 (file)
@@ -1,4 +1,13 @@
 #source: pr19609-2.s
 #as: --x32 -mrelax-relocations=yes
 #ld: -melf32_x86_64 -Ttext=0x70000000 -Tdata=0xa0000000
-#error: .*failed to convert GOTPCREL relocation against 'foo'; relink with --no-relax.*
+#objdump: -dw
+
+.*: +file format .*
+
+
+Disassembly of section .text:
+
+70000000 <_start>:
+[      ]*[a-f0-9]+:    48 3b 05 ([0-9a-f]{2} ){4}      cmp    -?0x[a-f0-9]+\(%rip\),%rax        # .*
+#pass
index eb37d0c8729b56489da2fa165f7811582870a7f2..b6e41f5ee780070c804357b226eb483e01fa2b12 100644 (file)
@@ -1,4 +1,13 @@
 #source: pr19609-4.s
 #as: --64 -mrelax-relocations=yes
 #ld: -melf_x86_64 -Ttext=0x70000000 -Tdata=0xa0000000
-#error: .*failed to convert GOTPCREL relocation against 'foo'; relink with --no-relax.*failed to convert GOTPCREL relocation against 'foo'; relink with --no-relax.*
+#objdump: -dw
+
+.*: +file format .*
+
+
+Disassembly of section .text:
+
+0+70000000 <_start>:
+[      ]*[a-f0-9]+:    48 8b 05 ([0-9a-f]{2} ){4} *    mov    [-]?0x[a-f0-9]+\(%rip\),%rax        # [a-f0-9]+ <_start\+0x1000>
+[      ]*[a-f0-9]+:    4c 8b 1d ([0-9a-f]{2} ){4} *    mov    [-]?0x[a-f0-9]+\(%rip\),%r11        # [a-f0-9]+ <_start\+0x1000>
index 0ab28efff1efd3ec23ee613af8c358903313a087..0b011e0943e79d9448cef119ee9b76b3ccb2b773 100644 (file)
@@ -1,4 +1,12 @@
 #source: pr19609-5.s
 #as: --64 -mrelax-relocations=yes
 #ld: -melf_x86_64 -Ttext=0x80000000
-#error: .*failed to convert GOTPCREL relocation against 'bar'; relink with --no-relax
+#objdump: -dw
+
+.*: +file format .*
+
+
+Disassembly of section .text:
+
+[a-f0-9]+ <_start>:
+[ ]+[a-f0-9]+: ff 15 ([0-9a-f]{2} ){4} *       call   \*-?0x[a-f0-9]+\(%rip\)        # [a-f0-9]+ <.*>
index 34704a94c16408eedc1b52b9cb78d7d2de94adc9..f00f0b88de273bab099a3ff77a194332a289f6b2 100644 (file)
@@ -1,4 +1,13 @@
 #source: pr19609-7.s
 #as: --64 -mrelax-relocations=yes
-#ld: -melf_x86_64 -Ttext=0x80000000
-#error: .*failed to convert GOTPCREL relocation against 'foobar'; relink with --no-relax
+#ld: -melf_x86_64 -Ttext=0x80000000 -z max-page-size=0x1000 -z separate-code --no-rosegment
+#objdump: -dw
+
+.*: +file format .*
+
+
+Disassembly of section .text:
+
+[a-f0-9]+ <_start>:
+[ ]*[a-f0-9]+: ff 15 ([0-9a-f]{2} ){4} *       call   \*-?0x[a-f0-9]+\(%rip\)        # [a-f0-9]+ <_start\+0x1000>
+#pass
index 09488e22a8e5473ec618058e96fe70d9f612cbbd..c1ee443dd305337d3844fd3e262e9751feb27258 100644 (file)
@@ -1,4 +1,13 @@
 #source: pr19609-7.s
 #as: --x32 -mrelax-relocations=yes
-#ld: -melf32_x86_64 -Ttext=0x80000000
-#error: .*failed to convert GOTPCREL relocation against 'foobar'; relink with --no-relax
+#ld: -melf32_x86_64 -Ttext=0x80000000 -z max-page-size=0x1000 -z separate-code --no-rosegment
+#objdump: -dw
+
+.*: +file format .*
+
+
+Disassembly of section .text:
+
+[a-f0-9]+ <_start>:
+[ ]*[a-f0-9]+: ff 15 ([0-9a-f]{2} ){4} *       call   \*-?0x[a-f0-9]+\(%rip\)        # [a-f0-9]+ <_start\+0x1000>
+#pass
diff --git a/ld/testsuite/ld-x86-64/pr32591-1.s b/ld/testsuite/ld-x86-64/pr32591-1.s
new file mode 100644 (file)
index 0000000..8536456
--- /dev/null
@@ -0,0 +1,24 @@
+.section .text.foo,"ax"
+.globl _foo
+.type _foo, @function
+_foo:
+  movl __start_data@GOTPCREL(%rip), %eax
+  addq foo_1@GOTPCREL(%rip), %rax
+  addq foo@GOTPCREL(%rip), %rax
+
+.section .text,"ax"
+.globl _start
+.type _start, @function
+_start:
+  movl __stop_data@GOTPCREL(%rip), %eax
+  movq __stop_data@GOTPCREL(%rip), %rax
+  movq __stop_data@GOTPCREL(%rip), %rax
+  movl __stop_data@GOTPCREL(%rip), %eax
+
+.section foo,"aw",@progbits
+.space 1
+foo_1:
+.space 1
+
+.section data,"aw",@progbits
+.space 13
diff --git a/ld/testsuite/ld-x86-64/pr32591-1a-x32.d b/ld/testsuite/ld-x86-64/pr32591-1a-x32.d
new file mode 100644 (file)
index 0000000..6934373
--- /dev/null
@@ -0,0 +1,22 @@
+#source: pr32591-1.s
+#as: --x32 -mrelax-relocations=yes
+#ld: -melf32_x86_64 -T pr32591-1a.t -z max-page-size=0x1000 -z separate-code --no-rosegment
+#objdump: -dw
+
+.*: +file format .*
+
+
+Disassembly of section .text.foo:
+
+00100000 <_foo>:
+  100000:      c7 c0 00 00 20 80       mov    \$0x80200000,%eax
+  100006:      48 03 05 f3 ff 1f 00    add    0x1ffff3\(%rip\),%rax        # 300000 <_start\+0x100000>
+  10000d:      48 81 c0 ff ff ff 7f    add    \$0x7fffffff,%rax
+
+Disassembly of section .text:
+
+00200000 <_start>:
+  200000:      c7 c0 0d 00 20 80       mov    \$0x8020000d,%eax
+  200006:      40 c7 c0 0d 00 20 80    rex mov \$0x8020000d,%eax
+  20000d:      40 c7 c0 0d 00 20 80    rex mov \$0x8020000d,%eax
+  200014:      c7 c0 0d 00 20 80       mov    \$0x8020000d,%eax
diff --git a/ld/testsuite/ld-x86-64/pr32591-1a.d b/ld/testsuite/ld-x86-64/pr32591-1a.d
new file mode 100644 (file)
index 0000000..30637a7
--- /dev/null
@@ -0,0 +1,22 @@
+#source: pr32591-1.s
+#as: --64 -mrelax-relocations=yes
+#ld: -melf_x86_64 -T pr32591-1a.t -z max-page-size=0x1000 -z separate-code --no-rosegment
+#objdump: -dw
+
+.*: +file format .*
+
+
+Disassembly of section .text.foo:
+
+0000000000100000 <_foo>:
+  100000:      c7 c0 00 00 20 80       mov    \$0x80200000,%eax
+  100006:      48 03 05 f3 ff 1f 00    add    0x1ffff3\(%rip\),%rax        # 300000 <_start\+0x100000>
+  10000d:      48 81 c0 ff ff ff 7f    add    \$0x7fffffff,%rax
+
+Disassembly of section .text:
+
+0000000000200000 <_start>:
+  200000:      c7 c0 0d 00 20 80       mov    \$0x8020000d,%eax
+  200006:      48 8b 05 fb ff 0f 00    mov    0xffffb\(%rip\),%rax        # 300008 <_start\+0x100008>
+  20000d:      48 8b 05 f4 ff 0f 00    mov    0xffff4\(%rip\),%rax        # 300008 <_start\+0x100008>
+  200014:      c7 c0 0d 00 20 80       mov    \$0x8020000d,%eax
diff --git a/ld/testsuite/ld-x86-64/pr32591-1a.t b/ld/testsuite/ld-x86-64/pr32591-1a.t
new file mode 100644 (file)
index 0000000..efe8a07
--- /dev/null
@@ -0,0 +1,7 @@
+SECTIONS {
+  .text.foo 0x100000 : { *(.text.foo) }
+  .text 0x200000 : { *(.text) }
+  .got 0x300000 : { *(.got) }
+  foo 0x7fffffff : { *(foo) }
+  data 0x80200000 : { *(data) }
+}
diff --git a/ld/testsuite/ld-x86-64/pr32591-1b-x32.d b/ld/testsuite/ld-x86-64/pr32591-1b-x32.d
new file mode 100644 (file)
index 0000000..0b98e87
--- /dev/null
@@ -0,0 +1,27 @@
+#source: pr32591-1.s
+#as: --x32 -mrelax-relocations=yes
+#ld: -melf32_x86_64 -T pr32591-1b.t -z max-page-size=0x1000 -z separate-code --no-rosegment
+#objdump: -dw
+
+.*: +file format .*
+
+
+Disassembly of section .text.foo:
+
+00100000 <_foo>:
+  100000:      c7 c0 00 00 20 80       mov    \$0x80200000,%eax
+  100006:      48 03 05 f3 ff 1f 00    add    0x1ffff3\(%rip\),%rax        # 300000 <_start\+0x100000>
+  10000d:      48 81 c0 ff ff ff 7f    add    \$0x7fffffff,%rax
+
+Disassembly of section .text:
+
+001ff000 <_start-0x1000>:
+  1ff000:      66 2e 0f 1f 84 00 00 00 00 00   cs nopw 0x0\(%rax,%rax,1\)
+#...
+  1ffffa:      66 0f 1f 44 00 00       nopw   0x0\(%rax,%rax,1\)
+
+00200000 <_start>:
+  200000:      c7 c0 0d 00 20 80       mov    \$0x8020000d,%eax
+  200006:      40 c7 c0 0d 00 20 80    rex mov \$0x8020000d,%eax
+  20000d:      40 c7 c0 0d 00 20 80    rex mov \$0x8020000d,%eax
+  200014:      c7 c0 0d 00 20 80       mov    \$0x8020000d,%eax
diff --git a/ld/testsuite/ld-x86-64/pr32591-1b.d b/ld/testsuite/ld-x86-64/pr32591-1b.d
new file mode 100644 (file)
index 0000000..149f851
--- /dev/null
@@ -0,0 +1,27 @@
+#source: pr32591-1.s
+#as: --64 -mrelax-relocations=yes
+#ld: -melf_x86_64 -T pr32591-1b.t -z max-page-size=0x1000 -z separate-code --no-rosegment
+#objdump: -dw
+
+.*: +file format .*
+
+
+Disassembly of section .text.foo:
+
+0000000000100000 <_foo>:
+  100000:      c7 c0 00 00 20 80       mov    \$0x80200000,%eax
+  100006:      48 03 05 f3 ff 1f 00    add    0x1ffff3\(%rip\),%rax        # 300000 <_start\+0x100000>
+  10000d:      48 81 c0 ff ff ff 7f    add    \$0x7fffffff,%rax
+
+Disassembly of section .text:
+
+00000000001ff000 <_start-0x1000>:
+  1ff000:      66 2e 0f 1f 84 00 00 00 00 00   cs nopw 0x0\(%rax,%rax,1\)
+#...
+  1ffffa:      66 0f 1f 44 00 00       nopw   0x0\(%rax,%rax,1\)
+
+0000000000200000 <_start>:
+  200000:      c7 c0 0d 00 20 80       mov    \$0x8020000d,%eax
+  200006:      48 8b 05 fb ff 0f 00    mov    0xffffb\(%rip\),%rax        # 300008 <_start\+0x100008>
+  20000d:      48 8b 05 f4 ff 0f 00    mov    0xffff4\(%rip\),%rax        # 300008 <_start\+0x100008>
+  200014:      c7 c0 0d 00 20 80       mov    \$0x8020000d,%eax
diff --git a/ld/testsuite/ld-x86-64/pr32591-1b.t b/ld/testsuite/ld-x86-64/pr32591-1b.t
new file mode 100644 (file)
index 0000000..1f7a0e1
--- /dev/null
@@ -0,0 +1,7 @@
+SECTIONS {
+  .text.foo 0x100000 : { *(.text.foo) }
+  .text 0x1ff000 : { . = . + 0x1000 ; *(.text) }
+  .got 0x300000 : { *(.got) }
+  foo 0x7fffffff : { *(foo) }
+  data 0x80200000 : { *(data) }
+}
diff --git a/ld/testsuite/ld-x86-64/pr32591-1c-x32.d b/ld/testsuite/ld-x86-64/pr32591-1c-x32.d
new file mode 100644 (file)
index 0000000..e1c7fc6
--- /dev/null
@@ -0,0 +1,22 @@
+#source: pr32591-1.s
+#as: --x32 -mrelax-relocations=yes
+#ld: -melf32_x86_64 -T pr32591-1c.t -z max-page-size=0x1000 -z separate-code --no-rosegment
+#objdump: -dw
+
+.*: +file format .*
+
+
+Disassembly of section .text.foo:
+
+00100000 <_foo>:
+  100000:      c7 c0 00 00 40 00       mov    \$0x400000,%eax
+  100006:      48 81 c0 0e 00 40 00    add    \$0x40000e,%rax
+  10000d:      48 81 c0 0d 00 40 00    add    \$0x40000d,%rax
+
+Disassembly of section .text:
+
+00200000 <_start>:
+  200000:      c7 c0 0d 00 40 00       mov    \$0x40000d,%eax
+  200006:      40 c7 c0 0d 00 40 00    rex mov \$0x40000d,%eax
+  20000d:      40 c7 c0 0d 00 40 00    rex mov \$0x40000d,%eax
+  200014:      c7 c0 0d 00 40 00       mov    \$0x40000d,%eax
diff --git a/ld/testsuite/ld-x86-64/pr32591-1c.d b/ld/testsuite/ld-x86-64/pr32591-1c.d
new file mode 100644 (file)
index 0000000..f7b390f
--- /dev/null
@@ -0,0 +1,22 @@
+#source: pr32591-1.s
+#as: --64 -mrelax-relocations=yes
+#ld: -melf_x86_64 -T pr32591-1c.t -z max-page-size=0x1000 -z separate-code --no-rosegment
+#objdump: -dw
+
+.*: +file format .*
+
+
+Disassembly of section .text.foo:
+
+0000000000100000 <_foo>:
+  100000:      c7 c0 00 00 40 00       mov    \$0x400000,%eax
+  100006:      48 81 c0 0e 00 40 00    add    \$0x40000e,%rax
+  10000d:      48 81 c0 0d 00 40 00    add    \$0x40000d,%rax
+
+Disassembly of section .text:
+
+0000000000200000 <_start>:
+  200000:      c7 c0 0d 00 40 00       mov    \$0x40000d,%eax
+  200006:      48 c7 c0 0d 00 40 00    mov    \$0x40000d,%rax
+  20000d:      48 c7 c0 0d 00 40 00    mov    \$0x40000d,%rax
+  200014:      c7 c0 0d 00 40 00       mov    \$0x40000d,%eax
diff --git a/ld/testsuite/ld-x86-64/pr32591-1c.t b/ld/testsuite/ld-x86-64/pr32591-1c.t
new file mode 100644 (file)
index 0000000..3bfb7f2
--- /dev/null
@@ -0,0 +1,6 @@
+SECTIONS {
+  .text.foo 0x100000 : { *(.text.foo) }
+  .text 0x200000 : { *(.text) }
+  .got 0x300000 : { *(.got) }
+  data 0x400000 : { *(data) }
+}
diff --git a/ld/testsuite/ld-x86-64/pr32591-1d-x32.d b/ld/testsuite/ld-x86-64/pr32591-1d-x32.d
new file mode 100644 (file)
index 0000000..c5bc0ee
--- /dev/null
@@ -0,0 +1,22 @@
+#source: pr32591-1.s
+#as: --x32 -mrelax-relocations=yes
+#ld: -melf32_x86_64 -T pr32591-1d.t -z max-page-size=0x1000 -z separate-code --no-rosegment
+#objdump: -dw
+
+.*: +file format .*
+
+
+Disassembly of section .text.foo:
+
+00002000 <_foo>:
+    2000:      c7 c0 00 10 00 80       mov    \$0x80001000,%eax
+    2006:      48 03 05 f3 1f 00 00    add    0x1ff3\(%rip\),%rax        # 4000 <_start\+0x1000>
+    200d:      48 81 c0 ff ff ff 7f    add    \$0x7fffffff,%rax
+
+Disassembly of section .text:
+
+00003000 <_start>:
+    3000:      c7 c0 0d 10 00 80       mov    \$0x8000100d,%eax
+    3006:      40 c7 c0 0d 10 00 80    rex mov \$0x8000100d,%eax
+    300d:      40 c7 c0 0d 10 00 80    rex mov \$0x8000100d,%eax
+    3014:      c7 c0 0d 10 00 80       mov    \$0x8000100d,%eax
diff --git a/ld/testsuite/ld-x86-64/pr32591-1d.d b/ld/testsuite/ld-x86-64/pr32591-1d.d
new file mode 100644 (file)
index 0000000..36b0853
--- /dev/null
@@ -0,0 +1,22 @@
+#source: pr32591-1.s
+#as: --64 -mrelax-relocations=yes
+#ld: -melf_x86_64 -T pr32591-1d.t -z max-page-size=0x1000 -z separate-code --no-rosegment
+#objdump: -dw
+
+.*: +file format .*
+
+
+Disassembly of section .text.foo:
+
+0000000000002000 <_foo>:
+    2000:      c7 c0 00 10 00 80       mov    \$0x80001000,%eax
+    2006:      48 03 05 f3 1f 00 00    add    0x1ff3\(%rip\),%rax        # 4000 <_start\+0x1000>
+    200d:      48 81 c0 ff ff ff 7f    add    \$0x7fffffff,%rax
+
+Disassembly of section .text:
+
+0000000000003000 <_start>:
+    3000:      c7 c0 0d 10 00 80       mov    \$0x8000100d,%eax
+    3006:      48 8b 05 fb 0f 00 00    mov    0xffb\(%rip\),%rax        # 4008 <_start\+0x1008>
+    300d:      48 8b 05 f4 0f 00 00    mov    0xff4\(%rip\),%rax        # 4008 <_start\+0x1008>
+    3014:      c7 c0 0d 10 00 80       mov    \$0x8000100d,%eax
diff --git a/ld/testsuite/ld-x86-64/pr32591-1d.t b/ld/testsuite/ld-x86-64/pr32591-1d.t
new file mode 100644 (file)
index 0000000..accfd80
--- /dev/null
@@ -0,0 +1,7 @@
+SECTIONS {
+  .text.foo 0x02000 : { *(.text.foo) }
+  .text 0x3000 : { *(.text) }
+  .got 0x4000 : { *(.got) }
+  foo 0x7fffffff : { *(foo) }
+  data 0x80001000 : { *(data) }
+}
diff --git a/ld/testsuite/ld-x86-64/pr32591-2-x32.d b/ld/testsuite/ld-x86-64/pr32591-2-x32.d
new file mode 100644 (file)
index 0000000..765b379
--- /dev/null
@@ -0,0 +1,12 @@
+#source: pr32591-2.s
+#as: --x32 -mrelax-relocations=yes
+#ld: -melf32_x86_64 -T pr32591-2.t -z max-page-size=0x1000 -z separate-code --no-rosegment
+#objdump: -dw
+
+.*: +file format .*
+
+
+Disassembly of section .text:
+
+ffff0000 <_start>:
+ffff0000:      40 c7 c0 08 00 ff ff    rex mov \$0xffff0008,%eax
diff --git a/ld/testsuite/ld-x86-64/pr32591-2.d b/ld/testsuite/ld-x86-64/pr32591-2.d
new file mode 100644 (file)
index 0000000..dccf546
--- /dev/null
@@ -0,0 +1,12 @@
+#source: pr32591-2.s
+#as: --64 -mrelax-relocations=yes
+#ld: -melf_x86_64 -T pr32591-2.t -z max-page-size=0x1000 -z separate-code --no-rosegment
+#objdump: -dw
+
+.*: +file format .*
+
+
+Disassembly of section .text:
+
+00000000ffff0000 <_start>:
+    ffff0000:  48 8b 05 09 00 00 00    mov    0x9\(%rip\),%rax        # ffff0010 <__stack_chk_guard\+0x8>
diff --git a/ld/testsuite/ld-x86-64/pr32591-2.s b/ld/testsuite/ld-x86-64/pr32591-2.s
new file mode 100644 (file)
index 0000000..76168ce
--- /dev/null
@@ -0,0 +1,13 @@
+       .text
+       .p2align 4
+       .globl  _start
+       .type   _start, @function
+_start:
+       movq    __stack_chk_guard@GOTPCREL(%rip), %rax
+       .globl  __stack_chk_guard
+       .section        .rodata
+       .align 8
+       .type   __stack_chk_guard, @object
+__stack_chk_guard:
+       .quad -1
+       .section        .note.GNU-stack,"",@progbits
diff --git a/ld/testsuite/ld-x86-64/pr32591-2.t b/ld/testsuite/ld-x86-64/pr32591-2.t
new file mode 100644 (file)
index 0000000..0b1109c
--- /dev/null
@@ -0,0 +1,4 @@
+SECTIONS {
+  .text  0xffff0000 : { *(.text*) }
+  .rodata : AT(ADDR(".rodata") - 0xffff0000) { *(.rodata*) }
+}
diff --git a/ld/testsuite/ld-x86-64/pr32591-3-x32.d b/ld/testsuite/ld-x86-64/pr32591-3-x32.d
new file mode 100644 (file)
index 0000000..3b91f7d
--- /dev/null
@@ -0,0 +1,13 @@
+#source: pr32591-3.s
+#as: --x32 -mrelax-relocations=yes
+#ld: -melf32_x86_64 -T pr32591-3.t -z max-page-size=0x1000 -z separate-code --no-rosegment
+#objdump: -dw
+
+.*: +file format .*
+
+
+Disassembly of section .text:
+
+f0000000 <_start>:
+f0000000:      40 c7 c0 08 00 30 ff    rex mov \$0xff300008,%eax
+f0000007:      48 03 1d f2 ff 2f 0f    add    0xf2ffff2\(%rip\),%rbx        # ff300000 <_start\+0xf300000>
diff --git a/ld/testsuite/ld-x86-64/pr32591-3.d b/ld/testsuite/ld-x86-64/pr32591-3.d
new file mode 100644 (file)
index 0000000..4ad0878
--- /dev/null
@@ -0,0 +1,13 @@
+#source: pr32591-3.s
+#as: --64 -mrelax-relocations=yes
+#ld: -melf_x86_64 -T pr32591-3.t -z max-page-size=0x1000 -z separate-code --no-rosegment
+#objdump: -dw
+
+.*: +file format .*
+
+
+Disassembly of section .text:
+
+00000000f0000000 <_start>:
+    f0000000:  48 8b 05 f9 ff 2f 0f    mov    0xf2ffff9\(%rip\),%rax        # ff300000 <_start\+0xf300000>
+    f0000007:  48 03 1d f2 ff 2f 0f    add    0xf2ffff2\(%rip\),%rbx        # ff300000 <_start\+0xf300000>
diff --git a/ld/testsuite/ld-x86-64/pr32591-3.s b/ld/testsuite/ld-x86-64/pr32591-3.s
new file mode 100644 (file)
index 0000000..ba8ebf3
--- /dev/null
@@ -0,0 +1,7 @@
+       .text
+       .globl  _start
+       .type   _start, @function
+_start:
+       movq    foo@GOTPCREL(%rip), %rax
+       addq    foo@GOTPCREL(%rip), %rbx
+       .size   _start, .-_start
diff --git a/ld/testsuite/ld-x86-64/pr32591-3.t b/ld/testsuite/ld-x86-64/pr32591-3.t
new file mode 100644 (file)
index 0000000..91feb7c
--- /dev/null
@@ -0,0 +1,5 @@
+SECTIONS {
+  .text 0xf0000000 : { *(.text) }
+  .got 0xff300000 : { *(.got) }
+  foo = .;
+}
diff --git a/ld/testsuite/ld-x86-64/pr32591-4-x32.d b/ld/testsuite/ld-x86-64/pr32591-4-x32.d
new file mode 100644 (file)
index 0000000..12e1790
--- /dev/null
@@ -0,0 +1,13 @@
+#source: pr32591-4.s
+#as: --x32 -mrelax-relocations=yes
+#ld: -melf32_x86_64 -Ttext-segment=0xf0000000 -z max-page-size=0x1000 -z separate-code --no-rosegment
+#objdump: -dw
+
+.*: +file format .*
+
+
+Disassembly of section .text:
+
+f0001000 <_start>:
+f0001000:      40 c7 c0 00 00 00 f0    rex mov \$0xf0000000,%eax
+f0001007:      48 03 1d f2 0f 00 00    add    0xff2\(%rip\),%rbx        # f0002000 <_start\+0x1000>
diff --git a/ld/testsuite/ld-x86-64/pr32591-4.d b/ld/testsuite/ld-x86-64/pr32591-4.d
new file mode 100644 (file)
index 0000000..ac57805
--- /dev/null
@@ -0,0 +1,13 @@
+#source: pr32591-4.s
+#as: --64 -mrelax-relocations=yes
+#ld: -melf_x86_64 -Ttext-segment=0xf0000000 -z max-page-size=0x1000 -z separate-code --no-rosegment
+#objdump: -dw
+
+.*: +file format .*
+
+
+Disassembly of section .text:
+
+00000000f0001000 <_start>:
+    f0001000:  48 8b 05 f9 0f 00 00    mov    0xff9\(%rip\),%rax        # f0002000 <_start\+0x1000>
+    f0001007:  48 03 1d f2 0f 00 00    add    0xff2\(%rip\),%rbx        # f0002000 <_start\+0x1000>
diff --git a/ld/testsuite/ld-x86-64/pr32591-4.s b/ld/testsuite/ld-x86-64/pr32591-4.s
new file mode 100644 (file)
index 0000000..aa784b8
--- /dev/null
@@ -0,0 +1,7 @@
+       .text
+       .globl  _start
+       .type   _start, @function
+_start:
+       movq    __ehdr_start@GOTPCREL(%rip), %rax
+       addq    __ehdr_start@GOTPCREL(%rip), %rbx
+       .size   _start, .-_start
index bde29fbd571d3c495376af96a7ed08527ccead52..bcec5c1926a7985ea49e7ec58c8e001f59a03b1e 100644 (file)
@@ -544,6 +544,20 @@ run_dump_test "tlsdesc4"
 run_dump_test "tlsdesc5"
 run_dump_test "pr32191"
 run_dump_test "pr32191-x32"
+run_dump_test "pr32591-1a"
+run_dump_test "pr32591-1a-x32"
+run_dump_test "pr32591-1b"
+run_dump_test "pr32591-1b-x32"
+run_dump_test "pr32591-1c"
+run_dump_test "pr32591-1c-x32"
+run_dump_test "pr32591-1d"
+run_dump_test "pr32591-1d-x32"
+run_dump_test "pr32591-2"
+run_dump_test "pr32591-2-x32"
+run_dump_test "pr32591-3"
+run_dump_test "pr32591-3-x32"
+run_dump_test "pr32591-4"
+run_dump_test "pr32591-4-x32"
 
 if { ![skip_sframe_tests] } {
     run_dump_test "sframe-simple-1"