blob: f3edb62ea31042b7751ccaa2e509817de7e51e27 [file] [log] [blame]
njnd01fef72005-03-25 23:35:48 +00001/*--------------------------------------------------------------------*/
2/*--- Stack traces: getting, traversing, printing. ---*/
3/*--- pub_core_stacktrace.h ---*/
4/*--------------------------------------------------------------------*/
5
6/*
7 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
9
sewardj9ebd6e02007-01-08 06:01:59 +000010 Copyright (C) 2000-2007 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_CORE_STACKTRACE_H
32#define __PUB_CORE_STACKTRACE_H
33
34//--------------------------------------------------------------------
35// PURPOSE: This module deals with stack traces: getting them,
36// traversing them, and printing them.
37//--------------------------------------------------------------------
38
39#include "pub_tool_stacktrace.h"
40
njn49b45ba2005-07-20 02:41:31 +000041// Variant that gives a little more control over the stack-walking.
sewardjdfbaa222006-01-18 04:25:20 +000042// If you know what the thread ID for this stack is, send that
43// as the first parameter, else send zero. This helps generate
44// better stack traces on ppc64-linux and has no effect on other
45// platforms.
46extern UInt VG_(get_StackTrace2) ( ThreadId tid_if_known,
47 StackTrace ips, UInt n_ips,
sewardjacaec5f2005-08-19 16:02:59 +000048 Addr ip, Addr sp, Addr fp, Addr lr,
njn49b45ba2005-07-20 02:41:31 +000049 Addr fp_min, Addr fp_max );
njnd01fef72005-03-25 23:35:48 +000050
51#endif // __PUB_CORE_STACKTRACE_H
52
53/*--------------------------------------------------------------------*/
54/*--- end ---*/
55/*--------------------------------------------------------------------*/