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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gdb-6.8/] [bfd/] [dwarf1.c] - Diff between revs 827 and 840

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 827 Rev 840
/* DWARF 1 find nearest line (_bfd_dwarf1_find_nearest_line).
/* DWARF 1 find nearest line (_bfd_dwarf1_find_nearest_line).
   Copyright 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2007, 2008, 2009, 2010
   Copyright 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2007, 2008, 2009, 2010
   Free Software Foundation, Inc.
   Free Software Foundation, Inc.
 
 
   Written by Gavin Romig-Koch of Cygnus Solutions (gavin@cygnus.com).
   Written by Gavin Romig-Koch of Cygnus Solutions (gavin@cygnus.com).
 
 
   This file is part of BFD.
   This file is part of BFD.
 
 
   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 (at
   the Free Software Foundation; either version 3 of the License, or (at
   your option) any later version.
   your option) any later version.
 
 
   This program is distributed in the hope that it will be useful, but
   This program is distributed in the hope that it will be useful, but
   WITHOUT ANY WARRANTY; without even the implied warranty of
   WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   General Public License for more details.
   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,
   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
   MA 02110-1301, USA.  */
   MA 02110-1301, USA.  */
 
 
#include "sysdep.h"
#include "sysdep.h"
#include "bfd.h"
#include "bfd.h"
#include "libiberty.h"
#include "libiberty.h"
#include "libbfd.h"
#include "libbfd.h"
#include "elf-bfd.h"
#include "elf-bfd.h"
#include "elf/dwarf.h"
#include "elf/dwarf.h"
 
 
/* dwarf1_debug is the starting point for all dwarf1 info.  */
/* dwarf1_debug is the starting point for all dwarf1 info.  */
 
 
struct dwarf1_debug
struct dwarf1_debug
{
{
  /* The bfd we are working with.  */
  /* The bfd we are working with.  */
  bfd* abfd;
  bfd* abfd;
 
 
  /* Pointer to the symbol table.  */
  /* Pointer to the symbol table.  */
  asymbol** syms;
  asymbol** syms;
 
 
  /* List of already parsed compilation units.  */
  /* List of already parsed compilation units.  */
  struct dwarf1_unit* lastUnit;
  struct dwarf1_unit* lastUnit;
 
 
  /* The buffer for the .debug section.
  /* The buffer for the .debug section.
     Zero indicates that the .debug section failed to load.  */
     Zero indicates that the .debug section failed to load.  */
  bfd_byte *debug_section;
  bfd_byte *debug_section;
 
 
  /* Pointer to the end of the .debug_info section memory buffer.  */
  /* Pointer to the end of the .debug_info section memory buffer.  */
  bfd_byte *debug_section_end;
  bfd_byte *debug_section_end;
 
 
  /* The buffer for the .line section.  */
  /* The buffer for the .line section.  */
  bfd_byte *line_section;
  bfd_byte *line_section;
 
 
  /* End of that buffer.  */
  /* End of that buffer.  */
  bfd_byte *line_section_end;
  bfd_byte *line_section_end;
 
 
  /* The current or next unread die within the .debug section.  */
  /* The current or next unread die within the .debug section.  */
  bfd_byte *currentDie;
  bfd_byte *currentDie;
};
};
 
 
/* One dwarf1_unit for each parsed compilation unit die.  */
/* One dwarf1_unit for each parsed compilation unit die.  */
 
 
struct dwarf1_unit
struct dwarf1_unit
{
{
  /* Linked starting from stash->lastUnit.  */
  /* Linked starting from stash->lastUnit.  */
  struct dwarf1_unit* prev;
  struct dwarf1_unit* prev;
 
 
  /* Name of the compilation unit.  */
  /* Name of the compilation unit.  */
  char *name;
  char *name;
 
 
  /* The highest and lowest address used in the compilation unit.  */
  /* The highest and lowest address used in the compilation unit.  */
  unsigned long low_pc;
  unsigned long low_pc;
  unsigned long high_pc;
  unsigned long high_pc;
 
 
  /* Does this unit have a statement list?  */
  /* Does this unit have a statement list?  */
  int has_stmt_list;
  int has_stmt_list;
 
 
  /* If any, the offset of the line number table in the .line section.  */
  /* If any, the offset of the line number table in the .line section.  */
  unsigned long stmt_list_offset;
  unsigned long stmt_list_offset;
 
 
  /* If non-zero, a pointer to the first child of this unit.  */
  /* If non-zero, a pointer to the first child of this unit.  */
  bfd_byte *first_child;
  bfd_byte *first_child;
 
 
  /* How many line entries?  */
  /* How many line entries?  */
  unsigned long line_count;
  unsigned long line_count;
 
 
  /* The decoded line number table (line_count entries).  */
  /* The decoded line number table (line_count entries).  */
  struct linenumber* linenumber_table;
  struct linenumber* linenumber_table;
 
 
  /* The list of functions in this unit.  */
  /* The list of functions in this unit.  */
  struct dwarf1_func* func_list;
  struct dwarf1_func* func_list;
};
};
 
 
/* One dwarf1_func for each parsed function die.  */
/* One dwarf1_func for each parsed function die.  */
 
 
struct dwarf1_func
struct dwarf1_func
{
{
  /* Linked starting from aUnit->func_list.  */
  /* Linked starting from aUnit->func_list.  */
  struct dwarf1_func* prev;
  struct dwarf1_func* prev;
 
 
  /* Name of function.  */
  /* Name of function.  */
  char* name;
  char* name;
 
 
  /* The highest and lowest address used in the compilation unit.  */
  /* The highest and lowest address used in the compilation unit.  */
  unsigned long low_pc;
  unsigned long low_pc;
  unsigned long high_pc;
  unsigned long high_pc;
};
};
 
 
/* Used to return info about a parsed die.  */
/* Used to return info about a parsed die.  */
struct die_info
struct die_info
{
{
  unsigned long length;
  unsigned long length;
  unsigned long sibling;
  unsigned long sibling;
  unsigned long low_pc;
  unsigned long low_pc;
  unsigned long high_pc;
  unsigned long high_pc;
  unsigned long stmt_list_offset;
  unsigned long stmt_list_offset;
 
 
  char* name;
  char* name;
 
 
  int has_stmt_list;
  int has_stmt_list;
 
 
  unsigned short tag;
  unsigned short tag;
};
};
 
 
/* Parsed line number information.  */
/* Parsed line number information.  */
struct linenumber
struct linenumber
{
{
  /* First address in the line.  */
  /* First address in the line.  */
  unsigned long addr;
  unsigned long addr;
 
 
  /* The line number.  */
  /* The line number.  */
  unsigned long linenumber;
  unsigned long linenumber;
};
};
 
 
/* Find the form of an attr, from the attr field.  */
/* Find the form of an attr, from the attr field.  */
#define FORM_FROM_ATTR(attr)    ((attr) & 0xF)  /* Implicitly specified.  */
#define FORM_FROM_ATTR(attr)    ((attr) & 0xF)  /* Implicitly specified.  */
 
 
/* Return a newly allocated dwarf1_unit.  It should be cleared and
/* Return a newly allocated dwarf1_unit.  It should be cleared and
   then attached into the 'stash' at 'stash->lastUnit'.  */
   then attached into the 'stash' at 'stash->lastUnit'.  */
 
 
