Rewrite TRY/CATCH
[deliverable/binutils-gdb.git] / gdb / frame.c
CommitLineData
4f460812 1/* Cache and manage frames for GDB, the GNU debugger.
96cb11df 2
42a4f53d 3 Copyright (C) 1986-2019 Free Software Foundation, Inc.
d65fe839
AC
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
d65fe839
AC
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
d65fe839
AC
19
20#include "defs.h"
d55e5aa6 21#include "frame.h"
4de283e4
TT
22#include "target.h"
23#include "value.h"
24#include "inferior.h" /* for inferior_ptid */
25#include "regcache.h"
26#include "user-regs.h"
d55e5aa6 27#include "gdb_obstack.h"
4de283e4
TT
28#include "dummy-frame.h"
29#include "sentinel-frame.h"
d55e5aa6 30#include "gdbcore.h"
4de283e4 31#include "annotate.h"
d55e5aa6 32#include "language.h"
4de283e4
TT
33#include "frame-unwind.h"
34#include "frame-base.h"
35#include "command.h"
36#include "gdbcmd.h"
d55e5aa6 37#include "observable.h"
4de283e4
TT
38#include "objfiles.h"
39#include "gdbthread.h"
40#include "block.h"
41#include "inline-frame.h"
983dc440 42#include "tracepoint.h"
4de283e4 43#include "hashtab.h"
f6c01fc5 44#include "valprint.h"
eb4f72c5 45
df433d31
KB
46/* The sentinel frame terminates the innermost end of the frame chain.
47 If unwound, it returns the information needed to construct an
48 innermost frame.
49
50 The current frame, which is the innermost frame, can be found at
51 sentinel_frame->prev. */
52
53static struct frame_info *sentinel_frame;
54
edb3359d 55static struct frame_info *get_prev_frame_raw (struct frame_info *this_frame);
a7300869 56static const char *frame_stop_reason_symbol_string (enum unwind_stop_reason reason);
5613d8d3 57
782d47df
PA
58/* Status of some values cached in the frame_info object. */
59
60enum cached_copy_status
61{
62 /* Value is unknown. */
63 CC_UNKNOWN,
64
65 /* We have a value. */
66 CC_VALUE,
67
68 /* Value was not saved. */
69 CC_NOT_SAVED,
70
71 /* Value is unavailable. */
72 CC_UNAVAILABLE
73};
74
bd013d54
AC
75/* We keep a cache of stack frames, each of which is a "struct
76 frame_info". The innermost one gets allocated (in
df433d31 77 wait_for_inferior) each time the inferior stops; sentinel_frame
bd013d54
AC
78 points to it. Additional frames get allocated (in get_prev_frame)
79 as needed, and are chained through the next and prev fields. Any
80 time that the frame cache becomes invalid (most notably when we
81 execute something, but also if we change how we interpret the
82 frames (e.g. "set heuristic-fence-post" in mips-tdep.c, or anything
83 which reads new symbols)), we should call reinit_frame_cache. */
84
85struct frame_info
86{
87 /* Level of this frame. The inner-most (youngest) frame is at level
88 0. As you move towards the outer-most (oldest) frame, the level
89 increases. This is a cached value. It could just as easily be
90 computed by counting back from the selected frame to the inner
91 most frame. */
bbde78fa 92 /* NOTE: cagney/2002-04-05: Perhaps a level of ``-1'' should be
bd013d54
AC
93 reserved to indicate a bogus frame - one that has been created
94 just to keep GDB happy (GDB always needs a frame). For the
95 moment leave this as speculation. */
96 int level;
97
6c95b8df
PA
98 /* The frame's program space. */
99 struct program_space *pspace;
100
101 /* The frame's address space. */
8b86c959 102 const address_space *aspace;
6c95b8df 103
bd013d54
AC
104 /* The frame's low-level unwinder and corresponding cache. The
105 low-level unwinder is responsible for unwinding register values
106 for the previous frame. The low-level unwind methods are
bbde78fa 107 selected based on the presence, or otherwise, of register unwind
bd013d54
AC
108 information such as CFI. */
109 void *prologue_cache;
110 const struct frame_unwind *unwind;
111
36f15f55
UW
112 /* Cached copy of the previous frame's architecture. */
113 struct
114 {
115 int p;
116 struct gdbarch *arch;
117 } prev_arch;
118
bd013d54
AC
119 /* Cached copy of the previous frame's resume address. */
120 struct {
782d47df 121 enum cached_copy_status status;
bd013d54
AC
122 CORE_ADDR value;
123 } prev_pc;
124
125 /* Cached copy of the previous frame's function address. */
126 struct
127 {
128 CORE_ADDR addr;
129 int p;
130 } prev_func;
131
132 /* This frame's ID. */
133 struct
134 {
135 int p;
136 struct frame_id value;
137 } this_id;
138
139 /* The frame's high-level base methods, and corresponding cache.
140 The high level base methods are selected based on the frame's
141 debug info. */
142 const struct frame_base *base;
143 void *base_cache;
144
145 /* Pointers to the next (down, inner, younger) and previous (up,
146 outer, older) frame_info's in the frame cache. */
147 struct frame_info *next; /* down, inner, younger */
148 int prev_p;
149 struct frame_info *prev; /* up, outer, older */
55feb689
DJ
150
151 /* The reason why we could not set PREV, or UNWIND_NO_REASON if we
152 could. Only valid when PREV_P is set. */
153 enum unwind_stop_reason stop_reason;
53e8a631
AB
154
155 /* A frame specific string describing the STOP_REASON in more detail.
156 Only valid when PREV_P is set, but even then may still be NULL. */
157 const char *stop_string;
bd013d54
AC
158};
159
3de661e6
PM
160/* A frame stash used to speed up frame lookups. Create a hash table
161 to stash frames previously accessed from the frame cache for
162 quicker subsequent retrieval. The hash table is emptied whenever
163 the frame cache is invalidated. */
b83e9eb7 164
3de661e6 165static htab_t frame_stash;
b83e9eb7 166
3de661e6
PM
167/* Internal function to calculate a hash from the frame_id addresses,
168 using as many valid addresses as possible. Frames below level 0
169 are not stored in the hash table. */
170
171static hashval_t
172frame_addr_hash (const void *ap)
173{
9a3c8263 174 const struct frame_info *frame = (const struct frame_info *) ap;
3de661e6
PM
175 const struct frame_id f_id = frame->this_id.value;
176 hashval_t hash = 0;
177
5ce0145d
PA
178 gdb_assert (f_id.stack_status != FID_STACK_INVALID
179 || f_id.code_addr_p
3de661e6
PM
180 || f_id.special_addr_p);
181
5ce0145d 182 if (f_id.stack_status == FID_STACK_VALID)
3de661e6
PM
183 hash = iterative_hash (&f_id.stack_addr,
184 sizeof (f_id.stack_addr), hash);
185 if (f_id.code_addr_p)
186 hash = iterative_hash (&f_id.code_addr,
187 sizeof (f_id.code_addr), hash);
188 if (f_id.special_addr_p)
189 hash = iterative_hash (&f_id.special_addr,
190 sizeof (f_id.special_addr), hash);
191
192 return hash;
193}
194
195/* Internal equality function for the hash table. This function
196 defers equality operations to frame_id_eq. */
197
198static int
199frame_addr_hash_eq (const void *a, const void *b)
200{
9a3c8263
SM
201 const struct frame_info *f_entry = (const struct frame_info *) a;
202 const struct frame_info *f_element = (const struct frame_info *) b;
3de661e6
PM
203
204 return frame_id_eq (f_entry->this_id.value,
205 f_element->this_id.value);
206}
207
208/* Internal function to create the frame_stash hash table. 100 seems
209 to be a good compromise to start the hash table at. */
210
211static void
212frame_stash_create (void)
213{
214 frame_stash = htab_create (100,
215 frame_addr_hash,
216 frame_addr_hash_eq,
217 NULL);
218}
219
194cca41
PA
220/* Internal function to add a frame to the frame_stash hash table.
221 Returns false if a frame with the same ID was already stashed, true
222 otherwise. */
b83e9eb7 223
194cca41 224static int
b83e9eb7
JB
225frame_stash_add (struct frame_info *frame)
226{
194cca41 227 struct frame_info **slot;
f5b0ed3c 228
194cca41
PA
229 /* Do not try to stash the sentinel frame. */
230 gdb_assert (frame->level >= 0);
231
232 slot = (struct frame_info **) htab_find_slot (frame_stash,
233 frame,
234 INSERT);
235
236 /* If we already have a frame in the stack with the same id, we
237 either have a stack cycle (corrupted stack?), or some bug
238 elsewhere in GDB. In any case, ignore the duplicate and return
239 an indication to the caller. */
240 if (*slot != NULL)
241 return 0;
242
243 *slot = frame;
244 return 1;
b83e9eb7
JB
245}
246
3de661e6
PM
247/* Internal function to search the frame stash for an entry with the
248 given frame ID. If found, return that frame. Otherwise return
249 NULL. */
b83e9eb7
JB
250
251static struct frame_info *
252frame_stash_find (struct frame_id id)
253{
3de661e6
PM
254 struct frame_info dummy;
255 struct frame_info *frame;
b83e9eb7 256
3de661e6 257 dummy.this_id.value = id;
9a3c8263 258 frame = (struct frame_info *) htab_find (frame_stash, &dummy);
3de661e6 259 return frame;
b83e9eb7
JB
260}
261
3de661e6
PM
262/* Internal function to invalidate the frame stash by removing all
263 entries in it. This only occurs when the frame cache is
264 invalidated. */
b83e9eb7
JB
265
266static void
267frame_stash_invalidate (void)
268{
3de661e6 269 htab_empty (frame_stash);
b83e9eb7
JB
270}
271
45f25d6c
AB
272/* See frame.h */
273scoped_restore_selected_frame::scoped_restore_selected_frame ()
274{
275 m_fid = get_frame_id (get_selected_frame (NULL));
276}
277
278/* See frame.h */
279scoped_restore_selected_frame::~scoped_restore_selected_frame ()
280{
281 frame_info *frame = frame_find_by_id (m_fid);
282 if (frame == NULL)
283 warning (_("Unable to restore previously selected frame."));
284 else
285 select_frame (frame);
286}
287
ac2bd0a9
AC
288/* Flag to control debugging. */
289
ccce17b0 290unsigned int frame_debug;
920d2a44
AC
291static void
292show_frame_debug (struct ui_file *file, int from_tty,
293 struct cmd_list_element *c, const char *value)
294{
295 fprintf_filtered (file, _("Frame debugging is %s.\n"), value);
296}
ac2bd0a9 297
25d29d70
AC
298/* Flag to indicate whether backtraces should stop at main et.al. */
299
300static int backtrace_past_main;
920d2a44
AC
301static void
302show_backtrace_past_main (struct ui_file *file, int from_tty,
303 struct cmd_list_element *c, const char *value)
304{
3e43a32a
MS
305 fprintf_filtered (file,
306 _("Whether backtraces should "
307 "continue past \"main\" is %s.\n"),
920d2a44
AC
308 value);
309}
310
2315ffec 311static int backtrace_past_entry;
920d2a44
AC
312static void
313show_backtrace_past_entry (struct ui_file *file, int from_tty,
314 struct cmd_list_element *c, const char *value)
315{
3e43a32a
MS
316 fprintf_filtered (file, _("Whether backtraces should continue past the "
317 "entry point of a program is %s.\n"),
920d2a44
AC
318 value);
319}
320
883b9c6c 321static unsigned int backtrace_limit = UINT_MAX;
920d2a44
AC
322static void
323show_backtrace_limit (struct ui_file *file, int from_tty,
324 struct cmd_list_element *c, const char *value)
325{
3e43a32a
MS
326 fprintf_filtered (file,
327 _("An upper bound on the number "
328 "of backtrace levels is %s.\n"),
920d2a44
AC
329 value);
330}
331
eb4f72c5 332
ca73dd9d
AC
333static void
334fprint_field (struct ui_file *file, const char *name, int p, CORE_ADDR addr)
335{
336 if (p)
5af949e3 337 fprintf_unfiltered (file, "%s=%s", name, hex_string (addr));
ca73dd9d
AC
338 else
339 fprintf_unfiltered (file, "!%s", name);
340}
d65fe839 341
00905d52 342void
7f78e237
AC
343fprint_frame_id (struct ui_file *file, struct frame_id id)
344{
ca73dd9d 345 fprintf_unfiltered (file, "{");
5ce0145d
PA
346
347 if (id.stack_status == FID_STACK_INVALID)
348 fprintf_unfiltered (file, "!stack");
349 else if (id.stack_status == FID_STACK_UNAVAILABLE)
350 fprintf_unfiltered (file, "stack=<unavailable>");
df433d31
KB
351 else if (id.stack_status == FID_STACK_SENTINEL)
352 fprintf_unfiltered (file, "stack=<sentinel>");
5ce0145d
PA
353 else
354 fprintf_unfiltered (file, "stack=%s", hex_string (id.stack_addr));
ca73dd9d 355 fprintf_unfiltered (file, ",");
5ce0145d 356
ca73dd9d
AC
357 fprint_field (file, "code", id.code_addr_p, id.code_addr);
358 fprintf_unfiltered (file, ",");
5ce0145d 359
ca73dd9d 360 fprint_field (file, "special", id.special_addr_p, id.special_addr);
5ce0145d 361
193facb3
JK
362 if (id.artificial_depth)
363 fprintf_unfiltered (file, ",artificial=%d", id.artificial_depth);
5ce0145d 364
ca73dd9d 365 fprintf_unfiltered (file, "}");
7f78e237
AC
366}
367
368static void
369fprint_frame_type (struct ui_file *file, enum frame_type type)
370{
371 switch (type)
372 {
7f78e237
AC
373 case NORMAL_FRAME:
374 fprintf_unfiltered (file, "NORMAL_FRAME");
375 return;
376 case DUMMY_FRAME:
377 fprintf_unfiltered (file, "DUMMY_FRAME");
378 return;
edb3359d
DJ
379 case INLINE_FRAME:
380 fprintf_unfiltered (file, "INLINE_FRAME");
381 return;
b5eef7aa
JK
382 case TAILCALL_FRAME:
383 fprintf_unfiltered (file, "TAILCALL_FRAME");
edb3359d 384 return;
7f78e237
AC
385 case SIGTRAMP_FRAME:
386 fprintf_unfiltered (file, "SIGTRAMP_FRAME");
387 return;
36f15f55
UW
388 case ARCH_FRAME:
389 fprintf_unfiltered (file, "ARCH_FRAME");
390 return;
b5eef7aa
JK
391 case SENTINEL_FRAME:
392 fprintf_unfiltered (file, "SENTINEL_FRAME");
393 return;
7f78e237
AC
394 default:
395 fprintf_unfiltered (file, "<unknown type>");
396 return;
397 };
398}
399
400static void
401fprint_frame (struct ui_file *file, struct frame_info *fi)
402{
403 if (fi == NULL)
404 {
405 fprintf_unfiltered (file, "<NULL frame>");
406 return;
407 }
408 fprintf_unfiltered (file, "{");
409 fprintf_unfiltered (file, "level=%d", fi->level);
410 fprintf_unfiltered (file, ",");
411 fprintf_unfiltered (file, "type=");
c1bf6f65
AC
412 if (fi->unwind != NULL)
413 fprint_frame_type (file, fi->unwind->type);
414 else
415 fprintf_unfiltered (file, "<unknown>");
7f78e237
AC
416 fprintf_unfiltered (file, ",");
417 fprintf_unfiltered (file, "unwind=");
418 if (fi->unwind != NULL)
419 gdb_print_host_address (fi->unwind, file);
420 else
421 fprintf_unfiltered (file, "<unknown>");
422 fprintf_unfiltered (file, ",");
423 fprintf_unfiltered (file, "pc=");
782d47df 424 if (fi->next == NULL || fi->next->prev_pc.status == CC_UNKNOWN)
7f78e237 425 fprintf_unfiltered (file, "<unknown>");
782d47df
PA
426 else if (fi->next->prev_pc.status == CC_VALUE)
427 fprintf_unfiltered (file, "%s",
428 hex_string (fi->next->prev_pc.value));
429 else if (fi->next->prev_pc.status == CC_NOT_SAVED)
430 val_print_not_saved (file);
431 else if (fi->next->prev_pc.status == CC_UNAVAILABLE)
432 val_print_unavailable (file);
7f78e237
AC
433 fprintf_unfiltered (file, ",");
434 fprintf_unfiltered (file, "id=");
435 if (fi->this_id.p)
436 fprint_frame_id (file, fi->this_id.value);
437 else
438 fprintf_unfiltered (file, "<unknown>");
439 fprintf_unfiltered (file, ",");
440 fprintf_unfiltered (file, "func=");
441 if (fi->next != NULL && fi->next->prev_func.p)
5af949e3 442 fprintf_unfiltered (file, "%s", hex_string (fi->next->prev_func.addr));
7f78e237
AC
443 else
444 fprintf_unfiltered (file, "<unknown>");
445 fprintf_unfiltered (file, "}");
446}
447
193facb3
JK
448/* Given FRAME, return the enclosing frame as found in real frames read-in from
449 inferior memory. Skip any previous frames which were made up by GDB.
33b4777c
MM
450 Return FRAME if FRAME is a non-artificial frame.
451 Return NULL if FRAME is the start of an artificial-only chain. */
edb3359d
DJ
452
453static struct frame_info *
193facb3 454skip_artificial_frames (struct frame_info *frame)
edb3359d 455{
51d48146
PA
456 /* Note we use get_prev_frame_always, and not get_prev_frame. The
457 latter will truncate the frame chain, leading to this function
458 unintentionally returning a null_frame_id (e.g., when the user
33b4777c
MM
459 sets a backtrace limit).
460
461 Note that for record targets we may get a frame chain that consists
462 of artificial frames only. */
1ab3b62c
JK
463 while (get_frame_type (frame) == INLINE_FRAME
464 || get_frame_type (frame) == TAILCALL_FRAME)
33b4777c
MM
465 {
466 frame = get_prev_frame_always (frame);
467 if (frame == NULL)
468 break;
469 }
edb3359d
DJ
470
471 return frame;
472}
473
7eb89530
YQ
474struct frame_info *
475skip_unwritable_frames (struct frame_info *frame)
476{
477 while (gdbarch_code_of_frame_writable (get_frame_arch (frame), frame) == 0)
478 {
479 frame = get_prev_frame (frame);
480 if (frame == NULL)
481 break;
482 }
483
484 return frame;
485}
486
2f3ef606
MM
487/* See frame.h. */
488
489struct frame_info *
490skip_tailcall_frames (struct frame_info *frame)
491{
492 while (get_frame_type (frame) == TAILCALL_FRAME)
33b4777c
MM
493 {
494 /* Note that for record targets we may get a frame chain that consists of
495 tailcall frames only. */
496 frame = get_prev_frame (frame);
497 if (frame == NULL)
498 break;
499 }
2f3ef606
MM
500
501 return frame;
502}
503
194cca41
PA
504/* Compute the frame's uniq ID that can be used to, later, re-find the
505 frame. */
506
507static void
508compute_frame_id (struct frame_info *fi)
509{
510 gdb_assert (!fi->this_id.p);
511
512 if (frame_debug)
513 fprintf_unfiltered (gdb_stdlog, "{ compute_frame_id (fi=%d) ",
514 fi->level);
515 /* Find the unwinder. */
516 if (fi->unwind == NULL)
517 frame_unwind_find_by_frame (fi, &fi->prologue_cache);
518 /* Find THIS frame's ID. */
519 /* Default to outermost if no ID is found. */
520 fi->this_id.value = outer_frame_id;
521 fi->unwind->this_id (fi, &fi->prologue_cache, &fi->this_id.value);
522 gdb_assert (frame_id_p (fi->this_id.value));
523 fi->this_id.p = 1;
524 if (frame_debug)
525 {
526 fprintf_unfiltered (gdb_stdlog, "-> ");
527 fprint_frame_id (gdb_stdlog, fi->this_id.value);
528 fprintf_unfiltered (gdb_stdlog, " }\n");
529 }
530}
531
7a424e99 532/* Return a frame uniq ID that can be used to, later, re-find the
101dcfbe
AC
533 frame. */
534
7a424e99
AC
535struct frame_id
536get_frame_id (struct frame_info *fi)
101dcfbe
AC
537{
538 if (fi == NULL)
b83e9eb7
JB
539 return null_frame_id;
540
f245535c
PA
541 if (!fi->this_id.p)
542 {
543 int stashed;
544
545 /* If we haven't computed the frame id yet, then it must be that
546 this is the current frame. Compute it now, and stash the
547 result. The IDs of other frames are computed as soon as
548 they're created, in order to detect cycles. See
549 get_prev_frame_if_no_cycle. */
550 gdb_assert (fi->level == 0);
551
552 /* Compute. */
553 compute_frame_id (fi);
554
555 /* Since this is the first frame in the chain, this should
556 always succeed. */
557 stashed = frame_stash_add (fi);
558 gdb_assert (stashed);
559 }
560
18adea3f 561 return fi->this_id.value;
101dcfbe
AC
562}
563
edb3359d
DJ
564struct frame_id
565get_stack_frame_id (struct frame_info *next_frame)
566{
193facb3 567 return get_frame_id (skip_artificial_frames (next_frame));
edb3359d
DJ
568}
569
5613d8d3 570struct frame_id
c7ce8faa 571frame_unwind_caller_id (struct frame_info *next_frame)
5613d8d3 572{
edb3359d
DJ
573 struct frame_info *this_frame;
574
51d48146
PA
575 /* Use get_prev_frame_always, and not get_prev_frame. The latter
576 will truncate the frame chain, leading to this function
577 unintentionally returning a null_frame_id (e.g., when a caller
578 requests the frame ID of "main()"s caller. */
edb3359d 579
193facb3 580 next_frame = skip_artificial_frames (next_frame);
33b4777c
MM
581 if (next_frame == NULL)
582 return null_frame_id;
583
51d48146 584 this_frame = get_prev_frame_always (next_frame);
edb3359d 585 if (this_frame)
193facb3 586 return get_frame_id (skip_artificial_frames (this_frame));
edb3359d
DJ
587 else
588 return null_frame_id;
5613d8d3
AC
589}
590
f8904751 591const struct frame_id null_frame_id = { 0 }; /* All zeros. */
df433d31 592const struct frame_id sentinel_frame_id = { 0, 0, 0, FID_STACK_SENTINEL, 0, 1, 0 };
5ce0145d 593const struct frame_id outer_frame_id = { 0, 0, 0, FID_STACK_INVALID, 0, 1, 0 };
7a424e99
AC
594
595struct frame_id
48c66725
JJ
596frame_id_build_special (CORE_ADDR stack_addr, CORE_ADDR code_addr,
597 CORE_ADDR special_addr)
7a424e99 598{
12b0b6de 599 struct frame_id id = null_frame_id;
1c4d3f96 600
d0a55772 601 id.stack_addr = stack_addr;
5ce0145d 602 id.stack_status = FID_STACK_VALID;
d0a55772 603 id.code_addr = code_addr;
12b0b6de 604 id.code_addr_p = 1;
48c66725 605 id.special_addr = special_addr;
12b0b6de 606 id.special_addr_p = 1;
7a424e99
AC
607 return id;
608}
609
5ce0145d
PA
610/* See frame.h. */
611
612struct frame_id
613frame_id_build_unavailable_stack (CORE_ADDR code_addr)
614{
615 struct frame_id id = null_frame_id;
616
617 id.stack_status = FID_STACK_UNAVAILABLE;
618 id.code_addr = code_addr;
619 id.code_addr_p = 1;
620 return id;
621}
622
8372a7cb
MM
623/* See frame.h. */
624
625struct frame_id
626frame_id_build_unavailable_stack_special (CORE_ADDR code_addr,
627 CORE_ADDR special_addr)
628{
629 struct frame_id id = null_frame_id;
630
631 id.stack_status = FID_STACK_UNAVAILABLE;
632 id.code_addr = code_addr;
633 id.code_addr_p = 1;
634 id.special_addr = special_addr;
635 id.special_addr_p = 1;
636 return id;
637}
638
48c66725
JJ
639struct frame_id
640frame_id_build (CORE_ADDR stack_addr, CORE_ADDR code_addr)
641{
12b0b6de 642 struct frame_id id = null_frame_id;
1c4d3f96 643
12b0b6de 644 id.stack_addr = stack_addr;
5ce0145d 645 id.stack_status = FID_STACK_VALID;
12b0b6de
UW
646 id.code_addr = code_addr;
647 id.code_addr_p = 1;
648 return id;
649}
650
651struct frame_id
652frame_id_build_wild (CORE_ADDR stack_addr)
653{
654 struct frame_id id = null_frame_id;
1c4d3f96 655
12b0b6de 656 id.stack_addr = stack_addr;
5ce0145d 657 id.stack_status = FID_STACK_VALID;
12b0b6de 658 return id;
48c66725
JJ
659}
660
7a424e99
AC
661int
662frame_id_p (struct frame_id l)
663{
d0a55772 664 int p;
1c4d3f96 665
12b0b6de 666 /* The frame is valid iff it has a valid stack address. */
5ce0145d 667 p = l.stack_status != FID_STACK_INVALID;
005ca36a
JB
668 /* outer_frame_id is also valid. */
669 if (!p && memcmp (&l, &outer_frame_id, sizeof (l)) == 0)
670 p = 1;
7f78e237
AC
671 if (frame_debug)
672 {
673 fprintf_unfiltered (gdb_stdlog, "{ frame_id_p (l=");
674 fprint_frame_id (gdb_stdlog, l);
675 fprintf_unfiltered (gdb_stdlog, ") -> %d }\n", p);
676 }
d0a55772 677 return p;
7a424e99
AC
678}
679
edb3359d 680int
193facb3 681frame_id_artificial_p (struct frame_id l)
edb3359d
DJ
682{
683 if (!frame_id_p (l))
684 return 0;
685
193facb3 686 return (l.artificial_depth != 0);
edb3359d
DJ
687}
688
7a424e99
AC
689int
690frame_id_eq (struct frame_id l, struct frame_id r)
691{
d0a55772 692 int eq;
1c4d3f96 693
5ce0145d
PA
694 if (l.stack_status == FID_STACK_INVALID && l.special_addr_p
695 && r.stack_status == FID_STACK_INVALID && r.special_addr_p)
005ca36a
JB
696 /* The outermost frame marker is equal to itself. This is the
697 dodgy thing about outer_frame_id, since between execution steps
698 we might step into another function - from which we can't
699 unwind either. More thought required to get rid of
700 outer_frame_id. */
701 eq = 1;
5ce0145d 702 else if (l.stack_status == FID_STACK_INVALID
f0d4ba1f 703 || r.stack_status == FID_STACK_INVALID)
12b0b6de
UW
704 /* Like a NaN, if either ID is invalid, the result is false.
705 Note that a frame ID is invalid iff it is the null frame ID. */
d0a55772 706 eq = 0;
5ce0145d 707 else if (l.stack_status != r.stack_status || l.stack_addr != r.stack_addr)
d0a55772
AC
708 /* If .stack addresses are different, the frames are different. */
709 eq = 0;
edb3359d
DJ
710 else if (l.code_addr_p && r.code_addr_p && l.code_addr != r.code_addr)
711 /* An invalid code addr is a wild card. If .code addresses are
712 different, the frames are different. */
48c66725 713 eq = 0;
edb3359d
DJ
714 else if (l.special_addr_p && r.special_addr_p
715 && l.special_addr != r.special_addr)
716 /* An invalid special addr is a wild card (or unused). Otherwise
717 if special addresses are different, the frames are different. */
718 eq = 0;
193facb3
JK
719 else if (l.artificial_depth != r.artificial_depth)
720 /* If artifical depths are different, the frames must be different. */
edb3359d
DJ
721 eq = 0;
722 else
48c66725 723 /* Frames are equal. */
d0a55772 724 eq = 1;
edb3359d 725
7f78e237
AC
726 if (frame_debug)
727 {
728 fprintf_unfiltered (gdb_stdlog, "{ frame_id_eq (l=");
729 fprint_frame_id (gdb_stdlog, l);
730 fprintf_unfiltered (gdb_stdlog, ",r=");
731 fprint_frame_id (gdb_stdlog, r);
732 fprintf_unfiltered (gdb_stdlog, ") -> %d }\n", eq);
733 }
d0a55772 734 return eq;
7a424e99
AC
735}
736
a45ae3ed
UW
737/* Safety net to check whether frame ID L should be inner to
738 frame ID R, according to their stack addresses.
739
740 This method cannot be used to compare arbitrary frames, as the
741 ranges of valid stack addresses may be discontiguous (e.g. due
742 to sigaltstack).
743
744 However, it can be used as safety net to discover invalid frame
0963b4bd 745 IDs in certain circumstances. Assuming that NEXT is the immediate
f06eadd9 746 inner frame to THIS and that NEXT and THIS are both NORMAL frames:
a45ae3ed 747
f06eadd9
JB
748 * The stack address of NEXT must be inner-than-or-equal to the stack
749 address of THIS.
a45ae3ed
UW
750
751 Therefore, if frame_id_inner (THIS, NEXT) holds, some unwind
752 error has occurred.
753
f06eadd9
JB
754 * If NEXT and THIS have different stack addresses, no other frame
755 in the frame chain may have a stack address in between.
a45ae3ed
UW
756
757 Therefore, if frame_id_inner (TEST, THIS) holds, but
758 frame_id_inner (TEST, NEXT) does not hold, TEST cannot refer
f06eadd9
JB
759 to a valid frame in the frame chain.
760
761 The sanity checks above cannot be performed when a SIGTRAMP frame
762 is involved, because signal handlers might be executed on a different
763 stack than the stack used by the routine that caused the signal
764 to be raised. This can happen for instance when a thread exceeds
0963b4bd 765 its maximum stack size. In this case, certain compilers implement
f06eadd9
JB
766 a stack overflow strategy that cause the handler to be run on a
767 different stack. */
a45ae3ed
UW
768
769static int
09a7aba8 770frame_id_inner (struct gdbarch *gdbarch, struct frame_id l, struct frame_id r)
7a424e99 771{
d0a55772 772 int inner;
1c4d3f96 773
5ce0145d
PA
774 if (l.stack_status != FID_STACK_VALID || r.stack_status != FID_STACK_VALID)
775 /* Like NaN, any operation involving an invalid ID always fails.
776 Likewise if either ID has an unavailable stack address. */
d0a55772 777 inner = 0;
193facb3 778 else if (l.artificial_depth > r.artificial_depth
edb3359d
DJ
779 && l.stack_addr == r.stack_addr
780 && l.code_addr_p == r.code_addr_p
781 && l.special_addr_p == r.special_addr_p
782 && l.special_addr == r.special_addr)
783 {
784 /* Same function, different inlined functions. */
3977b71f 785 const struct block *lb, *rb;
edb3359d
DJ
786
787 gdb_assert (l.code_addr_p && r.code_addr_p);
788
789 lb = block_for_pc (l.code_addr);
790 rb = block_for_pc (r.code_addr);
791
792 if (lb == NULL || rb == NULL)
793 /* Something's gone wrong. */
794 inner = 0;
795 else
796 /* This will return true if LB and RB are the same block, or
797 if the block with the smaller depth lexically encloses the
798 block with the greater depth. */
799 inner = contained_in (lb, rb);
800 }
d0a55772
AC
801 else
802 /* Only return non-zero when strictly inner than. Note that, per
803 comment in "frame.h", there is some fuzz here. Frameless
804 functions are not strictly inner than (same .stack but
48c66725 805 different .code and/or .special address). */
09a7aba8 806 inner = gdbarch_inner_than (gdbarch, l.stack_addr, r.stack_addr);
7f78e237
AC
807 if (frame_debug)
808 {
809 fprintf_unfiltered (gdb_stdlog, "{ frame_id_inner (l=");
810 fprint_frame_id (gdb_stdlog, l);
811 fprintf_unfiltered (gdb_stdlog, ",r=");
812 fprint_frame_id (gdb_stdlog, r);
813 fprintf_unfiltered (gdb_stdlog, ") -> %d }\n", inner);
814 }
d0a55772 815 return inner;
7a424e99
AC
816}
817
101dcfbe
AC
818struct frame_info *
819frame_find_by_id (struct frame_id id)
820{
a45ae3ed 821 struct frame_info *frame, *prev_frame;
101dcfbe
AC
822
823 /* ZERO denotes the null frame, let the caller decide what to do
824 about it. Should it instead return get_current_frame()? */
7a424e99 825 if (!frame_id_p (id))
101dcfbe
AC
826 return NULL;
827
df433d31
KB
828 /* Check for the sentinel frame. */
829 if (frame_id_eq (id, sentinel_frame_id))
830 return sentinel_frame;
831
b83e9eb7
JB
832 /* Try using the frame stash first. Finding it there removes the need
833 to perform the search by looping over all frames, which can be very
834 CPU-intensive if the number of frames is very high (the loop is O(n)
835 and get_prev_frame performs a series of checks that are relatively
836 expensive). This optimization is particularly useful when this function
837 is called from another function (such as value_fetch_lazy, case
838 VALUE_LVAL (val) == lval_register) which already loops over all frames,
839 making the overall behavior O(n^2). */
840 frame = frame_stash_find (id);
841 if (frame)
842 return frame;
843
a45ae3ed 844 for (frame = get_current_frame (); ; frame = prev_frame)
101dcfbe 845 {
fe978cb0 846 struct frame_id self = get_frame_id (frame);
bb9bcb69 847
fe978cb0 848 if (frame_id_eq (id, self))
7a424e99
AC
849 /* An exact match. */
850 return frame;
a45ae3ed
UW
851
852 prev_frame = get_prev_frame (frame);
853 if (!prev_frame)
854 return NULL;
855
856 /* As a safety net to avoid unnecessary backtracing while trying
857 to find an invalid ID, we check for a common situation where
858 we can detect from comparing stack addresses that no other
859 frame in the current frame chain can have this ID. See the
860 comment at frame_id_inner for details. */
861 if (get_frame_type (frame) == NORMAL_FRAME
fe978cb0 862 && !frame_id_inner (get_frame_arch (frame), id, self)
a45ae3ed
UW
863 && frame_id_inner (get_frame_arch (prev_frame), id,
864 get_frame_id (prev_frame)))
101dcfbe 865 return NULL;
101dcfbe
AC
866 }
867 return NULL;
868}
869
782d47df
PA
870static CORE_ADDR
871frame_unwind_pc (struct frame_info *this_frame)
f18c5a73 872{
782d47df 873 if (this_frame->prev_pc.status == CC_UNKNOWN)
f18c5a73 874 {
8bcb5208
AB
875 struct gdbarch *prev_gdbarch;
876 CORE_ADDR pc = 0;
877 int pc_p = 0;
878
879 /* The right way. The `pure' way. The one true way. This
880 method depends solely on the register-unwind code to
881 determine the value of registers in THIS frame, and hence
882 the value of this frame's PC (resume address). A typical
883 implementation is no more than:
884
885 frame_unwind_register (this_frame, ISA_PC_REGNUM, buf);
886 return extract_unsigned_integer (buf, size of ISA_PC_REGNUM);
887
888 Note: this method is very heavily dependent on a correct
889 register-unwind implementation, it pays to fix that
890 method first; this method is frame type agnostic, since
891 it only deals with register values, it works with any
892 frame. This is all in stark contrast to the old
893 FRAME_SAVED_PC which would try to directly handle all the
894 different ways that a PC could be unwound. */
895 prev_gdbarch = frame_unwind_arch (this_frame);
896
a70b8144 897 try
12cc2063 898 {
8bcb5208
AB
899 pc = gdbarch_unwind_pc (prev_gdbarch, this_frame);
900 pc_p = 1;
901 }
a70b8144 902 catch (const gdb_exception_RETURN_MASK_ERROR &ex)
8bcb5208
AB
903 {
904 if (ex.error == NOT_AVAILABLE_ERROR)
e3eebbd7 905 {
8bcb5208
AB
906 this_frame->prev_pc.status = CC_UNAVAILABLE;
907
908 if (frame_debug)
909 fprintf_unfiltered (gdb_stdlog,
910 "{ frame_unwind_pc (this_frame=%d)"
911 " -> <unavailable> }\n",
912 this_frame->level);
e3eebbd7 913 }
8bcb5208 914 else if (ex.error == OPTIMIZED_OUT_ERROR)
e3eebbd7 915 {
8bcb5208 916 this_frame->prev_pc.status = CC_NOT_SAVED;
492d29ea 917
e3eebbd7
PA
918 if (frame_debug)
919 fprintf_unfiltered (gdb_stdlog,
8bcb5208
AB
920 "{ frame_unwind_pc (this_frame=%d)"
921 " -> <not saved> }\n",
922 this_frame->level);
e3eebbd7 923 }
8bcb5208
AB
924 else
925 throw_exception (ex);
926 }
8bcb5208
AB
927
928 if (pc_p)
929 {
930 this_frame->prev_pc.value = pc;
931 this_frame->prev_pc.status = CC_VALUE;
932 if (frame_debug)
933 fprintf_unfiltered (gdb_stdlog,
934 "{ frame_unwind_pc (this_frame=%d) "
935 "-> %s }\n",
936 this_frame->level,
937 hex_string (this_frame->prev_pc.value));
12cc2063 938 }
f18c5a73 939 }
e3eebbd7 940
782d47df
PA
941 if (this_frame->prev_pc.status == CC_VALUE)
942 return this_frame->prev_pc.value;
943 else if (this_frame->prev_pc.status == CC_UNAVAILABLE)
e3eebbd7 944 throw_error (NOT_AVAILABLE_ERROR, _("PC not available"));
782d47df
PA
945 else if (this_frame->prev_pc.status == CC_NOT_SAVED)
946 throw_error (OPTIMIZED_OUT_ERROR, _("PC not saved"));
e3eebbd7 947 else
782d47df
PA
948 internal_error (__FILE__, __LINE__,
949 "unexpected prev_pc status: %d",
950 (int) this_frame->prev_pc.status);
f18c5a73
AC
951}
952
edb3359d
DJ
953CORE_ADDR
954frame_unwind_caller_pc (struct frame_info *this_frame)
955{
33b4777c
MM
956 this_frame = skip_artificial_frames (this_frame);
957
958 /* We must have a non-artificial frame. The caller is supposed to check
959 the result of frame_unwind_caller_id (), which returns NULL_FRAME_ID
960 in this case. */
961 gdb_assert (this_frame != NULL);
962
963 return frame_unwind_pc (this_frame);
edb3359d
DJ
964}
965
e3eebbd7
PA
966int
967get_frame_func_if_available (struct frame_info *this_frame, CORE_ADDR *pc)
be41e9f4 968{
ef02daa9
DJ
969 struct frame_info *next_frame = this_frame->next;
970
971 if (!next_frame->prev_func.p)
be41e9f4 972 {
e3eebbd7
PA
973 CORE_ADDR addr_in_block;
974
57bfe177
AC
975 /* Make certain that this, and not the adjacent, function is
976 found. */
e3eebbd7
PA
977 if (!get_frame_address_in_block_if_available (this_frame, &addr_in_block))
978 {
979 next_frame->prev_func.p = -1;
980 if (frame_debug)
981 fprintf_unfiltered (gdb_stdlog,
982 "{ get_frame_func (this_frame=%d)"
983 " -> unavailable }\n",
984 this_frame->level);
985 }
986 else
987 {
988 next_frame->prev_func.p = 1;
989 next_frame->prev_func.addr = get_pc_function_start (addr_in_block);
990 if (frame_debug)
991 fprintf_unfiltered (gdb_stdlog,
992 "{ get_frame_func (this_frame=%d) -> %s }\n",
993 this_frame->level,
994 hex_string (next_frame->prev_func.addr));
995 }
be41e9f4 996 }
e3eebbd7
PA
997
998 if (next_frame->prev_func.p < 0)
999 {
1000 *pc = -1;
1001 return 0;
1002 }
1003 else
1004 {
1005 *pc = next_frame->prev_func.addr;
1006 return 1;
1007 }
1008}
1009
1010CORE_ADDR
1011get_frame_func (struct frame_info *this_frame)
1012{
1013 CORE_ADDR pc;
1014
1015 if (!get_frame_func_if_available (this_frame, &pc))
1016 throw_error (NOT_AVAILABLE_ERROR, _("PC not available"));
1017
1018 return pc;
be41e9f4
AC
1019}
1020
daf6667d 1021std::unique_ptr<readonly_detached_regcache>
a81dcb05
AC
1022frame_save_as_regcache (struct frame_info *this_frame)
1023{
302abd6e
SM
1024 auto cooked_read = [this_frame] (int regnum, gdb_byte *buf)
1025 {
1026 if (!deprecated_frame_register_read (this_frame, regnum, buf))
1027 return REG_UNAVAILABLE;
1028 else
1029 return REG_VALID;
1030 };
1031
daf6667d 1032 std::unique_ptr<readonly_detached_regcache> regcache
302abd6e 1033 (new readonly_detached_regcache (get_frame_arch (this_frame), cooked_read));
1c4d3f96 1034
a81dcb05
AC
1035 return regcache;
1036}
1037
dbe9fe58 1038void
7a25a7c1
AC
1039frame_pop (struct frame_info *this_frame)
1040{
348473d5 1041 struct frame_info *prev_frame;
348473d5 1042
b89667eb
DE
1043 if (get_frame_type (this_frame) == DUMMY_FRAME)
1044 {
1045 /* Popping a dummy frame involves restoring more than just registers.
1046 dummy_frame_pop does all the work. */
00431a78 1047 dummy_frame_pop (get_frame_id (this_frame), inferior_thread ());
b89667eb
DE
1048 return;
1049 }
1050
348473d5 1051 /* Ensure that we have a frame to pop to. */
51d48146 1052 prev_frame = get_prev_frame_always (this_frame);
348473d5
NF
1053
1054 if (!prev_frame)
1055 error (_("Cannot pop the initial frame."));
1056
1ab3b62c
JK
1057 /* Ignore TAILCALL_FRAME type frames, they were executed already before
1058 entering THISFRAME. */
2f3ef606 1059 prev_frame = skip_tailcall_frames (prev_frame);
1ab3b62c 1060
33b4777c
MM
1061 if (prev_frame == NULL)
1062 error (_("Cannot find the caller frame."));
1063
c1bf6f65
AC
1064 /* Make a copy of all the register values unwound from this frame.
1065 Save them in a scratch buffer so that there isn't a race between
594f7785 1066 trying to extract the old values from the current regcache while
c1bf6f65 1067 at the same time writing new values into that same cache. */
daf6667d 1068 std::unique_ptr<readonly_detached_regcache> scratch
9ac86b52 1069 = frame_save_as_regcache (prev_frame);
c1bf6f65
AC
1070
1071 /* FIXME: cagney/2003-03-16: It should be possible to tell the
1072 target's register cache that it is about to be hit with a burst
1073 register transfer and that the sequence of register writes should
1074 be batched. The pair target_prepare_to_store() and
1075 target_store_registers() kind of suggest this functionality.
1076 Unfortunately, they don't implement it. Their lack of a formal
1077 definition can lead to targets writing back bogus values
1078 (arguably a bug in the target code mind). */
fc5b8736
YQ
1079 /* Now copy those saved registers into the current regcache. */
1080 get_current_regcache ()->restore (scratch.get ());
7a25a7c1 1081
7a25a7c1
AC
1082 /* We've made right mess of GDB's local state, just discard
1083 everything. */
35f196d9 1084 reinit_frame_cache ();
dbe9fe58 1085}
c689142b 1086
4f460812 1087void
0ee6c332 1088frame_register_unwind (frame_info *next_frame, int regnum,
0fdb4f18
PA
1089 int *optimizedp, int *unavailablep,
1090 enum lval_type *lvalp, CORE_ADDR *addrp,
1091 int *realnump, gdb_byte *bufferp)
4f460812 1092{
669fac23 1093 struct value *value;
7f78e237 1094
4f460812
AC
1095 /* Require all but BUFFERP to be valid. A NULL BUFFERP indicates
1096 that the value proper does not need to be fetched. */
1097 gdb_assert (optimizedp != NULL);
1098 gdb_assert (lvalp != NULL);
1099 gdb_assert (addrp != NULL);
1100 gdb_assert (realnump != NULL);
1101 /* gdb_assert (bufferp != NULL); */
1102
0ee6c332 1103 value = frame_unwind_register_value (next_frame, regnum);
4f460812 1104
669fac23 1105 gdb_assert (value != NULL);
c50901fd 1106
669fac23 1107 *optimizedp = value_optimized_out (value);
0fdb4f18 1108 *unavailablep = !value_entirely_available (value);
669fac23 1109 *lvalp = VALUE_LVAL (value);
42ae5230 1110 *addrp = value_address (value);
7c2ba67e
YQ
1111 if (*lvalp == lval_register)
1112 *realnump = VALUE_REGNUM (value);
1113 else
1114 *realnump = -1;
6dc42492 1115
0fdb4f18
PA
1116 if (bufferp)
1117 {
1118 if (!*optimizedp && !*unavailablep)
1119 memcpy (bufferp, value_contents_all (value),
1120 TYPE_LENGTH (value_type (value)));
1121 else
1122 memset (bufferp, 0, TYPE_LENGTH (value_type (value)));
1123 }
669fac23
DJ
1124
1125 /* Dispose of the new value. This prevents watchpoints from
1126 trying to watch the saved frame pointer. */
1127 release_value (value);
4f460812
AC
1128}
1129
a216a322
AC
1130void
1131frame_register (struct frame_info *frame, int regnum,
0fdb4f18 1132 int *optimizedp, int *unavailablep, enum lval_type *lvalp,
10c42a71 1133 CORE_ADDR *addrp, int *realnump, gdb_byte *bufferp)
a216a322
AC
1134{
1135 /* Require all but BUFFERP to be valid. A NULL BUFFERP indicates
1136 that the value proper does not need to be fetched. */
1137 gdb_assert (optimizedp != NULL);
1138 gdb_assert (lvalp != NULL);
1139 gdb_assert (addrp != NULL);
1140 gdb_assert (realnump != NULL);
1141 /* gdb_assert (bufferp != NULL); */
1142
a94dd1fd
AC
1143 /* Obtain the register value by unwinding the register from the next
1144 (more inner frame). */
1145 gdb_assert (frame != NULL && frame->next != NULL);
0fdb4f18
PA
1146 frame_register_unwind (frame->next, regnum, optimizedp, unavailablep,
1147 lvalp, addrp, realnump, bufferp);
a216a322
AC
1148}
1149
135c175f 1150void
0ee6c332 1151frame_unwind_register (frame_info *next_frame, int regnum, gdb_byte *buf)
135c175f
AC
1152{
1153 int optimized;
0fdb4f18 1154 int unavailable;
135c175f
AC
1155 CORE_ADDR addr;
1156 int realnum;
1157 enum lval_type lval;
1c4d3f96 1158
0ee6c332 1159 frame_register_unwind (next_frame, regnum, &optimized, &unavailable,
0fdb4f18 1160 &lval, &addr, &realnum, buf);
8fbca658
PA
1161
1162 if (optimized)
710409a2
PA
1163 throw_error (OPTIMIZED_OUT_ERROR,
1164 _("Register %d was not saved"), regnum);
8fbca658
PA
1165 if (unavailable)
1166 throw_error (NOT_AVAILABLE_ERROR,
1167 _("Register %d is not available"), regnum);
5b181d62
AC
1168}
1169
f0e7d0e8
AC
1170void
1171get_frame_register (struct frame_info *frame,
10c42a71 1172 int regnum, gdb_byte *buf)
f0e7d0e8
AC
1173{
1174 frame_unwind_register (frame->next, regnum, buf);
1175}
1176
669fac23 1177struct value *
0ee6c332 1178frame_unwind_register_value (frame_info *next_frame, int regnum)
669fac23 1179{
36f15f55 1180 struct gdbarch *gdbarch;
669fac23
DJ
1181 struct value *value;
1182
0ee6c332
SM
1183 gdb_assert (next_frame != NULL);
1184 gdbarch = frame_unwind_arch (next_frame);
669fac23
DJ
1185
1186 if (frame_debug)
1187 {
3e43a32a
MS
1188 fprintf_unfiltered (gdb_stdlog,
1189 "{ frame_unwind_register_value "
1190 "(frame=%d,regnum=%d(%s),...) ",
0ee6c332 1191 next_frame->level, regnum,
36f15f55 1192 user_reg_map_regnum_to_name (gdbarch, regnum));
669fac23
DJ
1193 }
1194
1195 /* Find the unwinder. */
0ee6c332
SM
1196 if (next_frame->unwind == NULL)
1197 frame_unwind_find_by_frame (next_frame, &next_frame->prologue_cache);
669fac23
DJ
1198
1199 /* Ask this frame to unwind its register. */
0ee6c332
SM
1200 value = next_frame->unwind->prev_register (next_frame,
1201 &next_frame->prologue_cache,
1202 regnum);
669fac23
DJ
1203
1204 if (frame_debug)
1205 {
1206 fprintf_unfiltered (gdb_stdlog, "->");
1207 if (value_optimized_out (value))
f6c01fc5
AB
1208 {
1209 fprintf_unfiltered (gdb_stdlog, " ");
1210 val_print_optimized_out (value, gdb_stdlog);
1211 }
669fac23
DJ
1212 else
1213 {
1214 if (VALUE_LVAL (value) == lval_register)
1215 fprintf_unfiltered (gdb_stdlog, " register=%d",
1216 VALUE_REGNUM (value));
1217 else if (VALUE_LVAL (value) == lval_memory)
5af949e3
UW
1218 fprintf_unfiltered (gdb_stdlog, " address=%s",
1219 paddress (gdbarch,
1220 value_address (value)));
669fac23
DJ
1221 else
1222 fprintf_unfiltered (gdb_stdlog, " computed");
1223
1224 if (value_lazy (value))
1225 fprintf_unfiltered (gdb_stdlog, " lazy");
1226 else
1227 {
1228 int i;
1229 const gdb_byte *buf = value_contents (value);
1230
1231 fprintf_unfiltered (gdb_stdlog, " bytes=");
1232 fprintf_unfiltered (gdb_stdlog, "[");
36f15f55 1233 for (i = 0; i < register_size (gdbarch, regnum); i++)
669fac23
DJ
1234 fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
1235 fprintf_unfiltered (gdb_stdlog, "]");
1236 }
1237 }
1238
1239 fprintf_unfiltered (gdb_stdlog, " }\n");
1240 }
1241
1242 return value;
1243}
1244
1245struct value *
1246get_frame_register_value (struct frame_info *frame, int regnum)
1247{
1248 return frame_unwind_register_value (frame->next, regnum);
1249}
1250
f0e7d0e8 1251LONGEST
0ee6c332 1252frame_unwind_register_signed (frame_info *next_frame, int regnum)
f0e7d0e8 1253{
0ee6c332 1254 struct gdbarch *gdbarch = frame_unwind_arch (next_frame);
e17a4113
UW
1255 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1256 int size = register_size (gdbarch, regnum);
0ee6c332 1257 struct value *value = frame_unwind_register_value (next_frame, regnum);
1c4d3f96 1258
9f7fb0aa
AH
1259 gdb_assert (value != NULL);
1260
1261 if (value_optimized_out (value))
1262 {
1263 throw_error (OPTIMIZED_OUT_ERROR,
1264 _("Register %d was not saved"), regnum);
1265 }
1266 if (!value_entirely_available (value))
1267 {
1268 throw_error (NOT_AVAILABLE_ERROR,
1269 _("Register %d is not available"), regnum);
1270 }
1271
1272 LONGEST r = extract_signed_integer (value_contents_all (value), size,
1273 byte_order);
1274
1275 release_value (value);
9f7fb0aa 1276 return r;
f0e7d0e8
AC
1277}
1278
1279LONGEST
1280get_frame_register_signed (struct frame_info *frame, int regnum)
1281{
1282 return frame_unwind_register_signed (frame->next, regnum);
1283}
1284
1285ULONGEST
0ee6c332 1286frame_unwind_register_unsigned (frame_info *next_frame, int regnum)
f0e7d0e8 1287{
0ee6c332 1288 struct gdbarch *gdbarch = frame_unwind_arch (next_frame);
e17a4113
UW
1289 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1290 int size = register_size (gdbarch, regnum);
0ee6c332 1291 struct value *value = frame_unwind_register_value (next_frame, regnum);
1c4d3f96 1292
2cad08ea
YQ
1293 gdb_assert (value != NULL);
1294
1295 if (value_optimized_out (value))
1296 {
1297 throw_error (OPTIMIZED_OUT_ERROR,
1298 _("Register %d was not saved"), regnum);
1299 }
1300 if (!value_entirely_available (value))
1301 {
1302 throw_error (NOT_AVAILABLE_ERROR,
1303 _("Register %d is not available"), regnum);
1304 }
1305
1306 ULONGEST r = extract_unsigned_integer (value_contents_all (value), size,
1307 byte_order);
1308
1309 release_value (value);
2cad08ea 1310 return r;
f0e7d0e8
AC
1311}
1312
1313ULONGEST
1314get_frame_register_unsigned (struct frame_info *frame, int regnum)
1315{
1316 return frame_unwind_register_unsigned (frame->next, regnum);
1317}
1318
ad5f7d6e
PA
1319int
1320read_frame_register_unsigned (struct frame_info *frame, int regnum,
1321 ULONGEST *val)
1322{
1323 struct value *regval = get_frame_register_value (frame, regnum);
1324
1325 if (!value_optimized_out (regval)
1326 && value_entirely_available (regval))
1327 {
1328 struct gdbarch *gdbarch = get_frame_arch (frame);
1329 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1330 int size = register_size (gdbarch, VALUE_REGNUM (regval));
1331
1332 *val = extract_unsigned_integer (value_contents (regval), size, byte_order);
1333 return 1;
1334 }
1335
1336 return 0;
1337}
1338
ff2e87ac 1339void
10c42a71
AC
1340put_frame_register (struct frame_info *frame, int regnum,
1341 const gdb_byte *buf)
ff2e87ac
AC
1342{
1343 struct gdbarch *gdbarch = get_frame_arch (frame);
1344 int realnum;
1345 int optim;
0fdb4f18 1346 int unavail;
ff2e87ac
AC
1347 enum lval_type lval;
1348 CORE_ADDR addr;
1c4d3f96 1349
0fdb4f18
PA
1350 frame_register (frame, regnum, &optim, &unavail,
1351 &lval, &addr, &realnum, NULL);
ff2e87ac 1352 if (optim)
901461f8 1353 error (_("Attempt to assign to a register that was not saved."));
ff2e87ac
AC
1354 switch (lval)
1355 {
1356 case lval_memory:
1357 {
954b50b3 1358 write_memory (addr, buf, register_size (gdbarch, regnum));
ff2e87ac
AC
1359 break;
1360 }
1361 case lval_register:
b66f5587 1362 get_current_regcache ()->cooked_write (realnum, buf);
ff2e87ac
AC
1363 break;
1364 default:
8a3fe4f8 1365 error (_("Attempt to assign to an unmodifiable value."));
ff2e87ac
AC
1366 }
1367}
1368
b2c7d45a
JB
1369/* This function is deprecated. Use get_frame_register_value instead,
1370 which provides more accurate information.
d65fe839 1371
cda5a58a 1372 Find and return the value of REGNUM for the specified stack frame.
5bc602c7 1373 The number of bytes copied is REGISTER_SIZE (REGNUM).
d65fe839 1374
cda5a58a 1375 Returns 0 if the register value could not be found. */
d65fe839 1376
cda5a58a 1377int
ca9d61b9 1378deprecated_frame_register_read (struct frame_info *frame, int regnum,
10c42a71 1379 gdb_byte *myaddr)
d65fe839 1380{
a216a322 1381 int optimized;
0fdb4f18 1382 int unavailable;
a216a322
AC
1383 enum lval_type lval;
1384 CORE_ADDR addr;
1385 int realnum;
1c4d3f96 1386
0fdb4f18
PA
1387 frame_register (frame, regnum, &optimized, &unavailable,
1388 &lval, &addr, &realnum, myaddr);
d65fe839 1389
0fdb4f18 1390 return !optimized && !unavailable;
d65fe839 1391}
e36180d7 1392
00fa51f6
UW
1393int
1394get_frame_register_bytes (struct frame_info *frame, int regnum,
8dccd430
PA
1395 CORE_ADDR offset, int len, gdb_byte *myaddr,
1396 int *optimizedp, int *unavailablep)
00fa51f6
UW
1397{
1398 struct gdbarch *gdbarch = get_frame_arch (frame);
3f27f2a4
AS
1399 int i;
1400 int maxsize;
68e007ca 1401 int numregs;
00fa51f6
UW
1402
1403 /* Skip registers wholly inside of OFFSET. */
1404 while (offset >= register_size (gdbarch, regnum))
1405 {
1406 offset -= register_size (gdbarch, regnum);
1407 regnum++;
1408 }
1409
26fae1d6
AS
1410 /* Ensure that we will not read beyond the end of the register file.
1411 This can only ever happen if the debug information is bad. */
3f27f2a4 1412 maxsize = -offset;
f6efe3f8 1413 numregs = gdbarch_num_cooked_regs (gdbarch);
68e007ca 1414 for (i = regnum; i < numregs; i++)
3f27f2a4
AS
1415 {
1416 int thissize = register_size (gdbarch, i);
bb9bcb69 1417
3f27f2a4 1418 if (thissize == 0)
26fae1d6 1419 break; /* This register is not available on this architecture. */
3f27f2a4
AS
1420 maxsize += thissize;
1421 }
1422 if (len > maxsize)
8dccd430
PA
1423 error (_("Bad debug information detected: "
1424 "Attempt to read %d bytes from registers."), len);
3f27f2a4 1425
00fa51f6
UW
1426 /* Copy the data. */
1427 while (len > 0)
1428 {
1429 int curr_len = register_size (gdbarch, regnum) - offset;
bb9bcb69 1430
00fa51f6
UW
1431 if (curr_len > len)
1432 curr_len = len;
1433
1434 if (curr_len == register_size (gdbarch, regnum))
1435 {
8dccd430
PA
1436 enum lval_type lval;
1437 CORE_ADDR addr;
1438 int realnum;
1439
1440 frame_register (frame, regnum, optimizedp, unavailablep,
1441 &lval, &addr, &realnum, myaddr);
1442 if (*optimizedp || *unavailablep)
00fa51f6
UW
1443 return 0;
1444 }
1445 else
1446 {
db3a1dc7
AH
1447 struct value *value = frame_unwind_register_value (frame->next,
1448 regnum);
1449 gdb_assert (value != NULL);
1450 *optimizedp = value_optimized_out (value);
1451 *unavailablep = !value_entirely_available (value);
bb9bcb69 1452
8dccd430 1453 if (*optimizedp || *unavailablep)
db3a1dc7
AH
1454 {
1455 release_value (value);
db3a1dc7
AH
1456 return 0;
1457 }
1458 memcpy (myaddr, value_contents_all (value) + offset, curr_len);
1459 release_value (value);
00fa51f6
UW
1460 }
1461
765f065a 1462 myaddr += curr_len;
00fa51f6
UW
1463 len -= curr_len;
1464 offset = 0;
1465 regnum++;
1466 }
1467
8dccd430
PA
1468 *optimizedp = 0;
1469 *unavailablep = 0;
00fa51f6
UW
1470 return 1;
1471}
1472
1473void
1474put_frame_register_bytes (struct frame_info *frame, int regnum,
1475 CORE_ADDR offset, int len, const gdb_byte *myaddr)
1476{
1477 struct gdbarch *gdbarch = get_frame_arch (frame);
1478
1479 /* Skip registers wholly inside of OFFSET. */
1480 while (offset >= register_size (gdbarch, regnum))
1481 {
1482 offset -= register_size (gdbarch, regnum);
1483 regnum++;
1484 }
1485
1486 /* Copy the data. */
1487 while (len > 0)
1488 {
1489 int curr_len = register_size (gdbarch, regnum) - offset;
bb9bcb69 1490
00fa51f6
UW
1491 if (curr_len > len)
1492 curr_len = len;
1493
1494 if (curr_len == register_size (gdbarch, regnum))
1495 {
1496 put_frame_register (frame, regnum, myaddr);
1497 }
1498 else
1499 {
db3a1dc7
AH
1500 struct value *value = frame_unwind_register_value (frame->next,
1501 regnum);
1502 gdb_assert (value != NULL);
1503
1504 memcpy ((char *) value_contents_writeable (value) + offset, myaddr,
1505 curr_len);
1506 put_frame_register (frame, regnum, value_contents_raw (value));
1507 release_value (value);
00fa51f6
UW
1508 }
1509
765f065a 1510 myaddr += curr_len;
00fa51f6
UW
1511 len -= curr_len;
1512 offset = 0;
1513 regnum++;
1514 }
1515}
e36180d7 1516
a94dd1fd
AC
1517/* Create a sentinel frame. */
1518
b9362cc7 1519static struct frame_info *
6c95b8df 1520create_sentinel_frame (struct program_space *pspace, struct regcache *regcache)
a94dd1fd
AC
1521{
1522 struct frame_info *frame = FRAME_OBSTACK_ZALLOC (struct frame_info);
1c4d3f96 1523
a94dd1fd 1524 frame->level = -1;
6c95b8df 1525 frame->pspace = pspace;
a01bda52 1526 frame->aspace = regcache->aspace ();
a94dd1fd
AC
1527 /* Explicitly initialize the sentinel frame's cache. Provide it
1528 with the underlying regcache. In the future additional
1529 information, such as the frame's thread will be added. */
6dc42492 1530 frame->prologue_cache = sentinel_frame_cache (regcache);
a94dd1fd 1531 /* For the moment there is only one sentinel frame implementation. */
39d7b0e2 1532 frame->unwind = &sentinel_frame_unwind;
a94dd1fd
AC
1533 /* Link this frame back to itself. The frame is self referential
1534 (the unwound PC is the same as the pc), so make it so. */
1535 frame->next = frame;
df433d31 1536 /* The sentinel frame has a special ID. */
d0a55772 1537 frame->this_id.p = 1;
df433d31 1538 frame->this_id.value = sentinel_frame_id;
7f78e237
AC
1539 if (frame_debug)
1540 {
1541 fprintf_unfiltered (gdb_stdlog, "{ create_sentinel_frame (...) -> ");
1542 fprint_frame (gdb_stdlog, frame);
1543 fprintf_unfiltered (gdb_stdlog, " }\n");
1544 }
a94dd1fd
AC
1545 return frame;
1546}
1547
4c1e7e9d
AC
1548/* Cache for frame addresses already read by gdb. Valid only while
1549 inferior is stopped. Control variables for the frame cache should
1550 be local to this module. */
1551
1552static struct obstack frame_cache_obstack;
1553
1554void *
479ab5a0 1555frame_obstack_zalloc (unsigned long size)
4c1e7e9d 1556{
479ab5a0 1557 void *data = obstack_alloc (&frame_cache_obstack, size);
1c4d3f96 1558
479ab5a0
AC
1559 memset (data, 0, size);
1560 return data;
4c1e7e9d
AC
1561}
1562
f245535c 1563static struct frame_info *get_prev_frame_always_1 (struct frame_info *this_frame);
4c1e7e9d
AC
1564
1565struct frame_info *
1566get_current_frame (void)
1567{
df433d31
KB
1568 struct frame_info *current_frame;
1569
0a1e1ca1
AC
1570 /* First check, and report, the lack of registers. Having GDB
1571 report "No stack!" or "No memory" when the target doesn't even
1572 have registers is very confusing. Besides, "printcmd.exp"
1573 explicitly checks that ``print $pc'' with no registers prints "No
1574 registers". */
a94dd1fd 1575 if (!target_has_registers)
8a3fe4f8 1576 error (_("No registers."));
0a1e1ca1 1577 if (!target_has_stack)
8a3fe4f8 1578 error (_("No stack."));
a94dd1fd 1579 if (!target_has_memory)
8a3fe4f8 1580 error (_("No memory."));
2ce6d6bf
SS
1581 /* Traceframes are effectively a substitute for the live inferior. */
1582 if (get_traceframe_number () < 0)
a911d87a 1583 validate_registers_access ();
8ea051c5 1584
df433d31
KB
1585 if (sentinel_frame == NULL)
1586 sentinel_frame =
1587 create_sentinel_frame (current_program_space, get_current_regcache ());
1588
1589 /* Set the current frame before computing the frame id, to avoid
1590 recursion inside compute_frame_id, in case the frame's
1591 unwinder decides to do a symbol lookup (which depends on the
1592 selected frame's block).
1593
1594 This call must always succeed. In particular, nothing inside
1595 get_prev_frame_always_1 should try to unwind from the
1596 sentinel frame, because that could fail/throw, and we always
1597 want to leave with the current frame created and linked in --
1598 we should never end up with the sentinel frame as outermost
1599 frame. */
1600 current_frame = get_prev_frame_always_1 (sentinel_frame);
1601 gdb_assert (current_frame != NULL);
f245535c 1602
4c1e7e9d
AC
1603 return current_frame;
1604}
1605
6e7f8b9c
AC
1606/* The "selected" stack frame is used by default for local and arg
1607 access. May be zero, for no selected frame. */
1608
206415a3 1609static struct frame_info *selected_frame;
6e7f8b9c 1610
9d49bdc2 1611int
8ea051c5
PA
1612has_stack_frames (void)
1613{
1614 if (!target_has_registers || !target_has_stack || !target_has_memory)
1615 return 0;
1616
861152be
LM
1617 /* Traceframes are effectively a substitute for the live inferior. */
1618 if (get_traceframe_number () < 0)
1619 {
1620 /* No current inferior, no frame. */
00431a78 1621 if (inferior_ptid == null_ptid)
861152be 1622 return 0;
d729566a 1623
00431a78 1624 thread_info *tp = inferior_thread ();
861152be 1625 /* Don't try to read from a dead thread. */
00431a78 1626 if (tp->state == THREAD_EXITED)
861152be 1627 return 0;
d729566a 1628
861152be 1629 /* ... or from a spinning thread. */
00431a78 1630 if (tp->executing)
861152be
LM
1631 return 0;
1632 }
8ea051c5
PA
1633
1634 return 1;
1635}
1636
bbde78fa 1637/* Return the selected frame. Always non-NULL (unless there isn't an
6e7f8b9c
AC
1638 inferior sufficient for creating a frame) in which case an error is
1639 thrown. */
1640
1641struct frame_info *
b04f3ab4 1642get_selected_frame (const char *message)
6e7f8b9c 1643{
206415a3 1644 if (selected_frame == NULL)
b04f3ab4 1645 {
8ea051c5 1646 if (message != NULL && !has_stack_frames ())
8a3fe4f8 1647 error (("%s"), message);
b04f3ab4
AC
1648 /* Hey! Don't trust this. It should really be re-finding the
1649 last selected frame of the currently selected thread. This,
1650 though, is better than nothing. */
1651 select_frame (get_current_frame ());
1652 }
6e7f8b9c 1653 /* There is always a frame. */
206415a3
DJ
1654 gdb_assert (selected_frame != NULL);
1655 return selected_frame;
6e7f8b9c
AC
1656}
1657
eb8c0621
TT
1658/* If there is a selected frame, return it. Otherwise, return NULL. */
1659
1660struct frame_info *
1661get_selected_frame_if_set (void)
1662{
1663 return selected_frame;
1664}
1665
bbde78fa 1666/* This is a variant of get_selected_frame() which can be called when
7dd88986 1667 the inferior does not have a frame; in that case it will return
bbde78fa 1668 NULL instead of calling error(). */
7dd88986
DJ
1669
1670struct frame_info *
1671deprecated_safe_get_selected_frame (void)
1672{
8ea051c5 1673 if (!has_stack_frames ())
7dd88986 1674 return NULL;
b04f3ab4 1675 return get_selected_frame (NULL);
7dd88986
DJ
1676}
1677
6e7f8b9c
AC
1678/* Select frame FI (or NULL - to invalidate the current frame). */
1679
1680void
1681select_frame (struct frame_info *fi)
1682{
206415a3 1683 selected_frame = fi;
bbde78fa 1684 /* NOTE: cagney/2002-05-04: FI can be NULL. This occurs when the
6e7f8b9c 1685 frame is being invalidated. */
6e7f8b9c
AC
1686
1687 /* FIXME: kseitz/2002-08-28: It would be nice to call
bbde78fa 1688 selected_frame_level_changed_event() right here, but due to limitations
6e7f8b9c 1689 in the current interfaces, we would end up flooding UIs with events
bbde78fa 1690 because select_frame() is used extensively internally.
6e7f8b9c
AC
1691
1692 Once we have frame-parameterized frame (and frame-related) commands,
1693 the event notification can be moved here, since this function will only
0963b4bd 1694 be called when the user's selected frame is being changed. */
6e7f8b9c
AC
1695
1696 /* Ensure that symbols for this frame are read in. Also, determine the
1697 source language of this frame, and switch to it if desired. */
1698 if (fi)
1699 {
e3eebbd7
PA
1700 CORE_ADDR pc;
1701
1702 /* We retrieve the frame's symtab by using the frame PC.
1703 However we cannot use the frame PC as-is, because it usually
1704 points to the instruction following the "call", which is
1705 sometimes the first instruction of another function. So we
1706 rely on get_frame_address_in_block() which provides us with a
1707 PC which is guaranteed to be inside the frame's code
1708 block. */
1709 if (get_frame_address_in_block_if_available (fi, &pc))
6e7f8b9c 1710 {
43f3e411 1711 struct compunit_symtab *cust = find_pc_compunit_symtab (pc);
e3eebbd7 1712
43f3e411
DE
1713 if (cust != NULL
1714 && compunit_language (cust) != current_language->la_language
1715 && compunit_language (cust) != language_unknown
e3eebbd7 1716 && language_mode == language_mode_auto)
43f3e411 1717 set_language (compunit_language (cust));
6e7f8b9c
AC
1718 }
1719 }
1720}
e3eebbd7 1721
4c1e7e9d
AC
1722/* Create an arbitrary (i.e. address specified by user) or innermost frame.
1723 Always returns a non-NULL value. */
1724
1725struct frame_info *
1726create_new_frame (CORE_ADDR addr, CORE_ADDR pc)
1727{
1728 struct frame_info *fi;
4c1e7e9d 1729
7f78e237
AC
1730 if (frame_debug)
1731 {
1732 fprintf_unfiltered (gdb_stdlog,
5af949e3
UW
1733 "{ create_new_frame (addr=%s, pc=%s) ",
1734 hex_string (addr), hex_string (pc));
7f78e237
AC
1735 }
1736
35d5d4ee 1737 fi = FRAME_OBSTACK_ZALLOC (struct frame_info);
4c1e7e9d 1738
3e43a32a
MS
1739 fi->next = create_sentinel_frame (current_program_space,
1740 get_current_regcache ());
7df05f2b 1741
1e275f79
PA
1742 /* Set/update this frame's cached PC value, found in the next frame.
1743 Do this before looking for this frame's unwinder. A sniffer is
1744 very likely to read this, and the corresponding unwinder is
1745 entitled to rely that the PC doesn't magically change. */
1746 fi->next->prev_pc.value = pc;
782d47df 1747 fi->next->prev_pc.status = CC_VALUE;
1e275f79 1748
6c95b8df
PA
1749 /* We currently assume that frame chain's can't cross spaces. */
1750 fi->pspace = fi->next->pspace;
1751 fi->aspace = fi->next->aspace;
1752
7df05f2b
AC
1753 /* Select/initialize both the unwind function and the frame's type
1754 based on the PC. */
9f9a8002 1755 frame_unwind_find_by_frame (fi, &fi->prologue_cache);
7df05f2b 1756
18adea3f 1757 fi->this_id.p = 1;
1e275f79 1758 fi->this_id.value = frame_id_build (addr, pc);
4c1e7e9d 1759
7f78e237
AC
1760 if (frame_debug)
1761 {
1762 fprintf_unfiltered (gdb_stdlog, "-> ");
1763 fprint_frame (gdb_stdlog, fi);
1764 fprintf_unfiltered (gdb_stdlog, " }\n");
1765 }
1766
4c1e7e9d
AC
1767 return fi;
1768}
1769
03febf99
AC
1770/* Return the frame that THIS_FRAME calls (NULL if THIS_FRAME is the
1771 innermost frame). Be careful to not fall off the bottom of the
1772 frame chain and onto the sentinel frame. */
4c1e7e9d
AC
1773
1774struct frame_info *
03febf99 1775get_next_frame (struct frame_info *this_frame)
4c1e7e9d 1776{
03febf99
AC
1777 if (this_frame->level > 0)
1778 return this_frame->next;
a94dd1fd
AC
1779 else
1780 return NULL;
4c1e7e9d
AC
1781}
1782
df433d31
KB
1783/* Return the frame that THIS_FRAME calls. If THIS_FRAME is the
1784 innermost (i.e. current) frame, return the sentinel frame. Thus,
1785 unlike get_next_frame(), NULL will never be returned. */
1786
1787struct frame_info *
1788get_next_frame_sentinel_okay (struct frame_info *this_frame)
1789{
1790 gdb_assert (this_frame != NULL);
1791
1792 /* Note that, due to the manner in which the sentinel frame is
1793 constructed, this_frame->next still works even when this_frame
1794 is the sentinel frame. But we disallow it here anyway because
1795 calling get_next_frame_sentinel_okay() on the sentinel frame
1796 is likely a coding error. */
1797 gdb_assert (this_frame != sentinel_frame);
1798
1799 return this_frame->next;
1800}
1801
f4c5303c
OF
1802/* Observer for the target_changed event. */
1803
2c0b251b 1804static void
f4c5303c
OF
1805frame_observer_target_changed (struct target_ops *target)
1806{
35f196d9 1807 reinit_frame_cache ();
f4c5303c
OF
1808}
1809
4c1e7e9d
AC
1810/* Flush the entire frame cache. */
1811
1812void
35f196d9 1813reinit_frame_cache (void)
4c1e7e9d 1814{
272dfcfd
AS
1815 struct frame_info *fi;
1816
1817 /* Tear down all frame caches. */
df433d31 1818 for (fi = sentinel_frame; fi != NULL; fi = fi->prev)
272dfcfd
AS
1819 {
1820 if (fi->prologue_cache && fi->unwind->dealloc_cache)
1821 fi->unwind->dealloc_cache (fi, fi->prologue_cache);
1822 if (fi->base_cache && fi->base->unwind->dealloc_cache)
1823 fi->base->unwind->dealloc_cache (fi, fi->base_cache);
1824 }
1825
0963b4bd 1826 /* Since we can't really be sure what the first object allocated was. */
4c1e7e9d
AC
1827 obstack_free (&frame_cache_obstack, 0);
1828 obstack_init (&frame_cache_obstack);
1829
df433d31 1830 if (sentinel_frame != NULL)
0d6ba1b1
DJ
1831 annotate_frames_invalid ();
1832
df433d31 1833 sentinel_frame = NULL; /* Invalidate cache */
4c1e7e9d 1834 select_frame (NULL);
b83e9eb7 1835 frame_stash_invalidate ();
7f78e237 1836 if (frame_debug)
35f196d9 1837 fprintf_unfiltered (gdb_stdlog, "{ reinit_frame_cache () }\n");
4c1e7e9d
AC
1838}
1839
e48af409
DJ
1840/* Find where a register is saved (in memory or another register).
1841 The result of frame_register_unwind is just where it is saved
5efde112 1842 relative to this particular frame. */
e48af409
DJ
1843
1844static void
1845frame_register_unwind_location (struct frame_info *this_frame, int regnum,
1846 int *optimizedp, enum lval_type *lvalp,
1847 CORE_ADDR *addrp, int *realnump)
1848{
1849 gdb_assert (this_frame == NULL || this_frame->level >= 0);
1850
1851 while (this_frame != NULL)
1852 {
0fdb4f18
PA
1853 int unavailable;
1854
1855 frame_register_unwind (this_frame, regnum, optimizedp, &unavailable,
1856 lvalp, addrp, realnump, NULL);
e48af409
DJ
1857
1858 if (*optimizedp)
1859 break;
1860
1861 if (*lvalp != lval_register)
1862 break;
1863
1864 regnum = *realnump;
1865 this_frame = get_next_frame (this_frame);
1866 }
1867}
1868
194cca41
PA
1869/* Get the previous raw frame, and check that it is not identical to
1870 same other frame frame already in the chain. If it is, there is
1871 most likely a stack cycle, so we discard it, and mark THIS_FRAME as
1872 outermost, with UNWIND_SAME_ID stop reason. Unlike the other
1873 validity tests, that compare THIS_FRAME and the next frame, we do
1874 this right after creating the previous frame, to avoid ever ending
1875 up with two frames with the same id in the frame chain. */
1876
1877static struct frame_info *
1878get_prev_frame_if_no_cycle (struct frame_info *this_frame)
1879{
1880 struct frame_info *prev_frame;
1881
1882 prev_frame = get_prev_frame_raw (this_frame);
f245535c
PA
1883
1884 /* Don't compute the frame id of the current frame yet. Unwinding
1885 the sentinel frame can fail (e.g., if the thread is gone and we
1886 can't thus read its registers). If we let the cycle detection
1887 code below try to compute a frame ID, then an error thrown from
1888 within the frame ID computation would result in the sentinel
1889 frame as outermost frame, which is bogus. Instead, we'll compute
1890 the current frame's ID lazily in get_frame_id. Note that there's
1891 no point in doing cycle detection when there's only one frame, so
1892 nothing is lost here. */
1893 if (prev_frame->level == 0)
1894 return prev_frame;
194cca41 1895
a70b8144 1896 try
194cca41 1897 {
09a5e1b5
TT
1898 compute_frame_id (prev_frame);
1899 if (!frame_stash_add (prev_frame))
938f0e2f 1900 {
09a5e1b5
TT
1901 /* Another frame with the same id was already in the stash. We just
1902 detected a cycle. */
1903 if (frame_debug)
1904 {
1905 fprintf_unfiltered (gdb_stdlog, "-> ");
1906 fprint_frame (gdb_stdlog, NULL);
1907 fprintf_unfiltered (gdb_stdlog, " // this frame has same ID }\n");
1908 }
1909 this_frame->stop_reason = UNWIND_SAME_ID;
1910 /* Unlink. */
1911 prev_frame->next = NULL;
1912 this_frame->prev = NULL;
1913 prev_frame = NULL;
938f0e2f 1914 }
09a5e1b5 1915 }
a70b8144 1916 catch (const gdb_exception_RETURN_MASK_ALL &ex)
09a5e1b5 1917 {
938f0e2f
AB
1918 prev_frame->next = NULL;
1919 this_frame->prev = NULL;
09a5e1b5
TT
1920
1921 throw_exception (ex);
194cca41 1922 }
938f0e2f 1923
938f0e2f 1924 return prev_frame;
194cca41
PA
1925}
1926
53e8a631
AB
1927/* Helper function for get_prev_frame_always, this is called inside a
1928 TRY_CATCH block. Return the frame that called THIS_FRAME or NULL if
1929 there is no such frame. This may throw an exception. */
eb4f72c5 1930
53e8a631
AB
1931static struct frame_info *
1932get_prev_frame_always_1 (struct frame_info *this_frame)
eb4f72c5 1933{
b1bd0044 1934 struct gdbarch *gdbarch;
eb4f72c5 1935
5613d8d3 1936 gdb_assert (this_frame != NULL);
b1bd0044 1937 gdbarch = get_frame_arch (this_frame);
5613d8d3 1938
7f78e237
AC
1939 if (frame_debug)
1940 {
51d48146 1941 fprintf_unfiltered (gdb_stdlog, "{ get_prev_frame_always (this_frame=");
7f78e237
AC
1942 if (this_frame != NULL)
1943 fprintf_unfiltered (gdb_stdlog, "%d", this_frame->level);
1944 else
1945 fprintf_unfiltered (gdb_stdlog, "<NULL>");
1946 fprintf_unfiltered (gdb_stdlog, ") ");
1947 }
1948
5613d8d3
AC
1949 /* Only try to do the unwind once. */
1950 if (this_frame->prev_p)
1951 {
1952 if (frame_debug)
1953 {
1954 fprintf_unfiltered (gdb_stdlog, "-> ");
1955 fprint_frame (gdb_stdlog, this_frame->prev);
1956 fprintf_unfiltered (gdb_stdlog, " // cached \n");
1957 }
1958 return this_frame->prev;
1959 }
8fa75a5d 1960
0d254d6f
DJ
1961 /* If the frame unwinder hasn't been selected yet, we must do so
1962 before setting prev_p; otherwise the check for misbehaved
1963 sniffers will think that this frame's sniffer tried to unwind
1964 further (see frame_cleanup_after_sniffer). */
1965 if (this_frame->unwind == NULL)
9f9a8002 1966 frame_unwind_find_by_frame (this_frame, &this_frame->prologue_cache);
8fa75a5d 1967
5613d8d3 1968 this_frame->prev_p = 1;
55feb689 1969 this_frame->stop_reason = UNWIND_NO_REASON;
5613d8d3 1970
edb3359d
DJ
1971 /* If we are unwinding from an inline frame, all of the below tests
1972 were already performed when we unwound from the next non-inline
1973 frame. We must skip them, since we can not get THIS_FRAME's ID
1974 until we have unwound all the way down to the previous non-inline
1975 frame. */
1976 if (get_frame_type (this_frame) == INLINE_FRAME)
194cca41 1977 return get_prev_frame_if_no_cycle (this_frame);
edb3359d 1978
8fbca658
PA
1979 /* Check that this frame is unwindable. If it isn't, don't try to
1980 unwind to the prev frame. */
1981 this_frame->stop_reason
1982 = this_frame->unwind->stop_reason (this_frame,
1983 &this_frame->prologue_cache);
1984
1985 if (this_frame->stop_reason != UNWIND_NO_REASON)
a7300869
PA
1986 {
1987 if (frame_debug)
1988 {
1989 enum unwind_stop_reason reason = this_frame->stop_reason;
1990
1991 fprintf_unfiltered (gdb_stdlog, "-> ");
1992 fprint_frame (gdb_stdlog, NULL);
1993 fprintf_unfiltered (gdb_stdlog, " // %s }\n",
1994 frame_stop_reason_symbol_string (reason));
1995 }
1996 return NULL;
1997 }
8fbca658 1998
5613d8d3
AC
1999 /* Check that this frame's ID isn't inner to (younger, below, next)
2000 the next frame. This happens when a frame unwind goes backwards.
f06eadd9
JB
2001 This check is valid only if this frame and the next frame are NORMAL.
2002 See the comment at frame_id_inner for details. */
2003 if (get_frame_type (this_frame) == NORMAL_FRAME
2004 && this_frame->next->unwind->type == NORMAL_FRAME
da361ebd
JB
2005 && frame_id_inner (get_frame_arch (this_frame->next),
2006 get_frame_id (this_frame),
09a7aba8 2007 get_frame_id (this_frame->next)))
55feb689 2008 {
ebedcab5
JK
2009 CORE_ADDR this_pc_in_block;
2010 struct minimal_symbol *morestack_msym;
2011 const char *morestack_name = NULL;
2012
2013 /* gcc -fsplit-stack __morestack can continue the stack anywhere. */
2014 this_pc_in_block = get_frame_address_in_block (this_frame);
7cbd4a93 2015 morestack_msym = lookup_minimal_symbol_by_pc (this_pc_in_block).minsym;
ebedcab5 2016 if (morestack_msym)
efd66ac6 2017 morestack_name = MSYMBOL_LINKAGE_NAME (morestack_msym);
ebedcab5 2018 if (!morestack_name || strcmp (morestack_name, "__morestack") != 0)
55feb689 2019 {
ebedcab5
JK
2020 if (frame_debug)
2021 {
2022 fprintf_unfiltered (gdb_stdlog, "-> ");
2023 fprint_frame (gdb_stdlog, NULL);
3e43a32a
MS
2024 fprintf_unfiltered (gdb_stdlog,
2025 " // this frame ID is inner }\n");
ebedcab5
JK
2026 }
2027 this_frame->stop_reason = UNWIND_INNER_ID;
2028 return NULL;
55feb689 2029 }
55feb689 2030 }
5613d8d3 2031
e48af409
DJ
2032 /* Check that this and the next frame do not unwind the PC register
2033 to the same memory location. If they do, then even though they
2034 have different frame IDs, the new frame will be bogus; two
2035 functions can't share a register save slot for the PC. This can
2036 happen when the prologue analyzer finds a stack adjustment, but
d57df5e4
DJ
2037 no PC save.
2038
2039 This check does assume that the "PC register" is roughly a
2040 traditional PC, even if the gdbarch_unwind_pc method adjusts
2041 it (we do not rely on the value, only on the unwound PC being
2042 dependent on this value). A potential improvement would be
2043 to have the frame prev_pc method and the gdbarch unwind_pc
2044 method set the same lval and location information as
2045 frame_register_unwind. */
e48af409 2046 if (this_frame->level > 0
b1bd0044 2047 && gdbarch_pc_regnum (gdbarch) >= 0
e48af409 2048 && get_frame_type (this_frame) == NORMAL_FRAME
edb3359d
DJ
2049 && (get_frame_type (this_frame->next) == NORMAL_FRAME
2050 || get_frame_type (this_frame->next) == INLINE_FRAME))
e48af409 2051 {
32276632 2052 int optimized, realnum, nrealnum;
e48af409
DJ
2053 enum lval_type lval, nlval;
2054 CORE_ADDR addr, naddr;
2055
3e8c568d 2056 frame_register_unwind_location (this_frame,
b1bd0044 2057 gdbarch_pc_regnum (gdbarch),
3e8c568d
UW
2058 &optimized, &lval, &addr, &realnum);
2059 frame_register_unwind_location (get_next_frame (this_frame),
b1bd0044 2060 gdbarch_pc_regnum (gdbarch),
32276632 2061 &optimized, &nlval, &naddr, &nrealnum);
e48af409 2062
32276632
DJ
2063 if ((lval == lval_memory && lval == nlval && addr == naddr)
2064 || (lval == lval_register && lval == nlval && realnum == nrealnum))
e48af409
DJ
2065 {
2066 if (frame_debug)
2067 {
2068 fprintf_unfiltered (gdb_stdlog, "-> ");
2069 fprint_frame (gdb_stdlog, NULL);
2070 fprintf_unfiltered (gdb_stdlog, " // no saved PC }\n");
2071 }
2072
2073 this_frame->stop_reason = UNWIND_NO_SAVED_PC;
2074 this_frame->prev = NULL;
2075 return NULL;
2076 }
2077 }
2078
194cca41 2079 return get_prev_frame_if_no_cycle (this_frame);
edb3359d
DJ
2080}
2081
53e8a631
AB
2082/* Return a "struct frame_info" corresponding to the frame that called
2083 THIS_FRAME. Returns NULL if there is no such frame.
2084
2085 Unlike get_prev_frame, this function always tries to unwind the
2086 frame. */
2087
2088struct frame_info *
2089get_prev_frame_always (struct frame_info *this_frame)
2090{
53e8a631
AB
2091 struct frame_info *prev_frame = NULL;
2092
a70b8144 2093 try
53e8a631
AB
2094 {
2095 prev_frame = get_prev_frame_always_1 (this_frame);
2096 }
a70b8144 2097 catch (const gdb_exception_RETURN_MASK_ERROR &ex)
53e8a631
AB
2098 {
2099 if (ex.error == MEMORY_ERROR)
2100 {
2101 this_frame->stop_reason = UNWIND_MEMORY_ERROR;
2102 if (ex.message != NULL)
2103 {
2104 char *stop_string;
2105 size_t size;
2106
2107 /* The error needs to live as long as the frame does.
2108 Allocate using stack local STOP_STRING then assign the
2109 pointer to the frame, this allows the STOP_STRING on the
2110 frame to be of type 'const char *'. */
3d6e9d23 2111 size = ex.message->size () + 1;
224c3ddb 2112 stop_string = (char *) frame_obstack_zalloc (size);
3d6e9d23 2113 memcpy (stop_string, ex.what (), size);
53e8a631
AB
2114 this_frame->stop_string = stop_string;
2115 }
2116 prev_frame = NULL;
2117 }
2118 else
2119 throw_exception (ex);
2120 }
2121
2122 return prev_frame;
2123}
2124
edb3359d
DJ
2125/* Construct a new "struct frame_info" and link it previous to
2126 this_frame. */
2127
2128static struct frame_info *
2129get_prev_frame_raw (struct frame_info *this_frame)
2130{
2131 struct frame_info *prev_frame;
2132
5613d8d3
AC
2133 /* Allocate the new frame but do not wire it in to the frame chain.
2134 Some (bad) code in INIT_FRAME_EXTRA_INFO tries to look along
2135 frame->next to pull some fancy tricks (of course such code is, by
2136 definition, recursive). Try to prevent it.
2137
2138 There is no reason to worry about memory leaks, should the
2139 remainder of the function fail. The allocated memory will be
2140 quickly reclaimed when the frame cache is flushed, and the `we've
2141 been here before' check above will stop repeated memory
2142 allocation calls. */
2143 prev_frame = FRAME_OBSTACK_ZALLOC (struct frame_info);
2144 prev_frame->level = this_frame->level + 1;
2145
6c95b8df
PA
2146 /* For now, assume we don't have frame chains crossing address
2147 spaces. */
2148 prev_frame->pspace = this_frame->pspace;
2149 prev_frame->aspace = this_frame->aspace;
2150
5613d8d3
AC
2151 /* Don't yet compute ->unwind (and hence ->type). It is computed
2152 on-demand in get_frame_type, frame_register_unwind, and
2153 get_frame_id. */
2154
2155 /* Don't yet compute the frame's ID. It is computed on-demand by
2156 get_frame_id(). */
2157
2158 /* The unwound frame ID is validate at the start of this function,
2159 as part of the logic to decide if that frame should be further
2160 unwound, and not here while the prev frame is being created.
2161 Doing this makes it possible for the user to examine a frame that
2162 has an invalid frame ID.
2163
2164 Some very old VAX code noted: [...] For the sake of argument,
2165 suppose that the stack is somewhat trashed (which is one reason
2166 that "info frame" exists). So, return 0 (indicating we don't
2167 know the address of the arglist) if we don't know what frame this
2168 frame calls. */
2169
2170 /* Link it in. */
2171 this_frame->prev = prev_frame;
2172 prev_frame->next = this_frame;
2173
2174 if (frame_debug)
2175 {
2176 fprintf_unfiltered (gdb_stdlog, "-> ");
2177 fprint_frame (gdb_stdlog, prev_frame);
2178 fprintf_unfiltered (gdb_stdlog, " }\n");
2179 }
2180
2181 return prev_frame;
2182}
2183
2184/* Debug routine to print a NULL frame being returned. */
2185
2186static void
d2bf72c0 2187frame_debug_got_null_frame (struct frame_info *this_frame,
5613d8d3
AC
2188 const char *reason)
2189{
2190 if (frame_debug)
2191 {
2192 fprintf_unfiltered (gdb_stdlog, "{ get_prev_frame (this_frame=");
2193 if (this_frame != NULL)
2194 fprintf_unfiltered (gdb_stdlog, "%d", this_frame->level);
2195 else
2196 fprintf_unfiltered (gdb_stdlog, "<NULL>");
2197 fprintf_unfiltered (gdb_stdlog, ") -> // %s}\n", reason);
2198 }
2199}
2200
c8cd9f6c
AC
2201/* Is this (non-sentinel) frame in the "main"() function? */
2202
2203static int
2204inside_main_func (struct frame_info *this_frame)
2205{
3b7344d5 2206 struct bound_minimal_symbol msymbol;
c8cd9f6c
AC
2207 CORE_ADDR maddr;
2208
2209 if (symfile_objfile == 0)
2210 return 0;
2211 msymbol = lookup_minimal_symbol (main_name (), NULL, symfile_objfile);
3b7344d5 2212 if (msymbol.minsym == NULL)
c8cd9f6c
AC
2213 return 0;
2214 /* Make certain that the code, and not descriptor, address is
2215 returned. */
b1bd0044 2216 maddr = gdbarch_convert_from_func_ptr_addr (get_frame_arch (this_frame),
77e371c0 2217 BMSYMBOL_VALUE_ADDRESS (msymbol),
8b88a78e 2218 current_top_target ());
c8cd9f6c
AC
2219 return maddr == get_frame_func (this_frame);
2220}
2221
2315ffec
RC
2222/* Test whether THIS_FRAME is inside the process entry point function. */
2223
2224static int
2225inside_entry_func (struct frame_info *this_frame)
2226{
abd0a5fa
JK
2227 CORE_ADDR entry_point;
2228
2229 if (!entry_point_address_query (&entry_point))
2230 return 0;
2231
2232 return get_frame_func (this_frame) == entry_point;
2315ffec
RC
2233}
2234
5613d8d3
AC
2235/* Return a structure containing various interesting information about
2236 the frame that called THIS_FRAME. Returns NULL if there is entier
2237 no such frame or the frame fails any of a set of target-independent
2238 condition that should terminate the frame chain (e.g., as unwinding
2239 past main()).
2240
2241 This function should not contain target-dependent tests, such as
2242 checking whether the program-counter is zero. */
2243
2244struct frame_info *
2245get_prev_frame (struct frame_info *this_frame)
2246{
e3eebbd7
PA
2247 CORE_ADDR frame_pc;
2248 int frame_pc_p;
2249
eb4f72c5
AC
2250 /* There is always a frame. If this assertion fails, suspect that
2251 something should be calling get_selected_frame() or
2252 get_current_frame(). */
03febf99 2253 gdb_assert (this_frame != NULL);
256ae5db
KB
2254
2255 /* If this_frame is the current frame, then compute and stash
2256 its frame id prior to fetching and computing the frame id of the
2257 previous frame. Otherwise, the cycle detection code in
2258 get_prev_frame_if_no_cycle() will not work correctly. When
2259 get_frame_id() is called later on, an assertion error will
2260 be triggered in the event of a cycle between the current
2261 frame and its previous frame. */
2262 if (this_frame->level == 0)
2263 get_frame_id (this_frame);
2264
e3eebbd7 2265 frame_pc_p = get_frame_pc_if_available (this_frame, &frame_pc);
eb4f72c5 2266
cc9bed83
RC
2267 /* tausq/2004-12-07: Dummy frames are skipped because it doesn't make much
2268 sense to stop unwinding at a dummy frame. One place where a dummy
2269 frame may have an address "inside_main_func" is on HPUX. On HPUX, the
2270 pcsqh register (space register for the instruction at the head of the
2271 instruction queue) cannot be written directly; the only way to set it
2272 is to branch to code that is in the target space. In order to implement
2273 frame dummies on HPUX, the called function is made to jump back to where
2274 the inferior was when the user function was called. If gdb was inside
2275 the main function when we created the dummy frame, the dummy frame will
2276 point inside the main function. */
03febf99 2277 if (this_frame->level >= 0
edb3359d 2278 && get_frame_type (this_frame) == NORMAL_FRAME
25d29d70 2279 && !backtrace_past_main
e3eebbd7 2280 && frame_pc_p
c8cd9f6c
AC
2281 && inside_main_func (this_frame))
2282 /* Don't unwind past main(). Note, this is done _before_ the
2283 frame has been marked as previously unwound. That way if the
2284 user later decides to enable unwinds past main(), that will
2285 automatically happen. */
ac2bd0a9 2286 {
d2bf72c0 2287 frame_debug_got_null_frame (this_frame, "inside main func");
ac2bd0a9
AC
2288 return NULL;
2289 }
eb4f72c5 2290
4a5e53e8
DJ
2291 /* If the user's backtrace limit has been exceeded, stop. We must
2292 add two to the current level; one of those accounts for backtrace_limit
2293 being 1-based and the level being 0-based, and the other accounts for
2294 the level of the new frame instead of the level of the current
2295 frame. */
2296 if (this_frame->level + 2 > backtrace_limit)
25d29d70 2297 {
d2bf72c0 2298 frame_debug_got_null_frame (this_frame, "backtrace limit exceeded");
4a5e53e8 2299 return NULL;
25d29d70
AC
2300 }
2301
0714963c
AC
2302 /* If we're already inside the entry function for the main objfile,
2303 then it isn't valid. Don't apply this test to a dummy frame -
bbde78fa 2304 dummy frame PCs typically land in the entry func. Don't apply
0714963c
AC
2305 this test to the sentinel frame. Sentinel frames should always
2306 be allowed to unwind. */
2f72f850
AC
2307 /* NOTE: cagney/2003-07-07: Fixed a bug in inside_main_func() -
2308 wasn't checking for "main" in the minimal symbols. With that
2309 fixed asm-source tests now stop in "main" instead of halting the
bbde78fa 2310 backtrace in weird and wonderful ways somewhere inside the entry
2f72f850
AC
2311 file. Suspect that tests for inside the entry file/func were
2312 added to work around that (now fixed) case. */
0714963c
AC
2313 /* NOTE: cagney/2003-07-15: danielj (if I'm reading it right)
2314 suggested having the inside_entry_func test use the
bbde78fa
JM
2315 inside_main_func() msymbol trick (along with entry_point_address()
2316 I guess) to determine the address range of the start function.
0714963c
AC
2317 That should provide a far better stopper than the current
2318 heuristics. */
2315ffec
RC
2319 /* NOTE: tausq/2004-10-09: this is needed if, for example, the compiler
2320 applied tail-call optimizations to main so that a function called
2321 from main returns directly to the caller of main. Since we don't
2322 stop at main, we should at least stop at the entry point of the
2323 application. */
edb3359d
DJ
2324 if (this_frame->level >= 0
2325 && get_frame_type (this_frame) == NORMAL_FRAME
2326 && !backtrace_past_entry
e3eebbd7 2327 && frame_pc_p
6e4c6c91 2328 && inside_entry_func (this_frame))
0714963c 2329 {
d2bf72c0 2330 frame_debug_got_null_frame (this_frame, "inside entry func");
0714963c
AC
2331 return NULL;
2332 }
2333
39ee2ff0
AC
2334 /* Assume that the only way to get a zero PC is through something
2335 like a SIGSEGV or a dummy frame, and hence that NORMAL frames
2336 will never unwind a zero PC. */
2337 if (this_frame->level > 0
edb3359d
DJ
2338 && (get_frame_type (this_frame) == NORMAL_FRAME
2339 || get_frame_type (this_frame) == INLINE_FRAME)
39ee2ff0 2340 && get_frame_type (get_next_frame (this_frame)) == NORMAL_FRAME
e3eebbd7 2341 && frame_pc_p && frame_pc == 0)
39ee2ff0 2342 {
d2bf72c0 2343 frame_debug_got_null_frame (this_frame, "zero PC");
39ee2ff0
AC
2344 return NULL;
2345 }
2346
51d48146 2347 return get_prev_frame_always (this_frame);
eb4f72c5
AC
2348}
2349
41b56feb
KB
2350struct frame_id
2351get_prev_frame_id_by_id (struct frame_id id)
2352{
2353 struct frame_id prev_id;
2354 struct frame_info *frame;
2355
2356 frame = frame_find_by_id (id);
2357
2358 if (frame != NULL)
2359 prev_id = get_frame_id (get_prev_frame (frame));
2360 else
2361 prev_id = null_frame_id;
2362
2363 return prev_id;
2364}
2365
4c1e7e9d
AC
2366CORE_ADDR
2367get_frame_pc (struct frame_info *frame)
2368{
d1340264 2369 gdb_assert (frame->next != NULL);
edb3359d 2370 return frame_unwind_pc (frame->next);
4c1e7e9d
AC
2371}
2372
e3eebbd7
PA
2373int
2374get_frame_pc_if_available (struct frame_info *frame, CORE_ADDR *pc)
2375{
e3eebbd7
PA
2376
2377 gdb_assert (frame->next != NULL);
2378
a70b8144 2379 try
e3eebbd7
PA
2380 {
2381 *pc = frame_unwind_pc (frame->next);
2382 }
a70b8144 2383 catch (const gdb_exception_RETURN_MASK_ERROR &ex)
e3eebbd7
PA
2384 {
2385 if (ex.error == NOT_AVAILABLE_ERROR)
2386 return 0;
2387 else
2388 throw_exception (ex);
2389 }
2390
2391 return 1;
2392}
2393
ad1193e7 2394/* Return an address that falls within THIS_FRAME's code block. */
8edd5d01
AC
2395
2396CORE_ADDR
ad1193e7 2397get_frame_address_in_block (struct frame_info *this_frame)
8edd5d01
AC
2398{
2399 /* A draft address. */
ad1193e7 2400 CORE_ADDR pc = get_frame_pc (this_frame);
8edd5d01 2401
ad1193e7
DJ
2402 struct frame_info *next_frame = this_frame->next;
2403
2404 /* Calling get_frame_pc returns the resume address for THIS_FRAME.
2405 Normally the resume address is inside the body of the function
2406 associated with THIS_FRAME, but there is a special case: when
2407 calling a function which the compiler knows will never return
2408 (for instance abort), the call may be the very last instruction
2409 in the calling function. The resume address will point after the
2410 call and may be at the beginning of a different function
2411 entirely.
2412
2413 If THIS_FRAME is a signal frame or dummy frame, then we should
2414 not adjust the unwound PC. For a dummy frame, GDB pushed the
2415 resume address manually onto the stack. For a signal frame, the
2416 OS may have pushed the resume address manually and invoked the
2417 handler (e.g. GNU/Linux), or invoked the trampoline which called
2418 the signal handler - but in either case the signal handler is
2419 expected to return to the trampoline. So in both of these
2420 cases we know that the resume address is executable and
2421 related. So we only need to adjust the PC if THIS_FRAME
2422 is a normal function.
2423
2424 If the program has been interrupted while THIS_FRAME is current,
2425 then clearly the resume address is inside the associated
2426 function. There are three kinds of interruption: debugger stop
2427 (next frame will be SENTINEL_FRAME), operating system
2428 signal or exception (next frame will be SIGTRAMP_FRAME),
2429 or debugger-induced function call (next frame will be
2430 DUMMY_FRAME). So we only need to adjust the PC if
2431 NEXT_FRAME is a normal function.
2432
2433 We check the type of NEXT_FRAME first, since it is already
2434 known; frame type is determined by the unwinder, and since
2435 we have THIS_FRAME we've already selected an unwinder for
edb3359d
DJ
2436 NEXT_FRAME.
2437
2438 If the next frame is inlined, we need to keep going until we find
2439 the real function - for instance, if a signal handler is invoked
2440 while in an inlined function, then the code address of the
2441 "calling" normal function should not be adjusted either. */
2442
2443 while (get_frame_type (next_frame) == INLINE_FRAME)
2444 next_frame = next_frame->next;
2445
111c6489
JK
2446 if ((get_frame_type (next_frame) == NORMAL_FRAME
2447 || get_frame_type (next_frame) == TAILCALL_FRAME)
edb3359d 2448 && (get_frame_type (this_frame) == NORMAL_FRAME
111c6489 2449 || get_frame_type (this_frame) == TAILCALL_FRAME
edb3359d 2450 || get_frame_type (this_frame) == INLINE_FRAME))
ad1193e7
DJ
2451 return pc - 1;
2452
2453 return pc;
8edd5d01
AC
2454}
2455
e3eebbd7
PA
2456int
2457get_frame_address_in_block_if_available (struct frame_info *this_frame,
2458 CORE_ADDR *pc)
2459{
e3eebbd7 2460
a70b8144 2461 try
e3eebbd7
PA
2462 {
2463 *pc = get_frame_address_in_block (this_frame);
2464 }
a70b8144 2465 catch (const gdb_exception_RETURN_MASK_ERROR &ex)
7556d4a4
PA
2466 {
2467 if (ex.error == NOT_AVAILABLE_ERROR)
2468 return 0;
2469 throw_exception (ex);
2470 }
2471
2472 return 1;
e3eebbd7
PA
2473}
2474
51abb421
PA
2475symtab_and_line
2476find_frame_sal (frame_info *frame)
1058bca7 2477{
edb3359d
DJ
2478 struct frame_info *next_frame;
2479 int notcurrent;
e3eebbd7 2480 CORE_ADDR pc;
edb3359d
DJ
2481
2482 /* If the next frame represents an inlined function call, this frame's
2483 sal is the "call site" of that inlined function, which can not
2484 be inferred from get_frame_pc. */
2485 next_frame = get_next_frame (frame);
2486 if (frame_inlined_callees (frame) > 0)
2487 {
2488 struct symbol *sym;
2489
2490 if (next_frame)
2491 sym = get_frame_function (next_frame);
2492 else
00431a78 2493 sym = inline_skipped_symbol (inferior_thread ());
edb3359d 2494
f3df5b08
MS
2495 /* If frame is inline, it certainly has symbols. */
2496 gdb_assert (sym);
51abb421
PA
2497
2498 symtab_and_line sal;
edb3359d
DJ
2499 if (SYMBOL_LINE (sym) != 0)
2500 {
51abb421
PA
2501 sal.symtab = symbol_symtab (sym);
2502 sal.line = SYMBOL_LINE (sym);
edb3359d
DJ
2503 }
2504 else
2505 /* If the symbol does not have a location, we don't know where
2506 the call site is. Do not pretend to. This is jarring, but
2507 we can't do much better. */
51abb421 2508 sal.pc = get_frame_pc (frame);
edb3359d 2509
51abb421
PA
2510 sal.pspace = get_frame_program_space (frame);
2511 return sal;
edb3359d
DJ
2512 }
2513
1058bca7
AC
2514 /* If FRAME is not the innermost frame, that normally means that
2515 FRAME->pc points at the return instruction (which is *after* the
2516 call instruction), and we want to get the line containing the
2517 call (because the call is where the user thinks the program is).
2518 However, if the next frame is either a SIGTRAMP_FRAME or a
2519 DUMMY_FRAME, then the next frame will contain a saved interrupt
2520 PC and such a PC indicates the current (rather than next)
2521 instruction/line, consequently, for such cases, want to get the
2522 line containing fi->pc. */
e3eebbd7 2523 if (!get_frame_pc_if_available (frame, &pc))
51abb421 2524 return {};
e3eebbd7
PA
2525
2526 notcurrent = (pc != get_frame_address_in_block (frame));
51abb421 2527 return find_pc_line (pc, notcurrent);
1058bca7
AC
2528}
2529
c193f6ac
AC
2530/* Per "frame.h", return the ``address'' of the frame. Code should
2531 really be using get_frame_id(). */
2532CORE_ADDR
2533get_frame_base (struct frame_info *fi)
2534{
d0a55772 2535 return get_frame_id (fi).stack_addr;
c193f6ac
AC
2536}
2537
da62e633
AC
2538/* High-level offsets into the frame. Used by the debug info. */
2539
2540CORE_ADDR
2541get_frame_base_address (struct frame_info *fi)
2542{
7df05f2b 2543 if (get_frame_type (fi) != NORMAL_FRAME)
da62e633
AC
2544 return 0;
2545 if (fi->base == NULL)
86c31399 2546 fi->base = frame_base_find_by_frame (fi);
da62e633
AC
2547 /* Sneaky: If the low-level unwind and high-level base code share a
2548 common unwinder, let them share the prologue cache. */
2549 if (fi->base->unwind == fi->unwind)
669fac23
DJ
2550 return fi->base->this_base (fi, &fi->prologue_cache);
2551 return fi->base->this_base (fi, &fi->base_cache);
da62e633
AC
2552}
2553
2554CORE_ADDR
2555get_frame_locals_address (struct frame_info *fi)
2556{
7df05f2b 2557 if (get_frame_type (fi) != NORMAL_FRAME)
da62e633
AC
2558 return 0;
2559 /* If there isn't a frame address method, find it. */
2560 if (fi->base == NULL)
86c31399 2561 fi->base = frame_base_find_by_frame (fi);
da62e633
AC
2562 /* Sneaky: If the low-level unwind and high-level base code share a
2563 common unwinder, let them share the prologue cache. */
2564 if (fi->base->unwind == fi->unwind)
669fac23
DJ
2565 return fi->base->this_locals (fi, &fi->prologue_cache);
2566 return fi->base->this_locals (fi, &fi->base_cache);
da62e633
AC
2567}
2568
2569CORE_ADDR
2570get_frame_args_address (struct frame_info *fi)
2571{
7df05f2b 2572 if (get_frame_type (fi) != NORMAL_FRAME)
da62e633
AC
2573 return 0;
2574 /* If there isn't a frame address method, find it. */
2575 if (fi->base == NULL)
86c31399 2576 fi->base = frame_base_find_by_frame (fi);
da62e633
AC
2577 /* Sneaky: If the low-level unwind and high-level base code share a
2578 common unwinder, let them share the prologue cache. */
2579 if (fi->base->unwind == fi->unwind)
669fac23
DJ
2580 return fi->base->this_args (fi, &fi->prologue_cache);
2581 return fi->base->this_args (fi, &fi->base_cache);
da62e633
AC
2582}
2583
e7802207
TT
2584/* Return true if the frame unwinder for frame FI is UNWINDER; false
2585 otherwise. */
2586
2587int
2588frame_unwinder_is (struct frame_info *fi, const struct frame_unwind *unwinder)
2589{
2590 if (fi->unwind == NULL)
9f9a8002 2591 frame_unwind_find_by_frame (fi, &fi->prologue_cache);
e7802207
TT
2592 return fi->unwind == unwinder;
2593}
2594
85cf597a
AC
2595/* Level of the selected frame: 0 for innermost, 1 for its caller, ...
2596 or -1 for a NULL frame. */
2597
2598int
2599frame_relative_level (struct frame_info *fi)
2600{
2601 if (fi == NULL)
2602 return -1;
2603 else
2604 return fi->level;
2605}
2606
5a203e44
AC
2607enum frame_type
2608get_frame_type (struct frame_info *frame)
2609{
c1bf6f65
AC
2610 if (frame->unwind == NULL)
2611 /* Initialize the frame's unwinder because that's what
2612 provides the frame's type. */
9f9a8002 2613 frame_unwind_find_by_frame (frame, &frame->prologue_cache);
c1bf6f65 2614 return frame->unwind->type;
5a203e44
AC
2615}
2616
6c95b8df
PA
2617struct program_space *
2618get_frame_program_space (struct frame_info *frame)
2619{
2620 return frame->pspace;
2621}
2622
2623struct program_space *
2624frame_unwind_program_space (struct frame_info *this_frame)
2625{
2626 gdb_assert (this_frame);
2627
2628 /* This is really a placeholder to keep the API consistent --- we
2629 assume for now that we don't have frame chains crossing
2630 spaces. */
2631 return this_frame->pspace;
2632}
2633
8b86c959 2634const address_space *
6c95b8df
PA
2635get_frame_address_space (struct frame_info *frame)
2636{
2637 return frame->aspace;
2638}
2639
ae1e7417
AC
2640/* Memory access methods. */
2641
2642void
10c42a71
AC
2643get_frame_memory (struct frame_info *this_frame, CORE_ADDR addr,
2644 gdb_byte *buf, int len)
ae1e7417
AC
2645{
2646 read_memory (addr, buf, len);
2647}
2648
2649LONGEST
2650get_frame_memory_signed (struct frame_info *this_frame, CORE_ADDR addr,
2651 int len)
2652{
e17a4113
UW
2653 struct gdbarch *gdbarch = get_frame_arch (this_frame);
2654 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1c4d3f96 2655
e17a4113 2656 return read_memory_integer (addr, len, byte_order);
ae1e7417
AC
2657}
2658
2659ULONGEST
2660get_frame_memory_unsigned (struct frame_info *this_frame, CORE_ADDR addr,
2661 int len)
2662{
e17a4113
UW
2663 struct gdbarch *gdbarch = get_frame_arch (this_frame);
2664 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1c4d3f96 2665
e17a4113 2666 return read_memory_unsigned_integer (addr, len, byte_order);
ae1e7417
AC
2667}
2668
304396fb
AC
2669int
2670safe_frame_unwind_memory (struct frame_info *this_frame,
10c42a71 2671 CORE_ADDR addr, gdb_byte *buf, int len)
304396fb 2672{
8defab1a
DJ
2673 /* NOTE: target_read_memory returns zero on success! */
2674 return !target_read_memory (addr, buf, len);
304396fb
AC
2675}
2676
36f15f55 2677/* Architecture methods. */
ae1e7417
AC
2678
2679struct gdbarch *
2680get_frame_arch (struct frame_info *this_frame)
2681{
36f15f55
UW
2682 return frame_unwind_arch (this_frame->next);
2683}
2684
2685struct gdbarch *
2686frame_unwind_arch (struct frame_info *next_frame)
2687{
2688 if (!next_frame->prev_arch.p)
2689 {
2690 struct gdbarch *arch;
0701b271 2691
36f15f55 2692 if (next_frame->unwind == NULL)
9f9a8002 2693 frame_unwind_find_by_frame (next_frame, &next_frame->prologue_cache);
36f15f55
UW
2694
2695 if (next_frame->unwind->prev_arch != NULL)
2696 arch = next_frame->unwind->prev_arch (next_frame,
2697 &next_frame->prologue_cache);
2698 else
2699 arch = get_frame_arch (next_frame);
2700
2701 next_frame->prev_arch.arch = arch;
2702 next_frame->prev_arch.p = 1;
2703 if (frame_debug)
2704 fprintf_unfiltered (gdb_stdlog,
2705 "{ frame_unwind_arch (next_frame=%d) -> %s }\n",
2706 next_frame->level,
2707 gdbarch_bfd_arch_info (arch)->printable_name);
2708 }
2709
2710 return next_frame->prev_arch.arch;
2711}
2712
2713struct gdbarch *
2714frame_unwind_caller_arch (struct frame_info *next_frame)
2715{
33b4777c
MM
2716 next_frame = skip_artificial_frames (next_frame);
2717
2718 /* We must have a non-artificial frame. The caller is supposed to check
2719 the result of frame_unwind_caller_id (), which returns NULL_FRAME_ID
2720 in this case. */
2721 gdb_assert (next_frame != NULL);
2722
2723 return frame_unwind_arch (next_frame);
ae1e7417
AC
2724}
2725
06096720
AB
2726/* Gets the language of FRAME. */
2727
2728enum language
2729get_frame_language (struct frame_info *frame)
2730{
2731 CORE_ADDR pc = 0;
2732 int pc_p = 0;
2733
2734 gdb_assert (frame!= NULL);
2735
2736 /* We determine the current frame language by looking up its
2737 associated symtab. To retrieve this symtab, we use the frame
2738 PC. However we cannot use the frame PC as is, because it
2739 usually points to the instruction following the "call", which
2740 is sometimes the first instruction of another function. So
2741 we rely on get_frame_address_in_block(), it provides us with
2742 a PC that is guaranteed to be inside the frame's code
2743 block. */
2744
a70b8144 2745 try
06096720
AB
2746 {
2747 pc = get_frame_address_in_block (frame);
2748 pc_p = 1;
2749 }
a70b8144 2750 catch (const gdb_exception_RETURN_MASK_ERROR &ex)
06096720
AB
2751 {
2752 if (ex.error != NOT_AVAILABLE_ERROR)
2753 throw_exception (ex);
2754 }
06096720
AB
2755
2756 if (pc_p)
2757 {
2758 struct compunit_symtab *cust = find_pc_compunit_symtab (pc);
2759
2760 if (cust != NULL)
2761 return compunit_language (cust);
2762 }
2763
2764 return language_unknown;
2765}
2766
a9e5fdc2
AC
2767/* Stack pointer methods. */
2768
2769CORE_ADDR
2770get_frame_sp (struct frame_info *this_frame)
2771{
d56907c1 2772 struct gdbarch *gdbarch = get_frame_arch (this_frame);
1c4d3f96 2773
8bcb5208
AB
2774 /* NOTE drow/2008-06-28: gdbarch_unwind_sp could be converted to
2775 operate on THIS_FRAME now. */
2776 return gdbarch_unwind_sp (gdbarch, this_frame->next);
a9e5fdc2
AC
2777}
2778
55feb689
DJ
2779/* Return the reason why we can't unwind past FRAME. */
2780
2781enum unwind_stop_reason
2782get_frame_unwind_stop_reason (struct frame_info *frame)
2783{
824344ca 2784 /* Fill-in STOP_REASON. */
51d48146 2785 get_prev_frame_always (frame);
824344ca 2786 gdb_assert (frame->prev_p);
55feb689 2787
55feb689
DJ
2788 return frame->stop_reason;
2789}
2790
2791/* Return a string explaining REASON. */
2792
2793const char *
70e38b8e 2794unwind_stop_reason_to_string (enum unwind_stop_reason reason)
55feb689
DJ
2795{
2796 switch (reason)
2797 {
2231f1fb
KP
2798#define SET(name, description) \
2799 case name: return _(description);
2800#include "unwind_stop_reasons.def"
2801#undef SET
55feb689 2802
55feb689
DJ
2803 default:
2804 internal_error (__FILE__, __LINE__,
2805 "Invalid frame stop reason");
2806 }
2807}
2808
53e8a631
AB
2809const char *
2810frame_stop_reason_string (struct frame_info *fi)
2811{
2812 gdb_assert (fi->prev_p);
2813 gdb_assert (fi->prev == NULL);
2814
2815 /* Return the specific string if we have one. */
2816 if (fi->stop_string != NULL)
2817 return fi->stop_string;
2818
2819 /* Return the generic string if we have nothing better. */
2820 return unwind_stop_reason_to_string (fi->stop_reason);
2821}
2822
a7300869
PA
2823/* Return the enum symbol name of REASON as a string, to use in debug
2824 output. */
2825
2826static const char *
2827frame_stop_reason_symbol_string (enum unwind_stop_reason reason)
2828{
2829 switch (reason)
2830 {
2831#define SET(name, description) \
2832 case name: return #name;
2833#include "unwind_stop_reasons.def"
2834#undef SET
2835
2836 default:
2837 internal_error (__FILE__, __LINE__,
2838 "Invalid frame stop reason");
2839 }
2840}
2841
669fac23
DJ
2842/* Clean up after a failed (wrong unwinder) attempt to unwind past
2843 FRAME. */
2844
30a9c02f
TT
2845void
2846frame_cleanup_after_sniffer (struct frame_info *frame)
669fac23 2847{
669fac23
DJ
2848 /* The sniffer should not allocate a prologue cache if it did not
2849 match this frame. */
2850 gdb_assert (frame->prologue_cache == NULL);
2851
2852 /* No sniffer should extend the frame chain; sniff based on what is
2853 already certain. */
2854 gdb_assert (!frame->prev_p);
2855
2856 /* The sniffer should not check the frame's ID; that's circular. */
2857 gdb_assert (!frame->this_id.p);
2858
2859 /* Clear cached fields dependent on the unwinder.
2860
2861 The previous PC is independent of the unwinder, but the previous
ad1193e7 2862 function is not (see get_frame_address_in_block). */
669fac23
DJ
2863 frame->prev_func.p = 0;
2864 frame->prev_func.addr = 0;
2865
2866 /* Discard the unwinder last, so that we can easily find it if an assertion
2867 in this function triggers. */
2868 frame->unwind = NULL;
2869}
2870
2871/* Set FRAME's unwinder temporarily, so that we can call a sniffer.
30a9c02f
TT
2872 If sniffing fails, the caller should be sure to call
2873 frame_cleanup_after_sniffer. */
669fac23 2874
30a9c02f 2875void
669fac23
DJ
2876frame_prepare_for_sniffer (struct frame_info *frame,
2877 const struct frame_unwind *unwind)
2878{
2879 gdb_assert (frame->unwind == NULL);
2880 frame->unwind = unwind;
669fac23
DJ
2881}
2882
25d29d70
AC
2883static struct cmd_list_element *set_backtrace_cmdlist;
2884static struct cmd_list_element *show_backtrace_cmdlist;
2885
2886static void
981a3fb3 2887set_backtrace_cmd (const char *args, int from_tty)
25d29d70 2888{
635c7e8a
TT
2889 help_list (set_backtrace_cmdlist, "set backtrace ", all_commands,
2890 gdb_stdout);
25d29d70
AC
2891}
2892
2893static void
981a3fb3 2894show_backtrace_cmd (const char *args, int from_tty)
25d29d70
AC
2895{
2896 cmd_show_list (show_backtrace_cmdlist, from_tty, "");
2897}
2898
4c1e7e9d
AC
2899void
2900_initialize_frame (void)
2901{
2902 obstack_init (&frame_cache_obstack);
eb4f72c5 2903
3de661e6
PM
2904 frame_stash_create ();
2905
76727919 2906 gdb::observers::target_changed.attach (frame_observer_target_changed);
f4c5303c 2907
1bedd215 2908 add_prefix_cmd ("backtrace", class_maintenance, set_backtrace_cmd, _("\
25d29d70 2909Set backtrace specific variables.\n\
1bedd215 2910Configure backtrace variables such as the backtrace limit"),
25d29d70
AC
2911 &set_backtrace_cmdlist, "set backtrace ",
2912 0/*allow-unknown*/, &setlist);
1bedd215 2913 add_prefix_cmd ("backtrace", class_maintenance, show_backtrace_cmd, _("\
25d29d70 2914Show backtrace specific variables\n\
1bedd215 2915Show backtrace variables such as the backtrace limit"),
25d29d70
AC
2916 &show_backtrace_cmdlist, "show backtrace ",
2917 0/*allow-unknown*/, &showlist);
2918
2919 add_setshow_boolean_cmd ("past-main", class_obscure,
7915a72c
AC
2920 &backtrace_past_main, _("\
2921Set whether backtraces should continue past \"main\"."), _("\
2922Show whether backtraces should continue past \"main\"."), _("\
eb4f72c5
AC
2923Normally the caller of \"main\" is not of interest, so GDB will terminate\n\
2924the backtrace at \"main\". Set this variable if you need to see the rest\n\
7915a72c 2925of the stack trace."),
2c5b56ce 2926 NULL,
920d2a44 2927 show_backtrace_past_main,
2c5b56ce 2928 &set_backtrace_cmdlist,
25d29d70
AC
2929 &show_backtrace_cmdlist);
2930
2315ffec 2931 add_setshow_boolean_cmd ("past-entry", class_obscure,
7915a72c
AC
2932 &backtrace_past_entry, _("\
2933Set whether backtraces should continue past the entry point of a program."),
2934 _("\
2935Show whether backtraces should continue past the entry point of a program."),
2936 _("\
2315ffec 2937Normally there are no callers beyond the entry point of a program, so GDB\n\
cce7e648 2938will terminate the backtrace there. Set this variable if you need to see\n\
7915a72c 2939the rest of the stack trace."),
2c5b56ce 2940 NULL,
920d2a44 2941 show_backtrace_past_entry,
2c5b56ce 2942 &set_backtrace_cmdlist,
2315ffec
RC
2943 &show_backtrace_cmdlist);
2944
883b9c6c
YQ
2945 add_setshow_uinteger_cmd ("limit", class_obscure,
2946 &backtrace_limit, _("\
7915a72c
AC
2947Set an upper bound on the number of backtrace levels."), _("\
2948Show the upper bound on the number of backtrace levels."), _("\
fec74868 2949No more than the specified number of frames can be displayed or examined.\n\
f81d1120 2950Literal \"unlimited\" or zero means no limit."),
883b9c6c
YQ
2951 NULL,
2952 show_backtrace_limit,
2953 &set_backtrace_cmdlist,
2954 &show_backtrace_cmdlist);
ac2bd0a9 2955
0963b4bd 2956 /* Debug this files internals. */
ccce17b0 2957 add_setshow_zuinteger_cmd ("frame", class_maintenance, &frame_debug, _("\
85c07804
AC
2958Set frame debugging."), _("\
2959Show frame debugging."), _("\
2960When non-zero, frame specific internal debugging is enabled."),
ccce17b0
YQ
2961 NULL,
2962 show_frame_debug,
2963 &setdebuglist, &showdebuglist);
4c1e7e9d 2964}
This page took 1.516536 seconds and 4 git commands to generate.