Blame SOURCES/binutils-aarch64-STO_AARCH64_VARIANT_PCS.patch

0c74e2
diff -rup binutils.orig/bfd/elfnn-aarch64.c binutils-2.32/bfd/elfnn-aarch64.c
0c74e2
--- binutils.orig/bfd/elfnn-aarch64.c	2019-07-02 17:30:19.407892712 +0100
0c74e2
+++ binutils-2.32/bfd/elfnn-aarch64.c	2019-07-02 17:35:21.874749884 +0100
0c74e2
@@ -2579,6 +2579,9 @@ struct elf_aarch64_link_hash_table
0c74e2
   unsigned int top_index;
0c74e2
   asection **input_list;
0c74e2
 
0c74e2
+  /* JUMP_SLOT relocs for variant PCS symbols may be present.  */
0c74e2
+  int variant_pcs;
0c74e2
+
0c74e2
   /* The offset into splt of the PLT entry for the TLS descriptor
0c74e2
      resolver.  Special values are 0, if not necessary (or not found
0c74e2
      to be necessary yet), and -1 if needed but not determined
0c74e2
@@ -2790,6 +2793,31 @@ elfNN_aarch64_copy_indirect_symbol (stru
0c74e2
   _bfd_elf_link_hash_copy_indirect (info, dir, ind);
0c74e2
 }
0c74e2
 
0c74e2
+/* Merge non-visibility st_other attributes.  */
0c74e2
+
0c74e2
+static void
0c74e2
+elfNN_aarch64_merge_symbol_attribute (struct elf_link_hash_entry *h,
0c74e2
+				      const Elf_Internal_Sym *isym,
0c74e2
+				      bfd_boolean definition ATTRIBUTE_UNUSED,
0c74e2
+				      bfd_boolean dynamic ATTRIBUTE_UNUSED)
0c74e2
+{
0c74e2
+  unsigned int isym_sto = isym->st_other & ~ELF_ST_VISIBILITY (-1);
0c74e2
+  unsigned int h_sto = h->other & ~ELF_ST_VISIBILITY (-1);
0c74e2
+
0c74e2
+  if (isym_sto == h_sto)
0c74e2
+    return;
0c74e2
+
0c74e2
+  if (isym_sto & ~STO_AARCH64_VARIANT_PCS)
0c74e2
+    /* Not fatal, this callback cannot fail.  */
0c74e2
+    _bfd_error_handler (_("unknown attribute for symbol `%s': 0x%02x"),
0c74e2
+			h->root.root.string, isym_sto);
0c74e2
+
0c74e2
+  /* Note: Ideally we would warn about any attribute mismatch, but
0c74e2
+     this api does not allow that without substantial changes.  */
0c74e2
+  if (isym_sto & STO_AARCH64_VARIANT_PCS)
0c74e2
+    h->other |= STO_AARCH64_VARIANT_PCS;
0c74e2
+}
0c74e2
+
0c74e2
 /* Destroy an AArch64 elf linker hash table.  */
0c74e2
 
0c74e2
 static void
0c74e2
@@ -8370,6 +8398,12 @@ elfNN_aarch64_allocate_dynrelocs (struct
0c74e2
 	     updated.  */
0c74e2
 
0c74e2
 	  htab->root.srelplt->reloc_count++;
0c74e2
+
0c74e2
+	  /* Mark the DSO in case R_<CLS>_JUMP_SLOT relocs against
0c74e2
+	     variant PCS symbols are present.  */
0c74e2
+	  if (h->other & STO_AARCH64_VARIANT_PCS)
0c74e2
+	    htab->variant_pcs = 1;
0c74e2
+
0c74e2
 	}
0c74e2
       else