static struct dwarf1_unit*
static struct dwarf1_unit*
alloc_dwarf1_unit (struct dwarf1_debug* stash)
alloc_dwarf1_unit (struct dwarf1_debug* stash)
{
{
  bfd_size_type amt = sizeof (struct dwarf1_unit);
  bfd_size_type amt = sizeof (struct dwarf1_unit);
 
 
  struct dwarf1_unit* x = (struct dwarf1_unit *) bfd_zalloc (stash->abfd, amt);
  struct dwarf1_unit* x = (struct dwarf1_unit *) bfd_zalloc (stash->abfd, amt);
  if (x)
  if (x)
    {
    {
      x->prev = stash->lastUnit;
      x->prev = stash->lastUnit;
      stash->lastUnit = x;
      stash->lastUnit = x;
    }
    }
 
 
  return x;
  return x;
}
}
 
 
/* Return a newly allocated dwarf1_func.  It must be cleared and
/* Return a newly allocated dwarf1_func.  It must be cleared and
   attached into 'aUnit' at 'aUnit->func_list'.  */
   attached into 'aUnit' at 'aUnit->func_list'.  */
 
 
static struct dwarf1_func *
static struct dwarf1_func *
alloc_dwarf1_func (struct dwarf1_debug* stash, struct dwarf1_unit* aUnit)
alloc_dwarf1_func (struct dwarf1_debug* stash, struct dwarf1_unit* aUnit)
{
{
  bfd_size_type amt = sizeof (struct dwarf1_func);
  bfd_size_type amt = sizeof (struct dwarf1_func);
 
 
  struct dwarf1_func* x = (struct dwarf1_func *) bfd_zalloc (stash->abfd, amt);
  struct dwarf1_func* x = (struct dwarf1_func *) bfd_zalloc (stash->abfd, amt);
  if (x)
  if (x)
    {
    {
      x->prev = aUnit->func_list;
      x->prev = aUnit->func_list;
      aUnit->func_list = x;
      aUnit->func_list = x;
    }
    }
 
 
  return x;
  return x;
}
}
 
 
/* parse_die - parse a Dwarf1 die.
/* parse_die - parse a Dwarf1 die.
   Parse the die starting at 'aDiePtr' into 'aDieInfo'.
   Parse the die starting at 'aDiePtr' into 'aDieInfo'.
   'abfd' must be the bfd from which the section that 'aDiePtr'
   'abfd' must be the bfd from which the section that 'aDiePtr'
   points to was pulled from.
   points to was pulled from.
 
 
   Return FALSE if the die is invalidly formatted; TRUE otherwise.  */
   Return FALSE if the die is invalidly formatted; TRUE otherwise.  */
 
 
