remove debug frames
[bpt/guile.git] / libguile / stacks.h
CommitLineData
02aa5a4c
MD
1/* classes: h_files */
2
13dcb666
DH
3#ifndef SCM_STACKS_H
4#define SCM_STACKS_H
b29058ff 5
102dbb6f 6/* Copyright (C) 1995,1996,2000,2001, 2004, 2006, 2008 Free Software Foundation, Inc.
b29058ff 7 *
73be1d9e 8 * This library is free software; you can redistribute it and/or
53befeb7
NJ
9 * modify it under the terms of the GNU Lesser General Public License
10 * as published by the Free Software Foundation; either version 3 of
11 * the License, or (at your option) any later version.
b29058ff 12 *
53befeb7
NJ
13 * This library is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
b29058ff 17 *
73be1d9e
MV
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
53befeb7
NJ
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 * 02110-1301 USA
73be1d9e 22 */
d3a6bc94 23
02aa5a4c
MD
24\f
25
26#include "libguile/__scm.h"
27
28/* {Frames and stacks}
29 */
30
92c2555f 31typedef struct scm_t_info_frame {
7febb4a2 32 /* SCM flags; */
92c2555f 33 scm_t_bits flags;
02aa5a4c
MD
34 SCM source;
35 SCM proc;
36 SCM args;
92c2555f
MV
37} scm_t_info_frame;
38#define SCM_FRAME_N_SLOTS (sizeof (scm_t_info_frame) / sizeof (SCM))
02aa5a4c 39
92c2555f 40#define SCM_STACK(obj) ((scm_t_stack *) SCM_STRUCT_DATA (obj))
3119346c 41#define SCM_STACK_LAYOUT "pwuourpW"
92c2555f 42typedef struct scm_t_stack {
b902ec85 43 SCM id; /* Stack id */
92c2555f 44 scm_t_info_frame *frames; /* Info frames */
c014a02e
ML
45 unsigned long length; /* Stack length */
46 unsigned long tail_length;
92c2555f
MV
47 scm_t_info_frame tail[1];
48} scm_t_stack;
1be6b49c 49
762e289a 50SCM_API SCM scm_stack_type;
b902ec85 51
bc36d050 52#define SCM_STACKP(obj) (SCM_STRUCTP (obj) && scm_is_eq (SCM_STRUCT_VTABLE (obj), scm_stack_type))
c692c370 53#define SCM_STACK_LENGTH(stack) (SCM_STACK (stack) -> length)
02aa5a4c 54
13dcb666 55#define SCM_FRAMEP(obj) \
d2e53ed6 56 (scm_is_pair (obj) && SCM_STACKP (SCM_CAR (obj)) \
e11e83f3
MV
57 && scm_is_unsigned_integer (SCM_CDR (obj), \
58 0, SCM_STACK_LENGTH (SCM_CAR (obj))-1))
b902ec85
MD
59
60#define SCM_FRAME_REF(frame, slot) \
e11e83f3 61(SCM_STACK (SCM_CAR (frame)) -> frames[scm_to_size_t (SCM_CDR (frame))].slot)
b902ec85
MD
62
63#define SCM_FRAME_NUMBER(frame) \
64(SCM_BACKWARDS_P \
e11e83f3 65 ? scm_to_size_t (SCM_CDR (frame)) \
b902ec85 66 : (SCM_STACK_LENGTH (SCM_CAR (frame)) \
e11e83f3 67 - scm_to_size_t (SCM_CDR (frame)) \
b902ec85
MD
68 - 1)) \
69
70#define SCM_FRAME_FLAGS(frame) SCM_FRAME_REF (frame, flags)
71#define SCM_FRAME_SOURCE(frame) SCM_FRAME_REF (frame, source)
72#define SCM_FRAME_PROC(frame) SCM_FRAME_REF (frame, proc)
73#define SCM_FRAME_ARGS(frame) SCM_FRAME_REF (frame, args)
02aa5a4c
MD
74#define SCM_FRAME_PREV(frame) scm_frame_previous (frame)
75#define SCM_FRAME_NEXT(frame) scm_frame_next (frame)
76
77#define SCM_FRAMEF_VOID (1L << 2)
78#define SCM_FRAMEF_REAL (1L << 3)
79#define SCM_FRAMEF_PROC (1L << 4)
80#define SCM_FRAMEF_EVAL_ARGS (1L << 5)
81#define SCM_FRAMEF_OVERFLOW (1L << 6)
82
451e591c
DH
83#define SCM_FRAME_VOID_P(f) (SCM_FRAME_FLAGS (f) & SCM_FRAMEF_VOID)
84#define SCM_FRAME_REAL_P(f) (SCM_FRAME_FLAGS (f) & SCM_FRAMEF_REAL)
85#define SCM_FRAME_PROC_P(f) (SCM_FRAME_FLAGS (f) & SCM_FRAMEF_PROC)
86#define SCM_FRAME_EVAL_ARGS_P(f) (SCM_FRAME_FLAGS (f) & SCM_FRAMEF_EVAL_ARGS)
87#define SCM_FRAME_OVERFLOW_P(f) (SCM_FRAME_FLAGS (f) & SCM_FRAMEF_OVERFLOW)
02aa5a4c
MD
88
89\f
90
33b001fd
MV
91SCM_API SCM scm_stack_p (SCM obj);
92SCM_API SCM scm_make_stack (SCM obj, SCM args);
93SCM_API SCM scm_stack_id (SCM stack);
94SCM_API SCM scm_stack_ref (SCM stack, SCM i);
95SCM_API SCM scm_stack_length (SCM stack);
96
97SCM_API SCM scm_frame_p (SCM obj);
98SCM_API SCM scm_last_stack_frame (SCM obj);
99SCM_API SCM scm_frame_number (SCM frame);
100SCM_API SCM scm_frame_source (SCM frame);
101SCM_API SCM scm_frame_procedure (SCM frame);
102SCM_API SCM scm_frame_arguments (SCM frame);
103SCM_API SCM scm_frame_previous (SCM frame);
104SCM_API SCM scm_frame_next (SCM frame);
105SCM_API SCM scm_frame_real_p (SCM frame);
106SCM_API SCM scm_frame_procedure_p (SCM frame);
107SCM_API SCM scm_frame_evaluating_args_p (SCM frame);
108SCM_API SCM scm_frame_overflow_p (SCM frame);
109
102dbb6f 110SCM_INTERNAL void scm_init_stacks (void);
02aa5a4c 111
b29058ff 112#endif /* SCM_STACKS_H */
89e00824
ML
113
114/*
115 Local Variables:
116 c-file-style: "gnu"
117 End:
118*/