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