0c74e2
 	{
0c74e2
@@ -8958,6 +8992,10 @@ elfNN_aarch64_size_dynamic_sections (bfd
0c74e2
 	      || !add_dynamic_entry (DT_JMPREL, 0))
0c74e2
 	    return FALSE;
0c74e2
 
0c74e2
+	  if (htab->variant_pcs
0c74e2
+	      && !add_dynamic_entry (DT_AARCH64_VARIANT_PCS, 0))
0c74e2
+	    return FALSE;
0c74e2
+
0c74e2
 	  if (htab->tlsdesc_plt
0c74e2
 	      && (!add_dynamic_entry (DT_TLSDESC_PLT, 0)
0c74e2
 		  || !add_dynamic_entry (DT_TLSDESC_GOT, 0)))
0c74e2
@@ -9708,6 +9746,9 @@ const struct elf_size_info elfNN_aarch64
0c74e2
 #define elf_backend_copy_indirect_symbol	\
0c74e2
   elfNN_aarch64_copy_indirect_symbol
0c74e2
 
0c74e2
+#define elf_backend_merge_symbol_attribute	\
0c74e2
+  elfNN_aarch64_merge_symbol_attribute
0c74e2
+
0c74e2
 /* Create .dynbss, and .rela.bss sections in DYNOBJ, and set up shortcuts
0c74e2
    to them in our hash.  */
0c74e2
 #define elf_backend_create_dynamic_sections	\
0c74e2
diff -rup binutils.orig/binutils/readelf.c binutils-2.32/binutils/readelf.c
0c74e2
--- binutils.orig/binutils/readelf.c	2019-07-02 17:30:18.890896375 +0100
0c74e2
+++ binutils-2.32/binutils/readelf.c	2019-07-02 17:32:25.008002901 +0100
0c74e2
@@ -1797,6 +1797,19 @@ dump_relocations (Filedata *          fi
0c74e2
 }
0c74e2
 
0c74e2
 static const char *
0c74e2
+get_aarch64_dynamic_type (unsigned long type)
0c74e2
+{
0c74e2
+  switch (type)
0c74e2
+    {
0c74e2
+    case DT_AARCH64_BTI_PLT:  return "AARCH64_BTI_PLT";
0c74e2
+    case DT_AARCH64_PAC_PLT:  return "AARCH64_PAC_PLT";
0c74e2
+    case DT_AARCH64_VARIANT_PCS:  return "AARCH64_VARIANT_PCS";
0c74e2
+    default:
0c74e2
+      return NULL;
0c74e2
+    }
0c74e2
+}
0c74e2
+
0c74e2
+static const char *
0c74e2
 get_mips_dynamic_type (unsigned long type)
0c74e2
 {
0c74e2
   switch (type)
0c74e2
@@ -2169,6 +2182,9 @@ get_dynamic_type (Filedata * filedata, u
0c74e2
 
0c74e2
 	  switch (filedata->file_header.e_machine)
0c74e2
 	    {
0c74e2
+	    case EM_AARCH64:
0c74e2
+	      result = get_aarch64_dynamic_type (type);
0c74e2
+	      break;
0c74e2
 	    case EM_MIPS:
0c74e2
 	    case EM_MIPS_RS3_LE:
0c74e2
 	      result = get_mips_dynamic_type (type);
0c74e2
@@ -11054,6 +11070,22 @@ get_solaris_symbol_visibility (unsigned
0c74e2
 }
0c74e2
 
0c74e2
 static const char *
0c74e2
+get_aarch64_symbol_other (unsigned int other)
0c74e2
+{
0c74e2
+  static char buf[32];
0c74e2
+
0c74e2
+  if (other & STO_AARCH64_VARIANT_PCS)
0c74e2
+    {
0c74e2
+      other &= ~STO_AARCH64_VARIANT_PCS;
0c74e2
+      if (other == 0)
0c74e2
+	return "VARIANT_PCS";
0c74e2
+      snprintf (buf, sizeof buf, "VARIANT_PCS | %x", other);
0c74e2
+      return buf;
0c74e2
+    }
0c74e2
+  return NULL;
0c74e2
+}
0c74e2
+
0c74e2
+static const char *
0c74e2
 get_mips_symbol_other (unsigned int other)
0c74e2
 {
0c74e2
   switch (other)
0c74e2
@@ -11164,6 +11196,9 @@ get_symbol_other (Filedata * filedata, u
0c74e2
 
0c74e2
   switch (filedata->file_header.e_machine)
0c74e2
     {
0c74e2
+    case EM_AARCH64:
0c74e2
+      result = get_aarch64_symbol_other (other);
0c74e2
+      break;
0c74e2
     case EM_MIPS:
0c74e2
       result = get_mips_symbol_other (other);
0c74e2
       break;
0c74e2
diff -rup binutils.orig/gas/config/tc-aarch64.c binutils-2.32/gas/config/tc-aarch64.c
0c74e2
--- binutils.orig/gas/config/tc-aarch64.c	2019-07-02 17:30:19.131894667 +0100
0c74e2
+++ binutils-2.32/gas/config/tc-aarch64.c	2019-07-02 17:35:45.202584620 +0100
0c74e2
@@ -1938,6 +1938,28 @@ s_aarch64_elf_cons (int nbytes)
0c74e2
   demand_empty_rest_of_line ();
0c74e2
 }
0c74e2
 
0c74e2
+/* Mark symbol that it follows a variant PCS convention.  */
0c74e2
+
0c74e2
+static void
0c74e2
+s_variant_pcs (int ignored ATTRIBUTE_UNUSED)
0c74e2
+{
0c74e2
+  char *name;
0c74e2
+  char c;
0c74e2
+  symbolS *sym;
0c74e2
+  asymbol *bfdsym;
0c74e2
+  elf_symbol_type *elfsym;
0c74e2
+
0c74e2
+  c = get_symbol_name (&name);
0c74e2
+  if (!*name)
0c74e2
+    as_bad (_("Missing symbol name in directive"));
0c74e2
+  sym = symbol_find_or_make (name);
0c74e2
+  restore_line_pointer (c);
0c74e2
+  demand_empty_rest_of_line ();
0c74e2
+  bfdsym = symbol_get_bfdsym (sym);
0c74e2
+  elfsym = elf_symbol_from (bfd_asymbol_bfd (bfdsym), bfdsym);
0c74e2
+  gas_assert (elfsym);
0c74e2
+  elfsym->internal_elf_sym.st_other |= STO_AARCH64_VARIANT_PCS;
0c74e2
+}
0c74e2
 #endif /* OBJ_ELF */
0c74e2
 
0c74e2
 /* Output a 32-bit word, but mark as an instruction.  */
0c74e2
@@ -2084,6 +2106,7 @@ const pseudo_typeS md_pseudo_table[] = {
0c74e2
   {"long", s_aarch64_elf_cons, 4},
0c74e2
   {"xword", s_aarch64_elf_cons, 8},
0c74e2
   {"dword", s_aarch64_elf_cons, 8},
0c74e2
+  {"variant_pcs", s_variant_pcs, 0},
0c74e2
 #endif
0c74e2
   {0, 0, 0}
0c74e2
 };
0c74e2
@@ -9320,3 +9343,35 @@ aarch64_copy_symbol_attributes (symbolS
0c74e2
 {
0c74e2
   AARCH64_GET_FLAG (dest) = AARCH64_GET_FLAG (src);
0c74e2
 }
0c74e2
+
0c74e2
+#ifdef OBJ_ELF
0c74e2
+/* Same as elf_copy_symbol_attributes, but without copying st_other.
0c74e2
+   This is needed so AArch64 specific st_other values can be independently
0c74e2
+   specified for an IFUNC resolver (that is called by the dynamic linker)
0c74e2
+   and the symbol it resolves (aliased to the resolver).  In particular,
0c74e2
+   if a function symbol has special st_other value set via directives,
0c74e2
+   then attaching an IFUNC resolver to that symbol should not override
0c74e2
+   the st_other setting.  Requiring the directive on the IFUNC resolver
0c74e2
+   symbol would be unexpected and problematic in C code, where the two
0c74e2
+   symbols appear as two independent function declarations.  */
0c74e2
+
0c74e2
+void
0c74e2
+aarch64_elf_copy_symbol_attributes (symbolS *dest, symbolS *src)
0c74e2
+{
0c74e2
+  struct elf_obj_sy *srcelf = symbol_get_obj (src);
0c74e2
+  struct elf_obj_sy *destelf = symbol_get_obj (dest);
0c74e2
+  if (srcelf->size)
0c74e2
+    {
0c74e2
+      if (destelf->size == NULL)
0c74e2
+	destelf->size = XNEW (expressionS);
0c74e2
+      *destelf->size = *srcelf->size;
0c74e2
+    }
0c74e2
+  else
0c74e2
+    {
0c74e2
+      if (destelf->size != NULL)
0c74e2
+	free (destelf->size);
0c74e2
+      destelf->size = NULL;
0c74e2
+    }
0c74e2
+  S_SET_SIZE (dest, S_GET_SIZE (src));
0c74e2
+}
0c74e2
+#endif
0c74e2
diff -rup binutils.orig/gas/config/tc-aarch64.h binutils-2.32/gas/config/tc-aarch64.h
0c74e2
--- binutils.orig/gas/config/tc-aarch64.h	2019-07-02 17:30:19.136894632 +0100
0c74e2
+++ binutils-2.32/gas/config/tc-aarch64.h	2019-07-02 17:35:45.202584620 +0100
0c74e2
@@ -130,6 +130,12 @@ void aarch64_copy_symbol_attributes (sym
0c74e2
   (aarch64_copy_symbol_attributes (DEST, SRC))
0c74e2
 #endif
0c74e2
 
0c74e2
+#ifdef OBJ_ELF
0c74e2
+void aarch64_elf_copy_symbol_attributes (symbolS *, symbolS *);
0c74e2
+#define OBJ_COPY_SYMBOL_ATTRIBUTES(DEST, SRC) \
0c74e2
+  aarch64_elf_copy_symbol_attributes (DEST, SRC)
0c74e2
+#endif
0c74e2
+
0c74e2
 #define TC_START_LABEL(STR, NUL_CHAR, NEXT_CHAR)			\
0c74e2
   (NEXT_CHAR == ':' || (NEXT_CHAR == '/' && aarch64_data_in_code ()))
0c74e2
 #define tc_canonicalize_symbol_name(str) aarch64_canonicalize_symbol_name (str);
0c74e2
diff -rup binutils.orig/gas/doc/c-aarch64.texi binutils-2.32/gas/doc/c-aarch64.texi
0c74e2
--- binutils.orig/gas/doc/c-aarch64.texi	2019-07-02 17:30:19.125894710 +0100
0c74e2
+++ binutils-2.32/gas/doc/c-aarch64.texi	2019-07-02 17:35:11.362824354 +0100
0c74e2
@@ -425,6 +425,12 @@ should only be done if it is really nece
0c74e2
 
0c74e2
 @c VVVVVVVVVVVVVVVVVVVVVVVVVV
0c74e2
 
0c74e2
+@cindex @code{.variant_pcs} directive, AArch64
0c74e2
+@item .variant_pcs @var{symbol}
0c74e2
+This directive marks @var{symbol} referencing a function that may
0c74e2
+follow a variant procedure call standard with different register
0c74e2
+usage convention from the base procedure call standard.
0c74e2
+
0c74e2
 @c WWWWWWWWWWWWWWWWWWWWWWWWWW
0c74e2
 @c XXXXXXXXXXXXXXXXXXXXXXXXXX
0c74e2
 
0c74e2
diff -rup binutils.orig/include/elf/aarch64.h binutils-2.32/include/elf/aarch64.h
0c74e2
--- binutils.orig/include/elf/aarch64.h	2019-07-02 17:30:18.850896658 +0100
0c74e2
+++ binutils-2.32/include/elf/aarch64.h	2019-07-02 17:32:55.678785616 +0100
0c74e2
@@ -36,6 +36,15 @@
0c74e2
 #define SHF_COMDEF		0x80000000   /* Section may be multiply defined
0c74e2
 						in the input to a link step.  */
0c74e2
 
0c74e2
+/* Processor specific dynamic array tags.  */
0c74e2
+#define DT_AARCH64_BTI_PLT	(DT_LOPROC + 1)
0c74e2
+#define DT_AARCH64_PAC_PLT	(DT_LOPROC + 3)
0c74e2
+#define DT_AARCH64_VARIANT_PCS	(DT_LOPROC + 5)
0c74e2
+
0c74e2
+/* AArch64-specific values for st_other.  */
0c74e2
+#define STO_AARCH64_VARIANT_PCS	0x80  /* Symbol may follow different call
0c74e2
+					 convention from the base PCS.  */
0c74e2
+
0c74e2
 /* Relocation types.  */
0c74e2
 
0c74e2
 START_RELOC_NUMBERS (elf_aarch64_reloc_type)
0c74e2
diff -rup binutils.orig/ld/testsuite/ld-aarch64/aarch64-elf.exp binutils-2.32/ld/testsuite/ld-aarch64/aarch64-elf.exp
0c74e2
--- binutils.orig/ld/testsuite/ld-aarch64/aarch64-elf.exp	2019-07-02 17:30:18.922896148 +0100
0c74e2
+++ binutils-2.32/ld/testsuite/ld-aarch64/aarch64-elf.exp	2019-07-02 17:35:21.875749878 +0100
0c74e2
@@ -371,6 +371,10 @@ run_dump_test_lp64 "rela-abs-relative-op
0c74e2
 
0c74e2
 run_dump_test_lp64 "pie-bind-locally"
0c74e2
 
0c74e2
+run_dump_test_lp64 "variant_pcs-r"
0c74e2
+run_dump_test_lp64 "variant_pcs-shared"
0c74e2
+run_dump_test_lp64 "variant_pcs-now"
0c74e2
+
0c74e2
 set aarch64elflinktests {
0c74e2
   {"ld-aarch64/so with global symbol" "-shared" "" "" {copy-reloc-so.s}
0c74e2
     {} "copy-reloc-so.so"}
0c74e2
--- /dev/null	2019-07-02 08:01:33.386842704 +0100
0c74e2
+++ binutils-2.32/gas/testsuite/gas/aarch64/symbol-variant_pcs-1.d	2019-07-02 17:35:11.362824354 +0100
0c74e2
@@ -0,0 +1,10 @@
0c74e2
+#objdump: -t
0c74e2
+
0c74e2
+.*:     file format .*
0c74e2
+
0c74e2
+SYMBOL TABLE:
0c74e2
+0+ l    d  \.text	0+ \.text
0c74e2
+0+ l    d  \.data	0+ \.data
0c74e2
+0+ l    d  \.bss	0+ \.bss
0c74e2
+0+ l       \.text	0+ func
0c74e2
+0+         \*UND\*	0+ 0x80 foobar
0c74e2
--- /dev/null	2019-07-02 08:01:33.386842704 +0100
0c74e2
+++ binutils-2.32/gas/testsuite/gas/aarch64/symbol-variant_pcs-1.s	2019-07-02 17:35:11.362824354 +0100
0c74e2
@@ -0,0 +1,8 @@
0c74e2
+.text
0c74e2
+.variant_pcs foobar
0c74e2
+func:
0c74e2
+	bl	foobar
0c74e2
+	b	foobar
0c74e2
+
0c74e2
+.data
0c74e2
+.xword	foobar
0c74e2
--- /dev/null	2019-07-02 08:01:33.386842704 +0100
0c74e2
+++ binutils-2.32/gas/testsuite/gas/aarch64/symbol-variant_pcs-2.d	2019-07-02 17:35:11.362824354 +0100
0c74e2
@@ -0,0 +1,9 @@
0c74e2
+#objdump: -t
0c74e2
+
0c74e2
+.*:     file format .*
0c74e2
+
0c74e2
+SYMBOL TABLE:
0c74e2
+0+ l    d  \.text	0+ \.text
0c74e2
+0+ l    d  \.data	0+ \.data
0c74e2
+0+ l    d  \.bss	0+ \.bss
0c74e2
+0+ l       \.text	0+ 0x80 foo
0c74e2
--- /dev/null	2019-07-02 08:01:33.386842704 +0100
0c74e2
+++ binutils-2.32/gas/testsuite/gas/aarch64/symbol-variant_pcs-2.s	2019-07-02 17:35:11.362824354 +0100
0c74e2
@@ -0,0 +1,4 @@
0c74e2
+.text
0c74e2
+.variant_pcs foo
0c74e2
+foo:
0c74e2
+	ret
0c74e2
--- /dev/null	2019-07-02 08:01:33.386842704 +0100
0c74e2
+++ binutils-2.32/gas/testsuite/gas/aarch64/symbol-variant_pcs-3.s	2019-07-02 17:35:45.202584620 +0100
0c74e2
@@ -0,0 +1,20 @@
0c74e2
+.text
0c74e2
+.global foo_vpcs
0c74e2
+.global foo_base
0c74e2
+.global alias_vpcs
0c74e2
+.global alias_base
0c74e2
+
0c74e2
+.variant_pcs foo_vpcs
0c74e2
+.variant_pcs alias_vpcs
0c74e2
+
0c74e2
+foo_vpcs:
0c74e2
+foo_base:
0c74e2
+	bl foo_vpcs
0c74e2
+	bl foo_base
0c74e2
+	bl alias_vpcs
0c74e2
+	bl alias_base
0c74e2
+
0c74e2
+/* Check that the STO_AARCH64_VARIANT_PCS is not affected by .set.  */
0c74e2
+
0c74e2
+.set alias_base, foo_vpcs
0c74e2
+.set alias_vpcs, foo_base
0c74e2
--- /dev/null	2019-07-02 08:01:33.386842704 +0100
0c74e2
+++ binutils-2.32/gas/testsuite/gas/aarch64/symbol-variant_pcs-3.d	2019-07-02 17:35:45.202584620 +0100
0c74e2
@@ -0,0 +1,12 @@
0c74e2
+#objdump: -t
0c74e2
+
0c74e2
+.*:     file format .*
0c74e2
+
0c74e2
+SYMBOL TABLE:
0c74e2
+0+ l    d  \.text	0+ \.text
0c74e2
+0+ l    d  \.data	0+ \.data
0c74e2
+0+ l    d  \.bss	0+ \.bss
0c74e2
+0+ g       \.text	0+ 0x80 foo_vpcs
0c74e2
+0+ g       \.text	0+ foo_base
0c74e2
+0+ g       \.text	0+ 0x80 alias_vpcs
0c74e2
+0+ g       \.text	0+ alias_base
0c74e2
--- /dev/null	2019-07-02 08:01:33.386842704 +0100
0c74e2
+++ binutils-2.32/ld/testsuite/ld-aarch64/variant_pcs-1.s	2019-07-02 17:35:21.875749878 +0100
0c74e2
@@ -0,0 +1,59 @@
0c74e2
+.text
0c74e2
+
0c74e2
+.variant_pcs f_spec_global_default_def
0c74e2
+.variant_pcs f_spec_global_default_undef
0c74e2
+.variant_pcs f_spec_global_hidden_def
0c74e2
+.variant_pcs f_spec_local
0c74e2
+.variant_pcs f_spec_global_default_ifunc
0c74e2
+.variant_pcs f_spec_global_hidden_ifunc
0c74e2
+.variant_pcs f_spec_local_ifunc
0c74e2
+
0c74e2
+.global f_spec_global_default_def
0c74e2
+.global f_spec_global_default_undef
0c74e2
+.global f_spec_global_hidden_def
0c74e2
+.global f_spec_global_default_ifunc
0c74e2
+.global f_spec_global_hidden_ifunc
0c74e2
+.global f_base_global_default_def
0c74e2
+.global f_base_global_default_undef
0c74e2
+.global f_base_global_hidden_def
0c74e2
+.global f_base_global_default_ifunc
0c74e2
+.global f_base_global_hidden_ifunc
0c74e2
+
0c74e2
+.hidden f_spec_global_hidden_def
0c74e2
+.hidden f_spec_global_hidden_ifunc
0c74e2
+.hidden f_base_global_hidden_def
0c74e2
+.hidden f_base_global_hidden_ifunc
0c74e2
+
0c74e2
+.type f_spec_global_default_ifunc, %gnu_indirect_function
0c74e2
+.type f_spec_global_hidden_ifunc, %gnu_indirect_function
0c74e2
+.type f_spec_local_ifunc, %gnu_indirect_function
0c74e2
+.type f_base_global_default_ifunc, %gnu_indirect_function
0c74e2
+.type f_base_global_hidden_ifunc, %gnu_indirect_function
0c74e2
+.type f_base_local_ifunc, %gnu_indirect_function
0c74e2
+
0c74e2
+f_spec_global_default_def:
0c74e2
+f_spec_global_hidden_def:
0c74e2
+f_spec_local:
0c74e2
+f_base_global_default_def:
0c74e2
+f_base_global_hidden_def:
0c74e2
+f_base_local:
0c74e2
+f_spec_global_default_ifunc:
0c74e2
+f_spec_global_hidden_ifunc:
0c74e2
+f_spec_local_ifunc:
0c74e2
+f_base_global_default_ifunc:
0c74e2
+f_base_global_hidden_ifunc:
0c74e2
+f_base_local_ifunc:
0c74e2
+	bl f_spec_global_default_def
0c74e2
+	bl f_spec_global_default_undef
0c74e2
+	bl f_spec_global_hidden_def
0c74e2
+	bl f_spec_local
0c74e2
+	bl f_base_global_default_def
0c74e2
+	bl f_base_global_default_undef
0c74e2
+	bl f_base_global_hidden_def
0c74e2
+	bl f_base_local
0c74e2
+	bl f_spec_global_default_ifunc
0c74e2
+	bl f_spec_global_hidden_ifunc
0c74e2
+	bl f_spec_local_ifunc
0c74e2
+	bl f_base_global_default_ifunc
0c74e2
+	bl f_base_global_hidden_ifunc
0c74e2
+	bl f_base_local_ifunc
0c74e2
--- /dev/null	2019-07-02 08:01:33.386842704 +0100
0c74e2
+++ binutils-2.32/ld/testsuite/ld-aarch64/variant_pcs-2.s	2019-07-02 17:35:21.875749878 +0100
0c74e2
@@ -0,0 +1,47 @@
0c74e2
+.text
0c74e2
+
0c74e2
+.variant_pcs f_spec_global_default_def
0c74e2
+.variant_pcs f_spec_global_default_undef
0c74e2
+.variant_pcs f_spec_global_hidden_def
0c74e2
+.variant_pcs f_spec_local2
0c74e2
+.variant_pcs f_spec_global_default_ifunc
0c74e2
+.variant_pcs f_spec_global_hidden_ifunc
0c74e2
+.variant_pcs f_spec_local2_ifunc
0c74e2
+
0c74e2
+.global f_spec_global_default_def
0c74e2
+.global f_spec_global_default_undef
0c74e2
+.global f_spec_global_hidden_def
0c74e2
+.global f_spec_global_default_ifunc
0c74e2
+.global f_spec_global_hidden_ifunc
0c74e2
+.global f_base_global_default_def
0c74e2
+.global f_base_global_default_undef
0c74e2
+.global f_base_global_hidden_def
0c74e2
+.global f_base_global_default_ifunc
0c74e2
+.global f_base_global_hidden_ifunc
0c74e2
+
0c74e2
+.hidden f_spec_global_hidden_def
0c74e2
+.hidden f_spec_global_hidden_ifunc
0c74e2
+.hidden f_base_global_hidden_def
0c74e2
+.hidden f_base_global_hidden_ifunc
0c74e2
+
0c74e2
+.type f_spec_local2_ifunc, %gnu_indirect_function
0c74e2
+.type f_base_local2_ifunc, %gnu_indirect_function
0c74e2
+
0c74e2
+f_spec_local2:
0c74e2
+f_base_local2:
0c74e2
+f_spec_local2_ifunc:
0c74e2
+f_base_local2_ifunc:
0c74e2
+	bl f_spec_global_default_def
0c74e2
+	bl f_spec_global_default_undef
0c74e2
+	bl f_spec_global_hidden_def
0c74e2
+	bl f_spec_local2
0c74e2
+	bl f_base_global_default_def
0c74e2
+	bl f_base_global_default_undef
0c74e2
+	bl f_base_global_hidden_def
0c74e2
+	bl f_base_local2
0c74e2
+	bl f_spec_global_default_ifunc
0c74e2
+	bl f_spec_global_hidden_ifunc
0c74e2
+	bl f_spec_local2_ifunc
0c74e2
+	bl f_base_global_default_ifunc
0c74e2
+	bl f_base_global_hidden_ifunc
0c74e2
+	bl f_base_local2_ifunc
0c74e2
--- /dev/null	2019-07-02 08:01:33.386842704 +0100
0c74e2
+++ binutils-2.32/ld/testsuite/ld-aarch64/variant_pcs.ld	2019-07-02 17:35:37.100642017 +0100
0c74e2
@@ -0,0 +1,23 @@
0c74e2
+/* Script for .variant_pcs symbol tests.  */
0c74e2
+OUTPUT_ARCH(aarch64)
0c74e2
+ENTRY(_start)
0c74e2
+SECTIONS
0c74e2
+{
0c74e2
+  /* Read-only sections, merged into text segment: */
0c74e2
+  PROVIDE (__executable_start = 0x8000); . = 0x8000;
0c74e2
+  .text           :
0c74e2
+  {
0c74e2
+    *(.before)
0c74e2
+    *(.text)
0c74e2
+    *(.after)
0c74e2
+  } =0
0c74e2
+  . = 0x9000;
0c74e2
+  .got            : { *(.got) *(.got.plt)}
0c74e2
+  . = 0x10000;
0c74e2
+  .rela.dyn       : { *(.rela.ifunc) }
0c74e2
+  . = 0x11000;
0c74e2
+  .rela.plt       : { *(.rela.plt) *(.rela.iplt) }
0c74e2
+  . = 0x12340000;
0c74e2
+  .far : { *(.far) }
0c74e2
+  .ARM.attributes 0 : { *(.ARM.atttributes) }
0c74e2
+}
0c74e2
--- /dev/null	2019-07-02 08:01:33.386842704 +0100
0c74e2
+++ binutils-2.32/ld/testsuite/ld-aarch64/variant_pcs-now.d	2019-07-02 17:34:37.557063849 +0100
0c74e2
@@ -0,0 +1,67 @@
0c74e2
+#source: variant_pcs-1.s
0c74e2
+#source: variant_pcs-2.s
0c74e2
+#ld: -shared --hash-style=sysv -T variant_pcs.ld -z now
0c74e2
+#readelf: -rsW
0c74e2
+
0c74e2
+Relocation section '\.rela\.plt' at offset 0x11000 contains 12 entries:
0c74e2
+    Offset             Info             Type               Symbol's Value  Symbol's Name \+ Addend
0c74e2
+0000000000009020  0000000100000402 R_AARCH64_JUMP_SLOT    0000000000000000 f_base_global_default_undef \+ 0
0c74e2
+0000000000009028  0000000200000402 R_AARCH64_JUMP_SLOT    0000000000000000 f_spec_global_default_undef \+ 0
0c74e2
+0000000000009030  0000000400000402 R_AARCH64_JUMP_SLOT    0000000000008000 f_base_global_default_def \+ 0
0c74e2
+0000000000009038  0000000500000402 R_AARCH64_JUMP_SLOT    0000000000008000 f_spec_global_default_def \+ 0
0c74e2
+0000000000009040  0000000000000408 R_AARCH64_IRELATIVE                       8000
0c74e2
+0000000000009048  0000000300000402 R_AARCH64_JUMP_SLOT    f_spec_global_default_ifunc\(\) f_spec_global_default_ifunc \+ 0
0c74e2
+0000000000009050  0000000000000408 R_AARCH64_IRELATIVE                       8000
0c74e2
+0000000000009058  0000000600000402 R_AARCH64_JUMP_SLOT    f_base_global_default_ifunc\(\) f_base_global_default_ifunc \+ 0
0c74e2
+0000000000009060  0000000000000408 R_AARCH64_IRELATIVE                       8038
0c74e2
+0000000000009068  0000000000000408 R_AARCH64_IRELATIVE                       8000
0c74e2
+0000000000009070  0000000000000408 R_AARCH64_IRELATIVE                       8000
0c74e2
+0000000000009078  0000000000000408 R_AARCH64_IRELATIVE                       8038
0c74e2
+
0c74e2
+Symbol table '\.dynsym' contains 7 entries:
0c74e2
+   Num:    Value          Size Type    Bind   Vis      Ndx Name
0c74e2
+     0: 0000000000000000     0 NOTYPE  LOCAL  DEFAULT  UND 
0c74e2
+     1: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT  UND f_base_global_default_undef
0c74e2
+     2: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT \[VARIANT_PCS\]   UND f_spec_global_default_undef
0c74e2
+     3: 0000000000008000     0 IFUNC   GLOBAL DEFAULT \[VARIANT_PCS\]     1 f_spec_global_default_ifunc
0c74e2
+     4: 0000000000008000     0 NOTYPE  GLOBAL DEFAULT    1 f_base_global_default_def
0c74e2
+     5: 0000000000008000     0 NOTYPE  GLOBAL DEFAULT \[VARIANT_PCS\]     1 f_spec_global_default_def
0c74e2
+     6: 0000000000008000     0 IFUNC   GLOBAL DEFAULT    1 f_base_global_default_ifunc
0c74e2
+
0c74e2
+Symbol table '\.symtab' contains 35 entries:
0c74e2
+   Num:    Value          Size Type    Bind   Vis      Ndx Name
0c74e2
+     0: 0000000000000000     0 NOTYPE  LOCAL  DEFAULT  UND 
0c74e2
+     1: 0000000000008000     0 SECTION LOCAL  DEFAULT    1 
0c74e2
+     2: 0000000000008070     0 SECTION LOCAL  DEFAULT    2 
0c74e2
+     3: 0000000000009000     0 SECTION LOCAL  DEFAULT    3 
0c74e2
+     4: 0000000000009080     0 SECTION LOCAL  DEFAULT    4 
0c74e2
+     5: 0000000000011000     0 SECTION LOCAL  DEFAULT    5 
0c74e2
+     6: 0000000000011120     0 SECTION LOCAL  DEFAULT    6 
0c74e2
+     7: 00000000000111c8     0 SECTION LOCAL  DEFAULT    7 
0c74e2
+     8: 0000000000011270     0 SECTION LOCAL  DEFAULT    8 
0c74e2
+     9: 0000000000000000     0 FILE    LOCAL  DEFAULT  ABS .*variant_pcs-1\.o
0c74e2
+    10: 0000000000008000     0 NOTYPE  LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_local
0c74e2
+    11: 0000000000008000     0 IFUNC   LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_local_ifunc
0c74e2
+    12: 0000000000008000     0 IFUNC   LOCAL  DEFAULT    1 f_base_local_ifunc
0c74e2
+    13: 0000000000008000     0 NOTYPE  LOCAL  DEFAULT    1 f_base_local
0c74e2
+    14: 0000000000008000     0 NOTYPE  LOCAL  DEFAULT    1 \$x
0c74e2
+    15: 0000000000000000     0 FILE    LOCAL  DEFAULT  ABS .*variant_pcs-2\.o
0c74e2
+    16: 0000000000008038     0 NOTYPE  LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_local2
0c74e2
+    17: 0000000000008038     0 IFUNC   LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_local2_ifunc
0c74e2
+    18: 0000000000008038     0 IFUNC   LOCAL  DEFAULT    1 f_base_local2_ifunc
0c74e2
+    19: 0000000000008038     0 NOTYPE  LOCAL  DEFAULT    1 f_base_local2
0c74e2
+    20: 0000000000008038     0 NOTYPE  LOCAL  DEFAULT    1 \$x
0c74e2
+    21: 0000000000000000     0 FILE    LOCAL  DEFAULT  ABS 
0c74e2
+    22: 0000000000009080     0 OBJECT  LOCAL  DEFAULT  ABS _DYNAMIC
0c74e2
+    23: 0000000000008000     0 NOTYPE  LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_global_hidden_def
0c74e2
+    24: 0000000000008000     0 IFUNC   LOCAL  DEFAULT    1 f_base_global_hidden_ifunc
0c74e2
+    25: 0000000000008000     0 NOTYPE  LOCAL  DEFAULT    1 f_base_global_hidden_def
0c74e2
+    26: 0000000000009000     0 OBJECT  LOCAL  DEFAULT  ABS _GLOBAL_OFFSET_TABLE_
0c74e2
+    27: 0000000000008000     0 IFUNC   LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_global_hidden_ifunc
0c74e2
+    28: 0000000000008070     0 NOTYPE  LOCAL  DEFAULT    2 \$x
0c74e2
+    29: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT  UND f_base_global_default_undef
0c74e2
+    30: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT \[VARIANT_PCS\]   UND f_spec_global_default_undef
0c74e2
+    31: 0000000000008000     0 IFUNC   GLOBAL DEFAULT \[VARIANT_PCS\]     1 f_spec_global_default_ifunc
0c74e2
+    32: 0000000000008000     0 NOTYPE  GLOBAL DEFAULT    1 f_base_global_default_def
0c74e2
+    33: 0000000000008000     0 NOTYPE  GLOBAL DEFAULT \[VARIANT_PCS\]     1 f_spec_global_default_def
0c74e2
+    34: 0000000000008000     0 IFUNC   GLOBAL DEFAULT    1 f_base_global_default_ifunc
0c74e2
--- /dev/null	2019-07-02 08:01:33.386842704 +0100
0c74e2
+++ binutils-2.32/ld/testsuite/ld-aarch64/variant_pcs-r.d	2019-07-02 17:35:35.244655166 +0100
0c74e2
@@ -0,0 +1,60 @@
0c74e2
+#source: variant_pcs-1.s
0c74e2
+#source: variant_pcs-2.s
0c74e2
+#ld: -r
0c74e2
+#readelf: -rsW
0c74e2
+
0c74e2
+Relocation section '\.rela\.text' at offset .* contains 24 entries:
0c74e2
+    Offset             Info             Type               Symbol's Value  Symbol's Name \+ Addend
0c74e2
+0000000000000000  000000180000011b R_AARCH64_CALL26       0000000000000000 f_spec_global_default_def \+ 0
0c74e2
+0000000000000004  000000110000011b R_AARCH64_CALL26       0000000000000000 f_spec_global_default_undef \+ 0
0c74e2
+0000000000000008  000000120000011b R_AARCH64_CALL26       0000000000000000 f_spec_global_hidden_def \+ 0
0c74e2
+0000000000000010  000000170000011b R_AARCH64_CALL26       0000000000000000 f_base_global_default_def \+ 0
0c74e2
+0000000000000014  000000100000011b R_AARCH64_CALL26       0000000000000000 f_base_global_default_undef \+ 0
0c74e2
+0000000000000018  000000150000011b R_AARCH64_CALL26       0000000000000000 f_base_global_hidden_def \+ 0
0c74e2
+0000000000000020  000000140000011b R_AARCH64_CALL26       f_spec_global_default_ifunc\(\) f_spec_global_default_ifunc \+ 0
0c74e2
+0000000000000024  000000160000011b R_AARCH64_CALL26       f_spec_global_hidden_ifunc\(\) f_spec_global_hidden_ifunc \+ 0
0c74e2
+0000000000000028  000000060000011b R_AARCH64_CALL26       f_spec_local_ifunc\(\) f_spec_local_ifunc \+ 0
0c74e2
+000000000000002c  000000190000011b R_AARCH64_CALL26       f_base_global_default_ifunc\(\) f_base_global_default_ifunc \+ 0
0c74e2
+0000000000000030  000000130000011b R_AARCH64_CALL26       f_base_global_hidden_ifunc\(\) f_base_global_hidden_ifunc \+ 0
0c74e2
+0000000000000034  000000070000011b R_AARCH64_CALL26       f_base_local_ifunc\(\) f_base_local_ifunc \+ 0
0c74e2
+0000000000000038  000000180000011b R_AARCH64_CALL26       0000000000000000 f_spec_global_default_def \+ 0
0c74e2
+000000000000003c  000000110000011b R_AARCH64_CALL26       0000000000000000 f_spec_global_default_undef \+ 0
0c74e2
+0000000000000040  000000120000011b R_AARCH64_CALL26       0000000000000000 f_spec_global_hidden_def \+ 0
0c74e2
+0000000000000048  000000170000011b R_AARCH64_CALL26       0000000000000000 f_base_global_default_def \+ 0
0c74e2
+000000000000004c  000000100000011b R_AARCH64_CALL26       0000000000000000 f_base_global_default_undef \+ 0
0c74e2
+0000000000000050  000000150000011b R_AARCH64_CALL26       0000000000000000 f_base_global_hidden_def \+ 0
0c74e2
+0000000000000058  000000140000011b R_AARCH64_CALL26       f_spec_global_default_ifunc\(\) f_spec_global_default_ifunc \+ 0
0c74e2
+000000000000005c  000000160000011b R_AARCH64_CALL26       f_spec_global_hidden_ifunc\(\) f_spec_global_hidden_ifunc \+ 0
0c74e2
+0000000000000060  0000000c0000011b R_AARCH64_CALL26       f_spec_local2_ifunc\(\) f_spec_local2_ifunc \+ 0
0c74e2
+0000000000000064  000000190000011b R_AARCH64_CALL26       f_base_global_default_ifunc\(\) f_base_global_default_ifunc \+ 0
0c74e2
+0000000000000068  000000130000011b R_AARCH64_CALL26       f_base_global_hidden_ifunc\(\) f_base_global_hidden_ifunc \+ 0
0c74e2
+000000000000006c  0000000d0000011b R_AARCH64_CALL26       f_base_local2_ifunc\(\) f_base_local2_ifunc \+ 0
0c74e2
+
0c74e2
+Symbol table '\.symtab' contains 26 entries:
0c74e2
+   Num:    Value          Size Type    Bind   Vis      Ndx Name
0c74e2
+     0: 0000000000000000     0 NOTYPE  LOCAL  DEFAULT  UND 
0c74e2
+     1: 0000000000000000     0 SECTION LOCAL  DEFAULT    1 
0c74e2
+     2: 0000000000000000     0 SECTION LOCAL  DEFAULT    3 
0c74e2
+     3: 0000000000000000     0 SECTION LOCAL  DEFAULT    4 
0c74e2
+     4: 0000000000000000     0 FILE    LOCAL  DEFAULT  ABS .*variant_pcs-1\.o
0c74e2
+     5: 0000000000000000     0 NOTYPE  LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_local
0c74e2
+     6: 0000000000000000     0 IFUNC   LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_local_ifunc
0c74e2
+     7: 0000000000000000     0 IFUNC   LOCAL  DEFAULT    1 f_base_local_ifunc
0c74e2
+     8: 0000000000000000     0 NOTYPE  LOCAL  DEFAULT    1 f_base_local
0c74e2
+     9: 0000000000000000     0 NOTYPE  LOCAL  DEFAULT    1 \$x
0c74e2
+    10: 0000000000000000     0 FILE    LOCAL  DEFAULT  ABS .*variant_pcs-2\.o
0c74e2
+    11: 0000000000000038     0 NOTYPE  LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_local2
0c74e2
+    12: 0000000000000038     0 IFUNC   LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_local2_ifunc
0c74e2
+    13: 0000000000000038     0 IFUNC   LOCAL  DEFAULT    1 f_base_local2_ifunc
0c74e2
+    14: 0000000000000038     0 NOTYPE  LOCAL  DEFAULT    1 f_base_local2
0c74e2
+    15: 0000000000000038     0 NOTYPE  LOCAL  DEFAULT    1 \$x
0c74e2
+    16: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT  UND f_base_global_default_undef
0c74e2
+    17: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT \[VARIANT_PCS\]   UND f_spec_global_default_undef
0c74e2
+    18: 0000000000000000     0 NOTYPE  GLOBAL HIDDEN  \[VARIANT_PCS\]     1 f_spec_global_hidden_def
0c74e2
+    19: 0000000000000000     0 IFUNC   GLOBAL HIDDEN     1 f_base_global_hidden_ifunc
0c74e2
+    20: 0000000000000000     0 IFUNC   GLOBAL DEFAULT \[VARIANT_PCS\]     1 f_spec_global_default_ifunc
0c74e2
+    21: 0000000000000000     0 NOTYPE  GLOBAL HIDDEN     1 f_base_global_hidden_def
0c74e2
+    22: 0000000000000000     0 IFUNC   GLOBAL HIDDEN  \[VARIANT_PCS\]     1 f_spec_global_hidden_ifunc
0c74e2
+    23: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT    1 f_base_global_default_def
0c74e2
+    24: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT \[VARIANT_PCS\]     1 f_spec_global_default_def
0c74e2
+    25: 0000000000000000     0 IFUNC   GLOBAL DEFAULT    1 f_base_global_default_ifunc
0c74e2
--- /dev/null	2019-07-02 08:01:33.386842704 +0100
0c74e2
+++ binutils-2.32/ld/testsuite/ld-aarch64/variant_pcs-shared.d	2019-07-02 17:34:45.635006622 +0100
0c74e2
@@ -0,0 +1,67 @@
0c74e2
+#source: variant_pcs-1.s
0c74e2
+#source: variant_pcs-2.s
0c74e2
+#ld: -shared --hash-style=sysv -T variant_pcs.ld
0c74e2
+#readelf: -rsW
0c74e2
+
0c74e2
+Relocation section '\.rela\.plt' at offset 0x11000 contains 12 entries:
0c74e2
+    Offset             Info             Type               Symbol's Value  Symbol's Name \+ Addend
0c74e2
+0000000000009020  0000000100000402 R_AARCH64_JUMP_SLOT    0000000000000000 f_base_global_default_undef \+ 0
0c74e2
+0000000000009028  0000000200000402 R_AARCH64_JUMP_SLOT    0000000000000000 f_spec_global_default_undef \+ 0
0c74e2
+0000000000009030  0000000400000402 R_AARCH64_JUMP_SLOT    0000000000008000 f_base_global_default_def \+ 0
0c74e2
+0000000000009038  0000000500000402 R_AARCH64_JUMP_SLOT    0000000000008000 f_spec_global_default_def \+ 0
0c74e2
+0000000000009040  0000000000000408 R_AARCH64_IRELATIVE                       8000
0c74e2
+0000000000009048  0000000300000402 R_AARCH64_JUMP_SLOT    f_spec_global_default_ifunc\(\) f_spec_global_default_ifunc \+ 0
0c74e2
+0000000000009050  0000000000000408 R_AARCH64_IRELATIVE                       8000
0c74e2
+0000000000009058  0000000600000402 R_AARCH64_JUMP_SLOT    f_base_global_default_ifunc\(\) f_base_global_default_ifunc \+ 0
0c74e2
+0000000000009060  0000000000000408 R_AARCH64_IRELATIVE                       8038
0c74e2
+0000000000009068  0000000000000408 R_AARCH64_IRELATIVE                       8000
0c74e2
+0000000000009070  0000000000000408 R_AARCH64_IRELATIVE                       8000
0c74e2
+0000000000009078  0000000000000408 R_AARCH64_IRELATIVE                       8038
0c74e2
+
0c74e2
+Symbol table '\.dynsym' contains 7 entries:
0c74e2
+   Num:    Value          Size Type    Bind   Vis      Ndx Name
0c74e2
+     0: 0000000000000000     0 NOTYPE  LOCAL  DEFAULT  UND 
0c74e2
+     1: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT  UND f_base_global_default_undef
0c74e2
+     2: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT \[VARIANT_PCS\]   UND f_spec_global_default_undef
0c74e2
+     3: 0000000000008000     0 IFUNC   GLOBAL DEFAULT \[VARIANT_PCS\]     1 f_spec_global_default_ifunc
0c74e2
+     4: 0000000000008000     0 NOTYPE  GLOBAL DEFAULT    1 f_base_global_default_def
0c74e2
+     5: 0000000000008000     0 NOTYPE  GLOBAL DEFAULT \[VARIANT_PCS\]     1 f_spec_global_default_def
0c74e2
+     6: 0000000000008000     0 IFUNC   GLOBAL DEFAULT    1 f_base_global_default_ifunc
0c74e2
+
0c74e2
+Symbol table '\.symtab' contains 35 entries:
0c74e2
+   Num:    Value          Size Type    Bind   Vis      Ndx Name
0c74e2
+     0: 0000000000000000     0 NOTYPE  LOCAL  DEFAULT  UND 
0c74e2
+     1: 0000000000008000     0 SECTION LOCAL  DEFAULT    1 
0c74e2
+     2: 0000000000008070     0 SECTION LOCAL  DEFAULT    2 
0c74e2
+     3: 0000000000009000     0 SECTION LOCAL  DEFAULT    3 
0c74e2
+     4: 0000000000009080     0 SECTION LOCAL  DEFAULT    4 
0c74e2
+     5: 0000000000011000     0 SECTION LOCAL  DEFAULT    5 
0c74e2
+     6: 0000000000011120     0 SECTION LOCAL  DEFAULT    6 
0c74e2
+     7: 00000000000111c8     0 SECTION LOCAL  DEFAULT    7 
0c74e2
+     8: 0000000000011270     0 SECTION LOCAL  DEFAULT    8 
0c74e2
+     9: 0000000000000000     0 FILE    LOCAL  DEFAULT  ABS .*variant_pcs-1\.o
0c74e2
+    10: 0000000000008000     0 NOTYPE  LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_local
0c74e2
+    11: 0000000000008000     0 IFUNC   LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_local_ifunc
0c74e2
+    12: 0000000000008000     0 IFUNC   LOCAL  DEFAULT    1 f_base_local_ifunc
0c74e2
+    13: 0000000000008000     0 NOTYPE  LOCAL  DEFAULT    1 f_base_local
0c74e2
+    14: 0000000000008000     0 NOTYPE  LOCAL  DEFAULT    1 \$x
0c74e2
+    15: 0000000000000000     0 FILE    LOCAL  DEFAULT  ABS .*variant_pcs-2\.o
0c74e2
+    16: 0000000000008038     0 NOTYPE  LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_local2
0c74e2
+    17: 0000000000008038     0 IFUNC   LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_local2_ifunc
0c74e2
+    18: 0000000000008038     0 IFUNC   LOCAL  DEFAULT    1 f_base_local2_ifunc
0c74e2
+    19: 0000000000008038     0 NOTYPE  LOCAL  DEFAULT    1 f_base_local2
0c74e2
+    20: 0000000000008038     0 NOTYPE  LOCAL  DEFAULT    1 \$x
0c74e2
+    21: 0000000000000000     0 FILE    LOCAL  DEFAULT  ABS 
0c74e2
+    22: 0000000000009080     0 OBJECT  LOCAL  DEFAULT  ABS _DYNAMIC
0c74e2
+    23: 0000000000008000     0 NOTYPE  LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_global_hidden_def
0c74e2
+    24: 0000000000008000     0 IFUNC   LOCAL  DEFAULT    1 f_base_global_hidden_ifunc
0c74e2
+    25: 0000000000008000     0 NOTYPE  LOCAL  DEFAULT    1 f_base_global_hidden_def
0c74e2
+    26: 0000000000009000     0 OBJECT  LOCAL  DEFAULT  ABS _GLOBAL_OFFSET_TABLE_
0c74e2
+    27: 0000000000008000     0 IFUNC   LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_global_hidden_ifunc
0c74e2
+    28: 0000000000008070     0 NOTYPE  LOCAL  DEFAULT    2 \$x
0c74e2
+    29: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT  UND f_base_global_default_undef
0c74e2
+    30: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT \[VARIANT_PCS\]   UND f_spec_global_default_undef
0c74e2
+    31: 0000000000008000     0 IFUNC   GLOBAL DEFAULT \[VARIANT_PCS\]     1 f_spec_global_default_ifunc
0c74e2
+    32: 0000000000008000     0 NOTYPE  GLOBAL DEFAULT    1 f_base_global_default_def
0c74e2
+    33: 0000000000008000     0 NOTYPE  GLOBAL DEFAULT \[VARIANT_PCS\]     1 f_spec_global_default_def
0c74e2
+    34: 0000000000008000     0 IFUNC   GLOBAL DEFAULT    1 f_base_global_default_ifunc
0c74e2
--- binutils.orig/bfd/archive.c	2019-07-03 10:06:20.527408416 +0100
0c74e2
+++ binutils-2.32/bfd/archive.c	2019-07-03 10:06:57.887142988 +0100
0c74e2
@@ -1076,8 +1076,6 @@ do_slurp_coff_armap (bfd *abfd)
0c74e2
   *stringend = 0;
0c74e2
   for (i = 0; i < nsymz; i++)
0c74e2
     {
0c74e2
-      bfd_size_type len;
0c74e2
-
0c74e2
       rawptr = raw_armap + i;
0c74e2
       carsyms->file_offset = swap ((bfd_byte *) rawptr);
0c74e2
       carsyms->name = stringbase;
0c74e2
diff -rup binutils.orig/ld/testsuite/ld-aarch64/variant_pcs-now.d binutils-2.32/ld/testsuite/ld-aarch64/variant_pcs-now.d
0c74e2
--- binutils.orig/ld/testsuite/ld-aarch64/variant_pcs-now.d	2019-07-03 10:06:20.012412075 +0100
0c74e2
+++ binutils-2.32/ld/testsuite/ld-aarch64/variant_pcs-now.d	2019-07-03 10:20:51.959203582 +0100
0c74e2
@@ -22,10 +22,10 @@ Symbol table '\.dynsym' contains 7 entri
0c74e2
    Num:    Value          Size Type    Bind   Vis      Ndx Name
0c74e2
      0: 0000000000000000     0 NOTYPE  LOCAL  DEFAULT  UND 
0c74e2
      1: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT  UND f_base_global_default_undef
0c74e2
-     2: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT \[VARIANT_PCS\]   UND f_spec_global_default_undef
0c74e2
-     3: 0000000000008000     0 IFUNC   GLOBAL DEFAULT \[VARIANT_PCS\]     1 f_spec_global_default_ifunc
0c74e2
+     2: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT  UND f_spec_global_default_undef 	\[VARIANT_PCS\] 
0c74e2
+     3: 0000000000008000     0 IFUNC   GLOBAL DEFAULT    1 f_spec_global_default_ifunc 	\[VARIANT_PCS\] 
0c74e2
      4: 0000000000008000     0 NOTYPE  GLOBAL DEFAULT    1 f_base_global_default_def
0c74e2
-     5: 0000000000008000     0 NOTYPE  GLOBAL DEFAULT \[VARIANT_PCS\]     1 f_spec_global_default_def
0c74e2
+     5: 0000000000008000     0 NOTYPE  GLOBAL DEFAULT    1 f_spec_global_default_def 	\[VARIANT_PCS\] 
0c74e2
      6: 0000000000008000     0 IFUNC   GLOBAL DEFAULT    1 f_base_global_default_ifunc
0c74e2
 
0c74e2
 Symbol table '\.symtab' contains 35 entries:
0c74e2
@@ -40,28 +40,28 @@ Symbol table '\.symtab' contains 35 entr
0c74e2
      7: 00000000000111c8     0 SECTION LOCAL  DEFAULT    7 
0c74e2
      8: 0000000000011270     0 SECTION LOCAL  DEFAULT    8 
0c74e2
      9: 0000000000000000     0 FILE    LOCAL  DEFAULT  ABS .*variant_pcs-1\.o
0c74e2
-    10: 0000000000008000     0 NOTYPE  LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_local
0c74e2
-    11: 0000000000008000     0 IFUNC   LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_local_ifunc
0c74e2
+    10: 0000000000008000     0 NOTYPE  LOCAL  DEFAULT    1 f_spec_local 	\[VARIANT_PCS\] 
0c74e2
+    11: 0000000000008000     0 IFUNC   LOCAL  DEFAULT    1 f_spec_local_ifunc 	\[VARIANT_PCS\] 
0c74e2
     12: 0000000000008000     0 IFUNC   LOCAL  DEFAULT    1 f_base_local_ifunc
0c74e2
     13: 0000000000008000     0 NOTYPE  LOCAL  DEFAULT    1 f_base_local
0c74e2
     14: 0000000000008000     0 NOTYPE  LOCAL  DEFAULT    1 \$x
0c74e2
     15: 0000000000000000     0 FILE    LOCAL  DEFAULT  ABS .*variant_pcs-2\.o
0c74e2
-    16: 0000000000008038     0 NOTYPE  LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_local2
0c74e2
-    17: 0000000000008038     0 IFUNC   LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_local2_ifunc
0c74e2
+    16: 0000000000008038     0 NOTYPE  LOCAL  DEFAULT    1 f_spec_local2 	\[VARIANT_PCS\] 
0c74e2
+    17: 0000000000008038     0 IFUNC   LOCAL  DEFAULT    1 f_spec_local2_ifunc 	\[VARIANT_PCS\] 
0c74e2
     18: 0000000000008038     0 IFUNC   LOCAL  DEFAULT    1 f_base_local2_ifunc
0c74e2
     19: 0000000000008038     0 NOTYPE  LOCAL  DEFAULT    1 f_base_local2
0c74e2
     20: 0000000000008038     0 NOTYPE  LOCAL  DEFAULT    1 \$x
0c74e2
     21: 0000000000000000     0 FILE    LOCAL  DEFAULT  ABS 
0c74e2
     22: 0000000000009080     0 OBJECT  LOCAL  DEFAULT  ABS _DYNAMIC
0c74e2
-    23: 0000000000008000     0 NOTYPE  LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_global_hidden_def
0c74e2
+    23: 0000000000008000     0 NOTYPE  LOCAL  DEFAULT    1 f_spec_global_hidden_def 	\[VARIANT_PCS\] 
0c74e2
     24: 0000000000008000     0 IFUNC   LOCAL  DEFAULT    1 f_base_global_hidden_ifunc
0c74e2
     25: 0000000000008000     0 NOTYPE  LOCAL  DEFAULT    1 f_base_global_hidden_def
0c74e2
     26: 0000000000009000     0 OBJECT  LOCAL  DEFAULT  ABS _GLOBAL_OFFSET_TABLE_
0c74e2
-    27: 0000000000008000     0 IFUNC   LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_global_hidden_ifunc
0c74e2
+    27: 0000000000008000     0 IFUNC   LOCAL  DEFAULT    1 f_spec_global_hidden_ifunc 	\[VARIANT_PCS\] 
0c74e2
     28: 0000000000008070     0 NOTYPE  LOCAL  DEFAULT    2 \$x
0c74e2
     29: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT  UND f_base_global_default_undef
0c74e2
-    30: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT \[VARIANT_PCS\]   UND f_spec_global_default_undef
0c74e2
-    31: 0000000000008000     0 IFUNC   GLOBAL DEFAULT \[VARIANT_PCS\]     1 f_spec_global_default_ifunc
0c74e2
+    30: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT  UND f_spec_global_default_undef 	\[VARIANT_PCS\] 
0c74e2
+    31: 0000000000008000     0 IFUNC   GLOBAL DEFAULT    1 f_spec_global_default_ifunc 	\[VARIANT_PCS\] 
0c74e2
     32: 0000000000008000     0 NOTYPE  GLOBAL DEFAULT    1 f_base_global_default_def
0c74e2
-    33: 0000000000008000     0 NOTYPE  GLOBAL DEFAULT \[VARIANT_PCS\]     1 f_spec_global_default_def
0c74e2
+    33: 0000000000008000     0 NOTYPE  GLOBAL DEFAULT    1 f_spec_global_default_def 	\[VARIANT_PCS\] 
0c74e2
     34: 0000000000008000     0 IFUNC   GLOBAL DEFAULT    1 f_base_global_default_ifunc
0c74e2
diff -rup binutils.orig/ld/testsuite/ld-aarch64/variant_pcs-r.d binutils-2.32/ld/testsuite/ld-aarch64/variant_pcs-r.d
0c74e2
--- binutils.orig/ld/testsuite/ld-aarch64/variant_pcs-r.d	2019-07-03 10:06:20.012412075 +0100
0c74e2
+++ binutils-2.32/ld/testsuite/ld-aarch64/variant_pcs-r.d	2019-07-03 10:14:28.152933189 +0100
0c74e2
@@ -37,24 +37,24 @@ Symbol table '\.symtab' contains 26 entr
0c74e2
      2: 0000000000000000     0 SECTION LOCAL  DEFAULT    3 
0c74e2
      3: 0000000000000000     0 SECTION LOCAL  DEFAULT    4 
0c74e2
      4: 0000000000000000     0 FILE    LOCAL  DEFAULT  ABS .*variant_pcs-1\.o
0c74e2
-     5: 0000000000000000     0 NOTYPE  LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_local
0c74e2
-     6: 0000000000000000     0 IFUNC   LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_local_ifunc
0c74e2
+     5: 0000000000000000     0 NOTYPE  LOCAL  DEFAULT    1 f_spec_local 	\[VARIANT_PCS\] 
0c74e2
+     6: 0000000000000000     0 IFUNC   LOCAL  DEFAULT    1 f_spec_local_ifunc 	\[VARIANT_PCS\] 
0c74e2
      7: 0000000000000000     0 IFUNC   LOCAL  DEFAULT    1 f_base_local_ifunc
0c74e2
      8: 0000000000000000     0 NOTYPE  LOCAL  DEFAULT    1 f_base_local
0c74e2
      9: 0000000000000000     0 NOTYPE  LOCAL  DEFAULT    1 \$x
0c74e2
     10: 0000000000000000     0 FILE    LOCAL  DEFAULT  ABS .*variant_pcs-2\.o
0c74e2
-    11: 0000000000000038     0 NOTYPE  LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_local2
0c74e2
-    12: 0000000000000038     0 IFUNC   LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_local2_ifunc
0c74e2
+    11: 0000000000000038     0 NOTYPE  LOCAL  DEFAULT    1 f_spec_local2 	\[VARIANT_PCS\] 
0c74e2
+    12: 0000000000000038     0 IFUNC   LOCAL  DEFAULT    1 f_spec_local2_ifunc 	\[VARIANT_PCS\] 
0c74e2
     13: 0000000000000038     0 IFUNC   LOCAL  DEFAULT    1 f_base_local2_ifunc
0c74e2
     14: 0000000000000038     0 NOTYPE  LOCAL  DEFAULT    1 f_base_local2
0c74e2
     15: 0000000000000038     0 NOTYPE  LOCAL  DEFAULT    1 \$x
0c74e2
     16: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT  UND f_base_global_default_undef
0c74e2
-    17: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT \[VARIANT_PCS\]   UND f_spec_global_default_undef
0c74e2
-    18: 0000000000000000     0 NOTYPE  GLOBAL HIDDEN  \[VARIANT_PCS\]     1 f_spec_global_hidden_def
0c74e2
+    17: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT  UND f_spec_global_default_undef 	\[VARIANT_PCS\] 
0c74e2
+    18: 0000000000000000     0 NOTYPE  GLOBAL HIDDEN     1 f_spec_global_hidden_def 	\[VARIANT_PCS\] 
0c74e2
     19: 0000000000000000     0 IFUNC   GLOBAL HIDDEN     1 f_base_global_hidden_ifunc
0c74e2
-    20: 0000000000000000     0 IFUNC   GLOBAL DEFAULT \[VARIANT_PCS\]     1 f_spec_global_default_ifunc
0c74e2
+    20: 0000000000000000     0 IFUNC   GLOBAL DEFAULT    1 f_spec_global_default_ifunc 	\[VARIANT_PCS\] 
0c74e2
     21: 0000000000000000     0 NOTYPE  GLOBAL HIDDEN     1 f_base_global_hidden_def
0c74e2
-    22: 0000000000000000     0 IFUNC   GLOBAL HIDDEN  \[VARIANT_PCS\]     1 f_spec_global_hidden_ifunc
0c74e2
+    22: 0000000000000000     0 IFUNC   GLOBAL HIDDEN     1 f_spec_global_hidden_ifunc 	\[VARIANT_PCS\] 
0c74e2
     23: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT    1 f_base_global_default_def
0c74e2
-    24: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT \[VARIANT_PCS\]     1 f_spec_global_default_def
0c74e2
+    24: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT    1 f_spec_global_default_def 	\[VARIANT_PCS\] 
0c74e2
     25: 0000000000000000     0 IFUNC   GLOBAL DEFAULT    1 f_base_global_default_ifunc
0c74e2
diff -rup binutils.orig/ld/testsuite/ld-aarch64/variant_pcs-shared.d binutils-2.32/ld/testsuite/ld-aarch64/variant_pcs-shared.d
0c74e2
--- binutils.orig/ld/testsuite/ld-aarch64/variant_pcs-shared.d	2019-07-03 10:06:20.012412075 +0100
0c74e2
+++ binutils-2.32/ld/testsuite/ld-aarch64/variant_pcs-shared.d	2019-07-03 10:19:00.760994532 +0100
0c74e2
@@ -22,10 +22,10 @@ Symbol table '\.dynsym' contains 7 entri
0c74e2
    Num:    Value          Size Type    Bind   Vis      Ndx Name
0c74e2
      0: 0000000000000000     0 NOTYPE  LOCAL  DEFAULT  UND 
0c74e2
      1: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT  UND f_base_global_default_undef
0c74e2
-     2: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT \[VARIANT_PCS\]   UND f_spec_global_default_undef
0c74e2
-     3: 0000000000008000     0 IFUNC   GLOBAL DEFAULT \[VARIANT_PCS\]     1 f_spec_global_default_ifunc
0c74e2
+     2: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT  UND f_spec_global_default_undef 	\[VARIANT_PCS\] 
0c74e2
+     3: 0000000000008000     0 IFUNC   GLOBAL DEFAULT    1 f_spec_global_default_ifunc 	\[VARIANT_PCS\] 
0c74e2
      4: 0000000000008000     0 NOTYPE  GLOBAL DEFAULT    1 f_base_global_default_def
0c74e2
-     5: 0000000000008000     0 NOTYPE  GLOBAL DEFAULT \[VARIANT_PCS\]     1 f_spec_global_default_def
0c74e2
+     5: 0000000000008000     0 NOTYPE  GLOBAL DEFAULT    1 f_spec_global_default_def 	\[VARIANT_PCS\] 
0c74e2
      6: 0000000000008000     0 IFUNC   GLOBAL DEFAULT    1 f_base_global_default_ifunc
0c74e2
 
0c74e2
 Symbol table '\.symtab' contains 35 entries:
0c74e2
@@ -40,28 +40,28 @@ Symbol table '\.symtab' contains 35 entr
0c74e2
      7: 00000000000111c8     0 SECTION LOCAL  DEFAULT    7 
0c74e2
      8: 0000000000011270     0 SECTION LOCAL  DEFAULT    8 
0c74e2
      9: 0000000000000000     0 FILE    LOCAL  DEFAULT  ABS .*variant_pcs-1\.o
0c74e2
-    10: 0000000000008000     0 NOTYPE  LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_local
0c74e2
-    11: 0000000000008000     0 IFUNC   LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_local_ifunc
0c74e2
+    10: 0000000000008000     0 NOTYPE  LOCAL  DEFAULT    1 f_spec_local 	\[VARIANT_PCS\] 
0c74e2
+    11: 0000000000008000     0 IFUNC   LOCAL  DEFAULT    1 f_spec_local_ifunc 	\[VARIANT_PCS\] 
0c74e2
     12: 0000000000008000     0 IFUNC   LOCAL  DEFAULT    1 f_base_local_ifunc
0c74e2
     13: 0000000000008000     0 NOTYPE  LOCAL  DEFAULT    1 f_base_local
0c74e2
     14: 0000000000008000     0 NOTYPE  LOCAL  DEFAULT    1 \$x
0c74e2
     15: 0000000000000000     0 FILE    LOCAL  DEFAULT  ABS .*variant_pcs-2\.o
0c74e2
-    16: 0000000000008038     0 NOTYPE  LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_local2
0c74e2
-    17: 0000000000008038     0 IFUNC   LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_local2_ifunc
0c74e2
+    16: 0000000000008038     0 NOTYPE  LOCAL  DEFAULT    1 f_spec_local2 	\[VARIANT_PCS\] 
0c74e2
+    17: 0000000000008038     0 IFUNC   LOCAL  DEFAULT    1 f_spec_local2_ifunc 	\[VARIANT_PCS\] 
0c74e2
     18: 0000000000008038     0 IFUNC   LOCAL  DEFAULT    1 f_base_local2_ifunc
0c74e2
     19: 0000000000008038     0 NOTYPE  LOCAL  DEFAULT    1 f_base_local2
0c74e2
     20: 0000000000008038     0 NOTYPE  LOCAL  DEFAULT    1 \$x
0c74e2
     21: 0000000000000000     0 FILE    LOCAL  DEFAULT  ABS 
0c74e2
     22: 0000000000009080     0 OBJECT  LOCAL  DEFAULT  ABS _DYNAMIC
0c74e2
-    23: 0000000000008000     0 NOTYPE  LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_global_hidden_def
0c74e2
+    23: 0000000000008000     0 NOTYPE  LOCAL  DEFAULT    1 f_spec_global_hidden_def 	\[VARIANT_PCS\] 
0c74e2
     24: 0000000000008000     0 IFUNC   LOCAL  DEFAULT    1 f_base_global_hidden_ifunc
0c74e2
     25: 0000000000008000     0 NOTYPE  LOCAL  DEFAULT    1 f_base_global_hidden_def
0c74e2
     26: 0000000000009000     0 OBJECT  LOCAL  DEFAULT  ABS _GLOBAL_OFFSET_TABLE_
0c74e2
-    27: 0000000000008000     0 IFUNC   LOCAL  DEFAULT \[VARIANT_PCS\]     1 f_spec_global_hidden_ifunc
0c74e2
+    27: 0000000000008000     0 IFUNC   LOCAL  DEFAULT    1 f_spec_global_hidden_ifunc 	\[VARIANT_PCS\] 
0c74e2
     28: 0000000000008070     0 NOTYPE  LOCAL  DEFAULT    2 \$x
0c74e2
     29: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT  UND f_base_global_default_undef
0c74e2
-    30: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT \[VARIANT_PCS\]   UND f_spec_global_default_undef
0c74e2
-    31: 0000000000008000     0 IFUNC   GLOBAL DEFAULT \[VARIANT_PCS\]     1 f_spec_global_default_ifunc
0c74e2
+    30: 0000000000000000     0 NOTYPE  GLOBAL DEFAULT  UND f_spec_global_default_undef 	\[VARIANT_PCS\] 
0c74e2
+    31: 0000000000008000     0 IFUNC   GLOBAL DEFAULT    1 f_spec_global_default_ifunc 	\[VARIANT_PCS\] 
0c74e2
     32: 0000000000008000     0 NOTYPE  GLOBAL DEFAULT    1 f_base_global_default_def
0c74e2
-    33: 0000000000008000     0 NOTYPE  GLOBAL DEFAULT \[VARIANT_PCS\]     1 f_spec_global_default_def
0c74e2
+    33: 0000000000008000     0 NOTYPE  GLOBAL DEFAULT    1 f_spec_global_default_def 	\[VARIANT_PCS\] 
0c74e2
     34: 0000000000008000     0 IFUNC   GLOBAL DEFAULT    1 f_base_global_default_ifunc