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