Blame SOURCES/binutils-secondary-relocs-speed.patch

b7afb1
diff -rup binutils.orig/bfd/elf-bfd.h binutils-2.35/bfd/elf-bfd.h
b7afb1
--- binutils.orig/bfd/elf-bfd.h	2021-06-23 15:00:33.913477324 +0100
b7afb1
+++ binutils-2.35/bfd/elf-bfd.h	2021-06-23 15:03:42.300235019 +0100
b7afb1
@@ -1748,6 +1748,11 @@ struct bfd_elf_section_data
b7afb1
   /* Link from a text section to its .eh_frame_entry section.  */
b7afb1
   asection *eh_frame_entry;
b7afb1
 
b7afb1
+  /* TRUE if the section has secondary reloc sections associated with it.
b7afb1
+     FIXME: In the future it might be better to change this into a list
b7afb1
+     of secondary reloc sections, making lookup easier and faster.  */
b7afb1
+  bfd_boolean has_secondary_relocs;
b7afb1
+
b7afb1
   /* A pointer used for various section optimizations.  */
b7afb1
   void *sec_info;
b7afb1
 };
b7afb1
diff -rup binutils.orig/bfd/elf.c binutils-2.35/bfd/elf.c
b7afb1
--- binutils.orig/bfd/elf.c	2021-06-23 15:00:33.902477396 +0100
b7afb1
+++ binutils-2.35/bfd/elf.c	2021-06-23 15:02:36.269672347 +0100
b7afb1
@@ -12672,6 +12672,7 @@ _bfd_elf_copy_special_section_fields (co
b7afb1
 {
b7afb1
   asection * isec;
b7afb1
   asection * osec;
b7afb1
+  struct bfd_elf_section_data * esd;
b7afb1
 
b7afb1
   if (isection == NULL)
b7afb1
     return FALSE;
b7afb1
@@ -12687,8 +12688,9 @@ _bfd_elf_copy_special_section_fields (co
b7afb1
   if (osec == NULL)
b7afb1
     return FALSE;
b7afb1
 
b7afb1
-  BFD_ASSERT (elf_section_data (osec)->sec_info == NULL);
b7afb1
-  elf_section_data (osec)->sec_info = elf_section_data (isec)->sec_info;
b7afb1
+  esd = elf_section_data (osec);
b7afb1
+  BFD_ASSERT (esd->sec_info == NULL);
b7afb1
+  esd->sec_info = elf_section_data (isec)->sec_info;
b7afb1
   osection->sh_type = SHT_RELA;
b7afb1
   osection->sh_link = elf_onesymtab (obfd);
b7afb1
   if (osection->sh_link == 0)
b7afb1
@@ -12731,6 +12733,10 @@ _bfd_elf_copy_special_section_fields (co
b7afb1
   osection->sh_info =
b7afb1
     elf_section_data (isection->bfd_section->output_section)->this_idx;
b7afb1
 
b7afb1
+  esd = elf_section_data (isection->bfd_section->output_section);
b7afb1
+  BFD_ASSERT (esd != NULL);
b7afb1
+  osection->sh_info = esd->this_idx;
b7afb1
+  esd->has_secondary_relocs = TRUE;
b7afb1
 #if DEBUG_SECONDARY_RELOCS
b7afb1
   fprintf (stderr, "update header of %s, sh_link = %u, sh_info = %u\n",
b7afb1
 	   osec->name, osection->sh_link, osection->sh_info);
b7afb1
diff -rup binutils.orig/bfd/elfcode.h binutils-2.35/bfd/elfcode.h
b7afb1
--- binutils.orig/bfd/elfcode.h	2021-06-23 15:00:33.910477344 +0100
b7afb1
+++ binutils-2.35/bfd/elfcode.h	2021-06-23 15:04:32.506902070 +0100
b7afb1
@@ -987,7 +987,8 @@ elf_write_relocs (bfd *abfd, asection *s
b7afb1
       (*swap_out) (abfd, &src_rela, dst_rela);
b7afb1
     }
b7afb1
 
b7afb1
-  if (!bed->write_secondary_relocs (abfd, sec))
b7afb1
+  if (elf_section_data (sec)->has_secondary_relocs
b7afb1
+      && !bed->write_secondary_relocs (abfd, sec))
b7afb1
     {
b7afb1
       *failedp = TRUE;
b7afb1
       return;