[bfd] Provide 8-byte minimum alignment for .plt section
authorJohn David Anglin <danglin@gcc.gnu.org>
Sun, 20 Oct 2019 16:01:58 +0000 (12:01 -0400)
committerJohn David Anglin <danglin@gcc.gnu.org>
Sun, 20 Oct 2019 16:01:58 +0000 (12:01 -0400)
This change increases the default alignment for the .plt section
from 4 bytes to 8 bytes.  When function descriptors are 8-byte
aligned, they can be updated atomically on 32-bit hppa.  This
helps with ordering issues on SMP machines.  It also ensures
that descriptors reside on the same cache line.  This reduces
the probability of a double TLB miss in a call.

2019-10-20  John David Anglin  <danglin@gcc.gnu.org>

* elf32-hppa.c (elf32_hppa_size_dynamic_sections): Provide 8-byte
minimum alignment for .plt section.

bfd/ChangeLog
bfd/elf32-hppa.c

index 44790fb16b7c3965bc566b833c3c43b86d6db90e..429e423caa8a5d8265e25de84fb20361c9604429 100644 (file)
@@ -1,3 +1,8 @@
+2019-10-20  John David Anglin  <danglin@gcc.gnu.org>
+
+       * elf32-hppa.c (elf32_hppa_size_dynamic_sections): Provide 8-byte
+       minimum alignment for .plt section.
+
 2019-10-19  John David Anglin  <danglin@gcc.gnu.org>
 
        * elf32-hppa.c: Revise import stub sequences.
index 8a19c1937081f2378ac14ad9f13ef66282dbefb3..35564dd2b0b59fd2855cd4987a7990a61f413cbe 100644 (file)
@@ -2280,10 +2280,11 @@ elf32_hppa_size_dynamic_sections (bfd *output_bfd ATTRIBUTE_UNUSED,
                 against the .got section.  */
              int gotalign = bfd_section_alignment (htab->etab.sgot);
              int pltalign = bfd_section_alignment (sec);
+             int align = gotalign > 3 ? gotalign : 3;
              bfd_size_type mask;
 
-             if (gotalign > pltalign)
-               bfd_set_section_alignment (sec, gotalign);
+             if (align > pltalign)
+               bfd_set_section_alignment (sec, align);
              mask = ((bfd_size_type) 1 << gotalign) - 1;
              sec->size = (sec->size + sizeof (plt_stub) + mask) & ~mask;
            }