OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [binutils-2.18.50/] [gprof/] [corefile.c] - Diff between revs 156 and 816

Only display areas with differences | Details | Blame | View Log

Rev 156 Rev 816
/* corefile.c
/* corefile.c
 
 
   Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007
   Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007
   Free Software Foundation, Inc.
   Free Software Foundation, Inc.
 
 
   This file is part of GNU Binutils.
   This file is part of GNU Binutils.
 
 
   This program is free software; you can redistribute it and/or modify
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.
   (at your option) any later version.
 
 
   This program is distributed in the hope that it will be useful,
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   GNU General Public License for more details.
 
 
   You should have received a copy of the GNU General Public License
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   along with this program; if not, write to the Free Software
   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
   02110-1301, USA.  */
   02110-1301, USA.  */


#include "libiberty.h"
#include "libiberty.h"
#include "gprof.h"
#include "gprof.h"
#include "search_list.h"
#include "search_list.h"
#include "source.h"
#include "source.h"
#include "symtab.h"
#include "symtab.h"
#include "hist.h"
#include "hist.h"
#include "corefile.h"
#include "corefile.h"
#include "safe-ctype.h"
#include "safe-ctype.h"
 
 
bfd *core_bfd;
bfd *core_bfd;
static int core_num_syms;
static int core_num_syms;
static asymbol **core_syms;
static asymbol **core_syms;
asection *core_text_sect;
asection *core_text_sect;
PTR core_text_space;
PTR core_text_space;
 
 
static int min_insn_size;
static int min_insn_size;
int offset_to_code;
int offset_to_code;
 
 
/* For mapping symbols to specific .o files during file ordering.  */
/* For mapping symbols to specific .o files during file ordering.  */
struct function_map *symbol_map;
struct function_map *symbol_map;
unsigned int symbol_map_count;
unsigned int symbol_map_count;
 
 
static void read_function_mappings (const char *);
static void read_function_mappings (const char *);
static int core_sym_class (asymbol *);
static int core_sym_class (asymbol *);
static bfd_boolean get_src_info
static bfd_boolean get_src_info
  (bfd_vma, const char **, const char **, int *);
  (bfd_vma, const char **, const char **, int *);
 
 
