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