static bfd_boolean
static bfd_boolean
parse_die (bfd *             abfd,
parse_die (bfd *             abfd,
           struct die_info * aDieInfo,
           struct die_info * aDieInfo,
           bfd_byte *        aDiePtr,
           bfd_byte *        aDiePtr,
           bfd_byte *        aDiePtrEnd)
           bfd_byte *        aDiePtrEnd)
{
{
  bfd_byte *this_die = aDiePtr;
  bfd_byte *this_die = aDiePtr;
  bfd_byte *xptr = this_die;
  bfd_byte *xptr = this_die;
 
 
  memset (aDieInfo, 0, sizeof (* aDieInfo));
  memset (aDieInfo, 0, sizeof (* aDieInfo));
 
 
  /* First comes the length.  */
  /* First comes the length.  */
  aDieInfo->length = bfd_get_32 (abfd, (bfd_byte *) xptr);
  aDieInfo->length = bfd_get_32 (abfd, (bfd_byte *) xptr);
  xptr += 4;
  xptr += 4;
  if (aDieInfo->length == 0
  if (aDieInfo->length == 0
      || (this_die + aDieInfo->length) >= aDiePtrEnd)
      || (this_die + aDieInfo->length) >= aDiePtrEnd)
    return FALSE;
    return FALSE;
  if (aDieInfo->length < 6)
  if (aDieInfo->length < 6)
    {
    {
      /* Just padding bytes.  */
      /* Just padding bytes.  */
      aDieInfo->tag = TAG_padding;
      aDieInfo->tag = TAG_padding;
      return TRUE;
      return TRUE;
    }
    }
 
 
  /* Then the tag.  */
  /* Then the tag.  */
  aDieInfo->tag = bfd_get_16 (abfd, (bfd_byte *) xptr);
  aDieInfo->tag = bfd_get_16 (abfd, (bfd_byte *) xptr);
  xptr += 2;
  xptr += 2;
 
 
  /* Then the attributes.  */
  /* Then the attributes.  */
  while (xptr < (this_die + aDieInfo->length))
  while (xptr < (this_die + aDieInfo->length))
    {
    {
      unsigned short attr;
      unsigned short attr;
 
 
      /* Parse the attribute based on its form.  This section
      /* Parse the attribute based on its form.  This section
         must handle all dwarf1 forms, but need only handle the
         must handle all dwarf1 forms, but need only handle the
         actual attributes that we care about.  */
         actual attributes that we care about.  */
      attr = bfd_get_16 (abfd, (bfd_byte *) xptr);
      attr = bfd_get_16 (abfd, (bfd_byte *) xptr);
      xptr += 2;
      xptr += 2;
 
 
      switch (FORM_FROM_ATTR (attr))
      switch (FORM_FROM_ATTR (attr))
        {
        {
        case FORM_DATA2:
        case FORM_DATA2:
          xptr += 2;
          xptr += 2;
          break;
          break;
        case FORM_DATA4:
        case FORM_DATA4:
        case FORM_REF:
        case FORM_REF:
          if (attr == AT_sibling)
          if (attr == AT_sibling)
            aDieInfo->sibling = bfd_get_32 (abfd, (bfd_byte *) xptr);
            aDieInfo->sibling = bfd_get_32 (abfd, (bfd_byte *) xptr);
          else if (attr == AT_stmt_list)
          else if (attr == AT_stmt_list)
            {
            {
              aDieInfo->stmt_list_offset = bfd_get_32 (abfd, (bfd_byte *) xptr);
              aDieInfo->stmt_list_offset = bfd_get_32 (abfd, (bfd_byte *) xptr);
              aDieInfo->has_stmt_list = 1;
              aDieInfo->has_stmt_list = 1;
            }
            }
          xptr += 4;
          xptr += 4;
          break;
          break;
        case FORM_DATA8:
        case FORM_DATA8:
          xptr += 8;
          xptr += 8;
          break;
          break;
        case FORM_ADDR:
        case FORM_ADDR:
          if (attr == AT_low_pc)
          if (attr == AT_low_pc)
            aDieInfo->low_pc = bfd_get_32 (abfd, (bfd_byte *) xptr);
            aDieInfo->low_pc = bfd_get_32 (abfd, (bfd_byte *) xptr);
          else if (attr == AT_high_pc)
          else if (attr == AT_high_pc)
            aDieInfo->high_pc = bfd_get_32 (abfd, (bfd_byte *) xptr);
            aDieInfo->high_pc = bfd_get_32 (abfd, (bfd_byte *) xptr);
          xptr += 4;
          xptr += 4;
          break;
          break;
        case FORM_BLOCK2:
        case FORM_BLOCK2:
          xptr += 2 + bfd_get_16 (abfd, (bfd_byte *) xptr);
          xptr += 2 + bfd_get_16 (abfd, (bfd_byte *) xptr);
          break;
          break;
        case FORM_BLOCK4:
        case FORM_BLOCK4:
          xptr += 4 + bfd_get_32 (abfd, (bfd_byte *) xptr);
          xptr += 4 + bfd_get_32 (abfd, (bfd_byte *) xptr);
          break;
          break;
        case FORM_STRING:
        case FORM_STRING:
          if (attr == AT_name)
          if (attr == AT_name)
            aDieInfo->name = (char *) xptr;
            aDieInfo->name = (char *) xptr;
          xptr += strlen ((char *) xptr) + 1;
          xptr += strlen ((char *) xptr) + 1;
          break;
          break;
        }
        }
    }
    }
 
 
  return TRUE;
  return TRUE;
}
}
 
 
/* Parse a dwarf1 line number table for 'aUnit->stmt_list_offset'
/* Parse a dwarf1 line number table for 'aUnit->stmt_list_offset'
   into 'aUnit->linenumber_table'.  Return FALSE if an error
   into 'aUnit->linenumber_table'.  Return FALSE if an error
   occurs; TRUE otherwise.  */
   occurs; TRUE otherwise.  */
 
 
