Constify regset structures.
[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
194cca41
PA
1741/* Get the previous raw frame, and check that it is not identical to
1742 same other frame frame already in the chain. If it is, there is
1743 most likely a stack cycle, so we discard it, and mark THIS_FRAME as
1744 outermost, with UNWIND_SAME_ID stop reason. Unlike the other
1745 validity tests, that compare THIS_FRAME and the next frame, we do
1746 this right after creating the previous frame, to avoid ever ending
1747 up with two frames with the same id in the frame chain. */
1748
1749static struct frame_info *
1750get_prev_frame_if_no_cycle (struct frame_info *this_frame)
1751{
1752 struct frame_info *prev_frame;
1753
1754 prev_frame = get_prev_frame_raw (this_frame);
1755 if (prev_frame == NULL)
1756 return NULL;
1757
1758 compute_frame_id (prev_frame);
1759 if (frame_stash_add (prev_frame))
1760 return prev_frame;
1761
1762 /* Another frame with the same id was already in the stash. We just
1763 detected a cycle. */
1764 if (frame_debug)
1765 {
1766 fprintf_unfiltered (gdb_stdlog, "-> ");
1767 fprint_frame (gdb_stdlog, NULL);
1768 fprintf_unfiltered (gdb_stdlog, " // this frame has same ID }\n");
1769 }
1770 this_frame->stop_reason = UNWIND_SAME_ID;
1771 /* Unlink. */
1772 prev_frame->next = NULL;
1773 this_frame->prev = NULL;
1774 return NULL;
1775}
1776
5613d8d3
AC
1777/* Return a "struct frame_info" corresponding to the frame that called
1778 THIS_FRAME. Returns NULL if there is no such frame.
5bf00f29 1779
5613d8d3
AC
1780 Unlike get_prev_frame, this function always tries to unwind the
1781 frame. */
eb4f72c5 1782
51d48146
PA
1783struct frame_info *
1784get_prev_frame_always (struct frame_info *this_frame)
eb4f72c5 1785{
b1bd0044 1786 struct gdbarch *gdbarch;
eb4f72c5 1787
5613d8d3 1788 gdb_assert (this_frame != NULL);
b1bd0044 1789 gdbarch = get_frame_arch (this_frame);
5613d8d3 1790
7f78e237
AC
1791 if (frame_debug)
1792 {
51d48146 1793 fprintf_unfiltered (gdb_stdlog, "{ get_prev_frame_always (this_frame=");
7f78e237
AC
1794 if (this_frame != NULL)
1795 fprintf_unfiltered (gdb_stdlog, "%d", this_frame->level);
1796 else
1797 fprintf_unfiltered (gdb_stdlog, "<NULL>");
1798 fprintf_unfiltered (gdb_stdlog, ") ");
1799 }
1800
5613d8d3
AC
1801 /* Only try to do the unwind once. */
1802 if (this_frame->prev_p)
1803 {
1804 if (frame_debug)
1805 {
1806 fprintf_unfiltered (gdb_stdlog, "-> ");
1807 fprint_frame (gdb_stdlog, this_frame->prev);
1808 fprintf_unfiltered (gdb_stdlog, " // cached \n");
1809 }
1810 return this_frame->prev;
1811 }
8fa75a5d 1812
0d254d6f
DJ
1813 /* If the frame unwinder hasn't been selected yet, we must do so
1814 before setting prev_p; otherwise the check for misbehaved
1815 sniffers will think that this frame's sniffer tried to unwind
1816 further (see frame_cleanup_after_sniffer). */
1817 if (this_frame->unwind == NULL)
9f9a8002 1818 frame_unwind_find_by_frame (this_frame, &this_frame->prologue_cache);
8fa75a5d 1819
5613d8d3 1820 this_frame->prev_p = 1;
55feb689 1821 this_frame->stop_reason = UNWIND_NO_REASON;
5613d8d3 1822
edb3359d
DJ
1823 /* If we are unwinding from an inline frame, all of the below tests
1824 were already performed when we unwound from the next non-inline
1825 frame. We must skip them, since we can not get THIS_FRAME's ID
1826 until we have unwound all the way down to the previous non-inline
1827 frame. */
1828 if (get_frame_type (this_frame) == INLINE_FRAME)
194cca41 1829 return get_prev_frame_if_no_cycle (this_frame);
edb3359d 1830
8fbca658
PA
1831 /* Check that this frame is unwindable. If it isn't, don't try to
1832 unwind to the prev frame. */
1833 this_frame->stop_reason
1834 = this_frame->unwind->stop_reason (this_frame,
1835 &this_frame->prologue_cache);
1836
1837 if (this_frame->stop_reason != UNWIND_NO_REASON)
a7300869
PA
1838 {
1839 if (frame_debug)
1840 {
1841 enum unwind_stop_reason reason = this_frame->stop_reason;
1842
1843 fprintf_unfiltered (gdb_stdlog, "-> ");
1844 fprint_frame (gdb_stdlog, NULL);
1845 fprintf_unfiltered (gdb_stdlog, " // %s }\n",
1846 frame_stop_reason_symbol_string (reason));
1847 }
1848 return NULL;
1849 }
8fbca658 1850
5613d8d3
AC
1851 /* Check that this frame's ID isn't inner to (younger, below, next)
1852 the next frame. This happens when a frame unwind goes backwards.
f06eadd9
JB
1853 This check is valid only if this frame and the next frame are NORMAL.
1854 See the comment at frame_id_inner for details. */
1855 if (get_frame_type (this_frame) == NORMAL_FRAME
1856 && this_frame->next->unwind->type == NORMAL_FRAME
da361ebd
JB
1857 && frame_id_inner (get_frame_arch (this_frame->next),
1858 get_frame_id (this_frame),
09a7aba8 1859 get_frame_id (this_frame->next)))
55feb689 1860 {
ebedcab5
JK
1861 CORE_ADDR this_pc_in_block;
1862 struct minimal_symbol *morestack_msym;
1863 const char *morestack_name = NULL;
1864
1865 /* gcc -fsplit-stack __morestack can continue the stack anywhere. */
1866 this_pc_in_block = get_frame_address_in_block (this_frame);
7cbd4a93 1867 morestack_msym = lookup_minimal_symbol_by_pc (this_pc_in_block).minsym;
ebedcab5 1868 if (morestack_msym)
efd66ac6 1869 morestack_name = MSYMBOL_LINKAGE_NAME (morestack_msym);
ebedcab5 1870 if (!morestack_name || strcmp (morestack_name, "__morestack") != 0)
55feb689 1871 {
ebedcab5
JK
1872 if (frame_debug)
1873 {
1874 fprintf_unfiltered (gdb_stdlog, "-> ");
1875 fprint_frame (gdb_stdlog, NULL);
3e43a32a
MS
1876 fprintf_unfiltered (gdb_stdlog,
1877 " // this frame ID is inner }\n");
ebedcab5
JK
1878 }
1879 this_frame->stop_reason = UNWIND_INNER_ID;
1880 return NULL;
55feb689 1881 }
55feb689 1882 }
5613d8d3 1883
e48af409
DJ
1884 /* Check that this and the next frame do not unwind the PC register
1885 to the same memory location. If they do, then even though they
1886 have different frame IDs, the new frame will be bogus; two
1887 functions can't share a register save slot for the PC. This can
1888 happen when the prologue analyzer finds a stack adjustment, but
d57df5e4
DJ
1889 no PC save.
1890
1891 This check does assume that the "PC register" is roughly a
1892 traditional PC, even if the gdbarch_unwind_pc method adjusts
1893 it (we do not rely on the value, only on the unwound PC being
1894 dependent on this value). A potential improvement would be
1895 to have the frame prev_pc method and the gdbarch unwind_pc
1896 method set the same lval and location information as
1897 frame_register_unwind. */
e48af409 1898 if (this_frame->level > 0
b1bd0044 1899 && gdbarch_pc_regnum (gdbarch) >= 0
e48af409 1900 && get_frame_type (this_frame) == NORMAL_FRAME
edb3359d
DJ
1901 && (get_frame_type (this_frame->next) == NORMAL_FRAME
1902 || get_frame_type (this_frame->next) == INLINE_FRAME))
e48af409 1903 {
32276632 1904 int optimized, realnum, nrealnum;
e48af409
DJ
1905 enum lval_type lval, nlval;
1906 CORE_ADDR addr, naddr;
1907
3e8c568d 1908 frame_register_unwind_location (this_frame,
b1bd0044 1909 gdbarch_pc_regnum (gdbarch),
3e8c568d
UW
1910 &optimized, &lval, &addr, &realnum);
1911 frame_register_unwind_location (get_next_frame (this_frame),
b1bd0044 1912 gdbarch_pc_regnum (gdbarch),
32276632 1913 &optimized, &nlval, &naddr, &nrealnum);
e48af409 1914
32276632
DJ
1915 if ((lval == lval_memory && lval == nlval && addr == naddr)
1916 || (lval == lval_register && lval == nlval && realnum == nrealnum))
e48af409
DJ
1917 {
1918 if (frame_debug)
1919 {
1920 fprintf_unfiltered (gdb_stdlog, "-> ");
1921 fprint_frame (gdb_stdlog, NULL);
1922 fprintf_unfiltered (gdb_stdlog, " // no saved PC }\n");
1923 }
1924
1925 this_frame->stop_reason = UNWIND_NO_SAVED_PC;
1926 this_frame->prev = NULL;
1927 return NULL;
1928 }
1929 }
1930
194cca41 1931 return get_prev_frame_if_no_cycle (this_frame);
edb3359d
DJ
1932}
1933
1934/* Construct a new "struct frame_info" and link it previous to
1935 this_frame. */
1936
1937static struct frame_info *
1938get_prev_frame_raw (struct frame_info *this_frame)
1939{
1940 struct frame_info *prev_frame;
1941
5613d8d3
AC
1942 /* Allocate the new frame but do not wire it in to the frame chain.
1943 Some (bad) code in INIT_FRAME_EXTRA_INFO tries to look along
1944 frame->next to pull some fancy tricks (of course such code is, by
1945 definition, recursive). Try to prevent it.
1946
1947 There is no reason to worry about memory leaks, should the
1948 remainder of the function fail. The allocated memory will be
1949 quickly reclaimed when the frame cache is flushed, and the `we've
1950 been here before' check above will stop repeated memory
1951 allocation calls. */
1952 prev_frame = FRAME_OBSTACK_ZALLOC (struct frame_info);
1953 prev_frame->level = this_frame->level + 1;
1954
6c95b8df
PA
1955 /* For now, assume we don't have frame chains crossing address
1956 spaces. */
1957 prev_frame->pspace = this_frame->pspace;
1958 prev_frame->aspace = this_frame->aspace;
1959
5613d8d3
AC
1960 /* Don't yet compute ->unwind (and hence ->type). It is computed
1961 on-demand in get_frame_type, frame_register_unwind, and
1962 get_frame_id. */
1963
1964 /* Don't yet compute the frame's ID. It is computed on-demand by
1965 get_frame_id(). */
1966
1967 /* The unwound frame ID is validate at the start of this function,
1968 as part of the logic to decide if that frame should be further
1969 unwound, and not here while the prev frame is being created.
1970 Doing this makes it possible for the user to examine a frame that
1971 has an invalid frame ID.
1972
1973 Some very old VAX code noted: [...] For the sake of argument,
1974 suppose that the stack is somewhat trashed (which is one reason
1975 that "info frame" exists). So, return 0 (indicating we don't
1976 know the address of the arglist) if we don't know what frame this
1977 frame calls. */
1978
1979 /* Link it in. */
1980 this_frame->prev = prev_frame;
1981 prev_frame->next = this_frame;
1982
1983 if (frame_debug)
1984 {
1985 fprintf_unfiltered (gdb_stdlog, "-> ");
1986 fprint_frame (gdb_stdlog, prev_frame);
1987 fprintf_unfiltered (gdb_stdlog, " }\n");
1988 }
1989
1990 return prev_frame;
1991}
1992
1993/* Debug routine to print a NULL frame being returned. */
1994
1995static void
d2bf72c0 1996frame_debug_got_null_frame (struct frame_info *this_frame,
5613d8d3
AC
1997 const char *reason)
1998{
1999 if (frame_debug)
2000 {
2001 fprintf_unfiltered (gdb_stdlog, "{ get_prev_frame (this_frame=");
2002 if (this_frame != NULL)
2003 fprintf_unfiltered (gdb_stdlog, "%d", this_frame->level);
2004 else
2005 fprintf_unfiltered (gdb_stdlog, "<NULL>");
2006 fprintf_unfiltered (gdb_stdlog, ") -> // %s}\n", reason);
2007 }
2008}
2009
c8cd9f6c
AC
2010/* Is this (non-sentinel) frame in the "main"() function? */
2011
2012static int
2013inside_main_func (struct frame_info *this_frame)
2014{
3b7344d5 2015 struct bound_minimal_symbol msymbol;
c8cd9f6c
AC
2016 CORE_ADDR maddr;
2017
2018 if (symfile_objfile == 0)
2019 return 0;
2020 msymbol = lookup_minimal_symbol (main_name (), NULL, symfile_objfile);
3b7344d5 2021 if (msymbol.minsym == NULL)
c8cd9f6c
AC
2022 return 0;
2023 /* Make certain that the code, and not descriptor, address is
2024 returned. */
b1bd0044 2025 maddr = gdbarch_convert_from_func_ptr_addr (get_frame_arch (this_frame),
77e371c0 2026 BMSYMBOL_VALUE_ADDRESS (msymbol),
c8cd9f6c
AC
2027 &current_target);
2028 return maddr == get_frame_func (this_frame);
2029}
2030
2315ffec
RC
2031/* Test whether THIS_FRAME is inside the process entry point function. */
2032
2033static int
2034inside_entry_func (struct frame_info *this_frame)
2035{
abd0a5fa
JK
2036 CORE_ADDR entry_point;
2037
2038 if (!entry_point_address_query (&entry_point))
2039 return 0;
2040
2041 return get_frame_func (this_frame) == entry_point;
2315ffec
RC
2042}
2043
5613d8d3
AC
2044/* Return a structure containing various interesting information about
2045 the frame that called THIS_FRAME. Returns NULL if there is entier
2046 no such frame or the frame fails any of a set of target-independent
2047 condition that should terminate the frame chain (e.g., as unwinding
2048 past main()).
2049
2050 This function should not contain target-dependent tests, such as
2051 checking whether the program-counter is zero. */
2052
2053struct frame_info *
2054get_prev_frame (struct frame_info *this_frame)
2055{
e3eebbd7
PA
2056 CORE_ADDR frame_pc;
2057 int frame_pc_p;
2058
eb4f72c5
AC
2059 /* There is always a frame. If this assertion fails, suspect that
2060 something should be calling get_selected_frame() or
2061 get_current_frame(). */
03febf99 2062 gdb_assert (this_frame != NULL);
e3eebbd7 2063 frame_pc_p = get_frame_pc_if_available (this_frame, &frame_pc);
eb4f72c5 2064
cc9bed83
RC
2065 /* tausq/2004-12-07: Dummy frames are skipped because it doesn't make much
2066 sense to stop unwinding at a dummy frame. One place where a dummy
2067 frame may have an address "inside_main_func" is on HPUX. On HPUX, the
2068 pcsqh register (space register for the instruction at the head of the
2069 instruction queue) cannot be written directly; the only way to set it
2070 is to branch to code that is in the target space. In order to implement
2071 frame dummies on HPUX, the called function is made to jump back to where
2072 the inferior was when the user function was called. If gdb was inside
2073 the main function when we created the dummy frame, the dummy frame will
2074 point inside the main function. */
03febf99 2075 if (this_frame->level >= 0
edb3359d 2076 && get_frame_type (this_frame) == NORMAL_FRAME
25d29d70 2077 && !backtrace_past_main
e3eebbd7 2078 && frame_pc_p
c8cd9f6c
AC
2079 && inside_main_func (this_frame))
2080 /* Don't unwind past main(). Note, this is done _before_ the
2081 frame has been marked as previously unwound. That way if the
2082 user later decides to enable unwinds past main(), that will
2083 automatically happen. */
ac2bd0a9 2084 {
d2bf72c0 2085 frame_debug_got_null_frame (this_frame, "inside main func");
ac2bd0a9
AC
2086 return NULL;
2087 }
eb4f72c5 2088
4a5e53e8
DJ
2089 /* If the user's backtrace limit has been exceeded, stop. We must
2090 add two to the current level; one of those accounts for backtrace_limit
2091 being 1-based and the level being 0-based, and the other accounts for
2092 the level of the new frame instead of the level of the current
2093 frame. */
2094 if (this_frame->level + 2 > backtrace_limit)
25d29d70 2095 {
d2bf72c0 2096 frame_debug_got_null_frame (this_frame, "backtrace limit exceeded");
4a5e53e8 2097 return NULL;
25d29d70
AC
2098 }
2099
0714963c
AC
2100 /* If we're already inside the entry function for the main objfile,
2101 then it isn't valid. Don't apply this test to a dummy frame -
bbde78fa 2102 dummy frame PCs typically land in the entry func. Don't apply
0714963c
AC
2103 this test to the sentinel frame. Sentinel frames should always
2104 be allowed to unwind. */
2f72f850
AC
2105 /* NOTE: cagney/2003-07-07: Fixed a bug in inside_main_func() -
2106 wasn't checking for "main" in the minimal symbols. With that
2107 fixed asm-source tests now stop in "main" instead of halting the
bbde78fa 2108 backtrace in weird and wonderful ways somewhere inside the entry
2f72f850
AC
2109 file. Suspect that tests for inside the entry file/func were
2110 added to work around that (now fixed) case. */
0714963c
AC
2111 /* NOTE: cagney/2003-07-15: danielj (if I'm reading it right)
2112 suggested having the inside_entry_func test use the
bbde78fa
JM
2113 inside_main_func() msymbol trick (along with entry_point_address()
2114 I guess) to determine the address range of the start function.
0714963c
AC
2115 That should provide a far better stopper than the current
2116 heuristics. */
2315ffec
RC
2117 /* NOTE: tausq/2004-10-09: this is needed if, for example, the compiler
2118 applied tail-call optimizations to main so that a function called
2119 from main returns directly to the caller of main. Since we don't
2120 stop at main, we should at least stop at the entry point of the
2121 application. */
edb3359d
DJ
2122 if (this_frame->level >= 0
2123 && get_frame_type (this_frame) == NORMAL_FRAME
2124 && !backtrace_past_entry
e3eebbd7 2125 && frame_pc_p
6e4c6c91 2126 && inside_entry_func (this_frame))
0714963c 2127 {
d2bf72c0 2128 frame_debug_got_null_frame (this_frame, "inside entry func");
0714963c
AC
2129 return NULL;
2130 }
2131
39ee2ff0
AC
2132 /* Assume that the only way to get a zero PC is through something
2133 like a SIGSEGV or a dummy frame, and hence that NORMAL frames
2134 will never unwind a zero PC. */
2135 if (this_frame->level > 0
edb3359d
DJ
2136 && (get_frame_type (this_frame) == NORMAL_FRAME
2137 || get_frame_type (this_frame) == INLINE_FRAME)
39ee2ff0 2138 && get_frame_type (get_next_frame (this_frame)) == NORMAL_FRAME
e3eebbd7 2139 && frame_pc_p && frame_pc == 0)
39ee2ff0 2140 {
d2bf72c0 2141 frame_debug_got_null_frame (this_frame, "zero PC");
39ee2ff0
AC
2142 return NULL;
2143 }
2144
51d48146 2145 return get_prev_frame_always (this_frame);
eb4f72c5
AC
2146}
2147
4c1e7e9d
AC
2148CORE_ADDR
2149get_frame_pc (struct frame_info *frame)
2150{
d1340264 2151 gdb_assert (frame->next != NULL);
edb3359d 2152 return frame_unwind_pc (frame->next);
4c1e7e9d
AC
2153}
2154
e3eebbd7
PA
2155int
2156get_frame_pc_if_available (struct frame_info *frame, CORE_ADDR *pc)
2157{
2158 volatile struct gdb_exception ex;
2159
2160 gdb_assert (frame->next != NULL);
2161
2162 TRY_CATCH (ex, RETURN_MASK_ERROR)
2163 {
2164 *pc = frame_unwind_pc (frame->next);
2165 }
2166 if (ex.reason < 0)
2167 {
2168 if (ex.error == NOT_AVAILABLE_ERROR)
2169 return 0;
2170 else
2171 throw_exception (ex);
2172 }
2173
2174 return 1;
2175}
2176
ad1193e7 2177/* Return an address that falls within THIS_FRAME's code block. */
8edd5d01
AC
2178
2179CORE_ADDR
ad1193e7 2180get_frame_address_in_block (struct frame_info *this_frame)
8edd5d01
AC
2181{
2182 /* A draft address. */
ad1193e7 2183 CORE_ADDR pc = get_frame_pc (this_frame);
8edd5d01 2184
ad1193e7
DJ
2185 struct frame_info *next_frame = this_frame->next;
2186
2187 /* Calling get_frame_pc returns the resume address for THIS_FRAME.
2188 Normally the resume address is inside the body of the function
2189 associated with THIS_FRAME, but there is a special case: when
2190 calling a function which the compiler knows will never return
2191 (for instance abort), the call may be the very last instruction
2192 in the calling function. The resume address will point after the
2193 call and may be at the beginning of a different function
2194 entirely.
2195
2196 If THIS_FRAME is a signal frame or dummy frame, then we should
2197 not adjust the unwound PC. For a dummy frame, GDB pushed the
2198 resume address manually onto the stack. For a signal frame, the
2199 OS may have pushed the resume address manually and invoked the
2200 handler (e.g. GNU/Linux), or invoked the trampoline which called
2201 the signal handler - but in either case the signal handler is
2202 expected to return to the trampoline. So in both of these
2203 cases we know that the resume address is executable and
2204 related. So we only need to adjust the PC if THIS_FRAME
2205 is a normal function.
2206
2207 If the program has been interrupted while THIS_FRAME is current,
2208 then clearly the resume address is inside the associated
2209 function. There are three kinds of interruption: debugger stop
2210 (next frame will be SENTINEL_FRAME), operating system
2211 signal or exception (next frame will be SIGTRAMP_FRAME),
2212 or debugger-induced function call (next frame will be
2213 DUMMY_FRAME). So we only need to adjust the PC if
2214 NEXT_FRAME is a normal function.
2215
2216 We check the type of NEXT_FRAME first, since it is already
2217 known; frame type is determined by the unwinder, and since
2218 we have THIS_FRAME we've already selected an unwinder for
edb3359d
DJ
2219 NEXT_FRAME.
2220
2221 If the next frame is inlined, we need to keep going until we find
2222 the real function - for instance, if a signal handler is invoked
2223 while in an inlined function, then the code address of the
2224 "calling" normal function should not be adjusted either. */
2225
2226 while (get_frame_type (next_frame) == INLINE_FRAME)
2227 next_frame = next_frame->next;
2228
111c6489
JK
2229 if ((get_frame_type (next_frame) == NORMAL_FRAME
2230 || get_frame_type (next_frame) == TAILCALL_FRAME)
edb3359d 2231 && (get_frame_type (this_frame) == NORMAL_FRAME
111c6489 2232 || get_frame_type (this_frame) == TAILCALL_FRAME
edb3359d 2233 || get_frame_type (this_frame) == INLINE_FRAME))
ad1193e7
DJ
2234 return pc - 1;
2235
2236 return pc;
8edd5d01
AC
2237}
2238
e3eebbd7
PA
2239int
2240get_frame_address_in_block_if_available (struct frame_info *this_frame,
2241 CORE_ADDR *pc)
2242{
2243 volatile struct gdb_exception ex;
2244
2245 TRY_CATCH (ex, RETURN_MASK_ERROR)
2246 {
2247 *pc = get_frame_address_in_block (this_frame);
2248 }
2249 if (ex.reason < 0 && ex.error == NOT_AVAILABLE_ERROR)
2250 return 0;
2251 else if (ex.reason < 0)
2252 throw_exception (ex);
2253 else
2254 return 1;
2255}
2256
edb3359d
DJ
2257void
2258find_frame_sal (struct frame_info *frame, struct symtab_and_line *sal)
1058bca7 2259{
edb3359d
DJ
2260 struct frame_info *next_frame;
2261 int notcurrent;
e3eebbd7 2262 CORE_ADDR pc;
edb3359d
DJ
2263
2264 /* If the next frame represents an inlined function call, this frame's
2265 sal is the "call site" of that inlined function, which can not
2266 be inferred from get_frame_pc. */
2267 next_frame = get_next_frame (frame);
2268 if (frame_inlined_callees (frame) > 0)
2269 {
2270 struct symbol *sym;
2271
2272 if (next_frame)
2273 sym = get_frame_function (next_frame);
2274 else
2275 sym = inline_skipped_symbol (inferior_ptid);
2276
f3df5b08
MS
2277 /* If frame is inline, it certainly has symbols. */
2278 gdb_assert (sym);
edb3359d
DJ
2279 init_sal (sal);
2280 if (SYMBOL_LINE (sym) != 0)
2281 {
2282 sal->symtab = SYMBOL_SYMTAB (sym);
2283 sal->line = SYMBOL_LINE (sym);
2284 }
2285 else
2286 /* If the symbol does not have a location, we don't know where
2287 the call site is. Do not pretend to. This is jarring, but
2288 we can't do much better. */
2289 sal->pc = get_frame_pc (frame);
2290
4cb6da1c
AR
2291 sal->pspace = get_frame_program_space (frame);
2292
edb3359d
DJ
2293 return;
2294 }
2295
1058bca7
AC
2296 /* If FRAME is not the innermost frame, that normally means that
2297 FRAME->pc points at the return instruction (which is *after* the
2298 call instruction), and we want to get the line containing the
2299 call (because the call is where the user thinks the program is).
2300 However, if the next frame is either a SIGTRAMP_FRAME or a
2301 DUMMY_FRAME, then the next frame will contain a saved interrupt
2302 PC and such a PC indicates the current (rather than next)
2303 instruction/line, consequently, for such cases, want to get the
2304 line containing fi->pc. */
e3eebbd7
PA
2305 if (!get_frame_pc_if_available (frame, &pc))
2306 {
2307 init_sal (sal);
2308 return;
2309 }
2310
2311 notcurrent = (pc != get_frame_address_in_block (frame));
2312 (*sal) = find_pc_line (pc, notcurrent);
1058bca7
AC
2313}
2314
c193f6ac
AC
2315/* Per "frame.h", return the ``address'' of the frame. Code should
2316 really be using get_frame_id(). */
2317CORE_ADDR
2318get_frame_base (struct frame_info *fi)
2319{
d0a55772 2320 return get_frame_id (fi).stack_addr;
c193f6ac
AC
2321}
2322
da62e633
AC
2323/* High-level offsets into the frame. Used by the debug info. */
2324
2325CORE_ADDR
2326get_frame_base_address (struct frame_info *fi)
2327{
7df05f2b 2328 if (get_frame_type (fi) != NORMAL_FRAME)
da62e633
AC
2329 return 0;
2330 if (fi->base == NULL)
86c31399 2331 fi->base = frame_base_find_by_frame (fi);
da62e633
AC
2332 /* Sneaky: If the low-level unwind and high-level base code share a
2333 common unwinder, let them share the prologue cache. */
2334 if (fi->base->unwind == fi->unwind)
669fac23
DJ
2335 return fi->base->this_base (fi, &fi->prologue_cache);
2336 return fi->base->this_base (fi, &fi->base_cache);
da62e633
AC
2337}
2338
2339CORE_ADDR
2340get_frame_locals_address (struct frame_info *fi)
2341{
7df05f2b 2342 if (get_frame_type (fi) != NORMAL_FRAME)
da62e633
AC
2343 return 0;
2344 /* If there isn't a frame address method, find it. */
2345 if (fi->base == NULL)
86c31399 2346 fi->base = frame_base_find_by_frame (fi);
da62e633
AC
2347 /* Sneaky: If the low-level unwind and high-level base code share a
2348 common unwinder, let them share the prologue cache. */
2349 if (fi->base->unwind == fi->unwind)
669fac23
DJ
2350 return fi->base->this_locals (fi, &fi->prologue_cache);
2351 return fi->base->this_locals (fi, &fi->base_cache);
da62e633
AC
2352}
2353
2354CORE_ADDR
2355get_frame_args_address (struct frame_info *fi)
2356{
7df05f2b 2357 if (get_frame_type (fi) != NORMAL_FRAME)
da62e633
AC
2358 return 0;
2359 /* If there isn't a frame address method, find it. */
2360 if (fi->base == NULL)
86c31399 2361 fi->base = frame_base_find_by_frame (fi);
da62e633
AC
2362 /* Sneaky: If the low-level unwind and high-level base code share a
2363 common unwinder, let them share the prologue cache. */
2364 if (fi->base->unwind == fi->unwind)
669fac23
DJ
2365 return fi->base->this_args (fi, &fi->prologue_cache);
2366 return fi->base->this_args (fi, &fi->base_cache);
da62e633
AC
2367}
2368
e7802207
TT
2369/* Return true if the frame unwinder for frame FI is UNWINDER; false
2370 otherwise. */
2371
2372int
2373frame_unwinder_is (struct frame_info *fi, const struct frame_unwind *unwinder)
2374{
2375 if (fi->unwind == NULL)
9f9a8002 2376 frame_unwind_find_by_frame (fi, &fi->prologue_cache);
e7802207
TT
2377 return fi->unwind == unwinder;
2378}
2379
85cf597a
AC
2380/* Level of the selected frame: 0 for innermost, 1 for its caller, ...
2381 or -1 for a NULL frame. */
2382
2383int
2384frame_relative_level (struct frame_info *fi)
2385{
2386 if (fi == NULL)
2387 return -1;
2388 else
2389 return fi->level;
2390}
2391
5a203e44
AC
2392enum frame_type
2393get_frame_type (struct frame_info *frame)
2394{
c1bf6f65
AC
2395 if (frame->unwind == NULL)
2396 /* Initialize the frame's unwinder because that's what
2397 provides the frame's type. */
9f9a8002 2398 frame_unwind_find_by_frame (frame, &frame->prologue_cache);
c1bf6f65 2399 return frame->unwind->type;
5a203e44
AC
2400}
2401
6c95b8df
PA
2402struct program_space *
2403get_frame_program_space (struct frame_info *frame)
2404{
2405 return frame->pspace;
2406}
2407
2408struct program_space *
2409frame_unwind_program_space (struct frame_info *this_frame)
2410{
2411 gdb_assert (this_frame);
2412
2413 /* This is really a placeholder to keep the API consistent --- we
2414 assume for now that we don't have frame chains crossing
2415 spaces. */
2416 return this_frame->pspace;
2417}
2418
2419struct address_space *
2420get_frame_address_space (struct frame_info *frame)
2421{
2422 return frame->aspace;
2423}
2424
ae1e7417
AC
2425/* Memory access methods. */
2426
2427void
10c42a71
AC
2428get_frame_memory (struct frame_info *this_frame, CORE_ADDR addr,
2429 gdb_byte *buf, int len)
ae1e7417
AC
2430{
2431 read_memory (addr, buf, len);
2432}
2433
2434LONGEST
2435get_frame_memory_signed (struct frame_info *this_frame, CORE_ADDR addr,
2436 int len)
2437{
e17a4113
UW
2438 struct gdbarch *gdbarch = get_frame_arch (this_frame);
2439 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1c4d3f96 2440
e17a4113 2441 return read_memory_integer (addr, len, byte_order);
ae1e7417
AC
2442}
2443
2444ULONGEST
2445get_frame_memory_unsigned (struct frame_info *this_frame, CORE_ADDR addr,
2446 int len)
2447{
e17a4113
UW
2448 struct gdbarch *gdbarch = get_frame_arch (this_frame);
2449 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1c4d3f96 2450
e17a4113 2451 return read_memory_unsigned_integer (addr, len, byte_order);
ae1e7417
AC
2452}
2453
304396fb
AC
2454int
2455safe_frame_unwind_memory (struct frame_info *this_frame,
10c42a71 2456 CORE_ADDR addr, gdb_byte *buf, int len)
304396fb 2457{
8defab1a
DJ
2458 /* NOTE: target_read_memory returns zero on success! */
2459 return !target_read_memory (addr, buf, len);
304396fb
AC
2460}
2461
36f15f55 2462/* Architecture methods. */
ae1e7417
AC
2463
2464struct gdbarch *
2465get_frame_arch (struct frame_info *this_frame)
2466{
36f15f55
UW
2467 return frame_unwind_arch (this_frame->next);
2468}
2469
2470struct gdbarch *
2471frame_unwind_arch (struct frame_info *next_frame)
2472{
2473 if (!next_frame->prev_arch.p)
2474 {
2475 struct gdbarch *arch;
0701b271 2476
36f15f55 2477 if (next_frame->unwind == NULL)
9f9a8002 2478 frame_unwind_find_by_frame (next_frame, &next_frame->prologue_cache);
36f15f55
UW
2479
2480 if (next_frame->unwind->prev_arch != NULL)
2481 arch = next_frame->unwind->prev_arch (next_frame,
2482 &next_frame->prologue_cache);
2483 else
2484 arch = get_frame_arch (next_frame);
2485
2486 next_frame->prev_arch.arch = arch;
2487 next_frame->prev_arch.p = 1;
2488 if (frame_debug)
2489 fprintf_unfiltered (gdb_stdlog,
2490 "{ frame_unwind_arch (next_frame=%d) -> %s }\n",
2491 next_frame->level,
2492 gdbarch_bfd_arch_info (arch)->printable_name);
2493 }
2494
2495 return next_frame->prev_arch.arch;
2496}
2497
2498struct gdbarch *
2499frame_unwind_caller_arch (struct frame_info *next_frame)
2500{
193facb3 2501 return frame_unwind_arch (skip_artificial_frames (next_frame));
ae1e7417
AC
2502}
2503
a9e5fdc2
AC
2504/* Stack pointer methods. */
2505
2506CORE_ADDR
2507get_frame_sp (struct frame_info *this_frame)
2508{
d56907c1 2509 struct gdbarch *gdbarch = get_frame_arch (this_frame);
1c4d3f96 2510
bbde78fa 2511 /* Normality - an architecture that provides a way of obtaining any
a9e5fdc2 2512 frame inner-most address. */
b1bd0044 2513 if (gdbarch_unwind_sp_p (gdbarch))
d56907c1
DJ
2514 /* NOTE drow/2008-06-28: gdbarch_unwind_sp could be converted to
2515 operate on THIS_FRAME now. */
2516 return gdbarch_unwind_sp (gdbarch, this_frame->next);
a9e5fdc2 2517 /* Now things are really are grim. Hope that the value returned by
3e8c568d 2518 the gdbarch_sp_regnum register is meaningful. */
b1bd0044 2519 if (gdbarch_sp_regnum (gdbarch) >= 0)
d56907c1
DJ
2520 return get_frame_register_unsigned (this_frame,
2521 gdbarch_sp_regnum (gdbarch));
e2e0b3e5 2522 internal_error (__FILE__, __LINE__, _("Missing unwind SP method"));
a9e5fdc2
AC
2523}
2524
55feb689
DJ
2525/* Return the reason why we can't unwind past FRAME. */
2526
2527enum unwind_stop_reason
2528get_frame_unwind_stop_reason (struct frame_info *frame)
2529{
824344ca 2530 /* Fill-in STOP_REASON. */
51d48146 2531 get_prev_frame_always (frame);
824344ca 2532 gdb_assert (frame->prev_p);
55feb689 2533
55feb689
DJ
2534 return frame->stop_reason;
2535}
2536
2537/* Return a string explaining REASON. */
2538
2539const char *
2540frame_stop_reason_string (enum unwind_stop_reason reason)
2541{
2542 switch (reason)
2543 {
2231f1fb
KP
2544#define SET(name, description) \
2545 case name: return _(description);
2546#include "unwind_stop_reasons.def"
2547#undef SET
55feb689 2548
55feb689
DJ
2549 default:
2550 internal_error (__FILE__, __LINE__,
2551 "Invalid frame stop reason");
2552 }
2553}
2554
a7300869
PA
2555/* Return the enum symbol name of REASON as a string, to use in debug
2556 output. */
2557
2558static const char *
2559frame_stop_reason_symbol_string (enum unwind_stop_reason reason)
2560{
2561 switch (reason)
2562 {
2563#define SET(name, description) \
2564 case name: return #name;
2565#include "unwind_stop_reasons.def"
2566#undef SET
2567
2568 default:
2569 internal_error (__FILE__, __LINE__,
2570 "Invalid frame stop reason");
2571 }
2572}
2573
669fac23
DJ
2574/* Clean up after a failed (wrong unwinder) attempt to unwind past
2575 FRAME. */
2576
2577static void
2578frame_cleanup_after_sniffer (void *arg)
2579{
2580 struct frame_info *frame = arg;
2581
2582 /* The sniffer should not allocate a prologue cache if it did not
2583 match this frame. */
2584 gdb_assert (frame->prologue_cache == NULL);
2585
2586 /* No sniffer should extend the frame chain; sniff based on what is
2587 already certain. */
2588 gdb_assert (!frame->prev_p);
2589
2590 /* The sniffer should not check the frame's ID; that's circular. */
2591 gdb_assert (!frame->this_id.p);
2592
2593 /* Clear cached fields dependent on the unwinder.
2594
2595 The previous PC is independent of the unwinder, but the previous
ad1193e7 2596 function is not (see get_frame_address_in_block). */
669fac23
DJ
2597 frame->prev_func.p = 0;
2598 frame->prev_func.addr = 0;
2599
2600 /* Discard the unwinder last, so that we can easily find it if an assertion
2601 in this function triggers. */
2602 frame->unwind = NULL;
2603}
2604
2605/* Set FRAME's unwinder temporarily, so that we can call a sniffer.
2606 Return a cleanup which should be called if unwinding fails, and
2607 discarded if it succeeds. */
2608
2609struct cleanup *
2610frame_prepare_for_sniffer (struct frame_info *frame,
2611 const struct frame_unwind *unwind)
2612{
2613 gdb_assert (frame->unwind == NULL);
2614 frame->unwind = unwind;
2615 return make_cleanup (frame_cleanup_after_sniffer, frame);
2616}
2617
b9362cc7
AC
2618extern initialize_file_ftype _initialize_frame; /* -Wmissing-prototypes */
2619
25d29d70
AC
2620static struct cmd_list_element *set_backtrace_cmdlist;
2621static struct cmd_list_element *show_backtrace_cmdlist;
2622
2623static void
2624set_backtrace_cmd (char *args, int from_tty)
2625{
2626 help_list (set_backtrace_cmdlist, "set backtrace ", -1, gdb_stdout);
2627}
2628
2629static void
2630show_backtrace_cmd (char *args, int from_tty)
2631{
2632 cmd_show_list (show_backtrace_cmdlist, from_tty, "");
2633}
2634
4c1e7e9d
AC
2635void
2636_initialize_frame (void)
2637{
2638 obstack_init (&frame_cache_obstack);
eb4f72c5 2639
3de661e6
PM
2640 frame_stash_create ();
2641
f4c5303c
OF
2642 observer_attach_target_changed (frame_observer_target_changed);
2643
1bedd215 2644 add_prefix_cmd ("backtrace", class_maintenance, set_backtrace_cmd, _("\
25d29d70 2645Set backtrace specific variables.\n\
1bedd215 2646Configure backtrace variables such as the backtrace limit"),
25d29d70
AC
2647 &set_backtrace_cmdlist, "set backtrace ",
2648 0/*allow-unknown*/, &setlist);
1bedd215 2649 add_prefix_cmd ("backtrace", class_maintenance, show_backtrace_cmd, _("\
25d29d70 2650Show backtrace specific variables\n\
1bedd215 2651Show backtrace variables such as the backtrace limit"),
25d29d70
AC
2652 &show_backtrace_cmdlist, "show backtrace ",
2653 0/*allow-unknown*/, &showlist);
2654
2655 add_setshow_boolean_cmd ("past-main", class_obscure,
7915a72c
AC
2656 &backtrace_past_main, _("\
2657Set whether backtraces should continue past \"main\"."), _("\
2658Show whether backtraces should continue past \"main\"."), _("\
eb4f72c5
AC
2659Normally the caller of \"main\" is not of interest, so GDB will terminate\n\
2660the backtrace at \"main\". Set this variable if you need to see the rest\n\
7915a72c 2661of the stack trace."),
2c5b56ce 2662 NULL,
920d2a44 2663 show_backtrace_past_main,
2c5b56ce 2664 &set_backtrace_cmdlist,
25d29d70
AC
2665 &show_backtrace_cmdlist);
2666
2315ffec 2667 add_setshow_boolean_cmd ("past-entry", class_obscure,
7915a72c
AC
2668 &backtrace_past_entry, _("\
2669Set whether backtraces should continue past the entry point of a program."),
2670 _("\
2671Show whether backtraces should continue past the entry point of a program."),
2672 _("\
2315ffec 2673Normally there are no callers beyond the entry point of a program, so GDB\n\
cce7e648 2674will terminate the backtrace there. Set this variable if you need to see\n\
7915a72c 2675the rest of the stack trace."),
2c5b56ce 2676 NULL,
920d2a44 2677 show_backtrace_past_entry,
2c5b56ce 2678 &set_backtrace_cmdlist,
2315ffec
RC
2679 &show_backtrace_cmdlist);
2680
883b9c6c
YQ
2681 add_setshow_uinteger_cmd ("limit", class_obscure,
2682 &backtrace_limit, _("\
7915a72c
AC
2683Set an upper bound on the number of backtrace levels."), _("\
2684Show the upper bound on the number of backtrace levels."), _("\
fec74868 2685No more than the specified number of frames can be displayed or examined.\n\
f81d1120 2686Literal \"unlimited\" or zero means no limit."),
883b9c6c
YQ
2687 NULL,
2688 show_backtrace_limit,
2689 &set_backtrace_cmdlist,
2690 &show_backtrace_cmdlist);
ac2bd0a9 2691
0963b4bd 2692 /* Debug this files internals. */
ccce17b0 2693 add_setshow_zuinteger_cmd ("frame", class_maintenance, &frame_debug, _("\
85c07804
AC
2694Set frame debugging."), _("\
2695Show frame debugging."), _("\
2696When non-zero, frame specific internal debugging is enabled."),
ccce17b0
YQ
2697 NULL,
2698 show_frame_debug,
2699 &setdebuglist, &showdebuglist);
4c1e7e9d 2700}
This page took 1.230392 seconds and 4 git commands to generate.