]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/dummy-frame.c
* configure.ac: Switch license to GPLv3.
[thirdparty/binutils-gdb.git] / gdb / dummy-frame.c
CommitLineData
9c1412c1
AC
1/* Code dealing with dummy stack frames, for GDB, the GNU debugger.
2
6aba47ca
DJ
3 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
4 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2007
5 Free Software Foundation, Inc.
9c1412c1
AC
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
197e01b6
EZ
21 Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 Boston, MA 02110-1301, USA. */
9c1412c1
AC
23
24
25#include "defs.h"
26#include "dummy-frame.h"
27#include "regcache.h"
28#include "frame.h"
29#include "inferior.h"
30#include "gdb_assert.h"
494cca16 31#include "frame-unwind.h"
00905d52
AC
32#include "command.h"
33#include "gdbcmd.h"
96860204 34#include "gdb_string.h"
9c1412c1
AC
35
36/* Dummy frame. This saves the processor state just prior to setting
37 up the inferior function call. Older targets save the registers
38 on the target stack (but that really slows down function calls). */
39
40struct dummy_frame
41{
42 struct dummy_frame *next;
3c109c8b
AC
43 /* This frame's ID. Must match the value returned by
44 gdbarch_unwind_dummy_id. */
c689142b 45 struct frame_id id;
3c109c8b 46 /* The caller's regcache. */
9c1412c1 47 struct regcache *regcache;
9c1412c1
AC
48};
49
50static struct dummy_frame *dummy_frame_stack = NULL;
51
3c109c8b 52/* Function: deprecated_pc_in_call_dummy (pc)
5e0f933e 53
3c109c8b 54 Return non-zero if the PC falls in a dummy frame created by gdb for
b798847d 55 an inferior call. The code below which allows gdbarch_decr_pc_after_break
3c109c8b
AC
56 is for infrun.c, which may give the function a PC without that
57 subtracted out.
5e0f933e
AC
58
59 FIXME: cagney/2002-11-23: This is silly. Surely "infrun.c" can
60 figure out what the real PC (as in the resume address) is BEFORE
3c109c8b
AC
61 calling this function.
62
63 NOTE: cagney/2004-08-02: I'm pretty sure that, with the introduction of
64 infrun.c:adjust_pc_after_break (thanks), this function is now
65 always called with a correctly adjusted PC!
5e0f933e 66
3c109c8b
AC
67 NOTE: cagney/2004-08-02: Code should not need to call this. */
68
69int
70deprecated_pc_in_call_dummy (CORE_ADDR pc)
9c1412c1
AC
71{
72 struct dummy_frame *dummyframe;
73 for (dummyframe = dummy_frame_stack;
74 dummyframe != NULL;
75 dummyframe = dummyframe->next)
76 {
3c109c8b 77 if ((pc >= dummyframe->id.code_addr)
b798847d
UW
78 && (pc <= dummyframe->id.code_addr
79 + gdbarch_decr_pc_after_break (current_gdbarch)))
9c1412c1
AC
80 return 1;
81 }
82 return 0;
83}
84
96860204
AC
85/* Push the caller's state, along with the dummy frame info, onto a
86 dummy-frame stack. */
9c1412c1
AC
87
88void
96860204
AC
89dummy_frame_push (struct regcache *caller_regcache,
90 const struct frame_id *dummy_id)
9c1412c1
AC
91{
92 struct dummy_frame *dummy_frame;
9c1412c1 93
96860204
AC
94 /* Check to see if there are stale dummy frames, perhaps left over
95 from when a longjump took us out of a function that was called by
96 the debugger. */
9c1412c1
AC
97 dummy_frame = dummy_frame_stack;
98 while (dummy_frame)
96860204 99 /* FIXME: cagney/2004-08-02: Should just test IDs. */
3c109c8b 100 if (frame_id_inner (dummy_frame->id, (*dummy_id)))
96860204 101 /* Stale -- destroy! */
9c1412c1
AC
102 {
103 dummy_frame_stack = dummy_frame->next;
104 regcache_xfree (dummy_frame->regcache);
105 xfree (dummy_frame);
106 dummy_frame = dummy_frame_stack;
107 }
108 else
109 dummy_frame = dummy_frame->next;
110
96860204
AC
111 dummy_frame = XZALLOC (struct dummy_frame);
112 dummy_frame->regcache = caller_regcache;
113 dummy_frame->id = (*dummy_id);
9c1412c1
AC
114 dummy_frame->next = dummy_frame_stack;
115 dummy_frame_stack = dummy_frame;
116}
117
d67ec5db
AC
118/* Return the dummy frame cache, it contains both the ID, and a
119 pointer to the regcache. */
120struct dummy_frame_cache
121{
122 struct frame_id this_id;
123 struct regcache *prev_regcache;
124};
125
126int
127dummy_frame_sniffer (const struct frame_unwind *self,
128 struct frame_info *next_frame,
129 void **this_prologue_cache)
130{
131 struct dummy_frame *dummyframe;
132 struct frame_id this_id;
133
134 /* When unwinding a normal frame, the stack structure is determined
135 by analyzing the frame's function's code (be it using brute force
136 prologue analysis, or the dwarf2 CFI). In the case of a dummy
137 frame, that simply isn't possible. The PC is either the program
138 entry point, or some random address on the stack. Trying to use
139 that PC to apply standard frame ID unwind techniques is just
140 asking for trouble. */
0c98cc2b
MS
141
142 /* Don't bother unles there is at least one dummy frame. */
143 if (dummy_frame_stack != NULL)
d67ec5db 144 {
0c98cc2b
MS
145 /* Use an architecture specific method to extract the prev's
146 dummy ID from the next frame. Note that this method uses
147 frame_register_unwind to obtain the register values needed to
148 determine the dummy frame's ID. */
149 this_id = gdbarch_unwind_dummy_id (get_frame_arch (next_frame),
150 next_frame);
151
152 /* Use that ID to find the corresponding cache entry. */
153 for (dummyframe = dummy_frame_stack;
154 dummyframe != NULL;
155 dummyframe = dummyframe->next)
3c109c8b 156 {
0c98cc2b
MS
157 if (frame_id_eq (dummyframe->id, this_id))
158 {
159 struct dummy_frame_cache *cache;
160 cache = FRAME_OBSTACK_ZALLOC (struct dummy_frame_cache);
161 cache->prev_regcache = dummyframe->regcache;
162 cache->this_id = this_id;
163 (*this_prologue_cache) = cache;
164 return 1;
165 }
3c109c8b 166 }
d67ec5db
AC
167 }
168 return 0;
169}
170
9c1412c1
AC
171/* Given a call-dummy dummy-frame, return the registers. Here the
172 register value is taken from the local copy of the register buffer. */
173
494cca16 174static void
6dc42492
AC
175dummy_frame_prev_register (struct frame_info *next_frame,
176 void **this_prologue_cache,
177 int regnum, int *optimized,
178 enum lval_type *lvalp, CORE_ADDR *addrp,
10c42a71 179 int *realnum, gdb_byte *bufferp)
9c1412c1 180{
d67ec5db
AC
181 /* The dummy-frame sniffer always fills in the cache. */
182 struct dummy_frame_cache *cache = (*this_prologue_cache);
183 gdb_assert (cache != NULL);
9c1412c1
AC
184
185 /* Describe the register's location. Generic dummy frames always
186 have the register value in an ``expression''. */
187 *optimized = 0;
188 *lvalp = not_lval;
189 *addrp = 0;
190 *realnum = -1;
191
192 /* If needed, find and return the value of the register. */
193 if (bufferp != NULL)
194 {
9c1412c1
AC
195 /* Return the actual value. */
196 /* Use the regcache_cooked_read() method so that it, on the fly,
197 constructs either a raw or pseudo register from the raw
198 register cache. */
d67ec5db 199 regcache_cooked_read (cache->prev_regcache, regnum, bufferp);
9c1412c1
AC
200 }
201}
202
6dc42492
AC
203/* Assuming that THIS frame is a dummy (remember, the NEXT and not
204 THIS frame is passed in), return the ID of THIS frame. That ID is
205 determined by examining the NEXT frame's unwound registers using
206 the method unwind_dummy_id(). As a side effect, THIS dummy frame's
207 dummy cache is located and and saved in THIS_PROLOGUE_CACHE. */
494cca16
AC
208
209static void
6dc42492
AC
210dummy_frame_this_id (struct frame_info *next_frame,
211 void **this_prologue_cache,
212 struct frame_id *this_id)
c689142b 213{
d67ec5db
AC
214 /* The dummy-frame sniffer always fills in the cache. */
215 struct dummy_frame_cache *cache = (*this_prologue_cache);
216 gdb_assert (cache != NULL);
217 (*this_id) = cache->this_id;
c689142b
AC
218}
219
d67ec5db 220static const struct frame_unwind dummy_frame_unwinder =
494cca16 221{
7df05f2b 222 DUMMY_FRAME,
6dc42492 223 dummy_frame_this_id,
d67ec5db
AC
224 dummy_frame_prev_register,
225 NULL,
226 dummy_frame_sniffer,
494cca16
AC
227};
228
d67ec5db
AC
229const struct frame_unwind *const dummy_frame_unwind = {
230 &dummy_frame_unwinder
231};
00905d52
AC
232
233static void
234fprint_dummy_frames (struct ui_file *file)
235{
236 struct dummy_frame *s;
237 for (s = dummy_frame_stack; s != NULL; s = s->next)
238 {
239 gdb_print_host_address (s, file);
240 fprintf_unfiltered (file, ":");
00905d52
AC
241 fprintf_unfiltered (file, " id=");
242 fprint_frame_id (file, s->id);
00905d52
AC
243 fprintf_unfiltered (file, "\n");
244 }
245}
246
247static void
248maintenance_print_dummy_frames (char *args, int from_tty)
249{
250 if (args == NULL)
251 fprint_dummy_frames (gdb_stdout);
252 else
253 {
254 struct ui_file *file = gdb_fopen (args, "w");
255 if (file == NULL)
e2e0b3e5 256 perror_with_name (_("maintenance print dummy-frames"));
00905d52
AC
257 fprint_dummy_frames (file);
258 ui_file_delete (file);
259 }
260}
261
262extern void _initialize_dummy_frame (void);
263
264void
265_initialize_dummy_frame (void)
266{
267 add_cmd ("dummy-frames", class_maintenance, maintenance_print_dummy_frames,
1a966eab 268 _("Print the contents of the internal dummy-frame stack."),
00905d52
AC
269 &maintenanceprintlist);
270
271}