static bfd_boolean
static bfd_boolean
parse_line_table (struct dwarf1_debug* stash, struct dwarf1_unit* aUnit)
parse_line_table (struct dwarf1_debug* stash, struct dwarf1_unit* aUnit)
{
{
  bfd_byte *xptr;
  bfd_byte *xptr;
 
 
  /* Load the ".line" section from the bfd if we haven't already.  */
  /* Load the ".line" section from the bfd if we haven't already.  */
  if (stash->line_section == 0)
  if (stash->line_section == 0)
    {
    {
      asection *msec;
      asection *msec;
      bfd_size_type size;
      bfd_size_type size;
 
 
      msec = bfd_get_section_by_name (stash->abfd, ".line");
      msec = bfd_get_section_by_name (stash->abfd, ".line");
      if (! msec)
      if (! msec)
        return FALSE;
        return FALSE;
 
 
      size = msec->rawsize ? msec->rawsize : msec->size;
      size = msec->rawsize ? msec->rawsize : msec->size;
      stash->line_section
      stash->line_section
        = bfd_simple_get_relocated_section_contents
        = bfd_simple_get_relocated_section_contents
        (stash->abfd, msec, NULL, stash->syms);
        (stash->abfd, msec, NULL, stash->syms);
 
 
      if (! stash->line_section)
      if (! stash->line_section)
        return FALSE;
        return FALSE;
 
 
      stash->line_section_end = stash->line_section + size;
      stash->line_section_end = stash->line_section + size;
    }
    }
 
 
  xptr = stash->line_section + aUnit->stmt_list_offset;
  xptr = stash->line_section + aUnit->stmt_list_offset;
  if (xptr < stash->line_section_end)
  if (xptr < stash->line_section_end)
    {
    {
      unsigned long eachLine;
      unsigned long eachLine;
      bfd_byte *tblend;
      bfd_byte *tblend;
      unsigned long base;
      unsigned long base;
      bfd_size_type amt;
      bfd_size_type amt;
 
 
      /* First comes the length.  */
      /* First comes the length.  */
      tblend = bfd_get_32 (stash->abfd, (bfd_byte *) xptr) + xptr;
      tblend = bfd_get_32 (stash->abfd, (bfd_byte *) xptr) + xptr;
      xptr += 4;
      xptr += 4;
 
 
      /* Then the base address for each address in the table.  */
      /* Then the base address for each address in the table.  */
      base = bfd_get_32 (stash->abfd, (bfd_byte *) xptr);
      base = bfd_get_32 (stash->abfd, (bfd_byte *) xptr);
      xptr += 4;
      xptr += 4;
 
 
      /* How many line entrys?
      /* How many line entrys?
         10 = 4 (line number) + 2 (pos in line) + 4 (address in line).  */
         10 = 4 (line number) + 2 (pos in line) + 4 (address in line).  */
      aUnit->line_count = (tblend - xptr) / 10;
      aUnit->line_count = (tblend - xptr) / 10;
 
 
      /* Allocate an array for the entries.  */
      /* Allocate an array for the entries.  */
      amt = sizeof (struct linenumber) * aUnit->line_count;
      amt = sizeof (struct linenumber) * aUnit->line_count;
      aUnit->linenumber_table = (struct linenumber *) bfd_alloc (stash->abfd,
      aUnit->linenumber_table = (struct linenumber *) bfd_alloc (stash->abfd,
                                                                 amt);
                                                                 amt);
      if (!aUnit->linenumber_table)
      if (!aUnit->linenumber_table)
        return FALSE;
        return FALSE;
 
 
      for (eachLine = 0; eachLine < aUnit->line_count; eachLine++)
      for (eachLine = 0; eachLine < aUnit->line_count; eachLine++)
        {
        {
          /* A line number.  */
          /* A line number.  */
          aUnit->linenumber_table[eachLine].linenumber
          aUnit->linenumber_table[eachLine].linenumber
            = bfd_get_32 (stash->abfd, (bfd_byte *) xptr);
            = bfd_get_32 (stash->abfd, (bfd_byte *) xptr);
          xptr += 4;
          xptr += 4;
 
 
          /* Skip the position within the line.  */
          /* Skip the position within the line.  */
          xptr += 2;
          xptr += 2;
 
 
          /* And finally the address.  */
          /* And finally the address.  */
          aUnit->linenumber_table[eachLine].addr
          aUnit->linenumber_table[eachLine].addr
            = base + bfd_get_32 (stash->abfd, (bfd_byte *) xptr);
            = base + bfd_get_32 (stash->abfd, (bfd_byte *) xptr);
          xptr += 4;
          xptr += 4;
        }
        }
    }
    }
 
 
  return TRUE;
  return TRUE;
}
}
 
 
/* Parse each function die in a compilation unit 'aUnit'.
/* Parse each function die in a compilation unit 'aUnit'.
   The first child die of 'aUnit' should be in 'aUnit->first_child',
   The first child die of 'aUnit' should be in 'aUnit->first_child',
   the result is placed in 'aUnit->func_list'.
   the result is placed in 'aUnit->func_list'.
   Return FALSE if error; TRUE otherwise.  */
   Return FALSE if error; TRUE otherwise.  */
 
 
