2008-07-10 01:32:23 +00:00
|
|
|
/* dwarf.h - DWARF support header file
|
2010-09-09 10:18:12 +00:00
|
|
|
Copyright 2005, 2007, 2008, 2009, 2010
|
2005-09-30 14:55:05 +00:00
|
|
|
Free Software Foundation, Inc.
|
|
|
|
|
2007-07-05 16:54:46 +00:00
|
|
|
This file is part of GNU Binutils.
|
2005-09-30 14:55:05 +00:00
|
|
|
|
2007-07-05 16:54:46 +00: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 3 of the License, or
|
|
|
|
(at your option) any later version.
|
2005-09-30 14:55:05 +00:00
|
|
|
|
2007-07-05 16:54:46 +00: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.
|
2005-09-30 14:55:05 +00:00
|
|
|
|
2007-07-05 16:54:46 +00: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., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA. */
|
2005-09-30 14:55:05 +00:00
|
|
|
|
2010-11-21 21:27:15 +00:00
|
|
|
typedef unsigned HOST_WIDEST_INT dwarf_vma;
|
|
|
|
typedef unsigned HOST_WIDEST_INT dwarf_size_type;
|
2005-09-30 14:55:05 +00:00
|
|
|
|
|
|
|
struct dwarf_section
|
|
|
|
{
|
2008-07-10 01:32:23 +00:00
|
|
|
/* A debug section has a different name when it's stored compressed
|
2009-09-25 09:57:50 +00:00
|
|
|
or not. COMPRESSED_NAME and UNCOMPRESSED_NAME are the two
|
|
|
|
possibilities. NAME is set to whichever one is used for this
|
|
|
|
input file, as determined by load_debug_section(). */
|
2008-07-10 01:32:23 +00:00
|
|
|
const char *uncompressed_name;
|
|
|
|
const char *compressed_name;
|
2009-02-09 09:14:15 +00:00
|
|
|
const char *name;
|
2005-09-30 14:55:05 +00:00
|
|
|
unsigned char *start;
|
|
|
|
dwarf_vma address;
|
|
|
|
dwarf_size_type size;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* A structure containing the name of a debug section
|
|
|
|
and a pointer to a function that can decode it. */
|
|
|
|
struct dwarf_section_display
|
|
|
|
{
|
|
|
|
struct dwarf_section section;
|
|
|
|
int (*display) (struct dwarf_section *, void *);
|
2009-02-09 09:14:15 +00:00
|
|
|
int *enabled;
|
2005-09-30 14:55:05 +00:00
|
|
|
unsigned int relocate : 1;
|
|
|
|
};
|
|
|
|
|
2009-09-25 09:57:50 +00:00
|
|
|
enum dwarf_section_display_enum
|
|
|
|
{
|
2005-09-30 14:55:05 +00:00
|
|
|
abbrev = 0,
|
|
|
|
aranges,
|
|
|
|
frame,
|
|
|
|
info,
|
|
|
|
line,
|
|
|
|
pubnames,
|
|
|
|
eh_frame,
|
|
|
|
macinfo,
|
|
|
|
str,
|
|
|
|
loc,
|
|
|
|
pubtypes,
|
|
|
|
ranges,
|
|
|
|
static_func,
|
|
|
|
static_vars,
|
|
|
|
types,
|
|
|
|
weaknames,
|
2010-05-24 13:21:26 +00:00
|
|
|
trace_info,
|
|
|
|
trace_abbrev,
|
|
|
|
trace_aranges,
|
2005-09-30 14:55:05 +00:00
|
|
|
max
|
|
|
|
};
|
|
|
|
|
|
|
|
extern struct dwarf_section_display debug_displays [];
|
|
|
|
|
|
|
|
/* This structure records the information that
|
|
|
|
we extract from the.debug_info section. */
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
unsigned int pointer_size;
|
2010-09-09 10:18:12 +00:00
|
|
|
unsigned int offset_size;
|
|
|
|
int dwarf_version;
|
2005-09-30 14:55:05 +00:00
|
|
|
unsigned long cu_offset;
|
|
|
|
unsigned long base_address;
|
|
|
|
/* This is an array of offsets to the location list table. */
|
|
|
|
unsigned long *loc_offsets;
|
|
|
|
int *have_frame_base;
|
|
|
|
unsigned int num_loc_offsets;
|
|
|
|
unsigned int max_loc_offsets;
|
2009-07-14 16:57:18 +00:00
|
|
|
/* List of .debug_ranges offsets seen in this .debug_info. */
|
2005-09-30 14:55:05 +00:00
|
|
|
unsigned long *range_lists;
|
|
|
|
unsigned int num_range_lists;
|
|
|
|
unsigned int max_range_lists;
|
|
|
|
}
|
|
|
|
debug_info;
|
|
|
|
|
2008-01-28 15:15:32 +00:00
|
|
|
extern int eh_addr_size;
|
2005-09-30 14:55:05 +00:00
|
|
|
|
|
|
|
extern int do_debug_info;
|
|
|
|
extern int do_debug_abbrevs;
|
|
|
|
extern int do_debug_lines;
|
|
|
|
extern int do_debug_pubnames;
|
2009-12-03 12:28:37 +00:00
|
|
|
extern int do_debug_pubtypes;
|
2005-09-30 14:55:05 +00:00
|
|
|
extern int do_debug_aranges;
|
|
|
|
extern int do_debug_ranges;
|
|
|
|
extern int do_debug_frames;
|
|
|
|
extern int do_debug_frames_interp;
|
|
|
|
extern int do_debug_macinfo;
|
|
|
|
extern int do_debug_str;
|
|
|
|
extern int do_debug_loc;
|
2010-12-03 17:07:20 +00:00
|
|
|
extern int do_gdb_index;
|
2010-05-24 13:21:26 +00:00
|
|
|
extern int do_trace_info;
|
|
|
|
extern int do_trace_abbrevs;
|
|
|
|
extern int do_trace_aranges;
|
2009-09-25 09:57:50 +00:00
|
|
|
extern int do_wide;
|
2005-09-30 14:55:05 +00:00
|
|
|
|
2008-01-28 15:15:32 +00:00
|
|
|
extern void init_dwarf_regnames (unsigned int);
|
2010-09-02 22:35:18 +00:00
|
|
|
extern void init_dwarf_regnames_i386 (void);
|
|
|
|
extern void init_dwarf_regnames_x86_64 (void);
|
2008-01-28 15:15:32 +00:00
|
|
|
|
2005-09-30 14:55:05 +00:00
|
|
|
extern int load_debug_section (enum dwarf_section_display_enum,
|
|
|
|
void *);
|
|
|
|
extern void free_debug_section (enum dwarf_section_display_enum);
|
|
|
|
|
|
|
|
extern void free_debug_memory (void);
|
|
|
|
|
2009-09-25 09:57:50 +00:00
|
|
|
extern void dwarf_select_sections_by_names (const char *);
|
|
|
|
extern void dwarf_select_sections_by_letters (const char *);
|
2009-02-09 09:14:15 +00:00
|
|
|
extern void dwarf_select_sections_all (void);
|
|
|
|
|
2005-09-30 14:55:05 +00:00
|
|
|
void *cmalloc (size_t, size_t);
|
|
|
|
void *xcmalloc (size_t, size_t);
|
|
|
|
void *xcrealloc (void *, size_t, size_t);
|
|
|
|
|
2010-03-02 16:44:34 +00:00
|
|
|
unsigned long int read_leb128 (unsigned char *data,
|
|
|
|
unsigned int *length_return, int sign);
|