diff options
Diffstat (limited to 'coregrind/m_debuginfo/.svn/text-base/priv_readdwarf.h.svn-base')
-rw-r--r-- | coregrind/m_debuginfo/.svn/text-base/priv_readdwarf.h.svn-base | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/coregrind/m_debuginfo/.svn/text-base/priv_readdwarf.h.svn-base b/coregrind/m_debuginfo/.svn/text-base/priv_readdwarf.h.svn-base new file mode 100644 index 0000000..dc9fb99 --- /dev/null +++ b/coregrind/m_debuginfo/.svn/text-base/priv_readdwarf.h.svn-base @@ -0,0 +1,72 @@ + +/*--------------------------------------------------------------------*/ +/*--- Read DWARF1/2/3 debug info. priv_readdwarf.h ---*/ +/*--------------------------------------------------------------------*/ + +/* + This file is part of Valgrind, a dynamic binary instrumentation + framework. + + Copyright (C) 2000-2009 Julian Seward + jseward@acm.org + + 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. + + 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. + + 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. + + The GNU General Public License is contained in the file COPYING. +*/ + +#ifndef __PRIV_READDWARF_H +#define __PRIV_READDWARF_H + +/* + Stabs reader greatly improved by Nick Nethercote, Apr 02. + This module was also extensively hacked on by Jeremy Fitzhardinge + and Tom Hughes. +*/ + + +/* -------------------- + DWARF3 reader + -------------------- */ +extern +void ML_(read_debuginfo_dwarf3) + ( struct _DebugInfo* di, + UChar* debug_info_img, Word debug_info_sz, /* .debug_info */ + UChar* debug_abbv_img, Word debug_abbv_sz, /* .debug_abbrev */ + UChar* debug_line_img, Word debug_line_sz, /* .debug_line */ + UChar* debug_str_img, Word debug_str_sz ); /* .debug_str */ + +/* -------------------- + DWARF1 reader + -------------------- */ +extern +void ML_(read_debuginfo_dwarf1) ( struct _DebugInfo* di, + UChar* dwarf1d, Int dwarf1d_sz, + UChar* dwarf1l, Int dwarf1l_sz ); + +/* -------------------- + CFI reader + -------------------- */ +extern +void ML_(read_callframe_info_dwarf3) + ( /*OUT*/struct _DebugInfo* di, UChar* ehframe ); + + +#endif /* ndef __PRIV_READDWARF_H */ + +/*--------------------------------------------------------------------*/ +/*--- end ---*/ +/*--------------------------------------------------------------------*/ |