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