]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/frame.c
*** empty log message ***
[thirdparty/binutils-gdb.git] / gdb / frame.c
CommitLineData
4f460812 1/* Cache and manage frames for GDB, the GNU debugger.
96cb11df
AC
2
3 Copyright 1986, 1987, 1989, 1991, 1994, 1995, 1996, 1998, 2000,
51603483 4 2001, 2002, 2003 Free Software Foundation, Inc.
d65fe839
AC
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
22
23#include "defs.h"
24#include "frame.h"
25#include "target.h"
26#include "value.h"
39f77062 27#include "inferior.h" /* for inferior_ptid */
4e052eda 28#include "regcache.h"
4f460812 29#include "gdb_assert.h"
e36180d7
AC
30#include "gdb_string.h"
31#include "builtin-regs.h"
4c1e7e9d
AC
32#include "gdb_obstack.h"
33#include "dummy-frame.h"
a94dd1fd 34#include "sentinel-frame.h"
4c1e7e9d
AC
35#include "gdbcore.h"
36#include "annotate.h"
6e7f8b9c 37#include "language.h"
494cca16 38#include "frame-unwind.h"
da62e633 39#include "frame-base.h"
eb4f72c5
AC
40#include "command.h"
41#include "gdbcmd.h"
42
ac2bd0a9
AC
43/* Flag to control debugging. */
44
45static int frame_debug;
46
eb4f72c5
AC
47/* Flag to indicate whether backtraces should stop at main. */
48
49static int backtrace_below_main;
d65fe839 50
7f78e237
AC
51static void
52fprint_frame_id (struct ui_file *file, struct frame_id id)
53{
54 fprintf_unfiltered (file, "{stack=0x%s,code=0x%s}",
55 paddr_nz (id.stack_addr),
56 paddr_nz (id.code_addr));
57}
58
59static void
60fprint_frame_type (struct ui_file *file, enum frame_type type)
61{
62 switch (type)
63 {
64 case UNKNOWN_FRAME:
65 fprintf_unfiltered (file, "UNKNOWN_FRAME");
66 return;
67 case NORMAL_FRAME:
68 fprintf_unfiltered (file, "NORMAL_FRAME");
69 return;
70 case DUMMY_FRAME:
71 fprintf_unfiltered (file, "DUMMY_FRAME");
72 return;
73 case SIGTRAMP_FRAME:
74 fprintf_unfiltered (file, "SIGTRAMP_FRAME");
75 return;
76 default:
77 fprintf_unfiltered (file, "<unknown type>");
78 return;
79 };
80}
81
82static void
83fprint_frame (struct ui_file *file, struct frame_info *fi)
84{
85 if (fi == NULL)
86 {
87 fprintf_unfiltered (file, "<NULL frame>");
88 return;
89 }
90 fprintf_unfiltered (file, "{");
91 fprintf_unfiltered (file, "level=%d", fi->level);
92 fprintf_unfiltered (file, ",");
93 fprintf_unfiltered (file, "type=");
94 fprint_frame_type (file, fi->type);
95 fprintf_unfiltered (file, ",");
96 fprintf_unfiltered (file, "unwind=");
97 if (fi->unwind != NULL)
98 gdb_print_host_address (fi->unwind, file);
99 else
100 fprintf_unfiltered (file, "<unknown>");
101 fprintf_unfiltered (file, ",");
102 fprintf_unfiltered (file, "pc=");
103 if (fi->next != NULL && fi->next->prev_pc.p)
104 fprintf_unfiltered (file, "0x%s", paddr_nz (fi->next->prev_pc.value));
105 else
106 fprintf_unfiltered (file, "<unknown>");
107 fprintf_unfiltered (file, ",");
108 fprintf_unfiltered (file, "id=");
109 if (fi->this_id.p)
110 fprint_frame_id (file, fi->this_id.value);
111 else
112 fprintf_unfiltered (file, "<unknown>");
113 fprintf_unfiltered (file, ",");
114 fprintf_unfiltered (file, "func=");
115 if (fi->next != NULL && fi->next->prev_func.p)
116 fprintf_unfiltered (file, "0x%s", paddr_nz (fi->next->prev_func.addr));
117 else
118 fprintf_unfiltered (file, "<unknown>");
119 fprintf_unfiltered (file, "}");
120}
121
7a424e99 122/* Return a frame uniq ID that can be used to, later, re-find the
101dcfbe
AC
123 frame. */
124
7a424e99
AC
125struct frame_id
126get_frame_id (struct frame_info *fi)
101dcfbe
AC
127{
128 if (fi == NULL)
129 {
7a424e99 130 return null_frame_id;
101dcfbe 131 }
d0a55772 132 if (!fi->this_id.p)
101dcfbe 133 {
06c77151 134 gdb_assert (!legacy_frame_p (current_gdbarch));
7f78e237
AC
135 if (frame_debug)
136 fprintf_unfiltered (gdb_stdlog, "{ get_frame_id (fi=%d) ",
137 fi->level);
06c77151 138 /* Find THIS frame's ID. */
d0a55772
AC
139 fi->unwind->this_id (fi->next, &fi->prologue_cache, &fi->this_id.value);
140 fi->this_id.p = 1;
7f78e237
AC
141 if (frame_debug)
142 {
143 fprintf_unfiltered (gdb_stdlog, "-> ");
144 fprint_frame_id (gdb_stdlog, fi->this_id.value);
145 fprintf_unfiltered (gdb_stdlog, " }\n");
146 }
101dcfbe 147 }
18adea3f 148 return fi->this_id.value;
101dcfbe
AC
149}
150
7a424e99
AC
151const struct frame_id null_frame_id; /* All zeros. */
152
153struct frame_id
d0a55772 154frame_id_build (CORE_ADDR stack_addr, CORE_ADDR code_addr)
7a424e99
AC
155{
156 struct frame_id id;
d0a55772
AC
157 id.stack_addr = stack_addr;
158 id.code_addr = code_addr;
7a424e99
AC
159 return id;
160}
161
162int
163frame_id_p (struct frame_id l)
164{
d0a55772
AC
165 int p;
166 /* The .code can be NULL but the .stack cannot. */
167 p = (l.stack_addr != 0);
7f78e237
AC
168 if (frame_debug)
169 {
170 fprintf_unfiltered (gdb_stdlog, "{ frame_id_p (l=");
171 fprint_frame_id (gdb_stdlog, l);
172 fprintf_unfiltered (gdb_stdlog, ") -> %d }\n", p);
173 }
d0a55772 174 return p;
7a424e99
AC
175}
176
177int
178frame_id_eq (struct frame_id l, struct frame_id r)
179{
d0a55772
AC
180 int eq;
181 if (l.stack_addr == 0 || r.stack_addr == 0)
182 /* Like a NaN, if either ID is invalid, the result is false. */
183 eq = 0;
184 else if (l.stack_addr != r.stack_addr)
185 /* If .stack addresses are different, the frames are different. */
186 eq = 0;
187 else if (l.code_addr == 0 || r.code_addr == 0)
188 /* A zero code addr is a wild card, always succeed. */
189 eq = 1;
190 else if (l.code_addr == r.code_addr)
191 /* The .stack and .code are identical, the ID's are identical. */
192 eq = 1;
193 else
194 /* FIXME: cagney/2003-04-06: This should be zero. Can't yet do
195 this because most frame ID's are not being initialized
196 correctly. */
197 eq = 1;
7f78e237
AC
198 if (frame_debug)
199 {
200 fprintf_unfiltered (gdb_stdlog, "{ frame_id_eq (l=");
201 fprint_frame_id (gdb_stdlog, l);
202 fprintf_unfiltered (gdb_stdlog, ",r=");
203 fprint_frame_id (gdb_stdlog, r);
204 fprintf_unfiltered (gdb_stdlog, ") -> %d }\n", eq);
205 }
d0a55772 206 return eq;
7a424e99
AC
207}
208
209int
210frame_id_inner (struct frame_id l, struct frame_id r)
211{
d0a55772
AC
212 int inner;
213 if (l.stack_addr == 0 || r.stack_addr == 0)
214 /* Like NaN, any operation involving an invalid ID always fails. */
215 inner = 0;
216 else
217 /* Only return non-zero when strictly inner than. Note that, per
218 comment in "frame.h", there is some fuzz here. Frameless
219 functions are not strictly inner than (same .stack but
220 different .code). */
221 inner = INNER_THAN (l.stack_addr, r.stack_addr);
7f78e237
AC
222 if (frame_debug)
223 {
224 fprintf_unfiltered (gdb_stdlog, "{ frame_id_inner (l=");
225 fprint_frame_id (gdb_stdlog, l);
226 fprintf_unfiltered (gdb_stdlog, ",r=");
227 fprint_frame_id (gdb_stdlog, r);
228 fprintf_unfiltered (gdb_stdlog, ") -> %d }\n", inner);
229 }
d0a55772 230 return inner;
7a424e99
AC
231}
232
101dcfbe
AC
233struct frame_info *
234frame_find_by_id (struct frame_id id)
235{
236 struct frame_info *frame;
237
238 /* ZERO denotes the null frame, let the caller decide what to do
239 about it. Should it instead return get_current_frame()? */
7a424e99 240 if (!frame_id_p (id))
101dcfbe
AC
241 return NULL;
242
243 for (frame = get_current_frame ();
244 frame != NULL;
245 frame = get_prev_frame (frame))
246 {
7a424e99
AC
247 struct frame_id this = get_frame_id (frame);
248 if (frame_id_eq (id, this))
249 /* An exact match. */
250 return frame;
251 if (frame_id_inner (id, this))
252 /* Gone to far. */
101dcfbe 253 return NULL;
7a424e99
AC
254 /* Either, we're not yet gone far enough out along the frame
255 chain (inner(this,id), or we're comparing frameless functions
256 (same .base, different .func, no test available). Struggle
257 on until we've definitly gone to far. */
101dcfbe
AC
258 }
259 return NULL;
260}
261
f18c5a73 262CORE_ADDR
12cc2063 263frame_pc_unwind (struct frame_info *this_frame)
f18c5a73 264{
d1340264 265 if (!this_frame->prev_pc.p)
f18c5a73 266 {
12cc2063
AC
267 CORE_ADDR pc;
268 if (gdbarch_unwind_pc_p (current_gdbarch))
269 {
270 /* The right way. The `pure' way. The one true way. This
271 method depends solely on the register-unwind code to
272 determine the value of registers in THIS frame, and hence
273 the value of this frame's PC (resume address). A typical
274 implementation is no more than:
275
276 frame_unwind_register (this_frame, ISA_PC_REGNUM, buf);
277 return extract_address (buf, size of ISA_PC_REGNUM);
278
279 Note: this method is very heavily dependent on a correct
280 register-unwind implementation, it pays to fix that
281 method first; this method is frame type agnostic, since
282 it only deals with register values, it works with any
283 frame. This is all in stark contrast to the old
284 FRAME_SAVED_PC which would try to directly handle all the
285 different ways that a PC could be unwound. */
286 pc = gdbarch_unwind_pc (current_gdbarch, this_frame);
287 }
288 else if (this_frame->level < 0)
289 {
290 /* FIXME: cagney/2003-03-06: Old code and and a sentinel
291 frame. Do like was always done. Fetch the PC's value
292 direct from the global registers array (via read_pc).
293 This assumes that this frame belongs to the current
294 global register cache. The assumption is dangerous. */
295 pc = read_pc ();
296 }
8bedc050 297 else if (DEPRECATED_FRAME_SAVED_PC_P ())
12cc2063
AC
298 {
299 /* FIXME: cagney/2003-03-06: Old code, but not a sentinel
300 frame. Do like was always done. Note that this method,
301 unlike unwind_pc(), tries to handle all the different
302 frame cases directly. It fails. */
8bedc050 303 pc = DEPRECATED_FRAME_SAVED_PC (this_frame);
12cc2063
AC
304 }
305 else
306 internal_error (__FILE__, __LINE__, "No gdbarch_unwind_pc method");
d1340264
AC
307 this_frame->prev_pc.value = pc;
308 this_frame->prev_pc.p = 1;
7f78e237
AC
309 if (frame_debug)
310 fprintf_unfiltered (gdb_stdlog,
311 "{ frame_pc_unwind (this_frame=%d) -> 0x%s }\n",
312 this_frame->level,
313 paddr_nz (this_frame->prev_pc.value));
f18c5a73 314 }
d1340264 315 return this_frame->prev_pc.value;
f18c5a73
AC
316}
317
be41e9f4
AC
318CORE_ADDR
319frame_func_unwind (struct frame_info *fi)
320{
321 if (!fi->prev_func.p)
322 {
323 fi->prev_func.p = 1;
324 fi->prev_func.addr = get_pc_function_start (frame_pc_unwind (fi));
7f78e237
AC
325 if (frame_debug)
326 fprintf_unfiltered (gdb_stdlog,
327 "{ frame_func_unwind (fi=%d) -> 0x%s }\n",
328 fi->level, paddr_nz (fi->prev_func.addr));
be41e9f4
AC
329 }
330 return fi->prev_func.addr;
331}
332
333CORE_ADDR
334get_frame_func (struct frame_info *fi)
335{
336 return frame_func_unwind (fi->next);
337}
338
7a25a7c1
AC
339static int
340do_frame_unwind_register (void *src, int regnum, void *buf)
341{
342 frame_unwind_register (src, regnum, buf);
343 return 1;
344}
345
dbe9fe58 346void
7a25a7c1
AC
347frame_pop (struct frame_info *this_frame)
348{
349 struct regcache *scratch_regcache;
350 struct cleanup *cleanups;
351
749b82f6 352 if (DEPRECATED_POP_FRAME_P ())
7a25a7c1
AC
353 {
354 /* A legacy architecture that has implemented a custom pop
355 function. All new architectures should instead be using the
356 generic code below. */
749b82f6 357 DEPRECATED_POP_FRAME;
7a25a7c1
AC
358 }
359 else
360 {
361 /* Make a copy of all the register values unwound from this
362 frame. Save them in a scratch buffer so that there isn't a
363 race betweening trying to extract the old values from the
364 current_regcache while, at the same time writing new values
365 into that same cache. */
366 struct regcache *scratch = regcache_xmalloc (current_gdbarch);
367 struct cleanup *cleanups = make_cleanup_regcache_xfree (scratch);
368 regcache_save (scratch, do_frame_unwind_register, this_frame);
efd710d6
AC
369 /* FIXME: cagney/2003-03-16: It should be possible to tell the
370 target's register cache that it is about to be hit with a
371 burst register transfer and that the sequence of register
372 writes should be batched. The pair target_prepare_to_store()
373 and target_store_registers() kind of suggest this
374 functionality. Unfortunatly, they don't implement it. Their
375 lack of a formal definition can lead to targets writing back
376 bogus values (arguably a bug in the target code mind). */
7a25a7c1
AC
377 /* Now copy those saved registers into the current regcache.
378 Here, regcache_cpy() calls regcache_restore(). */
379 regcache_cpy (current_regcache, scratch);
380 do_cleanups (cleanups);
381 }
382 /* We've made right mess of GDB's local state, just discard
383 everything. */
dbe9fe58
AC
384 flush_cached_frames ();
385}
c689142b 386
4f460812
AC
387void
388frame_register_unwind (struct frame_info *frame, int regnum,
389 int *optimizedp, enum lval_type *lvalp,
390 CORE_ADDR *addrp, int *realnump, void *bufferp)
391{
392 struct frame_unwind_cache *cache;
393
7f78e237
AC
394 if (frame_debug)
395 {
396 fprintf_unfiltered (gdb_stdlog,
397 "{ frame_register_unwind (frame=%d,regnum=\"%s\",...) ",
398 frame->level, frame_map_regnum_to_name (regnum));
399 }
400
4f460812
AC
401 /* Require all but BUFFERP to be valid. A NULL BUFFERP indicates
402 that the value proper does not need to be fetched. */
403 gdb_assert (optimizedp != NULL);
404 gdb_assert (lvalp != NULL);
405 gdb_assert (addrp != NULL);
406 gdb_assert (realnump != NULL);
407 /* gdb_assert (bufferp != NULL); */
408
a94dd1fd
AC
409 /* NOTE: cagney/2002-11-27: A program trying to unwind a NULL frame
410 is broken. There is always a frame. If there, for some reason,
411 isn't, there is some pretty busted code as it should have
412 detected the problem before calling here. */
413 gdb_assert (frame != NULL);
4f460812 414
6dc42492
AC
415 /* Ask this frame to unwind its register. See comment in
416 "frame-unwind.h" for why NEXT frame and this unwind cace are
417 passed in. */
418 frame->unwind->prev_register (frame->next, &frame->prologue_cache, regnum,
419 optimizedp, lvalp, addrp, realnump, bufferp);
420
7f78e237
AC
421 if (frame_debug)
422 {
423 fprintf_unfiltered (gdb_stdlog, "->");
424 fprintf_unfiltered (gdb_stdlog, " *optimizedp=%d", (*optimizedp));
425 fprintf_unfiltered (gdb_stdlog, " *lvalp=%d", (int) (*lvalp));
426 fprintf_unfiltered (gdb_stdlog, " *addrp=0x%s", paddr_nz ((*addrp)));
427 fprintf_unfiltered (gdb_stdlog, " *bufferp=");
428 if (bufferp == NULL)
429 fprintf_unfiltered (gdb_stdlog, "<NULL>");
430 else
431 {
432 int i;
433 const char *buf = bufferp;
434 fprintf_unfiltered (gdb_stdlog, "[");
435 for (i = 0; i < register_size (current_gdbarch, regnum); i++)
436 fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
437 fprintf_unfiltered (gdb_stdlog, "]");
438 }
439 fprintf_unfiltered (gdb_stdlog, " }\n");
440 }
4f460812
AC
441}
442
a216a322
AC
443void
444frame_register (struct frame_info *frame, int regnum,
445 int *optimizedp, enum lval_type *lvalp,
446 CORE_ADDR *addrp, int *realnump, void *bufferp)
447{
448 /* Require all but BUFFERP to be valid. A NULL BUFFERP indicates
449 that the value proper does not need to be fetched. */
450 gdb_assert (optimizedp != NULL);
451 gdb_assert (lvalp != NULL);
452 gdb_assert (addrp != NULL);
453 gdb_assert (realnump != NULL);
454 /* gdb_assert (bufferp != NULL); */
455
456 /* Ulgh! Old code that, for lval_register, sets ADDRP to the offset
457 of the register in the register cache. It should instead return
458 the REGNUM corresponding to that register. Translate the . */
129c1cd6 459 if (DEPRECATED_GET_SAVED_REGISTER_P ())
a216a322 460 {
129c1cd6
AC
461 DEPRECATED_GET_SAVED_REGISTER (bufferp, optimizedp, addrp, frame,
462 regnum, lvalp);
a216a322
AC
463 /* Compute the REALNUM if the caller wants it. */
464 if (*lvalp == lval_register)
465 {
466 int regnum;
467 for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++)
468 {
469 if (*addrp == register_offset_hack (current_gdbarch, regnum))
470 {
471 *realnump = regnum;
472 return;
473 }
474 }
475 internal_error (__FILE__, __LINE__,
476 "Failed to compute the register number corresponding"
477 " to 0x%s", paddr_d (*addrp));
478 }
479 *realnump = -1;
480 return;
481 }
482
a94dd1fd
AC
483 /* Obtain the register value by unwinding the register from the next
484 (more inner frame). */
485 gdb_assert (frame != NULL && frame->next != NULL);
486 frame_register_unwind (frame->next, regnum, optimizedp, lvalp, addrp,
487 realnump, bufferp);
a216a322
AC
488}
489
135c175f 490void
5b181d62 491frame_unwind_register (struct frame_info *frame, int regnum, void *buf)
135c175f
AC
492{
493 int optimized;
494 CORE_ADDR addr;
495 int realnum;
496 enum lval_type lval;
135c175f
AC
497 frame_register_unwind (frame, regnum, &optimized, &lval, &addr,
498 &realnum, buf);
5b181d62
AC
499}
500
501void
502frame_unwind_signed_register (struct frame_info *frame, int regnum,
503 LONGEST *val)
504{
505 void *buf = alloca (MAX_REGISTER_RAW_SIZE);
506 frame_unwind_register (frame, regnum, buf);
135c175f
AC
507 (*val) = extract_signed_integer (buf, REGISTER_VIRTUAL_SIZE (regnum));
508}
509
510void
511frame_unwind_unsigned_register (struct frame_info *frame, int regnum,
512 ULONGEST *val)
513{
135c175f 514 void *buf = alloca (MAX_REGISTER_RAW_SIZE);
5b181d62 515 frame_unwind_register (frame, regnum, buf);
135c175f
AC
516 (*val) = extract_unsigned_integer (buf, REGISTER_VIRTUAL_SIZE (regnum));
517}
4f460812 518
5b181d62
AC
519void
520frame_read_register (struct frame_info *frame, int regnum, void *buf)
521{
522 gdb_assert (frame != NULL && frame->next != NULL);
523 frame_unwind_register (frame->next, regnum, buf);
524}
525
f908a0eb
AC
526void
527frame_read_unsigned_register (struct frame_info *frame, int regnum,
528 ULONGEST *val)
529{
530 /* NOTE: cagney/2002-10-31: There is a bit of dogma here - there is
531 always a frame. Both this, and the equivalent
532 frame_read_signed_register() function, can only be called with a
533 valid frame. If, for some reason, this function is called
534 without a frame then the problem isn't here, but rather in the
535 caller. It should of first created a frame and then passed that
536 in. */
537 /* NOTE: cagney/2002-10-31: As a side bar, keep in mind that the
538 ``current_frame'' should not be treated as a special case. While
539 ``get_next_frame (current_frame) == NULL'' currently holds, it
540 should, as far as possible, not be relied upon. In the future,
541 ``get_next_frame (current_frame)'' may instead simply return a
542 normal frame object that simply always gets register values from
543 the register cache. Consequently, frame code should try to avoid
544 tests like ``if get_next_frame() == NULL'' and instead just rely
545 on recursive frame calls (like the below code) when manipulating
546 a frame chain. */
a94dd1fd
AC
547 gdb_assert (frame != NULL && frame->next != NULL);
548 frame_unwind_unsigned_register (frame->next, regnum, val);
f908a0eb
AC
549}
550
551void
552frame_read_signed_register (struct frame_info *frame, int regnum,
553 LONGEST *val)
554{
a94dd1fd
AC
555 /* See note above in frame_read_unsigned_register(). */
556 gdb_assert (frame != NULL && frame->next != NULL);
557 frame_unwind_signed_register (frame->next, regnum, val);
f908a0eb
AC
558}
559
f796e4be 560void
4f460812
AC
561generic_unwind_get_saved_register (char *raw_buffer,
562 int *optimizedp,
563 CORE_ADDR *addrp,
564 struct frame_info *frame,
565 int regnum,
566 enum lval_type *lvalp)
567{
568 int optimizedx;
569 CORE_ADDR addrx;
570 int realnumx;
571 enum lval_type lvalx;
572
573 if (!target_has_registers)
574 error ("No registers.");
575
576 /* Keep things simple, ensure that all the pointers (except valuep)
577 are non NULL. */
578 if (optimizedp == NULL)
579 optimizedp = &optimizedx;
580 if (lvalp == NULL)
581 lvalp = &lvalx;
582 if (addrp == NULL)
583 addrp = &addrx;
584
a94dd1fd
AC
585 gdb_assert (frame != NULL && frame->next != NULL);
586 frame_register_unwind (frame->next, regnum, optimizedp, lvalp, addrp,
587 &realnumx, raw_buffer);
4f460812
AC
588}
589
cda5a58a 590/* frame_register_read ()
d65fe839 591
cda5a58a 592 Find and return the value of REGNUM for the specified stack frame.
d65fe839
AC
593 The number of bytes copied is REGISTER_RAW_SIZE (REGNUM).
594
cda5a58a 595 Returns 0 if the register value could not be found. */
d65fe839 596
cda5a58a
AC
597int
598frame_register_read (struct frame_info *frame, int regnum, void *myaddr)
d65fe839 599{
a216a322
AC
600 int optimized;
601 enum lval_type lval;
602 CORE_ADDR addr;
603 int realnum;
604 frame_register (frame, regnum, &optimized, &lval, &addr, &realnum, myaddr);
d65fe839 605
c97dcfc7
AC
606 /* FIXME: cagney/2002-05-15: This test, is just bogus.
607
608 It indicates that the target failed to supply a value for a
609 register because it was "not available" at this time. Problem
610 is, the target still has the register and so get saved_register()
611 may be returning a value saved on the stack. */
612
d65fe839 613 if (register_cached (regnum) < 0)
cda5a58a 614 return 0; /* register value not available */
d65fe839 615
a216a322 616 return !optimized;
d65fe839 617}
e36180d7
AC
618
619
620/* Map between a frame register number and its name. A frame register
621 space is a superset of the cooked register space --- it also
622 includes builtin registers. */
623
624int
625frame_map_name_to_regnum (const char *name, int len)
626{
627 int i;
628
5f601589
AC
629 if (len < 0)
630 len = strlen (name);
631
e36180d7
AC
632 /* Search register name space. */
633 for (i = 0; i < NUM_REGS + NUM_PSEUDO_REGS; i++)
634 if (REGISTER_NAME (i) && len == strlen (REGISTER_NAME (i))
635 && strncmp (name, REGISTER_NAME (i), len) == 0)
636 {
637 return i;
638 }
639
640 /* Try builtin registers. */
641 i = builtin_reg_map_name_to_regnum (name, len);
642 if (i >= 0)
643 {
644 /* A builtin register doesn't fall into the architecture's
645 register range. */
646 gdb_assert (i >= NUM_REGS + NUM_PSEUDO_REGS);
647 return i;
648 }
649
650 return -1;
651}
652
653const char *
654frame_map_regnum_to_name (int regnum)
655{
656 if (regnum < 0)
657 return NULL;
658 if (regnum < NUM_REGS + NUM_PSEUDO_REGS)
659 return REGISTER_NAME (regnum);
660 return builtin_reg_map_regnum_to_name (regnum);
661}
4c1e7e9d 662
a94dd1fd
AC
663/* Create a sentinel frame. */
664
665struct frame_info *
666create_sentinel_frame (struct regcache *regcache)
667{
668 struct frame_info *frame = FRAME_OBSTACK_ZALLOC (struct frame_info);
669 frame->type = NORMAL_FRAME;
670 frame->level = -1;
671 /* Explicitly initialize the sentinel frame's cache. Provide it
672 with the underlying regcache. In the future additional
673 information, such as the frame's thread will be added. */
6dc42492 674 frame->prologue_cache = sentinel_frame_cache (regcache);
a94dd1fd
AC
675 /* For the moment there is only one sentinel frame implementation. */
676 frame->unwind = sentinel_frame_unwind;
677 /* Link this frame back to itself. The frame is self referential
678 (the unwound PC is the same as the pc), so make it so. */
679 frame->next = frame;
50bbdbd9
AC
680 /* Make the sentinel frame's ID valid, but invalid. That way all
681 comparisons with it should fail. */
d0a55772
AC
682 frame->this_id.p = 1;
683 frame->this_id.value = null_frame_id;
7f78e237
AC
684 if (frame_debug)
685 {
686 fprintf_unfiltered (gdb_stdlog, "{ create_sentinel_frame (...) -> ");
687 fprint_frame (gdb_stdlog, frame);
688 fprintf_unfiltered (gdb_stdlog, " }\n");
689 }
a94dd1fd
AC
690 return frame;
691}
692
4c1e7e9d
AC
693/* Info about the innermost stack frame (contents of FP register) */
694
695static struct frame_info *current_frame;
696
697/* Cache for frame addresses already read by gdb. Valid only while
698 inferior is stopped. Control variables for the frame cache should
699 be local to this module. */
700
701static struct obstack frame_cache_obstack;
702
703void *
479ab5a0 704frame_obstack_zalloc (unsigned long size)
4c1e7e9d 705{
479ab5a0
AC
706 void *data = obstack_alloc (&frame_cache_obstack, size);
707 memset (data, 0, size);
708 return data;
4c1e7e9d
AC
709}
710
6baff1d2 711CORE_ADDR *
4c1e7e9d
AC
712frame_saved_regs_zalloc (struct frame_info *fi)
713{
714 fi->saved_regs = (CORE_ADDR *)
479ab5a0 715 frame_obstack_zalloc (SIZEOF_FRAME_SAVED_REGS);
6baff1d2 716 return fi->saved_regs;
4c1e7e9d
AC
717}
718
6baff1d2
AC
719CORE_ADDR *
720get_frame_saved_regs (struct frame_info *fi)
721{
722 return fi->saved_regs;
723}
4c1e7e9d 724
a94dd1fd
AC
725/* Return the innermost (currently executing) stack frame. This is
726 split into two functions. The function unwind_to_current_frame()
727 is wrapped in catch exceptions so that, even when the unwind of the
728 sentinel frame fails, the function still returns a stack frame. */
729
730static int
731unwind_to_current_frame (struct ui_out *ui_out, void *args)
732{
733 struct frame_info *frame = get_prev_frame (args);
734 /* A sentinel frame can fail to unwind, eg, because it's PC value
735 lands in somewhere like start. */
736 if (frame == NULL)
737 return 1;
738 current_frame = frame;
739 return 0;
740}
4c1e7e9d
AC
741
742struct frame_info *
743get_current_frame (void)
744{
0a1e1ca1
AC
745 /* First check, and report, the lack of registers. Having GDB
746 report "No stack!" or "No memory" when the target doesn't even
747 have registers is very confusing. Besides, "printcmd.exp"
748 explicitly checks that ``print $pc'' with no registers prints "No
749 registers". */
a94dd1fd
AC
750 if (!target_has_registers)
751 error ("No registers.");
0a1e1ca1
AC
752 if (!target_has_stack)
753 error ("No stack.");
a94dd1fd
AC
754 if (!target_has_memory)
755 error ("No memory.");
4c1e7e9d
AC
756 if (current_frame == NULL)
757 {
a94dd1fd
AC
758 struct frame_info *sentinel_frame =
759 create_sentinel_frame (current_regcache);
760 if (catch_exceptions (uiout, unwind_to_current_frame, sentinel_frame,
761 NULL, RETURN_MASK_ERROR) != 0)
762 {
763 /* Oops! Fake a current frame? Is this useful? It has a PC
764 of zero, for instance. */
765 current_frame = sentinel_frame;
766 }
4c1e7e9d
AC
767 }
768 return current_frame;
769}
770
6e7f8b9c
AC
771/* The "selected" stack frame is used by default for local and arg
772 access. May be zero, for no selected frame. */
773
774struct frame_info *deprecated_selected_frame;
775
776/* Return the selected frame. Always non-null (unless there isn't an
777 inferior sufficient for creating a frame) in which case an error is
778 thrown. */
779
780struct frame_info *
781get_selected_frame (void)
782{
783 if (deprecated_selected_frame == NULL)
784 /* Hey! Don't trust this. It should really be re-finding the
785 last selected frame of the currently selected thread. This,
786 though, is better than nothing. */
787 select_frame (get_current_frame ());
788 /* There is always a frame. */
789 gdb_assert (deprecated_selected_frame != NULL);
790 return deprecated_selected_frame;
791}
792
793/* Select frame FI (or NULL - to invalidate the current frame). */
794
795void
796select_frame (struct frame_info *fi)
797{
798 register struct symtab *s;
799
800 deprecated_selected_frame = fi;
801 /* NOTE: cagney/2002-05-04: FI can be NULL. This occures when the
802 frame is being invalidated. */
803 if (selected_frame_level_changed_hook)
804 selected_frame_level_changed_hook (frame_relative_level (fi));
805
806 /* FIXME: kseitz/2002-08-28: It would be nice to call
807 selected_frame_level_changed_event right here, but due to limitations
808 in the current interfaces, we would end up flooding UIs with events
809 because select_frame is used extensively internally.
810
811 Once we have frame-parameterized frame (and frame-related) commands,
812 the event notification can be moved here, since this function will only
813 be called when the users selected frame is being changed. */
814
815 /* Ensure that symbols for this frame are read in. Also, determine the
816 source language of this frame, and switch to it if desired. */
817 if (fi)
818 {
11889732 819 s = find_pc_symtab (get_frame_pc (fi));
6e7f8b9c
AC
820 if (s
821 && s->language != current_language->la_language
822 && s->language != language_unknown
823 && language_mode == language_mode_auto)
824 {
825 set_language (s->language);
826 }
827 }
828}
829
4c1e7e9d
AC
830/* Return the register saved in the simplistic ``saved_regs'' cache.
831 If the value isn't here AND a value is needed, try the next inner
832 most frame. */
833
834static void
6dc42492
AC
835legacy_saved_regs_prev_register (struct frame_info *next_frame,
836 void **this_prologue_cache,
837 int regnum, int *optimizedp,
838 enum lval_type *lvalp, CORE_ADDR *addrp,
839 int *realnump, void *bufferp)
4c1e7e9d 840{
6dc42492
AC
841 /* HACK: New code is passed the next frame and this cache.
842 Unfortunatly, old code expects this frame. Since this is a
843 backward compatibility hack, cheat by walking one level along the
844 prologue chain to the frame the old code expects.
845
846 Do not try this at home. Professional driver, closed course. */
847 struct frame_info *frame = next_frame->prev;
4c1e7e9d 848 gdb_assert (frame != NULL);
4c1e7e9d 849
8f871025 850 /* Only (older) architectures that implement the
f30ee0bc
AC
851 DEPRECATED_FRAME_INIT_SAVED_REGS method should be using this
852 function. */
853 gdb_assert (DEPRECATED_FRAME_INIT_SAVED_REGS_P ());
8f871025 854
4c1e7e9d 855 /* Load the saved_regs register cache. */
a94dd1fd 856 if (get_frame_saved_regs (frame) == NULL)
f30ee0bc 857 DEPRECATED_FRAME_INIT_SAVED_REGS (frame);
4c1e7e9d 858
a94dd1fd
AC
859 if (get_frame_saved_regs (frame) != NULL
860 && get_frame_saved_regs (frame)[regnum] != 0)
4c1e7e9d
AC
861 {
862 if (regnum == SP_REGNUM)
863 {
864 /* SP register treated specially. */
865 *optimizedp = 0;
866 *lvalp = not_lval;
867 *addrp = 0;
868 *realnump = -1;
869 if (bufferp != NULL)
870 store_address (bufferp, REGISTER_RAW_SIZE (regnum),
a94dd1fd 871 get_frame_saved_regs (frame)[regnum]);
4c1e7e9d
AC
872 }
873 else
874 {
875 /* Any other register is saved in memory, fetch it but cache
876 a local copy of its value. */
877 *optimizedp = 0;
878 *lvalp = lval_memory;
a94dd1fd 879 *addrp = get_frame_saved_regs (frame)[regnum];
4c1e7e9d
AC
880 *realnump = -1;
881 if (bufferp != NULL)
882 {
883#if 1
884 /* Save each register value, as it is read in, in a
885 frame based cache. */
6dc42492 886 void **regs = (*this_prologue_cache);
4c1e7e9d
AC
887 if (regs == NULL)
888 {
889 int sizeof_cache = ((NUM_REGS + NUM_PSEUDO_REGS)
890 * sizeof (void *));
479ab5a0 891 regs = frame_obstack_zalloc (sizeof_cache);
6dc42492 892 (*this_prologue_cache) = regs;
4c1e7e9d
AC
893 }
894 if (regs[regnum] == NULL)
895 {
896 regs[regnum]
479ab5a0 897 = frame_obstack_zalloc (REGISTER_RAW_SIZE (regnum));
a94dd1fd 898 read_memory (get_frame_saved_regs (frame)[regnum], regs[regnum],
4c1e7e9d
AC
899 REGISTER_RAW_SIZE (regnum));
900 }
901 memcpy (bufferp, regs[regnum], REGISTER_RAW_SIZE (regnum));
902#else
903 /* Read the value in from memory. */
a94dd1fd 904 read_memory (get_frame_saved_regs (frame)[regnum], bufferp,
4c1e7e9d
AC
905 REGISTER_RAW_SIZE (regnum));
906#endif
907 }
908 }
909 return;
910 }
911
6dc42492
AC
912 /* No luck. Assume this and the next frame have the same register
913 value. Pass the unwind request down the frame chain to the next
914 frame. Hopefully that frame will find the register's location. */
915 frame_register_unwind (next_frame, regnum, optimizedp, lvalp, addrp,
916 realnump, bufferp);
4c1e7e9d
AC
917}
918
c170fb60 919static void
6dc42492
AC
920legacy_saved_regs_this_id (struct frame_info *next_frame,
921 void **this_prologue_cache,
922 struct frame_id *id)
c689142b 923{
18adea3f
AC
924 /* legacy_get_prev_frame() always sets ->this_id.p, hence this is
925 never needed. */
926 internal_error (__FILE__, __LINE__, "legacy_saved_regs_this_id() called");
c689142b
AC
927}
928
6dc42492 929const struct frame_unwind legacy_saved_regs_unwinder = {
7df05f2b
AC
930 /* Not really. It gets overridden by legacy_get_prev_frame. */
931 UNKNOWN_FRAME,
6dc42492
AC
932 legacy_saved_regs_this_id,
933 legacy_saved_regs_prev_register
494cca16 934};
6dc42492 935const struct frame_unwind *legacy_saved_regs_unwind = &legacy_saved_regs_unwinder;
494cca16
AC
936
937
ac2adee5 938/* Function: deprecated_generic_get_saved_register
4c1e7e9d 939 Find register number REGNUM relative to FRAME and put its (raw,
ac2adee5 940 target format) contents in *RAW_BUFFER.
4c1e7e9d
AC
941
942 Set *OPTIMIZED if the variable was optimized out (and thus can't be
943 fetched). Note that this is never set to anything other than zero
944 in this implementation.
945
946 Set *LVAL to lval_memory, lval_register, or not_lval, depending on
947 whether the value was fetched from memory, from a register, or in a
948 strange and non-modifiable way (e.g. a frame pointer which was
949 calculated rather than fetched). We will use not_lval for values
950 fetched from generic dummy frames.
951
952 Set *ADDRP to the address, either in memory or as a REGISTER_BYTE
953 offset into the registers array. If the value is stored in a dummy
954 frame, set *ADDRP to zero.
955
4c1e7e9d
AC
956 The argument RAW_BUFFER must point to aligned memory. */
957
958void
959deprecated_generic_get_saved_register (char *raw_buffer, int *optimized,
960 CORE_ADDR *addrp,
961 struct frame_info *frame, int regnum,
962 enum lval_type *lval)
963{
964 if (!target_has_registers)
965 error ("No registers.");
966
f30ee0bc 967 gdb_assert (DEPRECATED_FRAME_INIT_SAVED_REGS_P ());
8f871025 968
4c1e7e9d
AC
969 /* Normal systems don't optimize out things with register numbers. */
970 if (optimized != NULL)
971 *optimized = 0;
972
973 if (addrp) /* default assumption: not found in memory */
974 *addrp = 0;
975
976 /* Note: since the current frame's registers could only have been
977 saved by frames INTERIOR TO the current frame, we skip examining
978 the current frame itself: otherwise, we would be getting the
979 previous frame's registers which were saved by the current frame. */
980
a94dd1fd 981 if (frame != NULL)
4c1e7e9d 982 {
a94dd1fd
AC
983 for (frame = get_next_frame (frame);
984 frame_relative_level (frame) >= 0;
985 frame = get_next_frame (frame))
4c1e7e9d 986 {
a94dd1fd 987 if (get_frame_type (frame) == DUMMY_FRAME)
4c1e7e9d 988 {
a94dd1fd
AC
989 if (lval) /* found it in a CALL_DUMMY frame */
990 *lval = not_lval;
991 if (raw_buffer)
992 /* FIXME: cagney/2002-06-26: This should be via the
993 gdbarch_register_read() method so that it, on the
994 fly, constructs either a raw or pseudo register
995 from the raw register cache. */
996 regcache_raw_read
997 (generic_find_dummy_frame (get_frame_pc (frame),
998 get_frame_base (frame)),
999 regnum, raw_buffer);
1000 return;
4c1e7e9d 1001 }
a94dd1fd 1002
f30ee0bc 1003 DEPRECATED_FRAME_INIT_SAVED_REGS (frame);
a94dd1fd
AC
1004 if (get_frame_saved_regs (frame) != NULL
1005 && get_frame_saved_regs (frame)[regnum] != 0)
4c1e7e9d 1006 {
a94dd1fd
AC
1007 if (lval) /* found it saved on the stack */
1008 *lval = lval_memory;
1009 if (regnum == SP_REGNUM)
1010 {
1011 if (raw_buffer) /* SP register treated specially */
1012 store_address (raw_buffer, REGISTER_RAW_SIZE (regnum),
1013 get_frame_saved_regs (frame)[regnum]);
1014 }
1015 else
1016 {
1017 if (addrp) /* any other register */
1018 *addrp = get_frame_saved_regs (frame)[regnum];
1019 if (raw_buffer)
1020 read_memory (get_frame_saved_regs (frame)[regnum], raw_buffer,
1021 REGISTER_RAW_SIZE (regnum));
1022 }
1023 return;
4c1e7e9d 1024 }
4c1e7e9d
AC
1025 }
1026 }
1027
1028 /* If we get thru the loop to this point, it means the register was
1029 not saved in any frame. Return the actual live-register value. */
1030
1031 if (lval) /* found it in a live register */
1032 *lval = lval_register;
1033 if (addrp)
1034 *addrp = REGISTER_BYTE (regnum);
1035 if (raw_buffer)
1036 deprecated_read_register_gen (regnum, raw_buffer);
1037}
1038
eb4f72c5
AC
1039/* Determine the frame's type based on its PC. */
1040
1041static enum frame_type
1042frame_type_from_pc (CORE_ADDR pc)
1043{
1044 /* FIXME: cagney/2002-11-24: Can't yet directly call
1045 pc_in_dummy_frame() as some architectures don't set
1046 PC_IN_CALL_DUMMY() to generic_pc_in_call_dummy() (remember the
1047 latter is implemented by simply calling pc_in_dummy_frame). */
1048 if (DEPRECATED_USE_GENERIC_DUMMY_FRAMES
1049 && DEPRECATED_PC_IN_CALL_DUMMY (pc, 0, 0))
1050 return DUMMY_FRAME;
1051 else
1052 {
1053 char *name;
1054 find_pc_partial_function (pc, &name, NULL, NULL);
1055 if (PC_IN_SIGTRAMP (pc, name))
1056 return SIGTRAMP_FRAME;
1057 else
1058 return NORMAL_FRAME;
1059 }
1060}
1061
4c1e7e9d
AC
1062/* Create an arbitrary (i.e. address specified by user) or innermost frame.
1063 Always returns a non-NULL value. */
1064
1065struct frame_info *
1066create_new_frame (CORE_ADDR addr, CORE_ADDR pc)
1067{
1068 struct frame_info *fi;
4c1e7e9d 1069
7f78e237
AC
1070 if (frame_debug)
1071 {
1072 fprintf_unfiltered (gdb_stdlog,
1073 "{ create_new_frame (addr=0x%s, pc=0x%s) ",
1074 paddr_nz (addr), paddr_nz (pc));
1075 }
1076
479ab5a0 1077 fi = frame_obstack_zalloc (sizeof (struct frame_info));
4c1e7e9d 1078
a94dd1fd 1079 fi->next = create_sentinel_frame (current_regcache);
7df05f2b
AC
1080
1081 /* Select/initialize both the unwind function and the frame's type
1082 based on the PC. */
d1340264 1083 fi->unwind = frame_unwind_find_by_pc (current_gdbarch, pc);
7df05f2b
AC
1084 if (fi->unwind->type != UNKNOWN_FRAME)
1085 fi->type = fi->unwind->type;
1086 else
1087 fi->type = frame_type_from_pc (pc);
1088
18adea3f 1089 fi->this_id.p = 1;
11889732
AC
1090 deprecated_update_frame_base_hack (fi, addr);
1091 deprecated_update_frame_pc_hack (fi, pc);
4c1e7e9d 1092
e9582e71
AC
1093 if (DEPRECATED_INIT_EXTRA_FRAME_INFO_P ())
1094 DEPRECATED_INIT_EXTRA_FRAME_INFO (0, fi);
4c1e7e9d 1095
7f78e237
AC
1096 if (frame_debug)
1097 {
1098 fprintf_unfiltered (gdb_stdlog, "-> ");
1099 fprint_frame (gdb_stdlog, fi);
1100 fprintf_unfiltered (gdb_stdlog, " }\n");
1101 }
1102
4c1e7e9d
AC
1103 return fi;
1104}
1105
03febf99
AC
1106/* Return the frame that THIS_FRAME calls (NULL if THIS_FRAME is the
1107 innermost frame). Be careful to not fall off the bottom of the
1108 frame chain and onto the sentinel frame. */
4c1e7e9d
AC
1109
1110struct frame_info *
03febf99 1111get_next_frame (struct frame_info *this_frame)
4c1e7e9d 1112{
03febf99
AC
1113 if (this_frame->level > 0)
1114 return this_frame->next;
a94dd1fd
AC
1115 else
1116 return NULL;
4c1e7e9d
AC
1117}
1118
1119/* Flush the entire frame cache. */
1120
1121void
1122flush_cached_frames (void)
1123{
1124 /* Since we can't really be sure what the first object allocated was */
1125 obstack_free (&frame_cache_obstack, 0);
1126 obstack_init (&frame_cache_obstack);
1127
1128 current_frame = NULL; /* Invalidate cache */
1129 select_frame (NULL);
1130 annotate_frames_invalid ();
7f78e237
AC
1131 if (frame_debug)
1132 fprintf_unfiltered (gdb_stdlog, "{ flush_cached_frames () }\n");
4c1e7e9d
AC
1133}
1134
1135/* Flush the frame cache, and start a new one if necessary. */
1136
1137void
1138reinit_frame_cache (void)
1139{
1140 flush_cached_frames ();
1141
1142 /* FIXME: The inferior_ptid test is wrong if there is a corefile. */
1143 if (PIDGET (inferior_ptid) != 0)
1144 {
1145 select_frame (get_current_frame ());
1146 }
1147}
1148
eb4f72c5
AC
1149/* Create the previous frame using the deprecated methods
1150 INIT_EXTRA_INFO, INIT_FRAME_PC and INIT_FRAME_PC_FIRST. */
4c1e7e9d 1151
eb4f72c5 1152static struct frame_info *
03febf99 1153legacy_get_prev_frame (struct frame_info *this_frame)
4c1e7e9d
AC
1154{
1155 CORE_ADDR address = 0;
1156 struct frame_info *prev;
95adb866 1157 int fromleaf;
4c1e7e9d 1158
7f78e237
AC
1159 /* Don't frame_debug print legacy_get_prev_frame() here, just
1160 confuses the output. */
1161
a01dd7cc 1162 /* Allocate the new frame.
055bb976
AC
1163
1164 There is no reason to worry about memory leaks, should the
1165 remainder of the function fail. The allocated memory will be
1166 quickly reclaimed when the frame cache is flushed, and the `we've
1167 been here before' check, in get_prev_frame will stop repeated
1168 memory allocation calls. */
1169 prev = FRAME_OBSTACK_ZALLOC (struct frame_info);
1170 prev->level = this_frame->level + 1;
1171
a01dd7cc
AC
1172 /* Do not completly wire it in to the frame chain. Some (bad) code
1173 in INIT_FRAME_EXTRA_INFO tries to look along frame->prev to pull
1174 some fancy tricks (of course such code is, by definition,
1175 recursive).
1176
1177 On the other hand, methods, such as get_frame_pc() and
1178 get_frame_base() rely on being able to walk along the frame
1179 chain. Make certain that at least they work by providing that
1180 link. Of course things manipulating prev can't go back. */
1181 prev->next = this_frame;
1182
055bb976
AC
1183 /* NOTE: cagney/2002-11-18: Should have been correctly setting the
1184 frame's type here, before anything else, and not last, at the
1185 bottom of this function. The various
1186 DEPRECATED_INIT_EXTRA_FRAME_INFO, DEPRECATED_INIT_FRAME_PC,
1187 DEPRECATED_INIT_FRAME_PC_FIRST and
1188 DEPRECATED_FRAME_INIT_SAVED_REGS methods are full of work-arounds
1189 that handle the frame not being correctly set from the start.
1190 Unfortunatly those same work-arounds rely on the type defaulting
1191 to NORMAL_FRAME. Ulgh! The new frame code does not have this
1192 problem. */
7df05f2b 1193 prev->type = UNKNOWN_FRAME;
055bb976 1194
06c77151 1195 /* A legacy frame's ID is always computed here. Mark it as valid. */
d0a55772 1196 prev->this_id.p = 1;
06c77151 1197
055bb976
AC
1198 /* Handle sentinel frame unwind as a special case. */
1199 if (this_frame->level < 0)
1200 {
1201 /* Try to unwind the PC. If that doesn't work, assume we've reached
1202 the oldest frame and simply return. Is there a better sentinal
1203 value? The unwound PC value is then used to initialize the new
1204 previous frame's type.
1205
1206 Note that the pc-unwind is intentionally performed before the
1207 frame chain. This is ok since, for old targets, both
618ce49f
AC
1208 frame_pc_unwind (nee, DEPRECATED_FRAME_SAVED_PC) and
1209 DEPRECATED_FRAME_CHAIN()) assume THIS_FRAME's data structures
1210 have already been initialized (using
055bb976
AC
1211 DEPRECATED_INIT_EXTRA_FRAME_INFO) and hence the call order
1212 doesn't matter.
1213
1214 By unwinding the PC first, it becomes possible to, in the case of
1215 a dummy frame, avoid also unwinding the frame ID. This is
1216 because (well ignoring the PPC) a dummy frame can be located
1217 using THIS_FRAME's frame ID. */
1218
11889732
AC
1219 deprecated_update_frame_pc_hack (prev, frame_pc_unwind (this_frame));
1220 if (get_frame_pc (prev) == 0)
055bb976
AC
1221 {
1222 /* The allocated PREV_FRAME will be reclaimed when the frame
1223 obstack is next purged. */
1224 if (frame_debug)
7f78e237
AC
1225 {
1226 fprintf_unfiltered (gdb_stdlog, "-> ");
1227 fprint_frame (gdb_stdlog, NULL);
1228 fprintf_unfiltered (gdb_stdlog,
1229 " // unwound legacy PC zero }\n");
1230 }
055bb976
AC
1231 return NULL;
1232 }
055bb976 1233
7df05f2b
AC
1234 /* Set the unwind functions based on that identified PC. Ditto
1235 for the "type" but strongly prefer the unwinder's frame type. */
d1340264
AC
1236 prev->unwind = frame_unwind_find_by_pc (current_gdbarch,
1237 get_frame_pc (prev));
7df05f2b 1238 if (prev->unwind->type == UNKNOWN_FRAME)
d1340264 1239 prev->type = frame_type_from_pc (get_frame_pc (prev));
7df05f2b
AC
1240 else
1241 prev->type = prev->unwind->type;
055bb976
AC
1242
1243 /* Find the prev's frame's ID. */
1244 if (prev->type == DUMMY_FRAME
1245 && gdbarch_unwind_dummy_id_p (current_gdbarch))
1246 {
1247 /* When unwinding a normal frame, the stack structure is
1248 determined by analyzing the frame's function's code (be
1249 it using brute force prologue analysis, or the dwarf2
1250 CFI). In the case of a dummy frame, that simply isn't
1251 possible. The The PC is either the program entry point,
1252 or some random address on the stack. Trying to use that
1253 PC to apply standard frame ID unwind techniques is just
1254 asking for trouble. */
e8a8712a 1255 /* Assume call_function_by_hand(), via SAVE_DUMMY_FRAME_TOS,
055bb976
AC
1256 previously saved the dummy frame's ID. Things only work
1257 if the two return the same value. */
1258 gdb_assert (SAVE_DUMMY_FRAME_TOS_P ());
1259 /* Use an architecture specific method to extract the prev's
1260 dummy ID from the next frame. Note that this method uses
1261 frame_register_unwind to obtain the register values
1262 needed to determine the dummy frame's ID. */
d0a55772
AC
1263 prev->this_id.value = gdbarch_unwind_dummy_id (current_gdbarch,
1264 this_frame);
055bb976
AC
1265 }
1266 else
1267 {
1268 /* We're unwinding a sentinel frame, the PC of which is
1269 pointing at a stack dummy. Fake up the dummy frame's ID
1270 using the same sequence as is found a traditional
1271 unwinder. Once all architectures supply the
1272 unwind_dummy_id method, this code can go away. */
d0a55772 1273 prev->this_id.value = frame_id_build (read_fp (), read_pc ());
055bb976
AC
1274 }
1275
1276 /* Check that the unwound ID is valid. */
d0a55772 1277 if (!frame_id_p (prev->this_id.value))
055bb976
AC
1278 {
1279 if (frame_debug)
7f78e237
AC
1280 {
1281 fprintf_unfiltered (gdb_stdlog, "-> ");
1282 fprint_frame (gdb_stdlog, NULL);
1283 fprintf_unfiltered (gdb_stdlog,
1284 " // unwound legacy ID invalid }\n");
1285 }
055bb976
AC
1286 return NULL;
1287 }
1288
1289 /* Check that the new frame isn't inner to (younger, below,
1290 next) the old frame. If that happens the frame unwind is
1291 going backwards. */
1292 /* FIXME: cagney/2003-02-25: Ignore the sentinel frame since
1293 that doesn't have a valid frame ID. Should instead set the
1294 sentinel frame's frame ID to a `sentinel'. Leave it until
1295 after the switch to storing the frame ID, instead of the
1296 frame base, in the frame object. */
1297
055bb976
AC
1298 /* Link it in. */
1299 this_frame->prev = prev;
055bb976
AC
1300
1301 /* FIXME: cagney/2002-01-19: This call will go away. Instead of
1302 initializing extra info, all frames will use the frame_cache
1303 (passed to the unwind functions) to store additional frame
1304 info. Unfortunatly legacy targets can't use
1305 legacy_get_prev_frame() to unwind the sentinel frame and,
1306 consequently, are forced to take this code path and rely on
1307 the below call to DEPRECATED_INIT_EXTRA_FRAME_INFO to
1308 initialize the inner-most frame. */
1309 if (DEPRECATED_INIT_EXTRA_FRAME_INFO_P ())
1310 {
1311 DEPRECATED_INIT_EXTRA_FRAME_INFO (0, prev);
1312 }
18adea3f
AC
1313
1314 if (prev->type == NORMAL_FRAME)
1315 prev->this_id.value.code_addr
1316 = get_pc_function_start (prev->this_id.value.code_addr);
1317
7f78e237
AC
1318 if (frame_debug)
1319 {
1320 fprintf_unfiltered (gdb_stdlog, "-> ");
1321 fprint_frame (gdb_stdlog, prev);
1322 fprintf_unfiltered (gdb_stdlog, " } // legacy innermost frame\n");
1323 }
055bb976
AC
1324 return prev;
1325 }
1326
eb4f72c5
AC
1327 /* This code only works on normal frames. A sentinel frame, where
1328 the level is -1, should never reach this code. */
03febf99 1329 gdb_assert (this_frame->level >= 0);
4c1e7e9d
AC
1330
1331 /* On some machines it is possible to call a function without
1332 setting up a stack frame for it. On these machines, we
1333 define this macro to take two args; a frameinfo pointer
1334 identifying a frame and a variable to set or clear if it is
1335 or isn't leafless. */
1336
1337 /* Still don't want to worry about this except on the innermost
03febf99 1338 frame. This macro will set FROMLEAF if THIS_FRAME is a frameless
95adb866 1339 function invocation. */
03febf99 1340 if (this_frame->level == 0)
95adb866
AC
1341 /* FIXME: 2002-11-09: Frameless functions can occure anywhere in
1342 the frame chain, not just the inner most frame! The generic,
1343 per-architecture, frame code should handle this and the below
1344 should simply be removed. */
03febf99 1345 fromleaf = FRAMELESS_FUNCTION_INVOCATION (this_frame);
95adb866
AC
1346 else
1347 fromleaf = 0;
1348
1349 if (fromleaf)
1350 /* A frameless inner-most frame. The `FP' (which isn't an
1351 architecture frame-pointer register!) of the caller is the same
1352 as the callee. */
1353 /* FIXME: 2002-11-09: There isn't any reason to special case this
1354 edge condition. Instead the per-architecture code should hande
1355 it locally. */
03febf99 1356 address = get_frame_base (this_frame);
95adb866 1357 else
4c1e7e9d
AC
1358 {
1359 /* Two macros defined in tm.h specify the machine-dependent
1360 actions to be performed here.
95adb866 1361
4c1e7e9d 1362 First, get the frame's chain-pointer.
95adb866 1363
4c1e7e9d
AC
1364 If that is zero, the frame is the outermost frame or a leaf
1365 called by the outermost frame. This means that if start
1366 calls main without a frame, we'll return 0 (which is fine
1367 anyway).
1368
1369 Nope; there's a problem. This also returns when the current
1370 routine is a leaf of main. This is unacceptable. We move
1371 this to after the ffi test; I'd rather have backtraces from
1372 start go curfluy than have an abort called from main not show
1373 main. */
618ce49f
AC
1374 gdb_assert (DEPRECATED_FRAME_CHAIN_P ());
1375 address = DEPRECATED_FRAME_CHAIN (this_frame);
4c1e7e9d 1376
e6ba3bc9 1377 if (!legacy_frame_chain_valid (address, this_frame))
7f78e237
AC
1378 {
1379 if (frame_debug)
1380 {
1381 fprintf_unfiltered (gdb_stdlog, "-> ");
1382 fprint_frame (gdb_stdlog, NULL);
1383 fprintf_unfiltered (gdb_stdlog,
1384 " // legacy frame chain invalid }\n");
1385 }
1386 return NULL;
1387 }
4c1e7e9d
AC
1388 }
1389 if (address == 0)
7f78e237
AC
1390 {
1391 if (frame_debug)
1392 {
1393 fprintf_unfiltered (gdb_stdlog, "-> ");
1394 fprint_frame (gdb_stdlog, NULL);
1395 fprintf_unfiltered (gdb_stdlog,
1396 " // legacy frame chain NULL }\n");
1397 }
1398 return NULL;
1399 }
4c1e7e9d 1400
055bb976 1401 /* Link in the already allocated prev frame. */
03febf99 1402 this_frame->prev = prev;
11889732 1403 deprecated_update_frame_base_hack (prev, address);
4c1e7e9d 1404
95adb866 1405 /* This change should not be needed, FIXME! We should determine
a5afb99f 1406 whether any targets *need* DEPRECATED_INIT_FRAME_PC to happen
e9582e71
AC
1407 after DEPRECATED_INIT_EXTRA_FRAME_INFO and come up with a simple
1408 way to express what goes on here.
95adb866 1409
e9582e71
AC
1410 DEPRECATED_INIT_EXTRA_FRAME_INFO is called from two places:
1411 create_new_frame (where the PC is already set up) and here (where
1412 it isn't). DEPRECATED_INIT_FRAME_PC is only called from here,
1413 always after DEPRECATED_INIT_EXTRA_FRAME_INFO.
95adb866 1414
e9582e71
AC
1415 The catch is the MIPS, where DEPRECATED_INIT_EXTRA_FRAME_INFO
1416 requires the PC value (which hasn't been set yet). Some other
1417 machines appear to require DEPRECATED_INIT_EXTRA_FRAME_INFO
1418 before they can do DEPRECATED_INIT_FRAME_PC. Phoo.
95adb866 1419
2ca6c561
AC
1420 We shouldn't need DEPRECATED_INIT_FRAME_PC_FIRST to add more
1421 complication to an already overcomplicated part of GDB.
1422 gnu@cygnus.com, 15Sep92.
95adb866 1423
a5afb99f 1424 Assuming that some machines need DEPRECATED_INIT_FRAME_PC after
e9582e71 1425 DEPRECATED_INIT_EXTRA_FRAME_INFO, one possible scheme:
95adb866
AC
1426
1427 SETUP_INNERMOST_FRAME(): Default version is just create_new_frame
1428 (read_fp ()), read_pc ()). Machines with extra frame info would
1429 do that (or the local equivalent) and then set the extra fields.
1430
1431 SETUP_ARBITRARY_FRAME(argc, argv): Only change here is that
1432 create_new_frame would no longer init extra frame info;
1433 SETUP_ARBITRARY_FRAME would have to do that.
1434
e9582e71
AC
1435 INIT_PREV_FRAME(fromleaf, prev) Replace
1436 DEPRECATED_INIT_EXTRA_FRAME_INFO and DEPRECATED_INIT_FRAME_PC.
1437 This should also return a flag saying whether to keep the new
1438 frame, or whether to discard it, because on some machines (e.g.
618ce49f
AC
1439 mips) it is really awkward to have DEPRECATED_FRAME_CHAIN_VALID
1440 called BEFORE DEPRECATED_INIT_EXTRA_FRAME_INFO (there is no good
1441 way to get information deduced in DEPRECATED_FRAME_CHAIN_VALID
1442 into the extra fields of the new frame). std_frame_pc(fromleaf,
1443 prev)
95adb866
AC
1444
1445 This is the default setting for INIT_PREV_FRAME. It just does
a5afb99f
AC
1446 what the default DEPRECATED_INIT_FRAME_PC does. Some machines
1447 will call it from INIT_PREV_FRAME (either at the beginning, the
1448 end, or in the middle). Some machines won't use it.
95adb866
AC
1449
1450 kingdon@cygnus.com, 13Apr93, 31Jan94, 14Dec94. */
1451
1452 /* NOTE: cagney/2002-11-09: Just ignore the above! There is no
1453 reason for things to be this complicated.
1454
1455 The trick is to assume that there is always a frame. Instead of
1456 special casing the inner-most frame, create fake frame
1457 (containing the hardware registers) that is inner to the
1458 user-visible inner-most frame (...) and then unwind from that.
1459 That way architecture code can use use the standard
1460 frame_XX_unwind() functions and not differentiate between the
1461 inner most and any other case.
1462
1463 Since there is always a frame to unwind from, there is always
03febf99 1464 somewhere (THIS_FRAME) to store all the info needed to construct
95adb866
AC
1465 a new (previous) frame without having to first create it. This
1466 means that the convolution below - needing to carefully order a
1467 frame's initialization - isn't needed.
1468
618ce49f
AC
1469 The irony here though, is that DEPRECATED_FRAME_CHAIN(), at least
1470 for a more up-to-date architecture, always calls
1471 FRAME_SAVED_PC(), and FRAME_SAVED_PC() computes the PC but
1472 without first needing the frame! Instead of the convolution
1473 below, we could have simply called FRAME_SAVED_PC() and been done
1474 with it! Note that FRAME_SAVED_PC() is being superseed by
1475 frame_pc_unwind() and that function does have somewhere to cache
1476 that PC value. */
4c1e7e9d 1477
2ca6c561 1478 if (DEPRECATED_INIT_FRAME_PC_FIRST_P ())
11889732
AC
1479 deprecated_update_frame_pc_hack (prev,
1480 DEPRECATED_INIT_FRAME_PC_FIRST (fromleaf,
1481 prev));
4c1e7e9d 1482
e9582e71
AC
1483 if (DEPRECATED_INIT_EXTRA_FRAME_INFO_P ())
1484 DEPRECATED_INIT_EXTRA_FRAME_INFO (fromleaf, prev);
4c1e7e9d
AC
1485
1486 /* This entry is in the frame queue now, which is good since
95adb866
AC
1487 FRAME_SAVED_PC may use that queue to figure out its value (see
1488 tm-sparc.h). We want the pc saved in the inferior frame. */
a5afb99f 1489 if (DEPRECATED_INIT_FRAME_PC_P ())
11889732
AC
1490 deprecated_update_frame_pc_hack (prev,
1491 DEPRECATED_INIT_FRAME_PC (fromleaf,
1492 prev));
4c1e7e9d 1493
95adb866
AC
1494 /* If ->frame and ->pc are unchanged, we are in the process of
1495 getting ourselves into an infinite backtrace. Some architectures
618ce49f
AC
1496 check this in DEPRECATED_FRAME_CHAIN or thereabouts, but it seems
1497 like there is no reason this can't be an architecture-independent
1498 check. */
11889732
AC
1499 if (get_frame_base (prev) == get_frame_base (this_frame)
1500 && get_frame_pc (prev) == get_frame_pc (this_frame))
4c1e7e9d 1501 {
03febf99 1502 this_frame->prev = NULL;
95adb866 1503 obstack_free (&frame_cache_obstack, prev);
7f78e237
AC
1504 if (frame_debug)
1505 {
1506 fprintf_unfiltered (gdb_stdlog, "-> ");
1507 fprint_frame (gdb_stdlog, NULL);
1508 fprintf_unfiltered (gdb_stdlog,
1509 " // legacy this.id == prev.id }\n");
1510 }
95adb866 1511 return NULL;
4c1e7e9d
AC
1512 }
1513
1514 /* Initialize the code used to unwind the frame PREV based on the PC
1515 (and probably other architectural information). The PC lets you
1516 check things like the debug info at that point (dwarf2cfi?) and
1517 use that to decide how the frame should be unwound. */
11889732
AC
1518 prev->unwind = frame_unwind_find_by_pc (current_gdbarch,
1519 get_frame_pc (prev));
4c1e7e9d 1520
7df05f2b
AC
1521 /* If the unwinder provides a frame type, use it. Otherwize
1522 continue on to that heuristic mess. */
1523 if (prev->unwind->type != UNKNOWN_FRAME)
1524 {
1525 prev->type = prev->unwind->type;
18adea3f
AC
1526 if (prev->type == NORMAL_FRAME)
1527 prev->this_id.value.code_addr
1528 = get_pc_function_start (prev->this_id.value.code_addr);
7f78e237
AC
1529 if (frame_debug)
1530 {
1531 fprintf_unfiltered (gdb_stdlog, "-> ");
1532 fprint_frame (gdb_stdlog, prev);
1533 fprintf_unfiltered (gdb_stdlog, " } // legacy with unwound type\n");
1534 }
7df05f2b
AC
1535 return prev;
1536 }
1537
5a203e44
AC
1538 /* NOTE: cagney/2002-11-18: The code segments, found in
1539 create_new_frame and get_prev_frame(), that initializes the
1540 frames type is subtly different. The latter only updates ->type
1541 when it encounters a SIGTRAMP_FRAME or DUMMY_FRAME. This stops
1542 get_prev_frame() overriding the frame's type when the INIT code
1543 has previously set it. This is really somewhat bogus. The
1544 initialization, as seen in create_new_frame(), should occur
1545 before the INIT function has been called. */
07555a72 1546 if (DEPRECATED_USE_GENERIC_DUMMY_FRAMES
ae45cd16 1547 && (DEPRECATED_PC_IN_CALL_DUMMY_P ()
11889732
AC
1548 ? DEPRECATED_PC_IN_CALL_DUMMY (get_frame_pc (prev), 0, 0)
1549 : pc_in_dummy_frame (get_frame_pc (prev))))
5a203e44
AC
1550 prev->type = DUMMY_FRAME;
1551 else
1552 {
1553 /* FIXME: cagney/2002-11-10: This should be moved to before the
1554 INIT code above so that the INIT code knows what the frame's
1555 type is (in fact, for a [generic] dummy-frame, the type can
1556 be set and then the entire initialization can be skipped.
1557 Unforunatly, its the INIT code that sets the PC (Hmm, catch
1558 22). */
1559 char *name;
11889732
AC
1560 find_pc_partial_function (get_frame_pc (prev), &name, NULL, NULL);
1561 if (PC_IN_SIGTRAMP (get_frame_pc (prev), name))
5a203e44
AC
1562 prev->type = SIGTRAMP_FRAME;
1563 /* FIXME: cagney/2002-11-11: Leave prev->type alone. Some
1564 architectures are forcing the frame's type in INIT so we
1565 don't want to override it here. Remember, NORMAL_FRAME == 0,
1566 so it all works (just :-/). Once this initialization is
1567 moved to the start of this function, all this nastness will
1568 go away. */
1569 }
4c1e7e9d 1570
18adea3f
AC
1571 if (prev->type == NORMAL_FRAME)
1572 prev->this_id.value.code_addr
1573 = get_pc_function_start (prev->this_id.value.code_addr);
1574
7f78e237
AC
1575 if (frame_debug)
1576 {
1577 fprintf_unfiltered (gdb_stdlog, "-> ");
1578 fprint_frame (gdb_stdlog, prev);
1579 fprintf_unfiltered (gdb_stdlog, " } // legacy with confused type\n");
1580 }
1581
4c1e7e9d
AC
1582 return prev;
1583}
1584
eb4f72c5 1585/* Return a structure containing various interesting information
03febf99 1586 about the frame that called THIS_FRAME. Returns NULL
eb4f72c5
AC
1587 if there is no such frame. */
1588
1589struct frame_info *
03febf99 1590get_prev_frame (struct frame_info *this_frame)
eb4f72c5
AC
1591{
1592 struct frame_info *prev_frame;
1593
7f78e237
AC
1594 if (frame_debug)
1595 {
1596 fprintf_unfiltered (gdb_stdlog, "{ get_prev_frame (this_frame=");
1597 if (this_frame != NULL)
1598 fprintf_unfiltered (gdb_stdlog, "%d", this_frame->level);
1599 else
1600 fprintf_unfiltered (gdb_stdlog, "<NULL>");
1601 fprintf_unfiltered (gdb_stdlog, ") ");
1602 }
1603
eb4f72c5
AC
1604 /* Return the inner-most frame, when the caller passes in NULL. */
1605 /* NOTE: cagney/2002-11-09: Not sure how this would happen. The
1606 caller should have previously obtained a valid frame using
1607 get_selected_frame() and then called this code - only possibility
1608 I can think of is code behaving badly.
1609
1610 NOTE: cagney/2003-01-10: Talk about code behaving badly. Check
1611 block_innermost_frame(). It does the sequence: frame = NULL;
1612 while (1) { frame = get_prev_frame (frame); .... }. Ulgh! Why
1613 it couldn't be written better, I don't know.
1614
1615 NOTE: cagney/2003-01-11: I suspect what is happening is
1616 block_innermost_frame() is, when the target has no state
1617 (registers, memory, ...), still calling this function. The
1618 assumption being that this function will return NULL indicating
1619 that a frame isn't possible, rather than checking that the target
1620 has state and then calling get_current_frame() and
1621 get_prev_frame(). This is a guess mind. */
03febf99 1622 if (this_frame == NULL)
eb4f72c5
AC
1623 {
1624 /* NOTE: cagney/2002-11-09: There was a code segment here that
1625 would error out when CURRENT_FRAME was NULL. The comment
1626 that went with it made the claim ...
1627
1628 ``This screws value_of_variable, which just wants a nice
1629 clean NULL return from block_innermost_frame if there are no
1630 frames. I don't think I've ever seen this message happen
1631 otherwise. And returning NULL here is a perfectly legitimate
1632 thing to do.''
1633
1634 Per the above, this code shouldn't even be called with a NULL
03febf99 1635 THIS_FRAME. */
eb4f72c5
AC
1636 return current_frame;
1637 }
1638
1639 /* There is always a frame. If this assertion fails, suspect that
1640 something should be calling get_selected_frame() or
1641 get_current_frame(). */
03febf99 1642 gdb_assert (this_frame != NULL);
eb4f72c5 1643
03febf99 1644 if (this_frame->level >= 0
eb4f72c5 1645 && !backtrace_below_main
03febf99 1646 && inside_main_func (get_frame_pc (this_frame)))
eb4f72c5
AC
1647 /* Don't unwind past main(), bug always unwind the sentinel frame.
1648 Note, this is done _before_ the frame has been marked as
1649 previously unwound. That way if the user later decides to
1650 allow unwinds past main(), that just happens. */
ac2bd0a9
AC
1651 {
1652 if (frame_debug)
7f78e237 1653 fprintf_unfiltered (gdb_stdlog, "-> NULL // inside main func }\n");
ac2bd0a9
AC
1654 return NULL;
1655 }
eb4f72c5
AC
1656
1657 /* Only try to do the unwind once. */
03febf99 1658 if (this_frame->prev_p)
7f78e237
AC
1659 {
1660 if (frame_debug)
1661 {
1662 fprintf_unfiltered (gdb_stdlog, "-> ");
1663 fprint_frame (gdb_stdlog, this_frame->prev);
1664 fprintf_unfiltered (gdb_stdlog, " // cached \n");
1665 }
1666 return this_frame->prev;
1667 }
03febf99 1668 this_frame->prev_p = 1;
eb4f72c5 1669
ce0c7262 1670#if 0
b14185ce
AC
1671 /* If we're inside the entry file, it isn't valid. Don't apply this
1672 test to a dummy frame - dummy frame PC's typically land in the
1673 entry file. Don't apply this test to the sentinel frame.
1674 Sentinel frames should always be allowed to unwind. */
eb4f72c5
AC
1675 /* NOTE: drow/2002-12-25: should there be a way to disable this
1676 check? It assumes a single small entry file, and the way some
1677 debug readers (e.g. dbxread) figure out which object is the
1678 entry file is somewhat hokey. */
1679 /* NOTE: cagney/2003-01-10: If there is a way of disabling this test
1680 then it should probably be moved to before the ->prev_p test,
1681 above. */
ce0c7262
CV
1682 /* NOTE: vinschen/2003-04-01: Disabled. It turns out that the call to
1683 inside_entry_file destroys a meaningful backtrace under some
1684 conditions. E. g. the backtrace tests in the asm-source testcase
1685 are broken for some targets. In this test the functions are all
1686 implemented as part of one file and the testcase is not necessarily
1687 linked with a start file (depending on the target). What happens is,
1688 that the first frame is printed normaly and following frames are
1689 treated as being inside the enttry file then. This way, only the
1690 #0 frame is printed in the backtrace output. */
03febf99
AC
1691 if (this_frame->type != DUMMY_FRAME && this_frame->level >= 0
1692 && inside_entry_file (get_frame_pc (this_frame)))
ac2bd0a9
AC
1693 {
1694 if (frame_debug)
7f78e237
AC
1695 {
1696 fprintf_unfiltered (gdb_stdlog, "-> ");
1697 fprint_frame (gdb_stdlog, NULL);
1698 fprintf_unfiltered (gdb_stdlog, " // inside entry file }\n");
1699 }
eb4f72c5 1700 return NULL;
ac2bd0a9 1701 }
ce0c7262 1702#endif
eb4f72c5 1703
b14185ce
AC
1704 /* If we're already inside the entry function for the main objfile,
1705 then it isn't valid. Don't apply this test to a dummy frame -
1706 dummy frame PC's typically land in the entry func. Don't apply
1707 this test to the sentinel frame. Sentinel frames should always
1708 be allowed to unwind. */
1709 /* NOTE: cagney/2003-02-25: Don't enable until someone has found
1710 hard evidence that this is needed. */
1711 if (0
03febf99
AC
1712 && this_frame->type != DUMMY_FRAME && this_frame->level >= 0
1713 && inside_entry_func (get_frame_pc (this_frame)))
b14185ce
AC
1714 {
1715 if (frame_debug)
7f78e237
AC
1716 {
1717 fprintf_unfiltered (gdb_stdlog, "-> ");
1718 fprint_frame (gdb_stdlog, NULL);
1719 fprintf_unfiltered (gdb_stdlog, "// inside entry func }\n");
1720 }
b14185ce
AC
1721 return NULL;
1722 }
1723
eb4f72c5 1724 /* If any of the old frame initialization methods are around, use
055bb976
AC
1725 the legacy get_prev_frame method. */
1726 if (legacy_frame_p (current_gdbarch))
ac2bd0a9 1727 {
03febf99 1728 prev_frame = legacy_get_prev_frame (this_frame);
ac2bd0a9
AC
1729 return prev_frame;
1730 }
eb4f72c5 1731
270c3b1d
AC
1732 /* Check that this frame's ID was valid. If it wasn't, don't try to
1733 unwind to the prev frame. Be careful to not apply this test to
1734 the sentinel frame. */
1735 if (this_frame->level >= 0 && !frame_id_p (get_frame_id (this_frame)))
1736 {
1737 if (frame_debug)
7f78e237
AC
1738 {
1739 fprintf_unfiltered (gdb_stdlog, "-> ");
1740 fprint_frame (gdb_stdlog, NULL);
1741 fprintf_unfiltered (gdb_stdlog, " // this ID is NULL }\n");
1742 }
270c3b1d
AC
1743 return NULL;
1744 }
1745
1746 /* Check that this frame's ID isn't inner to (younger, below, next)
1747 the next frame. This happens when frame unwind goes backwards.
1748 Since the sentinel frame isn't valid, don't apply this if this
1749 frame is entier the inner-most or sentinel frame. */
1750 if (this_frame->level > 0
1751 && frame_id_inner (get_frame_id (this_frame),
1752 get_frame_id (this_frame->next)))
1753 error ("This frame inner-to next frame (corrupt stack?)");
1754
1755 /* Check that this and the next frame are different. If they are
1756 not, there is most likely a stack cycle. As with the inner-than
1757 test, avoid the inner-most and sentinel frames. */
1758 /* FIXME: cagney/2003-03-17: Can't yet enable this this check. The
1759 frame_id_eq() method doesn't yet use function addresses when
1760 comparing frame IDs. */
1761 if (0
1762 && this_frame->level > 0
1763 && frame_id_eq (get_frame_id (this_frame),
1764 get_frame_id (this_frame->next)))
1765 error ("This frame identical to next frame (corrupt stack?)");
1766
eb4f72c5
AC
1767 /* Allocate the new frame but do not wire it in to the frame chain.
1768 Some (bad) code in INIT_FRAME_EXTRA_INFO tries to look along
1769 frame->next to pull some fancy tricks (of course such code is, by
1770 definition, recursive). Try to prevent it.
1771
1772 There is no reason to worry about memory leaks, should the
1773 remainder of the function fail. The allocated memory will be
1774 quickly reclaimed when the frame cache is flushed, and the `we've
1775 been here before' check above will stop repeated memory
1776 allocation calls. */
1777 prev_frame = FRAME_OBSTACK_ZALLOC (struct frame_info);
03febf99 1778 prev_frame->level = this_frame->level + 1;
eb4f72c5
AC
1779
1780 /* Try to unwind the PC. If that doesn't work, assume we've reached
1781 the oldest frame and simply return. Is there a better sentinal
1782 value? The unwound PC value is then used to initialize the new
1783 previous frame's type.
1784
1785 Note that the pc-unwind is intentionally performed before the
1786 frame chain. This is ok since, for old targets, both
618ce49f
AC
1787 frame_pc_unwind (nee, FRAME_SAVED_PC) and
1788 DEPRECATED_FRAME_CHAIN()) assume THIS_FRAME's data structures
1789 have already been initialized (using
e9582e71
AC
1790 DEPRECATED_INIT_EXTRA_FRAME_INFO) and hence the call order
1791 doesn't matter.
eb4f72c5
AC
1792
1793 By unwinding the PC first, it becomes possible to, in the case of
1794 a dummy frame, avoid also unwinding the frame ID. This is
1795 because (well ignoring the PPC) a dummy frame can be located
03febf99 1796 using THIS_FRAME's frame ID. */
eb4f72c5 1797
d1340264 1798 if (frame_pc_unwind (this_frame) == 0)
ac2bd0a9
AC
1799 {
1800 /* The allocated PREV_FRAME will be reclaimed when the frame
1801 obstack is next purged. */
1802 if (frame_debug)
7f78e237
AC
1803 {
1804 fprintf_unfiltered (gdb_stdlog, "-> ");
1805 fprint_frame (gdb_stdlog, NULL);
1806 fprintf_unfiltered (gdb_stdlog, " // unwound PC zero }\n");
1807 }
ac2bd0a9
AC
1808 return NULL;
1809 }
eb4f72c5
AC
1810
1811 /* Set the unwind functions based on that identified PC. */
1812 prev_frame->unwind = frame_unwind_find_by_pc (current_gdbarch,
d1340264 1813 frame_pc_unwind (this_frame));
eb4f72c5 1814
7df05f2b
AC
1815 /* FIXME: cagney/2003-04-02: Rather than storing the frame's type in
1816 the frame, the unwinder's type should be returned directly.
1817 Unfortunatly, legacy code, called by legacy_get_prev_frame,
1818 explicitly set the frames type using the method
1819 deprecated_set_frame_type(). */
1820 gdb_assert (prev_frame->unwind->type != UNKNOWN_FRAME);
1821 prev_frame->type = prev_frame->unwind->type;
1822
1823 /* Can the frame's type and unwinder be computed on demand? That
1824 would make a frame's creation really really lite! */
1825
06c77151 1826 /* The prev's frame's ID is computed by demand in get_frame_id(). */
6dc42492 1827
270c3b1d
AC
1828 /* The unwound frame ID is validate at the start of this function,
1829 as part of the logic to decide if that frame should be further
1830 unwound, and not here while the prev frame is being created.
1831 Doing this makes it possible for the user to examine a frame that
1832 has an invalid frame ID.
1833
1834 The very old VAX frame_args_address_correct() method noted: [...]
1835 For the sake of argument, suppose that the stack is somewhat
1836 trashed (which is one reason that "info frame" exists). So,
1837 return 0 (indicating we don't know the address of the arglist) if
1838 we don't know what frame this frame calls. */
6dc42492 1839
eb4f72c5 1840 /* Link it in. */
03febf99
AC
1841 this_frame->prev = prev_frame;
1842 prev_frame->next = this_frame;
eb4f72c5 1843
7f78e237
AC
1844 if (frame_debug)
1845 {
1846 fprintf_unfiltered (gdb_stdlog, "-> ");
1847 fprint_frame (gdb_stdlog, prev_frame);
1848 fprintf_unfiltered (gdb_stdlog, " }\n");
1849 }
1850
eb4f72c5
AC
1851 return prev_frame;
1852}
1853
4c1e7e9d
AC
1854CORE_ADDR
1855get_frame_pc (struct frame_info *frame)
1856{
d1340264
AC
1857 gdb_assert (frame->next != NULL);
1858 return frame_pc_unwind (frame->next);
4c1e7e9d
AC
1859}
1860
1058bca7
AC
1861static int
1862pc_notcurrent (struct frame_info *frame)
1863{
1864 /* If FRAME is not the innermost frame, that normally means that
1865 FRAME->pc points at the return instruction (which is *after* the
1866 call instruction), and we want to get the line containing the
1867 call (because the call is where the user thinks the program is).
1868 However, if the next frame is either a SIGTRAMP_FRAME or a
1869 DUMMY_FRAME, then the next frame will contain a saved interrupt
1870 PC and such a PC indicates the current (rather than next)
1871 instruction/line, consequently, for such cases, want to get the
1872 line containing fi->pc. */
1873 struct frame_info *next = get_next_frame (frame);
1874 int notcurrent = (next != NULL && get_frame_type (next) == NORMAL_FRAME);
1875 return notcurrent;
1876}
1877
1878void
1879find_frame_sal (struct frame_info *frame, struct symtab_and_line *sal)
1880{
11889732 1881 (*sal) = find_pc_line (get_frame_pc (frame), pc_notcurrent (frame));
1058bca7
AC
1882}
1883
c193f6ac
AC
1884/* Per "frame.h", return the ``address'' of the frame. Code should
1885 really be using get_frame_id(). */
1886CORE_ADDR
1887get_frame_base (struct frame_info *fi)
1888{
d0a55772 1889 return get_frame_id (fi).stack_addr;
c193f6ac
AC
1890}
1891
da62e633
AC
1892/* High-level offsets into the frame. Used by the debug info. */
1893
1894CORE_ADDR
1895get_frame_base_address (struct frame_info *fi)
1896{
7df05f2b 1897 if (get_frame_type (fi) != NORMAL_FRAME)
da62e633
AC
1898 return 0;
1899 if (fi->base == NULL)
1900 fi->base = frame_base_find_by_pc (current_gdbarch, get_frame_pc (fi));
1901 /* Sneaky: If the low-level unwind and high-level base code share a
1902 common unwinder, let them share the prologue cache. */
1903 if (fi->base->unwind == fi->unwind)
1904 return fi->base->this_base (fi->next, &fi->prologue_cache);
1905 return fi->base->this_base (fi->next, &fi->base_cache);
1906}
1907
1908CORE_ADDR
1909get_frame_locals_address (struct frame_info *fi)
1910{
1911 void **cache;
7df05f2b 1912 if (get_frame_type (fi) != NORMAL_FRAME)
da62e633
AC
1913 return 0;
1914 /* If there isn't a frame address method, find it. */
1915 if (fi->base == NULL)
1916 fi->base = frame_base_find_by_pc (current_gdbarch, get_frame_pc (fi));
1917 /* Sneaky: If the low-level unwind and high-level base code share a
1918 common unwinder, let them share the prologue cache. */
1919 if (fi->base->unwind == fi->unwind)
1920 cache = &fi->prologue_cache;
1921 else
1922 cache = &fi->base_cache;
1923 return fi->base->this_locals (fi->next, cache);
1924}
1925
1926CORE_ADDR
1927get_frame_args_address (struct frame_info *fi)
1928{
1929 void **cache;
7df05f2b 1930 if (get_frame_type (fi) != NORMAL_FRAME)
da62e633
AC
1931 return 0;
1932 /* If there isn't a frame address method, find it. */
1933 if (fi->base == NULL)
1934 fi->base = frame_base_find_by_pc (current_gdbarch, get_frame_pc (fi));
1935 /* Sneaky: If the low-level unwind and high-level base code share a
1936 common unwinder, let them share the prologue cache. */
1937 if (fi->base->unwind == fi->unwind)
1938 cache = &fi->prologue_cache;
1939 else
1940 cache = &fi->base_cache;
1941 return fi->base->this_args (fi->next, cache);
1942}
1943
85cf597a
AC
1944/* Level of the selected frame: 0 for innermost, 1 for its caller, ...
1945 or -1 for a NULL frame. */
1946
1947int
1948frame_relative_level (struct frame_info *fi)
1949{
1950 if (fi == NULL)
1951 return -1;
1952 else
1953 return fi->level;
1954}
1955
5a203e44
AC
1956enum frame_type
1957get_frame_type (struct frame_info *frame)
1958{
1959 /* Some targets still don't use [generic] dummy frames. Catch them
1960 here. */
07555a72 1961 if (!DEPRECATED_USE_GENERIC_DUMMY_FRAMES
5a203e44
AC
1962 && deprecated_frame_in_dummy (frame))
1963 return DUMMY_FRAME;
7df05f2b
AC
1964 if (frame->type == UNKNOWN_FRAME)
1965 return NORMAL_FRAME;
1966 else
1967 return frame->type;
5a203e44
AC
1968}
1969
1970void
1971deprecated_set_frame_type (struct frame_info *frame, enum frame_type type)
1972{
1973 /* Arrrg! See comment in "frame.h". */
1974 frame->type = type;
1975}
1976
0394eb2a
AC
1977struct frame_extra_info *
1978get_frame_extra_info (struct frame_info *fi)
1979{
1980 return fi->extra_info;
1981}
1982
2c517d0e
AC
1983struct frame_extra_info *
1984frame_extra_info_zalloc (struct frame_info *fi, long size)
1985{
479ab5a0 1986 fi->extra_info = frame_obstack_zalloc (size);
2c517d0e
AC
1987 return fi->extra_info;
1988}
1989
b87efeee 1990void
2f107107 1991deprecated_update_frame_pc_hack (struct frame_info *frame, CORE_ADDR pc)
b87efeee 1992{
7f78e237
AC
1993 if (frame_debug)
1994 fprintf_unfiltered (gdb_stdlog,
1995 "{ deprecated_update_frame_pc_hack (frame=%d,pc=0x%s) }\n",
1996 frame->level, paddr_nz (pc));
e0d2ae16
AC
1997 /* NOTE: cagney/2003-03-11: Some architectures (e.g., Arm) are
1998 maintaining a locally allocated frame object. Since such frame's
1999 are not in the frame chain, it isn't possible to assume that the
2000 frame has a next. Sigh. */
2001 if (frame->next != NULL)
2002 {
2003 /* While we're at it, update this frame's cached PC value, found
2004 in the next frame. Oh for the day when "struct frame_info"
2005 is opaque and this hack on hack can just go away. */
d1340264
AC
2006 frame->next->prev_pc.value = pc;
2007 frame->next->prev_pc.p = 1;
e0d2ae16 2008 }
2f107107
AC
2009}
2010
2011void
2012deprecated_update_frame_base_hack (struct frame_info *frame, CORE_ADDR base)
2013{
7f78e237
AC
2014 if (frame_debug)
2015 fprintf_unfiltered (gdb_stdlog,
2016 "{ deprecated_update_frame_base_hack (frame=%d,base=0x%s) }\n",
2017 frame->level, paddr_nz (base));
2f107107 2018 /* See comment in "frame.h". */
d0a55772 2019 frame->this_id.value.stack_addr = base;
b87efeee
AC
2020}
2021
c8b8a898
AC
2022void
2023deprecated_set_frame_saved_regs_hack (struct frame_info *frame,
2024 CORE_ADDR *saved_regs)
2025{
2026 frame->saved_regs = saved_regs;
2027}
2028
2029void
2030deprecated_set_frame_extra_info_hack (struct frame_info *frame,
2031 struct frame_extra_info *extra_info)
2032{
2033 frame->extra_info = extra_info;
2034}
2035
483d36b2
AC
2036void
2037deprecated_set_frame_next_hack (struct frame_info *fi,
2038 struct frame_info *next)
2039{
2040 fi->next = next;
2041}
2042
2043void
2044deprecated_set_frame_prev_hack (struct frame_info *fi,
2045 struct frame_info *prev)
2046{
2047 fi->prev = prev;
2048}
2049
2d75187b
AC
2050struct context *
2051deprecated_get_frame_context (struct frame_info *fi)
2052{
2053 return fi->context;
2054}
2055
2056void
2057deprecated_set_frame_context (struct frame_info *fi,
2058 struct context *context)
2059{
2060 fi->context = context;
2061}
2062
c8b8a898
AC
2063struct frame_info *
2064deprecated_frame_xmalloc (void)
2065{
18adea3f
AC
2066 struct frame_info *frame = FRAME_OBSTACK_ZALLOC (struct frame_info);
2067 frame->this_id.p = 1;
c8b8a898
AC
2068 return frame;
2069}
2070
f6c609c4
AC
2071struct frame_info *
2072deprecated_frame_xmalloc_with_cleanup (long sizeof_saved_regs,
2073 long sizeof_extra_info)
2074{
2075 struct frame_info *frame = deprecated_frame_xmalloc ();
2076 make_cleanup (xfree, frame);
2077 if (sizeof_saved_regs > 0)
2078 {
2079 frame->saved_regs = xcalloc (1, sizeof_saved_regs);
2080 make_cleanup (xfree, frame->saved_regs);
2081 }
2082 if (sizeof_extra_info > 0)
2083 {
2084 frame->extra_info = xcalloc (1, sizeof_extra_info);
2085 make_cleanup (xfree, frame->extra_info);
2086 }
2087 return frame;
2088}
c8b8a898 2089
1594fa56
AC
2090int
2091legacy_frame_p (struct gdbarch *current_gdbarch)
2092{
2093 return (DEPRECATED_INIT_FRAME_PC_P ()
2094 || DEPRECATED_INIT_FRAME_PC_FIRST_P ()
2095 || DEPRECATED_INIT_EXTRA_FRAME_INFO_P ()
618ce49f 2096 || DEPRECATED_FRAME_CHAIN_P ()
055bb976
AC
2097 || !gdbarch_unwind_dummy_id_p (current_gdbarch)
2098 || !SAVE_DUMMY_FRAME_TOS_P ());
1594fa56
AC
2099}
2100
4c1e7e9d
AC
2101void
2102_initialize_frame (void)
2103{
2104 obstack_init (&frame_cache_obstack);
eb4f72c5
AC
2105
2106 /* FIXME: cagney/2003-01-19: This command needs a rename. Suggest
2107 `set backtrace {past,beyond,...}-main'. Also suggest adding `set
2108 backtrace ...-start' to control backtraces past start. The
2109 problem with `below' is that it stops the `up' command. */
2110
2111 add_setshow_boolean_cmd ("backtrace-below-main", class_obscure,
2112 &backtrace_below_main, "\
2113Set whether backtraces should continue past \"main\".\n\
2114Normally the caller of \"main\" is not of interest, so GDB will terminate\n\
2115the backtrace at \"main\". Set this variable if you need to see the rest\n\
2116of the stack trace.", "\
2117Show whether backtraces should continue past \"main\".\n\
2118Normally the caller of \"main\" is not of interest, so GDB will terminate\n\
2119the backtrace at \"main\". Set this variable if you need to see the rest\n\
2120of the stack trace.",
2121 NULL, NULL, &setlist, &showlist);
ac2bd0a9
AC
2122
2123
2124 /* Debug this files internals. */
2125 add_show_from_set (add_set_cmd ("frame", class_maintenance, var_zinteger,
2126 &frame_debug, "Set frame debugging.\n\
2127When non-zero, frame specific internal debugging is enabled.", &setdebuglist),
2128 &showdebuglist);
4c1e7e9d 2129}