Fix date stamp on ChangeLog entry.
[deliverable/binutils-gdb.git] / gdb / frame.c
CommitLineData
4f460812 1/* Cache and manage frames for GDB, the GNU debugger.
96cb11df
AC
2
3 Copyright 1986, 1987, 1989, 1991, 1994, 1995, 1996, 1998, 2000,
4 2001, 2002 Free Software Foundation, Inc.
d65fe839
AC
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
22
23#include "defs.h"
24#include "frame.h"
25#include "target.h"
26#include "value.h"
39f77062 27#include "inferior.h" /* for inferior_ptid */
4e052eda 28#include "regcache.h"
4f460812 29#include "gdb_assert.h"
e36180d7
AC
30#include "gdb_string.h"
31#include "builtin-regs.h"
4c1e7e9d
AC
32#include "gdb_obstack.h"
33#include "dummy-frame.h"
34#include "gdbcore.h"
35#include "annotate.h"
d65fe839 36
101dcfbe
AC
37/* Return a frame uniq ID that can be used to, later re-find the
38 frame. */
39
40void
41get_frame_id (struct frame_info *fi, struct frame_id *id)
42{
43 if (fi == NULL)
44 {
45 id->base = 0;
46 id->pc = 0;
47 }
48 else
49 {
50 id->base = FRAME_FP (fi);
51 id->pc = fi->pc;
52 }
53}
54
55struct frame_info *
56frame_find_by_id (struct frame_id id)
57{
58 struct frame_info *frame;
59
60 /* ZERO denotes the null frame, let the caller decide what to do
61 about it. Should it instead return get_current_frame()? */
62 if (id.base == 0 && id.pc == 0)
63 return NULL;
64
65 for (frame = get_current_frame ();
66 frame != NULL;
67 frame = get_prev_frame (frame))
68 {
69 if (INNER_THAN (FRAME_FP (frame), id.base))
70 /* ``inner/current < frame < id.base''. Keep looking along
71 the frame chain. */
72 continue;
73 if (INNER_THAN (id.base, FRAME_FP (frame)))
74 /* ``inner/current < id.base < frame''. Oops, gone past it.
75 Just give up. */
76 return NULL;
77 /* FIXME: cagney/2002-04-21: This isn't sufficient. It should
78 use id.pc to check that the two frames belong to the same
79 function. Otherwise we'll do things like match dummy frames
80 or mis-match frameless functions. However, until someone
81 notices, stick with the existing behavour. */
82 return frame;
83 }
84 return NULL;
85}
86
4f460812
AC
87void
88frame_register_unwind (struct frame_info *frame, int regnum,
89 int *optimizedp, enum lval_type *lvalp,
90 CORE_ADDR *addrp, int *realnump, void *bufferp)
91{
92 struct frame_unwind_cache *cache;
93
94 /* Require all but BUFFERP to be valid. A NULL BUFFERP indicates
95 that the value proper does not need to be fetched. */
96 gdb_assert (optimizedp != NULL);
97 gdb_assert (lvalp != NULL);
98 gdb_assert (addrp != NULL);
99 gdb_assert (realnump != NULL);
100 /* gdb_assert (bufferp != NULL); */
101
102 /* NOTE: cagney/2002-04-14: It would be nice if, instead of a
103 special case, there was always an inner frame dedicated to the
104 hardware registers. Unfortunatly, there is too much unwind code
105 around that looks up/down the frame chain while making the
106 assumption that each frame level is using the same unwind code. */
107
108 if (frame == NULL)
109 {
110 /* We're in the inner-most frame, get the value direct from the
111 register cache. */
112 *optimizedp = 0;
113 *lvalp = lval_register;
fa5f27c7
AC
114 /* ULGH! Code uses the offset into the raw register byte array
115 as a way of identifying a register. */
116 *addrp = REGISTER_BYTE (regnum);
4f460812
AC
117 /* Should this code test ``register_cached (regnum) < 0'' and do
118 something like set realnum to -1 when the register isn't
119 available? */
120 *realnump = regnum;
121 if (bufferp)
4caf0990 122 deprecated_read_register_gen (regnum, bufferp);
4f460812
AC
123 return;
124 }
125
126 /* Ask this frame to unwind its register. */
127 frame->register_unwind (frame, &frame->register_unwind_cache, regnum,
128 optimizedp, lvalp, addrp, realnump, bufferp);
129}
130
a216a322
AC
131void
132frame_register (struct frame_info *frame, int regnum,
133 int *optimizedp, enum lval_type *lvalp,
134 CORE_ADDR *addrp, int *realnump, void *bufferp)
135{
136 /* Require all but BUFFERP to be valid. A NULL BUFFERP indicates
137 that the value proper does not need to be fetched. */
138 gdb_assert (optimizedp != NULL);
139 gdb_assert (lvalp != NULL);
140 gdb_assert (addrp != NULL);
141 gdb_assert (realnump != NULL);
142 /* gdb_assert (bufferp != NULL); */
143
144 /* Ulgh! Old code that, for lval_register, sets ADDRP to the offset
145 of the register in the register cache. It should instead return
146 the REGNUM corresponding to that register. Translate the . */
147 if (GET_SAVED_REGISTER_P ())
148 {
149 GET_SAVED_REGISTER (bufferp, optimizedp, addrp, frame, regnum, lvalp);
150 /* Compute the REALNUM if the caller wants it. */
151 if (*lvalp == lval_register)
152 {
153 int regnum;
154 for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++)
155 {
156 if (*addrp == register_offset_hack (current_gdbarch, regnum))
157 {
158 *realnump = regnum;
159 return;
160 }
161 }
162 internal_error (__FILE__, __LINE__,
163 "Failed to compute the register number corresponding"
164 " to 0x%s", paddr_d (*addrp));
165 }
166 *realnump = -1;
167 return;
168 }
169
170 /* Reached the the bottom (youngest, inner most) of the frame chain
171 (youngest, inner most) frame, go direct to the hardware register
172 cache (do not pass go, do not try to cache the value, ...). The
173 unwound value would have been cached in frame->next but that
174 doesn't exist. This doesn't matter as the hardware register
175 cache is stopping any unnecessary accesses to the target. */
176
177 /* NOTE: cagney/2002-04-14: It would be nice if, instead of a
178 special case, there was always an inner frame dedicated to the
179 hardware registers. Unfortunatly, there is too much unwind code
180 around that looks up/down the frame chain while making the
181 assumption that each frame level is using the same unwind code. */
182
183 if (frame == NULL)
184 frame_register_unwind (NULL, regnum, optimizedp, lvalp, addrp, realnump,
185 bufferp);
186 else
187 frame_register_unwind (frame->next, regnum, optimizedp, lvalp, addrp,
188 realnump, bufferp);
189}
190
135c175f
AC
191void
192frame_unwind_signed_register (struct frame_info *frame, int regnum,
193 LONGEST *val)
194{
195 int optimized;
196 CORE_ADDR addr;
197 int realnum;
198 enum lval_type lval;
199 void *buf = alloca (MAX_REGISTER_RAW_SIZE);
200 frame_register_unwind (frame, regnum, &optimized, &lval, &addr,
201 &realnum, buf);
202 (*val) = extract_signed_integer (buf, REGISTER_VIRTUAL_SIZE (regnum));
203}
204
205void
206frame_unwind_unsigned_register (struct frame_info *frame, int regnum,
207 ULONGEST *val)
208{
209 int optimized;
210 CORE_ADDR addr;
211 int realnum;
212 enum lval_type lval;
213 void *buf = alloca (MAX_REGISTER_RAW_SIZE);
214 frame_register_unwind (frame, regnum, &optimized, &lval, &addr,
215 &realnum, buf);
216 (*val) = extract_unsigned_integer (buf, REGISTER_VIRTUAL_SIZE (regnum));
217}
4f460812 218
f908a0eb
AC
219void
220frame_read_unsigned_register (struct frame_info *frame, int regnum,
221 ULONGEST *val)
222{
223 /* NOTE: cagney/2002-10-31: There is a bit of dogma here - there is
224 always a frame. Both this, and the equivalent
225 frame_read_signed_register() function, can only be called with a
226 valid frame. If, for some reason, this function is called
227 without a frame then the problem isn't here, but rather in the
228 caller. It should of first created a frame and then passed that
229 in. */
230 /* NOTE: cagney/2002-10-31: As a side bar, keep in mind that the
231 ``current_frame'' should not be treated as a special case. While
232 ``get_next_frame (current_frame) == NULL'' currently holds, it
233 should, as far as possible, not be relied upon. In the future,
234 ``get_next_frame (current_frame)'' may instead simply return a
235 normal frame object that simply always gets register values from
236 the register cache. Consequently, frame code should try to avoid
237 tests like ``if get_next_frame() == NULL'' and instead just rely
238 on recursive frame calls (like the below code) when manipulating
239 a frame chain. */
240 gdb_assert (frame != NULL);
241 frame_unwind_unsigned_register (get_next_frame (frame), regnum, val);
242}
243
244void
245frame_read_signed_register (struct frame_info *frame, int regnum,
246 LONGEST *val)
247{
248 /* See note in frame_read_unsigned_register(). */
249 gdb_assert (frame != NULL);
250 frame_unwind_signed_register (get_next_frame (frame), regnum, val);
251}
252
4f460812
AC
253void
254generic_unwind_get_saved_register (char *raw_buffer,
255 int *optimizedp,
256 CORE_ADDR *addrp,
257 struct frame_info *frame,
258 int regnum,
259 enum lval_type *lvalp)
260{
261 int optimizedx;
262 CORE_ADDR addrx;
263 int realnumx;
264 enum lval_type lvalx;
265
266 if (!target_has_registers)
267 error ("No registers.");
268
269 /* Keep things simple, ensure that all the pointers (except valuep)
270 are non NULL. */
271 if (optimizedp == NULL)
272 optimizedp = &optimizedx;
273 if (lvalp == NULL)
274 lvalp = &lvalx;
275 if (addrp == NULL)
276 addrp = &addrx;
277
278 /* Reached the the bottom (youngest, inner most) of the frame chain
279 (youngest, inner most) frame, go direct to the hardware register
280 cache (do not pass go, do not try to cache the value, ...). The
281 unwound value would have been cached in frame->next but that
282 doesn't exist. This doesn't matter as the hardware register
283 cache is stopping any unnecessary accesses to the target. */
284
285 /* NOTE: cagney/2002-04-14: It would be nice if, instead of a
286 special case, there was always an inner frame dedicated to the
287 hardware registers. Unfortunatly, there is too much unwind code
288 around that looks up/down the frame chain while making the
289 assumption that each frame level is using the same unwind code. */
290
291 if (frame == NULL)
292 frame_register_unwind (NULL, regnum, optimizedp, lvalp, addrp, &realnumx,
293 raw_buffer);
294 else
295 frame_register_unwind (frame->next, regnum, optimizedp, lvalp, addrp,
296 &realnumx, raw_buffer);
297}
298
d65fe839
AC
299void
300get_saved_register (char *raw_buffer,
301 int *optimized,
302 CORE_ADDR *addrp,
303 struct frame_info *frame,
304 int regnum,
305 enum lval_type *lval)
306{
a216a322
AC
307 if (GET_SAVED_REGISTER_P ())
308 {
309 GET_SAVED_REGISTER (raw_buffer, optimized, addrp, frame, regnum, lval);
310 return;
311 }
312 generic_unwind_get_saved_register (raw_buffer, optimized, addrp, frame,
313 regnum, lval);
d65fe839
AC
314}
315
cda5a58a 316/* frame_register_read ()
d65fe839 317
cda5a58a 318 Find and return the value of REGNUM for the specified stack frame.
d65fe839
AC
319 The number of bytes copied is REGISTER_RAW_SIZE (REGNUM).
320
cda5a58a 321 Returns 0 if the register value could not be found. */
d65fe839 322
cda5a58a
AC
323int
324frame_register_read (struct frame_info *frame, int regnum, void *myaddr)
d65fe839 325{
a216a322
AC
326 int optimized;
327 enum lval_type lval;
328 CORE_ADDR addr;
329 int realnum;
330 frame_register (frame, regnum, &optimized, &lval, &addr, &realnum, myaddr);
d65fe839 331
c97dcfc7
AC
332 /* FIXME: cagney/2002-05-15: This test, is just bogus.
333
334 It indicates that the target failed to supply a value for a
335 register because it was "not available" at this time. Problem
336 is, the target still has the register and so get saved_register()
337 may be returning a value saved on the stack. */
338
d65fe839 339 if (register_cached (regnum) < 0)
cda5a58a 340 return 0; /* register value not available */
d65fe839 341
a216a322 342 return !optimized;
d65fe839 343}
e36180d7
AC
344
345
346/* Map between a frame register number and its name. A frame register
347 space is a superset of the cooked register space --- it also
348 includes builtin registers. */
349
350int
351frame_map_name_to_regnum (const char *name, int len)
352{
353 int i;
354
355 /* Search register name space. */
356 for (i = 0; i < NUM_REGS + NUM_PSEUDO_REGS; i++)
357 if (REGISTER_NAME (i) && len == strlen (REGISTER_NAME (i))
358 && strncmp (name, REGISTER_NAME (i), len) == 0)
359 {
360 return i;
361 }
362
363 /* Try builtin registers. */
364 i = builtin_reg_map_name_to_regnum (name, len);
365 if (i >= 0)
366 {
367 /* A builtin register doesn't fall into the architecture's
368 register range. */
369 gdb_assert (i >= NUM_REGS + NUM_PSEUDO_REGS);
370 return i;
371 }
372
373 return -1;
374}
375
376const char *
377frame_map_regnum_to_name (int regnum)
378{
379 if (regnum < 0)
380 return NULL;
381 if (regnum < NUM_REGS + NUM_PSEUDO_REGS)
382 return REGISTER_NAME (regnum);
383 return builtin_reg_map_regnum_to_name (regnum);
384}
4c1e7e9d
AC
385
386/* Info about the innermost stack frame (contents of FP register) */
387
388static struct frame_info *current_frame;
389
390/* Cache for frame addresses already read by gdb. Valid only while
391 inferior is stopped. Control variables for the frame cache should
392 be local to this module. */
393
394static struct obstack frame_cache_obstack;
395
396void *
397frame_obstack_alloc (unsigned long size)
398{
399 return obstack_alloc (&frame_cache_obstack, size);
400}
401
402void
403frame_saved_regs_zalloc (struct frame_info *fi)
404{
405 fi->saved_regs = (CORE_ADDR *)
406 frame_obstack_alloc (SIZEOF_FRAME_SAVED_REGS);
407 memset (fi->saved_regs, 0, SIZEOF_FRAME_SAVED_REGS);
408}
409
410
411/* Return the innermost (currently executing) stack frame. */
412
413struct frame_info *
414get_current_frame (void)
415{
416 if (current_frame == NULL)
417 {
418 if (target_has_stack)
419 current_frame = create_new_frame (read_fp (), read_pc ());
420 else
421 error ("No stack.");
422 }
423 return current_frame;
424}
425
426void
427set_current_frame (struct frame_info *frame)
428{
429 current_frame = frame;
430}
431
432/* Return the register saved in the simplistic ``saved_regs'' cache.
433 If the value isn't here AND a value is needed, try the next inner
434 most frame. */
435
436static void
437frame_saved_regs_register_unwind (struct frame_info *frame, void **cache,
438 int regnum, int *optimizedp,
439 enum lval_type *lvalp, CORE_ADDR *addrp,
440 int *realnump, void *bufferp)
441{
442 /* There is always a frame at this point. And THIS is the frame
443 we're interested in. */
444 gdb_assert (frame != NULL);
445 /* If we're using generic dummy frames, we'd better not be in a call
446 dummy. (generic_call_dummy_register_unwind ought to have been called
447 instead.) */
448 gdb_assert (!(USE_GENERIC_DUMMY_FRAMES
449 && PC_IN_CALL_DUMMY (frame->pc, frame->frame, frame->frame)));
450
451 /* Load the saved_regs register cache. */
452 if (frame->saved_regs == NULL)
453 FRAME_INIT_SAVED_REGS (frame);
454
455 if (frame->saved_regs != NULL
456 && frame->saved_regs[regnum] != 0)
457 {
458 if (regnum == SP_REGNUM)
459 {
460 /* SP register treated specially. */
461 *optimizedp = 0;
462 *lvalp = not_lval;
463 *addrp = 0;
464 *realnump = -1;
465 if (bufferp != NULL)
466 store_address (bufferp, REGISTER_RAW_SIZE (regnum),
467 frame->saved_regs[regnum]);
468 }
469 else
470 {
471 /* Any other register is saved in memory, fetch it but cache
472 a local copy of its value. */
473 *optimizedp = 0;
474 *lvalp = lval_memory;
475 *addrp = frame->saved_regs[regnum];
476 *realnump = -1;
477 if (bufferp != NULL)
478 {
479#if 1
480 /* Save each register value, as it is read in, in a
481 frame based cache. */
482 void **regs = (*cache);
483 if (regs == NULL)
484 {
485 int sizeof_cache = ((NUM_REGS + NUM_PSEUDO_REGS)
486 * sizeof (void *));
487 regs = frame_obstack_alloc (sizeof_cache);
488 memset (regs, 0, sizeof_cache);
489 (*cache) = regs;
490 }
491 if (regs[regnum] == NULL)
492 {
493 regs[regnum]
494 = frame_obstack_alloc (REGISTER_RAW_SIZE (regnum));
495 read_memory (frame->saved_regs[regnum], regs[regnum],
496 REGISTER_RAW_SIZE (regnum));
497 }
498 memcpy (bufferp, regs[regnum], REGISTER_RAW_SIZE (regnum));
499#else
500 /* Read the value in from memory. */
501 read_memory (frame->saved_regs[regnum], bufferp,
502 REGISTER_RAW_SIZE (regnum));
503#endif
504 }
505 }
506 return;
507 }
508
509 /* No luck, assume this and the next frame have the same register
510 value. If a value is needed, pass the request on down the chain;
511 otherwise just return an indication that the value is in the same
512 register as the next frame. */
513 if (bufferp == NULL)
514 {
515 *optimizedp = 0;
516 *lvalp = lval_register;
517 *addrp = 0;
518 *realnump = regnum;
519 }
520 else
521 {
522 frame_register_unwind (frame->next, regnum, optimizedp, lvalp, addrp,
523 realnump, bufferp);
524 }
525}
526
527/* Function: get_saved_register
528 Find register number REGNUM relative to FRAME and put its (raw,
529 target format) contents in *RAW_BUFFER.
530
531 Set *OPTIMIZED if the variable was optimized out (and thus can't be
532 fetched). Note that this is never set to anything other than zero
533 in this implementation.
534
535 Set *LVAL to lval_memory, lval_register, or not_lval, depending on
536 whether the value was fetched from memory, from a register, or in a
537 strange and non-modifiable way (e.g. a frame pointer which was
538 calculated rather than fetched). We will use not_lval for values
539 fetched from generic dummy frames.
540
541 Set *ADDRP to the address, either in memory or as a REGISTER_BYTE
542 offset into the registers array. If the value is stored in a dummy
543 frame, set *ADDRP to zero.
544
545 To use this implementation, define a function called
546 "get_saved_register" in your target code, which simply passes all
547 of its arguments to this function.
548
549 The argument RAW_BUFFER must point to aligned memory. */
550
551void
552deprecated_generic_get_saved_register (char *raw_buffer, int *optimized,
553 CORE_ADDR *addrp,
554 struct frame_info *frame, int regnum,
555 enum lval_type *lval)
556{
557 if (!target_has_registers)
558 error ("No registers.");
559
560 /* Normal systems don't optimize out things with register numbers. */
561 if (optimized != NULL)
562 *optimized = 0;
563
564 if (addrp) /* default assumption: not found in memory */
565 *addrp = 0;
566
567 /* Note: since the current frame's registers could only have been
568 saved by frames INTERIOR TO the current frame, we skip examining
569 the current frame itself: otherwise, we would be getting the
570 previous frame's registers which were saved by the current frame. */
571
572 while (frame && ((frame = frame->next) != NULL))
573 {
574 if (PC_IN_CALL_DUMMY (frame->pc, frame->frame, frame->frame))
575 {
576 if (lval) /* found it in a CALL_DUMMY frame */
577 *lval = not_lval;
578 if (raw_buffer)
579 /* FIXME: cagney/2002-06-26: This should be via the
580 gdbarch_register_read() method so that it, on the fly,
581 constructs either a raw or pseudo register from the raw
582 register cache. */
583 regcache_raw_read (generic_find_dummy_frame (frame->pc,
584 frame->frame),
585 regnum, raw_buffer);
586 return;
587 }
588
589 FRAME_INIT_SAVED_REGS (frame);
590 if (frame->saved_regs != NULL
591 && frame->saved_regs[regnum] != 0)
592 {
593 if (lval) /* found it saved on the stack */
594 *lval = lval_memory;
595 if (regnum == SP_REGNUM)
596 {
597 if (raw_buffer) /* SP register treated specially */
598 store_address (raw_buffer, REGISTER_RAW_SIZE (regnum),
599 frame->saved_regs[regnum]);
600 }
601 else
602 {
603 if (addrp) /* any other register */
604 *addrp = frame->saved_regs[regnum];
605 if (raw_buffer)
606 read_memory (frame->saved_regs[regnum], raw_buffer,
607 REGISTER_RAW_SIZE (regnum));
608 }
609 return;
610 }
611 }
612
613 /* If we get thru the loop to this point, it means the register was
614 not saved in any frame. Return the actual live-register value. */
615
616 if (lval) /* found it in a live register */
617 *lval = lval_register;
618 if (addrp)
619 *addrp = REGISTER_BYTE (regnum);
620 if (raw_buffer)
621 deprecated_read_register_gen (regnum, raw_buffer);
622}
623
624/* Using the PC, select a mechanism for unwinding a frame returning
625 the previous frame. The register unwind function should, on
626 demand, initialize the ->context object. */
627
628static void
629set_unwind_by_pc (CORE_ADDR pc, CORE_ADDR fp,
630 frame_register_unwind_ftype **unwind)
631{
632 if (!USE_GENERIC_DUMMY_FRAMES)
633 /* Still need to set this to something. The ``info frame'' code
634 calls this function to find out where the saved registers are.
635 Hopefully this is robust enough to stop any core dumps and
636 return vaguely correct values.. */
637 *unwind = frame_saved_regs_register_unwind;
638 else if (PC_IN_CALL_DUMMY (pc, fp, fp))
8779790c 639 *unwind = dummy_frame_register_unwind;
4c1e7e9d
AC
640 else
641 *unwind = frame_saved_regs_register_unwind;
642}
643
644/* Create an arbitrary (i.e. address specified by user) or innermost frame.
645 Always returns a non-NULL value. */
646
647struct frame_info *
648create_new_frame (CORE_ADDR addr, CORE_ADDR pc)
649{
650 struct frame_info *fi;
651 char *name;
652
653 fi = (struct frame_info *)
654 obstack_alloc (&frame_cache_obstack,
655 sizeof (struct frame_info));
656
657 /* Zero all fields by default. */
658 memset (fi, 0, sizeof (struct frame_info));
659
660 fi->frame = addr;
661 fi->pc = pc;
662 find_pc_partial_function (pc, &name, (CORE_ADDR *) NULL, (CORE_ADDR *) NULL);
663 fi->signal_handler_caller = PC_IN_SIGTRAMP (fi->pc, name);
664
665 if (INIT_EXTRA_FRAME_INFO_P ())
666 INIT_EXTRA_FRAME_INFO (0, fi);
667
668 /* Select/initialize an unwind function. */
669 set_unwind_by_pc (fi->pc, fi->frame, &fi->register_unwind);
670
671 return fi;
672}
673
674/* Return the frame that FRAME calls (NULL if FRAME is the innermost
675 frame). */
676
677struct frame_info *
678get_next_frame (struct frame_info *frame)
679{
680 return frame->next;
681}
682
683/* Flush the entire frame cache. */
684
685void
686flush_cached_frames (void)
687{
688 /* Since we can't really be sure what the first object allocated was */
689 obstack_free (&frame_cache_obstack, 0);
690 obstack_init (&frame_cache_obstack);
691
692 current_frame = NULL; /* Invalidate cache */
693 select_frame (NULL);
694 annotate_frames_invalid ();
695}
696
697/* Flush the frame cache, and start a new one if necessary. */
698
699void
700reinit_frame_cache (void)
701{
702 flush_cached_frames ();
703
704 /* FIXME: The inferior_ptid test is wrong if there is a corefile. */
705 if (PIDGET (inferior_ptid) != 0)
706 {
707 select_frame (get_current_frame ());
708 }
709}
710
711/* Return a structure containing various interesting information
712 about the frame that called NEXT_FRAME. Returns NULL
713 if there is no such frame. */
714
715struct frame_info *
716get_prev_frame (struct frame_info *next_frame)
717{
718 CORE_ADDR address = 0;
719 struct frame_info *prev;
95adb866 720 int fromleaf;
4c1e7e9d
AC
721 char *name;
722
95adb866
AC
723 /* Return the inner-most frame, when the caller passes in NULL. */
724 /* NOTE: cagney/2002-11-09: Not sure how this would happen. The
725 caller should have previously obtained a valid frame using
726 get_selected_frame() and then called this code - only possibility
727 I can think of is code behaving badly. */
728 if (next_frame == NULL)
4c1e7e9d 729 {
95adb866
AC
730 /* NOTE: cagney/2002-11-09: There was a code segment here that
731 would error out when CURRENT_FRAME was NULL. The comment
732 that went with it made the claim ...
733
734 ``This screws value_of_variable, which just wants a nice
735 clean NULL return from block_innermost_frame if there are no
736 frames. I don't think I've ever seen this message happen
737 otherwise. And returning NULL here is a perfectly legitimate
738 thing to do.''
739
740 Per the above, this code shouldn't even be called with a NULL
741 NEXT_FRAME. */
4c1e7e9d
AC
742 return current_frame;
743 }
744
15220c65
AC
745 /* Only try to do the unwind once. */
746 if (next_frame->prev_p)
4c1e7e9d 747 return next_frame->prev;
15220c65 748 next_frame->prev_p = 1;
4c1e7e9d
AC
749
750 /* On some machines it is possible to call a function without
751 setting up a stack frame for it. On these machines, we
752 define this macro to take two args; a frameinfo pointer
753 identifying a frame and a variable to set or clear if it is
754 or isn't leafless. */
755
756 /* Still don't want to worry about this except on the innermost
95adb866
AC
757 frame. This macro will set FROMLEAF if NEXT_FRAME is a frameless
758 function invocation. */
759 if (next_frame->next == NULL)
760 /* FIXME: 2002-11-09: Frameless functions can occure anywhere in
761 the frame chain, not just the inner most frame! The generic,
762 per-architecture, frame code should handle this and the below
763 should simply be removed. */
764 fromleaf = FRAMELESS_FUNCTION_INVOCATION (next_frame);
765 else
766 fromleaf = 0;
767
768 if (fromleaf)
769 /* A frameless inner-most frame. The `FP' (which isn't an
770 architecture frame-pointer register!) of the caller is the same
771 as the callee. */
772 /* FIXME: 2002-11-09: There isn't any reason to special case this
773 edge condition. Instead the per-architecture code should hande
774 it locally. */
775 address = FRAME_FP (next_frame);
776 else
4c1e7e9d
AC
777 {
778 /* Two macros defined in tm.h specify the machine-dependent
779 actions to be performed here.
95adb866 780
4c1e7e9d 781 First, get the frame's chain-pointer.
95adb866 782
4c1e7e9d
AC
783 If that is zero, the frame is the outermost frame or a leaf
784 called by the outermost frame. This means that if start
785 calls main without a frame, we'll return 0 (which is fine
786 anyway).
787
788 Nope; there's a problem. This also returns when the current
789 routine is a leaf of main. This is unacceptable. We move
790 this to after the ffi test; I'd rather have backtraces from
791 start go curfluy than have an abort called from main not show
792 main. */
793 address = FRAME_CHAIN (next_frame);
794
795 /* FIXME: cagney/2002-06-08: There should be two tests here.
796 The first would check for a valid frame chain based on a user
797 selectable policy. The default being ``stop at main'' (as
798 implemented by generic_func_frame_chain_valid()). Other
799 policies would be available - stop at NULL, .... The second
800 test, if provided by the target architecture, would check for
801 more exotic cases - most target architectures wouldn't bother
802 with this second case. */
803 if (!FRAME_CHAIN_VALID (address, next_frame))
804 return 0;
805 }
806 if (address == 0)
807 return 0;
808
95adb866 809 /* Create an initially zero previous frame. */
4c1e7e9d
AC
810 prev = (struct frame_info *)
811 obstack_alloc (&frame_cache_obstack,
812 sizeof (struct frame_info));
4c1e7e9d
AC
813 memset (prev, 0, sizeof (struct frame_info));
814
95adb866
AC
815 /* Link it in. */
816 next_frame->prev = prev;
4c1e7e9d
AC
817 prev->next = next_frame;
818 prev->frame = address;
819 prev->level = next_frame->level + 1;
820
95adb866
AC
821 /* This change should not be needed, FIXME! We should determine
822 whether any targets *need* INIT_FRAME_PC to happen after
823 INIT_EXTRA_FRAME_INFO and come up with a simple way to express
824 what goes on here.
825
826 INIT_EXTRA_FRAME_INFO is called from two places: create_new_frame
827 (where the PC is already set up) and here (where it isn't).
828 INIT_FRAME_PC is only called from here, always after
829 INIT_EXTRA_FRAME_INFO.
830
831 The catch is the MIPS, where INIT_EXTRA_FRAME_INFO requires the
832 PC value (which hasn't been set yet). Some other machines appear
833 to require INIT_EXTRA_FRAME_INFO before they can do
834 INIT_FRAME_PC. Phoo.
835
836 We shouldn't need INIT_FRAME_PC_FIRST to add more complication to
837 an already overcomplicated part of GDB. gnu@cygnus.com, 15Sep92.
838
839 Assuming that some machines need INIT_FRAME_PC after
840 INIT_EXTRA_FRAME_INFO, one possible scheme:
841
842 SETUP_INNERMOST_FRAME(): Default version is just create_new_frame
843 (read_fp ()), read_pc ()). Machines with extra frame info would
844 do that (or the local equivalent) and then set the extra fields.
845
846 SETUP_ARBITRARY_FRAME(argc, argv): Only change here is that
847 create_new_frame would no longer init extra frame info;
848 SETUP_ARBITRARY_FRAME would have to do that.
849
850 INIT_PREV_FRAME(fromleaf, prev) Replace INIT_EXTRA_FRAME_INFO and
851 INIT_FRAME_PC. This should also return a flag saying whether to
852 keep the new frame, or whether to discard it, because on some
853 machines (e.g. mips) it is really awkward to have
854 FRAME_CHAIN_VALID called *before* INIT_EXTRA_FRAME_INFO (there is
855 no good way to get information deduced in FRAME_CHAIN_VALID into
856 the extra fields of the new frame). std_frame_pc(fromleaf, prev)
857
858 This is the default setting for INIT_PREV_FRAME. It just does
859 what the default INIT_FRAME_PC does. Some machines will call it
860 from INIT_PREV_FRAME (either at the beginning, the end, or in the
861 middle). Some machines won't use it.
862
863 kingdon@cygnus.com, 13Apr93, 31Jan94, 14Dec94. */
864
865 /* NOTE: cagney/2002-11-09: Just ignore the above! There is no
866 reason for things to be this complicated.
867
868 The trick is to assume that there is always a frame. Instead of
869 special casing the inner-most frame, create fake frame
870 (containing the hardware registers) that is inner to the
871 user-visible inner-most frame (...) and then unwind from that.
872 That way architecture code can use use the standard
873 frame_XX_unwind() functions and not differentiate between the
874 inner most and any other case.
875
876 Since there is always a frame to unwind from, there is always
877 somewhere (NEXT_FRAME) to store all the info needed to construct
878 a new (previous) frame without having to first create it. This
879 means that the convolution below - needing to carefully order a
880 frame's initialization - isn't needed.
881
882 The irony here though, is that FRAME_CHAIN(), at least for a more
883 up-to-date architecture, always calls FRAME_SAVED_PC(), and
884 FRAME_SAVED_PC() computes the PC but without first needing the
885 frame! Instead of the convolution below, we could have simply
886 called FRAME_SAVED_PC() and been done with it! Note that
887 FRAME_SAVED_PC() is being superseed by frame_pc_unwind() and that
888 function does have somewhere to cache that PC value. */
4c1e7e9d
AC
889
890 INIT_FRAME_PC_FIRST (fromleaf, prev);
891
892 if (INIT_EXTRA_FRAME_INFO_P ())
893 INIT_EXTRA_FRAME_INFO (fromleaf, prev);
894
895 /* This entry is in the frame queue now, which is good since
95adb866
AC
896 FRAME_SAVED_PC may use that queue to figure out its value (see
897 tm-sparc.h). We want the pc saved in the inferior frame. */
4c1e7e9d
AC
898 INIT_FRAME_PC (fromleaf, prev);
899
95adb866
AC
900 /* If ->frame and ->pc are unchanged, we are in the process of
901 getting ourselves into an infinite backtrace. Some architectures
902 check this in FRAME_CHAIN or thereabouts, but it seems like there
903 is no reason this can't be an architecture-independent check. */
904 if (prev->frame == next_frame->frame
905 && prev->pc == next_frame->pc)
4c1e7e9d 906 {
95adb866
AC
907 next_frame->prev = NULL;
908 obstack_free (&frame_cache_obstack, prev);
909 return NULL;
4c1e7e9d
AC
910 }
911
912 /* Initialize the code used to unwind the frame PREV based on the PC
913 (and probably other architectural information). The PC lets you
914 check things like the debug info at that point (dwarf2cfi?) and
915 use that to decide how the frame should be unwound. */
916 set_unwind_by_pc (prev->pc, prev->frame, &prev->register_unwind);
917
918 find_pc_partial_function (prev->pc, &name,
919 (CORE_ADDR *) NULL, (CORE_ADDR *) NULL);
920 if (PC_IN_SIGTRAMP (prev->pc, name))
921 prev->signal_handler_caller = 1;
922
923 return prev;
924}
925
926CORE_ADDR
927get_frame_pc (struct frame_info *frame)
928{
929 return frame->pc;
930}
931
932#ifdef FRAME_FIND_SAVED_REGS
933/* XXX - deprecated. This is a compatibility function for targets
934 that do not yet implement FRAME_INIT_SAVED_REGS. */
935/* Find the addresses in which registers are saved in FRAME. */
936
937void
938get_frame_saved_regs (struct frame_info *frame,
939 struct frame_saved_regs *saved_regs_addr)
940{
941 if (frame->saved_regs == NULL)
942 {
943 frame->saved_regs = (CORE_ADDR *)
944 frame_obstack_alloc (SIZEOF_FRAME_SAVED_REGS);
945 }
946 if (saved_regs_addr == NULL)
947 {
948 struct frame_saved_regs saved_regs;
949 FRAME_FIND_SAVED_REGS (frame, saved_regs);
950 memcpy (frame->saved_regs, &saved_regs, SIZEOF_FRAME_SAVED_REGS);
951 }
952 else
953 {
954 FRAME_FIND_SAVED_REGS (frame, *saved_regs_addr);
955 memcpy (frame->saved_regs, saved_regs_addr, SIZEOF_FRAME_SAVED_REGS);
956 }
957}
958#endif
959
960void
961_initialize_frame (void)
962{
963 obstack_init (&frame_cache_obstack);
964}
This page took 0.182317 seconds and 4 git commands to generate.