static bfd_boolean
static bfd_boolean
parse_functions_in_unit (struct dwarf1_debug* stash, struct dwarf1_unit* aUnit)
parse_functions_in_unit (struct dwarf1_debug* stash, struct dwarf1_unit* aUnit)
{
{
  bfd_byte *eachDie;
  bfd_byte *eachDie;
 
 
  if (aUnit->first_child)
  if (aUnit->first_child)
    for (eachDie = aUnit->first_child;
    for (eachDie = aUnit->first_child;
         eachDie < stash->debug_section_end;
         eachDie < stash->debug_section_end;
         )
         )
      {
      {
        struct die_info eachDieInfo;
        struct die_info eachDieInfo;
 
 
        if (! parse_die (stash->abfd, &eachDieInfo, eachDie,
        if (! parse_die (stash->abfd, &eachDieInfo, eachDie,
                         stash->debug_section_end))
                         stash->debug_section_end))
          return FALSE;
          return FALSE;
 
 
        if (eachDieInfo.tag == TAG_global_subroutine
        if (eachDieInfo.tag == TAG_global_subroutine
            || eachDieInfo.tag == TAG_subroutine
            || eachDieInfo.tag == TAG_subroutine
            || eachDieInfo.tag == TAG_inlined_subroutine
            || eachDieInfo.tag == TAG_inlined_subroutine
            || eachDieInfo.tag == TAG_entry_point)
            || eachDieInfo.tag == TAG_entry_point)
          {
          {
            struct dwarf1_func* aFunc = alloc_dwarf1_func (stash,aUnit);
            struct dwarf1_func* aFunc = alloc_dwarf1_func (stash,aUnit);
            if (!aFunc)
            if (!aFunc)
              return FALSE;
              return FALSE;
 
 
            aFunc->name = eachDieInfo.name;
            aFunc->name = eachDieInfo.name;
            aFunc->low_pc = eachDieInfo.low_pc;
            aFunc->low_pc = eachDieInfo.low_pc;
            aFunc->high_pc = eachDieInfo.high_pc;
            aFunc->high_pc = eachDieInfo.high_pc;
          }
          }
 
 
        /* Move to next sibling, if none, end loop */
        /* Move to next sibling, if none, end loop */
        if (eachDieInfo.sibling)
        if (eachDieInfo.sibling)
          eachDie = stash->debug_section + eachDieInfo.sibling;
          eachDie = stash->debug_section + eachDieInfo.sibling;
        else
        else
          break;
          break;
      }
      }
 
 
  return TRUE;
  return TRUE;
}
}
 
 
/* Find the nearest line to 'addr' in 'aUnit'.
/* Find the nearest line to 'addr' in 'aUnit'.
   Return whether we found the line (or a function) without error.  */
   Return whether we found the line (or a function) without error.  */
 
 
