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