gdb/
[deliverable/binutils-gdb.git] / gdb / elfread.c
index f691b8f92ccc724671200524f94177cd1075bdcc..a309a2cc1b6e3bed005daaad8bd3a9383ab0c040 100644 (file)
@@ -206,18 +206,7 @@ record_minimal_symbol (const char *name, int name_len, int copy_name,
                                          bfd_section, objfile);
 }
 
-/*
-
-   LOCAL FUNCTION
-
-   elf_symtab_read -- read the symbol table of an ELF file
-
-   SYNOPSIS
-
-   void elf_symtab_read (struct objfile *objfile, int type,
-                        long number_of_symbols, asymbol **symbol_table)
-
-   DESCRIPTION
+/* Read the symbol table of an ELF file.
 
    Given an objfile, a symbol table, and a flag indicating whether the
    symbol table contains regular, dynamic, or synthetic symbols, add all
@@ -227,9 +216,7 @@ record_minimal_symbol (const char *name, int name_len, int copy_name,
    defined in the ELF symbol table, which can be used to locate
    the beginnings of sections from each ".o" file that was linked to
    form the executable objfile.  We gather any such info and record it
-   in data structures hung off the objfile's private data.
-
- */
+   in data structures hung off the objfile's private data.  */
 
 #define ST_REGULAR 0
 #define ST_DYNAMIC 1
