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