* symfile.c (reread_symbols): Include bfd_errmsg string in error
[deliverable/binutils-gdb.git] / gdb / objfiles.c
index 40ab8fba8d1c88b46fca85ce8c66dd78d5526f82..5cd01e5210e2223897d95c71882f0a079c5be7ac 100644 (file)
@@ -83,7 +83,7 @@ add_to_objfile_sections (abfd, asect, objfile_p_char)
     return;
   section.offset = 0;
   section.objfile = objfile;
-  section.sec_ptr = asect;
+  section.the_bfd_section = asect;
   section.addr = bfd_section_vma (abfd, asect);
   section.endaddr = section.addr + bfd_section_size (abfd, asect);
   obstack_grow (&objfile->psymbol_obstack, &section, sizeof(section));
@@ -123,6 +123,7 @@ allocate_objfile (abfd, mapped)
      int mapped;
 {
   struct objfile *objfile = NULL;
+  struct objfile *last_one = NULL;
 
   mapped |= mapped_symbol_files;
 
@@ -257,11 +258,18 @@ allocate_objfile (abfd, mapped)
             objfile -> name, bfd_errmsg (bfd_get_error ()));
     }
 
-  /* Push this file onto the head of the linked list of other such files. */
-
-  objfile -> next = object_files;
-  object_files = objfile;
+  /* Add this file onto the tail of the linked list of other such files. */
 
+  objfile -> next = NULL;
+  if (object_files == NULL)
+    object_files = objfile;
+  else
+    {
+      for (last_one = object_files;
+          last_one -> next;
+          last_one = last_one -> next);
+      last_one -> next = objfile;
+    }
   return (objfile);
 }
 
@@ -333,7 +341,9 @@ free_objfile (objfile)
   if (objfile -> obfd != NULL)
     {
       char *name = bfd_get_filename (objfile->obfd);
-      bfd_close (objfile -> obfd);
+      if (!bfd_close (objfile -> obfd))
+       warning ("cannot close \"%s\": %s",
+                name, bfd_errmsg (bfd_get_error ()));
       free (name);
     }
 
@@ -421,21 +431,6 @@ free_all_objfiles ()
   clear_symtab_users ();
 }
 \f
-struct objfile *
-find_pc_objfile(pc)
-     CORE_ADDR pc;
-{
-struct objfile *obj;
-struct obj_section *s;
-
-  ALL_OBJFILES (obj)
-    for (s = obj->sections; s < obj->sections_end; s++)
-      {
-       if (s->addr <= pc && s->endaddr > pc) return obj;
-      }
-  return (struct objfile *)NULL;
-}
-
 /* Relocate OBJFILE to NEW_OFFSETS.  There should be OBJFILE->NUM_SECTIONS
    entries in new_offsets.  */
 void
@@ -465,7 +460,7 @@ objfile_relocate (objfile, new_offsets)
   {
     struct symtab *s;
 
-    for (s = objfile->symtabs; s; s = s->next)
+    ALL_OBJFILE_SYMTABS (objfile, s)
       {
        struct linetable *l;
        struct blockvector *bv;
@@ -507,6 +502,15 @@ objfile_relocate (objfile, new_offsets)
                    SYMBOL_VALUE_ADDRESS (sym) +=
                      ANOFFSET (delta, SYMBOL_SECTION (sym));
                  }
+#ifdef MIPS_EFI_SYMBOL_NAME
+               /* Relocate Extra Function Info for ecoff.  */
+
+               else
+                 if (SYMBOL_CLASS (sym) == LOC_CONST
+                     && SYMBOL_NAMESPACE (sym) == LABEL_NAMESPACE
+                     && STRCMP (SYMBOL_NAME (sym), MIPS_EFI_SYMBOL_NAME) == 0)
+                   ecoff_relocate_efi (sym, ANOFFSET (delta, s->block_line_section));
+#endif
              }
          }
       }
@@ -553,107 +557,58 @@ objfile_relocate (objfile, new_offsets)
     for (i = 0; i < objfile->num_sections; ++i)
       ANOFFSET (objfile->section_offsets, i) = ANOFFSET (new_offsets, i);
   }
