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