blob: a1082312eeb47f507fd184eced71ddd349ac50b4 [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
njn68824432009-02-10 06:48:00 +000077typedef
78 enum {
79 Vg_FnNameNormal, // A normal function.
80 Vg_FnNameMain, // "main"
81 Vg_FnNameBelowMain // Something below "main", eg. __libc_start_main.
82 } Vg_FnNameKind; // Such names are often filtered.
83
84/* Indicates what kind of fnname it is. */
85extern Vg_FnNameKind VG_(get_fnname_kind) ( Char* name );
86
87/* Like VG_(get_fnname_kind), but takes a code address. */
88extern Vg_FnNameKind VG_(get_fnname_kind_from_IP) ( Addr ip );
89
sewardjb8b79ad2008-03-03 01:35:41 +000090/* Looks up data_addr in the collection of data symbols, and if found
91 puts its name (or as much as will fit) into dname[0 .. n_dname-1],
92 which is guaranteed to be zero terminated. Also data_addr's offset
93 from the symbol start is put into *offset. */
94extern Bool VG_(get_datasym_and_offset)( Addr data_addr,
95 /*OUT*/Char* dname, Int n_dname,
njnc4431bf2009-01-15 21:29:24 +000096 /*OUT*/PtrdiffT* offset );
sewardjb8b79ad2008-03-03 01:35:41 +000097
98/* Try to form some description of data_addr by looking at the DWARF3
99 debug info we have. This considers all global variables, and all
100 frames in the stacks of all threads. Result (or as much as will
101 fit) is put into into dname{1,2}[0 .. n_dname-1] and is guaranteed
102 to be zero terminated. */
103extern Bool VG_(get_data_description)( /*OUT*/Char* dname1,
104 /*OUT*/Char* dname2,
105 Int n_dname,
106 Addr data_addr );
107
njnea27e462005-05-31 02:38:09 +0000108/* Succeeds if the address is within a shared object or the main executable.
109 It doesn't matter if debug info is present or not. */
sewardjb8b79ad2008-03-03 01:35:41 +0000110extern Bool VG_(get_objname) ( Addr a, Char* objname, Int n_objname );
njnea27e462005-05-31 02:38:09 +0000111
112/* Puts into 'buf' info about the code address %eip: the address, function
113 name (if known) and filename/line number (if known), like this:
114
115 0x4001BF05: realloc (vg_replace_malloc.c:339)
116
117 'n_buf' gives length of 'buf'. Returns 'buf'.
118*/
119extern Char* VG_(describe_IP)(Addr eip, Char* buf, Int n_buf);
120
sewardj9c606bd2008-09-18 18:12:50 +0000121
122/* Get an XArray of StackBlock which describe the stack (auto) blocks
123 for this ip. The caller is expected to free the XArray at some
124 point. If 'arrays_only' is True, only array-typed blocks are
125 returned; otherwise blocks of all types are returned. */
126
127typedef
128 struct {
njnc4431bf2009-01-15 21:29:24 +0000129 PtrdiffT base; /* offset from sp or fp */
130 SizeT szB; /* size in bytes */
131 Bool spRel; /* True => sp-rel, False => fp-rel */
132 Bool isVec; /* does block have an array type, or not? */
133 HChar name[16]; /* first 15 chars of name (asciiz) */
sewardj9c606bd2008-09-18 18:12:50 +0000134 }
135 StackBlock;
136
137extern void* /* really, XArray* of StackBlock */
138 VG_(di_get_stack_blocks_at_ip)( Addr ip, Bool arrays_only );
139
140
141/* Get an array of GlobalBlock which describe the global blocks owned
142 by the shared object characterised by the given di_handle. Asserts
143 if the handle is invalid. The caller is responsible for freeing
144 the array at some point. If 'arrays_only' is True, only
145 array-typed blocks are returned; otherwise blocks of all types are
146 returned. */
147
148typedef
149 struct {
150 Addr addr;
151 SizeT szB;
152 Bool isVec; /* does block have an array type, or not? */
153 HChar name[16]; /* first 15 chars of name (asciiz) */
154 HChar soname[16]; /* first 15 chars of name (asciiz) */
155 }
156 GlobalBlock;
157
158extern void* /* really, XArray* of GlobalBlock */
159VG_(di_get_global_blocks_from_dihandle) ( ULong di_handle,
160 Bool arrays_only );
161
162
njnea27e462005-05-31 02:38:09 +0000163/*====================================================================*/
164/*=== Obtaining segment information ===*/
165/*====================================================================*/
166
167/* A way to get information about what segments are mapped */
sewardjb8b79ad2008-03-03 01:35:41 +0000168typedef struct _DebugInfo DebugInfo;
njnea27e462005-05-31 02:38:09 +0000169
sewardjb8b79ad2008-03-03 01:35:41 +0000170/* Returns NULL if the DebugInfo isn't found. It doesn't matter if
171 debug info is present or not. */
172extern DebugInfo* VG_(find_seginfo) ( Addr a );
njnea27e462005-05-31 02:38:09 +0000173
sewardjb8b79ad2008-03-03 01:35:41 +0000174/* Fish bits out of DebugInfos. */
175extern Addr VG_(seginfo_get_text_avma)( const DebugInfo *di );
176extern SizeT VG_(seginfo_get_text_size)( const DebugInfo *di );
bart092b6262008-05-25 16:37:22 +0000177extern Addr VG_(seginfo_get_plt_avma) ( const DebugInfo *di );
178extern SizeT VG_(seginfo_get_plt_size) ( const DebugInfo *di );
179extern Addr VG_(seginfo_get_gotplt_avma)( const DebugInfo *di );
180extern SizeT VG_(seginfo_get_gotplt_size)( const DebugInfo *di );
sewardjb8b79ad2008-03-03 01:35:41 +0000181extern const UChar* VG_(seginfo_soname) ( const DebugInfo *di );
182extern const UChar* VG_(seginfo_filename) ( const DebugInfo *di );
njnc4431bf2009-01-15 21:29:24 +0000183extern PtrdiffT VG_(seginfo_get_text_bias)( const DebugInfo *di );
njnea27e462005-05-31 02:38:09 +0000184
sewardj0ec07f32006-01-12 12:32:32 +0000185/* Function for traversing the seginfo list. When called with NULL it
186 returns the first element; otherwise it returns the given element's
187 successor. */
sewardjb8b79ad2008-03-03 01:35:41 +0000188extern const DebugInfo* VG_(next_seginfo) ( const DebugInfo *di );
sewardj0ec07f32006-01-12 12:32:32 +0000189
sewardjb8b79ad2008-03-03 01:35:41 +0000190/* Functions for traversing all the symbols in a DebugInfo. _howmany
sewardj0ec07f32006-01-12 12:32:32 +0000191 tells how many there are. _getidx retrieves the n'th, for n in 0
192 .. _howmany-1. You may not modify the function name thereby
193 acquired; if you want to do so, first strdup it. */
sewardjb8b79ad2008-03-03 01:35:41 +0000194extern Int VG_(seginfo_syms_howmany) ( const DebugInfo *di );
195extern void VG_(seginfo_syms_getidx) ( const DebugInfo *di,
sewardj0ec07f32006-01-12 12:32:32 +0000196 Int idx,
sewardjb8b79ad2008-03-03 01:35:41 +0000197 /*OUT*/Addr* avma,
sewardj811469c2006-10-17 01:36:37 +0000198 /*OUT*/Addr* tocptr,
sewardj0ec07f32006-01-12 12:32:32 +0000199 /*OUT*/UInt* size,
sewardjb8b79ad2008-03-03 01:35:41 +0000200 /*OUT*/HChar** name,
201 /*OUT*/Bool* isText );
sewardj0ec07f32006-01-12 12:32:32 +0000202
sewardjb8b79ad2008-03-03 01:35:41 +0000203/* A simple enumeration to describe the 'kind' of various kinds of
204 segments that arise from the mapping of object files. */
njnea27e462005-05-31 02:38:09 +0000205typedef
206 enum {
207 Vg_SectUnknown,
208 Vg_SectText,
209 Vg_SectData,
210 Vg_SectBSS,
211 Vg_SectGOT,
sewardjb8b79ad2008-03-03 01:35:41 +0000212 Vg_SectPLT,
bart092b6262008-05-25 16:37:22 +0000213 Vg_SectGOTPLT,
sewardjb8b79ad2008-03-03 01:35:41 +0000214 Vg_SectOPD
njnea27e462005-05-31 02:38:09 +0000215 }
216 VgSectKind;
217
sewardjb8b79ad2008-03-03 01:35:41 +0000218/* Convert a VgSectKind to a string, which must be copied if you want
219 to change it. */
220extern
221const HChar* VG_(pp_SectKind)( VgSectKind kind );
njnea27e462005-05-31 02:38:09 +0000222
sewardjb8b79ad2008-03-03 01:35:41 +0000223/* Given an address 'a', make a guess of which section of which object
224 it comes from. If name is non-NULL, then the last n_name-1
225 characters of the object's name is put in name[0 .. n_name-2], and
226 name[n_name-1] is set to zero (guaranteed zero terminated). */
227extern
228VgSectKind VG_(seginfo_sect_kind)( /*OUT*/UChar* name, SizeT n_name,
229 Addr a);
sewardjbbec7722007-11-25 14:08:53 +0000230
231
njnea27e462005-05-31 02:38:09 +0000232#endif // __PUB_TOOL_DEBUGINFO_H
233
234/*--------------------------------------------------------------------*/
235/*--- end ---*/
236/*--------------------------------------------------------------------*/