2 /*--------------------------------------------------------------------*/
3 /*--- Read DWARF3 ".debug_info" sections (DIE trees). ---*/
4 /*--- priv_readdwarf3.h ---*/
5 /*--------------------------------------------------------------------*/
8 This file is part of Valgrind, a dynamic binary instrumentation
11 Copyright (C) 2008-2017 OpenWorks LLP
14 This program is free software; you can redistribute it and/or
15 modify it under the terms of the GNU General Public License as
16 published by the Free Software Foundation; either version 2 of the
17 License, or (at your option) any later version.
19 This program is distributed in the hope that it will be useful, but
20 WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 General Public License for more details.
24 You should have received a copy of the GNU General Public License
25 along with this program; if not, see <http://www.gnu.org/licenses/>.
27 The GNU General Public License is contained in the file COPYING.
29 Neither the names of the U.S. Department of Energy nor the
30 University of California nor the names of its contributors may be
31 used to endorse or promote products derived from this software
32 without prior written permission.
35 #ifndef __PRIV_READDWARF3_H
36 #define __PRIV_READDWARF3_H
38 #include "pub_core_debuginfo.h" // DebugInfo
39 #include "priv_image.h" // DiSlice
41 /* Read variables and types from DWARF3 ".debug_info" sections. */
43 ML_(new_dwarf3_reader
) (
45 DiSlice escn_debug_info
, DiSlice escn_debug_types
,
46 DiSlice escn_debug_abbv
, DiSlice escn_debug_line
,
47 DiSlice escn_debug_str
, DiSlice escn_debug_ranges
,
48 DiSlice escn_debug_loc
, DiSlice escn_debug_info_alt
,
49 DiSlice escn_debug_abbv_alt
, DiSlice escn_debug_line_alt
,
50 DiSlice escn_debug_str_alt
53 #endif /* ndef __PRIV_READDWARF3_H */
55 /*--------------------------------------------------------------------*/
56 /*--- end priv_readdwarf3.h ---*/
57 /*--------------------------------------------------------------------*/