extern void i386_find_call  (Sym *, bfd_vma, bfd_vma);
extern void i386_find_call  (Sym *, bfd_vma, bfd_vma);
extern void alpha_find_call (Sym *, bfd_vma, bfd_vma);
extern void alpha_find_call (Sym *, bfd_vma, bfd_vma);
extern void vax_find_call   (Sym *, bfd_vma, bfd_vma);
extern void vax_find_call   (Sym *, bfd_vma, bfd_vma);
extern void tahoe_find_call (Sym *, bfd_vma, bfd_vma);
extern void tahoe_find_call (Sym *, bfd_vma, bfd_vma);
extern void sparc_find_call (Sym *, bfd_vma, bfd_vma);
extern void sparc_find_call (Sym *, bfd_vma, bfd_vma);
extern void mips_find_call  (Sym *, bfd_vma, bfd_vma);
extern void mips_find_call  (Sym *, bfd_vma, bfd_vma);
 
 
static void
static void
parse_error (const char *filename)
parse_error (const char *filename)
{
{
  fprintf (stderr, _("%s: unable to parse mapping file %s.\n"), whoami, filename);
  fprintf (stderr, _("%s: unable to parse mapping file %s.\n"), whoami, filename);
  done (1);
  done (1);
}
}
 
 
static void
static void
read_function_mappings (const char *filename)
read_function_mappings (const char *filename)
{
{
  FILE *file = fopen (filename, "r");
  FILE *file = fopen (filename, "r");
  char dummy[1024];
  char dummy[1024];
  int count = 0;
  int count = 0;
 
 
  if (!file)
  if (!file)
    {
    {
      fprintf (stderr, _("%s: could not open %s.\n"), whoami, filename);
      fprintf (stderr, _("%s: could not open %s.\n"), whoami, filename);
      done (1);
      done (1);
    }
    }
 
 
  /* First parse the mapping file so we know how big we need to
  /* First parse the mapping file so we know how big we need to
     make our tables.  We also do some sanity checks at this
     make our tables.  We also do some sanity checks at this
     time.  */
     time.  */
  while (!feof (file))
  while (!feof (file))
    {
    {
      int matches;
      int matches;
 
 
      matches = fscanf (file, "%[^\n:]", dummy);
      matches = fscanf (file, "%[^\n:]", dummy);
      if (!matches)
      if (!matches)
        parse_error (filename);
        parse_error (filename);
 
 
      /* Just skip messages about files with no symbols.  */
      /* Just skip messages about files with no symbols.  */
      if (!strncmp (dummy, "No symbols in ", 14))
      if (!strncmp (dummy, "No symbols in ", 14))
        {
        {
          matches = fscanf (file, "\n");
          matches = fscanf (file, "\n");
          if (matches == EOF)
          if (matches == EOF)
            parse_error (filename);
            parse_error (filename);
          continue;
          continue;
        }
        }
 
 
      /* Don't care what else is on this line at this point.  */
      /* Don't care what else is on this line at this point.  */
      matches = fscanf (file, "%[^\n]\n", dummy);
      matches = fscanf (file, "%[^\n]\n", dummy);
      if (!matches)
      if (!matches)
        parse_error (filename);
        parse_error (filename);
      count++;
      count++;
    }
    }
 
 
  /* Now we know how big we need to make our table.  */
  /* Now we know how big we need to make our table.  */
  symbol_map = ((struct function_map *)
  symbol_map = ((struct function_map *)
                xmalloc (count * sizeof (struct function_map)));
                xmalloc (count * sizeof (struct function_map)));
 
 
  /* Rewind the input file so we can read it again.  */
  /* Rewind the input file so we can read it again.  */
  rewind (file);
  rewind (file);
 
 
  /* Read each entry and put it into the table.  */
  /* Read each entry and put it into the table.  */
  count = 0;
  count = 0;
  while (!feof (file))
  while (!feof (file))
    {
    {
      int matches;
      int matches;
      char *tmp;
      char *tmp;
 
 
      matches = fscanf (file, "%[^\n:]", dummy);
      matches = fscanf (file, "%[^\n:]", dummy);
      if (!matches)
      if (!matches)
        parse_error (filename);
        parse_error (filename);
 
 
      /* Just skip messages about files with no symbols.  */
      /* Just skip messages about files with no symbols.  */
      if (!strncmp (dummy, "No symbols in ", 14))
      if (!strncmp (dummy, "No symbols in ", 14))
        {
        {
          matches = fscanf (file, "\n");
          matches = fscanf (file, "\n");
          if (matches == EOF)
          if (matches == EOF)
            parse_error (filename);
            parse_error (filename);
          continue;
          continue;
        }
        }
 
 
      /* dummy has the filename, go ahead and copy it.  */
      /* dummy has the filename, go ahead and copy it.  */
      symbol_map[count].file_name = xmalloc (strlen (dummy) + 1);
      symbol_map[count].file_name = xmalloc (strlen (dummy) + 1);
      strcpy (symbol_map[count].file_name, dummy);
      strcpy (symbol_map[count].file_name, dummy);
 
 
      /* Now we need the function name.  */
      /* Now we need the function name.  */
      matches = fscanf (file, "%[^\n]\n", dummy);
      matches = fscanf (file, "%[^\n]\n", dummy);
      if (!matches)
      if (!matches)
        parse_error (filename);
        parse_error (filename);
      tmp = strrchr (dummy, ' ') + 1;
      tmp = strrchr (dummy, ' ') + 1;
      symbol_map[count].function_name = xmalloc (strlen (tmp) + 1);
      symbol_map[count].function_name = xmalloc (strlen (tmp) + 1);
      strcpy (symbol_map[count].function_name, tmp);
      strcpy (symbol_map[count].function_name, tmp);
      count++;
      count++;
    }
    }
 
 
  /* Record the size of the map table for future reference.  */
  /* Record the size of the map table for future reference.  */
  symbol_map_count = count;
  symbol_map_count = count;
}
}
 
 
 
 
void
void
core_init (const char *aout_name)
core_init (const char *aout_name)
{
{
  int core_sym_bytes;
  int core_sym_bytes;
  asymbol *synthsyms;
  asymbol *synthsyms;
  long synth_count;
  long synth_count;
 
 
  core_bfd = bfd_openr (aout_name, 0);
  core_bfd = bfd_openr (aout_name, 0);
 
 
  if (!core_bfd)
  if (!core_bfd)
    {
    {
      perror (aout_name);
      perror (aout_name);
      done (1);
      done (1);
    }
    }
 
 
  if (!bfd_check_format (core_bfd, bfd_object))
  if (!bfd_check_format (core_bfd, bfd_object))
    {
    {
      fprintf (stderr, _("%s: %s: not in executable format\n"), whoami, aout_name);
      fprintf (stderr, _("%s: %s: not in executable format\n"), whoami, aout_name);
      done (1);
      done (1);
    }
    }
 
 
  /* Get core's text section.  */
  /* Get core's text section.  */
  core_text_sect = bfd_get_section_by_name (core_bfd, ".text");
  core_text_sect = bfd_get_section_by_name (core_bfd, ".text");
  if (!core_text_sect)
  if (!core_text_sect)
    {
    {
      core_text_sect = bfd_get_section_by_name (core_bfd, "$CODE$");
      core_text_sect = bfd_get_section_by_name (core_bfd, "$CODE$");
      if (!core_text_sect)
      if (!core_text_sect)
        {
        {
          fprintf (stderr, _("%s: can't find .text section in %s\n"),
          fprintf (stderr, _("%s: can't find .text section in %s\n"),
                   whoami, aout_name);
                   whoami, aout_name);
          done (1);
          done (1);
        }
        }
    }
    }
 
 
  /* Read core's symbol table.  */
  /* Read core's symbol table.  */
 
 
  /* This will probably give us more than we need, but that's ok.  */
  /* This will probably give us more than we need, but that's ok.  */
  core_sym_bytes = bfd_get_symtab_upper_bound (core_bfd);
  core_sym_bytes = bfd_get_symtab_upper_bound (core_bfd);
  if (core_sym_bytes < 0)
  if (core_sym_bytes < 0)
    {
    {
      fprintf (stderr, "%s: %s: %s\n", whoami, aout_name,
      fprintf (stderr, "%s: %s: %s\n", whoami, aout_name,
               bfd_errmsg (bfd_get_error ()));
               bfd_errmsg (bfd_get_error ()));
      done (1);
      done (1);
    }
    }
 
 
  core_syms = (asymbol **) xmalloc (core_sym_bytes);
  core_syms = (asymbol **) xmalloc (core_sym_bytes);
  core_num_syms = bfd_canonicalize_symtab (core_bfd, core_syms);
  core_num_syms = bfd_canonicalize_symtab (core_bfd, core_syms);
 
 
  if (core_num_syms < 0)
  if (core_num_syms < 0)
    {
    {
      fprintf (stderr, "%s: %s: %s\n", whoami, aout_name,
      fprintf (stderr, "%s: %s: %s\n", whoami, aout_name,
               bfd_errmsg (bfd_get_error ()));
               bfd_errmsg (bfd_get_error ()));
      done (1);
      done (1);
    }
    }
 
 
  synth_count = bfd_get_synthetic_symtab (core_bfd, core_num_syms, core_syms,
  synth_count = bfd_get_synthetic_symtab (core_bfd, core_num_syms, core_syms,
                                          0, NULL, &synthsyms);
                                          0, NULL, &synthsyms);
  if (synth_count > 0)
  if (synth_count > 0)
    {
    {
      asymbol **symp;
      asymbol **symp;
      long new_size;
      long new_size;
      long i;
      long i;
 
 
      new_size = (core_num_syms + synth_count + 1) * sizeof (*core_syms);
      new_size = (core_num_syms + synth_count + 1) * sizeof (*core_syms);
      core_syms = xrealloc (core_syms, new_size);
      core_syms = xrealloc (core_syms, new_size);
      symp = core_syms + core_num_syms;
      symp = core_syms + core_num_syms;
      core_num_syms += synth_count;
      core_num_syms += synth_count;
      for (i = 0; i < synth_count; i++)
      for (i = 0; i < synth_count; i++)
        *symp++ = synthsyms + i;
        *symp++ = synthsyms + i;
      *symp = 0;
      *symp = 0;
    }
    }
 
 
  min_insn_size = 1;
  min_insn_size = 1;
  offset_to_code = 0;
  offset_to_code = 0;
 
 
  switch (bfd_get_arch (core_bfd))
  switch (bfd_get_arch (core_bfd))
    {
    {
    case bfd_arch_vax:
    case bfd_arch_vax:
    case bfd_arch_tahoe:
    case bfd_arch_tahoe:
      offset_to_code = 2;
      offset_to_code = 2;
      break;
      break;
 
 
    case bfd_arch_alpha:
    case bfd_arch_alpha:
      min_insn_size = 4;
      min_insn_size = 4;
      break;
      break;
 
 
    default:
    default:
      break;
      break;
    }
    }
 
 
  if (function_mapping_file)
  if (function_mapping_file)
    read_function_mappings (function_mapping_file);
    read_function_mappings (function_mapping_file);
}
}
 
 
/* Read in the text space of an a.out file.  */
/* Read in the text space of an a.out file.  */
 
 
void
void
core_get_text_space (bfd *cbfd)
core_get_text_space (bfd *cbfd)
{
{
  core_text_space = malloc (bfd_get_section_size (core_text_sect));
  core_text_space = malloc (bfd_get_section_size (core_text_sect));
 
 
  if (!core_text_space)
  if (!core_text_space)
    {
    {
      fprintf (stderr, _("%s: ran out room for %lu bytes of text space\n"),
      fprintf (stderr, _("%s: ran out room for %lu bytes of text space\n"),
               whoami, (unsigned long) bfd_get_section_size (core_text_sect));
               whoami, (unsigned long) bfd_get_section_size (core_text_sect));
      done (1);
      done (1);
    }
    }
 
 
  if (!bfd_get_section_contents (cbfd, core_text_sect, core_text_space,
  if (!bfd_get_section_contents (cbfd, core_text_sect, core_text_space,
                                 0, bfd_get_section_size (core_text_sect)))
                                 0, bfd_get_section_size (core_text_sect)))
    {
    {
      bfd_perror ("bfd_get_section_contents");
      bfd_perror ("bfd_get_section_contents");
      free (core_text_space);
      free (core_text_space);
      core_text_space = 0;
      core_text_space = 0;
    }
    }
 
 
  if (!core_text_space)
  if (!core_text_space)
    fprintf (stderr, _("%s: can't do -c\n"), whoami);
    fprintf (stderr, _("%s: can't do -c\n"), whoami);
}
}
 
 
 
 
void
void
find_call (Sym *parent, bfd_vma p_lowpc, bfd_vma p_highpc)
find_call (Sym *parent, bfd_vma p_lowpc, bfd_vma p_highpc)
{
{
  if (core_text_space == 0)
  if (core_text_space == 0)
    return;
    return;
 
 
  hist_clip_symbol_address (&p_lowpc, &p_highpc);
  hist_clip_symbol_address (&p_lowpc, &p_highpc);
 
 
  switch (bfd_get_arch (core_bfd))
  switch (bfd_get_arch (core_bfd))
    {
    {
    case bfd_arch_i386:
    case bfd_arch_i386:
      i386_find_call (parent, p_lowpc, p_highpc);
      i386_find_call (parent, p_lowpc, p_highpc);
      break;
      break;
 
 
    case bfd_arch_alpha:
    case bfd_arch_alpha:
      alpha_find_call (parent, p_lowpc, p_highpc);
      alpha_find_call (parent, p_lowpc, p_highpc);
      break;
      break;
 
 
    case bfd_arch_vax:
    case bfd_arch_vax:
      vax_find_call (parent, p_lowpc, p_highpc);
      vax_find_call (parent, p_lowpc, p_highpc);
      break;
      break;
 
 
    case bfd_arch_sparc:
    case bfd_arch_sparc:
      sparc_find_call (parent, p_lowpc, p_highpc);
      sparc_find_call (parent, p_lowpc, p_highpc);
      break;
      break;
 
 
    case bfd_arch_tahoe:
    case bfd_arch_tahoe:
      tahoe_find_call (parent, p_lowpc, p_highpc);
      tahoe_find_call (parent, p_lowpc, p_highpc);
      break;
      break;
 
 
    case bfd_arch_mips:
    case bfd_arch_mips:
      mips_find_call (parent, p_lowpc, p_highpc);
      mips_find_call (parent, p_lowpc, p_highpc);
      break;
      break;
 
 
    default:
    default:
      fprintf (stderr, _("%s: -c not supported on architecture %s\n"),
      fprintf (stderr, _("%s: -c not supported on architecture %s\n"),
               whoami, bfd_printable_name(core_bfd));
               whoami, bfd_printable_name(core_bfd));
 
 
      /* Don't give the error more than once.  */
      /* Don't give the error more than once.  */
      ignore_direct_calls = FALSE;
      ignore_direct_calls = FALSE;
    }
    }
}
}
 
 
/* Return class of symbol SYM.  The returned class can be any of:
/* Return class of symbol SYM.  The returned class can be any of:
        0   -> symbol is not interesting to us
        0   -> symbol is not interesting to us
        'T' -> symbol is a global name
        'T' -> symbol is a global name
        't' -> symbol is a local (static) name.  */
        't' -> symbol is a local (static) name.  */
 
 
