1999-05-03 09:29:11 +02:00
|
|
|
/* DWARF 2 support.
|
2003-03-31 20:13:25 +02:00
|
|
|
Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
|
2001-03-08 22:04:02 +01:00
|
|
|
Free Software Foundation, Inc.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
Adapted from gdb/dwarf2read.c by Gavin Koch of Cygnus Solutions
|
|
|
|
(gavin@cygnus.com).
|
|
|
|
|
|
|
|
From the dwarf2read.c header:
|
|
|
|
Adapted by Gary Funck (gary@intrepid.com), Intrepid Technology,
|
|
|
|
Inc. with support from Florida State University (under contract
|
|
|
|
with the Ada Joint Program Office), and Silicon Graphics, Inc.
|
|
|
|
Initial contribution by Brent Benson, Harris Computer Systems, Inc.,
|
|
|
|
based on Fred Fish's (Cygnus Support) implementation of DWARF 1
|
|
|
|
support in dwarfread.c
|
|
|
|
|
2002-09-23 18:13:52 +02:00
|
|
|
This file is part of BFD.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-09-23 18:13:52 +02:00
|
|
|
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
|
|
|
|
the Free Software Foundation; either version 2 of the License, or (at
|
|
|
|
your option) any later version.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-09-23 18:13:52 +02:00
|
|
|
This program is distributed in the hope that it will be useful, but
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
General Public License for more details.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-09-23 18:13:52 +02:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
#include "bfd.h"
|
|
|
|
#include "sysdep.h"
|
|
|
|
#include "libiberty.h"
|
|
|
|
#include "libbfd.h"
|
|
|
|
#include "elf-bfd.h"
|
|
|
|
#include "elf/dwarf2.h"
|
|
|
|
|
|
|
|
/* The data in the .debug_line statement prologue looks like this. */
|
2000-09-02 22:21:40 +02:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
struct line_head
|
2000-09-02 22:21:40 +02:00
|
|
|
{
|
2001-11-14 12:16:47 +01:00
|
|
|
bfd_vma total_length;
|
2000-09-02 22:21:40 +02:00
|
|
|
unsigned short version;
|
2002-05-04 14:01:02 +02:00
|
|
|
bfd_vma prologue_length;
|
2000-09-02 22:21:40 +02:00
|
|
|
unsigned char minimum_instruction_length;
|
|
|
|
unsigned char default_is_stmt;
|
|
|
|
int line_base;
|
|
|
|
unsigned char line_range;
|
|
|
|
unsigned char opcode_base;
|
|
|
|
unsigned char *standard_opcode_lengths;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Attributes have a name and a value. */
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
struct attribute
|
2000-09-02 22:21:40 +02:00
|
|
|
{
|
|
|
|
enum dwarf_attribute name;
|
|
|
|
enum dwarf_form form;
|
|
|
|
union
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2000-09-02 22:21:40 +02:00
|
|
|
char *str;
|
|
|
|
struct dwarf_block *blk;
|
|
|
|
unsigned int unsnd;
|
|
|
|
int snd;
|
|
|
|
bfd_vma addr;
|
|
|
|
}
|
|
|
|
u;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Get at parts of an attribute structure. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
#define DW_STRING(attr) ((attr)->u.str)
|
|
|
|
#define DW_UNSND(attr) ((attr)->u.unsnd)
|
|
|
|
#define DW_BLOCK(attr) ((attr)->u.blk)
|
|
|
|
#define DW_SND(attr) ((attr)->u.snd)
|
|
|
|
#define DW_ADDR(attr) ((attr)->u.addr)
|
|
|
|
|
2000-11-16 20:29:48 +01:00
|
|
|
/* Blocks are a bunch of untyped bytes. */
|
1999-05-03 09:29:11 +02:00
|
|
|
struct dwarf_block
|
2000-09-02 22:21:40 +02:00
|
|
|
{
|
|
|
|
unsigned int size;
|
|
|
|
char *data;
|
|
|
|
};
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
struct dwarf2_debug
|
|
|
|
{
|
|
|
|
/* A list of all previously read comp_units. */
|
1999-05-03 09:29:11 +02:00
|
|
|
struct comp_unit* all_comp_units;
|
|
|
|
|
|
|
|
/* The next unread compilation unit within the .debug_info section.
|
|
|
|
Zero indicates that the .debug_info section has not been loaded
|
2000-09-02 22:21:40 +02:00
|
|
|
into a buffer yet. */
|
1999-05-03 09:29:11 +02:00
|
|
|
char* info_ptr;
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* Pointer to the end of the .debug_info section memory buffer. */
|
1999-05-03 09:29:11 +02:00
|
|
|
char* info_ptr_end;
|
|
|
|
|
2001-08-08 13:17:34 +02:00
|
|
|
/* Pointer to the section and address of the beginning of the
|
|
|
|
section. */
|
|
|
|
asection* sec;
|
|
|
|
char* sec_info_ptr;
|
|
|
|
|
|
|
|
/* Pointer to the symbol table. */
|
|
|
|
asymbol** syms;
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* Pointer to the .debug_abbrev section loaded into memory. */
|
1999-05-03 09:29:11 +02:00
|
|
|
char* dwarf_abbrev_buffer;
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* Length of the loaded .debug_abbrev section. */
|
1999-05-03 09:29:11 +02:00
|
|
|
unsigned long dwarf_abbrev_size;
|
1999-06-26 17:48:47 +02:00
|
|
|
|
|
|
|
/* Buffer for decode_line_info. */
|
|
|
|
char *dwarf_line_buffer;
|
2000-04-07 20:36:04 +02:00
|
|
|
|
|
|
|
/* Length of the loaded .debug_line section. */
|
|
|
|
unsigned long dwarf_line_size;
|
2001-11-14 12:16:47 +01:00
|
|
|
|
|
|
|
/* Pointer to the .debug_str section loaded into memory. */
|
|
|
|
char* dwarf_str_buffer;
|
|
|
|
|
|
|
|
/* Length of the loaded .debug_str section. */
|
|
|
|
unsigned long dwarf_str_size;
|
1999-05-03 09:29:11 +02:00
|
|
|
};
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
struct arange
|
|
|
|
{
|
1999-06-26 18:05:58 +02:00
|
|
|
struct arange *next;
|
|
|
|
bfd_vma low;
|
|
|
|
bfd_vma high;
|
|
|
|
};
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* A minimal decoding of DWARF2 compilation units. We only decode
|
2000-09-02 22:21:40 +02:00
|
|
|
what's needed to get to the line number information. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
struct comp_unit
|
|
|
|
{
|
|
|
|
/* Chain the previously read compilation units. */
|
1999-05-03 09:29:11 +02:00
|
|
|
struct comp_unit* next_unit;
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* Keep the bdf convenient (for memory allocation). */
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd* abfd;
|
|
|
|
|
|
|
|
/* The lowest and higest addresses contained in this compilation
|
2000-09-02 22:21:40 +02:00
|
|
|
unit as specified in the compilation unit header. */
|
1999-06-26 18:05:58 +02:00
|
|
|
struct arange arange;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* The DW_AT_name attribute (for error messages). */
|
1999-05-03 09:29:11 +02:00
|
|
|
char* name;
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* The abbrev hash table. */
|
1999-05-03 09:29:11 +02:00
|
|
|
struct abbrev_info** abbrevs;
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* Note that an error was found by comp_unit_find_nearest_line. */
|
1999-05-03 09:29:11 +02:00
|
|
|
int error;
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* The DW_AT_comp_dir attribute. */
|
1999-05-03 09:29:11 +02:00
|
|
|
char* comp_dir;
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
/* TRUE if there is a line number table associated with this comp. unit. */
|
1999-05-03 09:29:11 +02:00
|
|
|
int stmtlist;
|
2000-11-16 20:29:48 +01:00
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* The offset into .debug_line of the line number table. */
|
1999-05-03 09:29:11 +02:00
|
|
|
unsigned long line_offset;
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* Pointer to the first child die for the comp unit. */
|
1999-05-03 09:29:11 +02:00
|
|
|
char *first_child_die_ptr;
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* The end of the comp unit. */
|
1999-05-03 09:29:11 +02:00
|
|
|
char *end_ptr;
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* The decoded line number, NULL if not yet decoded. */
|
1999-05-03 09:29:11 +02:00
|
|
|
struct line_info_table* line_table;
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* A list of the functions found in this comp. unit. */
|
2000-11-16 20:29:48 +01:00
|
|
|
struct funcinfo* function_table;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-11-14 12:16:47 +01:00
|
|
|
/* Pointer to dwarf2_debug structure. */
|
|
|
|
struct dwarf2_debug *stash;
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* Address size for this unit - from unit header. */
|
1999-05-03 09:29:11 +02:00
|
|
|
unsigned char addr_size;
|
2001-11-14 12:16:47 +01:00
|
|
|
|
|
|
|
/* Offset size for this unit - from unit header. */
|
|
|
|
unsigned char offset_size;
|
1999-05-03 09:29:11 +02:00
|
|
|
};
|
|
|
|
|
2001-08-09 16:38:04 +02:00
|
|
|
/* This data structure holds the information of an abbrev. */
|
|
|
|
struct abbrev_info
|
|
|
|
{
|
|
|
|
unsigned int number; /* Number identifying abbrev. */
|
|
|
|
enum dwarf_tag tag; /* DWARF tag. */
|
|
|
|
int has_children; /* Boolean. */
|
|
|
|
unsigned int num_attrs; /* Number of attributes. */
|
|
|
|
struct attr_abbrev *attrs; /* An array of attribute descriptions. */
|
|
|
|
struct abbrev_info *next; /* Next in chain. */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct attr_abbrev
|
|
|
|
{
|
|
|
|
enum dwarf_attribute name;
|
|
|
|
enum dwarf_form form;
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifndef ABBREV_HASH_SIZE
|
|
|
|
#define ABBREV_HASH_SIZE 121
|
|
|
|
#endif
|
|
|
|
#ifndef ATTR_ALLOC_CHUNK
|
|
|
|
#define ATTR_ALLOC_CHUNK 4
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static unsigned int read_1_byte PARAMS ((bfd *, char *));
|
|
|
|
static int read_1_signed_byte PARAMS ((bfd *, char *));
|
|
|
|
static unsigned int read_2_bytes PARAMS ((bfd *, char *));
|
|
|
|
static unsigned int read_4_bytes PARAMS ((bfd *, char *));
|
2001-11-14 12:16:47 +01:00
|
|
|
static bfd_vma read_8_bytes PARAMS ((bfd *, char *));
|
2001-08-09 16:38:04 +02:00
|
|
|
static char *read_n_bytes PARAMS ((bfd *, char *, unsigned int));
|
|
|
|
static char *read_string PARAMS ((bfd *, char *, unsigned int *));
|
2001-11-14 12:16:47 +01:00
|
|
|
static char *read_indirect_string PARAMS ((struct comp_unit *, char *, unsigned int *));
|
2001-08-09 16:38:04 +02:00
|
|
|
static unsigned int read_unsigned_leb128
|
|
|
|
PARAMS ((bfd *, char *, unsigned int *));
|
|
|
|
static int read_signed_leb128
|
|
|
|
PARAMS ((bfd *, char *, unsigned int *));
|
|
|
|
static bfd_vma read_address PARAMS ((struct comp_unit *, char *));
|
|
|
|
static struct abbrev_info *lookup_abbrev
|
|
|
|
PARAMS ((unsigned int, struct abbrev_info **));
|
|
|
|
static struct abbrev_info **read_abbrevs
|
2002-05-04 14:01:02 +02:00
|
|
|
PARAMS ((bfd *, bfd_vma, struct dwarf2_debug *));
|
2001-08-09 16:38:04 +02:00
|
|
|
static char *read_attribute
|
|
|
|
PARAMS ((struct attribute *, struct attr_abbrev *,
|
|
|
|
struct comp_unit *, char *));
|
2001-11-14 00:37:41 +01:00
|
|
|
static char *read_attribute_value
|
|
|
|
PARAMS ((struct attribute *, unsigned,
|
|
|
|
struct comp_unit *, char *));
|
2001-08-09 16:38:04 +02:00
|
|
|
static void add_line_info
|
|
|
|
PARAMS ((struct line_info_table *, bfd_vma, char *,
|
|
|
|
unsigned int, unsigned int, int));
|
|
|
|
static char *concat_filename PARAMS ((struct line_info_table *, unsigned int));
|
|
|
|
static void arange_add PARAMS ((struct comp_unit *, bfd_vma, bfd_vma));
|
|
|
|
static struct line_info_table *decode_line_info
|
|
|
|
PARAMS ((struct comp_unit *, struct dwarf2_debug *));
|
2002-11-30 09:39:46 +01:00
|
|
|
static bfd_boolean lookup_address_in_line_info_table
|
2002-03-20 20:15:30 +01:00
|
|
|
PARAMS ((struct line_info_table *, bfd_vma, struct funcinfo *,
|
|
|
|
const char **, unsigned int *));
|
2002-11-30 09:39:46 +01:00
|
|
|
static bfd_boolean lookup_address_in_function_table
|
2002-03-20 20:15:30 +01:00
|
|
|
PARAMS ((struct funcinfo *, bfd_vma, struct funcinfo **, const char **));
|
2002-11-30 09:39:46 +01:00
|
|
|
static bfd_boolean scan_unit_for_functions PARAMS ((struct comp_unit *));
|
2001-08-09 16:38:04 +02:00
|
|
|
static struct comp_unit *parse_comp_unit
|
|
|
|
PARAMS ((bfd *, struct dwarf2_debug *, bfd_vma, unsigned int));
|
2002-11-30 09:39:46 +01:00
|
|
|
static bfd_boolean comp_unit_contains_address
|
2001-08-09 16:38:04 +02:00
|
|
|
PARAMS ((struct comp_unit *, bfd_vma));
|
2002-11-30 09:39:46 +01:00
|
|
|
static bfd_boolean comp_unit_find_nearest_line
|
2001-08-09 16:38:04 +02:00
|
|
|
PARAMS ((struct comp_unit *, bfd_vma, const char **, const char **,
|
|
|
|
unsigned int *, struct dwarf2_debug *));
|
|
|
|
static asection *find_debug_info PARAMS ((bfd *, asection *));
|
|
|
|
|
2000-11-16 20:29:48 +01:00
|
|
|
/* VERBATIM
|
|
|
|
The following function up to the END VERBATIM mark are
|
2000-09-02 22:21:40 +02:00
|
|
|
copied directly from dwarf2read.c. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* Read dwarf information from a buffer. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
static unsigned int
|
|
|
|
read_1_byte (abfd, buf)
|
1999-07-11 21:49:48 +02:00
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
char *buf;
|
|
|
|
{
|
|
|
|
return bfd_get_8 (abfd, (bfd_byte *) buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
read_1_signed_byte (abfd, buf)
|
1999-07-11 21:49:48 +02:00
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
char *buf;
|
|
|
|
{
|
|
|
|
return bfd_get_signed_8 (abfd, (bfd_byte *) buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned int
|
|
|
|
read_2_bytes (abfd, buf)
|
|
|
|
bfd *abfd;
|
|
|
|
char *buf;
|
|
|
|
{
|
|
|
|
return bfd_get_16 (abfd, (bfd_byte *) buf);
|
|
|
|
}
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
#if 0 /* This is not used. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
static int
|
|
|
|
read_2_signed_bytes (abfd, buf)
|
|
|
|
bfd *abfd;
|
|
|
|
char *buf;
|
|
|
|
{
|
|
|
|
return bfd_get_signed_16 (abfd, (bfd_byte *) buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static unsigned int
|
|
|
|
read_4_bytes (abfd, buf)
|
|
|
|
bfd *abfd;
|
|
|
|
char *buf;
|
|
|
|
{
|
|
|
|
return bfd_get_32 (abfd, (bfd_byte *) buf);
|
|
|
|
}
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
#if 0 /* This is not used. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
static int
|
|
|
|
read_4_signed_bytes (abfd, buf)
|
|
|
|
bfd *abfd;
|
|
|
|
char *buf;
|
|
|
|
{
|
|
|
|
return bfd_get_signed_32 (abfd, (bfd_byte *) buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2001-11-14 12:16:47 +01:00
|
|
|
static bfd_vma
|
1999-05-03 09:29:11 +02:00
|
|
|
read_8_bytes (abfd, buf)
|
|
|
|
bfd *abfd;
|
|
|
|
char *buf;
|
|
|
|
{
|
|
|
|
return bfd_get_64 (abfd, (bfd_byte *) buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
read_n_bytes (abfd, buf, size)
|
1999-07-11 21:49:48 +02:00
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
char *buf;
|
1999-07-11 21:49:48 +02:00
|
|
|
unsigned int size ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
/* If the size of a host char is 8 bits, we can return a pointer
|
|
|
|
to the buffer, otherwise we have to copy the data to a buffer
|
|
|
|
allocated on the temporary obstack. */
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
read_string (abfd, buf, bytes_read_ptr)
|
1999-07-11 21:49:48 +02:00
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
char *buf;
|
|
|
|
unsigned int *bytes_read_ptr;
|
|
|
|
{
|
2001-11-14 12:16:47 +01:00
|
|
|
/* Return a pointer to the embedded string. */
|
1999-05-03 09:29:11 +02:00
|
|
|
if (*buf == '\0')
|
|
|
|
{
|
|
|
|
*bytes_read_ptr = 1;
|
|
|
|
return NULL;
|
|
|
|
}
|
2000-11-16 20:29:48 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
*bytes_read_ptr = strlen (buf) + 1;
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2001-11-14 12:16:47 +01:00
|
|
|
static char *
|
|
|
|
read_indirect_string (unit, buf, bytes_read_ptr)
|
|
|
|
struct comp_unit* unit;
|
|
|
|
char *buf;
|
|
|
|
unsigned int *bytes_read_ptr;
|
|
|
|
{
|
|
|
|
bfd_vma offset;
|
|
|
|
struct dwarf2_debug *stash = unit->stash;
|
|
|
|
|
|
|
|
if (unit->offset_size == 4)
|
|
|
|
offset = read_4_bytes (unit->abfd, buf);
|
|
|
|
else
|
|
|
|
offset = read_8_bytes (unit->abfd, buf);
|
|
|
|
*bytes_read_ptr = unit->offset_size;
|
|
|
|
|
|
|
|
if (! stash->dwarf_str_buffer)
|
|
|
|
{
|
|
|
|
asection *msec;
|
|
|
|
bfd *abfd = unit->abfd;
|
|
|
|
|
|
|
|
msec = bfd_get_section_by_name (abfd, ".debug_str");
|
|
|
|
if (! msec)
|
|
|
|
{
|
|
|
|
(*_bfd_error_handler)
|
|
|
|
(_("Dwarf Error: Can't find .debug_str section."));
|
|
|
|
bfd_set_error (bfd_error_bad_value);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
stash->dwarf_str_size = msec->_raw_size;
|
|
|
|
stash->dwarf_str_buffer = (char*) bfd_alloc (abfd, msec->_raw_size);
|
|
|
|
if (! stash->dwarf_abbrev_buffer)
|
|
|
|
return NULL;
|
|
|
|
|
2002-11-07 23:19:59 +01:00
|
|
|
if (! bfd_get_section_contents (abfd, msec, stash->dwarf_str_buffer,
|
|
|
|
(bfd_vma) 0, msec->_raw_size))
|
2001-11-14 12:16:47 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (offset >= stash->dwarf_str_size)
|
|
|
|
{
|
2002-05-04 14:01:02 +02:00
|
|
|
(*_bfd_error_handler) (_("Dwarf Error: DW_FORM_strp offset (%lu) greater than or equal to .debug_str size (%lu)."),
|
|
|
|
(unsigned long) offset, stash->dwarf_str_size);
|
2001-11-14 12:16:47 +01:00
|
|
|
bfd_set_error (bfd_error_bad_value);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2002-10-23 14:41:32 +02:00
|
|
|
buf = stash->dwarf_str_buffer + offset;
|
2001-11-14 12:16:47 +01:00
|
|
|
if (*buf == '\0')
|
|
|
|
return NULL;
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
static unsigned int
|
|
|
|
read_unsigned_leb128 (abfd, buf, bytes_read_ptr)
|
1999-07-11 21:49:48 +02:00
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
char *buf;
|
|
|
|
unsigned int *bytes_read_ptr;
|
|
|
|
{
|
|
|
|
unsigned int result;
|
|
|
|
unsigned int num_read;
|
|
|
|
int shift;
|
|
|
|
unsigned char byte;
|
|
|
|
|
|
|
|
result = 0;
|
|
|
|
shift = 0;
|
|
|
|
num_read = 0;
|
2000-11-16 20:29:48 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
do
|
|
|
|
{
|
|
|
|
byte = bfd_get_8 (abfd, (bfd_byte *) buf);
|
|
|
|
buf ++;
|
|
|
|
num_read ++;
|
|
|
|
result |= ((byte & 0x7f) << shift);
|
|
|
|
shift += 7;
|
|
|
|
}
|
|
|
|
while (byte & 0x80);
|
2000-11-16 20:29:48 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
* bytes_read_ptr = num_read;
|
2000-11-16 20:29:48 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
read_signed_leb128 (abfd, buf, bytes_read_ptr)
|
1999-07-11 21:49:48 +02:00
|
|
|
bfd *abfd ATTRIBUTE_UNUSED;
|
|
|
|
char *buf;
|
1999-05-03 09:29:11 +02:00
|
|
|
unsigned int * bytes_read_ptr;
|
|
|
|
{
|
|
|
|
int result;
|
|
|
|
int shift;
|
|
|
|
int num_read;
|
|
|
|
unsigned char byte;
|
|
|
|
|
|
|
|
result = 0;
|
|
|
|
shift = 0;
|
|
|
|
num_read = 0;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
byte = bfd_get_8 (abfd, (bfd_byte *) buf);
|
|
|
|
buf ++;
|
|
|
|
num_read ++;
|
|
|
|
result |= ((byte & 0x7f) << shift);
|
|
|
|
shift += 7;
|
|
|
|
}
|
|
|
|
while (byte & 0x80);
|
2000-11-16 20:29:48 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
if ((shift < 32) && (byte & 0x40))
|
|
|
|
result |= -(1 << shift);
|
|
|
|
|
|
|
|
* bytes_read_ptr = num_read;
|
2000-11-16 20:29:48 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* END VERBATIM */
|
|
|
|
|
|
|
|
static bfd_vma
|
|
|
|
read_address (unit, buf)
|
|
|
|
struct comp_unit* unit;
|
|
|
|
char *buf;
|
|
|
|
{
|
2000-02-23 23:27:55 +01:00
|
|
|
switch (unit->addr_size)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2000-02-23 23:27:55 +01:00
|
|
|
case 8:
|
|
|
|
return bfd_get_64 (unit->abfd, (bfd_byte *) buf);
|
|
|
|
case 4:
|
|
|
|
return bfd_get_32 (unit->abfd, (bfd_byte *) buf);
|
|
|
|
case 2:
|
|
|
|
return bfd_get_16 (unit->abfd, (bfd_byte *) buf);
|
|
|
|
default:
|
|
|
|
abort ();
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Lookup an abbrev_info structure in the abbrev hash table. */
|
|
|
|
|
|
|
|
static struct abbrev_info *
|
|
|
|
lookup_abbrev (number,abbrevs)
|
|
|
|
unsigned int number;
|
|
|
|
struct abbrev_info **abbrevs;
|
|
|
|
{
|
|
|
|
unsigned int hash_number;
|
|
|
|
struct abbrev_info *abbrev;
|
|
|
|
|
|
|
|
hash_number = number % ABBREV_HASH_SIZE;
|
|
|
|
abbrev = abbrevs[hash_number];
|
|
|
|
|
|
|
|
while (abbrev)
|
|
|
|
{
|
|
|
|
if (abbrev->number == number)
|
|
|
|
return abbrev;
|
|
|
|
else
|
|
|
|
abbrev = abbrev->next;
|
|
|
|
}
|
2000-11-16 20:29:48 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* In DWARF version 2, the description of the debugging information is
|
|
|
|
stored in a separate .debug_abbrev section. Before we read any
|
|
|
|
dies from a section we read in all abbreviations and install them
|
|
|
|
in a hash table. */
|
|
|
|
|
|
|
|
static struct abbrev_info**
|
2000-12-08 23:50:07 +01:00
|
|
|
read_abbrevs (abfd, offset, stash)
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd * abfd;
|
2002-05-04 14:01:02 +02:00
|
|
|
bfd_vma offset;
|
2000-12-08 23:50:07 +01:00
|
|
|
struct dwarf2_debug *stash;
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
struct abbrev_info **abbrevs;
|
|
|
|
char *abbrev_ptr;
|
|
|
|
struct abbrev_info *cur_abbrev;
|
|
|
|
unsigned int abbrev_number, bytes_read, abbrev_name;
|
|
|
|
unsigned int abbrev_form, hash_number;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_size_type amt;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
if (! stash->dwarf_abbrev_buffer)
|
|
|
|
{
|
|
|
|
asection *msec;
|
|
|
|
|
|
|
|
msec = bfd_get_section_by_name (abfd, ".debug_abbrev");
|
|
|
|
if (! msec)
|
|
|
|
{
|
|
|
|
(*_bfd_error_handler) (_("Dwarf Error: Can't find .debug_abbrev section."));
|
|
|
|
bfd_set_error (bfd_error_bad_value);
|
|
|
|
return 0;
|
|
|
|
}
|
2000-11-16 20:29:48 +01:00
|
|
|
|
2000-02-28 04:39:28 +01:00
|
|
|
stash->dwarf_abbrev_size = msec->_raw_size;
|
2003-04-01 02:12:12 +02:00
|
|
|
stash->dwarf_abbrev_buffer
|
|
|
|
= bfd_simple_get_relocated_section_contents (abfd, msec, NULL,
|
|
|
|
stash->syms);
|
1999-05-03 09:29:11 +02:00
|
|
|
if (! stash->dwarf_abbrev_buffer)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-05-21 13:52:42 +02:00
|
|
|
if (offset >= stash->dwarf_abbrev_size)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2002-05-04 14:01:02 +02:00
|
|
|
(*_bfd_error_handler) (_("Dwarf Error: Abbrev offset (%lu) greater than or equal to .debug_abbrev size (%lu)."),
|
|
|
|
(unsigned long) offset, stash->dwarf_abbrev_size);
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_set_error (bfd_error_bad_value);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
amt = sizeof (struct abbrev_info*) * ABBREV_HASH_SIZE;
|
|
|
|
abbrevs = (struct abbrev_info**) bfd_zalloc (abfd, amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
abbrev_ptr = stash->dwarf_abbrev_buffer + offset;
|
|
|
|
abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
|
|
|
|
abbrev_ptr += bytes_read;
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* Loop until we reach an abbrev number of 0. */
|
1999-05-03 09:29:11 +02:00
|
|
|
while (abbrev_number)
|
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
amt = sizeof (struct abbrev_info);
|
|
|
|
cur_abbrev = (struct abbrev_info *) bfd_zalloc (abfd, amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* Read in abbrev header. */
|
1999-05-03 09:29:11 +02:00
|
|
|
cur_abbrev->number = abbrev_number;
|
* aoutx.h (NAME(aout,swap_ext_reloc_in)): Cast bytes->r_index to
unsigned int. Cast RELOC_BASE10, RELOC_BASE13 and RELOC_BASE22 to
unsigned int.
(NAME(aout,final_link)): Cast enum used in assignment.
(aout_link_write_symbols): Cast enums in comparisons, int values to
boolean, enums in assignments to int.
(aout_link_input_section_std): Cast rel->r_index to unsigned int.
(aout_link_input_section_ext): Likewise. Cast enums used in comparisons
with unsigned ints.
(aout_link_reloc_link_order): Cast enum to int in assignment.
* archive.c (_bfd_generic_read_ar_hdr_mag): Cast result of memchr
calls to char *.
* bfd-in.h (bfd_set_section_vma): Cast enum true to unsigned int in
assignment.
* bfd-in2.h (bfd_set_section_vma): Likewise.
* bfd.c (bfd_record_phdr): Cast enums in assignments.
* binary.c (bfd_alloc): Cast enum to long.
* coffgen.c (_bfd_coff_is_local_label_name): Cast return to boolean.
* dwarf2.c (read_abbrevs): Add casts to enum types.
(read_attribute_value): Likewise.
(arange_add): Cast result of bfd_zalloc call.
(comp_unit_contains_address): Return true and false.
(comp_unit_find_nearest_line): Cast return to boolean.
* format.c (bfd_check_format_matches, bfd_set_format): Likewise.
* gen-aout.c: define macro '_' if not defined.
* libbfd.c (bfd_realloc): Cast malloc and realloc to PTR.
(bfd_bwrite): Cast bfd_realloc to bfd_byte *.
(bfd_write_bigendian_4byte_int): Cast return to boolean.
(bfd_seek): Cast bfd_realloc to bfd_byte *.
(bfd_generic_is_local_label_name): Cast return to boolean.
* libcoff.h (_bfd_coff_adjust_symndx): Remove extraneous '\'.
* linker.c (_bfd_link_hash_newfunc): Cast bfd_hash_allocate result to
struct bfd_hash_entry *.
(_bfd_generic_link_hash_newfunc): likewise.
(_bfd_generic_final_link): Cast enum to unsigned int.
* merge.c (sec_merge_emit): Cast return to boolean.
(merge_strings): Add casts to const unsigned char *.
* reloc.c (bfd_get_reloc_code_name): Cast enums in comparison to int.
(bfd_generic_get_relocated_section_content): Cast enum to unsigned int.
* section.c (bfd_section_hash_newfunc): Cast bfd_hash_allocate result to
struct bfd_hash_entry *.
(bfd_set_section_content): Add cast to PTR in comparison.
* simple.c (simple_dummy_warning, simple_dummy_undefined_symbol,
simple_dummy_reloc_overflow, simple_dummy_reloc_dangerous,
simple_dummy_unattached_reloc,
bfd_simple_get_relocated_section_contents): Add K&R declarations and
function definitions.
* srec.c (S3Forced): Initialize to false.
(srec_get_symtab): Cast return value from bfd_alloc to asymbol *.
* stabs.c (_bfd_link_section_stabs): Cast enum to int in comparisons.
(_bfd_discard_section_stabs): Likewise. Also cast return to boolean.
* syms.c (bfd_is_undefined_symclass): Cast return to boolean.
(_bfd_stab_section_find_nearest_line): Cast enum to bfd_byte in
comparisons.
2002-10-25 04:45:54 +02:00
|
|
|
cur_abbrev->tag = (enum dwarf_tag)
|
|
|
|
read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
|
1999-05-03 09:29:11 +02:00
|
|
|
abbrev_ptr += bytes_read;
|
|
|
|
cur_abbrev->has_children = read_1_byte (abfd, abbrev_ptr);
|
|
|
|
abbrev_ptr += 1;
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* Now read in declarations. */
|
1999-05-03 09:29:11 +02:00
|
|
|
abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
|
|
|
|
abbrev_ptr += bytes_read;
|
|
|
|
abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
|
|
|
|
abbrev_ptr += bytes_read;
|
2000-11-16 20:29:48 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
while (abbrev_name)
|
|
|
|
{
|
|
|
|
if ((cur_abbrev->num_attrs % ATTR_ALLOC_CHUNK) == 0)
|
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
amt = cur_abbrev->num_attrs + ATTR_ALLOC_CHUNK;
|
|
|
|
amt *= sizeof (struct attr_abbrev);
|
|
|
|
cur_abbrev->attrs = ((struct attr_abbrev *)
|
|
|
|
bfd_realloc (cur_abbrev->attrs, amt));
|
1999-05-03 09:29:11 +02:00
|
|
|
if (! cur_abbrev->attrs)
|
|
|
|
return 0;
|
|
|
|
}
|
2000-11-16 20:29:48 +01:00
|
|
|
|
* aoutx.h (NAME(aout,swap_ext_reloc_in)): Cast bytes->r_index to
unsigned int. Cast RELOC_BASE10, RELOC_BASE13 and RELOC_BASE22 to
unsigned int.
(NAME(aout,final_link)): Cast enum used in assignment.
(aout_link_write_symbols): Cast enums in comparisons, int values to
boolean, enums in assignments to int.
(aout_link_input_section_std): Cast rel->r_index to unsigned int.
(aout_link_input_section_ext): Likewise. Cast enums used in comparisons
with unsigned ints.
(aout_link_reloc_link_order): Cast enum to int in assignment.
* archive.c (_bfd_generic_read_ar_hdr_mag): Cast result of memchr
calls to char *.
* bfd-in.h (bfd_set_section_vma): Cast enum true to unsigned int in
assignment.
* bfd-in2.h (bfd_set_section_vma): Likewise.
* bfd.c (bfd_record_phdr): Cast enums in assignments.
* binary.c (bfd_alloc): Cast enum to long.
* coffgen.c (_bfd_coff_is_local_label_name): Cast return to boolean.
* dwarf2.c (read_abbrevs): Add casts to enum types.
(read_attribute_value): Likewise.
(arange_add): Cast result of bfd_zalloc call.
(comp_unit_contains_address): Return true and false.
(comp_unit_find_nearest_line): Cast return to boolean.
* format.c (bfd_check_format_matches, bfd_set_format): Likewise.
* gen-aout.c: define macro '_' if not defined.
* libbfd.c (bfd_realloc): Cast malloc and realloc to PTR.
(bfd_bwrite): Cast bfd_realloc to bfd_byte *.
(bfd_write_bigendian_4byte_int): Cast return to boolean.
(bfd_seek): Cast bfd_realloc to bfd_byte *.
(bfd_generic_is_local_label_name): Cast return to boolean.
* libcoff.h (_bfd_coff_adjust_symndx): Remove extraneous '\'.
* linker.c (_bfd_link_hash_newfunc): Cast bfd_hash_allocate result to
struct bfd_hash_entry *.
(_bfd_generic_link_hash_newfunc): likewise.
(_bfd_generic_final_link): Cast enum to unsigned int.
* merge.c (sec_merge_emit): Cast return to boolean.
(merge_strings): Add casts to const unsigned char *.
* reloc.c (bfd_get_reloc_code_name): Cast enums in comparison to int.
(bfd_generic_get_relocated_section_content): Cast enum to unsigned int.
* section.c (bfd_section_hash_newfunc): Cast bfd_hash_allocate result to
struct bfd_hash_entry *.
(bfd_set_section_content): Add cast to PTR in comparison.
* simple.c (simple_dummy_warning, simple_dummy_undefined_symbol,
simple_dummy_reloc_overflow, simple_dummy_reloc_dangerous,
simple_dummy_unattached_reloc,
bfd_simple_get_relocated_section_contents): Add K&R declarations and
function definitions.
* srec.c (S3Forced): Initialize to false.
(srec_get_symtab): Cast return value from bfd_alloc to asymbol *.
* stabs.c (_bfd_link_section_stabs): Cast enum to int in comparisons.
(_bfd_discard_section_stabs): Likewise. Also cast return to boolean.
* syms.c (bfd_is_undefined_symclass): Cast return to boolean.
(_bfd_stab_section_find_nearest_line): Cast enum to bfd_byte in
comparisons.
2002-10-25 04:45:54 +02:00
|
|
|
cur_abbrev->attrs[cur_abbrev->num_attrs].name
|
|
|
|
= (enum dwarf_attribute) abbrev_name;
|
|
|
|
cur_abbrev->attrs[cur_abbrev->num_attrs++].form
|
|
|
|
= (enum dwarf_form) abbrev_form;
|
1999-05-03 09:29:11 +02:00
|
|
|
abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
|
|
|
|
abbrev_ptr += bytes_read;
|
|
|
|
abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
|
|
|
|
abbrev_ptr += bytes_read;
|
|
|
|
}
|
|
|
|
|
|
|
|
hash_number = abbrev_number % ABBREV_HASH_SIZE;
|
|
|
|
cur_abbrev->next = abbrevs[hash_number];
|
|
|
|
abbrevs[hash_number] = cur_abbrev;
|
|
|
|
|
|
|
|
/* Get next abbreviation.
|
2002-10-23 14:41:32 +02:00
|
|
|
Under Irix6 the abbreviations for a compilation unit are not
|
1999-05-03 09:29:11 +02:00
|
|
|
always properly terminated with an abbrev number of 0.
|
|
|
|
Exit loop if we encounter an abbreviation which we have
|
|
|
|
already read (which means we are about to read the abbreviations
|
|
|
|
for the next compile unit) or if the end of the abbreviation
|
|
|
|
table is reached. */
|
|
|
|
if ((unsigned int) (abbrev_ptr - stash->dwarf_abbrev_buffer)
|
|
|
|
>= stash->dwarf_abbrev_size)
|
|
|
|
break;
|
|
|
|
abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
|
|
|
|
abbrev_ptr += bytes_read;
|
|
|
|
if (lookup_abbrev (abbrev_number,abbrevs) != NULL)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return abbrevs;
|
|
|
|
}
|
|
|
|
|
2001-11-14 00:37:41 +01:00
|
|
|
/* Read an attribute value described by an attribute form. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
static char *
|
2001-11-14 00:37:41 +01:00
|
|
|
read_attribute_value (attr, form, unit, info_ptr)
|
1999-05-03 09:29:11 +02:00
|
|
|
struct attribute *attr;
|
2001-11-14 00:37:41 +01:00
|
|
|
unsigned form;
|
1999-05-03 09:29:11 +02:00
|
|
|
struct comp_unit *unit;
|
|
|
|
char *info_ptr;
|
|
|
|
{
|
|
|
|
bfd *abfd = unit->abfd;
|
|
|
|
unsigned int bytes_read;
|
|
|
|
struct dwarf_block *blk;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_size_type amt;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
* aoutx.h (NAME(aout,swap_ext_reloc_in)): Cast bytes->r_index to
unsigned int. Cast RELOC_BASE10, RELOC_BASE13 and RELOC_BASE22 to
unsigned int.
(NAME(aout,final_link)): Cast enum used in assignment.
(aout_link_write_symbols): Cast enums in comparisons, int values to
boolean, enums in assignments to int.
(aout_link_input_section_std): Cast rel->r_index to unsigned int.
(aout_link_input_section_ext): Likewise. Cast enums used in comparisons
with unsigned ints.
(aout_link_reloc_link_order): Cast enum to int in assignment.
* archive.c (_bfd_generic_read_ar_hdr_mag): Cast result of memchr
calls to char *.
* bfd-in.h (bfd_set_section_vma): Cast enum true to unsigned int in
assignment.
* bfd-in2.h (bfd_set_section_vma): Likewise.
* bfd.c (bfd_record_phdr): Cast enums in assignments.
* binary.c (bfd_alloc): Cast enum to long.
* coffgen.c (_bfd_coff_is_local_label_name): Cast return to boolean.
* dwarf2.c (read_abbrevs): Add casts to enum types.
(read_attribute_value): Likewise.
(arange_add): Cast result of bfd_zalloc call.
(comp_unit_contains_address): Return true and false.
(comp_unit_find_nearest_line): Cast return to boolean.
* format.c (bfd_check_format_matches, bfd_set_format): Likewise.
* gen-aout.c: define macro '_' if not defined.
* libbfd.c (bfd_realloc): Cast malloc and realloc to PTR.
(bfd_bwrite): Cast bfd_realloc to bfd_byte *.
(bfd_write_bigendian_4byte_int): Cast return to boolean.
(bfd_seek): Cast bfd_realloc to bfd_byte *.
(bfd_generic_is_local_label_name): Cast return to boolean.
* libcoff.h (_bfd_coff_adjust_symndx): Remove extraneous '\'.
* linker.c (_bfd_link_hash_newfunc): Cast bfd_hash_allocate result to
struct bfd_hash_entry *.
(_bfd_generic_link_hash_newfunc): likewise.
(_bfd_generic_final_link): Cast enum to unsigned int.
* merge.c (sec_merge_emit): Cast return to boolean.
(merge_strings): Add casts to const unsigned char *.
* reloc.c (bfd_get_reloc_code_name): Cast enums in comparison to int.
(bfd_generic_get_relocated_section_content): Cast enum to unsigned int.
* section.c (bfd_section_hash_newfunc): Cast bfd_hash_allocate result to
struct bfd_hash_entry *.
(bfd_set_section_content): Add cast to PTR in comparison.
* simple.c (simple_dummy_warning, simple_dummy_undefined_symbol,
simple_dummy_reloc_overflow, simple_dummy_reloc_dangerous,
simple_dummy_unattached_reloc,
bfd_simple_get_relocated_section_contents): Add K&R declarations and
function definitions.
* srec.c (S3Forced): Initialize to false.
(srec_get_symtab): Cast return value from bfd_alloc to asymbol *.
* stabs.c (_bfd_link_section_stabs): Cast enum to int in comparisons.
(_bfd_discard_section_stabs): Likewise. Also cast return to boolean.
* syms.c (bfd_is_undefined_symclass): Cast return to boolean.
(_bfd_stab_section_find_nearest_line): Cast enum to bfd_byte in
comparisons.
2002-10-25 04:45:54 +02:00
|
|
|
attr->form = (enum dwarf_form) form;
|
2000-11-16 20:29:48 +01:00
|
|
|
|
2001-11-14 00:37:41 +01:00
|
|
|
switch (form)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
case DW_FORM_addr:
|
2003-04-01 12:49:02 +02:00
|
|
|
/* FIXME: DWARF3 draft says DW_FORM_ref_addr is offset_size. */
|
1999-05-03 09:29:11 +02:00
|
|
|
case DW_FORM_ref_addr:
|
|
|
|
DW_ADDR (attr) = read_address (unit, info_ptr);
|
|
|
|
info_ptr += unit->addr_size;
|
|
|
|
break;
|
|
|
|
case DW_FORM_block2:
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
amt = sizeof (struct dwarf_block);
|
|
|
|
blk = (struct dwarf_block *) bfd_alloc (abfd, amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
blk->size = read_2_bytes (abfd, info_ptr);
|
|
|
|
info_ptr += 2;
|
|
|
|
blk->data = read_n_bytes (abfd, info_ptr, blk->size);
|
|
|
|
info_ptr += blk->size;
|
|
|
|
DW_BLOCK (attr) = blk;
|
|
|
|
break;
|
|
|
|
case DW_FORM_block4:
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
amt = sizeof (struct dwarf_block);
|
|
|
|
blk = (struct dwarf_block *) bfd_alloc (abfd, amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
blk->size = read_4_bytes (abfd, info_ptr);
|
|
|
|
info_ptr += 4;
|
|
|
|
blk->data = read_n_bytes (abfd, info_ptr, blk->size);
|
|
|
|
info_ptr += blk->size;
|
|
|
|
DW_BLOCK (attr) = blk;
|
|
|
|
break;
|
|
|
|
case DW_FORM_data2:
|
|
|
|
DW_UNSND (attr) = read_2_bytes (abfd, info_ptr);
|
|
|
|
info_ptr += 2;
|
|
|
|
break;
|
|
|
|
case DW_FORM_data4:
|
|
|
|
DW_UNSND (attr) = read_4_bytes (abfd, info_ptr);
|
|
|
|
info_ptr += 4;
|
|
|
|
break;
|
|
|
|
case DW_FORM_data8:
|
|
|
|
DW_UNSND (attr) = read_8_bytes (abfd, info_ptr);
|
|
|
|
info_ptr += 8;
|
|
|
|
break;
|
|
|
|
case DW_FORM_string:
|
|
|
|
DW_STRING (attr) = read_string (abfd, info_ptr, &bytes_read);
|
|
|
|
info_ptr += bytes_read;
|
|
|
|
break;
|
2001-11-14 12:16:47 +01:00
|
|
|
case DW_FORM_strp:
|
|
|
|
DW_STRING (attr) = read_indirect_string (unit, info_ptr, &bytes_read);
|
|
|
|
info_ptr += bytes_read;
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
case DW_FORM_block:
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
amt = sizeof (struct dwarf_block);
|
|
|
|
blk = (struct dwarf_block *) bfd_alloc (abfd, amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
blk->size = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
|
|
|
|
info_ptr += bytes_read;
|
|
|
|
blk->data = read_n_bytes (abfd, info_ptr, blk->size);
|
|
|
|
info_ptr += blk->size;
|
|
|
|
DW_BLOCK (attr) = blk;
|
|
|
|
break;
|
|
|
|
case DW_FORM_block1:
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
amt = sizeof (struct dwarf_block);
|
|
|
|
blk = (struct dwarf_block *) bfd_alloc (abfd, amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
blk->size = read_1_byte (abfd, info_ptr);
|
|
|
|
info_ptr += 1;
|
|
|
|
blk->data = read_n_bytes (abfd, info_ptr, blk->size);
|
|
|
|
info_ptr += blk->size;
|
|
|
|
DW_BLOCK (attr) = blk;
|
|
|
|
break;
|
|
|
|
case DW_FORM_data1:
|
|
|
|
DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
|
|
|
|
info_ptr += 1;
|
|
|
|
break;
|
|
|
|
case DW_FORM_flag:
|
|
|
|
DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
|
|
|
|
info_ptr += 1;
|
|
|
|
break;
|
|
|
|
case DW_FORM_sdata:
|
|
|
|
DW_SND (attr) = read_signed_leb128 (abfd, info_ptr, &bytes_read);
|
|
|
|
info_ptr += bytes_read;
|
|
|
|
break;
|
|
|
|
case DW_FORM_udata:
|
|
|
|
DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
|
|
|
|
info_ptr += bytes_read;
|
|
|
|
break;
|
|
|
|
case DW_FORM_ref1:
|
|
|
|
DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
|
|
|
|
info_ptr += 1;
|
|
|
|
break;
|
|
|
|
case DW_FORM_ref2:
|
|
|
|
DW_UNSND (attr) = read_2_bytes (abfd, info_ptr);
|
|
|
|
info_ptr += 2;
|
|
|
|
break;
|
|
|
|
case DW_FORM_ref4:
|
|
|
|
DW_UNSND (attr) = read_4_bytes (abfd, info_ptr);
|
|
|
|
info_ptr += 4;
|
|
|
|
break;
|
1999-07-14 10:49:40 +02:00
|
|
|
case DW_FORM_ref8:
|
|
|
|
DW_UNSND (attr) = read_8_bytes (abfd, info_ptr);
|
|
|
|
info_ptr += 8;
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
case DW_FORM_ref_udata:
|
|
|
|
DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
|
|
|
|
info_ptr += bytes_read;
|
|
|
|
break;
|
|
|
|
case DW_FORM_indirect:
|
2001-11-14 00:37:41 +01:00
|
|
|
form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
|
|
|
|
info_ptr += bytes_read;
|
|
|
|
info_ptr = read_attribute_value (attr, form, unit, info_ptr);
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
default:
|
2002-05-04 14:01:02 +02:00
|
|
|
(*_bfd_error_handler) (_("Dwarf Error: Invalid or unhandled FORM value: %u."),
|
2001-11-14 00:37:41 +01:00
|
|
|
form);
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_set_error (bfd_error_bad_value);
|
|
|
|
}
|
|
|
|
return info_ptr;
|
|
|
|
}
|
|
|
|
|
2001-11-14 00:37:41 +01:00
|
|
|
/* Read an attribute described by an abbreviated attribute. */
|
|
|
|
|
|
|
|
static char *
|
|
|
|
read_attribute (attr, abbrev, unit, info_ptr)
|
|
|
|
struct attribute *attr;
|
|
|
|
struct attr_abbrev *abbrev;
|
|
|
|
struct comp_unit *unit;
|
|
|
|
char *info_ptr;
|
|
|
|
{
|
|
|
|
attr->name = abbrev->name;
|
|
|
|
info_ptr = read_attribute_value (attr, abbrev->form, unit, info_ptr);
|
|
|
|
return info_ptr;
|
|
|
|
}
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* Source line information table routines. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
#define FILE_ALLOC_CHUNK 5
|
|
|
|
#define DIR_ALLOC_CHUNK 5
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
struct line_info
|
|
|
|
{
|
1999-05-03 09:29:11 +02:00
|
|
|
struct line_info* prev_line;
|
|
|
|
bfd_vma address;
|
|
|
|
char* filename;
|
|
|
|
unsigned int line;
|
|
|
|
unsigned int column;
|
2000-09-02 22:21:40 +02:00
|
|
|
int end_sequence; /* End of (sequential) code sequence. */
|
1999-05-03 09:29:11 +02:00
|
|
|
};
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
struct fileinfo
|
|
|
|
{
|
1999-05-03 09:29:11 +02:00
|
|
|
char *name;
|
|
|
|
unsigned int dir;
|
|
|
|
unsigned int time;
|
|
|
|
unsigned int size;
|
|
|
|
};
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
struct line_info_table
|
|
|
|
{
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd* abfd;
|
|
|
|
unsigned int num_files;
|
|
|
|
unsigned int num_dirs;
|
|
|
|
char* comp_dir;
|
|
|
|
char** dirs;
|
|
|
|
struct fileinfo* files;
|
2002-10-23 14:41:32 +02:00
|
|
|
struct line_info* last_line; /* largest VMA */
|
|
|
|
struct line_info* lcl_head; /* local head; used in 'add_line_info' */
|
1999-05-03 09:29:11 +02:00
|
|
|
};
|
|
|
|
|
2002-03-20 20:15:30 +01:00
|
|
|
struct funcinfo
|
|
|
|
{
|
|
|
|
struct funcinfo *prev_func;
|
|
|
|
char* name;
|
|
|
|
bfd_vma low;
|
|
|
|
bfd_vma high;
|
|
|
|
};
|
|
|
|
|
2003-04-01 12:18:54 +02:00
|
|
|
/* Adds a new entry to the line_info list in the line_info_table, ensuring
|
|
|
|
that the list is sorted. Note that the line_info list is sorted from
|
|
|
|
highest to lowest VMA (with possible duplicates); that is,
|
|
|
|
line_info->prev_line always accesses an equal or smaller VMA. */
|
|
|
|
|
2000-11-16 20:29:48 +01:00
|
|
|
static void
|
1999-06-03 04:46:47 +02:00
|
|
|
add_line_info (table, address, filename, line, column, end_sequence)
|
1999-05-03 09:29:11 +02:00
|
|
|
struct line_info_table* table;
|
|
|
|
bfd_vma address;
|
|
|
|
char* filename;
|
|
|
|
unsigned int line;
|
|
|
|
unsigned int column;
|
1999-06-03 04:46:47 +02:00
|
|
|
int end_sequence;
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_size_type amt = sizeof (struct line_info);
|
|
|
|
struct line_info* info = (struct line_info*) bfd_alloc (table->abfd, amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-10-23 14:41:32 +02:00
|
|
|
/* Find the correct location for 'info'. Normally we will receive
|
|
|
|
new line_info data 1) in order and 2) with increasing VMAs.
|
|
|
|
However some compilers break the rules (cf. decode_line_info) and
|
|
|
|
so we include some heuristics for quickly finding the correct
|
|
|
|
location for 'info'. In particular, these heuristics optimize for
|
|
|
|
the common case in which the VMA sequence that we receive is a
|
|
|
|
list of locally sorted VMAs such as
|
|
|
|
p...z a...j (where a < j < p < z)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-10-23 14:41:32 +02:00
|
|
|
Note: table->lcl_head is used to head an *actual* or *possible*
|
|
|
|
sequence within the list (such as a...j) that is not directly
|
|
|
|
headed by table->last_line
|
|
|
|
|
|
|
|
Note: we may receive duplicate entries from 'decode_line_info'. */
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
if (!table->last_line
|
|
|
|
|| address >= table->last_line->address)
|
|
|
|
{
|
|
|
|
/* Normal case: add 'info' to the beginning of the list */
|
|
|
|
info->prev_line = table->last_line;
|
|
|
|
table->last_line = info;
|
|
|
|
|
|
|
|
/* lcl_head: initialize to head a *possible* sequence at the end. */
|
|
|
|
if (!table->lcl_head)
|
|
|
|
table->lcl_head = info;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (!table->lcl_head->prev_line
|
|
|
|
&& table->lcl_head->address > address)
|
|
|
|
{
|
|
|
|
/* Abnormal but easy: lcl_head is 1) at the *end* of the line
|
|
|
|
list and 2) the head of 'info'. */
|
|
|
|
info->prev_line = NULL;
|
|
|
|
table->lcl_head->prev_line = info;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (table->lcl_head->prev_line
|
|
|
|
&& table->lcl_head->address > address
|
|
|
|
&& address >= table->lcl_head->prev_line->address)
|
|
|
|
{
|
|
|
|
/* Abnormal but easy: lcl_head is 1) in the *middle* of the line
|
|
|
|
list and 2) the head of 'info'. */
|
|
|
|
info->prev_line = table->lcl_head->prev_line;
|
|
|
|
table->lcl_head->prev_line = info;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Abnormal and hard: Neither 'last_line' nor 'lcl_head' are valid
|
|
|
|
heads for 'info'. Reset 'lcl_head' and repeat. */
|
|
|
|
struct line_info* li2 = table->last_line; /* always non-NULL */
|
|
|
|
struct line_info* li1 = li2->prev_line;
|
|
|
|
|
|
|
|
while (li1)
|
|
|
|
{
|
|
|
|
if (li2->address > address && address >= li1->address)
|
|
|
|
break;
|
|
|
|
|
|
|
|
li2 = li1; /* always non-NULL */
|
|
|
|
li1 = li1->prev_line;
|
|
|
|
}
|
|
|
|
table->lcl_head = li2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set member data of 'info'. */
|
1999-05-03 09:29:11 +02:00
|
|
|
info->address = address;
|
|
|
|
info->line = line;
|
|
|
|
info->column = column;
|
1999-06-03 04:46:47 +02:00
|
|
|
info->end_sequence = end_sequence;
|
2003-04-01 12:31:34 +02:00
|
|
|
|
|
|
|
amt = strlen (filename);
|
|
|
|
if (amt)
|
|
|
|
{
|
|
|
|
info->filename = bfd_alloc (table->abfd, amt + 1);
|
|
|
|
if (info->filename)
|
|
|
|
strcpy (info->filename, filename);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
info->filename = NULL;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
2003-03-31 20:13:25 +02:00
|
|
|
/* Extract a fully qualified filename from a line info table.
|
2003-04-01 12:18:54 +02:00
|
|
|
The returned string has been malloc'ed and it is the caller's
|
|
|
|
responsibility to free it. */
|
2003-03-31 20:13:25 +02:00
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
static char *
|
1999-05-03 09:29:11 +02:00
|
|
|
concat_filename (table, file)
|
|
|
|
struct line_info_table* table;
|
|
|
|
unsigned int file;
|
|
|
|
{
|
1999-06-03 04:46:47 +02:00
|
|
|
char* filename;
|
|
|
|
|
|
|
|
if (file - 1 >= table->num_files)
|
|
|
|
{
|
2000-04-19 12:53:01 +02:00
|
|
|
(*_bfd_error_handler)
|
|
|
|
(_("Dwarf Error: mangled line number section (bad file number)."));
|
2003-04-01 12:18:54 +02:00
|
|
|
return strdup ("<unknown>");
|
1999-06-03 04:46:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
filename = table->files[file - 1].name;
|
2003-03-31 20:13:25 +02:00
|
|
|
|
2003-04-01 12:18:54 +02:00
|
|
|
if (! IS_ABSOLUTE_PATH (filename))
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
char* dirname = (table->files[file - 1].dir
|
|
|
|
? table->dirs[table->files[file - 1].dir - 1]
|
|
|
|
: table->comp_dir);
|
2002-07-17 14:17:18 +02:00
|
|
|
|
2003-04-01 12:18:54 +02:00
|
|
|
/* Not all tools set DW_AT_comp_dir, so dirname may be unknown.
|
|
|
|
The best we can do is return the filename part. */
|
|
|
|
if (dirname != NULL)
|
|
|
|
{
|
|
|
|
unsigned int len = strlen (dirname) + strlen (filename) + 2;
|
|
|
|
char * name;
|
|
|
|
|
|
|
|
name = bfd_malloc (len);
|
|
|
|
if (name)
|
|
|
|
sprintf (name, "%s/%s", dirname, filename);
|
|
|
|
return name;
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
2003-04-01 12:18:54 +02:00
|
|
|
|
|
|
|
return strdup (filename);
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
1999-06-26 18:05:58 +02:00
|
|
|
static void
|
|
|
|
arange_add (unit, low_pc, high_pc)
|
|
|
|
struct comp_unit *unit;
|
|
|
|
bfd_vma low_pc;
|
|
|
|
bfd_vma high_pc;
|
|
|
|
{
|
|
|
|
struct arange *arange;
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* First see if we can cheaply extend an existing range. */
|
1999-06-26 18:05:58 +02:00
|
|
|
arange = &unit->arange;
|
2000-11-16 20:29:48 +01:00
|
|
|
|
1999-06-26 18:05:58 +02:00
|
|
|
do
|
|
|
|
{
|
|
|
|
if (low_pc == arange->high)
|
|
|
|
{
|
|
|
|
arange->high = high_pc;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (high_pc == arange->low)
|
|
|
|
{
|
|
|
|
arange->low = low_pc;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
arange = arange->next;
|
|
|
|
}
|
|
|
|
while (arange);
|
|
|
|
|
|
|
|
if (unit->arange.high == 0)
|
|
|
|
{
|
2000-09-02 22:21:40 +02:00
|
|
|
/* This is the first address range: store it in unit->arange. */
|
1999-06-26 18:05:58 +02:00
|
|
|
unit->arange.next = 0;
|
|
|
|
unit->arange.low = low_pc;
|
|
|
|
unit->arange.high = high_pc;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* Need to allocate a new arange and insert it into the arange list. */
|
* aoutx.h (NAME(aout,swap_ext_reloc_in)): Cast bytes->r_index to
unsigned int. Cast RELOC_BASE10, RELOC_BASE13 and RELOC_BASE22 to
unsigned int.
(NAME(aout,final_link)): Cast enum used in assignment.
(aout_link_write_symbols): Cast enums in comparisons, int values to
boolean, enums in assignments to int.
(aout_link_input_section_std): Cast rel->r_index to unsigned int.
(aout_link_input_section_ext): Likewise. Cast enums used in comparisons
with unsigned ints.
(aout_link_reloc_link_order): Cast enum to int in assignment.
* archive.c (_bfd_generic_read_ar_hdr_mag): Cast result of memchr
calls to char *.
* bfd-in.h (bfd_set_section_vma): Cast enum true to unsigned int in
assignment.
* bfd-in2.h (bfd_set_section_vma): Likewise.
* bfd.c (bfd_record_phdr): Cast enums in assignments.
* binary.c (bfd_alloc): Cast enum to long.
* coffgen.c (_bfd_coff_is_local_label_name): Cast return to boolean.
* dwarf2.c (read_abbrevs): Add casts to enum types.
(read_attribute_value): Likewise.
(arange_add): Cast result of bfd_zalloc call.
(comp_unit_contains_address): Return true and false.
(comp_unit_find_nearest_line): Cast return to boolean.
* format.c (bfd_check_format_matches, bfd_set_format): Likewise.
* gen-aout.c: define macro '_' if not defined.
* libbfd.c (bfd_realloc): Cast malloc and realloc to PTR.
(bfd_bwrite): Cast bfd_realloc to bfd_byte *.
(bfd_write_bigendian_4byte_int): Cast return to boolean.
(bfd_seek): Cast bfd_realloc to bfd_byte *.
(bfd_generic_is_local_label_name): Cast return to boolean.
* libcoff.h (_bfd_coff_adjust_symndx): Remove extraneous '\'.
* linker.c (_bfd_link_hash_newfunc): Cast bfd_hash_allocate result to
struct bfd_hash_entry *.
(_bfd_generic_link_hash_newfunc): likewise.
(_bfd_generic_final_link): Cast enum to unsigned int.
* merge.c (sec_merge_emit): Cast return to boolean.
(merge_strings): Add casts to const unsigned char *.
* reloc.c (bfd_get_reloc_code_name): Cast enums in comparison to int.
(bfd_generic_get_relocated_section_content): Cast enum to unsigned int.
* section.c (bfd_section_hash_newfunc): Cast bfd_hash_allocate result to
struct bfd_hash_entry *.
(bfd_set_section_content): Add cast to PTR in comparison.
* simple.c (simple_dummy_warning, simple_dummy_undefined_symbol,
simple_dummy_reloc_overflow, simple_dummy_reloc_dangerous,
simple_dummy_unattached_reloc,
bfd_simple_get_relocated_section_contents): Add K&R declarations and
function definitions.
* srec.c (S3Forced): Initialize to false.
(srec_get_symtab): Cast return value from bfd_alloc to asymbol *.
* stabs.c (_bfd_link_section_stabs): Cast enum to int in comparisons.
(_bfd_discard_section_stabs): Likewise. Also cast return to boolean.
* syms.c (bfd_is_undefined_symclass): Cast return to boolean.
(_bfd_stab_section_find_nearest_line): Cast enum to bfd_byte in
comparisons.
2002-10-25 04:45:54 +02:00
|
|
|
arange = (struct arange *)
|
|
|
|
bfd_zalloc (unit->abfd, (bfd_size_type) sizeof (*arange));
|
1999-06-26 18:05:58 +02:00
|
|
|
arange->low = low_pc;
|
|
|
|
arange->high = high_pc;
|
|
|
|
|
|
|
|
arange->next = unit->arange.next;
|
|
|
|
unit->arange.next = arange;
|
|
|
|
}
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* Decode the line number information for UNIT. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
static struct line_info_table*
|
2000-12-08 23:50:07 +01:00
|
|
|
decode_line_info (unit, stash)
|
1999-05-03 09:29:11 +02:00
|
|
|
struct comp_unit *unit;
|
2000-12-08 23:50:07 +01:00
|
|
|
struct dwarf2_debug *stash;
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
bfd *abfd = unit->abfd;
|
|
|
|
struct line_info_table* table;
|
|
|
|
char *line_ptr;
|
|
|
|
char *line_end;
|
|
|
|
struct line_head lh;
|
2001-11-14 12:16:47 +01:00
|
|
|
unsigned int i, bytes_read, offset_size;
|
1999-05-03 09:29:11 +02:00
|
|
|
char *cur_file, *cur_dir;
|
|
|
|
unsigned char op_code, extended_op, adj_opcode;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_size_type amt;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
1999-06-26 17:48:47 +02:00
|
|
|
if (! stash->dwarf_line_buffer)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
asection *msec;
|
|
|
|
|
|
|
|
msec = bfd_get_section_by_name (abfd, ".debug_line");
|
|
|
|
if (! msec)
|
|
|
|
{
|
|
|
|
(*_bfd_error_handler) (_("Dwarf Error: Can't find .debug_line section."));
|
|
|
|
bfd_set_error (bfd_error_bad_value);
|
|
|
|
return 0;
|
|
|
|
}
|
2000-11-16 20:29:48 +01:00
|
|
|
|
2000-04-07 20:36:04 +02:00
|
|
|
stash->dwarf_line_size = msec->_raw_size;
|
2003-04-01 02:12:12 +02:00
|
|
|
stash->dwarf_line_buffer
|
|
|
|
= bfd_simple_get_relocated_section_contents (abfd, msec, NULL,
|
|
|
|
stash->syms);
|
1999-06-26 18:05:58 +02:00
|
|
|
if (! stash->dwarf_line_buffer)
|
1999-05-03 09:29:11 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-04-01 02:12:12 +02:00
|
|
|
/* It is possible to get a bad value for the line_offset. Validate
|
|
|
|
it here so that we won't get a segfault below. */
|
2000-04-07 20:36:04 +02:00
|
|
|
if (unit->line_offset >= stash->dwarf_line_size)
|
|
|
|
{
|
2002-05-04 14:01:02 +02:00
|
|
|
(*_bfd_error_handler) (_("Dwarf Error: Line offset (%lu) greater than or equal to .debug_line size (%lu)."),
|
2000-04-07 20:36:04 +02:00
|
|
|
unit->line_offset, stash->dwarf_line_size);
|
|
|
|
bfd_set_error (bfd_error_bad_value);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
amt = sizeof (struct line_info_table);
|
|
|
|
table = (struct line_info_table*) bfd_alloc (abfd, amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
table->abfd = abfd;
|
|
|
|
table->comp_dir = unit->comp_dir;
|
|
|
|
|
|
|
|
table->num_files = 0;
|
|
|
|
table->files = NULL;
|
|
|
|
|
|
|
|
table->num_dirs = 0;
|
|
|
|
table->dirs = NULL;
|
|
|
|
|
1999-06-03 04:46:47 +02:00
|
|
|
table->files = NULL;
|
|
|
|
table->last_line = NULL;
|
2002-10-23 14:41:32 +02:00
|
|
|
table->lcl_head = NULL;
|
1999-06-03 04:46:47 +02:00
|
|
|
|
1999-06-26 17:48:47 +02:00
|
|
|
line_ptr = stash->dwarf_line_buffer + unit->line_offset;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* Read in the prologue. */
|
2002-06-27 13:51:42 +02:00
|
|
|
lh.total_length = read_4_bytes (abfd, line_ptr);
|
|
|
|
line_ptr += 4;
|
|
|
|
offset_size = 4;
|
|
|
|
if (lh.total_length == 0xffffffff)
|
2002-06-25 21:10:00 +02:00
|
|
|
{
|
|
|
|
lh.total_length = read_8_bytes (abfd, line_ptr);
|
|
|
|
line_ptr += 8;
|
|
|
|
offset_size = 8;
|
|
|
|
}
|
2002-06-27 13:51:42 +02:00
|
|
|
else if (lh.total_length == 0 && unit->addr_size == 8)
|
2001-11-14 12:16:47 +01:00
|
|
|
{
|
2002-06-27 13:51:42 +02:00
|
|
|
/* Handle (non-standard) 64-bit DWARF2 formats. */
|
|
|
|
lh.total_length = read_4_bytes (abfd, line_ptr);
|
|
|
|
line_ptr += 4;
|
2001-11-14 12:16:47 +01:00
|
|
|
offset_size = 8;
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
line_end = line_ptr + lh.total_length;
|
|
|
|
lh.version = read_2_bytes (abfd, line_ptr);
|
|
|
|
line_ptr += 2;
|
2001-11-14 12:16:47 +01:00
|
|
|
if (offset_size == 4)
|
|
|
|
lh.prologue_length = read_4_bytes (abfd, line_ptr);
|
|
|
|
else
|
|
|
|
lh.prologue_length = read_8_bytes (abfd, line_ptr);
|
|
|
|
line_ptr += offset_size;
|
1999-05-03 09:29:11 +02:00
|
|
|
lh.minimum_instruction_length = read_1_byte (abfd, line_ptr);
|
|
|
|
line_ptr += 1;
|
|
|
|
lh.default_is_stmt = read_1_byte (abfd, line_ptr);
|
|
|
|
line_ptr += 1;
|
|
|
|
lh.line_base = read_1_signed_byte (abfd, line_ptr);
|
|
|
|
line_ptr += 1;
|
|
|
|
lh.line_range = read_1_byte (abfd, line_ptr);
|
|
|
|
line_ptr += 1;
|
|
|
|
lh.opcode_base = read_1_byte (abfd, line_ptr);
|
|
|
|
line_ptr += 1;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
amt = lh.opcode_base * sizeof (unsigned char);
|
|
|
|
lh.standard_opcode_lengths = (unsigned char *) bfd_alloc (abfd, amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
lh.standard_opcode_lengths[0] = 1;
|
2000-11-16 20:29:48 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
for (i = 1; i < lh.opcode_base; ++i)
|
|
|
|
{
|
|
|
|
lh.standard_opcode_lengths[i] = read_1_byte (abfd, line_ptr);
|
|
|
|
line_ptr += 1;
|
|
|
|
}
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* Read directory table. */
|
1999-05-03 09:29:11 +02:00
|
|
|
while ((cur_dir = read_string (abfd, line_ptr, &bytes_read)) != NULL)
|
|
|
|
{
|
|
|
|
line_ptr += bytes_read;
|
2000-11-16 20:29:48 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
if ((table->num_dirs % DIR_ALLOC_CHUNK) == 0)
|
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
amt = table->num_dirs + DIR_ALLOC_CHUNK;
|
|
|
|
amt *= sizeof (char *);
|
|
|
|
table->dirs = (char **) bfd_realloc (table->dirs, amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
if (! table->dirs)
|
|
|
|
return 0;
|
|
|
|
}
|
2000-11-16 20:29:48 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
table->dirs[table->num_dirs++] = cur_dir;
|
|
|
|
}
|
2000-11-16 20:29:48 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
line_ptr += bytes_read;
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* Read file name table. */
|
1999-05-03 09:29:11 +02:00
|
|
|
while ((cur_file = read_string (abfd, line_ptr, &bytes_read)) != NULL)
|
|
|
|
{
|
|
|
|
line_ptr += bytes_read;
|
2000-11-16 20:29:48 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
if ((table->num_files % FILE_ALLOC_CHUNK) == 0)
|
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
amt = table->num_files + FILE_ALLOC_CHUNK;
|
|
|
|
amt *= sizeof (struct fileinfo);
|
|
|
|
table->files = (struct fileinfo *) bfd_realloc (table->files, amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
if (! table->files)
|
|
|
|
return 0;
|
|
|
|
}
|
2000-11-16 20:29:48 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
table->files[table->num_files].name = cur_file;
|
|
|
|
table->files[table->num_files].dir =
|
|
|
|
read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
|
|
|
|
line_ptr += bytes_read;
|
|
|
|
table->files[table->num_files].time =
|
|
|
|
read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
|
|
|
|
line_ptr += bytes_read;
|
|
|
|
table->files[table->num_files].size =
|
|
|
|
read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
|
|
|
|
line_ptr += bytes_read;
|
|
|
|
table->num_files++;
|
|
|
|
}
|
2000-11-16 20:29:48 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
line_ptr += bytes_read;
|
|
|
|
|
|
|
|
/* Read the statement sequences until there's nothing left. */
|
|
|
|
while (line_ptr < line_end)
|
|
|
|
{
|
2000-09-02 22:21:40 +02:00
|
|
|
/* State machine registers. */
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_vma address = 0;
|
2003-09-19 11:01:53 +02:00
|
|
|
char * filename = table->num_files ? concat_filename (table, 1) : NULL;
|
1999-05-03 09:29:11 +02:00
|
|
|
unsigned int line = 1;
|
|
|
|
unsigned int column = 0;
|
|
|
|
int is_stmt = lh.default_is_stmt;
|
|
|
|
int basic_block = 0;
|
2002-09-23 18:13:52 +02:00
|
|
|
int end_sequence = 0;
|
|
|
|
/* eraxxon@alumni.rice.edu: Against the DWARF2 specs, some
|
2002-10-23 14:41:32 +02:00
|
|
|
compilers generate address sequences that are wildly out of
|
|
|
|
order using DW_LNE_set_address (e.g. Intel C++ 6.0 compiler
|
|
|
|
for ia64-Linux). Thus, to determine the low and high
|
|
|
|
address, we must compare on every DW_LNS_copy, etc. */
|
2002-09-23 18:13:52 +02:00
|
|
|
bfd_vma low_pc = 0;
|
|
|
|
bfd_vma high_pc = 0;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* Decode the table. */
|
1999-05-03 09:29:11 +02:00
|
|
|
while (! end_sequence)
|
|
|
|
{
|
|
|
|
op_code = read_1_byte (abfd, line_ptr);
|
|
|
|
line_ptr += 1;
|
2000-11-16 20:29:48 +01:00
|
|
|
|
2001-11-13 21:13:30 +01:00
|
|
|
if (op_code >= lh.opcode_base)
|
2002-09-23 18:13:52 +02:00
|
|
|
{
|
|
|
|
/* Special operand. */
|
2001-11-13 21:13:30 +01:00
|
|
|
adj_opcode = op_code - lh.opcode_base;
|
|
|
|
address += (adj_opcode / lh.line_range)
|
|
|
|
* lh.minimum_instruction_length;
|
|
|
|
line += lh.line_base + (adj_opcode % lh.line_range);
|
|
|
|
/* Append row to matrix using current values. */
|
|
|
|
add_line_info (table, address, filename, line, column, 0);
|
|
|
|
basic_block = 1;
|
2002-09-23 18:13:52 +02:00
|
|
|
if (low_pc == 0 || address < low_pc)
|
|
|
|
low_pc = address;
|
|
|
|
if (address > high_pc)
|
|
|
|
high_pc = address;
|
2001-11-13 21:13:30 +01:00
|
|
|
}
|
|
|
|
else switch (op_code)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
case DW_LNS_extended_op:
|
2002-09-23 18:13:52 +02:00
|
|
|
/* Ignore length. */
|
|
|
|
line_ptr += 1;
|
1999-05-03 09:29:11 +02:00
|
|
|
extended_op = read_1_byte (abfd, line_ptr);
|
|
|
|
line_ptr += 1;
|
2002-09-23 18:13:52 +02:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
switch (extended_op)
|
|
|
|
{
|
|
|
|
case DW_LNE_end_sequence:
|
|
|
|
end_sequence = 1;
|
1999-06-26 18:05:58 +02:00
|
|
|
add_line_info (table, address, filename, line, column,
|
|
|
|
end_sequence);
|
2002-09-23 18:13:52 +02:00
|
|
|
if (low_pc == 0 || address < low_pc)
|
|
|
|
low_pc = address;
|
|
|
|
if (address > high_pc)
|
|
|
|
high_pc = address;
|
2002-09-24 09:11:16 +02:00
|
|
|
arange_add (unit, low_pc, high_pc);
|
1999-05-03 09:29:11 +02:00
|
|
|
break;
|
|
|
|
case DW_LNE_set_address:
|
|
|
|
address = read_address (unit, line_ptr);
|
|
|
|
line_ptr += unit->addr_size;
|
|
|
|
break;
|
|
|
|
case DW_LNE_define_file:
|
|
|
|
cur_file = read_string (abfd, line_ptr, &bytes_read);
|
|
|
|
line_ptr += bytes_read;
|
|
|
|
if ((table->num_files % FILE_ALLOC_CHUNK) == 0)
|
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
amt = table->num_files + FILE_ALLOC_CHUNK;
|
|
|
|
amt *= sizeof (struct fileinfo);
|
|
|
|
table->files =
|
|
|
|
(struct fileinfo *) bfd_realloc (table->files, amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
if (! table->files)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
table->files[table->num_files].name = cur_file;
|
|
|
|
table->files[table->num_files].dir =
|
|
|
|
read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
|
|
|
|
line_ptr += bytes_read;
|
|
|
|
table->files[table->num_files].time =
|
|
|
|
read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
|
|
|
|
line_ptr += bytes_read;
|
|
|
|
table->files[table->num_files].size =
|
|
|
|
read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
|
|
|
|
line_ptr += bytes_read;
|
|
|
|
table->num_files++;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
(*_bfd_error_handler) (_("Dwarf Error: mangled line number section."));
|
|
|
|
bfd_set_error (bfd_error_bad_value);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DW_LNS_copy:
|
1999-06-03 04:46:47 +02:00
|
|
|
add_line_info (table, address, filename, line, column, 0);
|
1999-05-03 09:29:11 +02:00
|
|
|
basic_block = 0;
|
2002-09-23 18:13:52 +02:00
|
|
|
if (low_pc == 0 || address < low_pc)
|
|
|
|
low_pc = address;
|
|
|
|
if (address > high_pc)
|
|
|
|
high_pc = address;
|
1999-05-03 09:29:11 +02:00
|
|
|
break;
|
|
|
|
case DW_LNS_advance_pc:
|
|
|
|
address += lh.minimum_instruction_length
|
|
|
|
* read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
|
|
|
|
line_ptr += bytes_read;
|
|
|
|
break;
|
|
|
|
case DW_LNS_advance_line:
|
|
|
|
line += read_signed_leb128 (abfd, line_ptr, &bytes_read);
|
|
|
|
line_ptr += bytes_read;
|
|
|
|
break;
|
|
|
|
case DW_LNS_set_file:
|
|
|
|
{
|
|
|
|
unsigned int file;
|
|
|
|
|
2002-09-23 18:13:52 +02:00
|
|
|
/* The file and directory tables are 0
|
|
|
|
based, the references are 1 based. */
|
1999-05-03 09:29:11 +02:00
|
|
|
file = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
|
|
|
|
line_ptr += bytes_read;
|
2003-04-01 12:18:54 +02:00
|
|
|
if (filename)
|
|
|
|
free (filename);
|
1999-05-03 09:29:11 +02:00
|
|
|
filename = concat_filename (table, file);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DW_LNS_set_column:
|
|
|
|
column = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
|
|
|
|
line_ptr += bytes_read;
|
|
|
|
break;
|
|
|
|
case DW_LNS_negate_stmt:
|
|
|
|
is_stmt = (!is_stmt);
|
|
|
|
break;
|
|
|
|
case DW_LNS_set_basic_block:
|
|
|
|
basic_block = 1;
|
|
|
|
break;
|
|
|
|
case DW_LNS_const_add_pc:
|
1999-06-03 04:46:47 +02:00
|
|
|
address += lh.minimum_instruction_length
|
|
|
|
* ((255 - lh.opcode_base) / lh.line_range);
|
1999-05-03 09:29:11 +02:00
|
|
|
break;
|
|
|
|
case DW_LNS_fixed_advance_pc:
|
|
|
|
address += read_2_bytes (abfd, line_ptr);
|
|
|
|
line_ptr += 2;
|
|
|
|
break;
|
2001-11-13 21:13:30 +01:00
|
|
|
default:
|
2002-09-23 18:13:52 +02:00
|
|
|
{
|
2001-11-13 21:13:30 +01:00
|
|
|
int i;
|
2003-03-31 20:13:25 +02:00
|
|
|
|
2002-09-23 18:13:52 +02:00
|
|
|
/* Unknown standard opcode, ignore it. */
|
2001-11-13 21:13:30 +01:00
|
|
|
for (i = 0; i < lh.standard_opcode_lengths[op_code]; i++)
|
|
|
|
{
|
|
|
|
(void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
|
|
|
|
line_ptr += bytes_read;
|
|
|
|
}
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
}
|
2003-03-31 20:13:25 +02:00
|
|
|
|
2003-04-01 12:18:54 +02:00
|
|
|
if (filename)
|
|
|
|
free (filename);
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return table;
|
|
|
|
}
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
/* If ADDR is within TABLE set the output parameters and return TRUE,
|
|
|
|
otherwise return FALSE. The output parameters, FILENAME_PTR and
|
2000-09-02 22:21:40 +02:00
|
|
|
LINENUMBER_PTR, are pointers to the objects to be filled in. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
static bfd_boolean
|
2002-09-23 18:13:52 +02:00
|
|
|
lookup_address_in_line_info_table (table, addr, function, filename_ptr,
|
1999-05-03 09:29:11 +02:00
|
|
|
linenumber_ptr)
|
|
|
|
struct line_info_table* table;
|
|
|
|
bfd_vma addr;
|
2002-03-20 20:15:30 +01:00
|
|
|
struct funcinfo *function;
|
1999-05-03 09:29:11 +02:00
|
|
|
const char **filename_ptr;
|
|
|
|
unsigned int *linenumber_ptr;
|
|
|
|
{
|
2002-10-23 14:41:32 +02:00
|
|
|
/* Note: table->last_line should be a descendingly sorted list. */
|
1999-06-03 04:46:47 +02:00
|
|
|
struct line_info* next_line = table->last_line;
|
2002-10-23 14:41:32 +02:00
|
|
|
struct line_info* each_line = NULL;
|
|
|
|
*filename_ptr = NULL;
|
2000-11-16 20:29:48 +01:00
|
|
|
|
1999-06-03 04:46:47 +02:00
|
|
|
if (!next_line)
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
1999-06-03 04:46:47 +02:00
|
|
|
|
|
|
|
each_line = next_line->prev_line;
|
|
|
|
|
2002-10-23 14:41:32 +02:00
|
|
|
/* Check for large addresses */
|
|
|
|
if (addr > next_line->address)
|
|
|
|
each_line = NULL; /* ensure we skip over the normal case */
|
|
|
|
|
|
|
|
/* Normal case: search the list; save */
|
1999-06-03 04:46:47 +02:00
|
|
|
while (each_line && next_line)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2002-10-23 14:41:32 +02:00
|
|
|
/* If we have an address match, save this info. This allows us
|
|
|
|
to return as good as results as possible for strange debugging
|
|
|
|
info. */
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean addr_match = FALSE;
|
2002-10-23 14:41:32 +02:00
|
|
|
if (each_line->address <= addr && addr <= next_line->address)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2002-11-30 09:39:46 +01:00
|
|
|
addr_match = TRUE;
|
2002-10-23 14:41:32 +02:00
|
|
|
|
2002-03-20 20:15:30 +01:00
|
|
|
/* If this line appears to span functions, and addr is in the
|
|
|
|
later function, return the first line of that function instead
|
|
|
|
of the last line of the earlier one. This check is for GCC
|
|
|
|
2.95, which emits the first line number for a function late. */
|
|
|
|
if (function != NULL
|
|
|
|
&& each_line->address < function->low
|
|
|
|
&& next_line->address > function->low)
|
|
|
|
{
|
|
|
|
*filename_ptr = next_line->filename;
|
|
|
|
*linenumber_ptr = next_line->line;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*filename_ptr = each_line->filename;
|
|
|
|
*linenumber_ptr = each_line->line;
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
2002-10-23 14:41:32 +02:00
|
|
|
|
|
|
|
if (addr_match && !each_line->end_sequence)
|
2002-11-30 09:39:46 +01:00
|
|
|
return TRUE; /* we have definitely found what we want */
|
2002-10-23 14:41:32 +02:00
|
|
|
|
1999-06-03 04:46:47 +02:00
|
|
|
next_line = each_line;
|
|
|
|
each_line = each_line->prev_line;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
2000-11-16 20:29:48 +01:00
|
|
|
|
2002-10-23 14:41:32 +02:00
|
|
|
/* At this point each_line is NULL but next_line is not. If we found
|
|
|
|
a candidate end-of-sequence point in the loop above, we can return
|
|
|
|
that (compatibility with a bug in the Intel compiler); otherwise,
|
|
|
|
assuming that we found the containing function for this address in
|
|
|
|
this compilation unit, return the first line we have a number for
|
|
|
|
(compatibility with GCC 2.95). */
|
|
|
|
if (*filename_ptr == NULL && function != NULL)
|
2002-03-20 20:15:30 +01:00
|
|
|
{
|
|
|
|
*filename_ptr = next_line->filename;
|
|
|
|
*linenumber_ptr = next_line->line;
|
2002-11-30 09:39:46 +01:00
|
|
|
return TRUE;
|
2002-03-20 20:15:30 +01:00
|
|
|
}
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
2000-11-16 20:29:48 +01:00
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* Function table functions. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
/* If ADDR is within TABLE, set FUNCTIONNAME_PTR, and return TRUE. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
static bfd_boolean
|
2002-09-23 18:13:52 +02:00
|
|
|
lookup_address_in_function_table (table, addr, function_ptr,
|
1999-05-03 09:29:11 +02:00
|
|
|
functionname_ptr)
|
|
|
|
struct funcinfo* table;
|
|
|
|
bfd_vma addr;
|
2002-03-20 20:15:30 +01:00
|
|
|
struct funcinfo** function_ptr;
|
1999-05-03 09:29:11 +02:00
|
|
|
const char **functionname_ptr;
|
|
|
|
{
|
|
|
|
struct funcinfo* each_func;
|
|
|
|
|
|
|
|
for (each_func = table;
|
|
|
|
each_func;
|
|
|
|
each_func = each_func->prev_func)
|
|
|
|
{
|
|
|
|
if (addr >= each_func->low && addr < each_func->high)
|
|
|
|
{
|
|
|
|
*functionname_ptr = each_func->name;
|
2002-03-20 20:15:30 +01:00
|
|
|
*function_ptr = each_func;
|
2002-11-30 09:39:46 +01:00
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
}
|
2000-11-16 20:29:48 +01:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* DWARF2 Compilation unit functions. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* Scan over each die in a comp. unit looking for functions to add
|
2000-09-02 22:21:40 +02:00
|
|
|
to the function table. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
static bfd_boolean
|
1999-05-03 09:29:11 +02:00
|
|
|
scan_unit_for_functions (unit)
|
|
|
|
struct comp_unit *unit;
|
|
|
|
{
|
|
|
|
bfd *abfd = unit->abfd;
|
|
|
|
char *info_ptr = unit->first_child_die_ptr;
|
|
|
|
int nesting_level = 1;
|
|
|
|
|
|
|
|
while (nesting_level)
|
|
|
|
{
|
|
|
|
unsigned int abbrev_number, bytes_read, i;
|
|
|
|
struct abbrev_info *abbrev;
|
|
|
|
struct attribute attr;
|
|
|
|
struct funcinfo *func;
|
|
|
|
char* name = 0;
|
|
|
|
|
|
|
|
abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
|
|
|
|
info_ptr += bytes_read;
|
|
|
|
|
|
|
|
if (! abbrev_number)
|
|
|
|
{
|
|
|
|
nesting_level--;
|
|
|
|
continue;
|
|
|
|
}
|
2000-11-16 20:29:48 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
abbrev = lookup_abbrev (abbrev_number,unit->abbrevs);
|
|
|
|
if (! abbrev)
|
|
|
|
{
|
2002-05-04 14:01:02 +02:00
|
|
|
(*_bfd_error_handler) (_("Dwarf Error: Could not find abbrev number %u."),
|
1999-05-03 09:29:11 +02:00
|
|
|
abbrev_number);
|
|
|
|
bfd_set_error (bfd_error_bad_value);
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
2000-11-16 20:29:48 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
if (abbrev->tag == DW_TAG_subprogram)
|
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_size_type amt = sizeof (struct funcinfo);
|
|
|
|
func = (struct funcinfo *) bfd_zalloc (abfd, amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
func->prev_func = unit->function_table;
|
|
|
|
unit->function_table = func;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
func = NULL;
|
2000-11-16 20:29:48 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
for (i = 0; i < abbrev->num_attrs; ++i)
|
|
|
|
{
|
|
|
|
info_ptr = read_attribute (&attr, &abbrev->attrs[i], unit, info_ptr);
|
2000-11-16 20:29:48 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
if (func)
|
|
|
|
{
|
|
|
|
switch (attr.name)
|
|
|
|
{
|
|
|
|
case DW_AT_name:
|
2000-11-16 20:29:48 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
name = DW_STRING (&attr);
|
|
|
|
|
|
|
|
/* Prefer DW_AT_MIPS_linkage_name over DW_AT_name. */
|
|
|
|
if (func->name == NULL)
|
|
|
|
func->name = DW_STRING (&attr);
|
|
|
|
break;
|
2000-11-16 20:29:48 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
case DW_AT_MIPS_linkage_name:
|
|
|
|
func->name = DW_STRING (&attr);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DW_AT_low_pc:
|
|
|
|
func->low = DW_ADDR (&attr);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DW_AT_high_pc:
|
|
|
|
func->high = DW_ADDR (&attr);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
switch (attr.name)
|
|
|
|
{
|
|
|
|
case DW_AT_name:
|
|
|
|
name = DW_STRING (&attr);
|
|
|
|
break;
|
2000-11-16 20:29:48 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (abbrev->has_children)
|
|
|
|
nesting_level++;
|
|
|
|
}
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
1999-07-02 23:03:56 +02:00
|
|
|
/* Parse a DWARF2 compilation unit starting at INFO_PTR. This
|
|
|
|
includes the compilation unit header that proceeds the DIE's, but
|
|
|
|
does not include the length field that preceeds each compilation
|
|
|
|
unit header. END_PTR points one past the end of this comp unit.
|
2001-11-14 12:16:47 +01:00
|
|
|
OFFSET_SIZE is the size of DWARF2 offsets (either 4 or 8 bytes).
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
This routine does not read the whole compilation unit; only enough
|
|
|
|
to get to the line number information for the compilation unit. */
|
|
|
|
|
|
|
|
static struct comp_unit *
|
2001-11-14 12:16:47 +01:00
|
|
|
parse_comp_unit (abfd, stash, unit_length, offset_size)
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd* abfd;
|
2000-12-08 23:50:07 +01:00
|
|
|
struct dwarf2_debug *stash;
|
|
|
|
bfd_vma unit_length;
|
2001-11-14 12:16:47 +01:00
|
|
|
unsigned int offset_size;
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
struct comp_unit* unit;
|
2002-05-04 14:01:02 +02:00
|
|
|
unsigned int version;
|
|
|
|
bfd_vma abbrev_offset = 0;
|
|
|
|
unsigned int addr_size;
|
1999-05-03 09:29:11 +02:00
|
|
|
struct abbrev_info** abbrevs;
|
|
|
|
unsigned int abbrev_number, bytes_read, i;
|
|
|
|
struct abbrev_info *abbrev;
|
|
|
|
struct attribute attr;
|
2000-12-08 23:50:07 +01:00
|
|
|
char *info_ptr = stash->info_ptr;
|
|
|
|
char *end_ptr = info_ptr + unit_length;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_size_type amt;
|
2001-01-23 21:27:54 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
version = read_2_bytes (abfd, info_ptr);
|
|
|
|
info_ptr += 2;
|
2001-11-14 12:16:47 +01:00
|
|
|
BFD_ASSERT (offset_size == 4 || offset_size == 8);
|
|
|
|
if (offset_size == 4)
|
1999-07-02 23:03:56 +02:00
|
|
|
abbrev_offset = read_4_bytes (abfd, info_ptr);
|
2001-11-14 12:16:47 +01:00
|
|
|
else
|
1999-07-02 23:03:56 +02:00
|
|
|
abbrev_offset = read_8_bytes (abfd, info_ptr);
|
2001-11-14 12:16:47 +01:00
|
|
|
info_ptr += offset_size;
|
1999-05-03 09:29:11 +02:00
|
|
|
addr_size = read_1_byte (abfd, info_ptr);
|
|
|
|
info_ptr += 1;
|
|
|
|
|
|
|
|
if (version != 2)
|
|
|
|
{
|
2002-05-04 14:01:02 +02:00
|
|
|
(*_bfd_error_handler) (_("Dwarf Error: found dwarf version '%u', this reader only handles version 2 information."), version);
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_set_error (bfd_error_bad_value);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (addr_size > sizeof (bfd_vma))
|
|
|
|
{
|
|
|
|
(*_bfd_error_handler) (_("Dwarf Error: found address size '%u', this reader can not handle sizes greater than '%u'."),
|
|
|
|
addr_size,
|
2002-05-04 14:01:02 +02:00
|
|
|
(unsigned int) sizeof (bfd_vma));
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_set_error (bfd_error_bad_value);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-02-23 23:27:55 +01:00
|
|
|
if (addr_size != 2 && addr_size != 4 && addr_size != 8)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2002-01-30 11:28:47 +01:00
|
|
|
(*_bfd_error_handler) ("Dwarf Error: found address size '%u', this reader can only handle address sizes '2', '4' and '8'.", addr_size);
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_set_error (bfd_error_bad_value);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* Read the abbrevs for this compilation unit into a table. */
|
2000-12-08 23:50:07 +01:00
|
|
|
abbrevs = read_abbrevs (abfd, abbrev_offset, stash);
|
1999-05-03 09:29:11 +02:00
|
|
|
if (! abbrevs)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
|
|
|
|
info_ptr += bytes_read;
|
|
|
|
if (! abbrev_number)
|
|
|
|
{
|
2002-05-04 14:01:02 +02:00
|
|
|
(*_bfd_error_handler) (_("Dwarf Error: Bad abbrev number: %u."),
|
1999-05-03 09:29:11 +02:00
|
|
|
abbrev_number);
|
|
|
|
bfd_set_error (bfd_error_bad_value);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
abbrev = lookup_abbrev (abbrev_number, abbrevs);
|
|
|
|
if (! abbrev)
|
|
|
|
{
|
2002-05-04 14:01:02 +02:00
|
|
|
(*_bfd_error_handler) (_("Dwarf Error: Could not find abbrev number %u."),
|
1999-05-03 09:29:11 +02:00
|
|
|
abbrev_number);
|
|
|
|
bfd_set_error (bfd_error_bad_value);
|
|
|
|
return 0;
|
|
|
|
}
|
2000-11-16 20:29:48 +01:00
|
|
|
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
amt = sizeof (struct comp_unit);
|
|
|
|
unit = (struct comp_unit*) bfd_zalloc (abfd, amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
unit->abfd = abfd;
|
2000-11-16 20:29:48 +01:00
|
|
|
unit->addr_size = addr_size;
|
2001-11-14 12:16:47 +01:00
|
|
|
unit->offset_size = offset_size;
|
1999-05-03 09:29:11 +02:00
|
|
|
unit->abbrevs = abbrevs;
|
|
|
|
unit->end_ptr = end_ptr;
|
2001-11-14 12:16:47 +01:00
|
|
|
unit->stash = stash;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
for (i = 0; i < abbrev->num_attrs; ++i)
|
|
|
|
{
|
|
|
|
info_ptr = read_attribute (&attr, &abbrev->attrs[i], unit, info_ptr);
|
|
|
|
|
|
|
|
/* Store the data if it is of an attribute we want to keep in a
|
|
|
|
partial symbol table. */
|
|
|
|
switch (attr.name)
|
|
|
|
{
|
|
|
|
case DW_AT_stmt_list:
|
|
|
|
unit->stmtlist = 1;
|
|
|
|
unit->line_offset = DW_UNSND (&attr);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DW_AT_name:
|
|
|
|
unit->name = DW_STRING (&attr);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DW_AT_low_pc:
|
1999-06-26 18:05:58 +02:00
|
|
|
unit->arange.low = DW_ADDR (&attr);
|
1999-05-03 09:29:11 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case DW_AT_high_pc:
|
1999-06-26 18:05:58 +02:00
|
|
|
unit->arange.high = DW_ADDR (&attr);
|
1999-05-03 09:29:11 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case DW_AT_comp_dir:
|
|
|
|
{
|
|
|
|
char* comp_dir = DW_STRING (&attr);
|
|
|
|
if (comp_dir)
|
|
|
|
{
|
|
|
|
/* Irix 6.2 native cc prepends <machine>.: to the compilation
|
|
|
|
directory, get rid of it. */
|
|
|
|
char *cp = (char*) strchr (comp_dir, ':');
|
|
|
|
|
|
|
|
if (cp && cp != comp_dir && cp[-1] == '.' && cp[1] == '/')
|
|
|
|
comp_dir = cp + 1;
|
|
|
|
}
|
|
|
|
unit->comp_dir = comp_dir;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unit->first_child_die_ptr = info_ptr;
|
|
|
|
return unit;
|
|
|
|
}
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
/* Return TRUE if UNIT contains the address given by ADDR. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
static bfd_boolean
|
1999-05-03 09:29:11 +02:00
|
|
|
comp_unit_contains_address (unit, addr)
|
|
|
|
struct comp_unit* unit;
|
|
|
|
bfd_vma addr;
|
|
|
|
{
|
1999-06-26 18:05:58 +02:00
|
|
|
struct arange *arange;
|
|
|
|
|
|
|
|
if (unit->error)
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
1999-06-26 18:05:58 +02:00
|
|
|
|
|
|
|
arange = &unit->arange;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if (addr >= arange->low && addr < arange->high)
|
2002-11-30 09:39:46 +01:00
|
|
|
return TRUE;
|
1999-06-26 18:05:58 +02:00
|
|
|
arange = arange->next;
|
|
|
|
}
|
|
|
|
while (arange);
|
2000-11-16 20:29:48 +01:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* If UNIT contains ADDR, set the output parameters to the values for
|
|
|
|
the line containing ADDR. The output parameters, FILENAME_PTR,
|
|
|
|
FUNCTIONNAME_PTR, and LINENUMBER_PTR, are pointers to the objects
|
2000-11-16 20:29:48 +01:00
|
|
|
to be filled in.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-12-12 11:26:01 +01:00
|
|
|
Return TRUE if UNIT contains ADDR, and no errors were encountered;
|
2002-11-30 09:39:46 +01:00
|
|
|
FALSE otherwise. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
static bfd_boolean
|
2002-09-23 18:13:52 +02:00
|
|
|
comp_unit_find_nearest_line (unit, addr, filename_ptr, functionname_ptr,
|
|
|
|
linenumber_ptr, stash)
|
1999-05-03 09:29:11 +02:00
|
|
|
struct comp_unit* unit;
|
|
|
|
bfd_vma addr;
|
|
|
|
const char **filename_ptr;
|
|
|
|
const char **functionname_ptr;
|
|
|
|
unsigned int *linenumber_ptr;
|
2000-12-08 23:50:07 +01:00
|
|
|
struct dwarf2_debug *stash;
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean line_p;
|
|
|
|
bfd_boolean func_p;
|
2002-03-20 20:15:30 +01:00
|
|
|
struct funcinfo *function;
|
2000-11-16 20:29:48 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
if (unit->error)
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
if (! unit->line_table)
|
|
|
|
{
|
|
|
|
if (! unit->stmtlist)
|
|
|
|
{
|
|
|
|
unit->error = 1;
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
2000-11-16 20:29:48 +01:00
|
|
|
|
2000-12-08 23:50:07 +01:00
|
|
|
unit->line_table = decode_line_info (unit, stash);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
if (! unit->line_table)
|
|
|
|
{
|
|
|
|
unit->error = 1;
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
2000-11-16 20:29:48 +01:00
|
|
|
|
2001-10-06 12:01:09 +02:00
|
|
|
if (unit->first_child_die_ptr < unit->end_ptr
|
2002-10-23 14:41:32 +02:00
|
|
|
&& ! scan_unit_for_functions (unit))
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
unit->error = 1;
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-03-20 20:15:30 +01:00
|
|
|
function = NULL;
|
2002-09-23 18:13:52 +02:00
|
|
|
func_p = lookup_address_in_function_table (unit->function_table, addr,
|
|
|
|
&function, functionname_ptr);
|
|
|
|
line_p = lookup_address_in_line_info_table (unit->line_table, addr,
|
|
|
|
function, filename_ptr,
|
1999-05-03 09:29:11 +02:00
|
|
|
linenumber_ptr);
|
2002-11-30 09:39:46 +01:00
|
|
|
return line_p || func_p;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
2002-09-23 18:13:52 +02:00
|
|
|
/* Locate a section in a BFD containing debugging info. The search starts
|
|
|
|
from the section after AFTER_SEC, or from the first section in the BFD if
|
|
|
|
AFTER_SEC is NULL. The search works by examining the names of the
|
|
|
|
sections. There are two permissiable names. The first is .debug_info.
|
|
|
|
This is the standard DWARF2 name. The second is a prefix .gnu.linkonce.wi.
|
|
|
|
This is a variation on the .debug_info section which has a checksum
|
|
|
|
describing the contents appended onto the name. This allows the linker to
|
|
|
|
identify and discard duplicate debugging sections for different
|
|
|
|
compilation units. */
|
2000-09-02 22:21:40 +02:00
|
|
|
#define DWARF2_DEBUG_INFO ".debug_info"
|
|
|
|
#define GNU_LINKONCE_INFO ".gnu.linkonce.wi."
|
|
|
|
|
|
|
|
static asection *
|
|
|
|
find_debug_info (abfd, after_sec)
|
|
|
|
bfd * abfd;
|
|
|
|
asection * after_sec;
|
|
|
|
{
|
|
|
|
asection * msec;
|
|
|
|
|
|
|
|
if (after_sec)
|
|
|
|
msec = after_sec->next;
|
|
|
|
else
|
|
|
|
msec = abfd->sections;
|
|
|
|
|
|
|
|
while (msec)
|
|
|
|
{
|
|
|
|
if (strcmp (msec->name, DWARF2_DEBUG_INFO) == 0)
|
|
|
|
return msec;
|
|
|
|
|
|
|
|
if (strncmp (msec->name, GNU_LINKONCE_INFO, strlen (GNU_LINKONCE_INFO)) == 0)
|
|
|
|
return msec;
|
|
|
|
|
|
|
|
msec = msec->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
/* The DWARF2 version of find_nearest line. Return TRUE if the line
|
1999-07-02 23:03:56 +02:00
|
|
|
is found without error. ADDR_SIZE is the number of bytes in the
|
|
|
|
initial .debug_info length field and in the abbreviation offset.
|
|
|
|
You may use zero to indicate that the default value should be
|
|
|
|
used. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean
|
1999-05-03 09:29:11 +02:00
|
|
|
_bfd_dwarf2_find_nearest_line (abfd, section, symbols, offset,
|
1999-07-02 23:03:56 +02:00
|
|
|
filename_ptr, functionname_ptr,
|
2002-09-23 18:13:52 +02:00
|
|
|
linenumber_ptr, addr_size, pinfo)
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd *abfd;
|
|
|
|
asection *section;
|
2001-08-08 13:17:34 +02:00
|
|
|
asymbol **symbols;
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_vma offset;
|
|
|
|
const char **filename_ptr;
|
|
|
|
const char **functionname_ptr;
|
|
|
|
unsigned int *linenumber_ptr;
|
1999-07-02 23:03:56 +02:00
|
|
|
unsigned int addr_size;
|
2000-12-08 23:50:07 +01:00
|
|
|
PTR *pinfo;
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
/* Read each compilation unit from the section .debug_info, and check
|
|
|
|
to see if it contains the address we are searching for. If yes,
|
|
|
|
lookup the address, and return the line number info. If no, go
|
2000-11-16 20:29:48 +01:00
|
|
|
on to the next compilation unit.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
We keep a list of all the previously read compilation units, and
|
2000-11-16 20:29:48 +01:00
|
|
|
a pointer to the next un-read compilation unit. Check the
|
2000-09-02 22:21:40 +02:00
|
|
|
previously read units before reading more. */
|
2000-12-08 23:50:07 +01:00
|
|
|
struct dwarf2_debug *stash = (struct dwarf2_debug *) *pinfo;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* What address are we looking for? */
|
1999-05-03 09:29:11 +02:00
|
|
|
bfd_vma addr = offset + section->vma;
|
|
|
|
|
|
|
|
struct comp_unit* each;
|
2000-11-16 20:29:48 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
*filename_ptr = NULL;
|
|
|
|
*functionname_ptr = NULL;
|
|
|
|
*linenumber_ptr = 0;
|
|
|
|
|
1999-07-02 23:03:56 +02:00
|
|
|
/* The DWARF2 spec says that the initial length field, and the
|
|
|
|
offset of the abbreviation table, should both be 4-byte values.
|
|
|
|
However, some compilers do things differently. */
|
|
|
|
if (addr_size == 0)
|
|
|
|
addr_size = 4;
|
2000-02-23 23:29:38 +01:00
|
|
|
BFD_ASSERT (addr_size == 4 || addr_size == 8);
|
2000-11-16 20:29:48 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
if (! stash)
|
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_size_type total_size;
|
1999-05-03 09:29:11 +02:00
|
|
|
asection *msec;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_size_type amt = sizeof (struct dwarf2_debug);
|
2000-09-02 22:21:40 +02:00
|
|
|
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
stash = (struct dwarf2_debug*) bfd_zalloc (abfd, amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
if (! stash)
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2000-12-08 23:50:07 +01:00
|
|
|
*pinfo = (PTR) stash;
|
2001-01-23 21:27:54 +01:00
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
msec = find_debug_info (abfd, NULL);
|
|
|
|
if (! msec)
|
|
|
|
/* No dwarf2 info. Note that at this point the stash
|
|
|
|
has been allocated, but contains zeros, this lets
|
|
|
|
future calls to this function fail quicker. */
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
2000-09-02 22:21:40 +02:00
|
|
|
|
|
|
|
/* There can be more than one DWARF2 info section in a BFD these days.
|
2002-10-23 14:41:32 +02:00
|
|
|
Read them all in and produce one large stash. We do this in two
|
2000-09-02 22:21:40 +02:00
|
|
|
passes - in the first pass we just accumulate the section sizes.
|
|
|
|
In the second pass we read in the section's contents. The allows
|
|
|
|
us to avoid reallocing the data as we add sections to the stash. */
|
|
|
|
for (total_size = 0; msec; msec = find_debug_info (abfd, msec))
|
|
|
|
total_size += msec->_raw_size;
|
2000-11-16 20:29:48 +01:00
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
stash->info_ptr = (char *) bfd_alloc (abfd, total_size);
|
|
|
|
if (stash->info_ptr == NULL)
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
stash->info_ptr_end = stash->info_ptr;
|
|
|
|
|
|
|
|
for (msec = find_debug_info (abfd, NULL);
|
|
|
|
msec;
|
|
|
|
msec = find_debug_info (abfd, msec))
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
bfd_size_type size;
|
|
|
|
bfd_size_type start;
|
2000-09-02 22:21:40 +02:00
|
|
|
|
|
|
|
size = msec->_raw_size;
|
|
|
|
if (size == 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
start = stash->info_ptr_end - stash->info_ptr;
|
|
|
|
|
2003-04-01 02:12:12 +02:00
|
|
|
if ((bfd_simple_get_relocated_section_contents
|
|
|
|
(abfd, msec, stash->info_ptr + start, symbols)) == NULL)
|
2000-09-02 22:21:40 +02:00
|
|
|
continue;
|
|
|
|
|
|
|
|
stash->info_ptr_end = stash->info_ptr + start + size;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
2001-08-08 13:17:34 +02:00
|
|
|
BFD_ASSERT (stash->info_ptr_end == stash->info_ptr + total_size);
|
|
|
|
|
|
|
|
stash->sec = find_debug_info (abfd, NULL);
|
|
|
|
stash->sec_info_ptr = stash->info_ptr;
|
|
|
|
stash->syms = symbols;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
2000-09-02 22:21:40 +02:00
|
|
|
|
2000-11-16 20:29:48 +01:00
|
|
|
/* A null info_ptr indicates that there is no dwarf2 info
|
2000-09-02 22:21:40 +02:00
|
|
|
(or that an error occured while setting up the stash). */
|
1999-05-03 09:29:11 +02:00
|
|
|
if (! stash->info_ptr)
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* Check the previously read comp. units first. */
|
1999-05-03 09:29:11 +02:00
|
|
|
for (each = stash->all_comp_units; each; each = each->next_unit)
|
1999-06-26 18:05:58 +02:00
|
|
|
if (comp_unit_contains_address (each, addr))
|
2000-11-16 20:29:48 +01:00
|
|
|
return comp_unit_find_nearest_line (each, addr, filename_ptr,
|
2000-12-08 23:50:07 +01:00
|
|
|
functionname_ptr, linenumber_ptr,
|
|
|
|
stash);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2000-09-02 22:21:40 +02:00
|
|
|
/* Read each remaining comp. units checking each as they are read. */
|
1999-05-03 09:29:11 +02:00
|
|
|
while (stash->info_ptr < stash->info_ptr_end)
|
|
|
|
{
|
1999-07-02 23:03:56 +02:00
|
|
|
bfd_vma length;
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean found;
|
2001-11-14 12:16:47 +01:00
|
|
|
unsigned int offset_size = addr_size;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2003-04-09 11:56:17 +02:00
|
|
|
length = read_4_bytes (abfd, stash->info_ptr);
|
|
|
|
/* A 0xffffff length is the DWARF3 way of indicating we use
|
|
|
|
64-bit offsets, instead of 32-bit offsets. */
|
|
|
|
if (length == 0xffffffff)
|
2001-11-14 12:16:47 +01:00
|
|
|
{
|
2003-04-09 11:56:17 +02:00
|
|
|
offset_size = 8;
|
|
|
|
length = read_8_bytes (abfd, stash->info_ptr + 4);
|
|
|
|
stash->info_ptr += 12;
|
|
|
|
}
|
|
|
|
/* A zero length is the IRIX way of indicating 64-bit offsets,
|
|
|
|
mostly because the 64-bit length will generally fit in 32
|
|
|
|
bits, and the endianness helps. */
|
|
|
|
else if (length == 0)
|
|
|
|
{
|
|
|
|
offset_size = 8;
|
|
|
|
length = read_4_bytes (abfd, stash->info_ptr + 4);
|
|
|
|
stash->info_ptr += 8;
|
|
|
|
}
|
|
|
|
/* In the absence of the hints above, we assume addr_size-sized
|
|
|
|
offsets, for backward-compatibility with pre-DWARF3 64-bit
|
|
|
|
platforms. */
|
|
|
|
else if (addr_size == 8)
|
|
|
|
{
|
|
|
|
length = read_8_bytes (abfd, stash->info_ptr);
|
2003-04-16 02:30:24 +02:00
|
|
|
stash->info_ptr += 8;
|
2001-11-14 12:16:47 +01:00
|
|
|
}
|
1999-07-02 23:03:56 +02:00
|
|
|
else
|
2003-04-09 11:56:17 +02:00
|
|
|
stash->info_ptr += 4;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
if (length > 0)
|
2002-10-23 14:41:32 +02:00
|
|
|
{
|
2001-11-14 12:16:47 +01:00
|
|
|
each = parse_comp_unit (abfd, stash, length, offset_size);
|
1999-05-03 09:29:11 +02:00
|
|
|
stash->info_ptr += length;
|
|
|
|
|
2001-08-08 13:17:34 +02:00
|
|
|
if ((bfd_vma) (stash->info_ptr - stash->sec_info_ptr)
|
|
|
|
== stash->sec->_raw_size)
|
|
|
|
{
|
|
|
|
stash->sec = find_debug_info (abfd, stash->sec);
|
|
|
|
stash->sec_info_ptr = stash->info_ptr;
|
|
|
|
}
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
if (each)
|
|
|
|
{
|
|
|
|
each->next_unit = stash->all_comp_units;
|
|
|
|
stash->all_comp_units = each;
|
|
|
|
|
1999-06-03 04:46:47 +02:00
|
|
|
/* DW_AT_low_pc and DW_AT_high_pc are optional for
|
|
|
|
compilation units. If we don't have them (i.e.,
|
|
|
|
unit->high == 0), we need to consult the line info
|
|
|
|
table to see if a compilation unit contains the given
|
2000-09-02 22:21:40 +02:00
|
|
|
address. */
|
1999-06-26 18:05:58 +02:00
|
|
|
if (each->arange.high > 0)
|
1999-06-03 04:46:47 +02:00
|
|
|
{
|
|
|
|
if (comp_unit_contains_address (each, addr))
|
|
|
|
return comp_unit_find_nearest_line (each, addr,
|
2003-04-01 02:12:12 +02:00
|
|
|
filename_ptr,
|
|
|
|
functionname_ptr,
|
|
|
|
linenumber_ptr,
|
|
|
|
stash);
|
1999-06-03 04:46:47 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
found = comp_unit_find_nearest_line (each, addr,
|
|
|
|
filename_ptr,
|
|
|
|
functionname_ptr,
|
2000-12-08 23:50:07 +01:00
|
|
|
linenumber_ptr,
|
|
|
|
stash);
|
1999-06-03 04:46:47 +02:00
|
|
|
if (found)
|
2002-11-30 09:39:46 +01:00
|
|
|
return TRUE;
|
1999-06-03 04:46:47 +02:00
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|