static bfd_boolean
static bfd_boolean
dwarf1_unit_find_nearest_line (struct dwarf1_debug* stash,
dwarf1_unit_find_nearest_line (struct dwarf1_debug* stash,
                               struct dwarf1_unit* aUnit,
                               struct dwarf1_unit* aUnit,
                               unsigned long addr,
                               unsigned long addr,
                               const char **filename_ptr,
                               const char **filename_ptr,
                               const char **functionname_ptr,
                               const char **functionname_ptr,
                               unsigned int *linenumber_ptr)
                               unsigned int *linenumber_ptr)
{
{
  int line_p = FALSE;
  int line_p = FALSE;
  int func_p = FALSE;
  int func_p = FALSE;
 
 
  if (aUnit->low_pc <= addr && addr < aUnit->high_pc)
  if (aUnit->low_pc <= addr && addr < aUnit->high_pc)
    {
    {
      if (aUnit->has_stmt_list)
      if (aUnit->has_stmt_list)
        {
        {
          unsigned long i;
          unsigned long i;
          struct dwarf1_func* eachFunc;
          struct dwarf1_func* eachFunc;
 
 
          if (! aUnit->linenumber_table)
          if (! aUnit->linenumber_table)
            {
            {
              if (! parse_line_table (stash, aUnit))
              if (! parse_line_table (stash, aUnit))
                return FALSE;
                return FALSE;
            }
            }
 
 
          if (! aUnit->func_list)
          if (! aUnit->func_list)
            {
            {
              if (! parse_functions_in_unit (stash, aUnit))
              if (! parse_functions_in_unit (stash, aUnit))
                return FALSE;
                return FALSE;
            }
            }
 
 
          for (i = 0; i < aUnit->line_count; i++)
          for (i = 0; i < aUnit->line_count; i++)
            {
            {
              if (aUnit->linenumber_table[i].addr <= addr
              if (aUnit->linenumber_table[i].addr <= addr
                  && addr < aUnit->linenumber_table[i+1].addr)
                  && addr < aUnit->linenumber_table[i+1].addr)
                {
                {
                  *filename_ptr = aUnit->name;
                  *filename_ptr = aUnit->name;
                  *linenumber_ptr = aUnit->linenumber_table[i].linenumber;
                  *linenumber_ptr = aUnit->linenumber_table[i].linenumber;
                  line_p = TRUE;
                  line_p = TRUE;
                  break;
                  break;
                }
                }
            }
            }
 
 
          for (eachFunc = aUnit->func_list;
          for (eachFunc = aUnit->func_list;
               eachFunc;
               eachFunc;
               eachFunc = eachFunc->prev)
               eachFunc = eachFunc->prev)
            {
            {
              if (eachFunc->low_pc <= addr
              if (eachFunc->low_pc <= addr
                  && addr < eachFunc->high_pc)
                  && addr < eachFunc->high_pc)
                {
                {
                  *functionname_ptr = eachFunc->name;
                  *functionname_ptr = eachFunc->name;
                  func_p = TRUE;
                  func_p = TRUE;
                  break;
                  break;
                }
                }
            }
            }
        }
        }
    }
    }
 
 
  return line_p || func_p;
  return line_p || func_p;
}
}
 
 
/* The DWARF 1 version of find_nearest line.
/* The DWARF 1 version of find_nearest line.
   Return TRUE if the line is found without error.  */
   Return TRUE if the line is found without error.  */
 
 
