2008-07-10 03:32:23 +02:00
|
|
|
/* dwarf.h - DWARF support header file
|
2013-03-25 14:16:41 +01:00
|
|
|
Copyright 2005-2013 Free Software Foundation, Inc.
|
2005-09-30 16:55:05 +02:00
|
|
|
|
2007-07-05 18:54:46 +02:00
|
|
|
This file is part of GNU Binutils.
|
2005-09-30 16:55:05 +02:00
|
|
|
|
2007-07-05 18:54:46 +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 3 of the License, or
|
|
|
|
(at your option) any later version.
|
2005-09-30 16:55:05 +02:00
|
|
|
|
2007-07-05 18:54:46 +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.
|
2005-09-30 16:55:05 +02:00
|
|
|
|
2007-07-05 18:54:46 +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., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA. */
|
2005-09-30 16:55:05 +02:00
|
|
|
|
2011-03-25 16:15:52 +01:00
|
|
|
typedef unsigned HOST_WIDEST_INT dwarf_vma;
|
|
|
|
typedef HOST_WIDEST_INT dwarf_signed_vma;
|
|
|
|
typedef unsigned HOST_WIDEST_INT dwarf_size_type;
|
2005-09-30 16:55:05 +02:00
|
|
|
|
ChangeLog include/
2011-02-23 Kai Tietz <kai.tietz@onevision.com>
* dwarf2.h (_ELF_DWARF2_H): Renamed to
_DWARF2_H.
(DWARF2_External_LineInfo, DWARF2_Internal_LineInfo,
DWARF2_External_PubNames, DWARF2_Internal_PubNames,
DWARF2_External_CompUnit, DWARF2_Internal_CompUnit,
DWARF2_External_ARange, DWARF2_Internal_ARange): Removed.
ChangeLog binutils/
2011-02-23 Kai Tietz <kai.tietz@onevision.com>
* dwarf.c (read_leb128): Use bfd_vma instead of
long type.
(dwarf_vmatoa): New helper routine.
(process_extended_line_op): Use for adr bfd_vma
type and print those typed values via BFD_VMA_FMT
or via dwarf_vmatoa for localized prints.
(fetch_indirect_string): Adjust offset's type.
(decode_location_expression): Adjust argument types
and uvalue type.
(read_and_display_attr_value): Likewise.
(read_and_display_attr): Likewise.
(decode_location_expression): Adjust printf format.
(process_debug_info): Likewise.
(display_debug_lines_raw): Likewise.
(display_debug_lines_decoded): Likewise.
(display_debug_pubnames): Likewise.
(display_debug_loc): Likewise.
(display_debug_aranges): Likewise.
* dwarf.h (DWARF2_External_LineInfo,
DWARF2_Internal_LineInfo, DWARF2_External_PubNames,
DWARF2_Internal_PubNames, DWARF2_External_CompUnit,
DWARF2_Internal_CompUnit, DWARF2_External_ARange,
DWARF2_Internal_ARange): Added..
(read_leb128): Adjust return type.
2011-02-23 09:52:34 +01:00
|
|
|
/* Structure found in the .debug_line section. */
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
unsigned char li_length [4];
|
|
|
|
unsigned char li_version [2];
|
|
|
|
unsigned char li_prologue_length [4];
|
|
|
|
unsigned char li_min_insn_length [1];
|
|
|
|
unsigned char li_default_is_stmt [1];
|
|
|
|
unsigned char li_line_base [1];
|
|
|
|
unsigned char li_line_range [1];
|
|
|
|
unsigned char li_opcode_base [1];
|
|
|
|
}
|
|
|
|
DWARF2_External_LineInfo;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2011-03-25 16:15:52 +01:00
|
|
|
dwarf_vma li_length;
|
ChangeLog include/
2011-02-23 Kai Tietz <kai.tietz@onevision.com>
* dwarf2.h (_ELF_DWARF2_H): Renamed to
_DWARF2_H.
(DWARF2_External_LineInfo, DWARF2_Internal_LineInfo,
DWARF2_External_PubNames, DWARF2_Internal_PubNames,
DWARF2_External_CompUnit, DWARF2_Internal_CompUnit,
DWARF2_External_ARange, DWARF2_Internal_ARange): Removed.
ChangeLog binutils/
2011-02-23 Kai Tietz <kai.tietz@onevision.com>
* dwarf.c (read_leb128): Use bfd_vma instead of
long type.
(dwarf_vmatoa): New helper routine.
(process_extended_line_op): Use for adr bfd_vma
type and print those typed values via BFD_VMA_FMT
or via dwarf_vmatoa for localized prints.
(fetch_indirect_string): Adjust offset's type.
(decode_location_expression): Adjust argument types
and uvalue type.
(read_and_display_attr_value): Likewise.
(read_and_display_attr): Likewise.
(decode_location_expression): Adjust printf format.
(process_debug_info): Likewise.
(display_debug_lines_raw): Likewise.
(display_debug_lines_decoded): Likewise.
(display_debug_pubnames): Likewise.
(display_debug_loc): Likewise.
(display_debug_aranges): Likewise.
* dwarf.h (DWARF2_External_LineInfo,
DWARF2_Internal_LineInfo, DWARF2_External_PubNames,
DWARF2_Internal_PubNames, DWARF2_External_CompUnit,
DWARF2_Internal_CompUnit, DWARF2_External_ARange,
DWARF2_Internal_ARange): Added..
(read_leb128): Adjust return type.
2011-02-23 09:52:34 +01:00
|
|
|
unsigned short li_version;
|
|
|
|
unsigned int li_prologue_length;
|
|
|
|
unsigned char li_min_insn_length;
|
|
|
|
unsigned char li_max_ops_per_insn;
|
|
|
|
unsigned char li_default_is_stmt;
|
|
|
|
int li_line_base;
|
|
|
|
unsigned char li_line_range;
|
|
|
|
unsigned char li_opcode_base;
|
|
|
|
}
|
|
|
|
DWARF2_Internal_LineInfo;
|
|
|
|
|
|
|
|
/* Structure found in .debug_pubnames section. */
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
unsigned char pn_length [4];
|
|
|
|
unsigned char pn_version [2];
|
|
|
|
unsigned char pn_offset [4];
|
|
|
|
unsigned char pn_size [4];
|
|
|
|
}
|
|
|
|
DWARF2_External_PubNames;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2011-03-25 16:15:52 +01:00
|
|
|
dwarf_vma pn_length;
|
ChangeLog include/
2011-02-23 Kai Tietz <kai.tietz@onevision.com>
* dwarf2.h (_ELF_DWARF2_H): Renamed to
_DWARF2_H.
(DWARF2_External_LineInfo, DWARF2_Internal_LineInfo,
DWARF2_External_PubNames, DWARF2_Internal_PubNames,
DWARF2_External_CompUnit, DWARF2_Internal_CompUnit,
DWARF2_External_ARange, DWARF2_Internal_ARange): Removed.
ChangeLog binutils/
2011-02-23 Kai Tietz <kai.tietz@onevision.com>
* dwarf.c (read_leb128): Use bfd_vma instead of
long type.
(dwarf_vmatoa): New helper routine.
(process_extended_line_op): Use for adr bfd_vma
type and print those typed values via BFD_VMA_FMT
or via dwarf_vmatoa for localized prints.
(fetch_indirect_string): Adjust offset's type.
(decode_location_expression): Adjust argument types
and uvalue type.
(read_and_display_attr_value): Likewise.
(read_and_display_attr): Likewise.
(decode_location_expression): Adjust printf format.
(process_debug_info): Likewise.
(display_debug_lines_raw): Likewise.
(display_debug_lines_decoded): Likewise.
(display_debug_pubnames): Likewise.
(display_debug_loc): Likewise.
(display_debug_aranges): Likewise.
* dwarf.h (DWARF2_External_LineInfo,
DWARF2_Internal_LineInfo, DWARF2_External_PubNames,
DWARF2_Internal_PubNames, DWARF2_External_CompUnit,
DWARF2_Internal_CompUnit, DWARF2_External_ARange,
DWARF2_Internal_ARange): Added..
(read_leb128): Adjust return type.
2011-02-23 09:52:34 +01:00
|
|
|
unsigned short pn_version;
|
2011-03-25 16:15:52 +01:00
|
|
|
dwarf_vma pn_offset;
|
|
|
|
dwarf_vma pn_size;
|
ChangeLog include/
2011-02-23 Kai Tietz <kai.tietz@onevision.com>
* dwarf2.h (_ELF_DWARF2_H): Renamed to
_DWARF2_H.
(DWARF2_External_LineInfo, DWARF2_Internal_LineInfo,
DWARF2_External_PubNames, DWARF2_Internal_PubNames,
DWARF2_External_CompUnit, DWARF2_Internal_CompUnit,
DWARF2_External_ARange, DWARF2_Internal_ARange): Removed.
ChangeLog binutils/
2011-02-23 Kai Tietz <kai.tietz@onevision.com>
* dwarf.c (read_leb128): Use bfd_vma instead of
long type.
(dwarf_vmatoa): New helper routine.
(process_extended_line_op): Use for adr bfd_vma
type and print those typed values via BFD_VMA_FMT
or via dwarf_vmatoa for localized prints.
(fetch_indirect_string): Adjust offset's type.
(decode_location_expression): Adjust argument types
and uvalue type.
(read_and_display_attr_value): Likewise.
(read_and_display_attr): Likewise.
(decode_location_expression): Adjust printf format.
(process_debug_info): Likewise.
(display_debug_lines_raw): Likewise.
(display_debug_lines_decoded): Likewise.
(display_debug_pubnames): Likewise.
(display_debug_loc): Likewise.
(display_debug_aranges): Likewise.
* dwarf.h (DWARF2_External_LineInfo,
DWARF2_Internal_LineInfo, DWARF2_External_PubNames,
DWARF2_Internal_PubNames, DWARF2_External_CompUnit,
DWARF2_Internal_CompUnit, DWARF2_External_ARange,
DWARF2_Internal_ARange): Added..
(read_leb128): Adjust return type.
2011-02-23 09:52:34 +01:00
|
|
|
}
|
|
|
|
DWARF2_Internal_PubNames;
|
|
|
|
|
|
|
|
/* Structure found in .debug_info section. */
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
unsigned char cu_length [4];
|
|
|
|
unsigned char cu_version [2];
|
|
|
|
unsigned char cu_abbrev_offset [4];
|
|
|
|
unsigned char cu_pointer_size [1];
|
|
|
|
}
|
|
|
|
DWARF2_External_CompUnit;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2011-03-25 16:15:52 +01:00
|
|
|
dwarf_vma cu_length;
|
ChangeLog include/
2011-02-23 Kai Tietz <kai.tietz@onevision.com>
* dwarf2.h (_ELF_DWARF2_H): Renamed to
_DWARF2_H.
(DWARF2_External_LineInfo, DWARF2_Internal_LineInfo,
DWARF2_External_PubNames, DWARF2_Internal_PubNames,
DWARF2_External_CompUnit, DWARF2_Internal_CompUnit,
DWARF2_External_ARange, DWARF2_Internal_ARange): Removed.
ChangeLog binutils/
2011-02-23 Kai Tietz <kai.tietz@onevision.com>
* dwarf.c (read_leb128): Use bfd_vma instead of
long type.
(dwarf_vmatoa): New helper routine.
(process_extended_line_op): Use for adr bfd_vma
type and print those typed values via BFD_VMA_FMT
or via dwarf_vmatoa for localized prints.
(fetch_indirect_string): Adjust offset's type.
(decode_location_expression): Adjust argument types
and uvalue type.
(read_and_display_attr_value): Likewise.
(read_and_display_attr): Likewise.
(decode_location_expression): Adjust printf format.
(process_debug_info): Likewise.
(display_debug_lines_raw): Likewise.
(display_debug_lines_decoded): Likewise.
(display_debug_pubnames): Likewise.
(display_debug_loc): Likewise.
(display_debug_aranges): Likewise.
* dwarf.h (DWARF2_External_LineInfo,
DWARF2_Internal_LineInfo, DWARF2_External_PubNames,
DWARF2_Internal_PubNames, DWARF2_External_CompUnit,
DWARF2_Internal_CompUnit, DWARF2_External_ARange,
DWARF2_Internal_ARange): Added..
(read_leb128): Adjust return type.
2011-02-23 09:52:34 +01:00
|
|
|
unsigned short cu_version;
|
2011-03-25 16:15:52 +01:00
|
|
|
dwarf_vma cu_abbrev_offset;
|
ChangeLog include/
2011-02-23 Kai Tietz <kai.tietz@onevision.com>
* dwarf2.h (_ELF_DWARF2_H): Renamed to
_DWARF2_H.
(DWARF2_External_LineInfo, DWARF2_Internal_LineInfo,
DWARF2_External_PubNames, DWARF2_Internal_PubNames,
DWARF2_External_CompUnit, DWARF2_Internal_CompUnit,
DWARF2_External_ARange, DWARF2_Internal_ARange): Removed.
ChangeLog binutils/
2011-02-23 Kai Tietz <kai.tietz@onevision.com>
* dwarf.c (read_leb128): Use bfd_vma instead of
long type.
(dwarf_vmatoa): New helper routine.
(process_extended_line_op): Use for adr bfd_vma
type and print those typed values via BFD_VMA_FMT
or via dwarf_vmatoa for localized prints.
(fetch_indirect_string): Adjust offset's type.
(decode_location_expression): Adjust argument types
and uvalue type.
(read_and_display_attr_value): Likewise.
(read_and_display_attr): Likewise.
(decode_location_expression): Adjust printf format.
(process_debug_info): Likewise.
(display_debug_lines_raw): Likewise.
(display_debug_lines_decoded): Likewise.
(display_debug_pubnames): Likewise.
(display_debug_loc): Likewise.
(display_debug_aranges): Likewise.
* dwarf.h (DWARF2_External_LineInfo,
DWARF2_Internal_LineInfo, DWARF2_External_PubNames,
DWARF2_Internal_PubNames, DWARF2_External_CompUnit,
DWARF2_Internal_CompUnit, DWARF2_External_ARange,
DWARF2_Internal_ARange): Added..
(read_leb128): Adjust return type.
2011-02-23 09:52:34 +01:00
|
|
|
unsigned char cu_pointer_size;
|
|
|
|
}
|
|
|
|
DWARF2_Internal_CompUnit;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
unsigned char ar_length [4];
|
|
|
|
unsigned char ar_version [2];
|
|
|
|
unsigned char ar_info_offset [4];
|
|
|
|
unsigned char ar_pointer_size [1];
|
|
|
|
unsigned char ar_segment_size [1];
|
|
|
|
}
|
|
|
|
DWARF2_External_ARange;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2011-03-25 16:15:52 +01:00
|
|
|
dwarf_vma ar_length;
|
ChangeLog include/
2011-02-23 Kai Tietz <kai.tietz@onevision.com>
* dwarf2.h (_ELF_DWARF2_H): Renamed to
_DWARF2_H.
(DWARF2_External_LineInfo, DWARF2_Internal_LineInfo,
DWARF2_External_PubNames, DWARF2_Internal_PubNames,
DWARF2_External_CompUnit, DWARF2_Internal_CompUnit,
DWARF2_External_ARange, DWARF2_Internal_ARange): Removed.
ChangeLog binutils/
2011-02-23 Kai Tietz <kai.tietz@onevision.com>
* dwarf.c (read_leb128): Use bfd_vma instead of
long type.
(dwarf_vmatoa): New helper routine.
(process_extended_line_op): Use for adr bfd_vma
type and print those typed values via BFD_VMA_FMT
or via dwarf_vmatoa for localized prints.
(fetch_indirect_string): Adjust offset's type.
(decode_location_expression): Adjust argument types
and uvalue type.
(read_and_display_attr_value): Likewise.
(read_and_display_attr): Likewise.
(decode_location_expression): Adjust printf format.
(process_debug_info): Likewise.
(display_debug_lines_raw): Likewise.
(display_debug_lines_decoded): Likewise.
(display_debug_pubnames): Likewise.
(display_debug_loc): Likewise.
(display_debug_aranges): Likewise.
* dwarf.h (DWARF2_External_LineInfo,
DWARF2_Internal_LineInfo, DWARF2_External_PubNames,
DWARF2_Internal_PubNames, DWARF2_External_CompUnit,
DWARF2_Internal_CompUnit, DWARF2_External_ARange,
DWARF2_Internal_ARange): Added..
(read_leb128): Adjust return type.
2011-02-23 09:52:34 +01:00
|
|
|
unsigned short ar_version;
|
2011-03-25 16:15:52 +01:00
|
|
|
dwarf_vma ar_info_offset;
|
ChangeLog include/
2011-02-23 Kai Tietz <kai.tietz@onevision.com>
* dwarf2.h (_ELF_DWARF2_H): Renamed to
_DWARF2_H.
(DWARF2_External_LineInfo, DWARF2_Internal_LineInfo,
DWARF2_External_PubNames, DWARF2_Internal_PubNames,
DWARF2_External_CompUnit, DWARF2_Internal_CompUnit,
DWARF2_External_ARange, DWARF2_Internal_ARange): Removed.
ChangeLog binutils/
2011-02-23 Kai Tietz <kai.tietz@onevision.com>
* dwarf.c (read_leb128): Use bfd_vma instead of
long type.
(dwarf_vmatoa): New helper routine.
(process_extended_line_op): Use for adr bfd_vma
type and print those typed values via BFD_VMA_FMT
or via dwarf_vmatoa for localized prints.
(fetch_indirect_string): Adjust offset's type.
(decode_location_expression): Adjust argument types
and uvalue type.
(read_and_display_attr_value): Likewise.
(read_and_display_attr): Likewise.
(decode_location_expression): Adjust printf format.
(process_debug_info): Likewise.
(display_debug_lines_raw): Likewise.
(display_debug_lines_decoded): Likewise.
(display_debug_pubnames): Likewise.
(display_debug_loc): Likewise.
(display_debug_aranges): Likewise.
* dwarf.h (DWARF2_External_LineInfo,
DWARF2_Internal_LineInfo, DWARF2_External_PubNames,
DWARF2_Internal_PubNames, DWARF2_External_CompUnit,
DWARF2_Internal_CompUnit, DWARF2_External_ARange,
DWARF2_Internal_ARange): Added..
(read_leb128): Adjust return type.
2011-02-23 09:52:34 +01:00
|
|
|
unsigned char ar_pointer_size;
|
|
|
|
unsigned char ar_segment_size;
|
|
|
|
}
|
|
|
|
DWARF2_Internal_ARange;
|
|
|
|
|
2013-11-07 23:58:41 +01:00
|
|
|
/* N.B. The order here must match the order in debug_displays. */
|
|
|
|
|
2009-09-25 11:57:50 +02:00
|
|
|
enum dwarf_section_display_enum
|
|
|
|
{
|
2005-09-30 16:55:05 +02:00
|
|
|
abbrev = 0,
|
|
|
|
aranges,
|
|
|
|
frame,
|
|
|
|
info,
|
|
|
|
line,
|
|
|
|
pubnames,
|
2013-11-07 23:58:41 +01:00
|
|
|
gnu_pubnames,
|
2005-09-30 16:55:05 +02:00
|
|
|
eh_frame,
|
|
|
|
macinfo,
|
2011-07-26 23:31:37 +02:00
|
|
|
macro,
|
2005-09-30 16:55:05 +02:00
|
|
|
str,
|
|
|
|
loc,
|
|
|
|
pubtypes,
|
2013-11-07 23:58:41 +01:00
|
|
|
gnu_pubtypes,
|
2005-09-30 16:55:05 +02:00
|
|
|
ranges,
|
|
|
|
static_func,
|
|
|
|
static_vars,
|
|
|
|
types,
|
|
|
|
weaknames,
|
2011-09-30 23:06:00 +02:00
|
|
|
gdb_index,
|
2010-05-24 15:21:26 +02:00
|
|
|
trace_info,
|
|
|
|
trace_abbrev,
|
|
|
|
trace_aranges,
|
2012-05-11 20:18:34 +02:00
|
|
|
info_dwo,
|
|
|
|
abbrev_dwo,
|
|
|
|
types_dwo,
|
|
|
|
line_dwo,
|
|
|
|
loc_dwo,
|
|
|
|
macro_dwo,
|
|
|
|
macinfo_dwo,
|
|
|
|
str_dwo,
|
|
|
|
str_index,
|
|
|
|
str_index_dwo,
|
|
|
|
debug_addr,
|
binutils/
* dwarf.c (do_debug_addr, do_debug_cu_index): New global flags.
(load_debug_info): Fix typo.
(cu_tu_indexes_read, shndx_pool, shndx_pool_size, shndx_pool_used):
New global variables.
(prealloc_cu_tu_list, add_shndx_to_cu_tu_entry, end_cu_tu_entry)
(process_cu_tu_index, load_cu_tu_indexes, find_cu_tu_set)
(display_cu_index): New functions.
(dwarf_select_sections_by_names): Add "debug_addr", "cu_index".
Sort entries alphabetically.
(dwarf_select_sections_all): Set do_debug_addr, do_debug_cu_index.
(debug_displays): Add .debug_cu_index, .debug_tu_index.
Clean up formatting.
* dwarf.h (dwarf_section_display_enum): Add dwp_cu_index,
dwp_tu_index.
(do_debug_addr, do_debug_cu_index): New global flags.
(find_cu_tu_set): New function declaration.
* objdump.c (usage): Add --dwarf=addr, --dwarf=cu_index.
* readelf.c (find_section_in_set): New function.
(usage): Add --debug-dump=addr, --debug_dump=cu_index.
(process_section_headers): Check do_debug_addr and do_debug_cu_index.
(section_subset): New global variable.
(load_debug_section): Restrict search to section subset.
(display_debug_section): Add section index as paramter. Select subset
of sections when dumping a .dwp file. Update caller.
2012-10-24 03:59:39 +02:00
|
|
|
dwp_cu_index,
|
|
|
|
dwp_tu_index,
|
2005-09-30 16:55:05 +02:00
|
|
|
max
|
|
|
|
};
|
|
|
|
|
2012-05-11 20:18:34 +02:00
|
|
|
struct dwarf_section
|
|
|
|
{
|
|
|
|
/* A debug section has a different name when it's stored compressed
|
|
|
|
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(). */
|
|
|
|
const char *uncompressed_name;
|
|
|
|
const char *compressed_name;
|
|
|
|
const char *name;
|
|
|
|
unsigned char *start;
|
|
|
|
dwarf_vma address;
|
|
|
|
dwarf_size_type size;
|
|
|
|
enum dwarf_section_display_enum abbrev_sec;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* 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 *);
|
|
|
|
int *enabled;
|
|
|
|
unsigned int relocate : 1;
|
|
|
|
};
|
|
|
|
|
2005-09-30 16:55:05 +02:00
|
|
|
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 12:18:12 +02:00
|
|
|
unsigned int offset_size;
|
|
|
|
int dwarf_version;
|
2011-03-25 16:15:52 +01:00
|
|
|
dwarf_vma cu_offset;
|
|
|
|
dwarf_vma base_address;
|
2012-05-11 20:18:34 +02:00
|
|
|
/* This field is filled in when reading the attribute DW_AT_GNU_addr_base and
|
|
|
|
is used with the form DW_AT_GNU_FORM_addr_index. */
|
|
|
|
dwarf_vma addr_base;
|
|
|
|
/* This field is filled in when reading the attribute DW_AT_GNU_ranges_base and
|
|
|
|
is used when calculating ranges. */
|
|
|
|
dwarf_vma ranges_base;
|
2005-09-30 16:55:05 +02:00
|
|
|
/* This is an array of offsets to the location list table. */
|
2011-03-25 16:15:52 +01:00
|
|
|
dwarf_vma * loc_offsets;
|
|
|
|
int * have_frame_base;
|
2005-09-30 16:55:05 +02:00
|
|
|
unsigned int num_loc_offsets;
|
|
|
|
unsigned int max_loc_offsets;
|
2009-07-14 18:57:18 +02:00
|
|
|
/* List of .debug_ranges offsets seen in this .debug_info. */
|
2011-03-25 16:15:52 +01:00
|
|
|
dwarf_vma * range_lists;
|
2005-09-30 16:55:05 +02:00
|
|
|
unsigned int num_range_lists;
|
|
|
|
unsigned int max_range_lists;
|
|
|
|
}
|
|
|
|
debug_info;
|
|
|
|
|
2008-01-28 16:15:32 +01:00
|
|
|
extern int eh_addr_size;
|
2005-09-30 16:55:05 +02:00
|
|
|
|
|
|
|
extern int do_debug_info;
|
|
|
|
extern int do_debug_abbrevs;
|
|
|
|
extern int do_debug_lines;
|
|
|
|
extern int do_debug_pubnames;
|
2009-12-03 13:28:37 +01:00
|
|
|
extern int do_debug_pubtypes;
|
2005-09-30 16:55:05 +02: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 18:07:20 +01:00
|
|
|
extern int do_gdb_index;
|
2010-05-24 15:21:26 +02:00
|
|
|
extern int do_trace_info;
|
|
|
|
extern int do_trace_abbrevs;
|
|
|
|
extern int do_trace_aranges;
|
binutils/
* dwarf.c (do_debug_addr, do_debug_cu_index): New global flags.
(load_debug_info): Fix typo.
(cu_tu_indexes_read, shndx_pool, shndx_pool_size, shndx_pool_used):
New global variables.
(prealloc_cu_tu_list, add_shndx_to_cu_tu_entry, end_cu_tu_entry)
(process_cu_tu_index, load_cu_tu_indexes, find_cu_tu_set)
(display_cu_index): New functions.
(dwarf_select_sections_by_names): Add "debug_addr", "cu_index".
Sort entries alphabetically.
(dwarf_select_sections_all): Set do_debug_addr, do_debug_cu_index.
(debug_displays): Add .debug_cu_index, .debug_tu_index.
Clean up formatting.
* dwarf.h (dwarf_section_display_enum): Add dwp_cu_index,
dwp_tu_index.
(do_debug_addr, do_debug_cu_index): New global flags.
(find_cu_tu_set): New function declaration.
* objdump.c (usage): Add --dwarf=addr, --dwarf=cu_index.
* readelf.c (find_section_in_set): New function.
(usage): Add --debug-dump=addr, --debug_dump=cu_index.
(process_section_headers): Check do_debug_addr and do_debug_cu_index.
(section_subset): New global variable.
(load_debug_section): Restrict search to section subset.
(display_debug_section): Add section index as paramter. Select subset
of sections when dumping a .dwp file. Update caller.
2012-10-24 03:59:39 +02:00
|
|
|
extern int do_debug_addr;
|
|
|
|
extern int do_debug_cu_index;
|
2009-09-25 11:57:50 +02:00
|
|
|
extern int do_wide;
|
2005-09-30 16:55:05 +02:00
|
|
|
|
2011-04-28 19:23:17 +02:00
|
|
|
extern int dwarf_cutoff_level;
|
|
|
|
extern unsigned long dwarf_start_die;
|
|
|
|
|
2012-05-11 20:18:34 +02:00
|
|
|
extern int dwarf_check;
|
|
|
|
|
2008-01-28 16:15:32 +01:00
|
|
|
extern void init_dwarf_regnames (unsigned int);
|
2010-09-03 00:35:18 +02:00
|
|
|
extern void init_dwarf_regnames_i386 (void);
|
|
|
|
extern void init_dwarf_regnames_x86_64 (void);
|
2008-01-28 16:15:32 +01:00
|
|
|
|
2011-03-25 16:15:52 +01:00
|
|
|
extern int load_debug_section (enum dwarf_section_display_enum, void *);
|
2005-09-30 16:55:05 +02:00
|
|
|
extern void free_debug_section (enum dwarf_section_display_enum);
|
|
|
|
|
|
|
|
extern void free_debug_memory (void);
|
|
|
|
|
2009-09-25 11:57:50 +02:00
|
|
|
extern void dwarf_select_sections_by_names (const char *);
|
|
|
|
extern void dwarf_select_sections_by_letters (const char *);
|
2009-02-09 10:14:15 +01:00
|
|
|
extern void dwarf_select_sections_all (void);
|
|
|
|
|
binutils/
* dwarf.c (do_debug_addr, do_debug_cu_index): New global flags.
(load_debug_info): Fix typo.
(cu_tu_indexes_read, shndx_pool, shndx_pool_size, shndx_pool_used):
New global variables.
(prealloc_cu_tu_list, add_shndx_to_cu_tu_entry, end_cu_tu_entry)
(process_cu_tu_index, load_cu_tu_indexes, find_cu_tu_set)
(display_cu_index): New functions.
(dwarf_select_sections_by_names): Add "debug_addr", "cu_index".
Sort entries alphabetically.
(dwarf_select_sections_all): Set do_debug_addr, do_debug_cu_index.
(debug_displays): Add .debug_cu_index, .debug_tu_index.
Clean up formatting.
* dwarf.h (dwarf_section_display_enum): Add dwp_cu_index,
dwp_tu_index.
(do_debug_addr, do_debug_cu_index): New global flags.
(find_cu_tu_set): New function declaration.
* objdump.c (usage): Add --dwarf=addr, --dwarf=cu_index.
* readelf.c (find_section_in_set): New function.
(usage): Add --debug-dump=addr, --debug_dump=cu_index.
(process_section_headers): Check do_debug_addr and do_debug_cu_index.
(section_subset): New global variable.
(load_debug_section): Restrict search to section subset.
(display_debug_section): Add section index as paramter. Select subset
of sections when dumping a .dwp file. Update caller.
2012-10-24 03:59:39 +02:00
|
|
|
unsigned int * find_cu_tu_set (void *, unsigned int);
|
|
|
|
|
2011-03-25 16:15:52 +01:00
|
|
|
void * cmalloc (size_t, size_t);
|
|
|
|
void * xcmalloc (size_t, size_t);
|
|
|
|
void * xcrealloc (void *, size_t, size_t);
|
2005-09-30 16:55:05 +02:00
|
|
|
|
2013-03-25 14:16:41 +01:00
|
|
|
extern dwarf_vma read_leb128 (unsigned char *, unsigned int *, bfd_boolean, const unsigned char * const);
|