annotate src/backtrace.h @ 380:8626e4521993 r21-2-5

Import from CVS: tag r21-2-5
author cvs
date Mon, 13 Aug 2007 11:07:10 +0200
parents c5d627a313b1
children aabb7f5b1c81
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* The lisp stack.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1985, 1986, 1987, 1992, 1993 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 /* Synched up with: FSF 19.30. Contained redundantly in various C files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 in FSFmacs. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 /* Authorship:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 FSF: Original version; a long time ago.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 XEmacs: split out of some C files. (For some obscure reason, a header
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 file couldn't be used in FSF Emacs, but XEmacs doesn't have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 that problem.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 Mly (probably) or JWZ: Some changes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #ifndef _XEMACS_BACKTRACE_H_
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #define _XEMACS_BACKTRACE_H_
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #include <setjmp.h>
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 0
diff changeset
37
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 /* These definitions are used in eval.c and alloc.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 struct backtrace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 struct backtrace *next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 Lisp_Object *function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 Lisp_Object *args; /* Points to vector of args. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 int nargs; /* Length of vector.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 If nargs is UNEVALLED, args points to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 slot holding list of unevalled args */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 int pdlcount; /* specpdl_depth () when invoked */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 char evalargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 /* Nonzero means call value of debugger when done with this operation. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 char debug_on_exit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 /* This structure helps implement the `catch' and `throw' control
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 structure. A struct catchtag contains all the information needed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 to restore the state of the interpreter after a non-local jump.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 Handlers for error conditions (represented by `struct handler'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 structures) just point to a catch tag to do the cleanup required
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 for their jumps.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 catchtag structures are chained together in the C calling stack;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 the `next' member points to the next outer catchtag.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 A call like (throw TAG VAL) searches for a catchtag whose `tag'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 member is TAG, and then unbinds to it. The `val' member is used to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 hold VAL while the stack is unwound; `val' is returned as the value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 of the catch form.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 All the other members are concerned with restoring the interpreter
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 state. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 struct catchtag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 Lisp_Object tag;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 struct catchtag *next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 struct gcpro *gcpro;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 JMP_BUF jmp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 struct backtrace *backlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 /* #### */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 struct handler *handlerlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 int lisp_eval_depth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 int pdlcount;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 /* This is the equivalent of async_timer_suppress_count.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 We probably don't have to bother with this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 int poll_suppress_count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 /* Dynamic-binding-o-rama */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 /* Structure for recording Lisp call stack for backtrace purposes. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 /* The special binding stack holds the outer values of variables while
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 they are bound by a function application or a let form, stores the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 code to be executed for Lisp unwind-protect forms, and stores the C
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 functions to be called for record_unwind_protect.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 If func is non-zero, undoing this binding applies func to old_value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 This implements record_unwind_protect.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 If func is zero and symbol is nil, undoing this binding evaluates
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 the list of forms in old_value; this implements Lisp's unwind-protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 form.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 Otherwise, undoing this binding stores old_value as symbol's value; this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 undoes the bindings made by a let form or function call. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 struct specbinding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
113 Lisp_Object symbol;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
114 Lisp_Object old_value;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 Lisp_Object (*func) (Lisp_Object); /* for unwind-protect */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 /* #### */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 /* Everything needed to describe an active condition case. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 struct handler
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 /* The handler clauses and variable from the condition-case form. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 Lisp_Object handler;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 Lisp_Object var;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 /* Fsignal stores here the condition-case clause that applies,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 and Fcondition_case thus knows which clause to run. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 Lisp_Object chosen_clause;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
130 /* Used to effect the longjmp() out to the handler. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 struct catchtag *tag;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 /* The next enclosing handler. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 struct handler *next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 extern struct handler *handlerlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 /* These are extern because GC needs to mark them */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 extern struct specbinding *specpdl;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 extern struct specbinding *specpdl_ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 extern struct catchtag *catchlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 extern struct backtrace *backtrace_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
147 /* Most callers should simply use specbind() and unbind_to(), but if
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
148 speed is REALLY IMPORTANT, you can use the faster macros below */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
149 void specbind_magic (Lisp_Object, Lisp_Object);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
150 void grow_specpdl (size_t reserved);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
151 void unbind_to_hairy (int);
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
152 extern int specpdl_size;
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
153
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
154 /* Inline version of specbind().
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
155 Use this instead of specbind() if speed is sufficiently important
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
156 to save the overhead of even a single function call. */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
157 #define SPECBIND(symbol_object, value_object) do { \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
158 Lisp_Object SB_symbol = (symbol_object); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
159 Lisp_Object SB_newval = (value_object); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
160 Lisp_Object SB_oldval; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
161 struct Lisp_Symbol *SB_sym; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
162 \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
163 SPECPDL_RESERVE (1); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
164 \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
165 CHECK_SYMBOL (SB_symbol); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
166 SB_sym = XSYMBOL (SB_symbol); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
167 SB_oldval = SB_sym->value; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
168 \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
169 if (!SYMBOL_VALUE_MAGIC_P (SB_oldval) || UNBOUNDP (SB_oldval)) \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
170 { \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
171 /* ### the following test will go away when we have a constant \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
172 symbol magic object */ \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
173 if (EQ (SB_symbol, Qnil) || \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
174 EQ (SB_symbol, Qt) || \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
175 SYMBOL_IS_KEYWORD (SB_symbol)) \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
176 reject_constant_symbols (SB_symbol, SB_newval, 0, \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
177 UNBOUNDP (SB_newval) ? \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
178 Qmakunbound : Qset); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
179 \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
180 specpdl_ptr->symbol = SB_symbol; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
181 specpdl_ptr->old_value = SB_oldval; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
182 specpdl_ptr->func = 0; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
183 specpdl_ptr++; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
184 specpdl_depth_counter++; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
185 \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
186 SB_sym->value = (SB_newval); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
187 } \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
188 else \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
189 specbind_magic (SB_symbol, SB_newval); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
190 } while (0)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
191
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
192 /* An even faster, but less safe inline version of specbind().
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
193 Caller guarantees that:
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
194 - SYMBOL is a non-constant symbol (i.e. not Qnil, Qt, or keyword).
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
195 - specpdl_depth_counter >= specpdl_size.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
196 Else we crash. */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
197 #define SPECBIND_FAST_UNSAFE(symbol_object, value_object) do { \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
198 Lisp_Object SFU_symbol = (symbol_object); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
199 Lisp_Object SFU_newval = (value_object); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
200 struct Lisp_Symbol *SFU_sym = XSYMBOL (SFU_symbol); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
201 Lisp_Object SFU_oldval = SFU_sym->value; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
202 if (!SYMBOL_VALUE_MAGIC_P (SFU_oldval) || UNBOUNDP (SFU_oldval)) \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
203 { \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
204 specpdl_ptr->symbol = SFU_symbol; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
205 specpdl_ptr->old_value = SFU_oldval; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
206 specpdl_ptr->func = 0; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
207 specpdl_ptr++; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
208 specpdl_depth_counter++; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
209 \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
210 SFU_sym->value = (SFU_newval); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
211 } \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
212 else \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
213 specbind_magic (SFU_symbol, SFU_newval); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
214 } while (0)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
215
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
216 /* Request enough room for SIZE future entries on special binding stack */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
217 #define SPECPDL_RESERVE(size) do { \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
218 size_t SR_size = (size); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
219 if (specpdl_depth() + SR_size >= specpdl_size) \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
220 grow_specpdl (SR_size); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
221 } while (0)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
222
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
223 /* Inline version of unbind_to().
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
224 Use this instead of unbind_to() if speed is sufficiently important
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
225 to save the overhead of even a single function call.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
226
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
227 Most of the time, unbind_to() is called only on ordinary
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
228 variables, so optimize for that. */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
229 #define UNBIND_TO_GCPRO(count, value) do { \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
230 int UNBIND_TO_count = (count); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
231 while (specpdl_depth_counter != UNBIND_TO_count) \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
232 { \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
233 struct Lisp_Symbol *sym; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
234 --specpdl_ptr; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
235 --specpdl_depth_counter; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
236 \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
237 if (specpdl_ptr->func != 0 || \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
238 ((sym = XSYMBOL (specpdl_ptr->symbol)), \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
239 SYMBOL_VALUE_MAGIC_P (sym->value))) \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
240 { \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
241 struct gcpro gcpro1; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
242 GCPRO1 (value); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
243 unbind_to_hairy (UNBIND_TO_count); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
244 UNGCPRO; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
245 break; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
246 } \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
247 \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
248 sym->value = specpdl_ptr->old_value; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
249 } \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
250 } while (0)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
251
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
252 /* A slightly faster inline version of unbind_to,
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
253 that doesn't offer GCPROing services. */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
254 #define UNBIND_TO(count) do { \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
255 int UNBIND_TO_count = (count); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
256 while (specpdl_depth_counter != UNBIND_TO_count) \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
257 { \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
258 struct Lisp_Symbol *sym; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
259 --specpdl_ptr; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
260 --specpdl_depth_counter; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
261 \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
262 if (specpdl_ptr->func != 0 || \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
263 ((sym = XSYMBOL (specpdl_ptr->symbol)), \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
264 SYMBOL_VALUE_MAGIC_P (sym->value))) \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
265 { \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
266 unbind_to_hairy (UNBIND_TO_count); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
267 break; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
268 } \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
269 \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
270 sym->value = specpdl_ptr->old_value; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
271 } \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
272 } while (0)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
273
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
274 #ifdef ERROR_CHECK_TYPECHECK
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
275 #define CHECK_SPECBIND_VARIABLE assert (specpdl_ptr->func == 0)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
276 #else
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
277 #define CHECK_SPECBIND_VARIABLE DO_NOTHING
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
278 #endif
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
279
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
280 /* Another inline version of unbind_to(). VALUE is GC-protected.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
281 Caller guarantees that:
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
282 - all of the elements on the binding stack are variable bindings.
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
283 Else we crash. */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
284 #define UNBIND_TO_GCPRO_VARIABLES_ONLY(count, value) do { \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
285 int UNBIND_TO_count = (count); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
286 while (specpdl_depth_counter != UNBIND_TO_count) \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
287 { \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
288 struct Lisp_Symbol *sym; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
289 --specpdl_ptr; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
290 --specpdl_depth_counter; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
291 \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
292 CHECK_SPECBIND_VARIABLE; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
293 sym = XSYMBOL (specpdl_ptr->symbol); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
294 if (!SYMBOL_VALUE_MAGIC_P (sym->value)) \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
295 sym->value = specpdl_ptr->old_value; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
296 else \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
297 { \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
298 struct gcpro gcpro1; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
299 GCPRO1 (value); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
300 unbind_to_hairy (UNBIND_TO_count); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
301 UNGCPRO; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
302 break; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
303 } \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
304 } \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
305 } while (0)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
306
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
307 /* A faster, but less safe inline version of Fset().
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
308 Caller guarantees that:
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
309 - SYMBOL is a non-constant symbol (i.e. not Qnil, Qt, or keyword).
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
310 Else we crash. */
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
311 #define FSET_FAST_UNSAFE(sym, newval) do { \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
312 Lisp_Object FFU_sym = (sym); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
313 Lisp_Object FFU_newval = (newval); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
314 struct Lisp_Symbol *FFU_symbol = XSYMBOL (FFU_sym); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
315 Lisp_Object FFU_oldval = FFU_symbol->value; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
316 if (!SYMBOL_VALUE_MAGIC_P (FFU_oldval) || UNBOUNDP (FFU_oldval)) \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
317 FFU_symbol->value = FFU_newval; \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
318 else \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
319 Fset (FFU_sym, FFU_newval); \
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
320 } while (0)
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 272
diff changeset
321
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 #endif /* _XEMACS_BACKTRACE_H_ */