bfd_boolean
bfd_boolean
_bfd_dwarf1_find_nearest_line (bfd *abfd,
_bfd_dwarf1_find_nearest_line (bfd *abfd,
                               asection *section,
                               asection *section,
                               asymbol **symbols,
                               asymbol **symbols,
                               bfd_vma offset,
                               bfd_vma offset,
                               const char **filename_ptr,
                               const char **filename_ptr,
                               const char **functionname_ptr,
                               const char **functionname_ptr,
                               unsigned int *linenumber_ptr)
                               unsigned int *linenumber_ptr)
{
{
  struct dwarf1_debug *stash = elf_tdata (abfd)->dwarf1_find_line_info;
  struct dwarf1_debug *stash = elf_tdata (abfd)->dwarf1_find_line_info;
 
 
  struct dwarf1_unit* eachUnit;
  struct dwarf1_unit* eachUnit;
 
 
  /* What address are we looking for? */
  /* What address are we looking for? */
  unsigned long addr = (unsigned long)(offset + section->vma);
  unsigned long addr = (unsigned long)(offset + section->vma);
 
 
  *filename_ptr = NULL;
  *filename_ptr = NULL;
  *functionname_ptr = NULL;
  *functionname_ptr = NULL;
  *linenumber_ptr = 0;
  *linenumber_ptr = 0;
 
 
  if (! stash)
  if (! stash)
    {
    {
      asection *msec;
      asection *msec;
      bfd_size_type size = sizeof (struct dwarf1_debug);
      bfd_size_type size = sizeof (struct dwarf1_debug);
 
 
      stash = elf_tdata (abfd)->dwarf1_find_line_info
      stash = elf_tdata (abfd)->dwarf1_find_line_info
        = (struct dwarf1_debug *) bfd_zalloc (abfd, size);
        = (struct dwarf1_debug *) bfd_zalloc (abfd, size);
 
 
      if (! stash)
      if (! stash)
        return FALSE;
        return FALSE;
 
 
      msec = bfd_get_section_by_name (abfd, ".debug");
      msec = bfd_get_section_by_name (abfd, ".debug");
      if (! msec)
      if (! msec)
        /* No dwarf1 info.  Note that at this point the stash
        /* No dwarf1 info.  Note that at this point the stash
           has been allocated, but contains zeros, this lets
           has been allocated, but contains zeros, this lets
           future calls to this function fail quicker.  */
           future calls to this function fail quicker.  */
        return FALSE;
        return FALSE;
 
 
      size = msec->rawsize ? msec->rawsize : msec->size;
      size = msec->rawsize ? msec->rawsize : msec->size;
      stash->debug_section
      stash->debug_section
        = bfd_simple_get_relocated_section_contents (abfd, msec, NULL,
        = bfd_simple_get_relocated_section_contents (abfd, msec, NULL,
                                                     symbols);
                                                     symbols);
 
 
      if (! stash->debug_section)
      if (! stash->debug_section)
        return FALSE;
        return FALSE;
 
 
      stash->debug_section_end = stash->debug_section + size;
      stash->debug_section_end = stash->debug_section + size;
      stash->currentDie = stash->debug_section;
      stash->currentDie = stash->debug_section;
      stash->abfd = abfd;
      stash->abfd = abfd;
      stash->syms = symbols;
      stash->syms = symbols;
    }
    }
 
 
  /* A null debug_section indicates that there was no dwarf1 info
  /* A null debug_section indicates that there was no dwarf1 info
     or that an error occured while setting up the stash.  */
     or that an error occured while setting up the stash.  */
 
 
  if (! stash->debug_section)
  if (! stash->debug_section)
    return FALSE;
    return FALSE;
 
 
  /* Look at the previously parsed units to see if any contain
  /* Look at the previously parsed units to see if any contain
     the addr.  */
     the addr.  */
  for (eachUnit = stash->lastUnit; eachUnit; eachUnit = eachUnit->prev)
  for (eachUnit = stash->lastUnit; eachUnit; eachUnit = eachUnit->prev)
    if (eachUnit->low_pc <= addr && addr < eachUnit->high_pc)
    if (eachUnit->low_pc <= addr && addr < eachUnit->high_pc)
      return dwarf1_unit_find_nearest_line (stash, eachUnit, addr,
      return dwarf1_unit_find_nearest_line (stash, eachUnit, addr,
                                            filename_ptr,
                                            filename_ptr,
                                            functionname_ptr,
                                            functionname_ptr,
                                            linenumber_ptr);
                                            linenumber_ptr);
 
 
  while (stash->currentDie < stash->debug_section_end)
  while (stash->currentDie < stash->debug_section_end)
    {
    {
      struct die_info aDieInfo;
      struct die_info aDieInfo;
 
 
      if (! parse_die (stash->abfd, &aDieInfo, stash->currentDie,
      if (! parse_die (stash->abfd, &aDieInfo, stash->currentDie,
                       stash->debug_section_end))
                       stash->debug_section_end))
        return FALSE;
        return FALSE;
 
 
      if (aDieInfo.tag == TAG_compile_unit)
      if (aDieInfo.tag == TAG_compile_unit)
        {
        {
          struct dwarf1_unit* aUnit
          struct dwarf1_unit* aUnit
            = alloc_dwarf1_unit (stash);
            = alloc_dwarf1_unit (stash);
          if (!aUnit)
          if (!aUnit)
            return FALSE;
            return FALSE;
 
 
          aUnit->name = aDieInfo.name;
          aUnit->name = aDieInfo.name;
          aUnit->low_pc = aDieInfo.low_pc;
          aUnit->low_pc = aDieInfo.low_pc;
          aUnit->high_pc = aDieInfo.high_pc;
          aUnit->high_pc = aDieInfo.high_pc;
          aUnit->has_stmt_list = aDieInfo.has_stmt_list;
          aUnit->has_stmt_list = aDieInfo.has_stmt_list;
          aUnit->stmt_list_offset = aDieInfo.stmt_list_offset;
          aUnit->stmt_list_offset = aDieInfo.stmt_list_offset;
 
 
          /* A die has a child if it's followed by a die that is
          /* A die has a child if it's followed by a die that is
             not it's sibling.  */
             not it's sibling.  */
          if (aDieInfo.sibling
          if (aDieInfo.sibling
              && stash->currentDie + aDieInfo.length
              && stash->currentDie + aDieInfo.length
                    < stash->debug_section_end
                    < stash->debug_section_end
              && stash->currentDie + aDieInfo.length
              && stash->currentDie + aDieInfo.length
                    != stash->debug_section + aDieInfo.sibling)
                    != stash->debug_section + aDieInfo.sibling)
            aUnit->first_child = stash->currentDie + aDieInfo.length;
            aUnit->first_child = stash->currentDie + aDieInfo.length;
          else
          else
            aUnit->first_child = 0;
            aUnit->first_child = 0;
 
 
          if (aUnit->low_pc <= addr && addr < aUnit->high_pc)
          if (aUnit->low_pc <= addr && addr < aUnit->high_pc)
            return dwarf1_unit_find_nearest_line (stash, aUnit, addr,
            return dwarf1_unit_find_nearest_line (stash, aUnit, addr,
                                                  filename_ptr,
                                                  filename_ptr,
                                                  functionname_ptr,
                                                  functionname_ptr,
                                                  linenumber_ptr);
                                                  linenumber_ptr);
        }
        }
 
 
      if (aDieInfo.sibling != 0)
      if (aDieInfo.sibling != 0)
        stash->currentDie = stash->debug_section + aDieInfo.sibling;
        stash->currentDie = stash->debug_section + aDieInfo.sibling;
      else
      else
        stash->currentDie += aDieInfo.length;
        stash->currentDie += aDieInfo.length;
    }
    }
 
 
  return FALSE;
  return FALSE;
}
}
 
 

powered by: WebSVN 2.1.0

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