]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/frame-unwind.h
* win32-low.c (win32_add_one_solib): If the dll name is
[thirdparty/binutils-gdb.git] / gdb / frame-unwind.h
CommitLineData
494cca16
AC
1/* Definitions for a frame unwinder, for GDB, the GNU debugger.
2
0fb0cc75 3 Copyright (C) 2003, 2004, 2007, 2008, 2009 Free Software Foundation, Inc.
494cca16
AC
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
494cca16
AC
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
494cca16
AC
19
20#if !defined (FRAME_UNWIND_H)
21#define FRAME_UNWIND_H 1
22
82417da5 23struct frame_data;
494cca16
AC
24struct frame_info;
25struct frame_id;
26struct frame_unwind;
27struct gdbarch;
28struct regcache;
669fac23 29struct value;
494cca16 30
7df05f2b
AC
31#include "frame.h" /* For enum frame_type. */
32
6dc42492
AC
33/* The following unwind functions assume a chain of frames forming the
34 sequence: (outer) prev <-> this <-> next (inner). All the
938f5214
TJB
35 functions are called with the next frame's `struct frame_info'
36 and this frame's prologue cache.
6dc42492
AC
37
38 THIS frame's register values can be obtained by unwinding NEXT
39 frame's registers (a recursive operation).
40
41 THIS frame's prologue cache can be used to cache information such
42 as where this frame's prologue stores the previous frame's
43 registers. */
44
669fac23 45/* Given THIS frame, take a whiff of its registers (namely
82417da5
AC
46 the PC and attributes) and if SELF is the applicable unwinder,
47 return non-zero. Possibly also initialize THIS_PROLOGUE_CACHE. */
48
49typedef int (frame_sniffer_ftype) (const struct frame_unwind *self,
669fac23 50 struct frame_info *this_frame,
82417da5
AC
51 void **this_prologue_cache);
52
669fac23
DJ
53/* A default frame sniffer which always accepts the frame. Used by
54 fallback prologue unwinders. */
55
56int default_frame_sniffer (const struct frame_unwind *self,
57 struct frame_info *this_frame,
58 void **this_prologue_cache);
59
6dc42492 60/* Assuming the frame chain: (outer) prev <-> this <-> next (inner);
669fac23
DJ
61 use THIS frame, and through it the NEXT frame's register unwind
62 method, to determine the frame ID of THIS frame.
6dc42492
AC
63
64 A frame ID provides an invariant that can be used to re-identify an
65 instance of a frame. It is a combination of the frame's `base' and
66 the frame's function's code address.
67
68 Traditionally, THIS frame's ID was determined by examining THIS
69 frame's function's prologue, and identifying the register/offset
70 used as THIS frame's base.
71
72 Example: An examination of THIS frame's prologue reveals that, on
73 entry, it saves the PC(+12), SP(+8), and R1(+4) registers
74 (decrementing the SP by 12). Consequently, the frame ID's base can
75 be determined by adding 12 to the THIS frame's stack-pointer, and
76 the value of THIS frame's SP can be obtained by unwinding the NEXT
77 frame's SP.
78
79 THIS_PROLOGUE_CACHE can be used to share any prolog analysis data
80 with the other unwind methods. Memory for that cache should be
35d5d4ee 81 allocated using FRAME_OBSTACK_ZALLOC(). */
6dc42492 82
669fac23 83typedef void (frame_this_id_ftype) (struct frame_info *this_frame,
6dc42492
AC
84 void **this_prologue_cache,
85 struct frame_id *this_id);
86
87/* Assuming the frame chain: (outer) prev <-> this <-> next (inner);
669fac23
DJ
88 use THIS frame, and implicitly the NEXT frame's register unwind
89 method, to unwind THIS frame's registers (returning the value of
90 the specified register REGNUM in the previous frame).
6dc42492
AC
91
92 Traditionally, THIS frame's registers were unwound by examining
93 THIS frame's function's prologue and identifying which registers
94 that prolog code saved on the stack.
95
96 Example: An examination of THIS frame's prologue reveals that, on
97 entry, it saves the PC(+12), SP(+8), and R1(+4) registers
98 (decrementing the SP by 12). Consequently, the value of the PC
99 register in the previous frame is found in memory at SP+12, and
100 THIS frame's SP can be obtained by unwinding the NEXT frame's SP.
101
669fac23
DJ
102 This function takes THIS_FRAME as an argument. It can find the
103 values of registers in THIS frame by calling get_frame_register
104 (THIS_FRAME), and reinvoke itself to find other registers in the
105 PREVIOUS frame by calling frame_unwind_register (THIS_FRAME).
6dc42492 106
669fac23
DJ
107 The result is a GDB value object describing the register value. It
108 may be a lazy reference to memory, a lazy reference to the value of
109 a register in THIS frame, or a non-lvalue.
6dc42492
AC
110
111 THIS_PROLOGUE_CACHE can be used to share any prolog analysis data
112 with the other unwind methods. Memory for that cache should be
35d5d4ee 113 allocated using FRAME_OBSTACK_ZALLOC(). */
6dc42492 114
669fac23
DJ
115typedef struct value * (frame_prev_register_ftype)
116 (struct frame_info *this_frame, void **this_prologue_cache,
117 int regnum);
cbafadeb 118
272dfcfd
AS
119/* Deallocate extra memory associated with the frame cache if any. */
120
121typedef void (frame_dealloc_cache_ftype) (struct frame_info *self,
122 void *this_cache);
cbafadeb 123
36f15f55
UW
124/* Assuming the frame chain: (outer) prev <-> this <-> next (inner);
125 use THIS frame, and implicitly the NEXT frame's register unwind
126 method, return PREV frame's architecture. */
127
128typedef struct gdbarch *(frame_prev_arch_ftype) (struct frame_info *this_frame,
129 void **this_prologue_cache);
130
494cca16
AC
131struct frame_unwind
132{
7df05f2b
AC
133 /* The frame's type. Should this instead be a collection of
134 predicates that test the frame for various attributes? */
135 enum frame_type type;
494cca16
AC
136 /* Should an attribute indicating the frame's address-in-block go
137 here? */
6dc42492
AC
138 frame_this_id_ftype *this_id;
139 frame_prev_register_ftype *prev_register;
82417da5
AC
140 const struct frame_data *unwind_data;
141 frame_sniffer_ftype *sniffer;
272dfcfd 142 frame_dealloc_cache_ftype *dealloc_cache;
36f15f55 143 frame_prev_arch_ftype *prev_arch;
494cca16
AC
144};
145
fb2be677
AC
146/* Register a frame unwinder, _prepending_ it to the front of the
147 search list (so it is sniffed before previously registered
148 unwinders). By using a prepend, later calls can install unwinders
149 that override earlier calls. This allows, for instance, an OSABI
150 to install a a more specific sigtramp unwinder that overrides the
151 traditional brute-force unwinder. */
152extern void frame_unwind_prepend_unwinder (struct gdbarch *gdbarch,
153 const struct frame_unwind *unwinder);
82417da5 154
e8a89fe2
AC
155/* Add a frame sniffer to the list. The predicates are polled in the
156 order that they are appended. The initial list contains the dummy
157 frame sniffer. */
158
669fac23
DJ
159extern void frame_unwind_append_unwinder (struct gdbarch *gdbarch,
160 const struct frame_unwind *unwinder);
e8a89fe2 161
669fac23 162/* Iterate through sniffers for THIS frame until one returns with an
82417da5 163 unwinder implementation. Possibly initialize THIS_CACHE. */
e8a89fe2 164
669fac23 165extern const struct frame_unwind *frame_unwind_find_by_frame (struct frame_info *this_frame,
82417da5 166 void **this_cache);
e8a89fe2 167
669fac23
DJ
168/* Helper functions for value-based register unwinding. These return
169 a (possibly lazy) value of the appropriate type. */
170
171/* Return a value which indicates that FRAME did not save REGNUM. */
172
173struct value *frame_unwind_got_optimized (struct frame_info *frame,
174 int regnum);
175
176/* Return a value which indicates that FRAME copied REGNUM into
177 register NEW_REGNUM. */
178
179struct value *frame_unwind_got_register (struct frame_info *frame, int regnum,
180 int new_regnum);
181
182/* Return a value which indicates that FRAME saved REGNUM in memory at
183 ADDR. */
184
185struct value *frame_unwind_got_memory (struct frame_info *frame, int regnum,
186 CORE_ADDR addr);
187
188/* Return a value which indicates that FRAME's saved version of
189 REGNUM has a known constant (computed) value of VAL. */
190
191struct value *frame_unwind_got_constant (struct frame_info *frame, int regnum,
192 ULONGEST val);
193
15c1e57f
JB
194/* Return a value which indicates that FRAME's saved version of
195 REGNUM has a known constant (computed) value which is stored
196 inside BUF. */
197
198struct value *frame_unwind_got_bytes (struct frame_info *frame, int regnum,
199 gdb_byte *buf);
200
669fac23
DJ
201/* Return a value which indicates that FRAME's saved version of REGNUM
202 has a known constant (computed) value of ADDR. Convert the
203 CORE_ADDR to a target address if necessary. */
204
205struct value *frame_unwind_got_address (struct frame_info *frame, int regnum,
206 CORE_ADDR addr);
207
494cca16 208#endif