Remove syntactic sugar
[deliverable/binutils-gdb.git] / bfd / elf32-arc.c
index 1e012e29a0cb93463b8bf7042d12830b52e79f72..9fb83b5f2874267c0a2fdbedb42341be4d2dea14 100644 (file)
 #include "opcode/arc.h"
 #include "arc-plt.h"
 
-#ifdef DEBUG
-# define PR_DEBUG(fmt, args...) fprintf (stderr, fmt, ##args)
-#else
-# define PR_DEBUG(fmt, args...)
-#endif
-
-/* #define ARC_ENABLE_DEBUG 1 */
-#ifndef ARC_ENABLE_DEBUG
-#define ARC_DEBUG(...)
-#else
-static char *
+/* #define ARC_ENABLE_DEBUG 1  */
+#ifdef ARC_ENABLE_DEBUG
+static const char *
 name_for_global_symbol (struct elf_link_hash_entry *h)
 {
   static char *local_str = "(local)";
   if (h == NULL)
     return local_str;
-  else
-    return h->root.root.string;
+  return h->root.root.string;
 }
-#define ARC_DEBUG(args...) fprintf (stderr, ##args)
+#define ARC_DEBUG(fmt, args...) fprintf (stderr, fmt, ##args)
+#else
+#define ARC_DEBUG(...)
 #endif
 
 
@@ -58,6 +51,7 @@ name_for_global_symbol (struct elf_link_hash_entry *h)
     Elf_Internal_Rela _rel;                                            \
     bfd_byte * _loc;                                                   \
                                                                        \
