]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/frame.c
gdb/
[thirdparty/binutils-gdb.git] / gdb / frame.c
CommitLineData
4f460812 1/* Cache and manage frames for GDB, the GNU debugger.
96cb11df 2
6aba47ca 3 Copyright (C) 1986, 1987, 1989, 1991, 1994, 1995, 1996, 1998, 2000, 2001,
7b6bb8da
JB
4 2002, 2003, 2004, 2007, 2008, 2009, 2010, 2011
5 Free Software Foundation, Inc.
d65fe839
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
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
d65fe839
AC
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
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
d65fe839
AC
21
22#include "defs.h"
23#include "frame.h"
24#include "target.h"
25#include "value.h"
39f77062 26#include "inferior.h" /* for inferior_ptid */
4e052eda 27#include "regcache.h"
4f460812 28#include "gdb_assert.h"
e36180d7 29#include "gdb_string.h"
eb8bc282 30#include "user-regs.h"
4c1e7e9d
AC
31#include "gdb_obstack.h"
32#include "dummy-frame.h"
a94dd1fd 33#include "sentinel-frame.h"
4c1e7e9d
AC
34#include "gdbcore.h"
35#include "annotate.h"
6e7f8b9c 36#include "language.h"
494cca16 37#include "frame-unwind.h"
da62e633 38#include "frame-base.h"
eb4f72c5
AC
39#include "command.h"
40#include "gdbcmd.h"
f4c5303c 41#include "observer.h"
c8cd9f6c 42#include "objfiles.h"
60250e8b 43#include "exceptions.h"
8ea051c5 44#include "gdbthread.h"
edb3359d
DJ
45#include "block.h"
46#include "inline-frame.h"
2ce6d6bf 47#include "tracepoint.h"
eb4f72c5 48
5613d8d3 49static struct frame_info *get_prev_frame_1 (struct frame_info *this_frame);
edb3359d 50static struct frame_info *get_prev_frame_raw (struct frame_info *this_frame);
5613d8d3 51
bd013d54
AC
52/* We keep a cache of stack frames, each of which is a "struct
53 frame_info". The innermost one gets allocated (in
54 wait_for_inferior) each time the inferior stops; current_frame
55 points to it. Additional frames get allocated (in get_prev_frame)
56 as needed, and are chained through the next and prev fields. Any
57 time that the frame cache becomes invalid (most notably when we
58 execute something, but also if we change how we interpret the
59 frames (e.g. "set heuristic-fence-post" in mips-tdep.c, or anything
60 which reads new symbols)), we should call reinit_frame_cache. */
61
62struct frame_info
63{
64 /* Level of this frame. The inner-most (youngest) frame is at level
65 0. As you move towards the outer-most (oldest) frame, the level
66 increases. This is a cached value. It could just as easily be
67 computed by counting back from the selected frame to the inner
68 most frame. */
bbde78fa 69 /* NOTE: cagney/2002-04-05: Perhaps a level of ``-1'' should be
bd013d54
AC
70 reserved to indicate a bogus frame - one that has been created
71 just to keep GDB happy (GDB always needs a frame). For the
72 moment leave this as speculation. */
73 int level;
74
6c95b8df
PA
75 /* The frame's program space. */
76 struct program_space *pspace;
77
78 /* The frame's address space. */
79 struct address_space *aspace;
80
bd013d54
AC
81 /* The frame's low-level unwinder and corresponding cache. The
82 low-level unwinder is responsible for unwinding register values
83 for the previous frame. The low-level unwind methods are
bbde78fa 84 selected based on the presence, or otherwise, of register unwind
bd013d54
AC
85 information such as CFI. */
86 void *prologue_cache;
87 const struct frame_unwind *unwind;
88
36f15f55
UW
89 /* Cached copy of the previous frame's architecture. */
90 struct
91 {
92 int p;
93 struct gdbarch *arch;
94 } prev_arch;
95
bd013d54
AC
96 /* Cached copy of the previous frame's resume address. */
97 struct {
98 int p;
99 CORE_ADDR value;
100 } prev_pc;
101
102 /* Cached copy of the previous frame's function address. */
103 struct
104 {
105 CORE_ADDR addr;
106 int p;
107 } prev_func;
108
109 /* This frame's ID. */
110 struct
111 {
112 int p;
113 struct frame_id value;
114 } this_id;
115
116 /* The frame's high-level base methods, and corresponding cache.
117 The high level base methods are selected based on the frame's
118 debug info. */
119 const struct frame_base *base;
120 void *base_cache;
121
122 /* Pointers to the next (down, inner, younger) and previous (up,
123 outer, older) frame_info's in the frame cache. */
124 struct frame_info *next; /* down, inner, younger */
125 int prev_p;
126 struct frame_info *prev; /* up, outer, older */
55feb689
DJ
127
128 /* The reason why we could not set PREV, or UNWIND_NO_REASON if we
129 could. Only valid when PREV_P is set. */
130 enum unwind_stop_reason stop_reason;
bd013d54
AC
131};
132
b83e9eb7
JB
133/* A frame stash used to speed up frame lookups. */
134
135/* We currently only stash one frame at a time, as this seems to be
136 sufficient for now. */
137static struct frame_info *frame_stash = NULL;
138
139/* Add the following FRAME to the frame stash. */
140
141static void
142frame_stash_add (struct frame_info *frame)
143{
144 frame_stash = frame;
145}
146
147/* Search the frame stash for an entry with the given frame ID.
148 If found, return that frame. Otherwise return NULL. */
149
150static struct frame_info *
151frame_stash_find (struct frame_id id)
152{
153 if (frame_stash && frame_id_eq (frame_stash->this_id.value, id))
154 return frame_stash;
155
156 return NULL;
157}
158
159/* Invalidate the frame stash by removing all entries in it. */
160
161static void
162frame_stash_invalidate (void)
163{
164 frame_stash = NULL;
165}
166
ac2bd0a9
AC
167/* Flag to control debugging. */
168
669fac23 169int frame_debug;
920d2a44
AC
170static void
171show_frame_debug (struct ui_file *file, int from_tty,
172 struct cmd_list_element *c, const char *value)
173{
174 fprintf_filtered (file, _("Frame debugging is %s.\n"), value);
175}
ac2bd0a9 176
25d29d70
AC
177/* Flag to indicate whether backtraces should stop at main et.al. */
178
179static int backtrace_past_main;
920d2a44
AC
180static void
181show_backtrace_past_main (struct ui_file *file, int from_tty,
182 struct cmd_list_element *c, const char *value)
183{
3e43a32a
MS
184 fprintf_filtered (file,
185 _("Whether backtraces should "
186 "continue past \"main\" is %s.\n"),
920d2a44
AC
187 value);
188}
189
2315ffec 190static int backtrace_past_entry;
920d2a44
AC
191static void
192show_backtrace_past_entry (struct ui_file *file, int from_tty,
193 struct cmd_list_element *c, const char *value)
194{
3e43a32a
MS
195 fprintf_filtered (file, _("Whether backtraces should continue past the "
196 "entry point of a program is %s.\n"),
920d2a44
AC
197 value);
198}
199
4a5e53e8 200static int backtrace_limit = INT_MAX;
920d2a44
AC
201static void
202show_backtrace_limit (struct ui_file *file, int from_tty,
203 struct cmd_list_element *c, const char *value)
204{
3e43a32a
MS
205 fprintf_filtered (file,
206 _("An upper bound on the number "
207 "of backtrace levels is %s.\n"),
920d2a44
AC
208 value);
209}
210
eb4f72c5 211
ca73dd9d
AC
212static void
213fprint_field (struct ui_file *file, const char *name, int p, CORE_ADDR addr)
214{
215 if (p)
5af949e3 216 fprintf_unfiltered (file, "%s=%s", name, hex_string (addr));
ca73dd9d
AC
217 else
218 fprintf_unfiltered (file, "!%s", name);
219}
d65fe839 220
00905d52 221void
7f78e237
AC
222fprint_frame_id (struct ui_file *file, struct frame_id id)
223{
ca73dd9d
AC
224 fprintf_unfiltered (file, "{");
225 fprint_field (file, "stack", id.stack_addr_p, id.stack_addr);
226 fprintf_unfiltered (file, ",");
227 fprint_field (file, "code", id.code_addr_p, id.code_addr);
228 fprintf_unfiltered (file, ",");
229 fprint_field (file, "special", id.special_addr_p, id.special_addr);
edb3359d
DJ
230 if (id.inline_depth)
231 fprintf_unfiltered (file, ",inlined=%d", id.inline_depth);
ca73dd9d 232 fprintf_unfiltered (file, "}");
7f78e237
AC
233}
234
235static void
236fprint_frame_type (struct ui_file *file, enum frame_type type)
237{
238 switch (type)
239 {
7f78e237
AC
240 case NORMAL_FRAME:
241 fprintf_unfiltered (file, "NORMAL_FRAME");
242 return;
243 case DUMMY_FRAME:
244 fprintf_unfiltered (file, "DUMMY_FRAME");
245 return;
edb3359d
DJ
246 case INLINE_FRAME:
247 fprintf_unfiltered (file, "INLINE_FRAME");
248 return;
249 case SENTINEL_FRAME:
250 fprintf_unfiltered (file, "SENTINEL_FRAME");
251 return;
7f78e237
AC
252 case SIGTRAMP_FRAME:
253 fprintf_unfiltered (file, "SIGTRAMP_FRAME");
254 return;
36f15f55
UW
255 case ARCH_FRAME:
256 fprintf_unfiltered (file, "ARCH_FRAME");
257 return;
7f78e237
AC
258 default:
259 fprintf_unfiltered (file, "<unknown type>");
260 return;
261 };
262}
263
264static void
265fprint_frame (struct ui_file *file, struct frame_info *fi)
266{
267 if (fi == NULL)
268 {
269 fprintf_unfiltered (file, "<NULL frame>");
270 return;
271 }
272 fprintf_unfiltered (file, "{");
273 fprintf_unfiltered (file, "level=%d", fi->level);
274 fprintf_unfiltered (file, ",");
275 fprintf_unfiltered (file, "type=");
c1bf6f65
AC
276 if (fi->unwind != NULL)
277 fprint_frame_type (file, fi->unwind->type);
278 else
279 fprintf_unfiltered (file, "<unknown>");
7f78e237
AC
280 fprintf_unfiltered (file, ",");
281 fprintf_unfiltered (file, "unwind=");
282 if (fi->unwind != NULL)
283 gdb_print_host_address (fi->unwind, file);
284 else
285 fprintf_unfiltered (file, "<unknown>");
286 fprintf_unfiltered (file, ",");
287 fprintf_unfiltered (file, "pc=");
288 if (fi->next != NULL && fi->next->prev_pc.p)
5af949e3 289 fprintf_unfiltered (file, "%s", hex_string (fi->next->prev_pc.value));
7f78e237
AC
290 else
291 fprintf_unfiltered (file, "<unknown>");
292 fprintf_unfiltered (file, ",");
293 fprintf_unfiltered (file, "id=");
294 if (fi->this_id.p)
295 fprint_frame_id (file, fi->this_id.value);
296 else
297 fprintf_unfiltered (file, "<unknown>");
298 fprintf_unfiltered (file, ",");
299 fprintf_unfiltered (file, "func=");
300 if (fi->next != NULL && fi->next->prev_func.p)
5af949e3 301 fprintf_unfiltered (file, "%s", hex_string (fi->next->prev_func.addr));
7f78e237
AC
302 else
303 fprintf_unfiltered (file, "<unknown>");
304 fprintf_unfiltered (file, "}");
305}
306
edb3359d
DJ
307/* Given FRAME, return the enclosing normal frame for inlined
308 function frames. Otherwise return the original frame. */
309
310static struct frame_info *
311skip_inlined_frames (struct frame_info *frame)
312{
313 while (get_frame_type (frame) == INLINE_FRAME)
314 frame = get_prev_frame (frame);
315
316 return frame;
317}
318
7a424e99 319/* Return a frame uniq ID that can be used to, later, re-find the
101dcfbe
AC
320 frame. */
321
7a424e99
AC
322struct frame_id
323get_frame_id (struct frame_info *fi)
101dcfbe
AC
324{
325 if (fi == NULL)
b83e9eb7
JB
326 return null_frame_id;
327
d0a55772 328 if (!fi->this_id.p)
101dcfbe 329 {
7f78e237
AC
330 if (frame_debug)
331 fprintf_unfiltered (gdb_stdlog, "{ get_frame_id (fi=%d) ",
332 fi->level);
c50901fd
AC
333 /* Find the unwinder. */
334 if (fi->unwind == NULL)
9f9a8002 335 frame_unwind_find_by_frame (fi, &fi->prologue_cache);
06c77151 336 /* Find THIS frame's ID. */
005ca36a
JB
337 /* Default to outermost if no ID is found. */
338 fi->this_id.value = outer_frame_id;
669fac23 339 fi->unwind->this_id (fi, &fi->prologue_cache, &fi->this_id.value);
005ca36a 340 gdb_assert (frame_id_p (fi->this_id.value));
d0a55772 341 fi->this_id.p = 1;
7f78e237
AC
342 if (frame_debug)
343 {
344 fprintf_unfiltered (gdb_stdlog, "-> ");
345 fprint_frame_id (gdb_stdlog, fi->this_id.value);
346 fprintf_unfiltered (gdb_stdlog, " }\n");
347 }
101dcfbe 348 }
b83e9eb7
JB
349
350 frame_stash_add (fi);
351
18adea3f 352 return fi->this_id.value;
101dcfbe
AC
353}
354
edb3359d
DJ
355struct frame_id
356get_stack_frame_id (struct frame_info *next_frame)
357{
358 return get_frame_id (skip_inlined_frames (next_frame));
359}
360
5613d8d3 361struct frame_id
c7ce8faa 362frame_unwind_caller_id (struct frame_info *next_frame)
5613d8d3 363{
edb3359d
DJ
364 struct frame_info *this_frame;
365
366 /* Use get_prev_frame_1, and not get_prev_frame. The latter will truncate
5613d8d3
AC
367 the frame chain, leading to this function unintentionally
368 returning a null_frame_id (e.g., when a caller requests the frame
369 ID of "main()"s caller. */
edb3359d
DJ
370
371 next_frame = skip_inlined_frames (next_frame);
372 this_frame = get_prev_frame_1 (next_frame);
373 if (this_frame)
374 return get_frame_id (skip_inlined_frames (this_frame));
375 else
376 return null_frame_id;
5613d8d3
AC
377}
378
7a424e99 379const struct frame_id null_frame_id; /* All zeros. */
005ca36a 380const struct frame_id outer_frame_id = { 0, 0, 0, 0, 0, 1, 0 };
7a424e99
AC
381
382struct frame_id
48c66725
JJ
383frame_id_build_special (CORE_ADDR stack_addr, CORE_ADDR code_addr,
384 CORE_ADDR special_addr)
7a424e99 385{
12b0b6de 386 struct frame_id id = null_frame_id;
1c4d3f96 387
d0a55772 388 id.stack_addr = stack_addr;
12b0b6de 389 id.stack_addr_p = 1;
d0a55772 390 id.code_addr = code_addr;
12b0b6de 391 id.code_addr_p = 1;
48c66725 392 id.special_addr = special_addr;
12b0b6de 393 id.special_addr_p = 1;
7a424e99
AC
394 return id;
395}
396
48c66725
JJ
397struct frame_id
398frame_id_build (CORE_ADDR stack_addr, CORE_ADDR code_addr)
399{
12b0b6de 400 struct frame_id id = null_frame_id;
1c4d3f96 401
12b0b6de
UW
402 id.stack_addr = stack_addr;
403 id.stack_addr_p = 1;
404 id.code_addr = code_addr;
405 id.code_addr_p = 1;
406 return id;
407}
408
409struct frame_id
410frame_id_build_wild (CORE_ADDR stack_addr)
411{
412 struct frame_id id = null_frame_id;
1c4d3f96 413
12b0b6de
UW
414 id.stack_addr = stack_addr;
415 id.stack_addr_p = 1;
416 return id;
48c66725
JJ
417}
418
7a424e99
AC
419int
420frame_id_p (struct frame_id l)
421{
d0a55772 422 int p;
1c4d3f96 423
12b0b6de
UW
424 /* The frame is valid iff it has a valid stack address. */
425 p = l.stack_addr_p;
005ca36a
JB
426 /* outer_frame_id is also valid. */
427 if (!p && memcmp (&l, &outer_frame_id, sizeof (l)) == 0)
428 p = 1;
7f78e237
AC
429 if (frame_debug)
430 {
431 fprintf_unfiltered (gdb_stdlog, "{ frame_id_p (l=");
432 fprint_frame_id (gdb_stdlog, l);
433 fprintf_unfiltered (gdb_stdlog, ") -> %d }\n", p);
434 }
d0a55772 435 return p;
7a424e99
AC
436}
437
edb3359d
DJ
438int
439frame_id_inlined_p (struct frame_id l)
440{
441 if (!frame_id_p (l))
442 return 0;
443
444 return (l.inline_depth != 0);
445}
446
7a424e99
AC
447int
448frame_id_eq (struct frame_id l, struct frame_id r)
449{
d0a55772 450 int eq;
1c4d3f96 451
3e43a32a
MS
452 if (!l.stack_addr_p && l.special_addr_p
453 && !r.stack_addr_p && r.special_addr_p)
005ca36a
JB
454 /* The outermost frame marker is equal to itself. This is the
455 dodgy thing about outer_frame_id, since between execution steps
456 we might step into another function - from which we can't
457 unwind either. More thought required to get rid of
458 outer_frame_id. */
459 eq = 1;
460 else if (!l.stack_addr_p || !r.stack_addr_p)
12b0b6de
UW
461 /* Like a NaN, if either ID is invalid, the result is false.
462 Note that a frame ID is invalid iff it is the null frame ID. */
d0a55772
AC
463 eq = 0;
464 else if (l.stack_addr != r.stack_addr)
465 /* If .stack addresses are different, the frames are different. */
466 eq = 0;
edb3359d
DJ
467 else if (l.code_addr_p && r.code_addr_p && l.code_addr != r.code_addr)
468 /* An invalid code addr is a wild card. If .code addresses are
469 different, the frames are different. */
48c66725 470 eq = 0;
edb3359d
DJ
471 else if (l.special_addr_p && r.special_addr_p
472 && l.special_addr != r.special_addr)
473 /* An invalid special addr is a wild card (or unused). Otherwise
474 if special addresses are different, the frames are different. */
475 eq = 0;
476 else if (l.inline_depth != r.inline_depth)
477 /* If inline depths are different, the frames must be different. */
478 eq = 0;
479 else
48c66725 480 /* Frames are equal. */
d0a55772 481 eq = 1;
edb3359d 482
7f78e237
AC
483 if (frame_debug)
484 {
485 fprintf_unfiltered (gdb_stdlog, "{ frame_id_eq (l=");
486 fprint_frame_id (gdb_stdlog, l);
487 fprintf_unfiltered (gdb_stdlog, ",r=");
488 fprint_frame_id (gdb_stdlog, r);
489 fprintf_unfiltered (gdb_stdlog, ") -> %d }\n", eq);
490 }
d0a55772 491 return eq;
7a424e99
AC
492}
493
a45ae3ed
UW
494/* Safety net to check whether frame ID L should be inner to
495 frame ID R, according to their stack addresses.
496
497 This method cannot be used to compare arbitrary frames, as the
498 ranges of valid stack addresses may be discontiguous (e.g. due
499 to sigaltstack).
500
501 However, it can be used as safety net to discover invalid frame
0963b4bd 502 IDs in certain circumstances. Assuming that NEXT is the immediate
f06eadd9 503 inner frame to THIS and that NEXT and THIS are both NORMAL frames:
a45ae3ed 504
f06eadd9
JB
505 * The stack address of NEXT must be inner-than-or-equal to the stack
506 address of THIS.
a45ae3ed
UW
507
508 Therefore, if frame_id_inner (THIS, NEXT) holds, some unwind
509 error has occurred.
510
f06eadd9
JB
511 * If NEXT and THIS have different stack addresses, no other frame
512 in the frame chain may have a stack address in between.
a45ae3ed
UW
513
514 Therefore, if frame_id_inner (TEST, THIS) holds, but
515 frame_id_inner (TEST, NEXT) does not hold, TEST cannot refer
f06eadd9
JB
516 to a valid frame in the frame chain.
517
518 The sanity checks above cannot be performed when a SIGTRAMP frame
519 is involved, because signal handlers might be executed on a different
520 stack than the stack used by the routine that caused the signal
521 to be raised. This can happen for instance when a thread exceeds
0963b4bd 522 its maximum stack size. In this case, certain compilers implement
f06eadd9
JB
523 a stack overflow strategy that cause the handler to be run on a
524 different stack. */
a45ae3ed
UW
525
526static int
09a7aba8 527frame_id_inner (struct gdbarch *gdbarch, struct frame_id l, struct frame_id r)
7a424e99 528{
d0a55772 529 int inner;
1c4d3f96 530
12b0b6de 531 if (!l.stack_addr_p || !r.stack_addr_p)
d0a55772
AC
532 /* Like NaN, any operation involving an invalid ID always fails. */
533 inner = 0;
edb3359d
DJ
534 else if (l.inline_depth > r.inline_depth
535 && l.stack_addr == r.stack_addr
536 && l.code_addr_p == r.code_addr_p
537 && l.special_addr_p == r.special_addr_p
538 && l.special_addr == r.special_addr)
539 {
540 /* Same function, different inlined functions. */
541 struct block *lb, *rb;
542
543 gdb_assert (l.code_addr_p && r.code_addr_p);
544
545 lb = block_for_pc (l.code_addr);
546 rb = block_for_pc (r.code_addr);
547
548 if (lb == NULL || rb == NULL)
549 /* Something's gone wrong. */
550 inner = 0;
551 else
552 /* This will return true if LB and RB are the same block, or
553 if the block with the smaller depth lexically encloses the
554 block with the greater depth. */
555 inner = contained_in (lb, rb);
556 }
d0a55772
AC
557 else
558 /* Only return non-zero when strictly inner than. Note that, per
559 comment in "frame.h", there is some fuzz here. Frameless
560 functions are not strictly inner than (same .stack but
48c66725 561 different .code and/or .special address). */
09a7aba8 562 inner = gdbarch_inner_than (gdbarch, l.stack_addr, r.stack_addr);
7f78e237
AC
563 if (frame_debug)
564 {
565 fprintf_unfiltered (gdb_stdlog, "{ frame_id_inner (l=");
566 fprint_frame_id (gdb_stdlog, l);
567 fprintf_unfiltered (gdb_stdlog, ",r=");
568 fprint_frame_id (gdb_stdlog, r);
569 fprintf_unfiltered (gdb_stdlog, ") -> %d }\n", inner);
570 }
d0a55772 571 return inner;
7a424e99
AC
572}
573
101dcfbe
AC
574struct frame_info *
575frame_find_by_id (struct frame_id id)
576{
a45ae3ed 577 struct frame_info *frame, *prev_frame;
101dcfbe
AC
578
579 /* ZERO denotes the null frame, let the caller decide what to do
580 about it. Should it instead return get_current_frame()? */
7a424e99 581 if (!frame_id_p (id))
101dcfbe
AC
582 return NULL;
583
b83e9eb7
JB
584 /* Try using the frame stash first. Finding it there removes the need
585 to perform the search by looping over all frames, which can be very
586 CPU-intensive if the number of frames is very high (the loop is O(n)
587 and get_prev_frame performs a series of checks that are relatively
588 expensive). This optimization is particularly useful when this function
589 is called from another function (such as value_fetch_lazy, case
590 VALUE_LVAL (val) == lval_register) which already loops over all frames,
591 making the overall behavior O(n^2). */
592 frame = frame_stash_find (id);
593 if (frame)
594 return frame;
595
a45ae3ed 596 for (frame = get_current_frame (); ; frame = prev_frame)
101dcfbe 597 {
7a424e99 598 struct frame_id this = get_frame_id (frame);
bb9bcb69 599
7a424e99
AC
600 if (frame_id_eq (id, this))
601 /* An exact match. */
602 return frame;
a45ae3ed
UW
603
604 prev_frame = get_prev_frame (frame);
605 if (!prev_frame)
606 return NULL;
607
608 /* As a safety net to avoid unnecessary backtracing while trying
609 to find an invalid ID, we check for a common situation where
610 we can detect from comparing stack addresses that no other
611 frame in the current frame chain can have this ID. See the
612 comment at frame_id_inner for details. */
613 if (get_frame_type (frame) == NORMAL_FRAME
614 && !frame_id_inner (get_frame_arch (frame), id, this)
615 && frame_id_inner (get_frame_arch (prev_frame), id,
616 get_frame_id (prev_frame)))
101dcfbe 617 return NULL;
101dcfbe
AC
618 }
619 return NULL;
620}
621
edb3359d
DJ
622static CORE_ADDR
623frame_unwind_pc (struct frame_info *this_frame)
f18c5a73 624{
d1340264 625 if (!this_frame->prev_pc.p)
f18c5a73 626 {
12cc2063 627 CORE_ADDR pc;
bb9bcb69 628
36f15f55 629 if (gdbarch_unwind_pc_p (frame_unwind_arch (this_frame)))
12cc2063
AC
630 {
631 /* The right way. The `pure' way. The one true way. This
632 method depends solely on the register-unwind code to
633 determine the value of registers in THIS frame, and hence
634 the value of this frame's PC (resume address). A typical
635 implementation is no more than:
636
637 frame_unwind_register (this_frame, ISA_PC_REGNUM, buf);
af1342ab 638 return extract_unsigned_integer (buf, size of ISA_PC_REGNUM);
12cc2063
AC
639
640 Note: this method is very heavily dependent on a correct
641 register-unwind implementation, it pays to fix that
642 method first; this method is frame type agnostic, since
643 it only deals with register values, it works with any
644 frame. This is all in stark contrast to the old
645 FRAME_SAVED_PC which would try to directly handle all the
646 different ways that a PC could be unwound. */
36f15f55 647 pc = gdbarch_unwind_pc (frame_unwind_arch (this_frame), this_frame);
12cc2063 648 }
12cc2063 649 else
e2e0b3e5 650 internal_error (__FILE__, __LINE__, _("No unwind_pc method"));
d1340264
AC
651 this_frame->prev_pc.value = pc;
652 this_frame->prev_pc.p = 1;
7f78e237
AC
653 if (frame_debug)
654 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
655 "{ frame_unwind_caller_pc "
656 "(this_frame=%d) -> %s }\n",
7f78e237 657 this_frame->level,
5af949e3 658 hex_string (this_frame->prev_pc.value));
f18c5a73 659 }
d1340264 660 return this_frame->prev_pc.value;
f18c5a73
AC
661}
662
edb3359d
DJ
663CORE_ADDR
664frame_unwind_caller_pc (struct frame_info *this_frame)
665{
666 return frame_unwind_pc (skip_inlined_frames (this_frame));
667}
668
be41e9f4 669CORE_ADDR
ef02daa9 670get_frame_func (struct frame_info *this_frame)
be41e9f4 671{
ef02daa9
DJ
672 struct frame_info *next_frame = this_frame->next;
673
674 if (!next_frame->prev_func.p)
be41e9f4 675 {
57bfe177
AC
676 /* Make certain that this, and not the adjacent, function is
677 found. */
ef02daa9
DJ
678 CORE_ADDR addr_in_block = get_frame_address_in_block (this_frame);
679 next_frame->prev_func.p = 1;
680 next_frame->prev_func.addr = get_pc_function_start (addr_in_block);
7f78e237
AC
681 if (frame_debug)
682 fprintf_unfiltered (gdb_stdlog,
5af949e3 683 "{ get_frame_func (this_frame=%d) -> %s }\n",
ef02daa9 684 this_frame->level,
5af949e3 685 hex_string (next_frame->prev_func.addr));
be41e9f4 686 }
ef02daa9 687 return next_frame->prev_func.addr;
be41e9f4
AC
688}
689
05d1431c 690static enum register_status
2d522557 691do_frame_register_read (void *src, int regnum, gdb_byte *buf)
7a25a7c1 692{
05d1431c
PA
693 if (!frame_register_read (src, regnum, buf))
694 return REG_UNAVAILABLE;
695 else
696 return REG_VALID;
7a25a7c1
AC
697}
698
a81dcb05
AC
699struct regcache *
700frame_save_as_regcache (struct frame_info *this_frame)
701{
d37346f0
DJ
702 struct address_space *aspace = get_frame_address_space (this_frame);
703 struct regcache *regcache = regcache_xmalloc (get_frame_arch (this_frame),
704 aspace);
a81dcb05 705 struct cleanup *cleanups = make_cleanup_regcache_xfree (regcache);
1c4d3f96 706
a81dcb05
AC
707 regcache_save (regcache, do_frame_register_read, this_frame);
708 discard_cleanups (cleanups);
709 return regcache;
710}
711
dbe9fe58 712void
7a25a7c1
AC
713frame_pop (struct frame_info *this_frame)
714{
348473d5
NF
715 struct frame_info *prev_frame;
716 struct regcache *scratch;
717 struct cleanup *cleanups;
718
b89667eb
DE
719 if (get_frame_type (this_frame) == DUMMY_FRAME)
720 {
721 /* Popping a dummy frame involves restoring more than just registers.
722 dummy_frame_pop does all the work. */
723 dummy_frame_pop (get_frame_id (this_frame));
724 return;
725 }
726
348473d5
NF
727 /* Ensure that we have a frame to pop to. */
728 prev_frame = get_prev_frame_1 (this_frame);
729
730 if (!prev_frame)
731 error (_("Cannot pop the initial frame."));
732
c1bf6f65
AC
733 /* Make a copy of all the register values unwound from this frame.
734 Save them in a scratch buffer so that there isn't a race between
594f7785 735 trying to extract the old values from the current regcache while
c1bf6f65 736 at the same time writing new values into that same cache. */
348473d5
NF
737 scratch = frame_save_as_regcache (prev_frame);
738 cleanups = make_cleanup_regcache_xfree (scratch);
c1bf6f65
AC
739
740 /* FIXME: cagney/2003-03-16: It should be possible to tell the
741 target's register cache that it is about to be hit with a burst
742 register transfer and that the sequence of register writes should
743 be batched. The pair target_prepare_to_store() and
744 target_store_registers() kind of suggest this functionality.
745 Unfortunately, they don't implement it. Their lack of a formal
746 definition can lead to targets writing back bogus values
747 (arguably a bug in the target code mind). */
748 /* Now copy those saved registers into the current regcache.
749 Here, regcache_cpy() calls regcache_restore(). */
594f7785 750 regcache_cpy (get_current_regcache (), scratch);
c1bf6f65 751 do_cleanups (cleanups);
7a25a7c1 752
7a25a7c1
AC
753 /* We've made right mess of GDB's local state, just discard
754 everything. */
35f196d9 755 reinit_frame_cache ();
dbe9fe58 756}
c689142b 757
4f460812
AC
758void
759frame_register_unwind (struct frame_info *frame, int regnum,
0fdb4f18
PA
760 int *optimizedp, int *unavailablep,
761 enum lval_type *lvalp, CORE_ADDR *addrp,
762 int *realnump, gdb_byte *bufferp)
4f460812 763{
669fac23 764 struct value *value;
7f78e237 765
4f460812
AC
766 /* Require all but BUFFERP to be valid. A NULL BUFFERP indicates
767 that the value proper does not need to be fetched. */
768 gdb_assert (optimizedp != NULL);
769 gdb_assert (lvalp != NULL);
770 gdb_assert (addrp != NULL);
771 gdb_assert (realnump != NULL);
772 /* gdb_assert (bufferp != NULL); */
773
669fac23 774 value = frame_unwind_register_value (frame, regnum);
4f460812 775
669fac23 776 gdb_assert (value != NULL);
c50901fd 777
669fac23 778 *optimizedp = value_optimized_out (value);
0fdb4f18 779 *unavailablep = !value_entirely_available (value);
669fac23 780 *lvalp = VALUE_LVAL (value);
42ae5230 781 *addrp = value_address (value);
669fac23 782 *realnump = VALUE_REGNUM (value);
6dc42492 783
0fdb4f18
PA
784 if (bufferp)
785 {
786 if (!*optimizedp && !*unavailablep)
787 memcpy (bufferp, value_contents_all (value),
788 TYPE_LENGTH (value_type (value)));
789 else
790 memset (bufferp, 0, TYPE_LENGTH (value_type (value)));
791 }
669fac23
DJ
792
793 /* Dispose of the new value. This prevents watchpoints from
794 trying to watch the saved frame pointer. */
795 release_value (value);
796 value_free (value);
4f460812
AC
797}
798
a216a322
AC
799void
800frame_register (struct frame_info *frame, int regnum,
0fdb4f18 801 int *optimizedp, int *unavailablep, enum lval_type *lvalp,
10c42a71 802 CORE_ADDR *addrp, int *realnump, gdb_byte *bufferp)
a216a322
AC
803{
804 /* Require all but BUFFERP to be valid. A NULL BUFFERP indicates
805 that the value proper does not need to be fetched. */
806 gdb_assert (optimizedp != NULL);
807 gdb_assert (lvalp != NULL);
808 gdb_assert (addrp != NULL);
809 gdb_assert (realnump != NULL);
810 /* gdb_assert (bufferp != NULL); */
811
a94dd1fd
AC
812 /* Obtain the register value by unwinding the register from the next
813 (more inner frame). */
814 gdb_assert (frame != NULL && frame->next != NULL);
0fdb4f18
PA
815 frame_register_unwind (frame->next, regnum, optimizedp, unavailablep,
816 lvalp, addrp, realnump, bufferp);
a216a322
AC
817}
818
135c175f 819void
10c42a71 820frame_unwind_register (struct frame_info *frame, int regnum, gdb_byte *buf)
135c175f
AC
821{
822 int optimized;
0fdb4f18 823 int unavailable;
135c175f
AC
824 CORE_ADDR addr;
825 int realnum;
826 enum lval_type lval;
1c4d3f96 827
0fdb4f18
PA
828 frame_register_unwind (frame, regnum, &optimized, &unavailable,
829 &lval, &addr, &realnum, buf);
5b181d62
AC
830}
831
f0e7d0e8
AC
832void
833get_frame_register (struct frame_info *frame,
10c42a71 834 int regnum, gdb_byte *buf)
f0e7d0e8
AC
835{
836 frame_unwind_register (frame->next, regnum, buf);
837}
838
669fac23
DJ
839struct value *
840frame_unwind_register_value (struct frame_info *frame, int regnum)
841{
36f15f55 842 struct gdbarch *gdbarch;
669fac23
DJ
843 struct value *value;
844
845 gdb_assert (frame != NULL);
36f15f55 846 gdbarch = frame_unwind_arch (frame);
669fac23
DJ
847
848 if (frame_debug)
849 {
3e43a32a
MS
850 fprintf_unfiltered (gdb_stdlog,
851 "{ frame_unwind_register_value "
852 "(frame=%d,regnum=%d(%s),...) ",
669fac23 853 frame->level, regnum,
36f15f55 854 user_reg_map_regnum_to_name (gdbarch, regnum));
669fac23
DJ
855 }
856
857 /* Find the unwinder. */
858 if (frame->unwind == NULL)
9f9a8002 859 frame_unwind_find_by_frame (frame, &frame->prologue_cache);
669fac23
DJ
860
861 /* Ask this frame to unwind its register. */
862 value = frame->unwind->prev_register (frame, &frame->prologue_cache, regnum);
863
864 if (frame_debug)
865 {
866 fprintf_unfiltered (gdb_stdlog, "->");
867 if (value_optimized_out (value))
868 fprintf_unfiltered (gdb_stdlog, " optimized out");
869 else
870 {
871 if (VALUE_LVAL (value) == lval_register)
872 fprintf_unfiltered (gdb_stdlog, " register=%d",
873 VALUE_REGNUM (value));
874 else if (VALUE_LVAL (value) == lval_memory)
5af949e3
UW
875 fprintf_unfiltered (gdb_stdlog, " address=%s",
876 paddress (gdbarch,
877 value_address (value)));
669fac23
DJ
878 else
879 fprintf_unfiltered (gdb_stdlog, " computed");
880
881 if (value_lazy (value))
882 fprintf_unfiltered (gdb_stdlog, " lazy");
883 else
884 {
885 int i;
886 const gdb_byte *buf = value_contents (value);
887
888 fprintf_unfiltered (gdb_stdlog, " bytes=");
889 fprintf_unfiltered (gdb_stdlog, "[");
36f15f55 890 for (i = 0; i < register_size (gdbarch, regnum); i++)
669fac23
DJ
891 fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
892 fprintf_unfiltered (gdb_stdlog, "]");
893 }
894 }
895
896 fprintf_unfiltered (gdb_stdlog, " }\n");
897 }
898
899 return value;
900}
901
902struct value *
903get_frame_register_value (struct frame_info *frame, int regnum)
904{
905 return frame_unwind_register_value (frame->next, regnum);
906}
907
f0e7d0e8
AC
908LONGEST
909frame_unwind_register_signed (struct frame_info *frame, int regnum)
910{
e17a4113
UW
911 struct gdbarch *gdbarch = frame_unwind_arch (frame);
912 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
913 int size = register_size (gdbarch, regnum);
10c42a71 914 gdb_byte buf[MAX_REGISTER_SIZE];
1c4d3f96 915
f0e7d0e8 916 frame_unwind_register (frame, regnum, buf);
e17a4113 917 return extract_signed_integer (buf, size, byte_order);
f0e7d0e8
AC
918}
919
920LONGEST
921get_frame_register_signed (struct frame_info *frame, int regnum)
922{
923 return frame_unwind_register_signed (frame->next, regnum);
924}
925
926ULONGEST
927frame_unwind_register_unsigned (struct frame_info *frame, int regnum)
928{
e17a4113
UW
929 struct gdbarch *gdbarch = frame_unwind_arch (frame);
930 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
931 int size = register_size (gdbarch, regnum);
10c42a71 932 gdb_byte buf[MAX_REGISTER_SIZE];
1c4d3f96 933
f0e7d0e8 934 frame_unwind_register (frame, regnum, buf);
e17a4113 935 return extract_unsigned_integer (buf, size, byte_order);
f0e7d0e8
AC
936}
937
938ULONGEST
939get_frame_register_unsigned (struct frame_info *frame, int regnum)
940{
941 return frame_unwind_register_unsigned (frame->next, regnum);
942}
943
ff2e87ac 944void
10c42a71
AC
945put_frame_register (struct frame_info *frame, int regnum,
946 const gdb_byte *buf)
ff2e87ac
AC
947{
948 struct gdbarch *gdbarch = get_frame_arch (frame);
949 int realnum;
950 int optim;
0fdb4f18 951 int unavail;
ff2e87ac
AC
952 enum lval_type lval;
953 CORE_ADDR addr;
1c4d3f96 954
0fdb4f18
PA
955 frame_register (frame, regnum, &optim, &unavail,
956 &lval, &addr, &realnum, NULL);
ff2e87ac 957 if (optim)
8a3fe4f8 958 error (_("Attempt to assign to a value that was optimized out."));
ff2e87ac
AC
959 switch (lval)
960 {
961 case lval_memory:
962 {
963 /* FIXME: write_memory doesn't yet take constant buffers.
964 Arrrg! */
10c42a71 965 gdb_byte tmp[MAX_REGISTER_SIZE];
bb9bcb69 966
ff2e87ac
AC
967 memcpy (tmp, buf, register_size (gdbarch, regnum));
968 write_memory (addr, tmp, register_size (gdbarch, regnum));
969 break;
970 }
971 case lval_register:
594f7785 972 regcache_cooked_write (get_current_regcache (), realnum, buf);
ff2e87ac
AC
973 break;
974 default:
8a3fe4f8 975 error (_("Attempt to assign to an unmodifiable value."));
ff2e87ac
AC
976 }
977}
978
cda5a58a 979/* frame_register_read ()
d65fe839 980
cda5a58a 981 Find and return the value of REGNUM for the specified stack frame.
5bc602c7 982 The number of bytes copied is REGISTER_SIZE (REGNUM).
d65fe839 983
cda5a58a 984 Returns 0 if the register value could not be found. */
d65fe839 985
cda5a58a 986int
10c42a71
AC
987frame_register_read (struct frame_info *frame, int regnum,
988 gdb_byte *myaddr)
d65fe839 989{
a216a322 990 int optimized;
0fdb4f18 991 int unavailable;
a216a322
AC
992 enum lval_type lval;
993 CORE_ADDR addr;
994 int realnum;
1c4d3f96 995
0fdb4f18
PA
996 frame_register (frame, regnum, &optimized, &unavailable,
997 &lval, &addr, &realnum, myaddr);
d65fe839 998
0fdb4f18 999 return !optimized && !unavailable;
d65fe839 1000}
e36180d7 1001
00fa51f6
UW
1002int
1003get_frame_register_bytes (struct frame_info *frame, int regnum,
1004 CORE_ADDR offset, int len, gdb_byte *myaddr)
1005{
1006 struct gdbarch *gdbarch = get_frame_arch (frame);
3f27f2a4
AS
1007 int i;
1008 int maxsize;
68e007ca 1009 int numregs;
00fa51f6
UW
1010
1011 /* Skip registers wholly inside of OFFSET. */
1012 while (offset >= register_size (gdbarch, regnum))
1013 {
1014 offset -= register_size (gdbarch, regnum);
1015 regnum++;
1016 }
1017
26fae1d6
AS
1018 /* Ensure that we will not read beyond the end of the register file.
1019 This can only ever happen if the debug information is bad. */
3f27f2a4 1020 maxsize = -offset;
68e007ca
AS
1021 numregs = gdbarch_num_regs (gdbarch) + gdbarch_num_pseudo_regs (gdbarch);
1022 for (i = regnum; i < numregs; i++)
3f27f2a4
AS
1023 {
1024 int thissize = register_size (gdbarch, i);
bb9bcb69 1025
3f27f2a4 1026 if (thissize == 0)
26fae1d6 1027 break; /* This register is not available on this architecture. */
3f27f2a4
AS
1028 maxsize += thissize;
1029 }
1030 if (len > maxsize)
1031 {
1032 warning (_("Bad debug information detected: "
1033 "Attempt to read %d bytes from registers."), len);
1034 return 0;
1035 }
1036
00fa51f6
UW
1037 /* Copy the data. */
1038 while (len > 0)
1039 {
1040 int curr_len = register_size (gdbarch, regnum) - offset;
bb9bcb69 1041
00fa51f6
UW
1042 if (curr_len > len)
1043 curr_len = len;
1044
1045 if (curr_len == register_size (gdbarch, regnum))
1046 {
1047 if (!frame_register_read (frame, regnum, myaddr))
1048 return 0;
1049 }
1050 else
1051 {
1052 gdb_byte buf[MAX_REGISTER_SIZE];
bb9bcb69 1053
00fa51f6
UW
1054 if (!frame_register_read (frame, regnum, buf))
1055 return 0;
1056 memcpy (myaddr, buf + offset, curr_len);
1057 }
1058
765f065a 1059 myaddr += curr_len;
00fa51f6
UW
1060 len -= curr_len;
1061 offset = 0;
1062 regnum++;
1063 }
1064
1065 return 1;
1066}
1067
1068void
1069put_frame_register_bytes (struct frame_info *frame, int regnum,
1070 CORE_ADDR offset, int len, const gdb_byte *myaddr)
1071{
1072 struct gdbarch *gdbarch = get_frame_arch (frame);
1073
1074 /* Skip registers wholly inside of OFFSET. */
1075 while (offset >= register_size (gdbarch, regnum))
1076 {
1077 offset -= register_size (gdbarch, regnum);
1078 regnum++;
1079 }
1080
1081 /* Copy the data. */
1082 while (len > 0)
1083 {
1084 int curr_len = register_size (gdbarch, regnum) - offset;
bb9bcb69 1085
00fa51f6
UW
1086 if (curr_len > len)
1087 curr_len = len;
1088
1089 if (curr_len == register_size (gdbarch, regnum))
1090 {
1091 put_frame_register (frame, regnum, myaddr);
1092 }
1093 else
1094 {
1095 gdb_byte buf[MAX_REGISTER_SIZE];
bb9bcb69 1096
00fa51f6
UW
1097 frame_register_read (frame, regnum, buf);
1098 memcpy (buf + offset, myaddr, curr_len);
1099 put_frame_register (frame, regnum, buf);
1100 }
1101
765f065a 1102 myaddr += curr_len;
00fa51f6
UW
1103 len -= curr_len;
1104 offset = 0;
1105 regnum++;
1106 }
1107}
e36180d7 1108
a94dd1fd
AC
1109/* Create a sentinel frame. */
1110
b9362cc7 1111static struct frame_info *
6c95b8df 1112create_sentinel_frame (struct program_space *pspace, struct regcache *regcache)
a94dd1fd
AC
1113{
1114 struct frame_info *frame = FRAME_OBSTACK_ZALLOC (struct frame_info);
1c4d3f96 1115
a94dd1fd 1116 frame->level = -1;
6c95b8df
PA
1117 frame->pspace = pspace;
1118 frame->aspace = get_regcache_aspace (regcache);
a94dd1fd
AC
1119 /* Explicitly initialize the sentinel frame's cache. Provide it
1120 with the underlying regcache. In the future additional
1121 information, such as the frame's thread will be added. */
6dc42492 1122 frame->prologue_cache = sentinel_frame_cache (regcache);
a94dd1fd 1123 /* For the moment there is only one sentinel frame implementation. */
39d7b0e2 1124 frame->unwind = &sentinel_frame_unwind;
a94dd1fd
AC
1125 /* Link this frame back to itself. The frame is self referential
1126 (the unwound PC is the same as the pc), so make it so. */
1127 frame->next = frame;
50bbdbd9
AC
1128 /* Make the sentinel frame's ID valid, but invalid. That way all
1129 comparisons with it should fail. */
d0a55772
AC
1130 frame->this_id.p = 1;
1131 frame->this_id.value = null_frame_id;
7f78e237
AC
1132 if (frame_debug)
1133 {
1134 fprintf_unfiltered (gdb_stdlog, "{ create_sentinel_frame (...) -> ");
1135 fprint_frame (gdb_stdlog, frame);
1136 fprintf_unfiltered (gdb_stdlog, " }\n");
1137 }
a94dd1fd
AC
1138 return frame;
1139}
1140
0963b4bd 1141/* Info about the innermost stack frame (contents of FP register). */
4c1e7e9d
AC
1142
1143static struct frame_info *current_frame;
1144
1145/* Cache for frame addresses already read by gdb. Valid only while
1146 inferior is stopped. Control variables for the frame cache should
1147 be local to this module. */
1148
1149static struct obstack frame_cache_obstack;
1150
1151void *
479ab5a0 1152frame_obstack_zalloc (unsigned long size)
4c1e7e9d 1153{
479ab5a0 1154 void *data = obstack_alloc (&frame_cache_obstack, size);
1c4d3f96 1155
479ab5a0
AC
1156 memset (data, 0, size);
1157 return data;
4c1e7e9d
AC
1158}
1159
a94dd1fd
AC
1160/* Return the innermost (currently executing) stack frame. This is
1161 split into two functions. The function unwind_to_current_frame()
1162 is wrapped in catch exceptions so that, even when the unwind of the
1163 sentinel frame fails, the function still returns a stack frame. */
1164
1165static int
1166unwind_to_current_frame (struct ui_out *ui_out, void *args)
1167{
1168 struct frame_info *frame = get_prev_frame (args);
1c4d3f96 1169
bbde78fa 1170 /* A sentinel frame can fail to unwind, e.g., because its PC value
a94dd1fd
AC
1171 lands in somewhere like start. */
1172 if (frame == NULL)
1173 return 1;
1174 current_frame = frame;
1175 return 0;
1176}
4c1e7e9d
AC
1177
1178struct frame_info *
1179get_current_frame (void)
1180{
0a1e1ca1
AC
1181 /* First check, and report, the lack of registers. Having GDB
1182 report "No stack!" or "No memory" when the target doesn't even
1183 have registers is very confusing. Besides, "printcmd.exp"
1184 explicitly checks that ``print $pc'' with no registers prints "No
1185 registers". */
a94dd1fd 1186 if (!target_has_registers)
8a3fe4f8 1187 error (_("No registers."));
0a1e1ca1 1188 if (!target_has_stack)
8a3fe4f8 1189 error (_("No stack."));
a94dd1fd 1190 if (!target_has_memory)
8a3fe4f8 1191 error (_("No memory."));
2ce6d6bf
SS
1192 /* Traceframes are effectively a substitute for the live inferior. */
1193 if (get_traceframe_number () < 0)
1194 {
1195 if (ptid_equal (inferior_ptid, null_ptid))
1196 error (_("No selected thread."));
1197 if (is_exited (inferior_ptid))
1198 error (_("Invalid selected thread."));
1199 if (is_executing (inferior_ptid))
1200 error (_("Target is executing."));
1201 }
8ea051c5 1202
4c1e7e9d
AC
1203 if (current_frame == NULL)
1204 {
a94dd1fd 1205 struct frame_info *sentinel_frame =
6c95b8df 1206 create_sentinel_frame (current_program_space, get_current_regcache ());
a94dd1fd 1207 if (catch_exceptions (uiout, unwind_to_current_frame, sentinel_frame,
1c3c7ee7 1208 RETURN_MASK_ERROR) != 0)
a94dd1fd
AC
1209 {
1210 /* Oops! Fake a current frame? Is this useful? It has a PC
1211 of zero, for instance. */
1212 current_frame = sentinel_frame;
1213 }
4c1e7e9d
AC
1214 }
1215 return current_frame;
1216}
1217
6e7f8b9c
AC
1218/* The "selected" stack frame is used by default for local and arg
1219 access. May be zero, for no selected frame. */
1220
206415a3 1221static struct frame_info *selected_frame;
6e7f8b9c 1222
9d49bdc2 1223int
8ea051c5
PA
1224has_stack_frames (void)
1225{
1226 if (!target_has_registers || !target_has_stack || !target_has_memory)
1227 return 0;
1228
d729566a
PA
1229 /* No current inferior, no frame. */
1230 if (ptid_equal (inferior_ptid, null_ptid))
1231 return 0;
1232
1233 /* Don't try to read from a dead thread. */
1234 if (is_exited (inferior_ptid))
1235 return 0;
1236
1237 /* ... or from a spinning thread. */
8ea051c5
PA
1238 if (is_executing (inferior_ptid))
1239 return 0;
1240
1241 return 1;
1242}
1243
bbde78fa 1244/* Return the selected frame. Always non-NULL (unless there isn't an
6e7f8b9c
AC
1245 inferior sufficient for creating a frame) in which case an error is
1246 thrown. */
1247
1248struct frame_info *
b04f3ab4 1249get_selected_frame (const char *message)
6e7f8b9c 1250{
206415a3 1251 if (selected_frame == NULL)
b04f3ab4 1252 {
8ea051c5 1253 if (message != NULL && !has_stack_frames ())
8a3fe4f8 1254 error (("%s"), message);
b04f3ab4
AC
1255 /* Hey! Don't trust this. It should really be re-finding the
1256 last selected frame of the currently selected thread. This,
1257 though, is better than nothing. */
1258 select_frame (get_current_frame ());
1259 }
6e7f8b9c 1260 /* There is always a frame. */
206415a3
DJ
1261 gdb_assert (selected_frame != NULL);
1262 return selected_frame;
6e7f8b9c
AC
1263}
1264
eb8c0621
TT
1265/* If there is a selected frame, return it. Otherwise, return NULL. */
1266
1267struct frame_info *
1268get_selected_frame_if_set (void)
1269{
1270 return selected_frame;
1271}
1272
bbde78fa 1273/* This is a variant of get_selected_frame() which can be called when
7dd88986 1274 the inferior does not have a frame; in that case it will return
bbde78fa 1275 NULL instead of calling error(). */
7dd88986
DJ
1276
1277struct frame_info *
1278deprecated_safe_get_selected_frame (void)
1279{
8ea051c5 1280 if (!has_stack_frames ())
7dd88986 1281 return NULL;
b04f3ab4 1282 return get_selected_frame (NULL);
7dd88986
DJ
1283}
1284
6e7f8b9c
AC
1285/* Select frame FI (or NULL - to invalidate the current frame). */
1286
1287void
1288select_frame (struct frame_info *fi)
1289{
52f0bd74 1290 struct symtab *s;
6e7f8b9c 1291
206415a3 1292 selected_frame = fi;
bbde78fa 1293 /* NOTE: cagney/2002-05-04: FI can be NULL. This occurs when the
6e7f8b9c 1294 frame is being invalidated. */
9a4105ab
AC
1295 if (deprecated_selected_frame_level_changed_hook)
1296 deprecated_selected_frame_level_changed_hook (frame_relative_level (fi));
6e7f8b9c
AC
1297
1298 /* FIXME: kseitz/2002-08-28: It would be nice to call
bbde78fa 1299 selected_frame_level_changed_event() right here, but due to limitations
6e7f8b9c 1300 in the current interfaces, we would end up flooding UIs with events
bbde78fa 1301 because select_frame() is used extensively internally.
6e7f8b9c
AC
1302
1303 Once we have frame-parameterized frame (and frame-related) commands,
1304 the event notification can be moved here, since this function will only
0963b4bd 1305 be called when the user's selected frame is being changed. */
6e7f8b9c
AC
1306
1307 /* Ensure that symbols for this frame are read in. Also, determine the
1308 source language of this frame, and switch to it if desired. */
1309 if (fi)
1310 {
7ae4c3a5 1311 /* We retrieve the frame's symtab by using the frame PC. However
bbde78fa 1312 we cannot use the frame PC as-is, because it usually points to
7ae4c3a5
JB
1313 the instruction following the "call", which is sometimes the
1314 first instruction of another function. So we rely on
1315 get_frame_address_in_block() which provides us with a PC which
1316 is guaranteed to be inside the frame's code block. */
1317 s = find_pc_symtab (get_frame_address_in_block (fi));
6e7f8b9c
AC
1318 if (s
1319 && s->language != current_language->la_language
1320 && s->language != language_unknown
1321 && language_mode == language_mode_auto)
1322 {
1323 set_language (s->language);
1324 }
1325 }
1326}
c689142b 1327
4c1e7e9d
AC
1328/* Create an arbitrary (i.e. address specified by user) or innermost frame.
1329 Always returns a non-NULL value. */
1330
1331struct frame_info *
1332create_new_frame (CORE_ADDR addr, CORE_ADDR pc)
1333{
1334 struct frame_info *fi;
4c1e7e9d 1335
7f78e237
AC
1336 if (frame_debug)
1337 {
1338 fprintf_unfiltered (gdb_stdlog,
5af949e3
UW
1339 "{ create_new_frame (addr=%s, pc=%s) ",
1340 hex_string (addr), hex_string (pc));
7f78e237
AC
1341 }
1342
35d5d4ee 1343 fi = FRAME_OBSTACK_ZALLOC (struct frame_info);
4c1e7e9d 1344
3e43a32a
MS
1345 fi->next = create_sentinel_frame (current_program_space,
1346 get_current_regcache ());
7df05f2b 1347
1e275f79
PA
1348 /* Set/update this frame's cached PC value, found in the next frame.
1349 Do this before looking for this frame's unwinder. A sniffer is
1350 very likely to read this, and the corresponding unwinder is
1351 entitled to rely that the PC doesn't magically change. */
1352 fi->next->prev_pc.value = pc;
1353 fi->next->prev_pc.p = 1;
1354
6c95b8df
PA
1355 /* We currently assume that frame chain's can't cross spaces. */
1356 fi->pspace = fi->next->pspace;
1357 fi->aspace = fi->next->aspace;
1358
7df05f2b
AC
1359 /* Select/initialize both the unwind function and the frame's type
1360 based on the PC. */
9f9a8002 1361 frame_unwind_find_by_frame (fi, &fi->prologue_cache);
7df05f2b 1362
18adea3f 1363 fi->this_id.p = 1;
1e275f79 1364 fi->this_id.value = frame_id_build (addr, pc);
4c1e7e9d 1365
7f78e237
AC
1366 if (frame_debug)
1367 {
1368 fprintf_unfiltered (gdb_stdlog, "-> ");
1369 fprint_frame (gdb_stdlog, fi);
1370 fprintf_unfiltered (gdb_stdlog, " }\n");
1371 }
1372
4c1e7e9d
AC
1373 return fi;
1374}
1375
03febf99
AC
1376/* Return the frame that THIS_FRAME calls (NULL if THIS_FRAME is the
1377 innermost frame). Be careful to not fall off the bottom of the
1378 frame chain and onto the sentinel frame. */
4c1e7e9d
AC
1379
1380struct frame_info *
03febf99 1381get_next_frame (struct frame_info *this_frame)
4c1e7e9d 1382{
03febf99
AC
1383 if (this_frame->level > 0)
1384 return this_frame->next;
a94dd1fd
AC
1385 else
1386 return NULL;
4c1e7e9d
AC
1387}
1388
f4c5303c
OF
1389/* Observer for the target_changed event. */
1390
2c0b251b 1391static void
f4c5303c
OF
1392frame_observer_target_changed (struct target_ops *target)
1393{
35f196d9 1394 reinit_frame_cache ();
f4c5303c
OF
1395}
1396
4c1e7e9d
AC
1397/* Flush the entire frame cache. */
1398
1399void
35f196d9 1400reinit_frame_cache (void)
4c1e7e9d 1401{
272dfcfd
AS
1402 struct frame_info *fi;
1403
1404 /* Tear down all frame caches. */
1405 for (fi = current_frame; fi != NULL; fi = fi->prev)
1406 {
1407 if (fi->prologue_cache && fi->unwind->dealloc_cache)
1408 fi->unwind->dealloc_cache (fi, fi->prologue_cache);
1409 if (fi->base_cache && fi->base->unwind->dealloc_cache)
1410 fi->base->unwind->dealloc_cache (fi, fi->base_cache);
1411 }
1412
0963b4bd 1413 /* Since we can't really be sure what the first object allocated was. */
4c1e7e9d
AC
1414 obstack_free (&frame_cache_obstack, 0);
1415 obstack_init (&frame_cache_obstack);
1416
0d6ba1b1
DJ
1417 if (current_frame != NULL)
1418 annotate_frames_invalid ();
1419
4c1e7e9d
AC
1420 current_frame = NULL; /* Invalidate cache */
1421 select_frame (NULL);
b83e9eb7 1422 frame_stash_invalidate ();
7f78e237 1423 if (frame_debug)
35f196d9 1424 fprintf_unfiltered (gdb_stdlog, "{ reinit_frame_cache () }\n");
4c1e7e9d
AC
1425}
1426
e48af409
DJ
1427/* Find where a register is saved (in memory or another register).
1428 The result of frame_register_unwind is just where it is saved
5efde112 1429 relative to this particular frame. */
e48af409
DJ
1430
1431static void
1432frame_register_unwind_location (struct frame_info *this_frame, int regnum,
1433 int *optimizedp, enum lval_type *lvalp,
1434 CORE_ADDR *addrp, int *realnump)
1435{
1436 gdb_assert (this_frame == NULL || this_frame->level >= 0);
1437
1438 while (this_frame != NULL)
1439 {
0fdb4f18
PA
1440 int unavailable;
1441
1442 frame_register_unwind (this_frame, regnum, optimizedp, &unavailable,
1443 lvalp, addrp, realnump, NULL);
e48af409
DJ
1444
1445 if (*optimizedp)
1446 break;
1447
1448 if (*lvalp != lval_register)
1449 break;
1450
1451 regnum = *realnump;
1452 this_frame = get_next_frame (this_frame);
1453 }
1454}
1455
5613d8d3
AC
1456/* Return a "struct frame_info" corresponding to the frame that called
1457 THIS_FRAME. Returns NULL if there is no such frame.
5bf00f29 1458
5613d8d3
AC
1459 Unlike get_prev_frame, this function always tries to unwind the
1460 frame. */
eb4f72c5 1461
5613d8d3
AC
1462static struct frame_info *
1463get_prev_frame_1 (struct frame_info *this_frame)
eb4f72c5 1464{
756e95f1 1465 struct frame_id this_id;
b1bd0044 1466 struct gdbarch *gdbarch;
eb4f72c5 1467
5613d8d3 1468 gdb_assert (this_frame != NULL);
b1bd0044 1469 gdbarch = get_frame_arch (this_frame);
5613d8d3 1470
7f78e237
AC
1471 if (frame_debug)
1472 {
5613d8d3 1473 fprintf_unfiltered (gdb_stdlog, "{ get_prev_frame_1 (this_frame=");
7f78e237
AC
1474 if (this_frame != NULL)
1475 fprintf_unfiltered (gdb_stdlog, "%d", this_frame->level);
1476 else
1477 fprintf_unfiltered (gdb_stdlog, "<NULL>");
1478 fprintf_unfiltered (gdb_stdlog, ") ");
1479 }
1480
5613d8d3
AC
1481 /* Only try to do the unwind once. */
1482 if (this_frame->prev_p)
1483 {
1484 if (frame_debug)
1485 {
1486 fprintf_unfiltered (gdb_stdlog, "-> ");
1487 fprint_frame (gdb_stdlog, this_frame->prev);
1488 fprintf_unfiltered (gdb_stdlog, " // cached \n");
1489 }
1490 return this_frame->prev;
1491 }
8fa75a5d 1492
0d254d6f
DJ
1493 /* If the frame unwinder hasn't been selected yet, we must do so
1494 before setting prev_p; otherwise the check for misbehaved
1495 sniffers will think that this frame's sniffer tried to unwind
1496 further (see frame_cleanup_after_sniffer). */
1497 if (this_frame->unwind == NULL)
9f9a8002 1498 frame_unwind_find_by_frame (this_frame, &this_frame->prologue_cache);
8fa75a5d 1499
5613d8d3 1500 this_frame->prev_p = 1;
55feb689 1501 this_frame->stop_reason = UNWIND_NO_REASON;
5613d8d3 1502
edb3359d
DJ
1503 /* If we are unwinding from an inline frame, all of the below tests
1504 were already performed when we unwound from the next non-inline
1505 frame. We must skip them, since we can not get THIS_FRAME's ID
1506 until we have unwound all the way down to the previous non-inline
1507 frame. */
1508 if (get_frame_type (this_frame) == INLINE_FRAME)
1509 return get_prev_frame_raw (this_frame);
1510
5613d8d3
AC
1511 /* Check that this frame's ID was valid. If it wasn't, don't try to
1512 unwind to the prev frame. Be careful to not apply this test to
1513 the sentinel frame. */
0d254d6f 1514 this_id = get_frame_id (this_frame);
005ca36a 1515 if (this_frame->level >= 0 && frame_id_eq (this_id, outer_frame_id))
5613d8d3
AC
1516 {
1517 if (frame_debug)
1518 {
1519 fprintf_unfiltered (gdb_stdlog, "-> ");
1520 fprint_frame (gdb_stdlog, NULL);
1521 fprintf_unfiltered (gdb_stdlog, " // this ID is NULL }\n");
1522 }
55feb689 1523 this_frame->stop_reason = UNWIND_NULL_ID;
5613d8d3
AC
1524 return NULL;
1525 }
1526
1527 /* Check that this frame's ID isn't inner to (younger, below, next)
1528 the next frame. This happens when a frame unwind goes backwards.
f06eadd9
JB
1529 This check is valid only if this frame and the next frame are NORMAL.
1530 See the comment at frame_id_inner for details. */
1531 if (get_frame_type (this_frame) == NORMAL_FRAME
1532 && this_frame->next->unwind->type == NORMAL_FRAME
a45ae3ed 1533 && frame_id_inner (get_frame_arch (this_frame->next), this_id,
09a7aba8 1534 get_frame_id (this_frame->next)))
55feb689 1535 {
ebedcab5
JK
1536 CORE_ADDR this_pc_in_block;
1537 struct minimal_symbol *morestack_msym;
1538 const char *morestack_name = NULL;
1539
1540 /* gcc -fsplit-stack __morestack can continue the stack anywhere. */
1541 this_pc_in_block = get_frame_address_in_block (this_frame);
1542 morestack_msym = lookup_minimal_symbol_by_pc (this_pc_in_block);
1543 if (morestack_msym)
1544 morestack_name = SYMBOL_LINKAGE_NAME (morestack_msym);
1545 if (!morestack_name || strcmp (morestack_name, "__morestack") != 0)
55feb689 1546 {
ebedcab5
JK
1547 if (frame_debug)
1548 {
1549 fprintf_unfiltered (gdb_stdlog, "-> ");
1550 fprint_frame (gdb_stdlog, NULL);
3e43a32a
MS
1551 fprintf_unfiltered (gdb_stdlog,
1552 " // this frame ID is inner }\n");
ebedcab5
JK
1553 }
1554 this_frame->stop_reason = UNWIND_INNER_ID;
1555 return NULL;
55feb689 1556 }
55feb689 1557 }
5613d8d3
AC
1558
1559 /* Check that this and the next frame are not identical. If they
1560 are, there is most likely a stack cycle. As with the inner-than
1561 test above, avoid comparing the inner-most and sentinel frames. */
1562 if (this_frame->level > 0
756e95f1 1563 && frame_id_eq (this_id, get_frame_id (this_frame->next)))
55feb689
DJ
1564 {
1565 if (frame_debug)
1566 {
1567 fprintf_unfiltered (gdb_stdlog, "-> ");
1568 fprint_frame (gdb_stdlog, NULL);
1569 fprintf_unfiltered (gdb_stdlog, " // this frame has same ID }\n");
1570 }
1571 this_frame->stop_reason = UNWIND_SAME_ID;
1572 return NULL;
1573 }
5613d8d3 1574
e48af409
DJ
1575 /* Check that this and the next frame do not unwind the PC register
1576 to the same memory location. If they do, then even though they
1577 have different frame IDs, the new frame will be bogus; two
1578 functions can't share a register save slot for the PC. This can
1579 happen when the prologue analyzer finds a stack adjustment, but
d57df5e4
DJ
1580 no PC save.
1581
1582 This check does assume that the "PC register" is roughly a
1583 traditional PC, even if the gdbarch_unwind_pc method adjusts
1584 it (we do not rely on the value, only on the unwound PC being
1585 dependent on this value). A potential improvement would be
1586 to have the frame prev_pc method and the gdbarch unwind_pc
1587 method set the same lval and location information as
1588 frame_register_unwind. */
e48af409 1589 if (this_frame->level > 0
b1bd0044 1590 && gdbarch_pc_regnum (gdbarch) >= 0
e48af409 1591 && get_frame_type (this_frame) == NORMAL_FRAME
edb3359d
DJ
1592 && (get_frame_type (this_frame->next) == NORMAL_FRAME
1593 || get_frame_type (this_frame->next) == INLINE_FRAME))
e48af409 1594 {
32276632 1595 int optimized, realnum, nrealnum;
e48af409
DJ
1596 enum lval_type lval, nlval;
1597 CORE_ADDR addr, naddr;
1598
3e8c568d 1599 frame_register_unwind_location (this_frame,
b1bd0044 1600 gdbarch_pc_regnum (gdbarch),
3e8c568d
UW
1601 &optimized, &lval, &addr, &realnum);
1602 frame_register_unwind_location (get_next_frame (this_frame),
b1bd0044 1603 gdbarch_pc_regnum (gdbarch),
32276632 1604 &optimized, &nlval, &naddr, &nrealnum);
e48af409 1605
32276632
DJ
1606 if ((lval == lval_memory && lval == nlval && addr == naddr)
1607 || (lval == lval_register && lval == nlval && realnum == nrealnum))
e48af409
DJ
1608 {
1609 if (frame_debug)
1610 {
1611 fprintf_unfiltered (gdb_stdlog, "-> ");
1612 fprint_frame (gdb_stdlog, NULL);
1613 fprintf_unfiltered (gdb_stdlog, " // no saved PC }\n");
1614 }
1615
1616 this_frame->stop_reason = UNWIND_NO_SAVED_PC;
1617 this_frame->prev = NULL;
1618 return NULL;
1619 }
1620 }
1621
edb3359d
DJ
1622 return get_prev_frame_raw (this_frame);
1623}
1624
1625/* Construct a new "struct frame_info" and link it previous to
1626 this_frame. */
1627
1628static struct frame_info *
1629get_prev_frame_raw (struct frame_info *this_frame)
1630{
1631 struct frame_info *prev_frame;
1632
5613d8d3
AC
1633 /* Allocate the new frame but do not wire it in to the frame chain.
1634 Some (bad) code in INIT_FRAME_EXTRA_INFO tries to look along
1635 frame->next to pull some fancy tricks (of course such code is, by
1636 definition, recursive). Try to prevent it.
1637
1638 There is no reason to worry about memory leaks, should the
1639 remainder of the function fail. The allocated memory will be
1640 quickly reclaimed when the frame cache is flushed, and the `we've
1641 been here before' check above will stop repeated memory
1642 allocation calls. */
1643 prev_frame = FRAME_OBSTACK_ZALLOC (struct frame_info);
1644 prev_frame->level = this_frame->level + 1;
1645
6c95b8df
PA
1646 /* For now, assume we don't have frame chains crossing address
1647 spaces. */
1648 prev_frame->pspace = this_frame->pspace;
1649 prev_frame->aspace = this_frame->aspace;
1650
5613d8d3
AC
1651 /* Don't yet compute ->unwind (and hence ->type). It is computed
1652 on-demand in get_frame_type, frame_register_unwind, and
1653 get_frame_id. */
1654
1655 /* Don't yet compute the frame's ID. It is computed on-demand by
1656 get_frame_id(). */
1657
1658 /* The unwound frame ID is validate at the start of this function,
1659 as part of the logic to decide if that frame should be further
1660 unwound, and not here while the prev frame is being created.
1661 Doing this makes it possible for the user to examine a frame that
1662 has an invalid frame ID.
1663
1664 Some very old VAX code noted: [...] For the sake of argument,
1665 suppose that the stack is somewhat trashed (which is one reason
1666 that "info frame" exists). So, return 0 (indicating we don't
1667 know the address of the arglist) if we don't know what frame this
1668 frame calls. */
1669
1670 /* Link it in. */
1671 this_frame->prev = prev_frame;
1672 prev_frame->next = this_frame;
1673
1674 if (frame_debug)
1675 {
1676 fprintf_unfiltered (gdb_stdlog, "-> ");
1677 fprint_frame (gdb_stdlog, prev_frame);
1678 fprintf_unfiltered (gdb_stdlog, " }\n");
1679 }
1680
1681 return prev_frame;
1682}
1683
1684/* Debug routine to print a NULL frame being returned. */
1685
1686static void
d2bf72c0 1687frame_debug_got_null_frame (struct frame_info *this_frame,
5613d8d3
AC
1688 const char *reason)
1689{
1690 if (frame_debug)
1691 {
1692 fprintf_unfiltered (gdb_stdlog, "{ get_prev_frame (this_frame=");
1693 if (this_frame != NULL)
1694 fprintf_unfiltered (gdb_stdlog, "%d", this_frame->level);
1695 else
1696 fprintf_unfiltered (gdb_stdlog, "<NULL>");
1697 fprintf_unfiltered (gdb_stdlog, ") -> // %s}\n", reason);
1698 }
1699}
1700
c8cd9f6c
AC
1701/* Is this (non-sentinel) frame in the "main"() function? */
1702
1703static int
1704inside_main_func (struct frame_info *this_frame)
1705{
1706 struct minimal_symbol *msymbol;
1707 CORE_ADDR maddr;
1708
1709 if (symfile_objfile == 0)
1710 return 0;
1711 msymbol = lookup_minimal_symbol (main_name (), NULL, symfile_objfile);
1712 if (msymbol == NULL)
1713 return 0;
1714 /* Make certain that the code, and not descriptor, address is
1715 returned. */
b1bd0044 1716 maddr = gdbarch_convert_from_func_ptr_addr (get_frame_arch (this_frame),
c8cd9f6c
AC
1717 SYMBOL_VALUE_ADDRESS (msymbol),
1718 &current_target);
1719 return maddr == get_frame_func (this_frame);
1720}
1721
2315ffec
RC
1722/* Test whether THIS_FRAME is inside the process entry point function. */
1723
1724static int
1725inside_entry_func (struct frame_info *this_frame)
1726{
abd0a5fa
JK
1727 CORE_ADDR entry_point;
1728
1729 if (!entry_point_address_query (&entry_point))
1730 return 0;
1731
1732 return get_frame_func (this_frame) == entry_point;
2315ffec
RC
1733}
1734
5613d8d3
AC
1735/* Return a structure containing various interesting information about
1736 the frame that called THIS_FRAME. Returns NULL if there is entier
1737 no such frame or the frame fails any of a set of target-independent
1738 condition that should terminate the frame chain (e.g., as unwinding
1739 past main()).
1740
1741 This function should not contain target-dependent tests, such as
1742 checking whether the program-counter is zero. */
1743
1744struct frame_info *
1745get_prev_frame (struct frame_info *this_frame)
1746{
eb4f72c5
AC
1747 /* There is always a frame. If this assertion fails, suspect that
1748 something should be calling get_selected_frame() or
1749 get_current_frame(). */
03febf99 1750 gdb_assert (this_frame != NULL);
eb4f72c5 1751
cc9bed83
RC
1752 /* tausq/2004-12-07: Dummy frames are skipped because it doesn't make much
1753 sense to stop unwinding at a dummy frame. One place where a dummy
1754 frame may have an address "inside_main_func" is on HPUX. On HPUX, the
1755 pcsqh register (space register for the instruction at the head of the
1756 instruction queue) cannot be written directly; the only way to set it
1757 is to branch to code that is in the target space. In order to implement
1758 frame dummies on HPUX, the called function is made to jump back to where
1759 the inferior was when the user function was called. If gdb was inside
1760 the main function when we created the dummy frame, the dummy frame will
1761 point inside the main function. */
03febf99 1762 if (this_frame->level >= 0
edb3359d 1763 && get_frame_type (this_frame) == NORMAL_FRAME
25d29d70 1764 && !backtrace_past_main
c8cd9f6c
AC
1765 && inside_main_func (this_frame))
1766 /* Don't unwind past main(). Note, this is done _before_ the
1767 frame has been marked as previously unwound. That way if the
1768 user later decides to enable unwinds past main(), that will
1769 automatically happen. */
ac2bd0a9 1770 {
d2bf72c0 1771 frame_debug_got_null_frame (this_frame, "inside main func");
ac2bd0a9
AC
1772 return NULL;
1773 }
eb4f72c5 1774
4a5e53e8
DJ
1775 /* If the user's backtrace limit has been exceeded, stop. We must
1776 add two to the current level; one of those accounts for backtrace_limit
1777 being 1-based and the level being 0-based, and the other accounts for
1778 the level of the new frame instead of the level of the current
1779 frame. */
1780 if (this_frame->level + 2 > backtrace_limit)
25d29d70 1781 {
d2bf72c0 1782 frame_debug_got_null_frame (this_frame, "backtrace limit exceeded");
4a5e53e8 1783 return NULL;
25d29d70
AC
1784 }
1785
0714963c
AC
1786 /* If we're already inside the entry function for the main objfile,
1787 then it isn't valid. Don't apply this test to a dummy frame -
bbde78fa 1788 dummy frame PCs typically land in the entry func. Don't apply
0714963c
AC
1789 this test to the sentinel frame. Sentinel frames should always
1790 be allowed to unwind. */
2f72f850
AC
1791 /* NOTE: cagney/2003-07-07: Fixed a bug in inside_main_func() -
1792 wasn't checking for "main" in the minimal symbols. With that
1793 fixed asm-source tests now stop in "main" instead of halting the
bbde78fa 1794 backtrace in weird and wonderful ways somewhere inside the entry
2f72f850
AC
1795 file. Suspect that tests for inside the entry file/func were
1796 added to work around that (now fixed) case. */
0714963c
AC
1797 /* NOTE: cagney/2003-07-15: danielj (if I'm reading it right)
1798 suggested having the inside_entry_func test use the
bbde78fa
JM
1799 inside_main_func() msymbol trick (along with entry_point_address()
1800 I guess) to determine the address range of the start function.
0714963c
AC
1801 That should provide a far better stopper than the current
1802 heuristics. */
2315ffec
RC
1803 /* NOTE: tausq/2004-10-09: this is needed if, for example, the compiler
1804 applied tail-call optimizations to main so that a function called
1805 from main returns directly to the caller of main. Since we don't
1806 stop at main, we should at least stop at the entry point of the
1807 application. */
edb3359d
DJ
1808 if (this_frame->level >= 0
1809 && get_frame_type (this_frame) == NORMAL_FRAME
1810 && !backtrace_past_entry
6e4c6c91 1811 && inside_entry_func (this_frame))
0714963c 1812 {
d2bf72c0 1813 frame_debug_got_null_frame (this_frame, "inside entry func");
0714963c
AC
1814 return NULL;
1815 }
1816
39ee2ff0
AC
1817 /* Assume that the only way to get a zero PC is through something
1818 like a SIGSEGV or a dummy frame, and hence that NORMAL frames
1819 will never unwind a zero PC. */
1820 if (this_frame->level > 0
edb3359d
DJ
1821 && (get_frame_type (this_frame) == NORMAL_FRAME
1822 || get_frame_type (this_frame) == INLINE_FRAME)
39ee2ff0
AC
1823 && get_frame_type (get_next_frame (this_frame)) == NORMAL_FRAME
1824 && get_frame_pc (this_frame) == 0)
1825 {
d2bf72c0 1826 frame_debug_got_null_frame (this_frame, "zero PC");
39ee2ff0
AC
1827 return NULL;
1828 }
1829
5613d8d3 1830 return get_prev_frame_1 (this_frame);
eb4f72c5
AC
1831}
1832
4c1e7e9d
AC
1833CORE_ADDR
1834get_frame_pc (struct frame_info *frame)
1835{
d1340264 1836 gdb_assert (frame->next != NULL);
edb3359d 1837 return frame_unwind_pc (frame->next);
4c1e7e9d
AC
1838}
1839
ad1193e7 1840/* Return an address that falls within THIS_FRAME's code block. */
8edd5d01
AC
1841
1842CORE_ADDR
ad1193e7 1843get_frame_address_in_block (struct frame_info *this_frame)
8edd5d01
AC
1844{
1845 /* A draft address. */
ad1193e7 1846 CORE_ADDR pc = get_frame_pc (this_frame);
8edd5d01 1847
ad1193e7
DJ
1848 struct frame_info *next_frame = this_frame->next;
1849
1850 /* Calling get_frame_pc returns the resume address for THIS_FRAME.
1851 Normally the resume address is inside the body of the function
1852 associated with THIS_FRAME, but there is a special case: when
1853 calling a function which the compiler knows will never return
1854 (for instance abort), the call may be the very last instruction
1855 in the calling function. The resume address will point after the
1856 call and may be at the beginning of a different function
1857 entirely.
1858
1859 If THIS_FRAME is a signal frame or dummy frame, then we should
1860 not adjust the unwound PC. For a dummy frame, GDB pushed the
1861 resume address manually onto the stack. For a signal frame, the
1862 OS may have pushed the resume address manually and invoked the
1863 handler (e.g. GNU/Linux), or invoked the trampoline which called
1864 the signal handler - but in either case the signal handler is
1865 expected to return to the trampoline. So in both of these
1866 cases we know that the resume address is executable and
1867 related. So we only need to adjust the PC if THIS_FRAME
1868 is a normal function.
1869
1870 If the program has been interrupted while THIS_FRAME is current,
1871 then clearly the resume address is inside the associated
1872 function. There are three kinds of interruption: debugger stop
1873 (next frame will be SENTINEL_FRAME), operating system
1874 signal or exception (next frame will be SIGTRAMP_FRAME),
1875 or debugger-induced function call (next frame will be
1876 DUMMY_FRAME). So we only need to adjust the PC if
1877 NEXT_FRAME is a normal function.
1878
1879 We check the type of NEXT_FRAME first, since it is already
1880 known; frame type is determined by the unwinder, and since
1881 we have THIS_FRAME we've already selected an unwinder for
edb3359d
DJ
1882 NEXT_FRAME.
1883
1884 If the next frame is inlined, we need to keep going until we find
1885 the real function - for instance, if a signal handler is invoked
1886 while in an inlined function, then the code address of the
1887 "calling" normal function should not be adjusted either. */
1888
1889 while (get_frame_type (next_frame) == INLINE_FRAME)
1890 next_frame = next_frame->next;
1891
ad1193e7 1892 if (get_frame_type (next_frame) == NORMAL_FRAME
edb3359d
DJ
1893 && (get_frame_type (this_frame) == NORMAL_FRAME
1894 || get_frame_type (this_frame) == INLINE_FRAME))
ad1193e7
DJ
1895 return pc - 1;
1896
1897 return pc;
8edd5d01
AC
1898}
1899
edb3359d
DJ
1900void
1901find_frame_sal (struct frame_info *frame, struct symtab_and_line *sal)
1058bca7 1902{
edb3359d
DJ
1903 struct frame_info *next_frame;
1904 int notcurrent;
1905
1906 /* If the next frame represents an inlined function call, this frame's
1907 sal is the "call site" of that inlined function, which can not
1908 be inferred from get_frame_pc. */
1909 next_frame = get_next_frame (frame);
1910 if (frame_inlined_callees (frame) > 0)
1911 {
1912 struct symbol *sym;
1913
1914 if (next_frame)
1915 sym = get_frame_function (next_frame);
1916 else
1917 sym = inline_skipped_symbol (inferior_ptid);
1918
f3df5b08
MS
1919 /* If frame is inline, it certainly has symbols. */
1920 gdb_assert (sym);
edb3359d
DJ
1921 init_sal (sal);
1922 if (SYMBOL_LINE (sym) != 0)
1923 {
1924 sal->symtab = SYMBOL_SYMTAB (sym);
1925 sal->line = SYMBOL_LINE (sym);
1926 }
1927 else
1928 /* If the symbol does not have a location, we don't know where
1929 the call site is. Do not pretend to. This is jarring, but
1930 we can't do much better. */
1931 sal->pc = get_frame_pc (frame);
1932
1933 return;
1934 }
1935
1058bca7
AC
1936 /* If FRAME is not the innermost frame, that normally means that
1937 FRAME->pc points at the return instruction (which is *after* the
1938 call instruction), and we want to get the line containing the
1939 call (because the call is where the user thinks the program is).
1940 However, if the next frame is either a SIGTRAMP_FRAME or a
1941 DUMMY_FRAME, then the next frame will contain a saved interrupt
1942 PC and such a PC indicates the current (rather than next)
1943 instruction/line, consequently, for such cases, want to get the
1944 line containing fi->pc. */
edb3359d
DJ
1945 notcurrent = (get_frame_pc (frame) != get_frame_address_in_block (frame));
1946 (*sal) = find_pc_line (get_frame_pc (frame), notcurrent);
1058bca7
AC
1947}
1948
c193f6ac
AC
1949/* Per "frame.h", return the ``address'' of the frame. Code should
1950 really be using get_frame_id(). */
1951CORE_ADDR
1952get_frame_base (struct frame_info *fi)
1953{
d0a55772 1954 return get_frame_id (fi).stack_addr;
c193f6ac
AC
1955}
1956
da62e633
AC
1957/* High-level offsets into the frame. Used by the debug info. */
1958
1959CORE_ADDR
1960get_frame_base_address (struct frame_info *fi)
1961{
7df05f2b 1962 if (get_frame_type (fi) != NORMAL_FRAME)
da62e633
AC
1963 return 0;
1964 if (fi->base == NULL)
86c31399 1965 fi->base = frame_base_find_by_frame (fi);
da62e633
AC
1966 /* Sneaky: If the low-level unwind and high-level base code share a
1967 common unwinder, let them share the prologue cache. */
1968 if (fi->base->unwind == fi->unwind)
669fac23
DJ
1969 return fi->base->this_base (fi, &fi->prologue_cache);
1970 return fi->base->this_base (fi, &fi->base_cache);
da62e633
AC
1971}
1972
1973CORE_ADDR
1974get_frame_locals_address (struct frame_info *fi)
1975{
7df05f2b 1976 if (get_frame_type (fi) != NORMAL_FRAME)
da62e633
AC
1977 return 0;
1978 /* If there isn't a frame address method, find it. */
1979 if (fi->base == NULL)
86c31399 1980 fi->base = frame_base_find_by_frame (fi);
da62e633
AC
1981 /* Sneaky: If the low-level unwind and high-level base code share a
1982 common unwinder, let them share the prologue cache. */
1983 if (fi->base->unwind == fi->unwind)
669fac23
DJ
1984 return fi->base->this_locals (fi, &fi->prologue_cache);
1985 return fi->base->this_locals (fi, &fi->base_cache);
da62e633
AC
1986}
1987
1988CORE_ADDR
1989get_frame_args_address (struct frame_info *fi)
1990{
7df05f2b 1991 if (get_frame_type (fi) != NORMAL_FRAME)
da62e633
AC
1992 return 0;
1993 /* If there isn't a frame address method, find it. */
1994 if (fi->base == NULL)
86c31399 1995 fi->base = frame_base_find_by_frame (fi);
da62e633
AC
1996 /* Sneaky: If the low-level unwind and high-level base code share a
1997 common unwinder, let them share the prologue cache. */
1998 if (fi->base->unwind == fi->unwind)
669fac23
DJ
1999 return fi->base->this_args (fi, &fi->prologue_cache);
2000 return fi->base->this_args (fi, &fi->base_cache);
da62e633
AC
2001}
2002
e7802207
TT
2003/* Return true if the frame unwinder for frame FI is UNWINDER; false
2004 otherwise. */
2005
2006int
2007frame_unwinder_is (struct frame_info *fi, const struct frame_unwind *unwinder)
2008{
2009 if (fi->unwind == NULL)
9f9a8002 2010 frame_unwind_find_by_frame (fi, &fi->prologue_cache);
e7802207
TT
2011 return fi->unwind == unwinder;
2012}
2013
85cf597a
AC
2014/* Level of the selected frame: 0 for innermost, 1 for its caller, ...
2015 or -1 for a NULL frame. */
2016
2017int
2018frame_relative_level (struct frame_info *fi)
2019{
2020 if (fi == NULL)
2021 return -1;
2022 else
2023 return fi->level;
2024}
2025
5a203e44
AC
2026enum frame_type
2027get_frame_type (struct frame_info *frame)
2028{
c1bf6f65
AC
2029 if (frame->unwind == NULL)
2030 /* Initialize the frame's unwinder because that's what
2031 provides the frame's type. */
9f9a8002 2032 frame_unwind_find_by_frame (frame, &frame->prologue_cache);
c1bf6f65 2033 return frame->unwind->type;
5a203e44
AC
2034}
2035
6c95b8df
PA
2036struct program_space *
2037get_frame_program_space (struct frame_info *frame)
2038{
2039 return frame->pspace;
2040}
2041
2042struct program_space *
2043frame_unwind_program_space (struct frame_info *this_frame)
2044{
2045 gdb_assert (this_frame);
2046
2047 /* This is really a placeholder to keep the API consistent --- we
2048 assume for now that we don't have frame chains crossing
2049 spaces. */
2050 return this_frame->pspace;
2051}
2052
2053struct address_space *
2054get_frame_address_space (struct frame_info *frame)
2055{
2056 return frame->aspace;
2057}
2058
ae1e7417
AC
2059/* Memory access methods. */
2060
2061void
10c42a71
AC
2062get_frame_memory (struct frame_info *this_frame, CORE_ADDR addr,
2063 gdb_byte *buf, int len)
ae1e7417
AC
2064{
2065 read_memory (addr, buf, len);
2066}
2067
2068LONGEST
2069get_frame_memory_signed (struct frame_info *this_frame, CORE_ADDR addr,
2070 int len)
2071{
e17a4113
UW
2072 struct gdbarch *gdbarch = get_frame_arch (this_frame);
2073 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1c4d3f96 2074
e17a4113 2075 return read_memory_integer (addr, len, byte_order);
ae1e7417
AC
2076}
2077
2078ULONGEST
2079get_frame_memory_unsigned (struct frame_info *this_frame, CORE_ADDR addr,
2080 int len)
2081{
e17a4113
UW
2082 struct gdbarch *gdbarch = get_frame_arch (this_frame);
2083 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1c4d3f96 2084
e17a4113 2085 return read_memory_unsigned_integer (addr, len, byte_order);
ae1e7417
AC
2086}
2087
304396fb
AC
2088int
2089safe_frame_unwind_memory (struct frame_info *this_frame,
10c42a71 2090 CORE_ADDR addr, gdb_byte *buf, int len)
304396fb 2091{
8defab1a
DJ
2092 /* NOTE: target_read_memory returns zero on success! */
2093 return !target_read_memory (addr, buf, len);
304396fb
AC
2094}
2095
36f15f55 2096/* Architecture methods. */
ae1e7417
AC
2097
2098struct gdbarch *
2099get_frame_arch (struct frame_info *this_frame)
2100{
36f15f55
UW
2101 return frame_unwind_arch (this_frame->next);
2102}
2103
2104struct gdbarch *
2105frame_unwind_arch (struct frame_info *next_frame)
2106{
2107 if (!next_frame->prev_arch.p)
2108 {
2109 struct gdbarch *arch;
0701b271 2110
36f15f55 2111 if (next_frame->unwind == NULL)
9f9a8002 2112 frame_unwind_find_by_frame (next_frame, &next_frame->prologue_cache);
36f15f55
UW
2113
2114 if (next_frame->unwind->prev_arch != NULL)
2115 arch = next_frame->unwind->prev_arch (next_frame,
2116 &next_frame->prologue_cache);
2117 else
2118 arch = get_frame_arch (next_frame);
2119
2120 next_frame->prev_arch.arch = arch;
2121 next_frame->prev_arch.p = 1;
2122 if (frame_debug)
2123 fprintf_unfiltered (gdb_stdlog,
2124 "{ frame_unwind_arch (next_frame=%d) -> %s }\n",
2125 next_frame->level,
2126 gdbarch_bfd_arch_info (arch)->printable_name);
2127 }
2128
2129 return next_frame->prev_arch.arch;
2130}
2131
2132struct gdbarch *
2133frame_unwind_caller_arch (struct frame_info *next_frame)
2134{
2135 return frame_unwind_arch (skip_inlined_frames (next_frame));
ae1e7417
AC
2136}
2137
a9e5fdc2
AC
2138/* Stack pointer methods. */
2139
2140CORE_ADDR
2141get_frame_sp (struct frame_info *this_frame)
2142{
d56907c1 2143 struct gdbarch *gdbarch = get_frame_arch (this_frame);
1c4d3f96 2144
bbde78fa 2145 /* Normality - an architecture that provides a way of obtaining any
a9e5fdc2 2146 frame inner-most address. */
b1bd0044 2147 if (gdbarch_unwind_sp_p (gdbarch))
d56907c1
DJ
2148 /* NOTE drow/2008-06-28: gdbarch_unwind_sp could be converted to
2149 operate on THIS_FRAME now. */
2150 return gdbarch_unwind_sp (gdbarch, this_frame->next);
a9e5fdc2 2151 /* Now things are really are grim. Hope that the value returned by
3e8c568d 2152 the gdbarch_sp_regnum register is meaningful. */
b1bd0044 2153 if (gdbarch_sp_regnum (gdbarch) >= 0)
d56907c1
DJ
2154 return get_frame_register_unsigned (this_frame,
2155 gdbarch_sp_regnum (gdbarch));
e2e0b3e5 2156 internal_error (__FILE__, __LINE__, _("Missing unwind SP method"));
a9e5fdc2
AC
2157}
2158
55feb689
DJ
2159/* Return the reason why we can't unwind past FRAME. */
2160
2161enum unwind_stop_reason
2162get_frame_unwind_stop_reason (struct frame_info *frame)
2163{
2164 /* If we haven't tried to unwind past this point yet, then assume
2165 that unwinding would succeed. */
2166 if (frame->prev_p == 0)
2167 return UNWIND_NO_REASON;
2168
2169 /* Otherwise, we set a reason when we succeeded (or failed) to
2170 unwind. */
2171 return frame->stop_reason;
2172}
2173
2174/* Return a string explaining REASON. */
2175
2176const char *
2177frame_stop_reason_string (enum unwind_stop_reason reason)
2178{
2179 switch (reason)
2180 {
2181 case UNWIND_NULL_ID:
2182 return _("unwinder did not report frame ID");
2183
2184 case UNWIND_INNER_ID:
2185 return _("previous frame inner to this frame (corrupt stack?)");
2186
2187 case UNWIND_SAME_ID:
2188 return _("previous frame identical to this frame (corrupt stack?)");
2189
e48af409
DJ
2190 case UNWIND_NO_SAVED_PC:
2191 return _("frame did not save the PC");
2192
55feb689
DJ
2193 case UNWIND_NO_REASON:
2194 case UNWIND_FIRST_ERROR:
2195 default:
2196 internal_error (__FILE__, __LINE__,
2197 "Invalid frame stop reason");
2198 }
2199}
2200
669fac23
DJ
2201/* Clean up after a failed (wrong unwinder) attempt to unwind past
2202 FRAME. */
2203
2204static void
2205frame_cleanup_after_sniffer (void *arg)
2206{
2207 struct frame_info *frame = arg;
2208
2209 /* The sniffer should not allocate a prologue cache if it did not
2210 match this frame. */
2211 gdb_assert (frame->prologue_cache == NULL);
2212
2213 /* No sniffer should extend the frame chain; sniff based on what is
2214 already certain. */
2215 gdb_assert (!frame->prev_p);
2216
2217 /* The sniffer should not check the frame's ID; that's circular. */
2218 gdb_assert (!frame->this_id.p);
2219
2220 /* Clear cached fields dependent on the unwinder.
2221
2222 The previous PC is independent of the unwinder, but the previous
ad1193e7 2223 function is not (see get_frame_address_in_block). */
669fac23
DJ
2224 frame->prev_func.p = 0;
2225 frame->prev_func.addr = 0;
2226
2227 /* Discard the unwinder last, so that we can easily find it if an assertion
2228 in this function triggers. */
2229 frame->unwind = NULL;
2230}
2231
2232/* Set FRAME's unwinder temporarily, so that we can call a sniffer.
2233 Return a cleanup which should be called if unwinding fails, and
2234 discarded if it succeeds. */
2235
2236struct cleanup *
2237frame_prepare_for_sniffer (struct frame_info *frame,
2238 const struct frame_unwind *unwind)
2239{
2240 gdb_assert (frame->unwind == NULL);
2241 frame->unwind = unwind;
2242 return make_cleanup (frame_cleanup_after_sniffer, frame);
2243}
2244
b9362cc7
AC
2245extern initialize_file_ftype _initialize_frame; /* -Wmissing-prototypes */
2246
25d29d70
AC
2247static struct cmd_list_element *set_backtrace_cmdlist;
2248static struct cmd_list_element *show_backtrace_cmdlist;
2249
2250static void
2251set_backtrace_cmd (char *args, int from_tty)
2252{
2253 help_list (set_backtrace_cmdlist, "set backtrace ", -1, gdb_stdout);
2254}
2255
2256static void
2257show_backtrace_cmd (char *args, int from_tty)
2258{
2259 cmd_show_list (show_backtrace_cmdlist, from_tty, "");
2260}
2261
4c1e7e9d
AC
2262void
2263_initialize_frame (void)
2264{
2265 obstack_init (&frame_cache_obstack);
eb4f72c5 2266
f4c5303c
OF
2267 observer_attach_target_changed (frame_observer_target_changed);
2268
1bedd215 2269 add_prefix_cmd ("backtrace", class_maintenance, set_backtrace_cmd, _("\
25d29d70 2270Set backtrace specific variables.\n\
1bedd215 2271Configure backtrace variables such as the backtrace limit"),
25d29d70
AC
2272 &set_backtrace_cmdlist, "set backtrace ",
2273 0/*allow-unknown*/, &setlist);
1bedd215 2274 add_prefix_cmd ("backtrace", class_maintenance, show_backtrace_cmd, _("\
25d29d70 2275Show backtrace specific variables\n\
1bedd215 2276Show backtrace variables such as the backtrace limit"),
25d29d70
AC
2277 &show_backtrace_cmdlist, "show backtrace ",
2278 0/*allow-unknown*/, &showlist);
2279
2280 add_setshow_boolean_cmd ("past-main", class_obscure,
7915a72c
AC
2281 &backtrace_past_main, _("\
2282Set whether backtraces should continue past \"main\"."), _("\
2283Show whether backtraces should continue past \"main\"."), _("\
eb4f72c5
AC
2284Normally the caller of \"main\" is not of interest, so GDB will terminate\n\
2285the backtrace at \"main\". Set this variable if you need to see the rest\n\
7915a72c 2286of the stack trace."),
2c5b56ce 2287 NULL,
920d2a44 2288 show_backtrace_past_main,
2c5b56ce 2289 &set_backtrace_cmdlist,
25d29d70
AC
2290 &show_backtrace_cmdlist);
2291
2315ffec 2292 add_setshow_boolean_cmd ("past-entry", class_obscure,
7915a72c
AC
2293 &backtrace_past_entry, _("\
2294Set whether backtraces should continue past the entry point of a program."),
2295 _("\
2296Show whether backtraces should continue past the entry point of a program."),
2297 _("\
2315ffec 2298Normally there are no callers beyond the entry point of a program, so GDB\n\
cce7e648 2299will terminate the backtrace there. Set this variable if you need to see\n\
7915a72c 2300the rest of the stack trace."),
2c5b56ce 2301 NULL,
920d2a44 2302 show_backtrace_past_entry,
2c5b56ce 2303 &set_backtrace_cmdlist,
2315ffec
RC
2304 &show_backtrace_cmdlist);
2305
4a5e53e8
DJ
2306 add_setshow_integer_cmd ("limit", class_obscure,
2307 &backtrace_limit, _("\
7915a72c
AC
2308Set an upper bound on the number of backtrace levels."), _("\
2309Show the upper bound on the number of backtrace levels."), _("\
fec74868 2310No more than the specified number of frames can be displayed or examined.\n\
7915a72c 2311Zero is unlimited."),
4a5e53e8
DJ
2312 NULL,
2313 show_backtrace_limit,
2314 &set_backtrace_cmdlist,
2315 &show_backtrace_cmdlist);
ac2bd0a9 2316
0963b4bd 2317 /* Debug this files internals. */
85c07804
AC
2318 add_setshow_zinteger_cmd ("frame", class_maintenance, &frame_debug, _("\
2319Set frame debugging."), _("\
2320Show frame debugging."), _("\
2321When non-zero, frame specific internal debugging is enabled."),
2322 NULL,
920d2a44 2323 show_frame_debug,
85c07804 2324 &setdebuglist, &showdebuglist);
4c1e7e9d 2325}