static int
static int
core_sym_class (asymbol *sym)
core_sym_class (asymbol *sym)
{
{
  symbol_info syminfo;
  symbol_info syminfo;
  const char *name;
  const char *name;
  char sym_prefix;
  char sym_prefix;
  int i;
  int i;
 
 
  if (sym->section == NULL || (sym->flags & BSF_DEBUGGING) != 0)
  if (sym->section == NULL || (sym->flags & BSF_DEBUGGING) != 0)
    return 0;
    return 0;
 
 
  /* Must be a text symbol, and static text symbols
  /* Must be a text symbol, and static text symbols
     don't qualify if ignore_static_funcs set.   */
     don't qualify if ignore_static_funcs set.   */
  if (ignore_static_funcs && (sym->flags & BSF_LOCAL))
  if (ignore_static_funcs && (sym->flags & BSF_LOCAL))
    {
    {
      DBG (AOUTDEBUG, printf ("[core_sym_class] %s: not a function\n",
      DBG (AOUTDEBUG, printf ("[core_sym_class] %s: not a function\n",
                              sym->name));
                              sym->name));
      return 0;
      return 0;
    }
    }
 
 
  bfd_get_symbol_info (core_bfd, sym, &syminfo);
  bfd_get_symbol_info (core_bfd, sym, &syminfo);
  i = syminfo.type;
  i = syminfo.type;
 
 
  if (i == 'T')
  if (i == 'T')
    return i;                   /* It's a global symbol.  */
    return i;                   /* It's a global symbol.  */
 
 
  if (i == 'W')
  if (i == 'W')
    /* Treat weak symbols as text symbols.  FIXME: a weak symbol may
    /* Treat weak symbols as text symbols.  FIXME: a weak symbol may
       also be a data symbol.  */
       also be a data symbol.  */
    return 'T';
    return 'T';
 
 
  if (i != 't')
  if (i != 't')
    {
    {
      /* Not a static text symbol.  */
      /* Not a static text symbol.  */
      DBG (AOUTDEBUG, printf ("[core_sym_class] %s is of class %c\n",
      DBG (AOUTDEBUG, printf ("[core_sym_class] %s is of class %c\n",
                              sym->name, i));
                              sym->name, i));
      return 0;
      return 0;
    }
    }
 
 
  /* Do some more filtering on static function-names.  */
  /* Do some more filtering on static function-names.  */
  if (ignore_static_funcs)
  if (ignore_static_funcs)
    return 0;
    return 0;
 
 
  /* Can't zero-length name or funny characters in name, where
  /* Can't zero-length name or funny characters in name, where
     `funny' includes: `.' (.o file names) and `$' (Pascal labels).  */
     `funny' includes: `.' (.o file names) and `$' (Pascal labels).  */
  if (!sym->name || sym->name[0] == '\0')
  if (!sym->name || sym->name[0] == '\0')
    return 0;
    return 0;
 
 
  for (name = sym->name; *name; ++name)
  for (name = sym->name; *name; ++name)
    {
    {
      if (*name == '$')
      if (*name == '$')
        return 0;
        return 0;
 
 
      /* Do not discard nested subprograms (those
      /* Do not discard nested subprograms (those
         which end with .NNN, where N are digits).  */
         which end with .NNN, where N are digits).  */
      if (*name == '.')
      if (*name == '.')
        for (name++; *name; name++)
        for (name++; *name; name++)
          if (! ISDIGIT (*name))
          if (! ISDIGIT (*name))
            return 0;
            return 0;
    }
    }
 
 
  /* On systems where the C compiler adds an underscore to all
  /* On systems where the C compiler adds an underscore to all
     names, static names without underscores seem usually to be
     names, static names without underscores seem usually to be
     labels in hand written assembler in the library.  We don't want
     labels in hand written assembler in the library.  We don't want
     these names.  This is certainly necessary on a Sparc running
     these names.  This is certainly necessary on a Sparc running
     SunOS 4.1 (try profiling a program that does a lot of
     SunOS 4.1 (try profiling a program that does a lot of
     division). I don't know whether it has harmful side effects on
     division). I don't know whether it has harmful side effects on
     other systems.  Perhaps it should be made configurable.  */
     other systems.  Perhaps it should be made configurable.  */
  sym_prefix = bfd_get_symbol_leading_char (core_bfd);
  sym_prefix = bfd_get_symbol_leading_char (core_bfd);
 
 
  if ((sym_prefix && sym_prefix != sym->name[0])
  if ((sym_prefix && sym_prefix != sym->name[0])
      /* GCC may add special symbols to help gdb figure out the file
      /* GCC may add special symbols to help gdb figure out the file
        language.  We want to ignore these, since sometimes they mask
        language.  We want to ignore these, since sometimes they mask
        the real function.  (dj@ctron)  */
        the real function.  (dj@ctron)  */
      || !strncmp (sym->name, "__gnu_compiled", 14)
      || !strncmp (sym->name, "__gnu_compiled", 14)
      || !strncmp (sym->name, "___gnu_compiled", 15))
      || !strncmp (sym->name, "___gnu_compiled", 15))
    {
    {
      return 0;
      return 0;
    }
    }
 
 
  /* If the object file supports marking of function symbols, then
  /* If the object file supports marking of function symbols, then
     we can zap anything that doesn't have BSF_FUNCTION set.  */
     we can zap anything that doesn't have BSF_FUNCTION set.  */
  if (ignore_non_functions && (sym->flags & BSF_FUNCTION) == 0)
  if (ignore_non_functions && (sym->flags & BSF_FUNCTION) == 0)
    return 0;
    return 0;
 
 
  return 't';                   /* It's a static text symbol.  */
  return 't';                   /* It's a static text symbol.  */
}
}
 
 
/* Get whatever source info we can get regarding address ADDR.  */
/* Get whatever source info we can get regarding address ADDR.  */
 
 
static bfd_boolean
static bfd_boolean
get_src_info (bfd_vma addr, const char **filename, const char **name, int *line_num)
get_src_info (bfd_vma addr, const char **filename, const char **name, int *line_num)
{
{
  const char *fname = 0, *func_name = 0;
  const char *fname = 0, *func_name = 0;
  int l = 0;
  int l = 0;
 
 
  if (bfd_find_nearest_line (core_bfd, core_text_sect, core_syms,
  if (bfd_find_nearest_line (core_bfd, core_text_sect, core_syms,
                             addr - core_text_sect->vma,
                             addr - core_text_sect->vma,
                             &fname, &func_name, (unsigned int *) &l)
                             &fname, &func_name, (unsigned int *) &l)
      && fname && func_name && l)
      && fname && func_name && l)
    {
    {
      DBG (AOUTDEBUG, printf ("[get_src_info] 0x%lx -> %s:%d (%s)\n",
      DBG (AOUTDEBUG, printf ("[get_src_info] 0x%lx -> %s:%d (%s)\n",
                              (unsigned long) addr, fname, l, func_name));
                              (unsigned long) addr, fname, l, func_name));
      *filename = fname;
      *filename = fname;
      *name = func_name;
      *name = func_name;
      *line_num = l;
      *line_num = l;
      return TRUE;
      return TRUE;
    }
    }
  else
  else
    {
    {
      DBG (AOUTDEBUG, printf ("[get_src_info] no info for 0x%lx (%s:%d,%s)\n",
      DBG (AOUTDEBUG, printf ("[get_src_info] no info for 0x%lx (%s:%d,%s)\n",
                              (long) addr, fname ? fname : "<unknown>", l,
                              (long) addr, fname ? fname : "<unknown>", l,
                              func_name ? func_name : "<unknown>"));
                              func_name ? func_name : "<unknown>"));
      return FALSE;
      return FALSE;
    }
    }
}
}
 
 
/* Read in symbol table from core.
/* Read in symbol table from core.
   One symbol per function is entered.  */
   One symbol per function is entered.  */
 
 