-}
-\f
-/* Relocate OBJFILE to NEW_OFFSETS.  There should be OBJFILE->NUM_SECTIONS
-   entries in new_offsets.  */
-void
-objfile_relocate_data (objfile, new_offsets)
-     struct objfile *objfile;
-     struct section_offsets *new_offsets;
-{
-  struct section_offsets *delta = (struct section_offsets *) alloca
-    (sizeof (struct section_offsets)
-     + objfile->num_sections * sizeof (delta->offsets));
 
   {
-    int i;
-    int something_changed = 0;
-    for (i = 0; i < objfile->num_sections; ++i)
-      {
-       if (i != SECT_OFF_DATA && i != SECT_OFF_BSS)
-         ANOFFSET (delta, i) = 0;
-       else
-         ANOFFSET (delta, i) = ANOFFSET(new_offsets, i)
-                - ANOFFSET (objfile->section_offsets, i);
-       if (ANOFFSET (delta, i) != 0)
-         something_changed = 1;
-      }
-    if (!something_changed)
-      return;
-  }
+    struct obj_section *s;
+    bfd *abfd;
 
-  /* OK, get all the symtabs.  */
-  {
-    struct symtab *s;
+    abfd = symfile_objfile->obfd;
 
-    for (s = objfile->symtabs; s; s = s->next)
+    for (s = symfile_objfile->sections;
+        s < symfile_objfile->sections_end; ++s)
       {
-       struct linetable *l;
-       struct blockvector *bv;
-       int i;
-       
-       /* Don't relocate a shared blockvector more than once.  */
-       if (!s->primary)
-         continue;
+       flagword flags;
 
-       bv = BLOCKVECTOR (s);
-       for (i = 0; i < BLOCKVECTOR_NBLOCKS (bv); ++i)
-         {
-           struct block *b;
-           int j;
-           
-           b = BLOCKVECTOR_BLOCK (bv, i);
-           BLOCK_START (b) += ANOFFSET (delta, s->block_line_section);
-           BLOCK_END (b) += ANOFFSET (delta, s->block_line_section);
+       flags = bfd_get_section_flags (abfd, s->the_bfd_section);
 
-           for (j = 0; j < BLOCK_NSYMS (b); ++j)
-             {
-               struct symbol *sym = BLOCK_SYM (b, j);
-               /* The RS6000 code from which this was taken skipped
-                  any symbols in STRUCT_NAMESPACE or UNDEF_NAMESPACE.
-                  But I'm leaving out that test, on the theory that
-                  they can't possibly pass the tests below.  */
-               if ((SYMBOL_CLASS (sym) == LOC_LABEL
-                    || SYMBOL_CLASS (sym) == LOC_STATIC)
-                   && SYMBOL_SECTION (sym) >= 0)
-                 {
-                   SYMBOL_VALUE_ADDRESS (sym) +=
-                     ANOFFSET (delta, SYMBOL_SECTION (sym));
-                 }
-             }
+       if (flags & SEC_CODE)
+         {
+           s->addr += ANOFFSET (delta, SECT_OFF_TEXT);
+           s->endaddr += ANOFFSET (delta, SECT_OFF_TEXT);
+         }
+       else if (flags & (SEC_DATA | SEC_LOAD))
+         {
+           s->addr += ANOFFSET (delta, SECT_OFF_DATA);
+           s->endaddr += ANOFFSET (delta, SECT_OFF_DATA);
+         }
+       else if (flags & SEC_ALLOC)
+         {
+           s->addr += ANOFFSET (delta, SECT_OFF_BSS);
+           s->endaddr += ANOFFSET (delta, SECT_OFF_BSS);
          }
       }
   }
 
-  {
-    struct partial_symbol *psym;
+  if (objfile->ei.entry_point != ~0)
+    objfile->ei.entry_point += ANOFFSET (delta, SECT_OFF_TEXT);
 
-    for (psym = objfile->global_psymbols.list;
-        psym < objfile->global_psymbols.next;
-        psym++)
-      if (SYMBOL_SECTION (psym) >= 0)
-       SYMBOL_VALUE_ADDRESS (psym) += ANOFFSET (delta, SYMBOL_SECTION (psym));
-    for (psym = objfile->static_psymbols.list;
-        psym < objfile->static_psymbols.next;
-        psym++)
-      if (SYMBOL_SECTION (psym) >= 0)
-       SYMBOL_VALUE_ADDRESS (psym) += ANOFFSET (delta, SYMBOL_SECTION (psym));
-  }
+  if (objfile->ei.entry_func_lowpc != INVALID_ENTRY_LOWPC)
+    {
+      objfile->ei.entry_func_lowpc += ANOFFSET (delta, SECT_OFF_TEXT);
+      objfile->ei.entry_func_highpc += ANOFFSET (delta, SECT_OFF_TEXT);
+    }
 
-  {
-    struct minimal_symbol *msym;
-    ALL_OBJFILE_MSYMBOLS (objfile, msym)
-      if (SYMBOL_SECTION (msym) >= 0)
-       SYMBOL_VALUE_ADDRESS (msym) += ANOFFSET (delta, SYMBOL_SECTION (msym));
-  }
+  if (objfile->ei.entry_file_lowpc != INVALID_ENTRY_LOWPC)
+    {
+      objfile->ei.entry_file_lowpc += ANOFFSET (delta, SECT_OFF_TEXT);
+      objfile->ei.entry_file_highpc += ANOFFSET (delta, SECT_OFF_TEXT);
+    }
 
-  {
-    int i;
-    for (i = 0; i < objfile->num_sections; ++i)
-      if (i == SECT_OFF_DATA || i == SECT_OFF_BSS)
-        ANOFFSET (objfile->section_offsets, i) = ANOFFSET (new_offsets, i);
-  }
+  if (objfile->ei.main_func_lowpc != INVALID_ENTRY_LOWPC)
+    {
+      objfile->ei.main_func_lowpc += ANOFFSET (delta, SECT_OFF_TEXT);
+      objfile->ei.main_func_highpc += ANOFFSET (delta, SECT_OFF_TEXT);
+    }
 }
 \f
 /* Many places in gdb want to test just to see if we have any partial
@@ -901,3 +856,23 @@ find_pc_section(pc)
 
   return(NULL);
 }
+
+/* In SVR4, we recognize a trampoline by it's section name. 
+   That is, if the pc is in a section named ".plt" then we are in
+   a trampoline.  */
+
+int
+in_plt_section(pc, name)
+     CORE_ADDR pc;
+     char *name;
+{
+  struct obj_section *s;
+  int retval = 0;
+  
+  s = find_pc_section(pc);
+  
+  retval = (s != NULL
+           && s->the_bfd_section->name != NULL
+           && STREQ (s->the_bfd_section->name, ".plt"));
+  return(retval);
+}
This page took 0.026671 seconds and 4 git commands to generate.