@@ -257,7 +244,6 @@ elf_symtab_read (struct objfile *objfile, int type,
   char *filesymname = "";
   struct dbx_symfile_info *dbx = objfile->deprecated_sym_stab_info;
   int stripped = (bfd_get_symcount (objfile->obfd) == 0);
-  struct cleanup *back_to = make_cleanup (null_cleanup, NULL);
 
   for (i = 0; i < number_of_symbols; i++)
     {
@@ -286,7 +272,7 @@ elf_symtab_read (struct objfile *objfile, int type,
        {
          struct minimal_symbol *msym;
          bfd *abfd = objfile->obfd;
-         asection *sect; 
+         asection *sect;
 
          /* Symbol is a reference to a function defined in
             a shared library.
@@ -376,7 +362,7 @@ elf_symtab_read (struct objfile *objfile, int type,
 
                 NOTE: uweigand-20071112: Synthetic symbols do not
                 have an ELF-private part, so do not touch those.  */
-             unsigned int shndx = type == ST_SYNTHETIC ? 0 : 
+             unsigned int shndx = type == ST_SYNTHETIC ? 0 :
                ((elf_symbol_type *) sym)->internal_elf_sym.st_shndx;
 
              switch (shndx)
@@ -482,11 +468,10 @@ elf_symtab_read (struct objfile *objfile, int type,
                             already includes one element, so we
                             need to allocate max_index aadditional
                             elements.  */
-                         size = (sizeof (struct stab_section_info) 
+                         size = (sizeof (struct stab_section_info)
                                  + (sizeof (CORE_ADDR) * max_index));
                          sectinfo = (struct stab_section_info *)
                            xmalloc (size);
-                         make_cleanup (xfree, sectinfo);
                          memset (sectinfo, 0, size);
                          sectinfo->num_sections = max_index;
                          if (filesym == NULL)
@@ -537,7 +522,7 @@ elf_symtab_read (struct objfile *objfile, int type,
          else
            {
              /* FIXME:  Solaris2 shared libraries include lots of
-                odd "absolute" and "undefined" symbols, that play 
+                odd "absolute" and "undefined" symbols, that play
                 hob with actions like finding what function the PC
                 is in.  Ignore them if they aren't text, data, or bss.  */
              /* ms_type = mst_unknown; */
@@ -556,7 +541,7 @@ elf_symtab_read (struct objfile *objfile, int type,
                 ELF-private part.  However, in some cases (e.g. synthetic
                 'dot' symbols on ppc64) the udata.p entry is set to point back
                 to the original ELF symbol it was derived from.  Get the size
-                from that symbol.  */ 
+                from that symbol.  */
              if (type != ST_SYNTHETIC)
                elf_sym = (elf_symbol_type *) sym;
              else
@@ -564,7 +549,7 @@ elf_symtab_read (struct objfile *objfile, int type,
 
              if (elf_sym)
                MSYMBOL_SIZE(msym) = elf_sym->internal_elf_sym.st_size;
-         
+
              msym->filename = filesymname;
              gdbarch_elf_make_msymbol_special (gdbarch, sym, msym);
            }
@@ -595,7 +580,6 @@ elf_symtab_read (struct objfile *objfile, int type,
            }
        }
     }
-  do_cleanups (back_to);
 }
 
 /* Build minimal symbols named `function@got.plt' (see SYMBOL_GOT_PLT_SUFFIX)
@@ -670,14 +654,14 @@ elf_rel_plt_read (struct objfile *objfile, asymbol **dyn_symbol_table)
         OBJFILE the symbol is undefined and the objfile having NAME defined
         may not yet have been loaded.  */
 
-      if (string_buffer_size < name_len + got_suffix_len)
+      if (string_buffer_size < name_len + got_suffix_len + 1)
        {
          string_buffer_size = 2 * (name_len + got_suffix_len);
          string_buffer = xrealloc (string_buffer, string_buffer_size);
        }
       memcpy (string_buffer, name, name_len);
       memcpy (&string_buffer[name_len], SYMBOL_GOT_PLT_SUFFIX,
-             got_suffix_len);
+             got_suffix_len + 1);
 
       msym = record_minimal_symbol (string_buffer, name_len + got_suffix_len,
                                     1, address, mst_slot_got_plt, got_plt,
@@ -906,7 +890,7 @@ elf_gnu_ifunc_resolve_name (const char *name, CORE_ADDR *addr_p)
 {
   if (elf_gnu_ifunc_resolve_by_cache (name, addr_p))
     return 1;
-  
+
   if (elf_gnu_ifunc_resolve_by_got (name, addr_p))
     return 1;
 
@@ -1204,7 +1188,7 @@ find_separate_debug_file_by_buildid (struct objfile *objfile)
 }
 
 /* Scan and build partial symbols for a symbol file.
-   We have been initialized by a call to elf_symfile_init, which 
+   We have been initialized by a call to elf_symfile_init, which
    currently does nothing.
 
    SECTION_OFFSETS is a set of offsets to apply to relocate the symbols
@@ -1394,9 +1378,14 @@ elf_symfile_read (struct objfile *objfile, int symfile_flags)
                                bfd_section_size (abfd, str_sect));
     }
 
-  if (dwarf2_has_info (objfile))
+  if (dwarf2_has_info (objfile, NULL))
     {
-      if (dwarf2_initialize_objfile (objfile))
+      /* elf_sym_fns_gdb_index cannot handle simultaneous non-DWARF debug
+        information present in OBJFILE.  If there is such debug info present
+        never use .gdb_index.  */
+
+      if (!objfile_has_partial_symbols (objfile)
+         && dwarf2_initialize_objfile (objfile))
        objfile->sf = &elf_sym_fns_gdb_index;
       else
        {
@@ -1435,7 +1424,7 @@ elf_symfile_read (struct objfile *objfile, int symfile_flags)
 static void
 read_psyms (struct objfile *objfile)
 {
-  if (dwarf2_has_info (objfile))
+  if (dwarf2_has_info (objfile, NULL))
     dwarf2_build_psymtabs (objfile);
 }
 
@@ -1560,7 +1549,7 @@ elfstab_offset_sections (struct objfile *objfile, struct partial_symtab *pst)
       /* Found it!  Allocate a new psymtab struct, and fill it in.  */
       maybe->found++;
       pst->section_offsets = (struct section_offsets *)
-       obstack_alloc (&objfile->objfile_obstack, 
+       obstack_alloc (&objfile->objfile_obstack,
                       SIZEOF_N_SECTION_OFFSETS (objfile->num_sections));
       for (i = 0; i < maybe->num_sections; i++)
        (pst->section_offsets)->offsets[i] = maybe->sections[i];
This page took 0.042129 seconds and 4 git commands to generate.