blob: c442d394d0d01ab98f0c337c4cbadad558406fce [file] [log] [blame]
njnd01fef72005-03-25 23:35:48 +00001/*--------------------------------------------------------------------*/
2/*--- Stack traces: getting, traversing, printing. ---*/
3/*--- tool_stacktrace.h ---*/
4/*--------------------------------------------------------------------*/
5
6/*
7 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
9
Elliott Hughesed398002017-06-21 14:41:24 -070010 Copyright (C) 2000-2017 Julian Seward
njnd01fef72005-03-25 23:35:48 +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_STACKTRACE_H
32#define __PUB_TOOL_STACKTRACE_H
33
florian535fb1b2013-09-15 13:54:34 +000034#include "pub_tool_basics.h" // Addr
35
njnd01fef72005-03-25 23:35:48 +000036// The basic stack trace type: just an array of code addresses.
37typedef Addr* StackTrace;
38
sewardjb8b79ad2008-03-03 01:35:41 +000039// Walks the stack to get instruction pointers from the top stack frames
40// for thread 'tid'. Maximum of 'n_ips' addresses put into 'ips';
41// 0 is the top of the stack, 1 is its caller, etc. Everything from
42// ips[return_value] onwards is undefined and should not be read.
43// The initial IP value to use is adjusted by first_ip_delta before
44// the stack is unwound. A safe value to pass is zero.
45//
sewardjb1ae15d2008-12-12 13:23:03 +000046// The specific meaning of the returned addresses is:
47//
48// [0] is the IP of thread 'tid'
49// [1] points to the last byte of the call instruction that called [0].
50// [2] points to the last byte of the call instruction that called [1].
51// etc etc
52//
53// Hence ips[0 .. return_value-1] should all point to currently
54// 'active' (in the sense of a stack of unfinished function calls)
55// instructions. [0] points to the start of an arbitrary instruction.#
56// [1 ..] point to the last byte of a chain of call instructions.
57//
sewardjb8b79ad2008-03-03 01:35:41 +000058// If sps and fps are non-NULL, the corresponding frame-pointer and
59// stack-pointer values for each frame are stored there.
60
61extern UInt VG_(get_StackTrace) ( ThreadId tid,
62 /*OUT*/StackTrace ips, UInt n_ips,
63 /*OUT*/StackTrace sps,
64 /*OUT*/StackTrace fps,
sewardjea226c42007-11-09 23:16:11 +000065 Word first_ip_delta );
njnd01fef72005-03-25 23:35:48 +000066
sewardj588adef2009-08-15 22:41:51 +000067// Apply a function to every element in the StackTrace. The parameter
68// 'n' gives the index of the passed ip. 'opaque' is an arbitrary
Elliott Hughesed398002017-06-21 14:41:24 -070069// pointer provided to each invocation of 'action' (a poor man's
sewardj588adef2009-08-15 22:41:51 +000070// closure). Doesn't go below main() unless --show-below-main=yes is
71// set.
72extern void VG_(apply_StackTrace)(
73 void(*action)(UInt n, Addr ip, void* opaque),
74 void* opaque,
75 StackTrace ips, UInt n_ips
76 );
njnd01fef72005-03-25 23:35:48 +000077
78// Print a StackTrace.
79extern void VG_(pp_StackTrace) ( StackTrace ips, UInt n_ips );
80
81// Gets and immediately prints a StackTrace. Just a bit simpler than
82// calling VG_(get_StackTrace)() then VG_(pp_StackTrace)().
83extern void VG_(get_and_pp_StackTrace) ( ThreadId tid, UInt n_ips );
84
85#endif // __PUB_TOOL_STACKTRACE_H
86
87/*--------------------------------------------------------------------*/
88/*--- end ---*/
89/*--------------------------------------------------------------------*/