2 Copyright (C) 1985, 1986, 1987, 1992, 1993 Free Software Foundation, Inc.
4 This file is part of XEmacs.
6 XEmacs is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option) any
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with XEmacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* Synched up with: FSF 19.30. Contained redundantly in various C files
26 FSF: Original version; a long time ago.
27 XEmacs: split out of some C files. (For some obscure reason, a header
28 file couldn't be used in FSF Emacs, but XEmacs doesn't have
30 Mly (probably) or JWZ: Some changes.
33 #ifndef INCLUDED_backtrace_h_
34 #define INCLUDED_backtrace_h_
38 /* These definitions are used in eval.c and alloc.c */
42 struct backtrace *next;
43 Lisp_Object *function;
44 Lisp_Object *args; /* Points to vector of args. */
45 int nargs; /* Length of vector.
46 If nargs is UNEVALLED, args points to
47 slot holding list of unevalled args */
48 int pdlcount; /* specpdl_depth () when invoked */
50 /* Nonzero means call value of debugger when done with this operation. */
54 /* This structure helps implement the `catch' and `throw' control
55 structure. A struct catchtag contains all the information needed
56 to restore the state of the interpreter after a non-local jump.
58 Handlers for error conditions (represented by `struct handler'
59 structures) just point to a catch tag to do the cleanup required
62 catchtag structures are chained together in the C calling stack;
63 the `next' member points to the next outer catchtag.
65 A call like (throw TAG VAL) searches for a catchtag whose `tag'
66 member is TAG, and then unbinds to it. The `val' member is used to
67 hold VAL while the stack is unwound; `val' is returned as the value
70 All the other members are concerned with restoring the interpreter
77 struct catchtag *next;
80 struct backtrace *backlist;
83 struct handler *handlerlist;
88 /* This is the equivalent of async_timer_suppress_count.
89 We probably don't have to bother with this. */
90 int poll_suppress_count;
94 /* Dynamic-binding-o-rama */
96 /* Structure for recording Lisp call stack for backtrace purposes. */
98 /* The special binding stack holds the outer values of variables while
99 they are bound by a function application or a let form, stores the
100 code to be executed for Lisp unwind-protect forms, and stores the C
101 functions to be called for record_unwind_protect.
103 If func is non-zero, undoing this binding applies func to old_value;
104 This implements record_unwind_protect.
105 If func is zero and symbol is nil, undoing this binding evaluates
106 the list of forms in old_value; this implements Lisp's unwind-protect
108 Otherwise, undoing this binding stores old_value as symbol's value; this
109 undoes the bindings made by a let form or function call. */
114 Lisp_Object old_value;
115 Lisp_Object (*func) (Lisp_Object); /* for unwind-protect */
120 /* Everything needed to describe an active condition case. */
123 /* The handler clauses and variable from the condition-case form. */
126 /* Fsignal stores here the condition-case clause that applies,
127 and Fcondition_case thus knows which clause to run. */
128 Lisp_Object chosen_clause;
130 /* Used to effect the longjmp() out to the handler. */
131 struct catchtag *tag;
133 /* The next enclosing handler. */
134 struct handler *next;
137 extern struct handler *handlerlist;
141 /* These are extern because GC needs to mark them */
142 extern struct specbinding *specpdl;
143 extern struct specbinding *specpdl_ptr;
144 extern struct catchtag *catchlist;
145 extern struct backtrace *backtrace_list;
147 /* Most callers should simply use specbind() and unbind_to(), but if
148 speed is REALLY IMPORTANT, you can use the faster macros below */
149 void specbind_magic (Lisp_Object, Lisp_Object);
150 void grow_specpdl (EMACS_INT reserved);
151 void unbind_to_hairy (int);
152 extern int specpdl_size;
154 /* Inline version of specbind().
155 Use this instead of specbind() if speed is sufficiently important
156 to save the overhead of even a single function call. */
157 #define SPECBIND(symbol_object, value_object) do { \
158 Lisp_Object SB_symbol = (symbol_object); \
159 Lisp_Object SB_newval = (value_object); \
160 Lisp_Object SB_oldval; \
161 Lisp_Symbol *SB_sym; \
163 SPECPDL_RESERVE (1); \
165 CHECK_SYMBOL (SB_symbol); \
166 SB_sym = XSYMBOL (SB_symbol); \
167 SB_oldval = SB_sym->value; \
169 if (!SYMBOL_VALUE_MAGIC_P (SB_oldval) || UNBOUNDP (SB_oldval)) \
171 /* #### the following test will go away when we have a constant \
172 symbol magic object */ \
173 if (EQ (SB_symbol, Qnil) || \
174 EQ (SB_symbol, Qt) || \
175 SYMBOL_IS_KEYWORD (SB_symbol)) \
176 reject_constant_symbols (SB_symbol, SB_newval, 0, \
177 UNBOUNDP (SB_newval) ? \
178 Qmakunbound : Qset); \
180 specpdl_ptr->symbol = SB_symbol; \
181 specpdl_ptr->old_value = SB_oldval; \
182 specpdl_ptr->func = 0; \
184 specpdl_depth_counter++; \
186 SB_sym->value = (SB_newval); \
189 specbind_magic (SB_symbol, SB_newval); \
192 /* An even faster, but less safe inline version of specbind().
193 Caller guarantees that:
194 - SYMBOL is a non-constant symbol (i.e. not Qnil, Qt, or keyword).
195 - specpdl_depth_counter >= specpdl_size.
197 #define SPECBIND_FAST_UNSAFE(symbol_object, value_object) do { \
198 Lisp_Object SFU_symbol = (symbol_object); \
199 Lisp_Object SFU_newval = (value_object); \
200 Lisp_Symbol *SFU_sym = XSYMBOL (SFU_symbol); \
201 Lisp_Object SFU_oldval = SFU_sym->value; \
202 if (!SYMBOL_VALUE_MAGIC_P (SFU_oldval) || UNBOUNDP (SFU_oldval)) \
204 specpdl_ptr->symbol = SFU_symbol; \
205 specpdl_ptr->old_value = SFU_oldval; \
206 specpdl_ptr->func = 0; \
208 specpdl_depth_counter++; \
210 SFU_sym->value = (SFU_newval); \
213 specbind_magic (SFU_symbol, SFU_newval); \
216 /* Request enough room for SIZE future entries on special binding stack */
217 /* SR_size will typically be compared to an unsigned short */
218 #define SPECPDL_RESERVE(size) do { \
219 EMACS_INT SR_size = (size); \
220 if (specpdl_depth() + SR_size >= specpdl_size) \
221 grow_specpdl (SR_size); \
224 /* Inline version of unbind_to().
225 Use this instead of unbind_to() if speed is sufficiently important
226 to save the overhead of even a single function call.
228 Most of the time, unbind_to() is called only on ordinary
229 variables, so optimize for that. */
230 #define UNBIND_TO_GCPRO(count, value) do { \
231 int UNBIND_TO_count = (count); \
232 while (specpdl_depth_counter != UNBIND_TO_count) \
236 --specpdl_depth_counter; \
238 if (specpdl_ptr->func != 0 || \
239 ((sym = XSYMBOL (specpdl_ptr->symbol)), \
240 SYMBOL_VALUE_MAGIC_P (sym->value))) \
242 struct gcpro gcpro1; \
244 unbind_to_hairy (UNBIND_TO_count); \
249 sym->value = specpdl_ptr->old_value; \
253 /* A slightly faster inline version of unbind_to,
254 that doesn't offer GCPROing services. */
255 #define UNBIND_TO(count) do { \
256 int UNBIND_TO_count = (count); \
257 while (specpdl_depth_counter != UNBIND_TO_count) \
261 --specpdl_depth_counter; \
263 if (specpdl_ptr->func != 0 || \
264 ((sym = XSYMBOL (specpdl_ptr->symbol)), \
265 SYMBOL_VALUE_MAGIC_P (sym->value))) \
267 unbind_to_hairy (UNBIND_TO_count); \
271 sym->value = specpdl_ptr->old_value; \
275 #ifdef ERROR_CHECK_TYPECHECK
276 #define CHECK_SPECBIND_VARIABLE assert (specpdl_ptr->func == 0)
278 #define CHECK_SPECBIND_VARIABLE DO_NOTHING
282 /* Unused. It's too hard to guarantee that the current bindings
283 contain only variables. */
284 /* Another inline version of unbind_to(). VALUE is GC-protected.
285 Caller guarantees that:
286 - all of the elements on the binding stack are variable bindings.
288 #define UNBIND_TO_GCPRO_VARIABLES_ONLY(count, value) do { \
289 int UNBIND_TO_count = (count); \
290 while (specpdl_depth_counter != UNBIND_TO_count) \
294 --specpdl_depth_counter; \
296 CHECK_SPECBIND_VARIABLE; \
297 sym = XSYMBOL (specpdl_ptr->symbol); \
298 if (!SYMBOL_VALUE_MAGIC_P (sym->value)) \
299 sym->value = specpdl_ptr->old_value; \
302 struct gcpro gcpro1; \
304 unbind_to_hairy (UNBIND_TO_count); \
312 /* A faster, but less safe inline version of Fset().
313 Caller guarantees that:
314 - SYMBOL is a non-constant symbol (i.e. not Qnil, Qt, or keyword).
316 #define FSET_FAST_UNSAFE(sym, newval) do { \
317 Lisp_Object FFU_sym = (sym); \
318 Lisp_Object FFU_newval = (newval); \
319 Lisp_Symbol *FFU_symbol = XSYMBOL (FFU_sym); \
320 Lisp_Object FFU_oldval = FFU_symbol->value; \
321 if (!SYMBOL_VALUE_MAGIC_P (FFU_oldval) || UNBOUNDP (FFU_oldval)) \
322 FFU_symbol->value = FFU_newval; \
324 Fset (FFU_sym, FFU_newval); \
327 #endif /* INCLUDED_backtrace_h_ */