blob: bdef9c9088963aa18a8b03f99980acb52510ff12 [file] [log] [blame]
sewardjc8259b82009-04-22 22:42:10 +00001
2/*--------------------------------------------------------------------*/
3/*--- Reading of syms & debug info from PDB-format files. ---*/
4/*--- priv_readpdb.h ---*/
5/*--------------------------------------------------------------------*/
6
7/*
8 This file is part of Valgrind, a dynamic binary instrumentation
9 framework.
10 Spring 2008:
11 derived from readelf.c and valgrind-20031012-wine/vg_symtab2.c
12 derived from wine-1.0/tools/winedump/pdb.c and msc.c
13
sewardj0f157dd2013-10-18 14:27:36 +000014 Copyright (C) 2000-2013 Julian Seward
sewardjc8259b82009-04-22 22:42:10 +000015 jseward@acm.org
16
17 This program is free software; you can redistribute it and/or
18 modify it under the terms of the GNU General Public License as
19 published by the Free Software Foundation; either version 2 of the
20 License, or (at your option) any later version.
21
22 This program is distributed in the hope that it will be useful, but
23 WITHOUT ANY WARRANTY; without even the implied warranty of
24 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
25 General Public License for more details.
26
27 You should have received a copy of the GNU General Public License
28 along with this program; if not, write to the Free Software
29 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
30 02111-1307, USA.
31
32 The GNU General Public License is contained in the file COPYING.
33*/
34
njn8b68b642009-06-24 00:37:09 +000035#if defined(VGO_linux) || defined(VGO_darwin)
36
sewardjc8259b82009-04-22 22:42:10 +000037#ifndef __PRIV_READPDB_H
38#define __PRIV_READPDB_H
39
florian535fb1b2013-09-15 13:54:34 +000040#include "pub_core_basics.h" // Addr
41#include "pub_core_debuginfo.h" // DebugInfo
42
sewardjc8259b82009-04-22 22:42:10 +000043/* Returns True if OK, False for any kind of failure. */
44extern Bool ML_(read_pdb_debug_info)(
45 DebugInfo* di,
46 Addr obj_avma,
sewardj54c45db2012-07-13 12:58:55 +000047 PtrdiffT obj_bias,
sewardjc8259b82009-04-22 22:42:10 +000048 void* pdbimage,
49 SizeT n_pdbimage,
florian1636d332012-11-15 04:27:04 +000050 HChar* pdbname,
sewardjc8259b82009-04-22 22:42:10 +000051 ULong pdbmtime
52 );
53
sewardj13ac96d2010-02-12 12:12:39 +000054/* Finds the name of the PDB file that's embedded with the specified
55 PE file, or NULL on failure. Caller deallocates with
56 ML_(dinfo_free). */
57HChar* ML_(find_name_of_pdb_file)( HChar* pename );
58
59
sewardjc8259b82009-04-22 22:42:10 +000060#endif /* ndef __PRIV_READPDB_H */
61
njn8b68b642009-06-24 00:37:09 +000062#endif // defined(VGO_linux) || defined(VGO_darwin)
63
sewardjc8259b82009-04-22 22:42:10 +000064/*--------------------------------------------------------------------*/
njn8b68b642009-06-24 00:37:09 +000065/*--- end ---*/
sewardjc8259b82009-04-22 22:42:10 +000066/*--------------------------------------------------------------------*/