void
void
core_create_function_syms ()
core_create_function_syms ()
{
{
  bfd_vma min_vma = ~(bfd_vma) 0;
  bfd_vma min_vma = ~(bfd_vma) 0;
  bfd_vma max_vma = 0;
  bfd_vma max_vma = 0;
  int class;
  int class;
  long i, found, skip;
  long i, found, skip;
  unsigned int j;
  unsigned int j;
 
 
  /* Pass 1 - determine upper bound on number of function names.  */
  /* Pass 1 - determine upper bound on number of function names.  */
  symtab.len = 0;
  symtab.len = 0;
 
 
  for (i = 0; i < core_num_syms; ++i)
  for (i = 0; i < core_num_syms; ++i)
    {
    {
      if (!core_sym_class (core_syms[i]))
      if (!core_sym_class (core_syms[i]))
        continue;
        continue;
 
 
      /* This should be replaced with a binary search or hashed
      /* This should be replaced with a binary search or hashed
         search.  Gross.
         search.  Gross.
 
 
         Don't create a symtab entry for a function that has
         Don't create a symtab entry for a function that has
         a mapping to a file, unless it's the first function
         a mapping to a file, unless it's the first function
         in the file.  */
         in the file.  */
      skip = 0;
      skip = 0;
      for (j = 0; j < symbol_map_count; j++)
      for (j = 0; j < symbol_map_count; j++)
        if (!strcmp (core_syms[i]->name, symbol_map[j].function_name))
        if (!strcmp (core_syms[i]->name, symbol_map[j].function_name))
          {
          {
            if (j > 0 && ! strcmp (symbol_map [j].file_name,
            if (j > 0 && ! strcmp (symbol_map [j].file_name,
                                   symbol_map [j - 1].file_name))
                                   symbol_map [j - 1].file_name))
              skip = 1;
              skip = 1;
            break;
            break;
          }
          }
 
 
      if (!skip)
      if (!skip)
        ++symtab.len;
        ++symtab.len;
    }
    }
 
 
  if (symtab.len == 0)
  if (symtab.len == 0)
    {
    {
      fprintf (stderr, _("%s: file `%s' has no symbols\n"), whoami, a_out_name);
      fprintf (stderr, _("%s: file `%s' has no symbols\n"), whoami, a_out_name);
      done (1);
      done (1);
    }
    }
 
 
  /* The "+ 2" is for the sentinels.  */
  /* The "+ 2" is for the sentinels.  */
  symtab.base = (Sym *) xmalloc ((symtab.len + 2) * sizeof (Sym));
  symtab.base = (Sym *) xmalloc ((symtab.len + 2) * sizeof (Sym));
 
 
  /* Pass 2 - create symbols.  */
  /* Pass 2 - create symbols.  */
  symtab.limit = symtab.base;
  symtab.limit = symtab.base;
 
 
  for (i = 0; i < core_num_syms; ++i)
  for (i = 0; i < core_num_syms; ++i)
    {
    {
      asection *sym_sec;
      asection *sym_sec;
 
 
      class = core_sym_class (core_syms[i]);
      class = core_sym_class (core_syms[i]);
 
 
      if (!class)
      if (!class)
        {
        {
          DBG (AOUTDEBUG,
          DBG (AOUTDEBUG,
               printf ("[core_create_function_syms] rejecting: 0x%lx %s\n",
               printf ("[core_create_function_syms] rejecting: 0x%lx %s\n",
                       (unsigned long) core_syms[i]->value,
                       (unsigned long) core_syms[i]->value,
                       core_syms[i]->name));
                       core_syms[i]->name));
          continue;
          continue;
        }
        }
 
 
      /* This should be replaced with a binary search or hashed
      /* This should be replaced with a binary search or hashed
         search.  Gross.   */
         search.  Gross.   */
      skip = 0;
      skip = 0;
      found = 0;
      found = 0;
 
 
      for (j = 0; j < symbol_map_count; j++)
      for (j = 0; j < symbol_map_count; j++)
        if (!strcmp (core_syms[i]->name, symbol_map[j].function_name))
        if (!strcmp (core_syms[i]->name, symbol_map[j].function_name))
          {
          {
            if (j > 0 && ! strcmp (symbol_map [j].file_name,
            if (j > 0 && ! strcmp (symbol_map [j].file_name,
                                   symbol_map [j - 1].file_name))
                                   symbol_map [j - 1].file_name))
              skip = 1;
              skip = 1;
            else
            else
              found = j;
              found = j;
            break;
            break;
          }
          }
 
 
      if (skip)
      if (skip)
        continue;
        continue;
 
 
      sym_init (symtab.limit);
      sym_init (symtab.limit);
 
 
      /* Symbol offsets are always section-relative.  */
      /* Symbol offsets are always section-relative.  */
      sym_sec = core_syms[i]->section;
      sym_sec = core_syms[i]->section;
      symtab.limit->addr = core_syms[i]->value;
      symtab.limit->addr = core_syms[i]->value;
      if (sym_sec)
      if (sym_sec)
        symtab.limit->addr += bfd_get_section_vma (sym_sec->owner, sym_sec);
        symtab.limit->addr += bfd_get_section_vma (sym_sec->owner, sym_sec);
 
 
      if (symbol_map_count
      if (symbol_map_count
          && !strcmp (core_syms[i]->name, symbol_map[found].function_name))
          && !strcmp (core_syms[i]->name, symbol_map[found].function_name))
        {
        {
          symtab.limit->name = symbol_map[found].file_name;
          symtab.limit->name = symbol_map[found].file_name;
          symtab.limit->mapped = 1;
          symtab.limit->mapped = 1;
        }
        }
      else
      else
        {
        {
          symtab.limit->name = core_syms[i]->name;
          symtab.limit->name = core_syms[i]->name;
          symtab.limit->mapped = 0;
          symtab.limit->mapped = 0;
        }
        }
 
 
      /* Lookup filename and line number, if we can.  */
      /* Lookup filename and line number, if we can.  */
      {
      {
        const char *filename, *func_name;
        const char *filename, *func_name;
 
 
        if (get_src_info (symtab.limit->addr, &filename, &func_name,
        if (get_src_info (symtab.limit->addr, &filename, &func_name,
                          &symtab.limit->line_num))
                          &symtab.limit->line_num))
          {
          {
            symtab.limit->file = source_file_lookup_path (filename);
            symtab.limit->file = source_file_lookup_path (filename);
 
 
            /* FIXME: Checking __osf__ here does not work with a cross
            /* FIXME: Checking __osf__ here does not work with a cross
               gprof.  */
               gprof.  */
#ifdef __osf__
#ifdef __osf__
            /* Suppress symbols that are not function names.  This is
            /* Suppress symbols that are not function names.  This is
               useful to suppress code-labels and aliases.
               useful to suppress code-labels and aliases.
 
 
               This is known to be useful under DEC's OSF/1.  Under SunOS 4.x,
               This is known to be useful under DEC's OSF/1.  Under SunOS 4.x,
               labels do not appear in the symbol table info, so this isn't
               labels do not appear in the symbol table info, so this isn't
               necessary.  */
               necessary.  */
 
 
            if (strcmp (symtab.limit->name, func_name) != 0)
            if (strcmp (symtab.limit->name, func_name) != 0)
              {
              {
                /* The symbol's address maps to a different name, so
                /* The symbol's address maps to a different name, so
                   it can't be a function-entry point.  This happens
                   it can't be a function-entry point.  This happens
                   for labels, for example.  */
                   for labels, for example.  */
                DBG (AOUTDEBUG,
                DBG (AOUTDEBUG,
                     printf ("[core_create_function_syms: rej %s (maps to %s)\n",
                     printf ("[core_create_function_syms: rej %s (maps to %s)\n",
                             symtab.limit->name, func_name));
                             symtab.limit->name, func_name));
                continue;
                continue;
              }
              }
#endif
#endif
          }
          }
      }
      }
 
 
      symtab.limit->is_func = TRUE;
      symtab.limit->is_func = TRUE;
      symtab.limit->is_bb_head = TRUE;
      symtab.limit->is_bb_head = TRUE;
 
 
      if (class == 't')
      if (class == 't')
        symtab.limit->is_static = TRUE;
        symtab.limit->is_static = TRUE;
 
 
      /* Keep track of the minimum and maximum vma addresses used by all
      /* Keep track of the minimum and maximum vma addresses used by all
         symbols.  When computing the max_vma, use the ending address of the
         symbols.  When computing the max_vma, use the ending address of the
         section containing the symbol, if available.  */
         section containing the symbol, if available.  */
      min_vma = MIN (symtab.limit->addr, min_vma);
      min_vma = MIN (symtab.limit->addr, min_vma);
      if (sym_sec)
      if (sym_sec)
        max_vma = MAX (bfd_get_section_vma (sym_sec->owner, sym_sec)
        max_vma = MAX (bfd_get_section_vma (sym_sec->owner, sym_sec)
                       + bfd_section_size (sym_sec->owner, sym_sec) - 1,
                       + bfd_section_size (sym_sec->owner, sym_sec) - 1,
                       max_vma);
                       max_vma);
      else
      else
        max_vma = MAX (symtab.limit->addr, max_vma);
        max_vma = MAX (symtab.limit->addr, max_vma);
 
 
      DBG (AOUTDEBUG, printf ("[core_create_function_syms] %ld %s 0x%lx\n",
      DBG (AOUTDEBUG, printf ("[core_create_function_syms] %ld %s 0x%lx\n",
                              (long) (symtab.limit - symtab.base),
                              (long) (symtab.limit - symtab.base),
                              symtab.limit->name,
                              symtab.limit->name,
                              (unsigned long) symtab.limit->addr));
                              (unsigned long) symtab.limit->addr));
      ++symtab.limit;
      ++symtab.limit;
    }
    }
 
 
  /* Create sentinels.  */
  /* Create sentinels.  */
  sym_init (symtab.limit);
  sym_init (symtab.limit);
  symtab.limit->name = "<locore>";
  symtab.limit->name = "<locore>";
  symtab.limit->addr = 0;
  symtab.limit->addr = 0;
  symtab.limit->end_addr = min_vma - 1;
  symtab.limit->end_addr = min_vma - 1;
  ++symtab.limit;
  ++symtab.limit;
 
 
  sym_init (symtab.limit);
  sym_init (symtab.limit);
  symtab.limit->name = "<hicore>";
  symtab.limit->name = "<hicore>";
  symtab.limit->addr = max_vma + 1;
  symtab.limit->addr = max_vma + 1;
  symtab.limit->end_addr = ~(bfd_vma) 0;
  symtab.limit->end_addr = ~(bfd_vma) 0;
  ++symtab.limit;
  ++symtab.limit;
 
 
  symtab.len = symtab.limit - symtab.base;
  symtab.len = symtab.limit - symtab.base;
  symtab_finalize (&symtab);
  symtab_finalize (&symtab);
}
}
 
 
/* Read in symbol table from core.
/* Read in symbol table from core.
   One symbol per line of source code is entered.  */
   One symbol per line of source code is entered.  */
 
 
