Add support for G13 and G14 flag bits in RL78 ELF binaries.
[deliverable/binutils-gdb.git] / gdb / guile / scm-frame.c
CommitLineData
ed3ef339
DE
1/* Scheme interface to stack frames.
2
32d0add0 3 Copyright (C) 2008-2015 Free Software Foundation, Inc.
ed3ef339
DE
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20/* See README file in this directory for implementation notes, coding
21 conventions, et.al. */
22
23#include "defs.h"
24#include "block.h"
25#include "frame.h"
ed3ef339
DE
26#include "inferior.h"
27#include "objfiles.h"
28#include "symfile.h"
29#include "symtab.h"
30#include "stack.h"
31#include "value.h"
32#include "guile-internal.h"
33
34/* The <gdb:frame> smob.
35 The typedef for this struct is in guile-internal.h. */
36
37struct _frame_smob
38{
39 /* This always appears first. */
40 eqable_gdb_smob base;
41
42 struct frame_id frame_id;
43 struct gdbarch *gdbarch;
44
45 /* Frames are tracked by inferior.
46 We need some place to put the eq?-able hash table, and this feels as
47 good a place as any. Frames in one inferior shouldn't be considered
48 equal to frames in a different inferior. The frame becomes invalid if
49 this becomes NULL (the inferior has been deleted from gdb).
50 It's easier to relax restrictions than impose them after the fact.
51 N.B. It is an outstanding question whether a frame survives reruns of
52 the inferior. Intuitively the answer is "No", but currently a frame
53 also survives, e.g., multiple invocations of the same function from
54 the same point. Even different threads can have the same frame, e.g.,
55 if a thread dies and a new thread gets the same stack. */
56 struct inferior *inferior;
57
58 /* Marks that the FRAME_ID member actually holds the ID of the frame next
59 to this, and not this frame's ID itself. This is a hack to permit Scheme
60 frame objects which represent invalid frames (i.e., the last frame_info
61 in a corrupt stack). The problem arises from the fact that this code
62 relies on FRAME_ID to uniquely identify a frame, which is not always true
63 for the last "frame" in a corrupt stack (it can have a null ID, or the
64 same ID as the previous frame). Whenever get_prev_frame returns NULL, we
65 record the frame_id of the next frame and set FRAME_ID_IS_NEXT to 1. */
66 int frame_id_is_next;
67};
68
69static const char frame_smob_name[] = "gdb:frame";
70
71/* The tag Guile knows the frame smob by. */
72static scm_t_bits frame_smob_tag;
73
74/* Keywords used in argument passing. */
75static SCM block_keyword;
76
77static const struct inferior_data *frscm_inferior_data_key;
78\f
79/* Administrivia for frame smobs. */
80
81/* Helper function to hash a frame_smob. */
82
83static hashval_t
84frscm_hash_frame_smob (const void *p)
85{
86 const frame_smob *f_smob = p;
87 const struct frame_id *fid = &f_smob->frame_id;
88 hashval_t hash = htab_hash_pointer (f_smob->inferior);
89
90 if (fid->stack_status == FID_STACK_VALID)
91 hash = iterative_hash (&fid->stack_addr, sizeof (fid->stack_addr), hash);
92 if (fid->code_addr_p)
93 hash = iterative_hash (&fid->code_addr, sizeof (fid->code_addr), hash);
94 if (fid->special_addr_p)
95 hash = iterative_hash (&fid->special_addr, sizeof (fid->special_addr),
96 hash);
97
98 return hash;
99}
100
101/* Helper function to compute equality of frame_smobs. */
102
103static int
104frscm_eq_frame_smob (const void *ap, const void *bp)
105{
106 const frame_smob *a = ap;
107 const frame_smob *b = bp;
108
109 return (frame_id_eq (a->frame_id, b->frame_id)
110 && a->inferior == b->inferior
111 && a->inferior != NULL);
112}
113
114/* Return the frame -> SCM mapping table.
115 It is created if necessary. */
116
117static htab_t
118frscm_inferior_frame_map (struct inferior *inferior)
119{
120 htab_t htab = inferior_data (inferior, frscm_inferior_data_key);
121
122 if (htab == NULL)
123 {
124 htab = gdbscm_create_eqable_gsmob_ptr_map (frscm_hash_frame_smob,
125 frscm_eq_frame_smob);
126 set_inferior_data (inferior, frscm_inferior_data_key, htab);
127 }
128
129 return htab;
130}
131
ed3ef339
DE
132/* The smob "free" function for <gdb:frame>. */
133
134static size_t
135frscm_free_frame_smob (SCM self)
136{
137 frame_smob *f_smob = (frame_smob *) SCM_SMOB_DATA (self);
138
139 if (f_smob->inferior != NULL)
140 {
141 htab_t htab = frscm_inferior_frame_map (f_smob->inferior);
142
143 gdbscm_clear_eqable_gsmob_ptr_slot (htab, &f_smob->base);
144 }
145
146 /* Not necessary, done to catch bugs. */
147 f_smob->inferior = NULL;
148
149 return 0;
150}
151
152/* The smob "print" function for <gdb:frame>. */
153
154static int
155frscm_print_frame_smob (SCM self, SCM port, scm_print_state *pstate)
156{
157 frame_smob *f_smob = (frame_smob *) SCM_SMOB_DATA (self);
158 struct ui_file *strfile;
159 char *s;
160
161 gdbscm_printf (port, "#<%s ", frame_smob_name);
162
163 strfile = mem_fileopen ();
164 fprint_frame_id (strfile, f_smob->frame_id);
165 s = ui_file_xstrdup (strfile, NULL);
166 gdbscm_printf (port, "%s", s);
167 ui_file_delete (strfile);
168 xfree (s);
169
170 scm_puts (">", port);
171
172 scm_remember_upto_here_1 (self);
173
174 /* Non-zero means success. */
175 return 1;
176}
177
178/* Low level routine to create a <gdb:frame> object. */
179
180static SCM
181frscm_make_frame_smob (void)
182{
183 frame_smob *f_smob = (frame_smob *)
184 scm_gc_malloc (sizeof (frame_smob), frame_smob_name);
185 SCM f_scm;
186
187 f_smob->frame_id = null_frame_id;
188 f_smob->gdbarch = NULL;
189 f_smob->inferior = NULL;
190 f_smob->frame_id_is_next = 0;
191 f_scm = scm_new_smob (frame_smob_tag, (scm_t_bits) f_smob);
1254eefc 192 gdbscm_init_eqable_gsmob (&f_smob->base, f_scm);
ed3ef339
DE
193
194 return f_scm;
195}
196
197/* Return non-zero if SCM is a <gdb:frame> object. */
198
199int
200frscm_is_frame (SCM scm)
201{
202 return SCM_SMOB_PREDICATE (frame_smob_tag, scm);
203}
204
205/* (frame? object) -> boolean */
206
207static SCM
208gdbscm_frame_p (SCM scm)
209{
210 return scm_from_bool (frscm_is_frame (scm));
211}
212
213/* Create a new <gdb:frame> object that encapsulates FRAME.
214 Returns a <gdb:exception> object if there is an error. */
215
216static SCM
217frscm_scm_from_frame (struct frame_info *frame, struct inferior *inferior)
218{
219 frame_smob *f_smob, f_smob_for_lookup;
220 SCM f_scm;
221 htab_t htab;
222 eqable_gdb_smob **slot;
ed3ef339
DE
223 struct frame_id frame_id = null_frame_id;
224 struct gdbarch *gdbarch = NULL;
225 int frame_id_is_next = 0;
226
227 /* If we've already created a gsmob for this frame, return it.
228 This makes frames eq?-able. */
229 htab = frscm_inferior_frame_map (inferior);
230 f_smob_for_lookup.frame_id = get_frame_id (frame);
231 f_smob_for_lookup.inferior = inferior;
232 slot = gdbscm_find_eqable_gsmob_ptr_slot (htab, &f_smob_for_lookup.base);
233 if (*slot != NULL)
234 return (*slot)->containing_scm;
235
492d29ea 236 TRY
ed3ef339
DE
237 {
238 /* Try to get the previous frame, to determine if this is the last frame
239 in a corrupt stack. If so, we need to store the frame_id of the next
240 frame and not of this one (which is possibly invalid). */
241 if (get_prev_frame (frame) == NULL
242 && get_frame_unwind_stop_reason (frame) != UNWIND_NO_REASON
243 && get_next_frame (frame) != NULL)
244 {
245 frame_id = get_frame_id (get_next_frame (frame));
246 frame_id_is_next = 1;
247 }
248 else
249 {
250 frame_id = get_frame_id (frame);
251 frame_id_is_next = 0;
252 }
253 gdbarch = get_frame_arch (frame);
254 }
492d29ea
PA
255 CATCH (except, RETURN_MASK_ALL)
256 {
257 return gdbscm_scm_from_gdb_exception (except);
258 }
259 END_CATCH
ed3ef339
DE
260
261 f_scm = frscm_make_frame_smob ();
262 f_smob = (frame_smob *) SCM_SMOB_DATA (f_scm);
263 f_smob->frame_id = frame_id;
264 f_smob->gdbarch = gdbarch;
265 f_smob->inferior = inferior;
266 f_smob->frame_id_is_next = frame_id_is_next;
267
1254eefc 268 gdbscm_fill_eqable_gsmob_ptr_slot (slot, &f_smob->base);
ed3ef339
DE
269
270 return f_scm;
271}
272
273/* Create a new <gdb:frame> object that encapsulates FRAME.
274 A Scheme exception is thrown if there is an error. */
275
276static SCM
277frscm_scm_from_frame_unsafe (struct frame_info *frame,
278 struct inferior *inferior)
279{
280 SCM f_scm = frscm_scm_from_frame (frame, inferior);
281
282 if (gdbscm_is_exception (f_scm))
283 gdbscm_throw (f_scm);
284
285 return f_scm;
286}
287
288/* Returns the <gdb:frame> object in SELF.
289 Throws an exception if SELF is not a <gdb:frame> object. */
290
291static SCM
292frscm_get_frame_arg_unsafe (SCM self, int arg_pos, const char *func_name)
293{
294 SCM_ASSERT_TYPE (frscm_is_frame (self), self, arg_pos, func_name,
295 frame_smob_name);
296
297 return self;
298}
299
300/* There is no gdbscm_scm_to_frame function because translating
301 a frame SCM object to a struct frame_info * can throw a GDB error.
302 Thus code working with frames has to handle both Scheme errors (e.g., the
303 object is not a frame) and GDB errors (e.g., the frame lookup failed).
304
e9fbd043
DE
305 To help keep things clear we split what would be gdbscm_scm_to_frame
306 into two:
ed3ef339 307
e9fbd043 308 frscm_get_frame_smob_arg_unsafe
ed3ef339
DE
309 - throws a Scheme error if object is not a frame,
310 or if the inferior is gone or is no longer current
311
e9fbd043 312 frscm_frame_smob_to_frame
ed3ef339
DE
313 - may throw a gdb error if the conversion fails
314 - it's not clear when it will and won't throw a GDB error,
315 but for robustness' sake we assume that whenever we call out to GDB
316 a GDB error may get thrown (and thus the call must be wrapped in a
317 TRY_CATCH) */
318
319/* Returns the frame_smob for the object wrapped by FRAME_SCM.
320 A Scheme error is thrown if FRAME_SCM is not a frame. */
321
322frame_smob *
323frscm_get_frame_smob_arg_unsafe (SCM self, int arg_pos, const char *func_name)
324{
325 SCM f_scm = frscm_get_frame_arg_unsafe (self, arg_pos, func_name);
326 frame_smob *f_smob = (frame_smob *) SCM_SMOB_DATA (f_scm);
327
328 if (f_smob->inferior == NULL)
329 {
330 gdbscm_invalid_object_error (func_name, arg_pos, self,
331 _("inferior"));
332 }
333 if (f_smob->inferior != current_inferior ())
334 scm_misc_error (func_name, _("inferior has changed"), SCM_EOL);
335
336 return f_smob;
337}
338
339/* Returns the frame_info object wrapped by F_SMOB.
340 If the frame doesn't exist anymore (the frame id doesn't
341 correspond to any frame in the inferior), returns NULL.
342 This function calls GDB routines, so don't assume a GDB error will
343 not be thrown. */
344
345struct frame_info *
346frscm_frame_smob_to_frame (frame_smob *f_smob)
347{
348 struct frame_info *frame;
349
350 frame = frame_find_by_id (f_smob->frame_id);
351 if (frame == NULL)
352 return NULL;
353
354 if (f_smob->frame_id_is_next)
355 frame = get_prev_frame (frame);
356
357 return frame;
358}
359
360/* Helper function for frscm_del_inferior_frames to mark the frame
361 as invalid. */
362
363static int
364frscm_mark_frame_invalid (void **slot, void *info)
365{
366 frame_smob *f_smob = (frame_smob *) *slot;
367
368 f_smob->inferior = NULL;
369 return 1;
370}
371
372/* This function is called when an inferior is about to be freed.
373 Invalidate the frame as further actions on the frame could result
374 in bad data. All access to the frame should be gated by
375 frscm_get_frame_smob_arg_unsafe which will raise an exception on
376 invalid frames. */
377
378static void
379frscm_del_inferior_frames (struct inferior *inferior, void *datum)
380{
381 htab_t htab = datum;
382
383 if (htab != NULL)
384 {
385 htab_traverse_noresize (htab, frscm_mark_frame_invalid, NULL);
386 htab_delete (htab);
387 }
388}
389\f
390/* Frame methods. */
391
392/* (frame-valid? <gdb:frame>) -> bool
393 Returns #t if the frame corresponding to the frame_id of this
394 object still exists in the inferior. */
395
396static SCM
397gdbscm_frame_valid_p (SCM self)
398{
399 frame_smob *f_smob;
400 struct frame_info *frame = NULL;
ed3ef339
DE
401
402 f_smob = frscm_get_frame_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
403
492d29ea 404 TRY
ed3ef339
DE
405 {
406 frame = frscm_frame_smob_to_frame (f_smob);
407 }
492d29ea
PA
408 CATCH (except, RETURN_MASK_ALL)
409 {
410 GDBSCM_HANDLE_GDB_EXCEPTION (except);
411 }
412 END_CATCH
ed3ef339
DE
413
414 return scm_from_bool (frame != NULL);
415}
416
417/* (frame-name <gdb:frame>) -> string
418 Returns the name of the function corresponding to this frame,
419 or #f if there is no function. */
420
421static SCM
422gdbscm_frame_name (SCM self)
423{
424 frame_smob *f_smob;
425 char *name = NULL;
426 enum language lang = language_minimal;
427 struct frame_info *frame = NULL;
428 SCM result;
ed3ef339
DE
429
430 f_smob = frscm_get_frame_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
431
492d29ea 432 TRY
ed3ef339
DE
433 {
434 frame = frscm_frame_smob_to_frame (f_smob);
435 if (frame != NULL)
436 find_frame_funname (frame, &name, &lang, NULL);
437 }
6c63c96a 438 CATCH (except, RETURN_MASK_ALL)
492d29ea 439 {
6c63c96a
PA
440 xfree (name);
441 GDBSCM_HANDLE_GDB_EXCEPTION (except);
492d29ea
PA
442 }
443 END_CATCH
444
ed3ef339
DE
445 if (frame == NULL)
446 {
447 gdbscm_invalid_object_error (FUNC_NAME, SCM_ARG1, self,
448 _("<gdb:frame>"));
449 }
450
451 if (name != NULL)
452 {
453 result = gdbscm_scm_from_c_string (name);
454 xfree (name);
455 }
456 else
457 result = SCM_BOOL_F;
458
459 return result;
460}
461
462/* (frame-type <gdb:frame>) -> integer
463 Returns the frame type, namely one of the gdb:*_FRAME constants. */
464
465static SCM
466gdbscm_frame_type (SCM self)
467{
468 frame_smob *f_smob;
469 enum frame_type type = NORMAL_FRAME;
470 struct frame_info *frame = NULL;
ed3ef339
DE
471
472 f_smob = frscm_get_frame_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
473
492d29ea 474 TRY
ed3ef339
DE
475 {
476 frame = frscm_frame_smob_to_frame (f_smob);
477 if (frame != NULL)
478 type = get_frame_type (frame);
479 }
492d29ea
PA
480 CATCH (except, RETURN_MASK_ALL)
481 {
482 GDBSCM_HANDLE_GDB_EXCEPTION (except);
483 }
484 END_CATCH
ed3ef339
DE
485
486 if (frame == NULL)
487 {
488 gdbscm_invalid_object_error (FUNC_NAME, SCM_ARG1, self,
489 _("<gdb:frame>"));
490 }
491
492 return scm_from_int (type);
493}
494
495/* (frame-arch <gdb:frame>) -> <gdb:architecture>
496 Returns the frame's architecture as a gdb:architecture object. */
497
498static SCM
499gdbscm_frame_arch (SCM self)
500{
501 frame_smob *f_smob;
502 struct frame_info *frame = NULL;
ed3ef339
DE
503
504 f_smob = frscm_get_frame_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
505
492d29ea 506 TRY
ed3ef339
DE
507 {
508 frame = frscm_frame_smob_to_frame (f_smob);
509 }
492d29ea
PA
510 CATCH (except, RETURN_MASK_ALL)
511 {
512 GDBSCM_HANDLE_GDB_EXCEPTION (except);
513 }
514 END_CATCH
ed3ef339
DE
515
516 if (frame == NULL)
517 {
518 gdbscm_invalid_object_error (FUNC_NAME, SCM_ARG1, self,
519 _("<gdb:frame>"));
520 }
521
522 return arscm_scm_from_arch (f_smob->gdbarch);
523}
524
525/* (frame-unwind-stop-reason <gdb:frame>) -> integer
526 Returns one of the gdb:FRAME_UNWIND_* constants. */
527
528static SCM
529gdbscm_frame_unwind_stop_reason (SCM self)
530{
531 frame_smob *f_smob;
532 struct frame_info *frame = NULL;
ed3ef339
DE
533 enum unwind_stop_reason stop_reason;
534
535 f_smob = frscm_get_frame_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
536
492d29ea 537 TRY
ed3ef339
DE
538 {
539 frame = frscm_frame_smob_to_frame (f_smob);
540 }
492d29ea
PA
541 CATCH (except, RETURN_MASK_ALL)
542 {
543 GDBSCM_HANDLE_GDB_EXCEPTION (except);
544 }
545 END_CATCH
ed3ef339
DE
546
547 if (frame == NULL)
548 {
549 gdbscm_invalid_object_error (FUNC_NAME, SCM_ARG1, self,
550 _("<gdb:frame>"));
551 }
552
553 stop_reason = get_frame_unwind_stop_reason (frame);
554
555 return scm_from_int (stop_reason);
556}
557
558/* (frame-pc <gdb:frame>) -> integer
559 Returns the frame's resume address. */
560
561static SCM
562gdbscm_frame_pc (SCM self)
563{
564 frame_smob *f_smob;
565 CORE_ADDR pc = 0;
566 struct frame_info *frame = NULL;
ed3ef339
DE
567
568 f_smob = frscm_get_frame_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
569
492d29ea 570 TRY
ed3ef339
DE
571 {
572 frame = frscm_frame_smob_to_frame (f_smob);
573 if (frame != NULL)
574 pc = get_frame_pc (frame);
575 }
492d29ea
PA
576 CATCH (except, RETURN_MASK_ALL)
577 {
578 GDBSCM_HANDLE_GDB_EXCEPTION (except);
579 }
580 END_CATCH
ed3ef339
DE
581
582 if (frame == NULL)
583 {
584 gdbscm_invalid_object_error (FUNC_NAME, SCM_ARG1, self,
585 _("<gdb:frame>"));
586 }
587
588 return gdbscm_scm_from_ulongest (pc);
589}
590
591/* (frame-block <gdb:frame>) -> <gdb:block>
592 Returns the frame's code block, or #f if one cannot be found. */
593
594static SCM
595gdbscm_frame_block (SCM self)
596{
597 frame_smob *f_smob;
3977b71f 598 const struct block *block = NULL, *fn_block;
ed3ef339 599 struct frame_info *frame = NULL;
ed3ef339
DE
600
601 f_smob = frscm_get_frame_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
602
492d29ea 603 TRY
ed3ef339
DE
604 {
605 frame = frscm_frame_smob_to_frame (f_smob);
606 if (frame != NULL)
607 block = get_frame_block (frame, NULL);
608 }
492d29ea
PA
609 CATCH (except, RETURN_MASK_ALL)
610 {
611 GDBSCM_HANDLE_GDB_EXCEPTION (except);
612 }
613 END_CATCH
ed3ef339
DE
614
615 if (frame == NULL)
616 {
617 gdbscm_invalid_object_error (FUNC_NAME, SCM_ARG1, self,
618 _("<gdb:frame>"));
619 }
620
621 for (fn_block = block;
622 fn_block != NULL && BLOCK_FUNCTION (fn_block) == NULL;
623 fn_block = BLOCK_SUPERBLOCK (fn_block))
624 continue;
625
626 if (block == NULL || fn_block == NULL || BLOCK_FUNCTION (fn_block) == NULL)
627 {
628 scm_misc_error (FUNC_NAME, _("cannot find block for frame"),
629 scm_list_1 (self));
630 }
631
632 if (block != NULL)
633 {
08be3fe3
DE
634 return bkscm_scm_from_block
635 (block, symbol_objfile (BLOCK_FUNCTION (fn_block)));
ed3ef339
DE
636 }
637
638 return SCM_BOOL_F;
639}
640
641/* (frame-function <gdb:frame>) -> <gdb:symbol>
642 Returns the symbol for the function corresponding to this frame,
643 or #f if there isn't one. */
644
645static SCM
646gdbscm_frame_function (SCM self)
647{
648 frame_smob *f_smob;
649 struct symbol *sym = NULL;
650 struct frame_info *frame = NULL;
ed3ef339
DE
651
652 f_smob = frscm_get_frame_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
653
492d29ea 654 TRY
ed3ef339
DE
655 {
656 frame = frscm_frame_smob_to_frame (f_smob);
657 if (frame != NULL)
658 sym = find_pc_function (get_frame_address_in_block (frame));
659 }
492d29ea
PA
660 CATCH (except, RETURN_MASK_ALL)
661 {
662 GDBSCM_HANDLE_GDB_EXCEPTION (except);
663 }
664 END_CATCH
ed3ef339
DE
665
666 if (frame == NULL)
667 {
668 gdbscm_invalid_object_error (FUNC_NAME, SCM_ARG1, self,
669 _("<gdb:frame>"));
670 }
671
672 if (sym != NULL)
673 return syscm_scm_from_symbol (sym);
674
675 return SCM_BOOL_F;
676}
677
678/* (frame-older <gdb:frame>) -> <gdb:frame>
679 Returns the frame immediately older (outer) to this frame,
680 or #f if there isn't one. */
681
682static SCM
683gdbscm_frame_older (SCM self)
684{
685 frame_smob *f_smob;
686 struct frame_info *prev = NULL;
687 struct frame_info *frame = NULL;
ed3ef339
DE
688
689 f_smob = frscm_get_frame_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
690
492d29ea 691 TRY
ed3ef339
DE
692 {
693 frame = frscm_frame_smob_to_frame (f_smob);
694 if (frame != NULL)
695 prev = get_prev_frame (frame);
696 }
492d29ea
PA
697 CATCH (except, RETURN_MASK_ALL)
698 {
699 GDBSCM_HANDLE_GDB_EXCEPTION (except);
700 }
701 END_CATCH
ed3ef339
DE
702
703 if (frame == NULL)
704 {
705 gdbscm_invalid_object_error (FUNC_NAME, SCM_ARG1, self,
706 _("<gdb:frame>"));
707 }
708
709 if (prev != NULL)
710 return frscm_scm_from_frame_unsafe (prev, f_smob->inferior);
711
712 return SCM_BOOL_F;
713}
714
715/* (frame-newer <gdb:frame>) -> <gdb:frame>
716 Returns the frame immediately newer (inner) to this frame,
717 or #f if there isn't one. */
718
719static SCM
720gdbscm_frame_newer (SCM self)
721{
722 frame_smob *f_smob;
723 struct frame_info *next = NULL;
724 struct frame_info *frame = NULL;
ed3ef339
DE
725
726 f_smob = frscm_get_frame_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
727
492d29ea 728 TRY
ed3ef339
DE
729 {
730 frame = frscm_frame_smob_to_frame (f_smob);
731 if (frame != NULL)
732 next = get_next_frame (frame);
733 }
492d29ea
PA
734 CATCH (except, RETURN_MASK_ALL)
735 {
736 GDBSCM_HANDLE_GDB_EXCEPTION (except);
737 }
738 END_CATCH
ed3ef339
DE
739
740 if (frame == NULL)
741 {
742 gdbscm_invalid_object_error (FUNC_NAME, SCM_ARG1, self,
743 _("<gdb:frame>"));
744 }
745
746 if (next != NULL)
747 return frscm_scm_from_frame_unsafe (next, f_smob->inferior);
748
749 return SCM_BOOL_F;
750}
751
752/* (frame-sal <gdb:frame>) -> <gdb:sal>
753 Returns the frame's symtab and line. */
754
755static SCM
756gdbscm_frame_sal (SCM self)
757{
758 frame_smob *f_smob;
759 struct symtab_and_line sal;
760 struct frame_info *frame = NULL;
ed3ef339
DE
761
762 f_smob = frscm_get_frame_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
763
492d29ea 764 TRY
ed3ef339
DE
765 {
766 frame = frscm_frame_smob_to_frame (f_smob);
767 if (frame != NULL)
768 find_frame_sal (frame, &sal);
769 }
492d29ea
PA
770 CATCH (except, RETURN_MASK_ALL)
771 {
772 GDBSCM_HANDLE_GDB_EXCEPTION (except);
773 }
774 END_CATCH
ed3ef339
DE
775
776 if (frame == NULL)
777 {
778 gdbscm_invalid_object_error (FUNC_NAME, SCM_ARG1, self,
779 _("<gdb:frame>"));
780 }
781
782 return stscm_scm_from_sal (sal);
783}
784
785/* (frame-read-var <gdb:frame> <gdb:symbol>) -> <gdb:value>
786 (frame-read-var <gdb:frame> string [#:block <gdb:block>]) -> <gdb:value>
787 If the optional block argument is provided start the search from that block,
788 otherwise search from the frame's current block (determined by examining
789 the resume address of the frame). The variable argument must be a string
790 or an instance of a <gdb:symbol>. The block argument must be an instance of
791 <gdb:block>. */
792
793static SCM
794gdbscm_frame_read_var (SCM self, SCM symbol_scm, SCM rest)
795{
796 SCM keywords[] = { block_keyword, SCM_BOOL_F };
797 int rc;
798 frame_smob *f_smob;
799 int block_arg_pos = -1;
800 SCM block_scm = SCM_UNDEFINED;
801 struct frame_info *frame = NULL;
802 struct symbol *var = NULL;
803 struct value *value = NULL;
ed3ef339
DE
804
805 f_smob = frscm_get_frame_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
806
492d29ea 807 TRY
ed3ef339
DE
808 {
809 frame = frscm_frame_smob_to_frame (f_smob);
810 }
492d29ea
PA
811 CATCH (except, RETURN_MASK_ALL)
812 {
813 GDBSCM_HANDLE_GDB_EXCEPTION (except);
814 }
815 END_CATCH
ed3ef339
DE
816
817 if (frame == NULL)
818 {
819 gdbscm_invalid_object_error (FUNC_NAME, SCM_ARG1, self,
820 _("<gdb:frame>"));
821 }
822
823 gdbscm_parse_function_args (FUNC_NAME, SCM_ARG3, keywords, "#O",
824 rest, &block_arg_pos, &block_scm);
825
826 if (syscm_is_symbol (symbol_scm))
827 {
828 var = syscm_get_valid_symbol_arg_unsafe (symbol_scm, SCM_ARG2,
829 FUNC_NAME);
830 SCM_ASSERT (SCM_UNBNDP (block_scm), block_scm, SCM_ARG3, FUNC_NAME);
831 }
832 else if (scm_is_string (symbol_scm))
833 {
834 char *var_name;
835 const struct block *block = NULL;
836 struct cleanup *cleanup;
492d29ea 837 struct gdb_exception except = exception_none;
ed3ef339
DE
838
839 if (! SCM_UNBNDP (block_scm))
840 {
841 SCM except_scm;
842
843 gdb_assert (block_arg_pos > 0);
844 block = bkscm_scm_to_block (block_scm, block_arg_pos, FUNC_NAME,
845 &except_scm);
846 if (block == NULL)
847 gdbscm_throw (except_scm);
848 }
849
850 var_name = gdbscm_scm_to_c_string (symbol_scm);
851 cleanup = make_cleanup (xfree, var_name);
852 /* N.B. Between here and the call to do_cleanups, don't do anything
853 to cause a Scheme exception without performing the cleanup. */
854
492d29ea 855 TRY
ed3ef339
DE
856 {
857 if (block == NULL)
858 block = get_frame_block (frame, NULL);
859 var = lookup_symbol (var_name, block, VAR_DOMAIN, NULL);
860 }
492d29ea
PA
861 CATCH (ex, RETURN_MASK_ALL)
862 {
863 except = ex;
864 }
865 END_CATCH
866
867 do_cleanups (cleanup);
ed3ef339
DE
868 GDBSCM_HANDLE_GDB_EXCEPTION (except);
869
870 if (var == NULL)
871 {
872 do_cleanups (cleanup);
873 gdbscm_out_of_range_error (FUNC_NAME, 0, symbol_scm,
874 _("variable not found"));
875 }
876
877 do_cleanups (cleanup);
878 }
879 else
880 {
881 /* Use SCM_ASSERT_TYPE for more consistent error messages. */
882 SCM_ASSERT_TYPE (0, symbol_scm, SCM_ARG1, FUNC_NAME,
883 _("gdb:symbol or string"));
884 }
885
492d29ea 886 TRY
ed3ef339
DE
887 {
888 value = read_var_value (var, frame);
889 }
492d29ea
PA
890 CATCH (except, RETURN_MASK_ALL)
891 {
892 GDBSCM_HANDLE_GDB_EXCEPTION (except);
893 }
894 END_CATCH
ed3ef339
DE
895
896 return vlscm_scm_from_value (value);
897}
898
899/* (frame-select <gdb:frame>) -> unspecified
900 Select this frame. */
901
902static SCM
903gdbscm_frame_select (SCM self)
904{
905 frame_smob *f_smob;
906 struct frame_info *frame = NULL;
ed3ef339
DE
907
908 f_smob = frscm_get_frame_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
909
492d29ea 910 TRY
ed3ef339
DE
911 {
912 frame = frscm_frame_smob_to_frame (f_smob);
913 if (frame != NULL)
914 select_frame (frame);
915 }
492d29ea
PA
916 CATCH (except, RETURN_MASK_ALL)
917 {
918 GDBSCM_HANDLE_GDB_EXCEPTION (except);
919 }
920 END_CATCH
ed3ef339
DE
921
922 if (frame == NULL)
923 {
924 gdbscm_invalid_object_error (FUNC_NAME, SCM_ARG1, self,
925 _("<gdb:frame>"));
926 }
927
928 return SCM_UNSPECIFIED;
929}
930
931/* (newest-frame) -> <gdb:frame>
932 Returns the newest frame. */
933
934static SCM
935gdbscm_newest_frame (void)
936{
937 struct frame_info *frame = NULL;
ed3ef339 938
492d29ea 939 TRY
ed3ef339
DE
940 {
941 frame = get_current_frame ();
942 }
492d29ea
PA
943 CATCH (except, RETURN_MASK_ALL)
944 {
945 GDBSCM_HANDLE_GDB_EXCEPTION (except);
946 }
947 END_CATCH
ed3ef339
DE
948
949 return frscm_scm_from_frame_unsafe (frame, current_inferior ());
950}
951
952/* (selected-frame) -> <gdb:frame>
953 Returns the selected frame. */
954
955static SCM
956gdbscm_selected_frame (void)
957{
958 struct frame_info *frame = NULL;
ed3ef339 959
492d29ea 960 TRY
ed3ef339
DE
961 {
962 frame = get_selected_frame (_("No frame is currently selected"));
963 }
492d29ea
PA
964 CATCH (except, RETURN_MASK_ALL)
965 {
966 GDBSCM_HANDLE_GDB_EXCEPTION (except);
967 }
968 END_CATCH
ed3ef339
DE
969
970 return frscm_scm_from_frame_unsafe (frame, current_inferior ());
971}
972
973/* (unwind-stop-reason-string integer) -> string
974 Return a string explaining the unwind stop reason. */
975
976static SCM
977gdbscm_unwind_stop_reason_string (SCM reason_scm)
978{
979 int reason;
980 const char *str;
981
982 gdbscm_parse_function_args (FUNC_NAME, SCM_ARG1, NULL, "i",
983 reason_scm, &reason);
984
985 if (reason < UNWIND_FIRST || reason > UNWIND_LAST)
986 scm_out_of_range (FUNC_NAME, reason_scm);
987
70e38b8e 988 str = unwind_stop_reason_to_string (reason);
ed3ef339
DE
989 return gdbscm_scm_from_c_string (str);
990}
991\f
992/* Initialize the Scheme frame support. */
993
994static const scheme_integer_constant frame_integer_constants[] =
995{
996#define ENTRY(X) { #X, X }
997
998 ENTRY (NORMAL_FRAME),
999 ENTRY (DUMMY_FRAME),
1000 ENTRY (INLINE_FRAME),
1001 ENTRY (TAILCALL_FRAME),
1002 ENTRY (SIGTRAMP_FRAME),
1003 ENTRY (ARCH_FRAME),
1004 ENTRY (SENTINEL_FRAME),
1005
1006#undef ENTRY
1007
1008#define SET(name, description) \
1009 { "FRAME_" #name, name },
1010#include "unwind_stop_reasons.def"
1011#undef SET
1012
1013 END_INTEGER_CONSTANTS
1014};
1015
1016static const scheme_function frame_functions[] =
1017{
1018 { "frame?", 1, 0, 0, gdbscm_frame_p,
1019 "\
1020Return #t if the object is a <gdb:frame> object." },
1021
1022 { "frame-valid?", 1, 0, 0, gdbscm_frame_valid_p,
1023 "\
1024Return #t if the object is a valid <gdb:frame> object.\n\
1025Frames become invalid when the inferior returns to its caller." },
1026
1027 { "frame-name", 1, 0, 0, gdbscm_frame_name,
1028 "\
1029Return the name of the function corresponding to this frame,\n\
1030or #f if there is no function." },
1031
1032 { "frame-arch", 1, 0, 0, gdbscm_frame_arch,
1033 "\
1034Return the frame's architecture as a <gdb:arch> object." },
1035
1036 { "frame-type", 1, 0, 0, gdbscm_frame_type,
1037 "\
1038Return the frame type, namely one of the gdb:*_FRAME constants." },
1039
1040 { "frame-unwind-stop-reason", 1, 0, 0, gdbscm_frame_unwind_stop_reason,
1041 "\
1042Return one of the gdb:FRAME_UNWIND_* constants explaining why\n\
1043it's not possible to find frames older than this." },
1044
1045 { "frame-pc", 1, 0, 0, gdbscm_frame_pc,
1046 "\
1047Return the frame's resume address." },
1048
1049 { "frame-block", 1, 0, 0, gdbscm_frame_block,
1050 "\
1051Return the frame's code block, or #f if one cannot be found." },
1052
1053 { "frame-function", 1, 0, 0, gdbscm_frame_function,
1054 "\
1055Return the <gdb:symbol> for the function corresponding to this frame,\n\
1056or #f if there isn't one." },
1057
1058 { "frame-older", 1, 0, 0, gdbscm_frame_older,
1059 "\
1060Return the frame immediately older (outer) to this frame,\n\
1061or #f if there isn't one." },
1062
1063 { "frame-newer", 1, 0, 0, gdbscm_frame_newer,
1064 "\
1065Return the frame immediately newer (inner) to this frame,\n\
1066or #f if there isn't one." },
1067
1068 { "frame-sal", 1, 0, 0, gdbscm_frame_sal,
1069 "\
1070Return the frame's symtab-and-line <gdb:sal> object." },
1071
1072 { "frame-read-var", 2, 0, 1, gdbscm_frame_read_var,
1073 "\
1074Return the value of the symbol in the frame.\n\
1075\n\
1076 Arguments: <gdb:frame> <gdb:symbol>\n\
1077 Or: <gdb:frame> string [#:block <gdb:block>]" },
1078
1079 { "frame-select", 1, 0, 0, gdbscm_frame_select,
1080 "\
1081Select this frame." },
1082
1083 { "newest-frame", 0, 0, 0, gdbscm_newest_frame,
1084 "\
1085Return the newest frame." },
1086
1087 { "selected-frame", 0, 0, 0, gdbscm_selected_frame,
1088 "\
1089Return the selected frame." },
1090
1091 { "unwind-stop-reason-string", 1, 0, 0, gdbscm_unwind_stop_reason_string,
1092 "\
1093Return a string explaining the unwind stop reason.\n\
1094\n\
1095 Arguments: integer (the result of frame-unwind-stop-reason)" },
1096
1097 END_FUNCTIONS
1098};
1099
1100void
1101gdbscm_initialize_frames (void)
1102{
1103 frame_smob_tag
1104 = gdbscm_make_smob_type (frame_smob_name, sizeof (frame_smob));
ed3ef339
DE
1105 scm_set_smob_free (frame_smob_tag, frscm_free_frame_smob);
1106 scm_set_smob_print (frame_smob_tag, frscm_print_frame_smob);
1107
1108 gdbscm_define_integer_constants (frame_integer_constants, 1);
1109 gdbscm_define_functions (frame_functions, 1);
1110
1111 block_keyword = scm_from_latin1_keyword ("block");
1112
1113 /* Register an inferior "free" callback so we can properly
1114 invalidate frames when an inferior file is about to be deleted. */
1115 frscm_inferior_data_key
1116 = register_inferior_data_with_cleanup (NULL, frscm_del_inferior_frames);
1117}
This page took 0.154176 seconds and 4 git commands to generate.