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