void
void
core_create_line_syms ()
core_create_line_syms ()
{
{
  char *prev_name, *prev_filename;
  char *prev_name, *prev_filename;
  unsigned int prev_name_len, prev_filename_len;
  unsigned int prev_name_len, prev_filename_len;
  bfd_vma vma, min_vma = ~(bfd_vma) 0, max_vma = 0;
  bfd_vma vma, min_vma = ~(bfd_vma) 0, max_vma = 0;
  Sym *prev, dummy, *sentinel, *sym;
  Sym *prev, dummy, *sentinel, *sym;
  const char *filename;
  const char *filename;
  int prev_line_num;
  int prev_line_num;
  Sym_Table ltab;
  Sym_Table ltab;
  bfd_vma vma_high;
  bfd_vma vma_high;
 
 
  /* Create symbols for functions as usual.  This is necessary in
  /* Create symbols for functions as usual.  This is necessary in
     cases where parts of a program were not compiled with -g.  For
     cases where parts of a program were not compiled with -g.  For
     those parts we still want to get info at the function level.  */
     those parts we still want to get info at the function level.  */
  core_create_function_syms ();
  core_create_function_syms ();
 
 
  /* Pass 1: count the number of symbols.  */
  /* Pass 1: count the number of symbols.  */
 
 
  /* To find all line information, walk through all possible
  /* To find all line information, walk through all possible
     text-space addresses (one by one!) and get the debugging
     text-space addresses (one by one!) and get the debugging
     info for each address.  When the debugging info changes,
     info for each address.  When the debugging info changes,
     it is time to create a new symbol.
     it is time to create a new symbol.
 
 
     Of course, this is rather slow and it would be better if
     Of course, this is rather slow and it would be better if
     BFD would provide an iterator for enumerating all line infos.  */
     BFD would provide an iterator for enumerating all line infos.  */
  prev_name_len = PATH_MAX;
  prev_name_len = PATH_MAX;
  prev_filename_len = PATH_MAX;
  prev_filename_len = PATH_MAX;
  prev_name = xmalloc (prev_name_len);
  prev_name = xmalloc (prev_name_len);
  prev_filename = xmalloc (prev_filename_len);
  prev_filename = xmalloc (prev_filename_len);
  ltab.len = 0;
  ltab.len = 0;
  prev_line_num = 0;
  prev_line_num = 0;
 
 
  vma_high = core_text_sect->vma + bfd_get_section_size (core_text_sect);
  vma_high = core_text_sect->vma + bfd_get_section_size (core_text_sect);
  for (vma = core_text_sect->vma; vma < vma_high; vma += min_insn_size)
  for (vma = core_text_sect->vma; vma < vma_high; vma += min_insn_size)
    {
    {
      unsigned int len;
      unsigned int len;
 
 
      if (!get_src_info (vma, &filename, &dummy.name, &dummy.line_num)
      if (!get_src_info (vma, &filename, &dummy.name, &dummy.line_num)
          || (prev_line_num == dummy.line_num
          || (prev_line_num == dummy.line_num
              && prev_name != NULL
              && prev_name != NULL
              && strcmp (prev_name, dummy.name) == 0
              && strcmp (prev_name, dummy.name) == 0
              && strcmp (prev_filename, filename) == 0))
              && strcmp (prev_filename, filename) == 0))
        continue;
        continue;
 
 
      ++ltab.len;
      ++ltab.len;
      prev_line_num = dummy.line_num;
      prev_line_num = dummy.line_num;
 
 
      len = strlen (dummy.name);
      len = strlen (dummy.name);
      if (len >= prev_name_len)
      if (len >= prev_name_len)
        {
        {
          prev_name_len = len + 1024;
          prev_name_len = len + 1024;
          free (prev_name);
          free (prev_name);
          prev_name = xmalloc (prev_name_len);
          prev_name = xmalloc (prev_name_len);
        }
        }
 
 
      strcpy (prev_name, dummy.name);
      strcpy (prev_name, dummy.name);
      len = strlen (filename);
      len = strlen (filename);
 
 
      if (len >= prev_filename_len)
      if (len >= prev_filename_len)
        {
        {
          prev_filename_len = len + 1024;
          prev_filename_len = len + 1024;
          free (prev_filename);
          free (prev_filename);
          prev_filename = xmalloc (prev_filename_len);
          prev_filename = xmalloc (prev_filename_len);
        }
        }
 
 
      strcpy (prev_filename, filename);
      strcpy (prev_filename, filename);
 
 
      min_vma = MIN (vma, min_vma);
      min_vma = MIN (vma, min_vma);
      max_vma = MAX (vma, max_vma);
      max_vma = MAX (vma, max_vma);
    }
    }
 
 
  free (prev_name);
  free (prev_name);
  free (prev_filename);
  free (prev_filename);
 
 
  /* Make room for function symbols, too.  */
  /* Make room for function symbols, too.  */
  ltab.len += symtab.len;
  ltab.len += symtab.len;
  ltab.base = (Sym *) xmalloc (ltab.len * sizeof (Sym));
  ltab.base = (Sym *) xmalloc (ltab.len * sizeof (Sym));
  ltab.limit = ltab.base;
  ltab.limit = ltab.base;
 
 
  /* Pass 2 - create symbols.  */
  /* Pass 2 - create symbols.  */
 
 
  /* We now set is_static as we go along, rather than by running
  /* We now set is_static as we go along, rather than by running
     through the symbol table at the end.
     through the symbol table at the end.
 
 
     The old way called symtab_finalize before the is_static pass,
     The old way called symtab_finalize before the is_static pass,
     causing a problem since symtab_finalize uses is_static as part of
     causing a problem since symtab_finalize uses is_static as part of
     its address conflict resolution algorithm.  Since global symbols
     its address conflict resolution algorithm.  Since global symbols
     were prefered over static symbols, and all line symbols were
     were prefered over static symbols, and all line symbols were
     global at that point, static function names that conflicted with
     global at that point, static function names that conflicted with
     their own line numbers (static, but labeled as global) were
     their own line numbers (static, but labeled as global) were
     rejected in favor of the line num.
     rejected in favor of the line num.
 
 
     This was not the desired functionality.  We always want to keep
     This was not the desired functionality.  We always want to keep
     our function symbols and discard any conflicting line symbols.
     our function symbols and discard any conflicting line symbols.
     Perhaps symtab_finalize should be modified to make this
     Perhaps symtab_finalize should be modified to make this
     distinction as well, but the current fix works and the code is a
     distinction as well, but the current fix works and the code is a
     lot cleaner now.  */
     lot cleaner now.  */
  prev = 0;
  prev = 0;
 
 
  for (vma = core_text_sect->vma; vma < vma_high; vma += min_insn_size)
  for (vma = core_text_sect->vma; vma < vma_high; vma += min_insn_size)
    {
    {
      sym_init (ltab.limit);
      sym_init (ltab.limit);
 
 
      if (!get_src_info (vma, &filename, &ltab.limit->name, &ltab.limit->line_num)
      if (!get_src_info (vma, &filename, &ltab.limit->name, &ltab.limit->line_num)
          || (prev && prev->line_num == ltab.limit->line_num
          || (prev && prev->line_num == ltab.limit->line_num
              && strcmp (prev->name, ltab.limit->name) == 0
              && strcmp (prev->name, ltab.limit->name) == 0
              && strcmp (prev->file->name, filename) == 0))
              && strcmp (prev->file->name, filename) == 0))
        continue;
        continue;
 
 
      /* Make name pointer a malloc'ed string.  */
      /* Make name pointer a malloc'ed string.  */
      ltab.limit->name = xstrdup (ltab.limit->name);
      ltab.limit->name = xstrdup (ltab.limit->name);
      ltab.limit->file = source_file_lookup_path (filename);
      ltab.limit->file = source_file_lookup_path (filename);
 
 
      ltab.limit->addr = vma;
      ltab.limit->addr = vma;
 
 
      /* Set is_static based on the enclosing function, using either:
      /* Set is_static based on the enclosing function, using either:
         1) the previous symbol, if it's from the same function, or
         1) the previous symbol, if it's from the same function, or
         2) a symtab lookup.  */
         2) a symtab lookup.  */
      if (prev && ltab.limit->file == prev->file &&
      if (prev && ltab.limit->file == prev->file &&
          strcmp (ltab.limit->name, prev->name) == 0)
          strcmp (ltab.limit->name, prev->name) == 0)
        {
        {
          ltab.limit->is_static = prev->is_static;
          ltab.limit->is_static = prev->is_static;
        }
        }
      else
      else
        {
        {
          sym = sym_lookup(&symtab, ltab.limit->addr);
          sym = sym_lookup(&symtab, ltab.limit->addr);
          ltab.limit->is_static = sym->is_static;
          ltab.limit->is_static = sym->is_static;
        }
        }
 
 
      prev = ltab.limit;
      prev = ltab.limit;
 
 
      DBG (AOUTDEBUG, printf ("[core_create_line_syms] %lu %s 0x%lx\n",
      DBG (AOUTDEBUG, printf ("[core_create_line_syms] %lu %s 0x%lx\n",
                              (unsigned long) (ltab.limit - ltab.base),
                              (unsigned long) (ltab.limit - ltab.base),
                              ltab.limit->name,
                              ltab.limit->name,
                              (unsigned long) ltab.limit->addr));
                              (unsigned long) ltab.limit->addr));
      ++ltab.limit;
      ++ltab.limit;
    }
    }
 
 
  /* Update sentinels.  */
  /* Update sentinels.  */
  sentinel = sym_lookup (&symtab, (bfd_vma) 0);
  sentinel = sym_lookup (&symtab, (bfd_vma) 0);
 
 
  if (sentinel
  if (sentinel
      && strcmp (sentinel->name, "<locore>") == 0
      && strcmp (sentinel->name, "<locore>") == 0
      && min_vma <= sentinel->end_addr)
      && min_vma <= sentinel->end_addr)
    sentinel->end_addr = min_vma - 1;
    sentinel->end_addr = min_vma - 1;
 
 
  sentinel = sym_lookup (&symtab, ~(bfd_vma) 0);
  sentinel = sym_lookup (&symtab, ~(bfd_vma) 0);
 
 
  if (sentinel
  if (sentinel
      && strcmp (sentinel->name, "<hicore>") == 0
      && strcmp (sentinel->name, "<hicore>") == 0
      && max_vma >= sentinel->addr)
      && max_vma >= sentinel->addr)
    sentinel->addr = max_vma + 1;
    sentinel->addr = max_vma + 1;
 
 
  /* Copy in function symbols.  */
  /* Copy in function symbols.  */
  memcpy (ltab.limit, symtab.base, symtab.len * sizeof (Sym));
  memcpy (ltab.limit, symtab.base, symtab.len * sizeof (Sym));
  ltab.limit += symtab.len;
  ltab.limit += symtab.len;
 
 
  if ((unsigned int) (ltab.limit - ltab.base) != ltab.len)
  if ((unsigned int) (ltab.limit - ltab.base) != ltab.len)
    {
    {
      fprintf (stderr,
      fprintf (stderr,
               _("%s: somebody miscounted: ltab.len=%d instead of %ld\n"),
               _("%s: somebody miscounted: ltab.len=%d instead of %ld\n"),
               whoami, ltab.len, (long) (ltab.limit - ltab.base));
               whoami, ltab.len, (long) (ltab.limit - ltab.base));
      done (1);
      done (1);
    }
    }
 
 
  /* Finalize ltab and make it symbol table.  */
  /* Finalize ltab and make it symbol table.  */
  symtab_finalize (&ltab);
  symtab_finalize (&ltab);
  free (symtab.base);
  free (symtab.base);
  symtab = ltab;
  symtab = ltab;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.