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