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