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