+    BFD_ASSERT (_htab->srel##SECTION &&_htab->srel##SECTION->contents); \
     _loc = _htab->srel##SECTION->contents                              \
       + ((_htab->srel##SECTION->reloc_count)                           \
         * sizeof (Elf32_External_Rela));                               \
@@ -70,20 +64,6 @@ name_for_global_symbol (struct elf_link_hash_entry *h)
     bfd_elf32_swap_reloca_out (BFD, &_rel, _loc);                      \
   }
 
-struct arc_local_data
-{
-  bfd_vma        sdata_begin_symbol_vma;
-  asection *      sdata_output_section;
-  bfd_vma        got_symbol_vma;
-};
-
-struct arc_local_data global_arc_data =
-{
-  .sdata_begin_symbol_vma = 0,
-  .sdata_output_section = NULL,
-  .got_symbol_vma = 0,
-};
-
 struct dynamic_sections
 {
   bfd_boolean    initialized;
@@ -117,75 +97,6 @@ const char * dyn_section_names[DYN_SECTION_TYPES_END] =
   ".rela.plt"
 };
 
-enum tls_type_e
-{
-  GOT_UNKNOWN = 0,
-  GOT_NORMAL,
-  GOT_TLS_GD,
-  GOT_TLS_IE,
-  GOT_TLS_LE
-};
-
-enum tls_got_entries
-{
-  TLS_GOT_NONE = 0,
-  TLS_GOT_MOD,
-  TLS_GOT_OFF,
-  TLS_GOT_MOD_AND_OFF
-};
-
-struct got_entry
-{
-  struct got_entry *next;
-  enum tls_type_e type;
-  bfd_vma offset;
-  bfd_boolean processed;
-  bfd_boolean created_dyn_relocation;
-  enum tls_got_entries existing_entries;
-};
-
-static void
-new_got_entry_to_list (struct got_entry **list,
-                      enum tls_type_e type,
-                      bfd_vma offset,
-                      enum tls_got_entries existing_entries)
-{
-  /* Find list end.  Avoid having multiple entries of the same
-     type.  */
-  struct got_entry **p = list;
-  while (*p != NULL)
-    {
-      if ((*p)->type == type)
-       return;
-      p = &((*p)->next);
-    }
-
-  struct got_entry *entry =
-                     (struct got_entry *) malloc (sizeof(struct got_entry));
-
-  entry->type = type;
-  entry->offset = offset;
-  entry->next = NULL;
-  entry->processed = FALSE;
-  entry->created_dyn_relocation = FALSE;
-  entry->existing_entries = existing_entries;
-
-  /* Add the entry to the end of the list.  */
-  *p = entry;
-}
-
-static bfd_boolean
-symbol_has_entry_of_type (struct got_entry *list, enum tls_type_e type)
-{
-  while (list != NULL)
-    {
-      if (list->type == type)
-       return TRUE;
-      list = list->next;
-    }
-
-  return FALSE;
-}
 
 /* The default symbols representing the init and fini dyn values.
    TODO: Check what is the relation of those strings with arclinux.em
@@ -252,6 +163,32 @@ is_reloc_for_TLS (reloc_howto_type *howto)
   return (strstr (howto->name, "TLS") != NULL) ? TRUE : FALSE;
 }
 
+struct arc_relocation_data
+{
+  bfd_signed_vma  reloc_offset;
+  bfd_signed_vma  reloc_addend;
+  bfd_signed_vma  got_offset_value;
+
+  bfd_signed_vma  sym_value;
+  asection *     sym_section;
+
+  reloc_howto_type *howto;
+
+  asection *     input_section;
+
+  bfd_signed_vma  sdata_begin_symbol_vma;
+  bfd_boolean    sdata_begin_symbol_vma_set;
+  bfd_signed_vma  got_symbol_vma;
+
+  bfd_boolean    should_relocate;
+
+  const char *    symbol_name;
+};
+
+/* Should be included at this location due to static declarations
+ * defined before this point.  */
+#include "arc-got.h"
+
 #define arc_bfd_get_8(A,B,C) bfd_get_8(A,B)
 #define arc_bfd_get_16(A,B,C) bfd_get_16(A,B)
 #define arc_bfd_get_32(A,B,C) bfd_get_32(A,B)
@@ -296,7 +233,9 @@ enum howto_list
 #undef ARC_RELOC_HOWTO
 
 #define ARC_RELOC_HOWTO(TYPE, VALUE, RSIZE, BITSIZE, RELOC_FUNCTION, OVERFLOW, FORMULA) \
-  [TYPE] = HOWTO (R_##TYPE, 0, RSIZE, BITSIZE, FALSE, 0, complain_overflow_##OVERFLOW, arc_elf_reloc, "R_" #TYPE, FALSE, 0, 0, FALSE),
+  [TYPE] = HOWTO (R_##TYPE, 0, RSIZE, BITSIZE, FALSE, 0,               \
+                 complain_overflow_##OVERFLOW, arc_elf_reloc,          \
+                 "R_" #TYPE, FALSE, 0, 0, FALSE),
 
 static struct reloc_howto_struct elf_arc_howto_table[] =
 {
@@ -359,9 +298,95 @@ arc_elf_howto (unsigned int r_type)
 struct arc_reloc_map
 {
   bfd_reloc_code_real_type  bfd_reloc_val;
-  unsigned char             elf_reloc_val;
+  unsigned char                    elf_reloc_val;
+};
+
+/* ARC ELF linker hash entry.  */
+struct elf_arc_link_hash_entry
+{
+  struct elf_link_hash_entry root;
+
+  /* Track dynamic relocs copied for this symbol.  */
+  struct elf_dyn_relocs *dyn_relocs;
+};
+
+/* ARC ELF linker hash table.  */
+struct elf_arc_link_hash_table
+{
+  struct elf_link_hash_table elf;
+
+  /* Short-cuts to get to dynamic linker sections.  */
+  asection *srelbss;
 };
 
+static struct bfd_hash_entry *
+elf_arc_link_hash_newfunc (struct bfd_hash_entry *entry,
+                          struct bfd_hash_table *table,
+                          const char *string)
+{
+  /* Allocate the structure if it has not already been allocated by a
+     subclass.  */
+  if (entry == NULL)
+    {
+      entry = (struct bfd_hash_entry *)
+         bfd_hash_allocate (table,
+                            sizeof (struct elf_arc_link_hash_entry));
+      if (entry == NULL)
+       return entry;
+    }
+
+  /* Call the allocation method of the superclass.  */
+  entry = _bfd_elf_link_hash_newfunc (entry, table, string);
+  if (entry != NULL)
+    {
+      struct elf_arc_link_hash_entry *eh;
+
+      eh = (struct elf_arc_link_hash_entry *) entry;
+      eh->dyn_relocs = NULL;
+    }
+
+  return entry;
+}
+
+/* Destroy an ARC ELF linker hash table.  */
+static void
+elf_arc_link_hash_table_free (bfd *obfd)
+{
+  _bfd_elf_link_hash_table_free (obfd);
+}
+
+/* Create an ARC ELF linker hash table.  */
+
+static struct bfd_link_hash_table *
+arc_elf_link_hash_table_create (bfd *abfd)
+{
+  struct elf_arc_link_hash_table *ret;
+
+  ret = (struct elf_arc_link_hash_table *) bfd_zmalloc (sizeof (*ret));
+  if (ret == NULL)
+    return NULL;
+
+  if (!_bfd_elf_link_hash_table_init (&ret->elf, abfd,
+                                     elf_arc_link_hash_newfunc,
+                                     sizeof (struct elf_arc_link_hash_entry),
+                                     ARC_ELF_DATA))
+    {
+      free (ret);
+      return NULL;
+    }
+
+  ret->srelbss = NULL;
+
+  ret->elf.init_got_refcount.refcount = 0;
+  ret->elf.init_got_refcount.glist = NULL;
+  ret->elf.init_got_offset.offset = 0;
+  ret->elf.init_got_offset.glist = NULL;
+
+  ret->elf.root.hash_table_free = elf_arc_link_hash_table_free;
+
+  return &ret->elf.root;
+}
+
 #define ARC_RELOC_HOWTO(TYPE, VALUE, SIZE, BITSIZE, RELOC_FUNCTION, OVERFLOW, FORMULA) \
   { BFD_RELOC_##TYPE, R_##TYPE },
 static const struct arc_reloc_map arc_reloc_map[] =
@@ -588,7 +613,7 @@ arc_elf_merge_private_bfd_data (bfd *ibfd, bfd *obfd)
       else if (in_flags != out_flags)
        {
          /* Warn if different flags.  */
-         (*_bfd_error_handler)
+         _bfd_error_handler
            (_("%s: uses different e_flags (0x%lx) fields than "
               "previous modules (0x%lx)"),
             bfd_get_filename (ibfd), (long)in_flags, (long)out_flags);
@@ -635,16 +660,13 @@ arc_elf_object_p (bfd * abfd)
          case E_ARC_MACH_ARC700:
            mach = bfd_mach_arc_arc700;
            break;
-         case E_ARC_MACH_NPS400:
-           mach = bfd_mach_arc_nps400;
-           break;
          case EF_ARC_CPU_ARCV2HS:
          case EF_ARC_CPU_ARCV2EM:
            mach = bfd_mach_arc_arcv2;
            break;
          default:
-           mach = (e_machine == EM_ARC_COMPACT) ?
-             bfd_mach_arc_arc700 : bfd_mach_arc_arcv2;
+           mach = (e_machine == EM_ARC_COMPACT)
+             bfd_mach_arc_arc700 : bfd_mach_arc_arcv2;
            break;
        }
     }
@@ -652,13 +674,13 @@ arc_elf_object_p (bfd * abfd)
     {
       if (e_machine == EM_ARC)
        {
-         (*_bfd_error_handler)
+         _bfd_error_handler
            (_("Error: The ARC4 architecture is no longer supported.\n"));
          return FALSE;
        }
       else
        {
-         (*_bfd_error_handler)
+         _bfd_error_handler
            (_("Warning: unset or old architecture flags. \n"
               "               Use default machine.\n"));
        }
@@ -687,9 +709,6 @@ arc_elf_final_write_processing (bfd * abfd,
     case bfd_mach_arc_arc700:
       emf = EM_ARC_COMPACT;
       break;
-    case bfd_mach_arc_nps400:
-      emf = EM_ARC_COMPACT;
-      break;
     case bfd_mach_arc_arcv2:
       emf = EM_ARC_COMPACT2;
       break;
@@ -706,91 +725,69 @@ DO_NOTHING:
   return;
 }
 
-#define BFD_DEBUG_PIC(...)
-
-struct arc_relocation_data
-{
-  bfd_signed_vma  reloc_offset;
-  bfd_signed_vma  reloc_addend;
-  bfd_signed_vma  got_offset_value;
-
-  bfd_signed_vma  sym_value;
-  asection *     sym_section;
-
-  reloc_howto_type *howto;
-
-  asection *     input_section;
-
-  bfd_signed_vma  sdata_begin_symbol_vma;
-  bfd_boolean    sdata_begin_symbol_vma_set;
-  bfd_signed_vma  got_symbol_vma;
-
-  bfd_boolean    should_relocate;
-
-  const char *    symbol_name;
-};
+#ifdef ARC_ENABLE_DEBUG
+#define DEBUG_ARC_RELOC(A) debug_arc_reloc (A)
 
 static void
 debug_arc_reloc (struct arc_relocation_data reloc_data)
 {
-  PR_DEBUG ("Reloc type=%s, should_relocate = %s\n",
-          reloc_data.howto->name,
-          reloc_data.should_relocate ? "true" : "false");
-  PR_DEBUG ("  offset = 0x%x, addend = 0x%x\n",
-          (unsigned int) reloc_data.reloc_offset,
-          (unsigned int) reloc_data.reloc_addend);
-  PR_DEBUG (" Symbol:\n");
-  PR_DEBUG ("  value = 0x%08x\n",
-          (unsigned int) reloc_data.sym_value);
+  ARC_DEBUG ("Reloc type=%s, should_relocate = %s\n",
+            reloc_data.howto->name,
+            reloc_data.should_relocate ? "true" : "false");
+  ARC_DEBUG ("  offset = 0x%x, addend = 0x%x\n",
+            (unsigned int) reloc_data.reloc_offset,
+            (unsigned int) reloc_data.reloc_addend);
+  ARC_DEBUG (" Symbol:\n");
+  ARC_DEBUG ("  value = 0x%08x\n",
+            (unsigned int) reloc_data.sym_value);
   if (reloc_data.sym_section != NULL)
     {
-      PR_DEBUG (" Symbol Section:\n");
-      PR_DEBUG (
-              "  section name = %s, output_offset 0x%08x",
-              reloc_data.sym_section->name,
-              (unsigned int) reloc_data.sym_section->output_offset);
+      ARC_DEBUG (" Symbol Section:\n");
+      ARC_DEBUG ("  section name = %s, output_offset 0x%08x",
+                reloc_data.sym_section->name,
+                (unsigned int) reloc_data.sym_section->output_offset);
       if (reloc_data.sym_section->output_section != NULL)
-       {
-         PR_DEBUG (
-                  ", output_section->vma = 0x%08x",
+       ARC_DEBUG (", output_section->vma = 0x%08x",
                   ((unsigned int) reloc_data.sym_section->output_section->vma));
-       }
-      PR_DEBUG ( "\n");
-      PR_DEBUG ("  file: %s\n", reloc_data.sym_section->owner->filename);
+      ARC_DEBUG ("\n");
+      if (reloc_data.sym_section->owner && reloc_data.sym_section->owner->filename)
+       ARC_DEBUG ("  file: %s\n", reloc_data.sym_section->owner->filename);
     }
   else
     {
-      PR_DEBUG ( "  symbol section is NULL\n");
+      ARC_DEBUG ("  symbol section is NULL\n");
     }
 
-  PR_DEBUG ( " Input_section:\n");
+  ARC_DEBUG (" Input_section:\n");
   if (reloc_data.input_section != NULL)
     {
-      PR_DEBUG (
-              "  section name = %s, output_offset 0x%08x, output_section->vma = 0x%08x\n",
-              reloc_data.input_section->name,
-              (unsigned int) reloc_data.input_section->output_offset,
-              (unsigned int) reloc_data.input_section->output_section->vma);
-      PR_DEBUG ( "  changed_address = 0x%08x\n",
-              (unsigned int) (reloc_data.input_section->output_section->vma +
-              reloc_data.input_section->output_offset +
-              reloc_data.reloc_offset));
-      PR_DEBUG ("  file: %s\n", reloc_data.input_section->owner->filename);
+      ARC_DEBUG ("  section name = %s, output_offset 0x%08x, output_section->vma = 0x%08x\n",
+                reloc_data.input_section->name,
+                (unsigned int) reloc_data.input_section->output_offset,
+                (unsigned int) reloc_data.input_section->output_section->vma);
+      ARC_DEBUG ("  changed_address = 0x%08x\n",
+                (unsigned int) (reloc_data.input_section->output_section->vma
+                                + reloc_data.input_section->output_offset
+                                + reloc_data.reloc_offset));
+      ARC_DEBUG ("  file: %s\n", reloc_data.input_section->owner->filename);
     }
   else
     {
-      PR_DEBUG ( "     input section is NULL\n");
+      ARC_DEBUG ("     input section is NULL\n");
     }
 }
+#else
+#define DEBUG_ARC_RELOC(A)
+#endif /* ARC_ENABLE_DEBUG */
 
 static bfd_vma
 middle_endian_convert (bfd_vma insn, bfd_boolean do_it)
 {
   if (do_it)
     {
-      insn =
-       ((insn & 0xffff0000) >> 16) |
-       ((insn & 0xffff) << 16);
+      insn
+       = ((insn & 0xffff0000) >> 16)
+         | ((insn & 0xffff) << 16);
     }
   return insn;
 }
@@ -801,37 +798,37 @@ middle_endian_convert (bfd_vma insn, bfd_boolean do_it)
 
 static inline bfd_reloc_status_type
 arc_special_overflow_checks (const struct arc_relocation_data reloc_data,
-                             bfd_signed_vma relocation,
+                            bfd_signed_vma relocation,
                             struct bfd_link_info *info ATTRIBUTE_UNUSED)
 {
   switch (reloc_data.howto->type)
     {
     case R_ARC_NPS_CMEM16:
       if (((relocation >> 16) & 0xffff) != NPS_CMEM_HIGH_VALUE)
-        {
-          if (reloc_data.reloc_addend == 0)
-            (*_bfd_error_handler)
-              (_("%B(%A+0x%lx): CMEM relocation to `%s' is invalid, "
-                 "16 MSB should be 0x%04x (value is 0x%lx)"),
-               reloc_data.input_section->owner,
-               reloc_data.input_section,
-               reloc_data.reloc_offset,
-               reloc_data.symbol_name,
-               NPS_CMEM_HIGH_VALUE,
-               (relocation));
-          else
-            (*_bfd_error_handler)
-              (_("%B(%A+0x%lx): CMEM relocation to `%s+0x%lx' is invalid, "
-                 "16 MSB should be 0x%04x (value is 0x%lx)"),
-               reloc_data.input_section->owner,
-               reloc_data.input_section,
-               reloc_data.reloc_offset,
-               reloc_data.symbol_name,
-               reloc_data.reloc_addend,
-               NPS_CMEM_HIGH_VALUE,
-               (relocation));
-          return bfd_reloc_overflow;
-        }
+       {
+         if (reloc_data.reloc_addend == 0)
+           _bfd_error_handler
+             (_("%B(%A+0x%lx): CMEM relocation to `%s' is invalid, "
+                "16 MSB should be 0x%04x (value is 0x%lx)"),
+              reloc_data.input_section->owner,
+              reloc_data.input_section,
+              reloc_data.reloc_offset,
+              reloc_data.symbol_name,
+              NPS_CMEM_HIGH_VALUE,
+              (relocation));
+         else
+           _bfd_error_handler
+             (_("%B(%A+0x%lx): CMEM relocation to `%s+0x%lx' is invalid, "
+                "16 MSB should be 0x%04x (value is 0x%lx)"),
+              reloc_data.input_section->owner,
+              reloc_data.input_section,
+              reloc_data.reloc_offset,
+              reloc_data.symbol_name,
+              reloc_data.reloc_addend,
+              NPS_CMEM_HIGH_VALUE,
+              (relocation));
+         return bfd_reloc_overflow;
+       }
       break;
 
     default:
@@ -874,7 +871,9 @@ arc_special_overflow_checks (const struct arc_relocation_data reloc_data,
            (reloc_data.input_section->output_section->vma \
             + reloc_data.input_section->output_offset \
             + (reloc_data.reloc_offset))))
-#define SECTSTART (bfd_signed_vma) (reloc_data.input_section->output_offset)
+#define SECTSTART (bfd_signed_vma) (reloc_data.sym_section->output_section->vma \
+                                   + reloc_data.sym_section->output_offset)
+
 #define _SDA_BASE_ (bfd_signed_vma) (reloc_data.sdata_begin_symbol_vma)
 #define TLS_REL (bfd_signed_vma) \
   ((elf_hash_table (info))->tls_sec->output_section->vma)
@@ -883,60 +882,67 @@ arc_special_overflow_checks (const struct arc_relocation_data reloc_data,
 
 #define none (0)
 
-#define PRINT_DEBUG_RELOC_INFO_BEFORE(FORMULA, TYPE) \
-    {\
-      asection *sym_section = reloc_data.sym_section; \
-      asection *input_section = reloc_data.input_section; \
-      ARC_DEBUG ("RELOC_TYPE = " TYPE "\n"); \
-      ARC_DEBUG ("FORMULA = " FORMULA "\n"); \
-      ARC_DEBUG ("S = 0x%x\n", S); \
-      ARC_DEBUG ("A = 0x%x\n", A); \
-      ARC_DEBUG ("L = 0x%x\n", L); \
-      if (sym_section->output_section != NULL) \
-       { \
-         ARC_DEBUG ("symbol_section->vma = 0x%x\n", \
-            sym_section->output_section->vma + sym_section->output_offset); \
-       } \
-      else \
-       { \
-         ARC_DEBUG ("symbol_section->vma = NULL\n"); \
-       } \
-      if (input_section->output_section != NULL) \
-       { \
-         ARC_DEBUG ("symbol_section->vma = 0x%x\n", \
-            input_section->output_section->vma + input_section->output_offset); \
-       } \
-      else \
-       { \
-         ARC_DEBUG ("symbol_section->vma = NULL\n"); \
-       } \
-      ARC_DEBUG ("PCL = 0x%x\n", P); \
-      ARC_DEBUG ("P = 0x%x\n", P); \
-      ARC_DEBUG ("G = 0x%x\n", G); \
-      ARC_DEBUG ("SDA_OFFSET = 0x%x\n", _SDA_BASE_); \
+#ifdef ARC_ENABLE_DEBUG
+#define PRINT_DEBUG_RELOC_INFO_BEFORE(FORMULA, TYPE)                   \
+  do                                                                   \
+    {                                                                  \
+      asection *sym_section = reloc_data.sym_section;                  \
+      asection *input_section = reloc_data.input_section;              \
+      ARC_DEBUG ("RELOC_TYPE = " TYPE "\n");                           \
+      ARC_DEBUG ("FORMULA = " FORMULA "\n");                           \
+      ARC_DEBUG ("S = %#lx\n", S);                                     \
+      ARC_DEBUG ("A = %#lx\n", A);                                     \
+      ARC_DEBUG ("L = %lx\n", L);                                      \
+      if (sym_section->output_section != NULL)                         \
+       ARC_DEBUG ("symbol_section->vma = %#lx\n",                      \
+                  sym_section->output_section->vma                     \
+                  + sym_section->output_offset);                       \
+      else                                                             \
+       ARC_DEBUG ("symbol_section->vma = NULL\n");                     \
+      if (input_section->output_section != NULL)                       \
+       ARC_DEBUG ("symbol_section->vma = %#lx\n",                      \
+                  input_section->output_section->vma                   \
+                  + input_section->output_offset);                     \
+      else                                                             \
+       ARC_DEBUG ("symbol_section->vma = NULL\n");                     \
+      ARC_DEBUG ("PCL = %#lx\n", P);                                   \
+      ARC_DEBUG ("P = %#lx\n", P);                                     \
+      ARC_DEBUG ("G = %#lx\n", G);                                     \
+      ARC_DEBUG ("SDA_OFFSET = %#lx\n", _SDA_BASE_);                   \
       ARC_DEBUG ("SDA_SET = %d\n", reloc_data.sdata_begin_symbol_vma_set); \
-      ARC_DEBUG ("GOT_OFFSET = 0x%x\n", GOT); \
-      ARC_DEBUG ("relocation = 0x%08x\n", relocation); \
-      ARC_DEBUG ("before = 0x%08x\n", (unsigned int) insn); \
-      ARC_DEBUG ("data   = 0x%08x (%u) (%d)\n", (unsigned int) relocation, (unsigned int) relocation, (int) relocation); \
-    }
+      ARC_DEBUG ("GOT_OFFSET = %#lx\n", GOT);                          \
+      ARC_DEBUG ("relocation = %#08lx\n", relocation);                 \
+      ARC_DEBUG ("before = %#08x\n", (unsigned) insn);                 \
+      ARC_DEBUG ("data   = %08x (%u) (%d)\n", (unsigned) relocation,   \
+                (unsigned) relocation, (int) relocation);              \
+    }                                                                  \
+  while (0)
+
+#define PRINT_DEBUG_RELOC_INFO_AFTER                           \
+  do                                                           \
+    {                                                          \
+      ARC_DEBUG ("after  = 0x%08x\n", (unsigned int) insn);    \
+    }                                                          \
+  while (0)
 
-#define PRINT_DEBUG_RELOC_INFO_AFTER \
-    { \
-      ARC_DEBUG ("after  = 0x%08x\n", (unsigned int) insn); \
-    }
+#else
+
+#define PRINT_DEBUG_RELOC_INFO_BEFORE(...)
+#define PRINT_DEBUG_RELOC_INFO_AFTER 
+
+#endif /* ARC_ENABLE_DEBUG */
 
 #define ARC_RELOC_HOWTO(TYPE, VALUE, SIZE, BITSIZE, RELOC_FUNCTION, OVERFLOW, FORMULA) \
-  case R_##TYPE: \
-    { \
-      bfd_signed_vma bitsize ATTRIBUTE_UNUSED = BITSIZE; \
-      relocation = FORMULA  ; \
-      PRINT_DEBUG_RELOC_INFO_BEFORE (#FORMULA, #TYPE); \
-      insn = middle_endian_convert (insn, IS_ME (#FORMULA, abfd)); \
-      insn = (* get_replace_function (abfd, TYPE)) (insn, relocation); \
-      insn = middle_endian_convert (insn, IS_ME (#FORMULA, abfd)); \
-      PRINT_DEBUG_RELOC_INFO_AFTER \
-    } \
+  case R_##TYPE:                                                       \
+    {                                                                  \
+      bfd_signed_vma bitsize ATTRIBUTE_UNUSED = BITSIZE;               \
+      relocation = FORMULA  ;                                          \
+      PRINT_DEBUG_RELOC_INFO_BEFORE (#FORMULA, #TYPE);                 \
+      insn = middle_endian_convert (insn, IS_ME (#FORMULA, abfd));     \
+      insn = (* get_replace_function (abfd, TYPE)) (insn, relocation); \
+      insn = middle_endian_convert (insn, IS_ME (#FORMULA, abfd));     \
+      PRINT_DEBUG_RELOC_INFO_AFTER;                                    \
+    }                                                                  \
     break;
 
 static bfd_reloc_status_type
@@ -991,31 +997,23 @@ arc_do_relocation (bfd_byte * contents,
   /* Check for relocation overflow.  */
   if (reloc_data.howto->complain_on_overflow != complain_overflow_dont)
     flag = bfd_check_overflow (reloc_data.howto->complain_on_overflow,
-                               reloc_data.howto->bitsize,
-                               reloc_data.howto->rightshift,
-                               bfd_arch_bits_per_address (abfd),
-                               relocation);
+                              reloc_data.howto->bitsize,
+                              reloc_data.howto->rightshift,
+                              bfd_arch_bits_per_address (abfd),
+                              relocation);
   else
     flag = arc_special_overflow_checks (reloc_data, relocation, info);
 
-#undef  DEBUG_ARC_RELOC
-#define DEBUG_ARC_RELOC(A) debug_arc_reloc (A)
   if (flag != bfd_reloc_ok)
     {
-      PR_DEBUG ( "Relocation overflows !!!!\n");
-
+      ARC_DEBUG ("Relocation overflows !\n");
       DEBUG_ARC_RELOC (reloc_data);
+      ARC_DEBUG ("Relocation value = signed -> %d, unsigned -> %u"
+                ", hex -> (0x%08x)\n",
+               (int) relocation, (unsigned) relocation, (int) relocation);
 
-      PR_DEBUG (
-                "Relocation value = signed -> %d, unsigned -> %u"
-                ", hex -> (0x%08x)\n",
-                (int) relocation,
-                (unsigned int) relocation,
-                (unsigned int) relocation);
       return flag;
     }
-#undef  DEBUG_ARC_RELOC
-#define DEBUG_ARC_RELOC(A)
 
   /* Write updated instruction back to memory.  */
   switch (reloc_data.howto->size)
@@ -1058,28 +1056,6 @@ arc_do_relocation (bfd_byte * contents,
 
 #undef ARC_RELOC_HOWTO
 
-static struct got_entry **
-arc_get_local_got_ents (bfd * abfd)
-{
-  static struct got_entry **local_got_ents = NULL;
-
-  if (local_got_ents == NULL)
-    {
-      size_t      size;
-      Elf_Internal_Shdr *symtab_hdr = &((elf_tdata (abfd))->symtab_hdr);
-
-      size = symtab_hdr->sh_info * sizeof (bfd_vma);
-      local_got_ents = (struct got_entry **)
-       bfd_alloc (abfd, sizeof(struct got_entry *) * size);
-      if (local_got_ents == NULL)
-       return FALSE;
-
-      memset (local_got_ents, 0, sizeof(struct got_entry *) * size);
-      elf_local_got_ents (abfd) = local_got_ents;
-    }
-
-  return local_got_ents;
-}
 
 /* Relocate an arc ELF section.
    Function : elf_arc_relocate_section
@@ -1096,22 +1072,21 @@ arc_get_local_got_ents (bfd * abfd)
                              corresponding to the st_shndx field of each
                              local symbol.  */
 static bfd_boolean
-elf_arc_relocate_section (bfd *                   output_bfd,
+elf_arc_relocate_section (bfd *                          output_bfd,
                          struct bfd_link_info *  info,
-                         bfd *            input_bfd,
-                         asection *          input_section,
-                         bfd_byte *          contents,
+                         bfd *                   input_bfd,
+                         asection *              input_section,
+                         bfd_byte *              contents,
                          Elf_Internal_Rela *     relocs,
                          Elf_Internal_Sym *      local_syms,
-                         asection **        local_sections)
+                         asection **             local_sections)
 {
-  Elf_Internal_Shdr *     symtab_hdr;
-  struct elf_link_hash_entry ** sym_hashes;
-  struct got_entry **     local_got_ents;
-  Elf_Internal_Rela *     rel;
-  Elf_Internal_Rela *     wrel;
-  Elf_Internal_Rela *     relend;
-  struct elf_link_hash_table *htab = elf_hash_table (info);
+  Elf_Internal_Shdr *           symtab_hdr;
+  struct elf_link_hash_entry **  sym_hashes;
+  Elf_Internal_Rela *           rel;
+  Elf_Internal_Rela *           wrel;
+  Elf_Internal_Rela *           relend;
+  struct elf_link_hash_table *   htab = elf_hash_table (info);
 
   symtab_hdr = &((elf_tdata (input_bfd))->symtab_hdr);
   sym_hashes = elf_sym_hashes (input_bfd);
@@ -1122,11 +1097,12 @@ elf_arc_relocate_section (bfd *            output_bfd,
     {
       enum elf_arc_reloc_type       r_type;
       reloc_howto_type *           howto;
-      unsigned long             r_symndx;
+      unsigned long                r_symndx;
       struct elf_link_hash_entry *  h;
       Elf_Internal_Sym *           sym;
       asection *                   sec;
-      struct elf_link_hash_entry *h2;
+      struct elf_link_hash_entry *  h2;
+      const char *                  msg;
 
       struct arc_relocation_data reloc_data =
       {
@@ -1172,17 +1148,13 @@ elf_arc_relocate_section (bfd *            output_bfd,
                {
                  sec = local_sections[r_symndx];
 
-                 /* for RELA relocs.Just adjust the addend
+                 /* For RELA relocs.  Just adjust the addend
                     value in the relocation entry.  */
                  rel->r_addend += sec->output_offset + sym->st_value;
 
-                 BFD_DEBUG_PIC (
-                   PR_DEBUG ("local symbols reloc "
-                             "(section=%d %s) seen in %s\n",
-                             r_symndx,
-                             local_sections[r_symndx]->name,
-                             __PRETTY_FUNCTION__)
-                 );
+                 ARC_DEBUG ("local symbols reloc (section=%d %s) seen in %s\n",
+                            (int) r_symndx, local_sections[r_symndx]->name,
+                            __PRETTY_FUNCTION__);
                }
            }
        }
@@ -1196,8 +1168,8 @@ elf_arc_relocate_section (bfd *              output_bfd,
        /* TODO: Verify this condition.  */
        {
          reloc_data.sdata_begin_symbol_vma =
-           (h2->root.u.def.value +
-            h2->root.u.def.section->output_section->vma);
+           (h2->root.u.def.value
+            h2->root.u.def.section->output_section->vma);
          reloc_data.sdata_begin_symbol_vma_set = TRUE;
        }
 
@@ -1267,11 +1239,6 @@ elf_arc_relocate_section (bfd *             output_bfd,
 
       if (r_symndx < symtab_hdr->sh_info) /* A local symbol.  */
        {
-         struct got_entry *entry;
-
-         local_got_ents = arc_get_local_got_ents (output_bfd);
-         entry = local_got_ents[r_symndx];
-
          reloc_data.sym_value = sym->st_value;
          reloc_data.sym_section = sec;
          reloc_data.symbol_name =
@@ -1295,88 +1262,6 @@ elf_arc_relocate_section (bfd *             output_bfd,
              reloc_data.reloc_addend = rel->r_addend;
            }
 
-         if ((is_reloc_for_GOT (howto)
-              || is_reloc_for_TLS (howto)) && entry != NULL)
-           {
-             if (is_reloc_for_TLS (howto))
-               while (entry->type == GOT_NORMAL && entry->next != NULL)
-                 entry = entry->next;
-
-             if (is_reloc_for_GOT (howto))
-               while (entry->type != GOT_NORMAL && entry->next != NULL)
-                 entry = entry->next;
-
-             if (entry->type == GOT_TLS_GD && entry->processed == FALSE)
-               {
-                 bfd_vma sym_vma = sym->st_value
-                                   + sec->output_section->vma
-                                   + sec->output_offset;
-
-                 /* Create dynamic relocation for local sym.  */
-                 ADD_RELA (output_bfd, got, entry->offset, 0,
-                           R_ARC_TLS_DTPMOD, 0);
-                 ADD_RELA (output_bfd, got, entry->offset+4, 0,
-                           R_ARC_TLS_DTPOFF, 0);
-
-                 bfd_vma sec_vma = sec->output_section->vma
-                                   + sec->output_offset;
-                 bfd_put_32 (output_bfd, sym_vma - sec_vma,
-                             htab->sgot->contents + entry->offset + 4);
-
-                 ARC_DEBUG ("arc_info: FIXED -> GOT_TLS_GD value "
-                        "= 0x%x @ 0x%x, for symbol %s\n",
-                        sym_vma - sec_vma,
-                        htab->sgot->contents + entry->offset + 4,
-                        "(local)");
-
-                 entry->processed = TRUE;
-               }
-             if (entry->type == GOT_TLS_IE && entry->processed == FALSE)
-               {
-                 bfd_vma sym_vma = sym->st_value
-                                   + sec->output_section->vma
-                                   + sec->output_offset;
-                 bfd_vma sec_vma = htab->tls_sec->output_section->vma;
-                 bfd_put_32 (output_bfd, sym_vma - sec_vma,
-                             htab->sgot->contents + entry->offset);
-                 /* TODO: Check if this type of relocs is the cause
-                    for all the ARC_NONE dynamic relocs.  */
-
-                 ARC_DEBUG ("arc_info: FIXED -> GOT_TLS_IE value = "
-                        "0x%x @ 0x%x, for symbol %s\n",
-                        sym_vma - sec_vma,
-                        htab->sgot->contents + entry->offset,
-                        "(local)");
-
-                 entry->processed = TRUE;
-               }
-             if (entry->type == GOT_NORMAL && entry->processed == FALSE)
-               {
-                 bfd_vma sec_vma = reloc_data.sym_section->output_section->vma
-                                   + reloc_data.sym_section->output_offset;
-
-                 bfd_put_32 (output_bfd, reloc_data.sym_value + sec_vma,
-                             htab->sgot->contents + entry->offset);
-
-                 ARC_DEBUG ("arc_info: PATCHED: 0x%08x @ 0x%08x for "
-                        "sym %s in got offset 0x%x\n",
-                        reloc_data.sym_value + sec_vma,
-                        htab->sgot->output_section->vma
-                        + htab->sgot->output_offset + entry->offset,
-                        "(local)",
-                        entry->offset);
-                 entry->processed = TRUE;
-               }
-
-             reloc_data.got_offset_value = entry->offset;
-             ARC_DEBUG ("arc_info: GOT_ENTRY = %d, offset = 0x%x, "
-                    "vma = 0x%x for symbol %s\n",
-                    entry->type, entry->offset,
-                    htab->sgot->output_section->vma
-                    + htab->sgot->output_offset + entry->offset,
-                    "(local)");
-           }
-
          BFD_ASSERT (htab->sgot != NULL || !is_reloc_for_GOT (howto));
          if (htab->sgot != NULL)
            reloc_data.got_symbol_vma = htab->sgot->output_section->vma
@@ -1386,6 +1271,9 @@ elf_arc_relocate_section (bfd *              output_bfd,
        }
       else /* Global symbol.  */
        {
+         /* FIXME: We should use the RELOC_FOR_GLOBAL_SYMBOL macro
+            (defined in elf-bfd.h) here.  */
+
          /* Get the symbol's entry in the symtab.  */
          h = sym_hashes[r_symndx - symtab_hdr->sh_info];
 
@@ -1462,124 +1350,19 @@ elf_arc_relocate_section (bfd *                   output_bfd,
                {
                  /* Fail if it is linking for PIE and the symbol is
                     undefined.  */
-                 if (bfd_link_executable (info)
-                     && !(*info->callbacks->undefined_symbol)
-                       (info, h->root.root.string, input_bfd, input_section,
-                        rel->r_offset, TRUE))
-                   {
-                     return FALSE;
-                   }
+                 if (bfd_link_executable (info))
+                   (*info->callbacks->undefined_symbol)
+                     (info, h->root.root.string, input_bfd, input_section,
+                      rel->r_offset, TRUE);
                  reloc_data.sym_value = h->plt.offset;
                  reloc_data.sym_section = htab->splt;
 
                  reloc_data.should_relocate = TRUE;
                }
-             else if (!bfd_link_pic (info)
-                      && !(*info->callbacks->undefined_symbol)
-                      (info, h->root.root.string, input_bfd, input_section,
-                       rel->r_offset, TRUE))
-               {
-                 return FALSE;
-               }
-           }
-
-         if (h->got.glist != NULL)
-           {
-             struct got_entry *entry = h->got.glist;
-
-             if (is_reloc_for_GOT (howto) || is_reloc_for_TLS (howto))
-               {
-                 if (! elf_hash_table (info)->dynamic_sections_created
-                     || (bfd_link_pic (info)
-                         && SYMBOL_REFERENCES_LOCAL (info, h)))
-                   {
-                     reloc_data.sym_value = h->root.u.def.value;
-                     reloc_data.sym_section = h->root.u.def.section;
-
-                     if (is_reloc_for_TLS (howto))
-                       while (entry->type == GOT_NORMAL && entry->next != NULL)
-                         entry = entry->next;
-
-                     if (entry->processed == FALSE
-                         && (entry->type == GOT_TLS_GD
-                             || entry->type == GOT_TLS_IE))
-                       {
-                         bfd_vma sym_value = h->root.u.def.value
-                           + h->root.u.def.section->output_section->vma
-                           + h->root.u.def.section->output_offset;
-
-                         bfd_vma sec_vma =
-                           elf_hash_table (info)->tls_sec->output_section->vma;
-
-                         bfd_put_32 (output_bfd,
-                                     sym_value - sec_vma,
-                                     htab->sgot->contents + entry->offset
-                                     + (entry->existing_entries == TLS_GOT_MOD_AND_OFF ? 4 : 0));
-
-                         ARC_DEBUG ("arc_info: FIXED -> %s value = 0x%x "
-                                    "@ 0x%x, for symbol %s\n",
-                                    (entry->type == GOT_TLS_GD ? "GOT_TLS_GD" :
-                                     "GOT_TLS_IE"),
-                                    sym_value - sec_vma,
-                                    htab->sgot->contents + entry->offset
-                                    + (entry->existing_entries == TLS_GOT_MOD_AND_OFF ? 4 : 0),
-                                    h->root.root.string);
-
-                         entry->processed = TRUE;
-                       }
-
-                     if (entry->type == GOT_TLS_IE && entry->processed == FALSE)
-                       {
-                         bfd_vma sec_vma = htab->tls_sec->output_section->vma;
-                         bfd_put_32 (output_bfd,
-                                     reloc_data.sym_value - sec_vma,
-                                     htab->sgot->contents + entry->offset);
-                       }
-
-                     if (entry->type == GOT_NORMAL && entry->processed == FALSE)
-                       {
-                         bfd_vma sec_vma =
-                           reloc_data.sym_section->output_section->vma
-                           + reloc_data.sym_section->output_offset;
-
-                         if (h->root.type != bfd_link_hash_undefweak)
-                           {
-                             bfd_put_32 (output_bfd,
-                                         reloc_data.sym_value + sec_vma,
-                                         htab->sgot->contents + entry->offset);
-
-                             ARC_DEBUG ("arc_info: PATCHED: 0x%08x "
-                                        "@ 0x%08x for sym %s in got offset 0x%x\n",
-                                        reloc_data.sym_value + sec_vma,
-                                        htab->sgot->output_section->vma
-                                        + htab->sgot->output_offset + entry->offset,
-                                        h->root.root.string,
-                                        entry->offset);
-                           }
-                         else
-                           {
-                             ARC_DEBUG ("arc_info: PATCHED: NOT_PATCHED "
-                                        "@ 0x%08x for sym %s in got offset 0x%x "
-                                        "(is undefweak)\n",
-                                        htab->sgot->output_section->vma
-                                        + htab->sgot->output_offset + entry->offset,
-                                        h->root.root.string,
-                                        entry->offset);
-                           }
-
-                         entry->processed = TRUE;
-                       }
-                   }
-               }
-
-             reloc_data.got_offset_value = entry->offset;
-
-             ARC_DEBUG ("arc_info: GOT_ENTRY = %d, offset = 0x%x, "
-                        "vma = 0x%x for symbol %s\n",
-                        entry->type, entry->offset,
-                        htab->sgot->output_section->vma
-                        + htab->sgot->output_offset + entry->offset,
-                        h->root.root.string);
+             else if (!bfd_link_pic (info) || bfd_link_executable (info))
+               (*info->callbacks->undefined_symbol)
+                 (info, h->root.root.string, input_bfd, input_section,
+                  rel->r_offset, TRUE);
            }
 
          BFD_ASSERT (htab->sgot != NULL || !is_reloc_for_GOT (howto));
@@ -1588,13 +1371,41 @@ elf_arc_relocate_section (bfd *            output_bfd,
                                        + htab->sgot->output_offset;
        }
 
+      if ((is_reloc_for_GOT (howto)
+          || is_reloc_for_TLS (howto)))
+       {
+         reloc_data.should_relocate = TRUE;
+
+         struct got_entry **list
+           = get_got_entry_list_for_symbol (output_bfd, r_symndx, h);
+
+         reloc_data.got_offset_value
+           = relocate_fix_got_relocs_for_got_info (list,
+                                                   tls_type_for_reloc (howto),
+                                                   info,
+                                                   output_bfd,
+                                                   r_symndx,
+                                                   local_syms,
+                                                   local_sections,
+                                                   h,
+                                                   &reloc_data);
+
+         if (h == NULL)
+           {
+             create_got_dynrelocs_for_single_entry (
+                 got_entry_for_type (list,
+                               arc_got_entry_type_for_reloc (howto)),
+                 output_bfd, info, NULL);
+           }
+       }
+
       switch (r_type)
        {
          case R_ARC_32:
          case R_ARC_32_ME:
          case R_ARC_PC32:
          case R_ARC_32_PCREL:
-           if (bfd_link_pic (info) && !bfd_link_pie (info)
+           if ((bfd_link_pic (info))
                && ((r_type != R_ARC_PC32 && r_type != R_ARC_32_PCREL)
                    || (h != NULL
                        && h->dynindx != -1
@@ -1622,8 +1433,9 @@ elf_arc_relocate_section (bfd *              output_bfd,
                                    + input_section->output_offset);
 
 #define IS_ARC_PCREL_TYPE(TYPE) \
-  (   (TYPE == R_ARC_PC32) \
+  (   (TYPE == R_ARC_PC32)      \
    || (TYPE == R_ARC_32_PCREL))
+
                if (skip)
                  {
                    memset (&outrel, 0, sizeof outrel);
@@ -1681,16 +1493,109 @@ elf_arc_relocate_section (bfd *                   output_bfd,
       if (is_reloc_SDA_relative (howto)
          && (reloc_data.sdata_begin_symbol_vma_set == FALSE))
        {
-         (*_bfd_error_handler)
-             ("Error: Linker symbol __SDATA_BEGIN__ not found");
+         _bfd_error_handler
+           ("Error: Linker symbol __SDATA_BEGIN__ not found");
          bfd_set_error (bfd_error_bad_value);
          return FALSE;
        }
 
       DEBUG_ARC_RELOC (reloc_data);
 
-      if (arc_do_relocation (contents, reloc_data, info) != bfd_reloc_ok)
-       return FALSE;
+      /* Make sure we have with a dynamic linker.  In case of GOT and PLT
+        the sym_section should point to .got or .plt respectively.  */
+      if ((is_reloc_for_GOT (howto) || is_reloc_for_PLT (howto))
+         && reloc_data.sym_section == NULL)
+       {
+         _bfd_error_handler
+           (_("GOT and PLT relocations cannot be fixed with a non dynamic linker."));
+         bfd_set_error (bfd_error_bad_value);
+         return FALSE;
+       }
+
+      msg = NULL;
+      switch (arc_do_relocation (contents, reloc_data, info))
+       {
+       case bfd_reloc_ok:
+         continue; /* The reloc processing loop.  */
+
+       case bfd_reloc_overflow:
+         (*info->callbacks->reloc_overflow)
+           (info, (h ? &h->root : NULL), reloc_data.symbol_name, howto->name, (bfd_vma) 0,
+            input_bfd, input_section, rel->r_offset);
+         break;
+
+       case bfd_reloc_undefined:
+         (*info->callbacks->undefined_symbol)
+           (info, reloc_data.symbol_name, input_bfd, input_section, rel->r_offset, TRUE);
+         break;
+
+       case bfd_reloc_other:
+         msg = _("%B(%A): warning: unaligned access to symbol '%s' in the small data area");
+         break;
+
+       case bfd_reloc_outofrange:
+         msg = _("%B(%A): internal error: out of range error");
+         break;
+
+       case bfd_reloc_notsupported:
+         msg = _("%B(%A): internal error: unsupported relocation error");
+         break;
+
+       case bfd_reloc_dangerous:
+         msg = _("%B(%A): internal error: dangerous relocation");
+         break;
+
+       default:
+         msg = _("%B(%A): internal error: unknown error");
+         break;
+       }
+
+      if (msg)
+       _bfd_error_handler (msg, input_bfd, input_section, reloc_data.symbol_name);
+      return FALSE;
+    }
+
+  return TRUE;
+}
+
+#define elf_arc_hash_table(p) \
+    (elf_hash_table_id ((struct elf_link_hash_table *) ((p)->hash)) \
+  == ARC_ELF_DATA ? ((struct elf_arc_link_hash_table *) ((p)->hash)) : NULL)
+
+/* Create .plt, .rela.plt, .got, .got.plt, .rela.got, .dynbss, and
+   .rela.bss sections in DYNOBJ, and set up shortcuts to them in our
+   hash table.  */
+
+static bfd_boolean
+arc_elf_create_dynamic_sections (bfd *dynobj,
+                                   struct bfd_link_info *info)
+{
+  struct elf_arc_link_hash_table *htab;
+
+  if (!_bfd_elf_create_dynamic_sections (dynobj, info))
+    return FALSE;
+
+  htab = elf_arc_hash_table (info);
+  if (htab == NULL)
+    return FALSE;
+
+  if (bfd_link_executable (info))
+    {
+      /* Always allow copy relocs for building executables.  */
+      asection *s = bfd_get_linker_section (dynobj, ".rela.bss");
+      if (s == NULL)
+       {
+         const struct elf_backend_data *bed = get_elf_backend_data (dynobj);
+         s = bfd_make_section_anyway_with_flags (dynobj,
+                                                 ".rela.bss",
+                                                 (bed->dynamic_sec_flags
+                                                  | SEC_READONLY));
+         if (s == NULL
+             || ! bfd_set_section_alignment (dynobj, s,
+                                             bed->s->log_file_align))
+           return FALSE;
+       }
+      htab->srelbss = s;
     }
 
   return TRUE;
@@ -1748,38 +1653,18 @@ arc_create_dynamic_sections (bfd * abfd, struct bfd_link_info *info)
   return ds;
 }
 
-#define ADD_SYMBOL_REF_SEC_AND_RELOC(SECNAME, COND_FOR_RELOC, H)       \
-  htab->s##SECNAME->size;                                              \
-  {                                                                    \
-    if (COND_FOR_RELOC)                                                        \
-      {                                                                        \
-       htab->srel##SECNAME->size += sizeof (Elf32_External_Rela);      \
-         ARC_DEBUG ("arc_info: Added reloc space in "                  \
-                    #SECNAME " section at " __FILE__                   \
-                    ":%d for symbol\n",                                \
-                    __LINE__, name_for_global_symbol (H));             \
-      }                                                                        \
-    if (H)                                                             \
-      if (h->dynindx == -1 && !h->forced_local)                                \
-       if (! bfd_elf_link_record_dynamic_symbol (info, H))             \
-         return FALSE;                                                 \
-     htab->s##SECNAME->size += 4;                      \
-   }
-
 static bfd_boolean
-elf_arc_check_relocs (bfd *                     abfd,
+elf_arc_check_relocs (bfd *                     abfd,
                      struct bfd_link_info *     info,
                      asection *                 sec,
                      const Elf_Internal_Rela *  relocs)
 {
   Elf_Internal_Shdr *          symtab_hdr;
   struct elf_link_hash_entry **        sym_hashes;
-  struct got_entry **          local_got_ents;
   const Elf_Internal_Rela *    rel;
   const Elf_Internal_Rela *    rel_end;
   bfd *                                dynobj;
   asection *                   sreloc = NULL;
-  struct elf_link_hash_table *  htab = elf_hash_table (info);
 
   if (bfd_link_relocatable (info))
     return TRUE;
@@ -1787,7 +1672,6 @@ elf_arc_check_relocs (bfd *                        abfd,
   dynobj = (elf_hash_table (info))->dynobj;
   symtab_hdr = &((elf_tdata (abfd))->symtab_hdr);
   sym_hashes = elf_sym_hashes (abfd);
-  local_got_ents = arc_get_local_got_ents (abfd);
 
   rel_end = relocs + sec->reloc_count;
   for (rel = relocs; rel < rel_end; rel++)
@@ -1831,7 +1715,7 @@ elf_arc_check_relocs (bfd *                        abfd,
               and the dynamic linker can not resolve these.  However
               the error should not occur for e.g. debugging or
               non-readonly sections.  */
-           if (bfd_link_dll (info) && !bfd_link_pie (info)
+           if ((bfd_link_dll (info) && !bfd_link_pie (info))
                && (sec->flags & SEC_ALLOC) != 0
                && (sec->flags & SEC_READONLY) != 0
                && ((sec->flags & SEC_CODE) != 0
@@ -1843,7 +1727,7 @@ elf_arc_check_relocs (bfd *                        abfd,
                else
                  /* bfd_elf_sym_name (abfd, symtab_hdr, isym, NULL);  */
                  name = "UNKNOWN";
-               (*_bfd_error_handler)
+               _bfd_error_handler
                  (_("\
 %B: relocation %s against `%s' can not be used when making a shared object; recompile with -fPIC"),
                    abfd,
@@ -1862,10 +1746,9 @@ elf_arc_check_relocs (bfd *                       abfd,
            /* FALLTHROUGH */
          case R_ARC_PC32:
          case R_ARC_32_PCREL:
-           if (bfd_link_pic (info) && !bfd_link_pie (info)
+           if ((bfd_link_pic (info))
                && ((r_type != R_ARC_PC32 && r_type != R_ARC_32_PCREL)
                    || (h != NULL
-                       && h->dynindx != -1
                        && (!info->symbolic || !h->def_regular))))
              {
                if (sreloc == NULL)
@@ -1893,75 +1776,15 @@ elf_arc_check_relocs (bfd *                      abfd,
            h->needs_plt = 1;
        }
 
-      if (is_reloc_for_GOT (howto) == TRUE)
-       {
-         if (h == NULL)
-           {
-             /* Local symbol.  */
-             if (local_got_ents[r_symndx] == NULL)
-               {
-                 bfd_vma offset =
-                   ADD_SYMBOL_REF_SEC_AND_RELOC (got,
-                                                 bfd_link_pic (info),
-                                                 NULL);
-                 new_got_entry_to_list (&(local_got_ents[r_symndx]),
-                                        GOT_NORMAL, offset, TLS_GOT_NONE);
-               }
-           }
-         else
-           {
-             /* Global symbol.  */
-             h = sym_hashes[r_symndx - symtab_hdr->sh_info];
-             if (h->got.glist == NULL)
-               {
-                 bfd_vma offset =
-                   ADD_SYMBOL_REF_SEC_AND_RELOC (got, TRUE, h);
-                 new_got_entry_to_list (&h->got.glist,
-                                        GOT_NORMAL, offset, TLS_GOT_NONE);
-               }
-           }
-       }
-
-      if (is_reloc_for_TLS (howto) == TRUE)
+      /* Add info to the symbol got_entry_list.  */
+      if (is_reloc_for_GOT (howto) == TRUE
+         || is_reloc_for_TLS (howto) == TRUE)
        {
-         enum tls_type_e type = GOT_UNKNOWN;
-
-         switch (r_type)
-           {
-             case R_ARC_TLS_GD_GOT:
-               type = GOT_TLS_GD;
-               break;
-             case R_ARC_TLS_IE_GOT:
-               type = GOT_TLS_IE;
-               break;
-             default:
-               break;
-           }
-
-         struct got_entry **list = NULL;
-         if (h != NULL)
-           list = &(h->got.glist);
-         else
-           list = &(local_got_ents[r_symndx]);
-
-         if (type != GOT_UNKNOWN && !symbol_has_entry_of_type (*list, type))
-           {
-             enum tls_got_entries entries = TLS_GOT_NONE;
-             bfd_vma offset =
-               ADD_SYMBOL_REF_SEC_AND_RELOC (got, TRUE, h);
-
-             if (type == GOT_TLS_GD)
-               {
-                 bfd_vma ATTRIBUTE_UNUSED notneeded =
-                   ADD_SYMBOL_REF_SEC_AND_RELOC (got, TRUE, h);
-                 entries = TLS_GOT_MOD_AND_OFF;
-               }
-
-             if (entries == TLS_GOT_NONE)
-               entries = TLS_GOT_OFF;
-
-             new_got_entry_to_list (list, type, offset, entries);
-           }
+         arc_fill_got_info_for_reloc (
+                 arc_got_entry_type_for_reloc (howto),
+                 get_got_entry_list_for_symbol (abfd, r_symndx, h),
+                 info,
+                 h);
        }
     }
 
@@ -1978,8 +1801,8 @@ arc_get_plt_version (struct bfd_link_info *info)
   for (i = 0; i < 1; i++)
     {
       ARC_DEBUG ("%d: size1 = %d, size2 = %d\n", i,
-                plt_versions[i].entry_size,
-                plt_versions[i].elem_size);
+                (int) plt_versions[i].entry_size,
+                (int) plt_versions[i].elem_size);
     }
 
   if (bfd_get_mach (info->output_bfd) == bfd_mach_arc_arcv2)
@@ -2014,7 +1837,7 @@ add_symbol_to_plt (struct bfd_link_info *info)
   ret = htab->splt->size;
 
   htab->splt->size += plt_data->elem_size;
-  ARC_DEBUG ("PLT_SIZE = %d\n", htab->splt->size);
+  ARC_DEBUG ("PLT_SIZE = %d\n", (int) htab->splt->size);
 
   htab->sgotplt->size += 4;
   htab->srelplt->size += sizeof (Elf32_External_Rela);
@@ -2039,9 +1862,9 @@ plt_do_relocs_for_symbol (bfd *abfd,
       switch (SYM_ONLY (reloc->symbol))
        {
          case SGOT:
-               relocation =
-                   htab->sgotplt->output_section->vma +
-                   htab->sgotplt->output_offset + symbol_got_offset;
+               relocation
+                 = htab->sgotplt->output_section->vma
+                   htab->sgotplt->output_offset + symbol_got_offset;
                break;
        }
       relocation += reloc->addend;
@@ -2061,9 +1884,9 @@ plt_do_relocs_for_symbol (bfd *abfd,
         section of which is applying the relocation. */
       if (IS_MIDDLE_ENDIAN (reloc->symbol) && !bfd_big_endian (abfd))
        {
-         relocation =
-             ((relocation & 0xffff0000) >> 16) |
-             ((relocation & 0xffff) << 16);
+         relocation
+           = ((relocation & 0xffff0000) >> 16)
+             ((relocation & 0xffff) << 16);
        }
 
       switch (reloc->size)
@@ -2091,22 +1914,22 @@ relocate_plt_for_symbol (bfd *output_bfd,
                      / plt_data->elem_size;
   bfd_vma got_offset = (plt_index + 3) * 4;
 
-  ARC_DEBUG ("arc_info: PLT_OFFSET = 0x%x, PLT_ENTRY_VMA = 0x%x, \
-GOT_ENTRY_OFFSET = 0x%x, GOT_ENTRY_VMA = 0x%x, for symbol %s\n",
-            h->plt.offset,
-            htab->splt->output_section->vma
-            + htab->splt->output_offset
-            + h->plt.offset,
-            got_offset,
-            htab->sgotplt->output_section->vma
-            + htab->sgotplt->output_offset
-            + got_offset,
+  ARC_DEBUG ("arc_info: PLT_OFFSET = %#lx, PLT_ENTRY_VMA = %#lx, \
+GOT_ENTRY_OFFSET = %#lx, GOT_ENTRY_VMA = %#lx, for symbol %s\n",
+            (long) h->plt.offset,
+            (long) (htab->splt->output_section->vma
+                    + htab->splt->output_offset
+                    + h->plt.offset),
+            (long) got_offset,
+            (long) (htab->sgotplt->output_section->vma
+                    + htab->sgotplt->output_offset
+                    + got_offset),
             h->root.root.string);
 
-
   {
     bfd_vma i = 0;
     uint16_t *ptr = (uint16_t *) plt_data->elem;
+
     for (i = 0; i < plt_data->elem_size/2; i++)
       {
        uint16_t data = ptr[i];
@@ -2206,7 +2029,7 @@ elf_arc_adjust_dynamic_symbol (struct bfd_link_info *info,
        {
          bfd_vma loc = add_symbol_to_plt (info);
 
-         if (!bfd_link_pic (info) && !h->def_regular)
+         if (bfd_link_executable (info) && !h->def_regular)
            {
              h->root.u.def.section = htab->splt;
              h->root.u.def.value = loc;
@@ -2274,14 +2097,14 @@ elf_arc_adjust_dynamic_symbol (struct bfd_link_info *info,
      .rela.bss section we are going to use.  */
   if ((h->root.u.def.section->flags & SEC_ALLOC) != 0)
     {
-      asection *srel;
+      struct elf_arc_link_hash_table *arc_htab = elf_arc_hash_table (info);
 
-      srel = bfd_get_section_by_name (dynobj, ".rela.bss");
-      BFD_ASSERT (srel != NULL);
-      srel->size += sizeof (Elf32_External_Rela);
+      BFD_ASSERT (arc_htab->srelbss != NULL);
+      arc_htab->srelbss->size += sizeof (Elf32_External_Rela);
       h->needs_copy = 1;
     }
 
+  /* TODO: Move this also to arc_hash_table.  */
   s = bfd_get_section_by_name (dynobj, ".dynbss");
   BFD_ASSERT (s != NULL);
 
@@ -2315,98 +2138,33 @@ elf_arc_finish_dynamic_symbol (bfd * output_bfd,
        }
     }
 
-  if (h->got.glist != NULL)
-    {
-      struct got_entry *list = h->got.glist;
-
-      /* Traverse the list of got entries for this symbol.  */
-      while (list)
-       {
-         bfd_vma got_offset = h->got.glist->offset;
-
-         if (list->type == GOT_NORMAL
-             && list->created_dyn_relocation == FALSE)
-           {
-             if (bfd_link_pic (info)
-                 && (info->symbolic || h->dynindx == -1)
-                 && h->def_regular)
-               {
-                 ADD_RELA (output_bfd, got, got_offset, 0, R_ARC_RELATIVE, 0);
-               }
-             /* Do not fully understand the side effects of this condition.
-                The relocation space might still being reserved.  Perhaps
-                I should clear its value.  */
-             else if (h->dynindx != -1)
-               {
-                 ADD_RELA (output_bfd, got, got_offset, h->dynindx,
-                         R_ARC_GLOB_DAT, 0);
-               }
-             list->created_dyn_relocation = TRUE;
-           }
-         else if (list->existing_entries != TLS_GOT_NONE)
-           {
-             struct elf_link_hash_table *htab = elf_hash_table (info);
-             enum tls_got_entries e = list->existing_entries;
-
-             BFD_ASSERT (list->type != GOT_TLS_GD
-                         || list->existing_entries == TLS_GOT_MOD_AND_OFF);
-
-             bfd_vma dynindx = h->dynindx == -1 ? 0 : h->dynindx;
-             if (e == TLS_GOT_MOD_AND_OFF || e == TLS_GOT_MOD)
-               {
-                 ADD_RELA (output_bfd, got, got_offset, dynindx,
-                           R_ARC_TLS_DTPMOD, 0);
-                 ARC_DEBUG ("arc_info: TLS_DYNRELOC: type = %d, \
-GOT_OFFSET = 0x%x, GOT_VMA = 0x%x, INDEX = %d, ADDEND = 0x%x\n",
-                            list->type,
-                            got_offset,
-                            htab->sgot->output_section->vma
-                            + htab->sgot->output_offset + got_offset,
-                            dynindx, 0);
-               }
-             if (e == TLS_GOT_MOD_AND_OFF || e == TLS_GOT_OFF)
-               {
-                 bfd_vma addend = 0;
-                 if (list->type == GOT_TLS_IE)
-                   addend = bfd_get_32 (output_bfd,
-                                        htab->sgot->contents + got_offset);
-
-                 ADD_RELA (output_bfd, got,
-                           got_offset + (e == TLS_GOT_MOD_AND_OFF ? 4 : 0),
-                           dynindx,
-                           (list->type == GOT_TLS_IE ?
-                            R_ARC_TLS_TPOFF : R_ARC_TLS_DTPOFF),
-                           addend);
-
-                 ARC_DEBUG ("arc_info: TLS_DYNRELOC: type = %d, \
-GOT_OFFSET = 0x%x, GOT_VMA = 0x%x, INDEX = %d, ADDEND = 0x%x\n",
-                            list->type,
-                            got_offset,
-                            htab->sgot->output_section->vma
-                            + htab->sgot->output_offset + got_offset,
-                            dynindx, addend);
-               }
-           }
 
-         list = list->next;
-       }
-
-      h->got.glist = NULL;
-    }
+  /* This function traverses list of GOT entries and
+     create respective dynamic relocs.  */
+  /* TODO: Make function to get list and not access the list directly.  */
+  /* TODO: Move function to relocate_section create this relocs eagerly.  */
+  create_got_dynrelocs_for_got_info (&h->got.glist,
+                                    output_bfd,
+                                    info,
+                                    h);
 
   if (h->needs_copy)
     {
+      struct elf_arc_link_hash_table *arc_htab = elf_arc_hash_table (info);
+
+      if (h->dynindx == -1
+         || (h->root.type != bfd_link_hash_defined
+             && h->root.type != bfd_link_hash_defweak)
+         || arc_htab->srelbss == NULL)
+       abort ();
+
       bfd_vma rel_offset = (h->root.u.def.value
                            + h->root.u.def.section->output_section->vma
                            + h->root.u.def.section->output_offset);
 
-      asection *srelbss =
-       bfd_get_section_by_name (h->root.u.def.section->owner,
-                                ".rela.bss");
-
-      bfd_byte * loc = srelbss->contents
-       + (srelbss->reloc_count * sizeof (Elf32_External_Rela));
-      srelbss->reloc_count++;
+      bfd_byte * loc = arc_htab->srelbss->contents
+       + (arc_htab->srelbss->reloc_count * sizeof (Elf32_External_Rela));
+      arc_htab->srelbss->reloc_count++;
 
       Elf_Internal_Rela rel;
       rel.r_addend = 0;
@@ -2457,8 +2215,8 @@ elf_arc_finish_dynamic_sections (bfd * output_bfd,
       Elf32_External_Dyn *dyncon, *dynconend;
 
       dyncon = (Elf32_External_Dyn *) ds.sdyn->contents;
-      dynconend =
-       (Elf32_External_Dyn *) (ds.sdyn->contents + ds.sdyn->size);
+      dynconend
+       (Elf32_External_Dyn *) (ds.sdyn->contents + ds.sdyn->size);
       for (; dyncon < dynconend; dyncon++)
        {
          Elf_Internal_Dyn internal_dyn;
@@ -2471,8 +2229,8 @@ elf_arc_finish_dynamic_sections (bfd * output_bfd,
 
          switch (internal_dyn.d_tag)
            {
-             GET_SYMBOL_OR_SECTION (DT_INIT, "_init", NULL)
-             GET_SYMBOL_OR_SECTION (DT_FINI, "_fini", NULL)
+             GET_SYMBOL_OR_SECTION (DT_INIT, info->init_function, NULL)
+             GET_SYMBOL_OR_SECTION (DT_FINI, info->fini_function, NULL)
              GET_SYMBOL_OR_SECTION (DT_PLTGOT, NULL, ".plt")
              GET_SYMBOL_OR_SECTION (DT_JMPREL, NULL, ".rela.plt")
              GET_SYMBOL_OR_SECTION (DT_PLTRELSZ, NULL, ".rela.plt")
@@ -2496,8 +2254,8 @@ elf_arc_finish_dynamic_sections (bfd * output_bfd,
              if (asec_ptr->output_section != NULL)
                {
                  internal_dyn.d_un.d_val +=
-                   (asec_ptr->output_section->vma +
-                    asec_ptr->output_offset);
+                   (asec_ptr->output_section->vma
+                    asec_ptr->output_offset);
                }
              else
                {
@@ -2554,17 +2312,24 @@ elf_arc_finish_dynamic_sections (bfd * output_bfd,
   /* Fill in the first three entries in the global offset table.  */
   if (htab->sgot)
     {
-      if (htab->sgot->size > 0 || htab->sgotplt->size > 0)
+      struct elf_link_hash_entry *h;
+      h = elf_link_hash_lookup (elf_hash_table (info), "_GLOBAL_OFFSET_TABLE_",
+                                FALSE, FALSE, TRUE);
+
+       if (h != NULL && h->root.type != bfd_link_hash_undefined
+           && h->root.u.def.section != NULL)
        {
+         asection *sec = h->root.u.def.section;
+
          if (ds.sdyn == NULL)
            bfd_put_32 (output_bfd, (bfd_vma) 0,
-                       htab->sgotplt->contents);
+                       sec->contents);
          else
            bfd_put_32 (output_bfd,
                        ds.sdyn->output_section->vma + ds.sdyn->output_offset,
-                       htab->sgotplt->contents);
-         bfd_put_32 (output_bfd, (bfd_vma) 0, htab->sgotplt->contents + 4);
-         bfd_put_32 (output_bfd, (bfd_vma) 0, htab->sgotplt->contents + 8);
+                       sec->contents);
+         bfd_put_32 (output_bfd, (bfd_vma) 0, sec->contents + 4);
+         bfd_put_32 (output_bfd, (bfd_vma) 0, sec->contents + 8);
        }
     }
 
@@ -2613,8 +2378,8 @@ elf_arc_size_dynamic_sections (bfd * output_bfd,
         section.  Checking if the .init section is present.  We also
         create DT_INIT and DT_FINI entries if the init_str has been
         changed by the user.  */
-      ADD_DYNAMIC_SYMBOL ("init", DT_INIT);
-      ADD_DYNAMIC_SYMBOL ("fini", DT_FINI);
+      ADD_DYNAMIC_SYMBOL (info->init_function, DT_INIT);
+      ADD_DYNAMIC_SYMBOL (info->fini_function, DT_FINI);
     }
   else
     {
@@ -2692,7 +2457,7 @@ elf_arc_size_dynamic_sections (bfd * output_bfd,
       if (relocs_exist == TRUE)
        if (!_bfd_elf_add_dynamic_entry (info, DT_RELA, 0)
            || !_bfd_elf_add_dynamic_entry (info, DT_RELASZ, 0)
-           || !_bfd_elf_add_dynamic_entry (info, DT_RELENT,
+           || !_bfd_elf_add_dynamic_entry (info, DT_RELAENT,
                                            sizeof (Elf32_External_Rela))
           )
          return FALSE;
@@ -2705,6 +2470,32 @@ elf_arc_size_dynamic_sections (bfd * output_bfd,
   return TRUE;
 }
 
+
+/* Classify dynamic relocs such that -z combreloc can reorder and combine
+   them.  */
+static enum elf_reloc_type_class
+elf32_arc_reloc_type_class (const struct bfd_link_info *info ATTRIBUTE_UNUSED,
+                           const asection *rel_sec ATTRIBUTE_UNUSED,
+                           const Elf_Internal_Rela *rela)
+{
+  switch ((int) ELF32_R_TYPE (rela->r_info))
+    {
+    case R_ARC_RELATIVE:
+      return reloc_class_relative;
+    case R_ARC_JMP_SLOT:
+      return reloc_class_plt;
+    case R_ARC_COPY:
+      return reloc_class_copy;
+    /* TODO: Needed in future to support ifunc.  */
+    /*
+    case R_ARC_IRELATIVE:
+      return reloc_class_ifunc;
+    */
+    default:
+      return reloc_class_normal;
+    }
+}
+
 const struct elf_size_info arc_elf32_size_info =
 {
   sizeof (Elf32_External_Ehdr),
@@ -2737,31 +2528,6 @@ const struct elf_size_info arc_elf32_size_info =
 
 #define elf_backend_size_info          arc_elf32_size_info
 
-static struct bfd_link_hash_table *
-arc_elf_link_hash_table_create (bfd *abfd)
-{
-  struct elf_link_hash_table *htab;
-
-  htab = bfd_zmalloc (sizeof (*htab));
-  if (htab == NULL)
-    return NULL;
-
-  if (!_bfd_elf_link_hash_table_init (htab, abfd,
-                                     _bfd_elf_link_hash_newfunc,
-                                     sizeof (struct elf_link_hash_entry),
-                                     GENERIC_ELF_DATA))
-    {
-      free (htab);
-      return NULL;
-    }
-
-  htab->init_got_refcount.refcount = 0;
-  htab->init_got_refcount.glist = NULL;
-  htab->init_got_offset.offset = 0;
-  htab->init_got_offset.glist = NULL;
-  return (struct bfd_link_hash_table *) htab;
-}
-
 /* Hook called by the linker routine which adds symbols from an object
    file.  */
 
@@ -2782,11 +2548,45 @@ elf_arc_add_symbol_hook (bfd * abfd,
   return TRUE;
 }
 
+/* GDB expects general purpose registers to be in section .reg.  However Linux
+   kernel doesn't create this section and instead writes registers to NOTE
+   section.  It is up to the binutils to create a pseudo-section .reg from the
+   contents of NOTE.  Also BFD will read pid and signal number from NOTE.  This
+   function relies on offsets inside elf_prstatus structure in Linux to be
+   stable.  */
+
+static bfd_boolean
+elf32_arc_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
+{
+  int offset;
+  size_t size;
+
+  switch (note->descsz)
+    {
+    default:
+      return FALSE;
+
+    case 236: /* sizeof (struct elf_prstatus) on Linux/arc.  */
+      /* pr_cursig */
+      elf_tdata (abfd)->core->signal = bfd_get_16 (abfd, note->descdata + 12);
+      /* pr_pid */
+      elf_tdata (abfd)->core->lwpid = bfd_get_32 (abfd, note->descdata + 24);
+      /* pr_regs */
+      offset = 72;
+      size = (40 * 4); /* There are 40 registers in user_regs_struct.  */
+      break;
+    }
+  /* Make a ".reg/999" section.  */
+  return _bfd_elfcore_make_pseudosection (abfd, ".reg", size,
+                                         note->descpos + offset);
+}
+
 #define TARGET_LITTLE_SYM   arc_elf32_le_vec
 #define TARGET_LITTLE_NAME  "elf32-littlearc"
 #define TARGET_BIG_SYM     arc_elf32_be_vec
 #define TARGET_BIG_NAME     "elf32-bigarc"
 #define ELF_ARCH           bfd_arch_arc
+#define ELF_TARGET_ID      ARC_ELF_DATA
 #define ELF_MACHINE_CODE    EM_ARC_COMPACT
 #define ELF_MACHINE_ALT1    EM_ARC_COMPACT2
 #define ELF_MAXPAGESIZE     0x2000
@@ -2805,14 +2605,16 @@ elf_arc_add_symbol_hook (bfd * abfd,
 
 #define elf_backend_relocate_section        elf_arc_relocate_section
 #define elf_backend_check_relocs            elf_arc_check_relocs
-#define elf_backend_create_dynamic_sections  _bfd_elf_create_dynamic_sections
+#define elf_backend_create_dynamic_sections  arc_elf_create_dynamic_sections
+
+#define elf_backend_reloc_type_class           elf32_arc_reloc_type_class
 
 #define elf_backend_adjust_dynamic_symbol    elf_arc_adjust_dynamic_symbol
 #define elf_backend_finish_dynamic_symbol    elf_arc_finish_dynamic_symbol
 
 #define elf_backend_finish_dynamic_sections  elf_arc_finish_dynamic_sections
 #define elf_backend_size_dynamic_sections    elf_arc_size_dynamic_sections
-#define elf_backend_add_symbol_hook          elf_arc_add_symbol_hook
+#define elf_backend_add_symbol_hook         elf_arc_add_symbol_hook
 
 #define elf_backend_can_gc_sections    1
 #define elf_backend_want_got_plt       1
@@ -2825,6 +2627,8 @@ elf_arc_add_symbol_hook (bfd * abfd,
 #define elf_backend_may_use_rela_p     1
 #define elf_backend_default_use_rela_p 1
 
+#define elf_backend_grok_prstatus elf32_arc_grok_prstatus
+
 #define elf_backend_default_execstack  0
 
 #include "elf32-target.h"
This page took 0.046079 seconds and 4 git commands to generate.