blob: a6849ab6dc254145fe75ff7b7483d3a4ee04929d [file] [log] [blame]
njnea27e462005-05-31 02:38:09 +00001
2/*--------------------------------------------------------------------*/
3/*--- DebugInfo. pub_tool_debuginfo.h ---*/
4/*--------------------------------------------------------------------*/
5
6/*
7 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
9
sewardj4d474d02008-02-11 11:34:59 +000010 Copyright (C) 2000-2008 Julian Seward
njnea27e462005-05-31 02:38:09 +000011 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_TOOL_DEBUGINFO_H
32#define __PUB_TOOL_DEBUGINFO_H
33
34/*====================================================================*/
35/*=== Obtaining debug information ===*/
36/*====================================================================*/
37
38/* Get the file/function/line number of the instruction at address
39 'a'. For these four, if debug info for the address is found, it
40 copies the info into the buffer/UInt and returns True. If not, it
41 returns False and nothing is copied. VG_(get_fnname) always
42 demangles C++ function names. VG_(get_fnname_w_offset) is the
43 same, except it appends "+N" to symbol names to indicate offsets. */
44extern Bool VG_(get_filename) ( Addr a, Char* filename, Int n_filename );
45extern Bool VG_(get_fnname) ( Addr a, Char* fnname, Int n_fnname );
46extern Bool VG_(get_linenum) ( Addr a, UInt* linenum );
47extern Bool VG_(get_fnname_w_offset)
48 ( Addr a, Char* fnname, Int n_fnname );
49
sewardj7cee6f92005-06-13 17:39:06 +000050/* This one is the most general. It gives filename, line number and
51 optionally directory name. filename and linenum may not be NULL.
52 dirname may be NULL, meaning that the caller does not want
53 directory name info, in which case dirname_available must also be
54 NULL. If dirname is non-null, directory info is written to it, if
55 it is available; if not available, '\0' is written to the first
56 byte. In either case *dirname_available is set to indicate whether
57 or not directory information was available.
58
59 Returned value indicates whether any filename/line info could be
60 found. */
njnea27e462005-05-31 02:38:09 +000061extern Bool VG_(get_filename_linenum)
sewardj7cee6f92005-06-13 17:39:06 +000062 ( Addr a,
63 /*OUT*/Char* filename, Int n_filename,
64 /*OUT*/Char* dirname, Int n_dirname,
65 /*OUT*/Bool* dirname_available,
66 /*OUT*/UInt* linenum );
njnea27e462005-05-31 02:38:09 +000067
68/* Succeeds only if we find from debug info that 'a' is the address of the
69 first instruction in a function -- as opposed to VG_(get_fnname) which
70 succeeds if we find from debug info that 'a' is the address of any
71 instruction in a function. Use this to instrument the start of
72 a particular function. Nb: if an executable/shared object is stripped
73 of its symbols, this function will not be able to recognise function
74 entry points within it. */
75extern Bool VG_(get_fnname_if_entry) ( Addr a, Char* fnname, Int n_fnname );
76
sewardjb8b79ad2008-03-03 01:35:41 +000077/* Looks up data_addr in the collection of data symbols, and if found
78 puts its name (or as much as will fit) into dname[0 .. n_dname-1],
79 which is guaranteed to be zero terminated. Also data_addr's offset
80 from the symbol start is put into *offset. */
81extern Bool VG_(get_datasym_and_offset)( Addr data_addr,
82 /*OUT*/Char* dname, Int n_dname,
83 /*OUT*/OffT* offset );
84
85/* Try to form some description of data_addr by looking at the DWARF3
86 debug info we have. This considers all global variables, and all
87 frames in the stacks of all threads. Result (or as much as will
88 fit) is put into into dname{1,2}[0 .. n_dname-1] and is guaranteed
89 to be zero terminated. */
90extern Bool VG_(get_data_description)( /*OUT*/Char* dname1,
91 /*OUT*/Char* dname2,
92 Int n_dname,
93 Addr data_addr );
94
njnea27e462005-05-31 02:38:09 +000095/* Succeeds if the address is within a shared object or the main executable.
96 It doesn't matter if debug info is present or not. */
sewardjb8b79ad2008-03-03 01:35:41 +000097extern Bool VG_(get_objname) ( Addr a, Char* objname, Int n_objname );
njnea27e462005-05-31 02:38:09 +000098
99/* Puts into 'buf' info about the code address %eip: the address, function
100 name (if known) and filename/line number (if known), like this:
101
102 0x4001BF05: realloc (vg_replace_malloc.c:339)
103
104 'n_buf' gives length of 'buf'. Returns 'buf'.
105*/
106extern Char* VG_(describe_IP)(Addr eip, Char* buf, Int n_buf);
107
njnea27e462005-05-31 02:38:09 +0000108/*====================================================================*/
109/*=== Obtaining segment information ===*/
110/*====================================================================*/
111
112/* A way to get information about what segments are mapped */
sewardjb8b79ad2008-03-03 01:35:41 +0000113typedef struct _DebugInfo DebugInfo;
njnea27e462005-05-31 02:38:09 +0000114
sewardjb8b79ad2008-03-03 01:35:41 +0000115/* Returns NULL if the DebugInfo isn't found. It doesn't matter if
116 debug info is present or not. */
117extern DebugInfo* VG_(find_seginfo) ( Addr a );
njnea27e462005-05-31 02:38:09 +0000118
sewardjb8b79ad2008-03-03 01:35:41 +0000119/* Fish bits out of DebugInfos. */
120extern Addr VG_(seginfo_get_text_avma)( const DebugInfo *di );
121extern SizeT VG_(seginfo_get_text_size)( const DebugInfo *di );
122extern const UChar* VG_(seginfo_soname) ( const DebugInfo *di );
123extern const UChar* VG_(seginfo_filename) ( const DebugInfo *di );
124extern ULong VG_(seginfo_get_text_bias)( const DebugInfo *di );
njnea27e462005-05-31 02:38:09 +0000125
sewardj0ec07f32006-01-12 12:32:32 +0000126/* Function for traversing the seginfo list. When called with NULL it
127 returns the first element; otherwise it returns the given element's
128 successor. */
sewardjb8b79ad2008-03-03 01:35:41 +0000129extern const DebugInfo* VG_(next_seginfo) ( const DebugInfo *di );
sewardj0ec07f32006-01-12 12:32:32 +0000130
sewardjb8b79ad2008-03-03 01:35:41 +0000131/* Functions for traversing all the symbols in a DebugInfo. _howmany
sewardj0ec07f32006-01-12 12:32:32 +0000132 tells how many there are. _getidx retrieves the n'th, for n in 0
133 .. _howmany-1. You may not modify the function name thereby
134 acquired; if you want to do so, first strdup it. */
sewardjb8b79ad2008-03-03 01:35:41 +0000135extern Int VG_(seginfo_syms_howmany) ( const DebugInfo *di );
136extern void VG_(seginfo_syms_getidx) ( const DebugInfo *di,
sewardj0ec07f32006-01-12 12:32:32 +0000137 Int idx,
sewardjb8b79ad2008-03-03 01:35:41 +0000138 /*OUT*/Addr* avma,
sewardj811469c2006-10-17 01:36:37 +0000139 /*OUT*/Addr* tocptr,
sewardj0ec07f32006-01-12 12:32:32 +0000140 /*OUT*/UInt* size,
sewardjb8b79ad2008-03-03 01:35:41 +0000141 /*OUT*/HChar** name,
142 /*OUT*/Bool* isText );
sewardj0ec07f32006-01-12 12:32:32 +0000143
sewardjb8b79ad2008-03-03 01:35:41 +0000144/* A simple enumeration to describe the 'kind' of various kinds of
145 segments that arise from the mapping of object files. */
njnea27e462005-05-31 02:38:09 +0000146typedef
147 enum {
148 Vg_SectUnknown,
149 Vg_SectText,
150 Vg_SectData,
151 Vg_SectBSS,
152 Vg_SectGOT,
sewardjb8b79ad2008-03-03 01:35:41 +0000153 Vg_SectPLT,
154 Vg_SectOPD
njnea27e462005-05-31 02:38:09 +0000155 }
156 VgSectKind;
157
sewardjb8b79ad2008-03-03 01:35:41 +0000158/* Convert a VgSectKind to a string, which must be copied if you want
159 to change it. */
160extern
161const HChar* VG_(pp_SectKind)( VgSectKind kind );
njnea27e462005-05-31 02:38:09 +0000162
sewardjb8b79ad2008-03-03 01:35:41 +0000163/* Given an address 'a', make a guess of which section of which object
164 it comes from. If name is non-NULL, then the last n_name-1
165 characters of the object's name is put in name[0 .. n_name-2], and
166 name[n_name-1] is set to zero (guaranteed zero terminated). */
167extern
168VgSectKind VG_(seginfo_sect_kind)( /*OUT*/UChar* name, SizeT n_name,
169 Addr a);
sewardjbbec7722007-11-25 14:08:53 +0000170
171
njnea27e462005-05-31 02:38:09 +0000172#endif // __PUB_TOOL_DEBUGINFO_H
173
174/*--------------------------------------------------------------------*/
175/*--- end ---*/
176/*--------------------------------------------------------------------*/