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