blob: 94a76ea7af2e20d4c400804dd4abaf714a441839 [file] [log] [blame]
njnea27e462005-05-31 02:38:09 +00001
2/*--------------------------------------------------------------------*/
3/*--- Debug info. pub_core_debuginfo.h ---*/
4/*--------------------------------------------------------------------*/
5
6/*
7 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
9
10 Copyright (C) 2000-2005 Julian Seward
11 jseward@acm.org
12
13 This program is free software; you can redistribute it and/or
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
16 License, or (at your option) any later version.
17
18 This program is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
26 02111-1307, USA.
27
28 The GNU General Public License is contained in the file COPYING.
29*/
30
31#ifndef __PUB_CORE_DEBUGINFO_H
32#define __PUB_CORE_DEBUGINFO_H
33
34//--------------------------------------------------------------------
35// PURPOSE: This module deals with reading debug info and symbol tables
36// to get file and function names, line numbers, variable types, and
37// to help stack unwinding.
38//
njne070c202005-06-20 23:58:15 +000039// And its internals are currently a mess. Its interface is ugly, too.
njnea27e462005-05-31 02:38:09 +000040//--------------------------------------------------------------------
41
42#include "pub_tool_debuginfo.h"
43
sewardj45f4e7c2005-09-27 19:20:21 +000044extern void VG_(di_notify_mmap)( Addr a );
45extern void VG_(di_notify_munmap)( Addr a, SizeT len );
46extern void VG_(di_notify_mprotect)( Addr a, SizeT len, UInt prot );
47
njn88c51482005-06-25 20:49:33 +000048extern SegInfo *VG_(read_seg_symbols) ( Addr addr, SizeT len,
49 OffT offset, const Char* filename);
njnea27e462005-05-31 02:38:09 +000050
51extern Bool VG_(get_fnname_nodemangle)( Addr a, Char* fnname, Int n_fnname );
52
53extern Addr VG_(reverse_search_one_symtab) ( const SegInfo* si, const Char* name );
54
55extern Bool VG_(use_CFI_info) ( /*MOD*/Addr* ipP,
56 /*MOD*/Addr* spP,
57 /*MOD*/Addr* fpP,
58 Addr min_accessible,
59 Addr max_accessible );
60
61
62#endif // __PUB_CORE_DEBUGINFO_H
63
64/*--------------------------------------------------------------------*/
65/*--- end ---*/
66/*--------------------------------------------------------------------*/