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