Mercurial > hg > xemacs-beta
annotate src/eval.c @ 5627:37fb945697f5
text_width_single_run cleanup.
-------------------- ChangeLog entries follow: --------------------
src/ChangeLog addition:
2011-12-28 Didier Verna <didier@xemacs.org>
* redisplay-xlike-inc.c (XLIKE_text_width_single_run): Get only
what's needed as argument: an XLIKE_DISPLAY instead of a frame
pointer.
* redisplay-xlike-inc.c (XLIKE_text_width):
* redisplay-xlike-inc.c (XLIKE_output_string): Update accordingly.
Use the generic XLIKE_ name instead of the specific x_ one.
author | Didier Verna <didier@xemacs.org> |
---|---|
date | Wed, 28 Dec 2011 10:53:38 +0100 |
parents | 5f4f92a31875 |
children | f5315ccbf005 |
rev | line source |
---|---|
428 | 1 /* Evaluator for XEmacs Lisp interpreter. |
2 Copyright (C) 1985-1987, 1992-1994 Free Software Foundation, Inc. | |
3 Copyright (C) 1995 Sun Microsystems, Inc. | |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
4 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2010 Ben Wing. |
428 | 5 |
6 This file is part of XEmacs. | |
7 | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5265
diff
changeset
|
8 XEmacs is free software: you can redistribute it and/or modify it |
428 | 9 under the terms of the GNU General Public License as published by the |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5265
diff
changeset
|
10 Free Software Foundation, either version 3 of the License, or (at your |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5265
diff
changeset
|
11 option) any later version. |
428 | 12 |
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
16 for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5265
diff
changeset
|
19 along with XEmacs. If not, see <http://www.gnu.org/licenses/>. */ |
428 | 20 |
21 /* Synched up with: FSF 19.30 (except for Fsignal), Mule 2.0. */ | |
22 | |
853 | 23 /* Authorship: |
24 | |
25 Based on code from pre-release FSF 19, c. 1991. | |
26 Some work by Richard Mlynarik long ago (c. 1993?) -- | |
27 added call-with-condition-handler; synch. up to released FSF 19.7 | |
28 for lemacs 19.8. some signal changes. | |
29 Various work by Ben Wing, 1995-1996: | |
30 added all stuff dealing with trapping errors, suspended-errors, etc. | |
31 added most Fsignal front ends. | |
32 added warning code. | |
33 reworked the Fsignal code and synched the rest up to FSF 19.30. | |
34 Some changes by Martin Buchholz c. 1999? | |
35 e.g. PRIMITIVE_FUNCALL macros. | |
36 New call_trapping_problems code and large comments below | |
37 by Ben Wing, Mar-Apr 2000. | |
38 */ | |
39 | |
40 /* This file has been Mule-ized. */ | |
41 | |
42 /* What is in this file? | |
43 | |
44 This file contains the engine for the ELisp interpreter in XEmacs. | |
45 The engine does the actual work of implementing function calls, | |
46 form evaluation, non-local exits (catch, throw, signal, | |
47 condition-case, call-with-condition-handler), unwind-protects, | |
48 dynamic bindings, let constructs, backtraces, etc. You might say | |
49 that this module is the very heart of XEmacs, and everything else | |
50 in XEmacs is merely an auxiliary module implementing some specific | |
51 functionality that may be called from the heart at an appropriate | |
52 time. | |
53 | |
54 The only exception is the alloc.c module, which implements the | |
55 framework upon which this module (eval.c) works. alloc.c works | |
56 with creating the actual Lisp objects themselves and garbage | |
1960 | 57 collecting them as necessary, presenting a nice, high-level |
853 | 58 interface for object creation, deletion, access, and modification. |
59 | |
60 The only other exception that could be cited is the event-handling | |
61 module in event-stream.c. From its perspective, it is also the | |
62 heart of XEmacs, and controls exactly what gets done at what time. | |
63 From its perspective, eval.c is merely one of the auxiliary modules | |
64 out there that can be invoked by event-stream.c. | |
65 | |
66 Although the event-stream-centric view is a convenient fiction that | |
67 makes sense particularly from the user's perspective and from the | |
68 perspective of time, the engine-centric view is actually closest to | |
69 the truth, because anywhere within the event-stream module, you are | |
70 still somewhere in a Lisp backtrace, and event-loops are begun by | |
71 functions such as `command-loop-1', a Lisp function. | |
72 | |
73 As the Lisp engine is doing its thing, it maintains the state of | |
1960 | 74 the engine primarily in five list-like items, which are: |
853 | 75 |
76 -- the backtrace list | |
77 -- the catchtag list | |
78 -- the condition-handler list | |
79 -- the specbind list | |
80 -- the GCPRO list. | |
81 | |
82 These are described in detail in the next comment. | |
83 | |
84 --ben | |
85 */ | |
86 | |
87 /* Note that there are five separate lists used to maintain state in | |
88 the evaluator. All of them conceptually are stacks (last-in, | |
89 first-out). All non-local exits happen ultimately through the | |
90 catch/throw mechanism, which uses one of the five lists (the | |
91 catchtag list) and records the current state of the others in each | |
92 frame of the list (some other information is recorded and restored | |
93 as well, such as the current eval depth), so that all the state of | |
94 the evaluator is restored properly when a non-local exit occurs. | |
95 (Note that the current state of the condition-handler list is not | |
96 recorded in the catchtag list. Instead, when a condition-case or | |
97 call-with-condition-handler is set up, it installs an | |
98 unwind-protect on the specbind list to restore the appropriate | |
99 setting for the condition-handler list. During the course of | |
100 handling the non-local exit, all entries on the specbind list that | |
101 are past the location stored in the catch frame are "unwound" | |
102 (i.e. variable bindings are restored and unwind-protects are | |
103 executed), so the condition-handler list gets reset properly. | |
104 | |
105 The five lists are | |
106 | |
107 1. The backtrace list, which is chained through `struct backtrace's | |
108 declared in the stack frames of various primitives, and keeps | |
109 track of all Lisp function call entries and exits. | |
110 2. The catchtag list, which is chained through `struct catchtag's | |
111 declared in the stack frames of internal_catch and condition_case_1, | |
112 and keeps track of information needed to reset the internal state | |
113 of the evaluator to the state that was current when the catch or | |
114 condition-case were established, in the event of a non-local exit. | |
115 3. The condition-handler list, which is a simple Lisp list with new | |
116 entries consed onto the front of the list. It records condition-cases | |
117 and call-with-condition-handlers established either from C or from | |
118 Lisp. Unlike with the other lists (but similar to everything else | |
119 of a similar nature in the rest of the C and Lisp code), it takes care | |
120 of restoring itself appropriately in the event of a non-local exit | |
121 through the use of the unwind-protect mechanism. | |
122 4. The specbind list, which is a contiguous array of `struct specbinding's, | |
123 expanded as necessary using realloc(). It holds dynamic variable | |
124 bindings (the only kind we currently have in ELisp) and unwind-protects. | |
125 5. The GCPRO list, which is chained through `struct gcpro's declared in | |
126 the stack frames of any functions that need to GC-protect Lisp_Objects | |
127 declared on the stack. This is one of the most fragile areas of the | |
128 entire scheme -- you must not forget to UNGCPRO at the end of your | |
129 function, you must make sure you GCPRO in many circumstances you don't | |
130 think you have to, etc. See the internals manual for more information | |
131 about this. | |
132 | |
133 --ben | |
134 */ | |
135 | |
428 | 136 #include <config.h> |
137 #include "lisp.h" | |
138 | |
139 #include "commands.h" | |
140 #include "backtrace.h" | |
141 #include "bytecode.h" | |
142 #include "buffer.h" | |
872 | 143 #include "console-impl.h" |
853 | 144 #include "device.h" |
145 #include "frame.h" | |
146 #include "lstream.h" | |
428 | 147 #include "opaque.h" |
1292 | 148 #include "profile.h" |
853 | 149 #include "window.h" |
428 | 150 |
151 struct backtrace *backtrace_list; | |
152 | |
153 /* Macros for calling subrs with an argument list whose length is only | |
154 known at runtime. See EXFUN and DEFUN for similar hackery. */ | |
155 | |
156 #define AV_0(av) | |
157 #define AV_1(av) av[0] | |
158 #define AV_2(av) AV_1(av), av[1] | |
159 #define AV_3(av) AV_2(av), av[2] | |
160 #define AV_4(av) AV_3(av), av[3] | |
161 #define AV_5(av) AV_4(av), av[4] | |
162 #define AV_6(av) AV_5(av), av[5] | |
163 #define AV_7(av) AV_6(av), av[6] | |
164 #define AV_8(av) AV_7(av), av[7] | |
165 | |
166 #define PRIMITIVE_FUNCALL_1(fn, av, ac) \ | |
444 | 167 (((Lisp_Object (*)(EXFUN_##ac)) (fn)) (AV_##ac (av))) |
428 | 168 |
169 /* If subrs take more than 8 arguments, more cases need to be added | |
170 to this switch. (But wait - don't do it - if you really need | |
171 a SUBR with more than 8 arguments, use max_args == MANY. | |
853 | 172 Or better, considering using a property list as one of your args. |
428 | 173 See the DEFUN macro in lisp.h) */ |
174 #define PRIMITIVE_FUNCALL(rv, fn, av, ac) do { \ | |
175 void (*PF_fn)(void) = (void (*)(void)) fn; \ | |
176 Lisp_Object *PF_av = (av); \ | |
177 switch (ac) \ | |
178 { \ | |
436 | 179 default:rv = PRIMITIVE_FUNCALL_1(PF_fn, PF_av, 0); break; \ |
428 | 180 case 1: rv = PRIMITIVE_FUNCALL_1(PF_fn, PF_av, 1); break; \ |
181 case 2: rv = PRIMITIVE_FUNCALL_1(PF_fn, PF_av, 2); break; \ | |
182 case 3: rv = PRIMITIVE_FUNCALL_1(PF_fn, PF_av, 3); break; \ | |
183 case 4: rv = PRIMITIVE_FUNCALL_1(PF_fn, PF_av, 4); break; \ | |
184 case 5: rv = PRIMITIVE_FUNCALL_1(PF_fn, PF_av, 5); break; \ | |
185 case 6: rv = PRIMITIVE_FUNCALL_1(PF_fn, PF_av, 6); break; \ | |
186 case 7: rv = PRIMITIVE_FUNCALL_1(PF_fn, PF_av, 7); break; \ | |
187 case 8: rv = PRIMITIVE_FUNCALL_1(PF_fn, PF_av, 8); break; \ | |
188 } \ | |
189 } while (0) | |
190 | |
191 #define FUNCALL_SUBR(rv, subr, av, ac) \ | |
192 PRIMITIVE_FUNCALL (rv, subr_function (subr), av, ac); | |
193 | |
194 | |
195 /* This is the list of current catches (and also condition-cases). | |
853 | 196 This is a stack: the most recent catch is at the head of the list. |
197 The list is threaded through the stack frames of the C functions | |
198 that set up the catches; this is similar to the way the GCPRO list | |
199 is handled, but different from the condition-handler list (which is | |
200 a simple Lisp list) and the specbind stack, which is a contiguous | |
201 array of `struct specbinding's, grown (using realloc()) as | |
202 necessary. (Note that all four of these lists behave as a stacks.) | |
203 | |
3025 | 204 Catches are created by declaring a `struct catchtag' locally, |
853 | 205 filling the .TAG field in with the tag, and doing a setjmp() on |
206 .JMP. Fthrow() will store the value passed to it in .VAL and | |
207 longjmp() back to .JMP, back to the function that established the | |
208 catch. This will always be either internal_catch() (catches | |
209 established internally or through `catch') or condition_case_1 | |
210 (condition-cases established internally or through | |
211 `condition-case'). | |
428 | 212 |
213 The catchtag also records the current position in the | |
214 call stack (stored in BACKTRACE_LIST), the current position | |
215 in the specpdl stack (used for variable bindings and | |
216 unwind-protects), the value of LISP_EVAL_DEPTH, and the | |
217 current position in the GCPRO stack. All of these are | |
218 restored by Fthrow(). | |
853 | 219 */ |
428 | 220 |
221 struct catchtag *catchlist; | |
222 | |
853 | 223 /* A special tag that can be used internally from C code to catch |
224 every attempt to throw past this level. */ | |
225 Lisp_Object Vcatch_everything_tag; | |
226 | |
5506
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
227 Lisp_Object Qautoload, Qmacro, Qexit, Qdeclare; |
428 | 228 Lisp_Object Qinteractive, Qcommandp, Qdefun, Qprogn, Qvalues; |
229 Lisp_Object Vquit_flag, Vinhibit_quit; | |
230 Lisp_Object Qand_rest, Qand_optional; | |
231 Lisp_Object Qdebug_on_error, Qstack_trace_on_error; | |
232 Lisp_Object Qdebug_on_signal, Qstack_trace_on_signal; | |
5615
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
233 Lisp_Object Qdebugger, Qbyte_compile_macro_environment; |
428 | 234 Lisp_Object Qinhibit_quit; |
887 | 235 Lisp_Object Qfinalize_list; |
428 | 236 Lisp_Object Qrun_hooks; |
237 Lisp_Object Qsetq; | |
238 Lisp_Object Qdisplay_warning; | |
239 Lisp_Object Vpending_warnings, Vpending_warnings_tail; | |
240 Lisp_Object Qif; | |
241 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
242 Lisp_Object Qthrow; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
243 Lisp_Object Qobsolete_throw; |
4686
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
244 Lisp_Object Qmultiple_value_list_internal; |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
245 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
246 static int first_desired_multiple_value; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
247 /* Used outside this file, somewhat uncleanly, in the IGNORE_MULTIPLE_VALUES |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
248 macro: */ |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
249 int multiple_value_current_limit; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
250 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
251 Fixnum Vmultiple_values_limit; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
252 |
853 | 253 /* Flags specifying which operations are currently inhibited. */ |
254 int inhibit_flags; | |
255 | |
256 /* Buffers, frames, windows, devices, and consoles created since most | |
257 recent active | |
258 call_trapping_problems (INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION). | |
259 */ | |
260 Lisp_Object Vdeletable_permanent_display_objects; | |
261 | |
262 /* Buffers created since most recent active | |
263 call_trapping_problems (INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION). */ | |
264 Lisp_Object Vmodifiable_buffers; | |
793 | 265 |
266 /* Minimum level at which warnings are logged. Below this, they're ignored | |
267 entirely -- not even generated. */ | |
268 Lisp_Object Vlog_warning_minimum_level; | |
269 | |
428 | 270 /* Non-nil means record all fset's and provide's, to be undone |
271 if the file being autoloaded is not fully loaded. | |
272 They are recorded by being consed onto the front of Vautoload_queue: | |
273 (FUN . ODEF) for a defun, (OFEATURES . nil) for a provide. */ | |
274 Lisp_Object Vautoload_queue; | |
275 | |
5615
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
276 Lisp_Object Vmacro_declaration_function, Vbyte_compile_macro_environment; |
5506
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
277 |
428 | 278 /* Current number of specbindings allocated in specpdl. */ |
279 int specpdl_size; | |
280 | |
281 /* Pointer to beginning of specpdl. */ | |
282 struct specbinding *specpdl; | |
283 | |
284 /* Pointer to first unused element in specpdl. */ | |
285 struct specbinding *specpdl_ptr; | |
286 | |
287 /* specpdl_ptr - specpdl */ | |
288 int specpdl_depth_counter; | |
289 | |
290 /* Maximum size allowed for specpdl allocation */ | |
458 | 291 Fixnum max_specpdl_size; |
428 | 292 |
293 /* Depth in Lisp evaluations and function calls. */ | |
1292 | 294 int lisp_eval_depth; |
428 | 295 |
296 /* Maximum allowed depth in Lisp evaluations and function calls. */ | |
458 | 297 Fixnum max_lisp_eval_depth; |
428 | 298 |
299 /* Nonzero means enter debugger before next function call */ | |
300 static int debug_on_next_call; | |
301 | |
1292 | 302 int backtrace_with_internal_sections; |
303 | |
428 | 304 /* List of conditions (non-nil atom means all) which cause a backtrace |
305 if an error is handled by the command loop's error handler. */ | |
306 Lisp_Object Vstack_trace_on_error; | |
307 | |
308 /* List of conditions (non-nil atom means all) which enter the debugger | |
309 if an error is handled by the command loop's error handler. */ | |
310 Lisp_Object Vdebug_on_error; | |
311 | |
312 /* List of conditions and regexps specifying error messages which | |
313 do not enter the debugger even if Vdebug_on_error says they should. */ | |
314 Lisp_Object Vdebug_ignored_errors; | |
315 | |
316 /* List of conditions (non-nil atom means all) which cause a backtrace | |
317 if any error is signalled. */ | |
318 Lisp_Object Vstack_trace_on_signal; | |
319 | |
320 /* List of conditions (non-nil atom means all) which enter the debugger | |
321 if any error is signalled. */ | |
322 Lisp_Object Vdebug_on_signal; | |
323 | |
324 /* Nonzero means enter debugger if a quit signal | |
325 is handled by the command loop's error handler. | |
326 | |
327 From lisp, this is a boolean variable and may have the values 0 and 1. | |
328 But, eval.c temporarily uses the second bit of this variable to indicate | |
329 that a critical_quit is in progress. The second bit is reset immediately | |
330 after it is processed in signal_call_debugger(). */ | |
331 int debug_on_quit; | |
332 | |
333 #if 0 /* FSFmacs */ | |
334 /* entering_debugger is basically equivalent */ | |
335 /* The value of num_nonmacro_input_chars as of the last time we | |
336 started to enter the debugger. If we decide to enter the debugger | |
337 again when this is still equal to num_nonmacro_input_chars, then we | |
338 know that the debugger itself has an error, and we should just | |
339 signal the error instead of entering an infinite loop of debugger | |
340 invocations. */ | |
341 int when_entered_debugger; | |
342 #endif | |
343 | |
344 /* Nonzero means we are trying to enter the debugger. | |
345 This is to prevent recursive attempts. | |
346 Cleared by the debugger calling Fbacktrace */ | |
347 static int entering_debugger; | |
348 | |
349 /* Function to call to invoke the debugger */ | |
350 Lisp_Object Vdebugger; | |
351 | |
853 | 352 /* List of condition handlers currently in effect. |
353 The elements of this lists were at one point in the past | |
354 threaded through the stack frames of Fcondition_case and | |
355 related functions, but now are stored separately in a normal | |
356 stack. When an error is signaled (by calling Fsignal, below), | |
357 this list is searched for an element that applies. | |
428 | 358 |
359 Each element of this list is one of the following: | |
360 | |
853 | 361 -- A list of a handler function and possibly args to pass to the |
362 function. This is a handler established with the Lisp primitive | |
363 `call-with-condition-handler' or related C function | |
364 call_with_condition_handler(): | |
365 | |
366 If the handler function is an opaque ptr object, it is a handler | |
367 that was established in C using call_with_condition_handler(), | |
368 and the contents of the object are a function pointer which takes | |
369 three arguments, the signal name and signal data (same arguments | |
370 passed to `signal') and a third Lisp_Object argument, specified | |
371 in the call to call_with_condition_handler() and stored as the | |
372 second element of the list containing the handler functionl. | |
373 | |
374 If the handler function is a regular Lisp_Object, it is a handler | |
375 that was established using `call-with-condition-handler'. | |
376 Currently there are no more arguments in the list containing the | |
377 handler function, and only one argument is passed to the handler | |
378 function: a cons of the signal name and signal data arguments | |
379 passed to `signal'. | |
380 | |
381 -- A list whose car is Qunbound and whose cdr is Qt. This is a | |
382 special condition-case handler established by C code with | |
383 condition_case_1(). All errors are trapped; the debugger is not | |
384 invoked even if `debug-on-error' was set. | |
385 | |
386 -- A list whose car is Qunbound and whose cdr is Qerror. This is a | |
387 special condition-case handler established by C code with | |
388 condition_case_1(). It is like Qt except that the debugger is | |
389 invoked normally if it is called for. | |
390 | |
391 -- A list whose car is Qunbound and whose cdr is a list of lists | |
392 (CONDITION-NAME BODY ...) exactly as in `condition-case'. This is | |
393 a normal `condition-case' handler. | |
394 | |
395 Note that in all cases *except* the first, there is a corresponding | |
396 catch, whose TAG is the value of Vcondition_handlers just after the | |
397 handler data just described is pushed onto it. The reason is that | |
398 `condition-case' handlers need to throw back to the place where the | |
399 handler was installed before invoking it, while | |
400 `call-with-condition-handler' handlers are invoked in the | |
401 environment that `signal' was invoked in. */ | |
402 | |
403 | |
428 | 404 static Lisp_Object Vcondition_handlers; |
405 | |
853 | 406 /* I think we should keep this enabled all the time, not just when |
407 error checking is enabled, because if one of these puppies pops up, | |
408 it will trash the stack if not caught, making it that much harder to | |
409 debug. It doesn't cause speed loss. */ | |
442 | 410 #define DEFEND_AGAINST_THROW_RECURSION |
411 | |
412 #ifdef DEFEND_AGAINST_THROW_RECURSION | |
428 | 413 /* Used for error catching purposes by throw_or_bomb_out */ |
414 static int throw_level; | |
442 | 415 #endif |
416 | |
1123 | 417 static int warning_will_be_discarded (Lisp_Object level); |
2532 | 418 static Lisp_Object maybe_get_trapping_problems_backtrace (void); |
1123 | 419 |
428 | 420 |
5084
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
421 |
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
422 /* When parsing keyword arguments; is some element of NARGS |
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
423 :allow-other-keys, and is that element followed by a non-nil Lisp |
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
424 object? */ |
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
425 |
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
426 Boolint |
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
427 non_nil_allow_other_keys_p (Elemcount offset, int nargs, Lisp_Object *args) |
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
428 { |
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
429 Lisp_Object key, value; |
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
430 while (offset + 1 < nargs) |
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
431 { |
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
432 key = args[offset++]; |
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
433 value = args[offset++]; |
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
434 if (EQ (key, Q_allow_other_keys)) |
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
435 { |
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
436 /* The ANSI Common Lisp standard says the first value for a given |
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
437 keyword overrides. */ |
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
438 return !NILP (value); |
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
439 } |
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
440 } |
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
441 return 0; |
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
442 } |
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
443 |
428 | 444 /************************************************************************/ |
445 /* The subr object type */ | |
446 /************************************************************************/ | |
447 | |
448 static void | |
2286 | 449 print_subr (Lisp_Object obj, Lisp_Object printcharfun, int UNUSED (escapeflag)) |
428 | 450 { |
451 Lisp_Subr *subr = XSUBR (obj); | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
452 const Ascbyte *header = |
4905
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4846
diff
changeset
|
453 (subr->max_args == UNEVALLED) ? "#<special-operator " : "#<subr "; |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
454 const Ascbyte *name = subr_name (subr); |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
455 const Ascbyte *trailer = subr->prompt ? " (interactive)>" : ">"; |
428 | 456 |
457 if (print_readably) | |
5142
f965e31a35f0
reduce lcrecord headers to 2 words, rename printing_unreadable_object
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
458 printing_unreadable_object_fmt ("%s%s%s", header, name, trailer); |
428 | 459 |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
460 write_ascstring (printcharfun, header); |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
461 write_ascstring (printcharfun, name); |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
462 write_ascstring (printcharfun, trailer); |
428 | 463 } |
464 | |
1204 | 465 static const struct memory_description subr_description[] = { |
2551 | 466 { XD_DOC_STRING, offsetof (Lisp_Subr, doc), 0, { 0 }, XD_FLAG_NO_KKCC }, |
428 | 467 { XD_END } |
468 }; | |
469 | |
5118
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
470 DEFINE_DUMPABLE_FROB_BLOCK_LISP_OBJECT ("subr", subr, |
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
471 0, print_subr, 0, 0, 0, |
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
472 subr_description, |
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
473 Lisp_Subr); |
428 | 474 |
475 /************************************************************************/ | |
476 /* Entering the debugger */ | |
477 /************************************************************************/ | |
478 | |
853 | 479 static Lisp_Object |
480 current_warning_level (void) | |
481 { | |
482 if (inhibit_flags & ISSUE_WARNINGS_AT_DEBUG_LEVEL) | |
483 return Qdebug; | |
484 else | |
485 return Qwarning; | |
486 } | |
487 | |
428 | 488 /* Actually call the debugger. ARG is a list of args that will be |
489 passed to the debugger function, as follows; | |
490 | |
491 If due to frame exit, args are `exit' and the value being returned; | |
492 this function's value will be returned instead of that. | |
493 If due to error, args are `error' and a list of the args to `signal'. | |
494 If due to `apply' or `funcall' entry, one arg, `lambda'. | |
495 If due to `eval' entry, one arg, t. | |
496 | |
497 */ | |
498 | |
499 static Lisp_Object | |
500 call_debugger_259 (Lisp_Object arg) | |
501 { | |
502 return apply1 (Vdebugger, arg); | |
503 } | |
504 | |
505 /* Call the debugger, doing some encapsulation. We make sure we have | |
506 some room on the eval and specpdl stacks, and bind entering_debugger | |
507 to 1 during this call. This is used to trap errors that may occur | |
508 when entering the debugger (e.g. the value of `debugger' is invalid), | |
509 so that the debugger will not be recursively entered if debug-on-error | |
510 is set. (Otherwise, XEmacs would infinitely recurse, attempting to | |
511 enter the debugger.) entering_debugger gets reset to 0 as soon | |
512 as a backtrace is displayed, so that further errors can indeed be | |
513 handled normally. | |
514 | |
3025 | 515 We also establish a catch for `debugger'. If the debugger function |
428 | 516 throws to this instead of returning a value, it means that the user |
517 pressed 'c' (pretend like the debugger was never entered). The | |
518 function then returns Qunbound. (If the user pressed 'r', for | |
519 return a value, then the debugger function returns normally with | |
520 this value.) | |
521 | |
522 The difference between 'c' and 'r' is as follows: | |
523 | |
524 debug-on-call: | |
525 No difference. The call proceeds as normal. | |
526 debug-on-exit: | |
527 With 'r', the specified value is returned as the function's | |
528 return value. With 'c', the value that would normally be | |
529 returned is returned. | |
530 signal: | |
531 With 'r', the specified value is returned as the return | |
532 value of `signal'. (This is the only time that `signal' | |
533 can return, instead of making a non-local exit.) With `c', | |
534 `signal' will continue looking for handlers as if the | |
535 debugger was never entered, and will probably end up | |
536 throwing to a handler or to top-level. | |
537 */ | |
538 | |
539 static Lisp_Object | |
540 call_debugger (Lisp_Object arg) | |
541 { | |
542 int threw; | |
543 Lisp_Object val; | |
544 int speccount; | |
545 | |
853 | 546 debug_on_next_call = 0; |
547 | |
548 if (inhibit_flags & INHIBIT_ENTERING_DEBUGGER) | |
549 { | |
550 if (!(inhibit_flags & INHIBIT_WARNING_ISSUE)) | |
551 warn_when_safe | |
552 (Qdebugger, current_warning_level (), | |
553 "Unable to enter debugger within critical section"); | |
554 return Qunbound; | |
555 } | |
556 | |
428 | 557 if (lisp_eval_depth + 20 > max_lisp_eval_depth) |
558 max_lisp_eval_depth = lisp_eval_depth + 20; | |
559 if (specpdl_size + 40 > max_specpdl_size) | |
560 max_specpdl_size = specpdl_size + 40; | |
853 | 561 |
562 speccount = internal_bind_int (&entering_debugger, 1); | |
2532 | 563 val = internal_catch (Qdebugger, call_debugger_259, arg, &threw, 0, 0); |
428 | 564 |
771 | 565 return unbind_to_1 (speccount, ((threw) |
428 | 566 ? Qunbound /* Not returning a value */ |
567 : val)); | |
568 } | |
569 | |
570 /* Called when debug-on-exit behavior is called for. Enter the debugger | |
571 with the appropriate args for this. VAL is the exit value that is | |
572 about to be returned. */ | |
573 | |
574 static Lisp_Object | |
575 do_debug_on_exit (Lisp_Object val) | |
576 { | |
577 /* This is falsified by call_debugger */ | |
578 Lisp_Object v = call_debugger (list2 (Qexit, val)); | |
579 | |
580 return !UNBOUNDP (v) ? v : val; | |
581 } | |
582 | |
583 /* Called when debug-on-call behavior is called for. Enter the debugger | |
584 with the appropriate args for this. VAL is either t for a call | |
3025 | 585 through `eval' or `lambda' for a call through `funcall'. |
428 | 586 |
587 #### The differentiation here between EVAL and FUNCALL is bogus. | |
588 FUNCALL can be defined as | |
589 | |
590 (defmacro func (fun &rest args) | |
591 (cons (eval fun) args)) | |
592 | |
593 and should be treated as such. | |
594 */ | |
595 | |
596 static void | |
597 do_debug_on_call (Lisp_Object code) | |
598 { | |
599 debug_on_next_call = 0; | |
600 backtrace_list->debug_on_exit = 1; | |
601 call_debugger (list1 (code)); | |
602 } | |
603 | |
604 /* LIST is the value of one of the variables `debug-on-error', | |
605 `debug-on-signal', `stack-trace-on-error', or `stack-trace-on-signal', | |
606 and CONDITIONS is the list of error conditions associated with | |
607 the error being signalled. This returns non-nil if LIST | |
608 matches CONDITIONS. (A nil value for LIST does not match | |
609 CONDITIONS. A non-list value for LIST does match CONDITIONS. | |
610 A list matches CONDITIONS when one of the symbols in LIST is the | |
611 same as one of the symbols in CONDITIONS.) */ | |
612 | |
613 static int | |
614 wants_debugger (Lisp_Object list, Lisp_Object conditions) | |
615 { | |
616 if (NILP (list)) | |
617 return 0; | |
618 if (! CONSP (list)) | |
619 return 1; | |
620 | |
621 while (CONSP (conditions)) | |
622 { | |
2552 | 623 Lisp_Object curr, tail; |
624 curr = XCAR (conditions); | |
428 | 625 for (tail = list; CONSP (tail); tail = XCDR (tail)) |
2552 | 626 if (EQ (XCAR (tail), curr)) |
428 | 627 return 1; |
628 conditions = XCDR (conditions); | |
629 } | |
630 return 0; | |
631 } | |
632 | |
633 | |
634 /* Return 1 if an error with condition-symbols CONDITIONS, | |
635 and described by SIGNAL-DATA, should skip the debugger | |
4624
9dd42cb187ed
Fix typo in comment on skip_debugger.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4535
diff
changeset
|
636 according to debug-ignored-errors. */ |
428 | 637 |
638 static int | |
639 skip_debugger (Lisp_Object conditions, Lisp_Object data) | |
640 { | |
641 /* This function can GC */ | |
642 Lisp_Object tail; | |
643 int first_string = 1; | |
644 Lisp_Object error_message = Qnil; | |
645 | |
646 for (tail = Vdebug_ignored_errors; CONSP (tail); tail = XCDR (tail)) | |
647 { | |
648 if (STRINGP (XCAR (tail))) | |
649 { | |
650 if (first_string) | |
651 { | |
652 error_message = Ferror_message_string (data); | |
653 first_string = 0; | |
654 } | |
655 if (fast_lisp_string_match (XCAR (tail), error_message) >= 0) | |
656 return 1; | |
657 } | |
658 else | |
659 { | |
660 Lisp_Object contail; | |
661 | |
662 for (contail = conditions; CONSP (contail); contail = XCDR (contail)) | |
663 if (EQ (XCAR (tail), XCAR (contail))) | |
664 return 1; | |
665 } | |
666 } | |
667 | |
668 return 0; | |
669 } | |
670 | |
671 /* Actually generate a backtrace on STREAM. */ | |
672 | |
673 static Lisp_Object | |
674 backtrace_259 (Lisp_Object stream) | |
675 { | |
676 return Fbacktrace (stream, Qt); | |
677 } | |
678 | |
1130 | 679 #ifdef DEBUG_XEMACS |
680 | |
681 static void | |
682 trace_out_and_die (Lisp_Object err) | |
683 { | |
684 Fdisplay_error (err, Qt); | |
685 backtrace_259 (Qnil); | |
686 stderr_out ("XEmacs exiting to debugger.\n"); | |
687 Fforce_debugging_signal (Qt); | |
688 /* Unlikely to be reached */ | |
689 } | |
690 | |
691 #endif | |
692 | |
428 | 693 /* An error was signaled. Maybe call the debugger, if the `debug-on-error' |
694 etc. variables call for this. CONDITIONS is the list of conditions | |
695 associated with the error being signalled. SIG is the actual error | |
696 being signalled, and DATA is the associated data (these are exactly | |
697 the same as the arguments to `signal'). ACTIVE_HANDLERS is the | |
698 list of error handlers that are to be put in place while the debugger | |
699 is called. This is generally the remaining handlers that are | |
700 outside of the innermost handler trapping this error. This way, | |
701 if the same error occurs inside of the debugger, you usually don't get | |
702 the debugger entered recursively. | |
703 | |
704 This function returns Qunbound if it didn't call the debugger or if | |
705 the user asked (through 'c') that XEmacs should pretend like the | |
706 debugger was never entered. Otherwise, it returns the value | |
707 that the user specified with `r'. (Note that much of the time, | |
708 the user will abort with C-], and we will never have a chance to | |
709 return anything at all.) | |
710 | |
711 SIGNAL_VARS_ONLY means we should only look at debug-on-signal | |
712 and stack-trace-on-signal to control whether we do anything. | |
713 This is so that debug-on-error doesn't make handled errors | |
714 cause the debugger to get invoked. | |
715 | |
716 STACK_TRACE_DISPLAYED and DEBUGGER_ENTERED are used so that | |
717 those functions aren't done more than once in a single `signal' | |
718 session. */ | |
719 | |
720 static Lisp_Object | |
721 signal_call_debugger (Lisp_Object conditions, | |
722 Lisp_Object sig, Lisp_Object data, | |
723 Lisp_Object active_handlers, | |
724 int signal_vars_only, | |
725 int *stack_trace_displayed, | |
726 int *debugger_entered) | |
727 { | |
853 | 728 #ifdef PIGS_FLY_AND_ALL_C_CODE_CAN_HANDLE_GC_OCCURRING_ALMOST_ANYWHERE |
428 | 729 /* This function can GC */ |
853 | 730 #else /* reality check */ |
731 /* This function cannot GC because it inhibits GC during its operation */ | |
732 #endif | |
733 | |
428 | 734 Lisp_Object val = Qunbound; |
735 Lisp_Object all_handlers = Vcondition_handlers; | |
736 Lisp_Object temp_data = Qnil; | |
853 | 737 int outer_speccount = specpdl_depth(); |
738 int speccount; | |
739 | |
740 #ifdef PIGS_FLY_AND_ALL_C_CODE_CAN_HANDLE_GC_OCCURRING_ALMOST_ANYWHERE | |
428 | 741 struct gcpro gcpro1, gcpro2; |
742 GCPRO2 (all_handlers, temp_data); | |
853 | 743 #else |
744 begin_gc_forbidden (); | |
745 #endif | |
746 | |
747 speccount = specpdl_depth(); | |
428 | 748 |
749 Vcondition_handlers = active_handlers; | |
750 | |
751 temp_data = Fcons (sig, data); /* needed for skip_debugger */ | |
752 | |
753 if (!entering_debugger && !*stack_trace_displayed && !signal_vars_only | |
754 && wants_debugger (Vstack_trace_on_error, conditions) | |
755 && !skip_debugger (conditions, temp_data)) | |
756 { | |
757 specbind (Qdebug_on_error, Qnil); | |
758 specbind (Qstack_trace_on_error, Qnil); | |
759 specbind (Qdebug_on_signal, Qnil); | |
760 specbind (Qstack_trace_on_signal, Qnil); | |
761 | |
442 | 762 if (!noninteractive) |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
763 internal_with_output_to_temp_buffer (build_ascstring ("*Backtrace*"), |
442 | 764 backtrace_259, |
765 Qnil, | |
766 Qnil); | |
767 else /* in batch mode, we want this going to stderr. */ | |
768 backtrace_259 (Qnil); | |
771 | 769 unbind_to (speccount); |
428 | 770 *stack_trace_displayed = 1; |
771 } | |
772 | |
773 if (!entering_debugger && !*debugger_entered && !signal_vars_only | |
774 && (EQ (sig, Qquit) | |
775 ? debug_on_quit | |
776 : wants_debugger (Vdebug_on_error, conditions)) | |
777 && !skip_debugger (conditions, temp_data)) | |
778 { | |
779 debug_on_quit &= ~2; /* reset critical bit */ | |
1123 | 780 |
428 | 781 specbind (Qdebug_on_error, Qnil); |
782 specbind (Qstack_trace_on_error, Qnil); | |
783 specbind (Qdebug_on_signal, Qnil); | |
784 specbind (Qstack_trace_on_signal, Qnil); | |
785 | |
1130 | 786 #ifdef DEBUG_XEMACS |
787 if (noninteractive) | |
788 trace_out_and_die (Fcons (sig, data)); | |
789 #endif | |
790 | |
428 | 791 val = call_debugger (list2 (Qerror, (Fcons (sig, data)))); |
853 | 792 unbind_to (speccount); |
428 | 793 *debugger_entered = 1; |
794 } | |
795 | |
796 if (!entering_debugger && !*stack_trace_displayed | |
797 && wants_debugger (Vstack_trace_on_signal, conditions)) | |
798 { | |
799 specbind (Qdebug_on_error, Qnil); | |
800 specbind (Qstack_trace_on_error, Qnil); | |
801 specbind (Qdebug_on_signal, Qnil); | |
802 specbind (Qstack_trace_on_signal, Qnil); | |
803 | |
442 | 804 if (!noninteractive) |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
805 internal_with_output_to_temp_buffer (build_ascstring ("*Backtrace*"), |
442 | 806 backtrace_259, |
807 Qnil, | |
808 Qnil); | |
809 else /* in batch mode, we want this going to stderr. */ | |
810 backtrace_259 (Qnil); | |
771 | 811 unbind_to (speccount); |
428 | 812 *stack_trace_displayed = 1; |
813 } | |
814 | |
815 if (!entering_debugger && !*debugger_entered | |
816 && (EQ (sig, Qquit) | |
817 ? debug_on_quit | |
818 : wants_debugger (Vdebug_on_signal, conditions))) | |
819 { | |
820 debug_on_quit &= ~2; /* reset critical bit */ | |
1123 | 821 |
428 | 822 specbind (Qdebug_on_error, Qnil); |
823 specbind (Qstack_trace_on_error, Qnil); | |
824 specbind (Qdebug_on_signal, Qnil); | |
825 specbind (Qstack_trace_on_signal, Qnil); | |
826 | |
1130 | 827 #ifdef DEBUG_XEMACS |
828 if (noninteractive) | |
829 trace_out_and_die (Fcons (sig, data)); | |
830 #endif | |
831 | |
428 | 832 val = call_debugger (list2 (Qerror, (Fcons (sig, data)))); |
833 *debugger_entered = 1; | |
834 } | |
835 | |
853 | 836 #ifdef PIGS_FLY_AND_ALL_C_CODE_CAN_HANDLE_GC_OCCURRING_ALMOST_ANYWHERE |
428 | 837 UNGCPRO; |
853 | 838 #endif |
428 | 839 Vcondition_handlers = all_handlers; |
853 | 840 return unbind_to_1 (outer_speccount, val); |
428 | 841 } |
842 | |
843 | |
844 /************************************************************************/ | |
845 /* The basic special forms */ | |
846 /************************************************************************/ | |
847 | |
4905
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4846
diff
changeset
|
848 /* Except for Fprogn(), the basic special operators below are only called |
428 | 849 from interpreted code. The byte compiler turns them into bytecodes. */ |
850 | |
851 DEFUN ("or", For, 0, UNEVALLED, 0, /* | |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
852 Eval ARGS until one of them yields non-nil, then return that value. |
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
853 The remaining ARGS are not evalled at all. |
428 | 854 If all args return nil, return nil. |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
855 |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
856 Any multiple values from the last form, and only from the last form, are |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
857 passed back. See `values' and `multiple-value-bind'. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
858 |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
859 arguments: (&rest ARGS) |
428 | 860 */ |
861 (args)) | |
862 { | |
863 /* This function can GC */ | |
4686
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
864 Lisp_Object val = Qnil; |
428 | 865 |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
866 LIST_LOOP_3 (arg, args, tail) |
428 | 867 { |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
868 if (!NILP (IGNORE_MULTIPLE_VALUES (val = Feval (arg)))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
869 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
870 if (NILP (XCDR (tail))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
871 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
872 /* Pass back multiple values if this is the last one: */ |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
873 return val; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
874 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
875 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
876 return IGNORE_MULTIPLE_VALUES (val); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
877 } |
428 | 878 } |
879 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
880 return val; |
428 | 881 } |
882 | |
883 DEFUN ("and", Fand, 0, UNEVALLED, 0, /* | |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
884 Eval ARGS until one of them yields nil, then return nil. |
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
885 The remaining ARGS are not evalled at all. |
428 | 886 If no arg yields nil, return the last arg's value. |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
887 |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
888 Any multiple values from the last form, and only from the last form, are |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
889 passed back. See `values' and `multiple-value-bind'. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
890 |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
891 arguments: (&rest ARGS) |
428 | 892 */ |
893 (args)) | |
894 { | |
895 /* This function can GC */ | |
4686
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
896 Lisp_Object val = Qt; |
428 | 897 |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
898 LIST_LOOP_3 (arg, args, tail) |
428 | 899 { |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
900 if (NILP (IGNORE_MULTIPLE_VALUES (val = Feval (arg)))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
901 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
902 if (NILP (XCDR (tail))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
903 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
904 /* Pass back any multiple values for the last form: */ |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
905 return val; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
906 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
907 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
908 return Qnil; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
909 } |
428 | 910 } |
911 | |
912 return val; | |
913 } | |
914 | |
915 DEFUN ("if", Fif, 2, UNEVALLED, 0, /* | |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
916 If COND yields non-nil, do THEN, else do ELSE. |
428 | 917 Returns the value of THEN or the value of the last of the ELSE's. |
918 THEN must be one expression, but ELSE... can be zero or more expressions. | |
919 If COND yields nil, and there are no ELSE's, the value is nil. | |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
920 |
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
921 arguments: (COND THEN &rest ELSE) |
428 | 922 */ |
923 (args)) | |
924 { | |
925 /* This function can GC */ | |
926 Lisp_Object condition = XCAR (args); | |
927 Lisp_Object then_form = XCAR (XCDR (args)); | |
928 Lisp_Object else_forms = XCDR (XCDR (args)); | |
929 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
930 if (!NILP (IGNORE_MULTIPLE_VALUES (Feval (condition)))) |
428 | 931 return Feval (then_form); |
932 else | |
933 return Fprogn (else_forms); | |
934 } | |
935 | |
936 /* Macros `when' and `unless' are trivially defined in Lisp, | |
937 but it helps for bootstrapping to have them ALWAYS defined. */ | |
938 | |
939 DEFUN ("when", Fwhen, 1, MANY, 0, /* | |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
940 If COND yields non-nil, do BODY, else return nil. |
428 | 941 BODY can be zero or more expressions. If BODY is nil, return nil. |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
942 |
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
943 arguments: (COND &rest BODY) |
428 | 944 */ |
945 (int nargs, Lisp_Object *args)) | |
946 { | |
947 Lisp_Object cond = args[0]; | |
948 Lisp_Object body; | |
853 | 949 |
428 | 950 switch (nargs) |
951 { | |
952 case 1: body = Qnil; break; | |
953 case 2: body = args[1]; break; | |
954 default: body = Fcons (Qprogn, Flist (nargs-1, args+1)); break; | |
955 } | |
956 | |
957 return list3 (Qif, cond, body); | |
958 } | |
959 | |
960 DEFUN ("unless", Funless, 1, MANY, 0, /* | |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
961 If COND yields nil, do BODY, else return nil. |
428 | 962 BODY can be zero or more expressions. If BODY is nil, return nil. |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
963 |
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
964 arguments: (COND &rest BODY) |
428 | 965 */ |
966 (int nargs, Lisp_Object *args)) | |
967 { | |
968 Lisp_Object cond = args[0]; | |
969 Lisp_Object body = Flist (nargs-1, args+1); | |
970 return Fcons (Qif, Fcons (cond, Fcons (Qnil, body))); | |
971 } | |
972 | |
973 DEFUN ("cond", Fcond, 0, UNEVALLED, 0, /* | |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
974 Try each clause until one succeeds. |
428 | 975 Each clause looks like (CONDITION BODY...). CONDITION is evaluated |
976 and, if the value is non-nil, this clause succeeds: | |
977 then the expressions in BODY are evaluated and the last one's | |
978 value is the value of the cond-form. | |
979 If no clause succeeds, cond returns nil. | |
980 If a clause has one element, as in (CONDITION), | |
981 CONDITION's value if non-nil is returned from the cond-form. | |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
982 |
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
983 arguments: (&rest CLAUSES) |
428 | 984 */ |
985 (args)) | |
986 { | |
987 /* This function can GC */ | |
442 | 988 REGISTER Lisp_Object val; |
428 | 989 |
990 LIST_LOOP_2 (clause, args) | |
991 { | |
992 CHECK_CONS (clause); | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
993 if (!NILP (val = IGNORE_MULTIPLE_VALUES (Feval (XCAR (clause))))) |
428 | 994 { |
995 if (!NILP (clause = XCDR (clause))) | |
996 { | |
997 CHECK_TRUE_LIST (clause); | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
998 /* Pass back any multiple values here: */ |
428 | 999 val = Fprogn (clause); |
1000 } | |
1001 return val; | |
1002 } | |
1003 } | |
1004 | |
1005 return Qnil; | |
1006 } | |
1007 | |
1008 DEFUN ("progn", Fprogn, 0, UNEVALLED, 0, /* | |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1009 Eval BODY forms sequentially and return value of last one. |
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1010 |
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1011 arguments: (&rest BODY) |
428 | 1012 */ |
1013 (args)) | |
1014 { | |
1015 /* This function can GC */ | |
1016 /* Caller must provide a true list in ARGS */ | |
442 | 1017 REGISTER Lisp_Object val = Qnil; |
428 | 1018 struct gcpro gcpro1; |
1019 | |
1020 GCPRO1 (args); | |
1021 | |
1022 { | |
1023 LIST_LOOP_2 (form, args) | |
1024 val = Feval (form); | |
1025 } | |
1026 | |
1027 UNGCPRO; | |
1028 return val; | |
1029 } | |
1030 | |
1031 /* Fprog1() is the canonical example of a function that must GCPRO a | |
1032 Lisp_Object across calls to Feval(). */ | |
1033 | |
1034 DEFUN ("prog1", Fprog1, 1, UNEVALLED, 0, /* | |
1035 Similar to `progn', but the value of the first form is returned. | |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1036 |
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1037 All the arguments are evaluated sequentially. The value of FIRST is saved |
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1038 during evaluation of the remaining args, whose values are discarded. |
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1039 |
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1040 arguments: (FIRST &rest BODY) |
428 | 1041 */ |
1042 (args)) | |
1043 { | |
1849 | 1044 Lisp_Object val; |
428 | 1045 struct gcpro gcpro1; |
1046 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1047 val = IGNORE_MULTIPLE_VALUES (Feval (Fcar (args))); |
428 | 1048 |
1049 GCPRO1 (val); | |
1050 | |
1051 { | |
1052 LIST_LOOP_2 (form, XCDR (args)) | |
1053 Feval (form); | |
1054 } | |
1055 | |
1056 UNGCPRO; | |
1057 return val; | |
1058 } | |
1059 | |
1060 DEFUN ("prog2", Fprog2, 2, UNEVALLED, 0, /* | |
1061 Similar to `progn', but the value of the second form is returned. | |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1062 |
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1063 All the arguments are evaluated sequentially. The value of SECOND is saved |
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1064 during evaluation of the remaining args, whose values are discarded. |
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1065 |
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1066 arguments: (FIRST SECOND &rest BODY) |
428 | 1067 */ |
1068 (args)) | |
1069 { | |
1070 /* This function can GC */ | |
1849 | 1071 Lisp_Object val; |
428 | 1072 struct gcpro gcpro1; |
1073 | |
1074 Feval (XCAR (args)); | |
1075 args = XCDR (args); | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1076 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1077 val = IGNORE_MULTIPLE_VALUES (Feval (XCAR (args))); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1078 |
428 | 1079 args = XCDR (args); |
1080 | |
1081 GCPRO1 (val); | |
1082 | |
442 | 1083 { |
1084 LIST_LOOP_2 (form, args) | |
1085 Feval (form); | |
1086 } | |
428 | 1087 |
1088 UNGCPRO; | |
1089 return val; | |
1090 } | |
1091 | |
1092 DEFUN ("let*", FletX, 1, UNEVALLED, 0, /* | |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1093 Bind variables according to VARLIST then eval BODY. |
428 | 1094 The value of the last form in BODY is returned. |
1095 Each element of VARLIST is a symbol (which is bound to nil) | |
1096 or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM). | |
1097 Each VALUEFORM can refer to the symbols already bound by this VARLIST. | |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1098 |
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1099 arguments: (VARLIST &rest BODY) |
428 | 1100 */ |
1101 (args)) | |
1102 { | |
1103 /* This function can GC */ | |
1104 Lisp_Object varlist = XCAR (args); | |
1105 Lisp_Object body = XCDR (args); | |
1106 int speccount = specpdl_depth(); | |
1107 | |
1108 EXTERNAL_LIST_LOOP_3 (var, varlist, tail) | |
1109 { | |
1110 Lisp_Object symbol, value, tem; | |
1111 if (SYMBOLP (var)) | |
1112 symbol = var, value = Qnil; | |
1113 else | |
1114 { | |
1115 CHECK_CONS (var); | |
1116 symbol = XCAR (var); | |
1117 tem = XCDR (var); | |
1118 if (NILP (tem)) | |
1119 value = Qnil; | |
1120 else | |
1121 { | |
1122 CHECK_CONS (tem); | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1123 value = IGNORE_MULTIPLE_VALUES (Feval (XCAR (tem))); |
428 | 1124 if (!NILP (XCDR (tem))) |
563 | 1125 sferror |
428 | 1126 ("`let' bindings can have only one value-form", var); |
1127 } | |
1128 } | |
1129 specbind (symbol, value); | |
1130 } | |
771 | 1131 return unbind_to_1 (speccount, Fprogn (body)); |
428 | 1132 } |
1133 | |
1134 DEFUN ("let", Flet, 1, UNEVALLED, 0, /* | |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1135 Bind variables according to VARLIST then eval BODY. |
428 | 1136 The value of the last form in BODY is returned. |
1137 Each element of VARLIST is a symbol (which is bound to nil) | |
1138 or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM). | |
1139 All the VALUEFORMs are evalled before any symbols are bound. | |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1140 |
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1141 arguments: (VARLIST &rest BODY) |
428 | 1142 */ |
1143 (args)) | |
1144 { | |
1145 /* This function can GC */ | |
1146 Lisp_Object varlist = XCAR (args); | |
1147 Lisp_Object body = XCDR (args); | |
1148 int speccount = specpdl_depth(); | |
1149 Lisp_Object *temps; | |
1150 int idx; | |
1151 struct gcpro gcpro1; | |
1152 | |
1153 /* Make space to hold the values to give the bound variables. */ | |
1154 { | |
1155 int varcount; | |
1156 GET_EXTERNAL_LIST_LENGTH (varlist, varcount); | |
1157 temps = alloca_array (Lisp_Object, varcount); | |
1158 } | |
1159 | |
1160 /* Compute the values and store them in `temps' */ | |
1161 GCPRO1 (*temps); | |
1162 gcpro1.nvars = 0; | |
1163 | |
1164 idx = 0; | |
442 | 1165 { |
1166 LIST_LOOP_2 (var, varlist) | |
1167 { | |
1168 Lisp_Object *value = &temps[idx++]; | |
1169 if (SYMBOLP (var)) | |
1170 *value = Qnil; | |
1171 else | |
1172 { | |
1173 Lisp_Object tem; | |
1174 CHECK_CONS (var); | |
1175 tem = XCDR (var); | |
1176 if (NILP (tem)) | |
1177 *value = Qnil; | |
1178 else | |
1179 { | |
1180 CHECK_CONS (tem); | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1181 *value = IGNORE_MULTIPLE_VALUES (Feval (XCAR (tem))); |
442 | 1182 gcpro1.nvars = idx; |
1183 | |
1184 if (!NILP (XCDR (tem))) | |
563 | 1185 sferror |
442 | 1186 ("`let' bindings can have only one value-form", var); |
1187 } | |
1188 } | |
1189 } | |
1190 } | |
428 | 1191 |
1192 idx = 0; | |
442 | 1193 { |
1194 LIST_LOOP_2 (var, varlist) | |
1195 { | |
1196 specbind (SYMBOLP (var) ? var : XCAR (var), temps[idx++]); | |
1197 } | |
1198 } | |
428 | 1199 |
1200 UNGCPRO; | |
1201 | |
771 | 1202 return unbind_to_1 (speccount, Fprogn (body)); |
428 | 1203 } |
1204 | |
1205 DEFUN ("while", Fwhile, 1, UNEVALLED, 0, /* | |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1206 If TEST yields non-nil, eval BODY... and repeat. |
428 | 1207 The order of execution is thus TEST, BODY, TEST, BODY and so on |
1208 until TEST returns nil. | |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1209 |
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1210 arguments: (TEST &rest BODY) |
428 | 1211 */ |
1212 (args)) | |
1213 { | |
1214 /* This function can GC */ | |
1215 Lisp_Object test = XCAR (args); | |
1216 Lisp_Object body = XCDR (args); | |
1217 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1218 while (!NILP (IGNORE_MULTIPLE_VALUES (Feval (test)))) |
428 | 1219 { |
1220 QUIT; | |
1221 Fprogn (body); | |
1222 } | |
1223 | |
1224 return Qnil; | |
1225 } | |
1226 | |
1227 DEFUN ("setq", Fsetq, 0, UNEVALLED, 0, /* | |
1228 \(setq SYM VAL SYM VAL ...): set each SYM to the value of its VAL. | |
1229 The symbols SYM are variables; they are literal (not evaluated). | |
1230 The values VAL are expressions; they are evaluated. | |
1231 Thus, (setq x (1+ y)) sets `x' to the value of `(1+ y)'. | |
1232 The second VAL is not computed until after the first SYM is set, and so on; | |
1233 each VAL can use the new value of variables set earlier in the `setq'. | |
1234 The return value of the `setq' form is the value of the last VAL. | |
1235 */ | |
1236 (args)) | |
1237 { | |
1238 /* This function can GC */ | |
1239 int nargs; | |
2421 | 1240 Lisp_Object retval = Qnil; |
428 | 1241 |
1242 GET_LIST_LENGTH (args, nargs); | |
1243 | |
1244 if (nargs & 1) /* Odd number of arguments? */ | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
1245 Fsignal (Qwrong_number_of_arguments, list2 (Qsetq, make_fixnum (nargs))); |
428 | 1246 |
2421 | 1247 GC_PROPERTY_LIST_LOOP_3 (symbol, val, args) |
428 | 1248 { |
1249 val = Feval (val); | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1250 val = IGNORE_MULTIPLE_VALUES (val); |
428 | 1251 Fset (symbol, val); |
2421 | 1252 retval = val; |
428 | 1253 } |
1254 | |
2421 | 1255 END_GC_PROPERTY_LIST_LOOP (symbol); |
1256 | |
1257 return retval; | |
428 | 1258 } |
1259 | |
1260 DEFUN ("quote", Fquote, 1, UNEVALLED, 0, /* | |
1261 Return the argument, without evaluating it. `(quote x)' yields `x'. | |
3794 | 1262 |
3842 | 1263 `quote' differs from `function' in that it is a hint that an expression is |
1264 data, not a function. In particular, under some circumstances the byte | |
1265 compiler will compile an expression quoted with `function', but it will | |
1266 never do so for an expression quoted with `quote'. These issues are most | |
1267 important for lambda expressions (see `lambda'). | |
1268 | |
1269 There is an alternative, more readable, reader syntax for `quote': a Lisp | |
1270 object preceded by `''. Thus, `'x' is equivalent to `(quote x)', in all | |
1271 contexts. A print function may use either. Internally the expression is | |
1272 represented as `(quote x)'). | |
5265
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5222
diff
changeset
|
1273 |
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5222
diff
changeset
|
1274 arguments: (OBJECT) |
428 | 1275 */ |
1276 (args)) | |
1277 { | |
5207
1096ef427b56
Error on too many arguments to #'function, #'quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5146
diff
changeset
|
1278 int nargs; |
1096ef427b56
Error on too many arguments to #'function, #'quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5146
diff
changeset
|
1279 |
1096ef427b56
Error on too many arguments to #'function, #'quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5146
diff
changeset
|
1280 GET_LIST_LENGTH (args, nargs); |
1096ef427b56
Error on too many arguments to #'function, #'quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5146
diff
changeset
|
1281 if (nargs != 1) |
1096ef427b56
Error on too many arguments to #'function, #'quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5146
diff
changeset
|
1282 { |
1096ef427b56
Error on too many arguments to #'function, #'quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5146
diff
changeset
|
1283 Fsignal (Qwrong_number_of_arguments, |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
1284 list2 (Qquote, make_fixnum (nargs))); |
5207
1096ef427b56
Error on too many arguments to #'function, #'quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5146
diff
changeset
|
1285 } |
1096ef427b56
Error on too many arguments to #'function, #'quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5146
diff
changeset
|
1286 |
428 | 1287 return XCAR (args); |
1288 } | |
1289 | |
4744
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1290 /* Originally, this was just a function -- but `custom' used a garden- |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1291 variety version, so why not make it a subr? */ |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1292 DEFUN ("quote-maybe", Fquote_maybe, 1, 1, 0, /* |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1293 Quote EXPR if it is not self quoting. |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1294 |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1295 In contrast with `quote', this is a function, not a special form; its |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1296 argument is evaluated before `quote-maybe' is called. It returns either |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1297 EXPR (if it is self-quoting) or a list `(quote EXPR)' if it is not |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1298 self-quoting. Lists starting with the symbol `lambda' are regarded as |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1299 self-quoting. |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1300 */ |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1301 (expr)) |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1302 { |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1303 if ((XTYPE (expr)) == Lisp_Type_Record) |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1304 { |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1305 switch (XRECORD_LHEADER (expr)->type) |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1306 { |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1307 case lrecord_type_symbol: |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1308 if (NILP (expr) || (EQ (expr, Qt)) || SYMBOL_IS_KEYWORD (expr)) |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1309 { |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1310 return expr; |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1311 } |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1312 break; |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1313 case lrecord_type_cons: |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1314 if (EQ (XCAR (expr), Qlambda)) |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1315 { |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1316 return expr; |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1317 } |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1318 break; |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1319 |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1320 case lrecord_type_vector: |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1321 case lrecord_type_string: |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1322 case lrecord_type_compiled_function: |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1323 case lrecord_type_bit_vector: |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1324 case lrecord_type_float: |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1325 case lrecord_type_hash_table: |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1326 case lrecord_type_char_table: |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1327 case lrecord_type_range_table: |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1328 case lrecord_type_bignum: |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1329 case lrecord_type_ratio: |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1330 case lrecord_type_bigfloat: |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1331 return expr; |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1332 } |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1333 return list2 (Qquote, expr); |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1334 } |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1335 |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1336 /* Fixnums and characters are self-quoting: */ |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1337 return expr; |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1338 } |
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
1339 |
428 | 1340 DEFUN ("function", Ffunction, 1, UNEVALLED, 0, /* |
3842 | 1341 Return the argument, without evaluating it. `(function x)' yields `x'. |
1342 | |
1343 `function' differs from `quote' in that it is a hint that an expression is | |
1344 a function, not data. In particular, under some circumstances the byte | |
1345 compiler will compile an expression quoted with `function', but it will | |
1346 never do so for an expression quoted with `quote'. However, the byte | |
1347 compiler will not compile an expression buried in a data structure such as | |
1348 a vector or a list which is not syntactically a function. These issues are | |
1349 most important for lambda expressions (see `lambda'). | |
1350 | |
1351 There is an alternative, more readable, reader syntax for `function': a Lisp | |
1352 object preceded by `#''. Thus, #'x is equivalent to (function x), in all | |
1353 contexts. A print function may use either. Internally the expression is | |
1354 represented as `(function x)'). | |
5265
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5222
diff
changeset
|
1355 |
5663ae9a8989
Warn at compile time, error at runtime, with (quote X Y), (function X Y).
Aidan Kehoe <kehoea@parhasard.net>
parents:
5222
diff
changeset
|
1356 arguments: (SYMBOL-OR-LAMBDA) |
428 | 1357 */ |
1358 (args)) | |
1359 { | |
5207
1096ef427b56
Error on too many arguments to #'function, #'quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5146
diff
changeset
|
1360 int nargs; |
1096ef427b56
Error on too many arguments to #'function, #'quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5146
diff
changeset
|
1361 |
1096ef427b56
Error on too many arguments to #'function, #'quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5146
diff
changeset
|
1362 GET_LIST_LENGTH (args, nargs); |
1096ef427b56
Error on too many arguments to #'function, #'quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5146
diff
changeset
|
1363 if (nargs != 1) |
1096ef427b56
Error on too many arguments to #'function, #'quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5146
diff
changeset
|
1364 { |
1096ef427b56
Error on too many arguments to #'function, #'quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5146
diff
changeset
|
1365 Fsignal (Qwrong_number_of_arguments, |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
1366 list2 (Qfunction, make_fixnum (nargs))); |
5207
1096ef427b56
Error on too many arguments to #'function, #'quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5146
diff
changeset
|
1367 } |
1096ef427b56
Error on too many arguments to #'function, #'quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5146
diff
changeset
|
1368 |
428 | 1369 return XCAR (args); |
1370 } | |
1371 | |
1372 | |
1373 /************************************************************************/ | |
1374 /* Defining functions/variables */ | |
1375 /************************************************************************/ | |
1376 static Lisp_Object | |
1377 define_function (Lisp_Object name, Lisp_Object defn) | |
1378 { | |
1379 Ffset (name, defn); | |
4535
69a1eda3da06
Distinguish vars and functions in #'symbol-file, #'describe-{function,variable}
Aidan Kehoe <kehoea@parhasard.net>
parents:
4502
diff
changeset
|
1380 LOADHIST_ATTACH (Fcons (Qdefun, name)); |
428 | 1381 return name; |
1382 } | |
1383 | |
1384 DEFUN ("defun", Fdefun, 2, UNEVALLED, 0, /* | |
4693
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
1385 Define NAME as a function. |
428 | 1386 The definition is (lambda ARGLIST [DOCSTRING] BODY...). |
1387 See also the function `interactive'. | |
4693
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
1388 |
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
1389 arguments: (NAME ARGLIST &optional DOCSTRING &rest BODY) |
428 | 1390 */ |
1391 (args)) | |
1392 { | |
1393 /* This function can GC */ | |
1394 return define_function (XCAR (args), | |
1395 Fcons (Qlambda, XCDR (args))); | |
1396 } | |
1397 | |
1398 DEFUN ("defmacro", Fdefmacro, 2, UNEVALLED, 0, /* | |
4693
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
1399 Define NAME as a macro. |
428 | 1400 The definition is (macro lambda ARGLIST [DOCSTRING] BODY...). |
1401 When the macro is called, as in (NAME ARGS...), | |
1402 the function (lambda ARGLIST BODY...) is applied to | |
1403 the list ARGS... as it appears in the expression, | |
1404 and the result should be a form to be evaluated instead of the original. | |
4693
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
1405 |
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
1406 arguments: (NAME ARGLIST &optional DOCSTRING &rest BODY) |
428 | 1407 */ |
1408 (args)) | |
1409 { | |
1410 /* This function can GC */ | |
5506
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1411 if (!NILP (Vmacro_declaration_function)) |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1412 { |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
1413 Lisp_Object declare = Fnth (make_fixnum (2), args); |
5506
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1414 |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1415 /* Sigh. This GNU interface is incompatible with the CL declare macro, |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1416 and the latter is much older. |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1417 |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1418 GNU describe this syntax in their docstrings. It's sufficiently |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1419 ugly in the XEmacs context (and in general, but ...) that I'm not |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1420 rushing to document it. |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1421 |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1422 The GNU interface accepts multiple (declare ...) sexps at the |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1423 beginning of a macro. Nothing uses this, and the XEmacs byte |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1424 compiler (will) warn(s) if it encounters code that attempts to use |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1425 it. */ |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1426 |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1427 if (STRINGP (declare)) |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1428 { |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
1429 declare = Fnth (make_fixnum (3), args); |
5506
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1430 } |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1431 |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1432 if (CONSP (declare) && EQ (Qdeclare, XCAR (declare))) |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1433 { |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1434 call2 (Vmacro_declaration_function, XCAR (args), declare); |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1435 } |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1436 } |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
1437 |
428 | 1438 return define_function (XCAR (args), |
1439 Fcons (Qmacro, Fcons (Qlambda, XCDR (args)))); | |
1440 } | |
1441 | |
1442 DEFUN ("defvar", Fdefvar, 1, UNEVALLED, 0, /* | |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1443 Define SYMBOL as a variable. |
428 | 1444 You are not required to define a variable in order to use it, |
1445 but the definition can supply documentation and an initial value | |
1446 in a way that tags can recognize. | |
1447 | |
1448 INITVALUE is evaluated, and used to set SYMBOL, only if SYMBOL's value is | |
1449 void. (However, when you evaluate a defvar interactively, it acts like a | |
1450 defconst: SYMBOL's value is always set regardless of whether it's currently | |
1451 void.) | |
1452 If SYMBOL is buffer-local, its default value is what is set; | |
1453 buffer-local values are not affected. | |
1454 INITVALUE and DOCSTRING are optional. | |
1455 If DOCSTRING starts with *, this variable is identified as a user option. | |
442 | 1456 This means that M-x set-variable recognizes it. |
428 | 1457 If INITVALUE is missing, SYMBOL's value is not set. |
1458 | |
1459 In lisp-interaction-mode defvar is treated as defconst. | |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1460 |
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1461 arguments: (SYMBOL &optional INITVALUE DOCSTRING) |
428 | 1462 */ |
1463 (args)) | |
1464 { | |
1465 /* This function can GC */ | |
1466 Lisp_Object sym = XCAR (args); | |
1467 | |
1468 if (!NILP (args = XCDR (args))) | |
1469 { | |
1470 Lisp_Object val = XCAR (args); | |
1471 | |
1472 if (NILP (Fdefault_boundp (sym))) | |
1473 { | |
1474 struct gcpro gcpro1; | |
1475 GCPRO1 (val); | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1476 val = IGNORE_MULTIPLE_VALUES (Feval (val)); |
428 | 1477 Fset_default (sym, val); |
1478 UNGCPRO; | |
1479 } | |
1480 | |
1481 if (!NILP (args = XCDR (args))) | |
1482 { | |
1483 Lisp_Object doc = XCAR (args); | |
1484 Fput (sym, Qvariable_documentation, doc); | |
1485 if (!NILP (args = XCDR (args))) | |
563 | 1486 signal_error (Qwrong_number_of_arguments, "too many arguments", Qunbound); |
428 | 1487 } |
1488 } | |
1489 | |
1490 #ifdef I18N3 | |
1491 if (!NILP (Vfile_domain)) | |
1492 Fput (sym, Qvariable_domain, Vfile_domain); | |
1493 #endif | |
1494 | |
1495 LOADHIST_ATTACH (sym); | |
1496 return sym; | |
1497 } | |
1498 | |
1499 DEFUN ("defconst", Fdefconst, 2, UNEVALLED, 0, /* | |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1500 Define SYMBOL as a constant variable. |
428 | 1501 The intent is that programs do not change this value, but users may. |
1502 Always sets the value of SYMBOL to the result of evalling INITVALUE. | |
1503 If SYMBOL is buffer-local, its default value is what is set; | |
1504 buffer-local values are not affected. | |
1505 DOCSTRING is optional. | |
1506 If DOCSTRING starts with *, this variable is identified as a user option. | |
442 | 1507 This means that M-x set-variable recognizes it. |
428 | 1508 |
1509 Note: do not use `defconst' for user options in libraries that are not | |
1510 normally loaded, since it is useful for users to be able to specify | |
1511 their own values for such variables before loading the library. | |
1512 Since `defconst' unconditionally assigns the variable, | |
1513 it would override the user's choice. | |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1514 |
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
1515 arguments: (SYMBOL &optional INITVALUE DOCSTRING) |
428 | 1516 */ |
1517 (args)) | |
1518 { | |
1519 /* This function can GC */ | |
1520 Lisp_Object sym = XCAR (args); | |
1521 Lisp_Object val = Feval (XCAR (args = XCDR (args))); | |
1522 struct gcpro gcpro1; | |
1523 | |
1524 GCPRO1 (val); | |
1525 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1526 val = IGNORE_MULTIPLE_VALUES (val); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1527 |
428 | 1528 Fset_default (sym, val); |
1529 | |
1530 UNGCPRO; | |
1531 | |
1532 if (!NILP (args = XCDR (args))) | |
1533 { | |
1534 Lisp_Object doc = XCAR (args); | |
1535 Fput (sym, Qvariable_documentation, doc); | |
1536 if (!NILP (args = XCDR (args))) | |
563 | 1537 signal_error (Qwrong_number_of_arguments, "too many arguments", Qunbound); |
428 | 1538 } |
1539 | |
1540 #ifdef I18N3 | |
1541 if (!NILP (Vfile_domain)) | |
1542 Fput (sym, Qvariable_domain, Vfile_domain); | |
1543 #endif | |
1544 | |
1545 LOADHIST_ATTACH (sym); | |
1546 return sym; | |
1547 } | |
1548 | |
4502
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4162
diff
changeset
|
1549 /* XEmacs: user-variable-p is in symbols.c, since it needs to mess around |
8748a3f7ceb4
Handle varalias chains, custom variables in #'user-variable-p.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4162
diff
changeset
|
1550 with the symbol variable aliases. */ |
428 | 1551 |
5615
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1552 DEFUN ("macroexpand", Fmacroexpand, 1, 2, 0, /* |
428 | 1553 Return result of expanding macros at top level of FORM. |
1554 If FORM is not a macro call, it is returned unchanged. | |
1555 Otherwise, the macro is expanded and the expansion is considered | |
1556 in place of FORM. When a non-macro-call results, it is returned. | |
1557 | |
442 | 1558 The second optional arg ENVIRONMENT specifies an environment of macro |
428 | 1559 definitions to shadow the loaded ones for use in file byte-compilation. |
1560 */ | |
442 | 1561 (form, environment)) |
428 | 1562 { |
1563 /* This function can GC */ | |
1564 /* With cleanups from Hallvard Furuseth. */ | |
1565 REGISTER Lisp_Object expander, sym, def, tem; | |
5615
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1566 int speccount = specpdl_depth (); |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1567 |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1568 if (!NILP (environment)) |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1569 { |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1570 if (NILP (Vbyte_compile_macro_environment)) |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1571 { |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1572 specbind (Qbyte_compile_macro_environment, environment); |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1573 } |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1574 else |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1575 { |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1576 specbind (Qbyte_compile_macro_environment, |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1577 nconc2 (Fcopy_list (environment), |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1578 Vbyte_compile_macro_environment)); |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1579 environment = Vbyte_compile_macro_environment; |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1580 } |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1581 } |
428 | 1582 |
1583 while (1) | |
1584 { | |
1585 /* Come back here each time we expand a macro call, | |
1586 in case it expands into another macro call. */ | |
5615
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1587 if (SYMBOLP (form)) |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1588 { |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1589 Lisp_Object hashed = make_integer ((EMACS_INT) (LISP_HASH (form))); |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1590 Lisp_Object assocked; |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1591 |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1592 if (BIGNUMP (hashed)) |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1593 { |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1594 struct gcpro gcpro1; |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1595 GCPRO1 (hashed); |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1596 assocked = Fassoc (hashed, environment); |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1597 UNGCPRO; |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1598 } |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1599 else |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1600 { |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1601 assocked = Fassq (hashed, environment); |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1602 } |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1603 |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1604 if (CONSP (assocked) && !NILP (XCDR (assocked))) |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1605 { |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1606 form = Fcar (XCDR (assocked)); |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1607 continue; |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1608 } |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1609 } |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1610 |
428 | 1611 if (!CONSP (form)) |
1612 break; | |
1613 /* Set SYM, give DEF and TEM right values in case SYM is not a symbol. */ | |
1614 def = sym = XCAR (form); | |
1615 tem = Qnil; | |
1616 /* Trace symbols aliases to other symbols | |
1617 until we get a symbol that is not an alias. */ | |
1618 while (SYMBOLP (def)) | |
1619 { | |
1620 QUIT; | |
1621 sym = def; | |
442 | 1622 tem = Fassq (sym, environment); |
428 | 1623 if (NILP (tem)) |
1624 { | |
1625 def = XSYMBOL (sym)->function; | |
1626 if (!UNBOUNDP (def)) | |
1627 continue; | |
1628 } | |
1629 break; | |
1630 } | |
442 | 1631 /* Right now TEM is the result from SYM in ENVIRONMENT, |
428 | 1632 and if TEM is nil then DEF is SYM's function definition. */ |
1633 if (NILP (tem)) | |
1634 { | |
442 | 1635 /* SYM is not mentioned in ENVIRONMENT. |
428 | 1636 Look at its function definition. */ |
1637 if (UNBOUNDP (def) | |
1638 || !CONSP (def)) | |
1639 /* Not defined or definition not suitable */ | |
1640 break; | |
1641 if (EQ (XCAR (def), Qautoload)) | |
1642 { | |
1643 /* Autoloading function: will it be a macro when loaded? */ | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
1644 tem = Felt (def, make_fixnum (4)); |
428 | 1645 if (EQ (tem, Qt) || EQ (tem, Qmacro)) |
1646 { | |
1647 /* Yes, load it and try again. */ | |
970 | 1648 /* do_autoload GCPROs both arguments */ |
428 | 1649 do_autoload (def, sym); |
1650 continue; | |
1651 } | |
1652 else | |
1653 break; | |
1654 } | |
1655 else if (!EQ (XCAR (def), Qmacro)) | |
1656 break; | |
1657 else expander = XCDR (def); | |
1658 } | |
1659 else | |
1660 { | |
1661 expander = XCDR (tem); | |
1662 if (NILP (expander)) | |
1663 break; | |
1664 } | |
1665 form = apply1 (expander, XCDR (form)); | |
1666 } | |
5615
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1667 |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1668 unbind_to (speccount); |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1669 |
428 | 1670 return form; |
1671 } | |
1672 | |
1673 | |
1674 /************************************************************************/ | |
1675 /* Non-local exits */ | |
1676 /************************************************************************/ | |
1677 | |
1318 | 1678 #ifdef ERROR_CHECK_TRAPPING_PROBLEMS |
1679 | |
1680 int | |
1681 proper_redisplay_wrapping_in_place (void) | |
1682 { | |
1683 return !in_display | |
1684 || ((get_inhibit_flags () & INTERNAL_INHIBIT_ERRORS) | |
1685 && (get_inhibit_flags () & INTERNAL_INHIBIT_THROWS)); | |
1686 } | |
1687 | |
1688 static void | |
1689 check_proper_critical_section_nonlocal_exit_protection (void) | |
1690 { | |
1691 assert_with_message | |
1692 (proper_redisplay_wrapping_in_place (), | |
1693 "Attempted non-local exit from within redisplay without being properly wrapped"); | |
1694 } | |
1695 | |
1696 static void | |
1697 check_proper_critical_section_lisp_protection (void) | |
1698 { | |
1699 assert_with_message | |
1700 (proper_redisplay_wrapping_in_place (), | |
1701 "Attempt to call Lisp code from within redisplay without being properly wrapped"); | |
1702 } | |
1703 | |
1704 #endif /* ERROR_CHECK_TRAPPING_PROBLEMS */ | |
1705 | |
428 | 1706 DEFUN ("catch", Fcatch, 1, UNEVALLED, 0, /* |
4693
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
1707 Eval BODY allowing nonlocal exits using `throw'. |
428 | 1708 TAG is evalled to get the tag to use. Then the BODY is executed. |
3577 | 1709 Within BODY, (throw TAG VAL) with same (`eq') tag exits BODY and this `catch'. |
428 | 1710 If no throw happens, `catch' returns the value of the last BODY form. |
1711 If a throw happens, it specifies the value to return from `catch'. | |
4693
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
1712 |
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
1713 arguments: (TAG &rest BODY) |
428 | 1714 */ |
1715 (args)) | |
1716 { | |
1717 /* This function can GC */ | |
1718 Lisp_Object tag = Feval (XCAR (args)); | |
1719 Lisp_Object body = XCDR (args); | |
2532 | 1720 return internal_catch (tag, Fprogn, body, 0, 0, 0); |
428 | 1721 } |
1722 | |
1723 /* Set up a catch, then call C function FUNC on argument ARG. | |
1724 FUNC should return a Lisp_Object. | |
1725 This is how catches are done from within C code. */ | |
1726 | |
1727 Lisp_Object | |
1728 internal_catch (Lisp_Object tag, | |
1729 Lisp_Object (*func) (Lisp_Object arg), | |
1730 Lisp_Object arg, | |
853 | 1731 int * volatile threw, |
2532 | 1732 Lisp_Object * volatile thrown_tag, |
1733 Lisp_Object * volatile backtrace_before_throw) | |
428 | 1734 { |
1735 /* This structure is made part of the chain `catchlist'. */ | |
1736 struct catchtag c; | |
1737 | |
1738 /* Fill in the components of c, and put it on the list. */ | |
1739 c.next = catchlist; | |
1740 c.tag = tag; | |
853 | 1741 c.actual_tag = Qnil; |
2532 | 1742 c.backtrace = Qnil; |
428 | 1743 c.val = Qnil; |
1744 c.backlist = backtrace_list; | |
1745 #if 0 /* FSFmacs */ | |
1746 /* #### */ | |
1747 c.handlerlist = handlerlist; | |
1748 #endif | |
1749 c.lisp_eval_depth = lisp_eval_depth; | |
1750 c.pdlcount = specpdl_depth(); | |
1751 #if 0 /* FSFmacs */ | |
1752 c.poll_suppress_count = async_timer_suppress_count; | |
1753 #endif | |
1754 c.gcpro = gcprolist; | |
1755 catchlist = &c; | |
1756 | |
1757 /* Call FUNC. */ | |
1758 if (SETJMP (c.jmp)) | |
1759 { | |
1760 /* Throw works by a longjmp that comes right here. */ | |
1761 if (threw) *threw = 1; | |
853 | 1762 if (thrown_tag) *thrown_tag = c.actual_tag; |
2532 | 1763 if (backtrace_before_throw) *backtrace_before_throw = c.backtrace; |
428 | 1764 return c.val; |
1765 } | |
1766 c.val = (*func) (arg); | |
1767 if (threw) *threw = 0; | |
853 | 1768 if (thrown_tag) *thrown_tag = Qnil; |
428 | 1769 catchlist = c.next; |
853 | 1770 check_catchlist_sanity (); |
428 | 1771 return c.val; |
1772 } | |
1773 | |
1774 | |
1775 /* Unwind the specbind, catch, and handler stacks back to CATCH, and | |
1776 jump to that CATCH, returning VALUE as the value of that catch. | |
1777 | |
2297 | 1778 This is the guts of Fthrow and Fsignal; they differ only in the |
1779 way they choose the catch tag to throw to. A catch tag for a | |
428 | 1780 condition-case form has a TAG of Qnil. |
1781 | |
1782 Before each catch is discarded, unbind all special bindings and | |
1783 execute all unwind-protect clauses made above that catch. Unwind | |
1784 the handler stack as we go, so that the proper handlers are in | |
1785 effect for each unwind-protect clause we run. At the end, restore | |
1786 some static info saved in CATCH, and longjmp to the location | |
1787 specified in the | |
1788 | |
1789 This is used for correct unwinding in Fthrow and Fsignal. */ | |
1790 | |
2268 | 1791 static DECLARE_DOESNT_RETURN (unwind_to_catch (struct catchtag *, Lisp_Object, |
1792 Lisp_Object)); | |
1793 | |
1794 static DOESNT_RETURN | |
853 | 1795 unwind_to_catch (struct catchtag *c, Lisp_Object val, Lisp_Object tag) |
428 | 1796 { |
1797 REGISTER int last_time; | |
1798 | |
1799 /* Unwind the specbind, catch, and handler stacks back to CATCH | |
1800 Before each catch is discarded, unbind all special bindings | |
1801 and execute all unwind-protect clauses made above that catch. | |
1802 At the end, restore some static info saved in CATCH, | |
1803 and longjmp to the location specified. | |
1804 */ | |
1805 | |
1806 /* Save the value somewhere it will be GC'ed. | |
1807 (Can't overwrite tag slot because an unwind-protect may | |
1808 want to throw to this same tag, which isn't yet invalid.) */ | |
1809 c->val = val; | |
853 | 1810 c->actual_tag = tag; |
428 | 1811 |
1812 #if 0 /* FSFmacs */ | |
1813 /* Restore the polling-suppression count. */ | |
1814 set_poll_suppress_count (catch->poll_suppress_count); | |
1815 #endif | |
1816 | |
617 | 1817 #if 1 |
428 | 1818 do |
1819 { | |
1820 last_time = catchlist == c; | |
1821 | |
1822 /* Unwind the specpdl stack, and then restore the proper set of | |
1823 handlers. */ | |
771 | 1824 unbind_to (catchlist->pdlcount); |
428 | 1825 catchlist = catchlist->next; |
853 | 1826 check_catchlist_sanity (); |
428 | 1827 } |
1828 while (! last_time); | |
617 | 1829 #else |
1830 /* Former XEmacs code. This is definitely not as correct because | |
1831 there may be a number of catches we're unwinding, and a number | |
1832 of unwind-protects in the process. By not undoing the catches till | |
1833 the end, there may be invalid catches still current. (This would | |
1834 be a particular problem with code like this: | |
1835 | |
1836 (catch 'foo | |
1837 (call-some-code-which-does... | |
1838 (catch 'bar | |
1839 (unwind-protect | |
1840 (call-some-code-which-does... | |
1841 (catch 'bar | |
1842 (call-some-code-which-does... | |
1843 (throw 'foo nil)))) | |
1844 (throw 'bar nil))))) | |
1845 | |
1846 This would try to throw to the inner (catch 'bar)! | |
1847 | |
1848 --ben | |
1849 */ | |
428 | 1850 /* Unwind the specpdl stack */ |
771 | 1851 unbind_to (c->pdlcount); |
428 | 1852 catchlist = c->next; |
853 | 1853 check_catchlist_sanity (); |
617 | 1854 #endif /* Former code */ |
428 | 1855 |
1204 | 1856 UNWIND_GCPRO_TO (c->gcpro); |
1292 | 1857 if (profiling_active) |
1858 { | |
1859 while (backtrace_list != c->backlist) | |
1860 { | |
1861 profile_record_unwind (backtrace_list); | |
1862 backtrace_list = backtrace_list->next; | |
1863 } | |
1864 } | |
1865 else | |
1866 backtrace_list = c->backlist; | |
428 | 1867 lisp_eval_depth = c->lisp_eval_depth; |
1868 | |
442 | 1869 #ifdef DEFEND_AGAINST_THROW_RECURSION |
428 | 1870 throw_level = 0; |
1871 #endif | |
1872 LONGJMP (c->jmp, 1); | |
1873 } | |
1874 | |
5348
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1875 DECLARE_DOESNT_RETURN (throw_or_bomb_out_unsafe (Lisp_Object, Lisp_Object, int, |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1876 Lisp_Object, Lisp_Object)); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1877 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1878 DOESNT_RETURN |
5348
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1879 throw_or_bomb_out_unsafe (Lisp_Object tag, Lisp_Object val, int bomb_out_p, |
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1880 Lisp_Object sig, Lisp_Object data) |
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1881 { |
428 | 1882 /* If bomb_out_p is t, this is being called from Fsignal as a |
1883 "last resort" when there is no handler for this error and | |
1884 the debugger couldn't be invoked, so we are throwing to | |
3025 | 1885 `top-level'. If this tag doesn't exist (happens during the |
428 | 1886 initialization stages) we would get in an infinite recursive |
1887 Fsignal/Fthrow loop, so instead we bomb out to the | |
1888 really-early-error-handler. | |
1889 | |
1890 Note that in fact the only time that the "last resort" | |
3025 | 1891 occurs is when there's no catch for `top-level' -- the |
1892 `top-level' catch and the catch-all error handler are | |
428 | 1893 established at the same time, in initial_command_loop/ |
1894 top_level_1. | |
1895 | |
853 | 1896 [[#### Fix this horrifitude!]] |
1897 | |
1898 I don't think this is horrifitude, just defensive programming. --ben | |
428 | 1899 */ |
1900 | |
1901 while (1) | |
1902 { | |
1903 REGISTER struct catchtag *c; | |
1904 | |
1905 #if 0 /* FSFmacs */ | |
1906 if (!NILP (tag)) /* #### */ | |
1907 #endif | |
1908 for (c = catchlist; c; c = c->next) | |
1909 { | |
2532 | 1910 if (EQ (c->tag, Vcatch_everything_tag)) |
1911 c->backtrace = maybe_get_trapping_problems_backtrace (); | |
853 | 1912 if (EQ (c->tag, tag) || EQ (c->tag, Vcatch_everything_tag)) |
1913 unwind_to_catch (c, val, tag); | |
428 | 1914 } |
1915 if (!bomb_out_p) | |
1916 tag = Fsignal (Qno_catch, list2 (tag, val)); | |
1917 else | |
1918 call1 (Qreally_early_error_handler, Fcons (sig, data)); | |
1919 } | |
1920 } | |
5348
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1921 |
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1922 DECLARE_DOESNT_RETURN (throw_or_bomb_out (Lisp_Object, Lisp_Object, int, |
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1923 Lisp_Object, Lisp_Object)); |
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1924 |
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1925 DOESNT_RETURN |
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1926 throw_or_bomb_out (Lisp_Object tag, Lisp_Object val, int bomb_out_p, |
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1927 Lisp_Object sig, Lisp_Object data) |
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1928 { |
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1929 #ifdef DEFEND_AGAINST_THROW_RECURSION |
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1930 /* die if we recurse more than is reasonable */ |
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1931 assert (++throw_level <= 20); |
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1932 #endif |
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1933 |
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1934 #ifdef ERROR_CHECK_TRAPPING_PROBLEMS |
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1935 check_proper_critical_section_nonlocal_exit_protection (); |
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1936 #endif |
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1937 throw_or_bomb_out_unsafe (tag, val, bomb_out_p, sig, data); |
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1938 } |
428 | 1939 |
1940 /* See above, where CATCHLIST is defined, for a description of how | |
1941 Fthrow() works. | |
1942 | |
1943 Fthrow() is also called by Fsignal(), to do a non-local jump | |
1944 back to the appropriate condition-case handler after (maybe) | |
1945 the debugger is entered. In that case, TAG is the value | |
1946 of Vcondition_handlers that was in place just after the | |
1947 condition-case handler was set up. The car of this will be | |
1948 some data referring to the handler: Its car will be Qunbound | |
1949 (thus, this tag can never be generated by Lisp code), and | |
1950 its CDR will be the HANDLERS argument to condition_case_1() | |
1951 (either Qerror, Qt, or a list of handlers as in `condition-case'). | |
1952 This works fine because Fthrow() does not care what TAG was | |
1953 passed to it: it just looks up the catch list for something | |
1954 that is EQ() to TAG. When it finds it, it will longjmp() | |
1955 back to the place that established the catch (in this case, | |
1956 condition_case_1). See below for more info. | |
1957 */ | |
1958 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1959 DEFUN_NORETURN ("throw", Fthrow, 2, UNEVALLED, 0, /* |
444 | 1960 Throw to the catch for TAG and return VALUE from it. |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1961 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1962 Both TAG and VALUE are evalled, and multiple values in VALUE will be passed |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1963 back. Tags are the same if and only if they are `eq'. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1964 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1965 arguments: (TAG VALUE) |
428 | 1966 */ |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1967 (args)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1968 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1969 int nargs; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1970 Lisp_Object tag, value; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1971 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1972 GET_LIST_LENGTH (args, nargs); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1973 if (nargs != 2) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1974 { |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
1975 Fsignal (Qwrong_number_of_arguments, list2 (Qthrow, make_fixnum (nargs))); |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1976 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1977 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1978 tag = IGNORE_MULTIPLE_VALUES (Feval (XCAR(args))); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1979 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1980 value = Feval (XCAR (XCDR (args))); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1981 |
444 | 1982 throw_or_bomb_out (tag, value, 0, Qnil, Qnil); /* Doesn't return */ |
2268 | 1983 RETURN_NOT_REACHED (Qnil); |
428 | 1984 } |
1985 | |
1986 DEFUN ("unwind-protect", Funwind_protect, 1, UNEVALLED, 0, /* | |
1987 Do BODYFORM, protecting with UNWINDFORMS. | |
1988 If BODYFORM completes normally, its value is returned | |
1989 after executing the UNWINDFORMS. | |
1990 If BODYFORM exits nonlocally, the UNWINDFORMS are executed anyway. | |
4693
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
1991 |
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
1992 arguments: (BODYFORM &rest UNWINDFORMS) |
428 | 1993 */ |
1994 (args)) | |
1995 { | |
1996 /* This function can GC */ | |
1997 int speccount = specpdl_depth(); | |
1998 | |
1999 record_unwind_protect (Fprogn, XCDR (args)); | |
771 | 2000 return unbind_to_1 (speccount, Feval (XCAR (args))); |
428 | 2001 } |
2002 | |
2003 | |
2004 /************************************************************************/ | |
1292 | 2005 /* Trapping errors */ |
428 | 2006 /************************************************************************/ |
2007 | |
2008 static Lisp_Object | |
2009 condition_bind_unwind (Lisp_Object loser) | |
2010 { | |
617 | 2011 /* There is no problem freeing stuff here like there is in |
2012 condition_case_unwind(), because there are no outside pointers | |
2013 (like the tag below in the catchlist) pointing to the objects. */ | |
853 | 2014 |
428 | 2015 /* ((handler-fun . handler-args) ... other handlers) */ |
2016 Lisp_Object tem = XCAR (loser); | |
853 | 2017 int first = 1; |
428 | 2018 |
2019 while (CONSP (tem)) | |
2020 { | |
853 | 2021 Lisp_Object victim = tem; |
2022 if (first && OPAQUE_PTRP (XCAR (victim))) | |
2023 free_opaque_ptr (XCAR (victim)); | |
2024 first = 0; | |
2025 tem = XCDR (victim); | |
428 | 2026 free_cons (victim); |
2027 } | |
2028 | |
2029 if (EQ (loser, Vcondition_handlers)) /* may have been rebound to some tail */ | |
853 | 2030 Vcondition_handlers = XCDR (loser); |
2031 | |
2032 free_cons (loser); | |
428 | 2033 return Qnil; |
2034 } | |
2035 | |
2036 static Lisp_Object | |
2037 condition_case_unwind (Lisp_Object loser) | |
2038 { | |
2039 /* ((<unbound> . clauses) ... other handlers */ | |
617 | 2040 /* NO! Doing this now leaves the tag deleted in a still-active |
2041 catch. With the recent changes to unwind_to_catch(), the | |
2042 evil situation might not happen any more; it certainly could | |
2043 happen before because it did. But it's very precarious to rely | |
2044 on something like this. #### Instead we should rewrite, adopting | |
2045 the FSF's mechanism with a struct handler instead of | |
2046 Vcondition_handlers; then we have NO Lisp-object structures used | |
2047 to hold all of the values, and there's no possibility either of | |
2048 crashes from freeing objects too quickly, or objects not getting | |
2049 freed and hanging around till the next GC. | |
2050 | |
2051 In practice, the extra consing here should not matter because | |
2052 it only happens when we throw past the condition-case, which almost | |
2053 always is the result of an error. Most of the time, there will be | |
2054 no error, and we will free the objects below in the main function. | |
2055 | |
2056 --ben | |
2057 | |
2058 DO NOT DO: free_cons (XCAR (loser)); | |
2059 */ | |
2060 | |
428 | 2061 if (EQ (loser, Vcondition_handlers)) /* may have been rebound to some tail */ |
617 | 2062 Vcondition_handlers = XCDR (loser); |
2063 | |
2064 /* DO NOT DO: free_cons (loser); */ | |
428 | 2065 return Qnil; |
2066 } | |
2067 | |
2068 /* Split out from condition_case_3 so that primitive C callers | |
2069 don't have to cons up a lisp handler form to be evaluated. */ | |
2070 | |
2071 /* Call a function BFUN of one argument BARG, trapping errors as | |
2072 specified by HANDLERS. If no error occurs that is indicated by | |
2073 HANDLERS as something to be caught, the return value of this | |
2074 function is the return value from BFUN. If such an error does | |
2075 occur, HFUN is called, and its return value becomes the | |
2076 return value of condition_case_1(). The second argument passed | |
2077 to HFUN will always be HARG. The first argument depends on | |
2078 HANDLERS: | |
2079 | |
2080 If HANDLERS is Qt, all errors (this includes QUIT, but not | |
2081 non-local exits with `throw') cause HFUN to be invoked, and VAL | |
2082 (the first argument to HFUN) is a cons (SIG . DATA) of the | |
2083 arguments passed to `signal'. The debugger is not invoked even if | |
2084 `debug-on-error' was set. | |
2085 | |
2086 A HANDLERS value of Qerror is the same as Qt except that the | |
2087 debugger is invoked if `debug-on-error' was set. | |
2088 | |
2089 Otherwise, HANDLERS should be a list of lists (CONDITION-NAME BODY ...) | |
2090 exactly as in `condition-case', and errors will be trapped | |
2091 as indicated in HANDLERS. VAL (the first argument to HFUN) will | |
2092 be a cons whose car is the cons (SIG . DATA) and whose CDR is the | |
2093 list (BODY ...) from the appropriate slot in HANDLERS. | |
2094 | |
2095 This function pushes HANDLERS onto the front of Vcondition_handlers | |
2096 (actually with a Qunbound marker as well -- see Fthrow() above | |
2097 for why), establishes a catch whose tag is this new value of | |
2098 Vcondition_handlers, and calls BFUN. When Fsignal() is called, | |
2099 it calls Fthrow(), setting TAG to this same new value of | |
2100 Vcondition_handlers and setting VAL to the same thing that will | |
2101 be passed to HFUN, as above. Fthrow() longjmp()s back to the | |
2102 jump point we just established, and we in turn just call the | |
2103 HFUN and return its value. | |
2104 | |
2105 For a real condition-case, HFUN will always be | |
2106 run_condition_case_handlers() and HARG is the argument VAR | |
2107 to condition-case. That function just binds VAR to the cons | |
2108 (SIG . DATA) that is the CAR of VAL, and calls the handler | |
2109 (BODY ...) that is the CDR of VAL. Note that before calling | |
2110 Fthrow(), Fsignal() restored Vcondition_handlers to the value | |
2111 it had *before* condition_case_1() was called. This maintains | |
2112 consistency (so that the state of things at exit of | |
2113 condition_case_1() is the same as at entry), and implies | |
2114 that the handler can signal the same error again (possibly | |
2115 after processing of its own), without getting in an infinite | |
2116 loop. */ | |
2117 | |
2118 Lisp_Object | |
2119 condition_case_1 (Lisp_Object handlers, | |
2120 Lisp_Object (*bfun) (Lisp_Object barg), | |
2121 Lisp_Object barg, | |
2122 Lisp_Object (*hfun) (Lisp_Object val, Lisp_Object harg), | |
2123 Lisp_Object harg) | |
2124 { | |
2125 int speccount = specpdl_depth(); | |
2126 struct catchtag c; | |
617 | 2127 struct gcpro gcpro1, gcpro2, gcpro3; |
428 | 2128 |
2129 #if 0 /* FSFmacs */ | |
2130 c.tag = Qnil; | |
2131 #else | |
2132 /* Do consing now so out-of-memory error happens up front */ | |
2133 /* (unbound . stuff) is a special condition-case kludge marker | |
2134 which is known specially by Fsignal. | |
617 | 2135 [[ This is an abomination, but to fix it would require either |
428 | 2136 making condition_case cons (a union of the conditions of the clauses) |
617 | 2137 or changing the byte-compiler output (no thanks).]] |
2138 | |
2139 The above comment is clearly wrong. FSF does not do it this way | |
2140 and did not change the byte-compiler output. Instead they use a | |
2141 `struct handler' to hold the various values (in place of our | |
2142 Vcondition_handlers) and chain them together, with pointers from | |
2143 the `struct catchtag' to the `struct handler'. We should perhaps | |
2144 consider moving to something similar, but not before I merge my | |
2145 stderr-proc workspace, which contains changes to these | |
2146 functions. --ben */ | |
428 | 2147 c.tag = noseeum_cons (noseeum_cons (Qunbound, handlers), |
2148 Vcondition_handlers); | |
2149 #endif | |
2150 c.val = Qnil; | |
853 | 2151 c.actual_tag = Qnil; |
2532 | 2152 c.backtrace = Qnil; |
428 | 2153 c.backlist = backtrace_list; |
2154 #if 0 /* FSFmacs */ | |
2155 /* #### */ | |
2156 c.handlerlist = handlerlist; | |
2157 #endif | |
2158 c.lisp_eval_depth = lisp_eval_depth; | |
2159 c.pdlcount = specpdl_depth(); | |
2160 #if 0 /* FSFmacs */ | |
2161 c.poll_suppress_count = async_timer_suppress_count; | |
2162 #endif | |
2163 c.gcpro = gcprolist; | |
2164 /* #### FSFmacs does the following statement *after* the setjmp(). */ | |
2165 c.next = catchlist; | |
2166 | |
2167 if (SETJMP (c.jmp)) | |
2168 { | |
2169 /* throw does ungcpro, etc */ | |
2170 return (*hfun) (c.val, harg); | |
2171 } | |
2172 | |
2173 record_unwind_protect (condition_case_unwind, c.tag); | |
2174 | |
2175 catchlist = &c; | |
2176 #if 0 /* FSFmacs */ | |
2177 h.handler = handlers; | |
2178 h.var = Qnil; | |
2179 h.next = handlerlist; | |
2180 h.tag = &c; | |
2181 handlerlist = &h; | |
2182 #else | |
2183 Vcondition_handlers = c.tag; | |
2184 #endif | |
2185 GCPRO1 (harg); /* Somebody has to gc-protect */ | |
2186 c.val = ((*bfun) (barg)); | |
2187 UNGCPRO; | |
617 | 2188 |
2189 /* Once we change `catchlist' below, the stuff in c will not be GCPRO'd. */ | |
2190 GCPRO3 (harg, c.val, c.tag); | |
2191 | |
428 | 2192 catchlist = c.next; |
853 | 2193 check_catchlist_sanity (); |
617 | 2194 /* Note: The unbind also resets Vcondition_handlers. Maybe we should |
2195 delete this here. */ | |
428 | 2196 Vcondition_handlers = XCDR (c.tag); |
771 | 2197 unbind_to (speccount); |
617 | 2198 |
2199 UNGCPRO; | |
2200 /* free the conses *after* the unbind, because the unbind will run | |
2201 condition_case_unwind above. */ | |
853 | 2202 free_cons (XCAR (c.tag)); |
2203 free_cons (c.tag); | |
617 | 2204 return c.val; |
428 | 2205 } |
2206 | |
2207 static Lisp_Object | |
2208 run_condition_case_handlers (Lisp_Object val, Lisp_Object var) | |
2209 { | |
2210 /* This function can GC */ | |
2211 #if 0 /* FSFmacs */ | |
2212 if (!NILP (h.var)) | |
2213 specbind (h.var, c.val); | |
2214 val = Fprogn (Fcdr (h.chosen_clause)); | |
2215 | |
2216 /* Note that this just undoes the binding of h.var; whoever | |
2217 longjmp()ed to us unwound the stack to c.pdlcount before | |
2218 throwing. */ | |
771 | 2219 unbind_to (c.pdlcount); |
428 | 2220 return val; |
2221 #else | |
2222 int speccount; | |
2223 | |
2224 CHECK_TRUE_LIST (val); | |
2225 if (NILP (var)) | |
2226 return Fprogn (Fcdr (val)); /* tail call */ | |
2227 | |
2228 speccount = specpdl_depth(); | |
2229 specbind (var, Fcar (val)); | |
2230 val = Fprogn (Fcdr (val)); | |
771 | 2231 return unbind_to_1 (speccount, val); |
428 | 2232 #endif |
2233 } | |
2234 | |
2235 /* Here for bytecode to call non-consfully. This is exactly like | |
2236 condition-case except that it takes three arguments rather | |
2237 than a single list of arguments. */ | |
2238 Lisp_Object | |
2239 condition_case_3 (Lisp_Object bodyform, Lisp_Object var, Lisp_Object handlers) | |
2240 { | |
2241 /* This function can GC */ | |
2242 EXTERNAL_LIST_LOOP_2 (handler, handlers) | |
2243 { | |
2244 if (NILP (handler)) | |
2245 ; | |
2246 else if (CONSP (handler)) | |
2247 { | |
2248 Lisp_Object conditions = XCAR (handler); | |
2249 /* CONDITIONS must a condition name or a list of condition names */ | |
2250 if (SYMBOLP (conditions)) | |
2251 ; | |
2252 else | |
2253 { | |
2254 EXTERNAL_LIST_LOOP_2 (condition, conditions) | |
2255 if (!SYMBOLP (condition)) | |
2256 goto invalid_condition_handler; | |
2257 } | |
2258 } | |
2259 else | |
2260 { | |
2261 invalid_condition_handler: | |
563 | 2262 sferror ("Invalid condition handler", handler); |
428 | 2263 } |
2264 } | |
2265 | |
2266 CHECK_SYMBOL (var); | |
2267 | |
2268 return condition_case_1 (handlers, | |
2269 Feval, bodyform, | |
2270 run_condition_case_handlers, | |
2271 var); | |
2272 } | |
2273 | |
2274 DEFUN ("condition-case", Fcondition_case, 2, UNEVALLED, 0, /* | |
2275 Regain control when an error is signalled. | |
2276 Usage looks like (condition-case VAR BODYFORM HANDLERS...). | |
2277 Executes BODYFORM and returns its value if no error happens. | |
2278 Each element of HANDLERS looks like (CONDITION-NAME BODY...) | |
2279 where the BODY is made of Lisp expressions. | |
2280 | |
771 | 2281 A typical usage of `condition-case' looks like this: |
2282 | |
2283 (condition-case nil | |
2284 ;; you need a progn here if you want more than one statement ... | |
2285 (progn | |
2286 (do-something) | |
2287 (do-something-else)) | |
2288 (error | |
2289 (issue-warning-or) | |
2290 ;; but strangely, you don't need one here. | |
2291 (return-a-value-etc) | |
2292 )) | |
2293 | |
428 | 2294 A handler is applicable to an error if CONDITION-NAME is one of the |
2295 error's condition names. If an error happens, the first applicable | |
2296 handler is run. As a special case, a CONDITION-NAME of t matches | |
2297 all errors, even those without the `error' condition name on them | |
2298 \(e.g. `quit'). | |
2299 | |
2300 The car of a handler may be a list of condition names | |
2301 instead of a single condition name. | |
2302 | |
2303 When a handler handles an error, | |
2304 control returns to the condition-case and the handler BODY... is executed | |
2305 with VAR bound to (SIGNALED-CONDITIONS . SIGNAL-DATA). | |
2306 VAR may be nil; then you do not get access to the signal information. | |
2307 | |
2308 The value of the last BODY form is returned from the condition-case. | |
2309 See also the function `signal' for more info. | |
2310 | |
2311 Note that at the time the condition handler is invoked, the Lisp stack | |
2312 and the current catches, condition-cases, and bindings have all been | |
2313 popped back to the state they were in just before the call to | |
2314 `condition-case'. This means that resignalling the error from | |
2315 within the handler will not result in an infinite loop. | |
2316 | |
2317 If you want to establish an error handler that is called with the | |
2318 Lisp stack, bindings, etc. as they were when `signal' was called, | |
2319 rather than when the handler was set, use `call-with-condition-handler'. | |
2320 */ | |
2321 (args)) | |
2322 { | |
2323 /* This function can GC */ | |
2324 Lisp_Object var = XCAR (args); | |
2325 Lisp_Object bodyform = XCAR (XCDR (args)); | |
2326 Lisp_Object handlers = XCDR (XCDR (args)); | |
2327 return condition_case_3 (bodyform, var, handlers); | |
2328 } | |
2329 | |
2330 DEFUN ("call-with-condition-handler", Fcall_with_condition_handler, 2, MANY, 0, /* | |
4693
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
2331 Call FUNCTION with arguments ARGS, regaining control on error. |
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
2332 |
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
2333 This function is similar to `condition-case', but HANDLER is invoked |
428 | 2334 with the same environment (Lisp stack, bindings, catches, condition-cases) |
2335 that was current when `signal' was called, rather than when the handler | |
2336 was established. | |
2337 | |
2338 HANDLER should be a function of one argument, which is a cons of the args | |
2339 \(SIG . DATA) that were passed to `signal'. It is invoked whenever | |
2340 `signal' is called (this differs from `condition-case', which allows | |
2341 you to specify which errors are trapped). If the handler function | |
2342 returns, `signal' continues as if the handler were never invoked. | |
2343 \(It continues to look for handlers established earlier than this one, | |
2344 and invokes the standard error-handler if none is found.) | |
4693
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
2345 |
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
2346 arguments: (HANDLER FUNCTION &rest ARGS) |
428 | 2347 */ |
2348 (int nargs, Lisp_Object *args)) /* Note! Args side-effected! */ | |
2349 { | |
2350 /* This function can GC */ | |
2351 int speccount = specpdl_depth(); | |
2352 Lisp_Object tem; | |
2353 | |
853 | 2354 tem = Ffunction_max_args (args[0]); |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
2355 if (! (XFIXNUM (Ffunction_min_args (args[0])) <= 1 |
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
2356 && (NILP (tem) || 1 <= XFIXNUM (tem)))) |
853 | 2357 invalid_argument ("Must be function of one argument", args[0]); |
2358 | |
2359 /* (handler-fun . handler-args) but currently there are no handler-args */ | |
428 | 2360 tem = noseeum_cons (list1 (args[0]), Vcondition_handlers); |
2361 record_unwind_protect (condition_bind_unwind, tem); | |
2362 Vcondition_handlers = tem; | |
2363 | |
2364 /* Caller should have GC-protected args */ | |
771 | 2365 return unbind_to_1 (speccount, Ffuncall (nargs - 1, args + 1)); |
428 | 2366 } |
2367 | |
853 | 2368 /* This is the C version of the above function. It calls FUN, passing it |
2369 ARG, first setting up HANDLER to catch signals in the environment in | |
2370 which they were signalled. (HANDLER is only invoked if there was no | |
2371 handler (either from condition-case or call-with-condition-handler) set | |
2372 later on that handled the signal; therefore, this is a real error. | |
2373 | |
2374 HANDLER is invoked with three arguments: the ERROR-SYMBOL and DATA as | |
2375 passed to `signal', and HANDLER_ARG. Originally I made HANDLER_ARG and | |
2376 ARG be void * to facilitate passing structures, but I changed to | |
2377 Lisp_Objects because all the other C interfaces to catch/condition-case/etc. | |
2378 take Lisp_Objects, and it is easy enough to use make_opaque_ptr() et al. | |
2379 to convert between Lisp_Objects and structure pointers. */ | |
2380 | |
2381 Lisp_Object | |
2382 call_with_condition_handler (Lisp_Object (*handler) (Lisp_Object, Lisp_Object, | |
2383 Lisp_Object), | |
2384 Lisp_Object handler_arg, | |
2385 Lisp_Object (*fun) (Lisp_Object), | |
2386 Lisp_Object arg) | |
2387 { | |
2388 /* This function can GC */ | |
1111 | 2389 int speccount = specpdl_depth (); |
853 | 2390 Lisp_Object tem; |
2391 | |
2392 /* ((handler-fun . (handler-arg . nil)) ... ) */ | |
1111 | 2393 tem = noseeum_cons (noseeum_cons (make_opaque_ptr ((void *) handler), |
853 | 2394 noseeum_cons (handler_arg, Qnil)), |
2395 Vcondition_handlers); | |
2396 record_unwind_protect (condition_bind_unwind, tem); | |
2397 Vcondition_handlers = tem; | |
2398 | |
2399 return unbind_to_1 (speccount, (*fun) (arg)); | |
2400 } | |
2401 | |
428 | 2402 static int |
2403 condition_type_p (Lisp_Object type, Lisp_Object conditions) | |
2404 { | |
2405 if (EQ (type, Qt)) | |
2406 /* (condition-case c # (t c)) catches -all- signals | |
2407 * Use with caution! */ | |
2408 return 1; | |
2409 | |
2410 if (SYMBOLP (type)) | |
2411 return !NILP (Fmemq (type, conditions)); | |
2412 | |
2413 for (; CONSP (type); type = XCDR (type)) | |
2414 if (!NILP (Fmemq (XCAR (type), conditions))) | |
2415 return 1; | |
2416 | |
2417 return 0; | |
2418 } | |
2419 | |
2420 static Lisp_Object | |
2421 return_from_signal (Lisp_Object value) | |
2422 { | |
2423 #if 1 | |
2424 /* Most callers are not prepared to handle gc if this | |
2425 returns. So, since this feature is not very useful, | |
2426 take it out. */ | |
2427 /* Have called debugger; return value to signaller */ | |
2428 return value; | |
2429 #else /* But the reality is that that stinks, because: */ | |
2430 /* GACK!!! Really want some way for debug-on-quit errors | |
2431 to be continuable!! */ | |
563 | 2432 signal_error (Qunimplemented, |
2433 "Returning a value from an error is no longer supported", | |
2434 Qunbound); | |
428 | 2435 #endif |
2436 } | |
2437 | |
2438 | |
2439 /************************************************************************/ | |
2440 /* the workhorse error-signaling function */ | |
2441 /************************************************************************/ | |
2442 | |
853 | 2443 /* This exists only for debugging purposes, as a place to put a breakpoint |
2444 that won't get signalled for errors occurring when | |
2445 call_with_suspended_errors() was invoked. */ | |
2446 | |
872 | 2447 /* Don't make static or it might be compiled away */ |
2448 void signal_1 (void); | |
2449 | |
2450 void | |
853 | 2451 signal_1 (void) |
2452 { | |
2453 } | |
2454 | |
428 | 2455 /* #### This function has not been synched with FSF. It diverges |
2456 significantly. */ | |
2457 | |
853 | 2458 /* The simplest external error function: it would be called |
2459 signal_continuable_error() in the terminology below, but it's | |
2460 Lisp-callable. */ | |
2461 | |
2462 DEFUN ("signal", Fsignal, 2, 2, 0, /* | |
2463 Signal a continuable error. Args are ERROR-SYMBOL, and associated DATA. | |
2464 An error symbol is a symbol defined using `define-error'. | |
2465 DATA should be a list. Its elements are printed as part of the error message. | |
2466 If the signal is handled, DATA is made available to the handler. | |
2467 See also the function `signal-error', and the functions to handle errors: | |
2468 `condition-case' and `call-with-condition-handler'. | |
2469 | |
2470 Note that this function can return, if the debugger is invoked and the | |
2471 user invokes the "return from signal" option. | |
2472 */ | |
2473 (error_symbol, data)) | |
428 | 2474 { |
2475 /* This function can GC */ | |
853 | 2476 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; |
2477 Lisp_Object conditions = Qnil; | |
2478 Lisp_Object handlers = Qnil; | |
428 | 2479 /* signal_call_debugger() could get called more than once |
2480 (once when a call-with-condition-handler is about to | |
2481 be dealt with, and another when a condition-case handler | |
2482 is about to be invoked). So make sure the debugger and/or | |
2483 stack trace aren't done more than once. */ | |
2484 int stack_trace_displayed = 0; | |
2485 int debugger_entered = 0; | |
853 | 2486 |
2487 /* Fsignal() is one of these functions that's called all the time | |
2488 with newly-created Lisp objects. We allow this; but we must GC- | |
2489 protect the objects because all sorts of weird stuff could | |
2490 happen. */ | |
2491 | |
2492 GCPRO4 (conditions, handlers, error_symbol, data); | |
2493 | |
2494 if (!(inhibit_flags & CALL_WITH_SUSPENDED_ERRORS)) | |
2495 signal_1 (); | |
428 | 2496 |
2497 if (!initialized) | |
2498 { | |
2499 /* who knows how much has been initialized? Safest bet is | |
2500 just to bomb out immediately. */ | |
771 | 2501 stderr_out ("Error before initialization is complete!\n"); |
2500 | 2502 ABORT (); |
428 | 2503 } |
2504 | |
3092 | 2505 #ifndef NEW_GC |
1123 | 2506 assert (!gc_in_progress); |
3092 | 2507 #endif /* not NEW_GC */ |
1123 | 2508 |
2509 /* We abort if in_display and we are not protected, as garbage | |
2510 collections and non-local exits will invariably be fatal, but in | |
2511 messy, difficult-to-debug ways. See enter_redisplay_critical_section(). | |
2512 */ | |
2513 | |
1318 | 2514 #ifdef ERROR_CHECK_TRAPPING_PROBLEMS |
1123 | 2515 check_proper_critical_section_nonlocal_exit_protection (); |
1318 | 2516 #endif |
428 | 2517 |
853 | 2518 conditions = Fget (error_symbol, Qerror_conditions, Qnil); |
428 | 2519 |
2520 for (handlers = Vcondition_handlers; | |
2521 CONSP (handlers); | |
2522 handlers = XCDR (handlers)) | |
2523 { | |
2524 Lisp_Object handler_fun = XCAR (XCAR (handlers)); | |
2525 Lisp_Object handler_data = XCDR (XCAR (handlers)); | |
2526 Lisp_Object outer_handlers = XCDR (handlers); | |
2527 | |
2528 if (!UNBOUNDP (handler_fun)) | |
2529 { | |
2530 /* call-with-condition-handler */ | |
2531 Lisp_Object tem; | |
2532 Lisp_Object all_handlers = Vcondition_handlers; | |
2533 struct gcpro ngcpro1; | |
2534 NGCPRO1 (all_handlers); | |
2535 Vcondition_handlers = outer_handlers; | |
2536 | |
853 | 2537 tem = signal_call_debugger (conditions, error_symbol, data, |
428 | 2538 outer_handlers, 1, |
2539 &stack_trace_displayed, | |
2540 &debugger_entered); | |
2541 if (!UNBOUNDP (tem)) | |
2542 RETURN_NUNGCPRO (return_from_signal (tem)); | |
2543 | |
853 | 2544 if (OPAQUE_PTRP (handler_fun)) |
2545 { | |
2546 if (NILP (handler_data)) | |
2547 { | |
2548 Lisp_Object (*hfun) (Lisp_Object, Lisp_Object) = | |
2549 (Lisp_Object (*) (Lisp_Object, Lisp_Object)) | |
2550 (get_opaque_ptr (handler_fun)); | |
2551 | |
2552 tem = (*hfun) (error_symbol, data); | |
2553 } | |
2554 else | |
2555 { | |
2556 Lisp_Object (*hfun) (Lisp_Object, Lisp_Object, Lisp_Object) = | |
2557 (Lisp_Object (*) (Lisp_Object, Lisp_Object, Lisp_Object)) | |
2558 (get_opaque_ptr (handler_fun)); | |
2559 | |
2560 assert (NILP (XCDR (handler_data))); | |
2561 tem = (*hfun) (error_symbol, data, XCAR (handler_data)); | |
2562 } | |
2563 } | |
2564 else | |
2565 { | |
2566 tem = Fcons (error_symbol, data); | |
2567 if (NILP (handler_data)) | |
2568 tem = call1 (handler_fun, tem); | |
2569 else | |
2570 { | |
2571 /* (This code won't be used (for now?).) */ | |
2572 struct gcpro nngcpro1; | |
2573 Lisp_Object args[3]; | |
2574 NNGCPRO1 (args[0]); | |
2575 nngcpro1.nvars = 3; | |
2576 args[0] = handler_fun; | |
2577 args[1] = tem; | |
2578 args[2] = handler_data; | |
2579 nngcpro1.var = args; | |
2580 tem = Fapply (3, args); | |
2581 NNUNGCPRO; | |
2582 } | |
2583 } | |
428 | 2584 NUNGCPRO; |
2585 #if 0 | |
2586 if (!EQ (tem, Qsignal)) | |
2587 return return_from_signal (tem); | |
2588 #endif | |
2589 /* If handler didn't throw, try another handler */ | |
2590 Vcondition_handlers = all_handlers; | |
2591 } | |
2592 | |
2593 /* It's a condition-case handler */ | |
2594 | |
2595 /* t is used by handlers for all conditions, set up by C code. | |
2596 * debugger is not called even if debug_on_error */ | |
2597 else if (EQ (handler_data, Qt)) | |
2598 { | |
2599 UNGCPRO; | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
2600 throw_or_bomb_out (handlers, Fcons (error_symbol, data), |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
2601 0, Qnil, Qnil); |
428 | 2602 } |
2603 /* `error' is used similarly to the way `t' is used, but in | |
2604 addition it invokes the debugger if debug_on_error. | |
2605 This is normally used for the outer command-loop error | |
2606 handler. */ | |
2607 else if (EQ (handler_data, Qerror)) | |
2608 { | |
853 | 2609 Lisp_Object tem = signal_call_debugger (conditions, error_symbol, |
2610 data, | |
428 | 2611 outer_handlers, 0, |
2612 &stack_trace_displayed, | |
2613 &debugger_entered); | |
2614 | |
2615 UNGCPRO; | |
2616 if (!UNBOUNDP (tem)) | |
2617 return return_from_signal (tem); | |
2618 | |
853 | 2619 tem = Fcons (error_symbol, data); |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
2620 throw_or_bomb_out (handlers, tem, 0, Qnil, Qnil); |
428 | 2621 } |
2622 else | |
2623 { | |
2624 /* handler established by real (Lisp) condition-case */ | |
2625 Lisp_Object h; | |
2626 | |
2627 for (h = handler_data; CONSP (h); h = Fcdr (h)) | |
2628 { | |
2629 Lisp_Object clause = Fcar (h); | |
2630 Lisp_Object tem = Fcar (clause); | |
2631 | |
2632 if (condition_type_p (tem, conditions)) | |
2633 { | |
853 | 2634 tem = signal_call_debugger (conditions, error_symbol, data, |
428 | 2635 outer_handlers, 1, |
2636 &stack_trace_displayed, | |
2637 &debugger_entered); | |
2638 UNGCPRO; | |
2639 if (!UNBOUNDP (tem)) | |
2640 return return_from_signal (tem); | |
2641 | |
2642 /* Doesn't return */ | |
853 | 2643 tem = Fcons (Fcons (error_symbol, data), Fcdr (clause)); |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
2644 throw_or_bomb_out (handlers, tem, 0, Qnil, Qnil); |
428 | 2645 } |
2646 } | |
2647 } | |
2648 } | |
2649 | |
2650 /* If no handler is present now, try to run the debugger, | |
2651 and if that fails, throw to top level. | |
2652 | |
2653 #### The only time that no handler is present is during | |
2654 temacs or perhaps very early in XEmacs. In both cases, | |
3025 | 2655 there is no `top-level' catch. (That's why the |
428 | 2656 "bomb-out" hack was added.) |
2657 | |
853 | 2658 [[#### Fix this horrifitude!]] |
2659 | |
2660 I don't think this is horrifitude, but just defensive coding. --ben */ | |
2661 | |
2662 signal_call_debugger (conditions, error_symbol, data, Qnil, 0, | |
428 | 2663 &stack_trace_displayed, |
2664 &debugger_entered); | |
2665 UNGCPRO; | |
853 | 2666 throw_or_bomb_out (Qtop_level, Qt, 1, error_symbol, |
2667 data); /* Doesn't return */ | |
2268 | 2668 RETURN_NOT_REACHED (Qnil); |
428 | 2669 } |
2670 | |
2671 /****************** Error functions class 1 ******************/ | |
2672 | |
2673 /* Class 1: General functions that signal an error. | |
2674 These functions take an error type and a list of associated error | |
2675 data. */ | |
2676 | |
853 | 2677 /* No signal_continuable_error_1(); it's called Fsignal(). */ |
428 | 2678 |
2679 /* Signal a non-continuable error. */ | |
2680 | |
2681 DOESNT_RETURN | |
563 | 2682 signal_error_1 (Lisp_Object sig, Lisp_Object data) |
428 | 2683 { |
2684 for (;;) | |
2685 Fsignal (sig, data); | |
2686 } | |
853 | 2687 |
2688 #ifdef ERROR_CHECK_CATCH | |
2689 | |
2690 void | |
2691 check_catchlist_sanity (void) | |
2692 { | |
2693 #if 0 | |
2694 /* vou me tomar no cu! i just masked andy's missing-unbind | |
2695 bug! */ | |
442 | 2696 struct catchtag *c; |
2697 int found_error_tag = 0; | |
2698 | |
2699 for (c = catchlist; c; c = c->next) | |
2700 { | |
2701 if (EQ (c->tag, Qunbound_suspended_errors_tag)) | |
2702 { | |
2703 found_error_tag = 1; | |
2704 break; | |
2705 } | |
2706 } | |
2707 | |
2708 assert (found_error_tag || NILP (Vcurrent_error_state)); | |
853 | 2709 #endif /* vou me tomar no cul */ |
2710 } | |
2711 | |
2712 void | |
2713 check_specbind_stack_sanity (void) | |
2714 { | |
2715 } | |
2716 | |
2717 #endif /* ERROR_CHECK_CATCH */ | |
428 | 2718 |
2719 /* Signal a non-continuable error or display a warning or do nothing, | |
2720 according to ERRB. CLASS is the class of warning and should | |
2721 refer to what sort of operation is being done (e.g. Qtoolbar, | |
2722 Qresource, etc.). */ | |
2723 | |
2724 void | |
1204 | 2725 maybe_signal_error_1 (Lisp_Object sig, Lisp_Object data, Lisp_Object class_, |
578 | 2726 Error_Behavior errb) |
428 | 2727 { |
2728 if (ERRB_EQ (errb, ERROR_ME_NOT)) | |
2729 return; | |
793 | 2730 else if (ERRB_EQ (errb, ERROR_ME_DEBUG_WARN)) |
1204 | 2731 warn_when_safe_lispobj (class_, Qdebug, Fcons (sig, data)); |
428 | 2732 else if (ERRB_EQ (errb, ERROR_ME_WARN)) |
1204 | 2733 warn_when_safe_lispobj (class_, Qwarning, Fcons (sig, data)); |
428 | 2734 else |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
2735 signal_error_1 (sig, data); |
428 | 2736 } |
2737 | |
2738 /* Signal a continuable error or display a warning or do nothing, | |
2739 according to ERRB. */ | |
2740 | |
2741 Lisp_Object | |
563 | 2742 maybe_signal_continuable_error_1 (Lisp_Object sig, Lisp_Object data, |
1204 | 2743 Lisp_Object class_, Error_Behavior errb) |
428 | 2744 { |
2745 if (ERRB_EQ (errb, ERROR_ME_NOT)) | |
2746 return Qnil; | |
793 | 2747 else if (ERRB_EQ (errb, ERROR_ME_DEBUG_WARN)) |
2748 { | |
1204 | 2749 warn_when_safe_lispobj (class_, Qdebug, Fcons (sig, data)); |
793 | 2750 return Qnil; |
2751 } | |
428 | 2752 else if (ERRB_EQ (errb, ERROR_ME_WARN)) |
2753 { | |
1204 | 2754 warn_when_safe_lispobj (class_, Qwarning, Fcons (sig, data)); |
428 | 2755 return Qnil; |
2756 } | |
2757 else | |
2758 return Fsignal (sig, data); | |
2759 } | |
2760 | |
2761 | |
2762 /****************** Error functions class 2 ******************/ | |
2763 | |
563 | 2764 /* Class 2: Signal an error with a string and an associated object. |
2765 Normally these functions are used to attach one associated object, | |
2766 but to attach no objects, specify Qunbound for FROB, and for more | |
2767 than one object, make a list of the objects with Qunbound as the | |
2768 first element. (If you have specifically two objects to attach, | |
2769 consider using the function in class 3 below.) These functions | |
2770 signal an error of a specified type, whose data is one or more | |
2771 objects (usually two), a string the related Lisp object(s) | |
2772 specified as FROB. */ | |
2773 | |
2774 /* Out of REASON and FROB, return a list of elements suitable for passing | |
2775 to signal_error_1(). */ | |
2776 | |
2777 Lisp_Object | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2778 build_error_data (const Ascbyte *reason, Lisp_Object frob) |
563 | 2779 { |
2780 if (EQ (frob, Qunbound)) | |
2781 frob = Qnil; | |
2782 else if (CONSP (frob) && EQ (XCAR (frob), Qunbound)) | |
2783 frob = XCDR (frob); | |
2784 else | |
2785 frob = list1 (frob); | |
2786 if (!reason) | |
2787 return frob; | |
2788 else | |
771 | 2789 return Fcons (build_msg_string (reason), frob); |
563 | 2790 } |
2791 | |
2792 DOESNT_RETURN | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2793 signal_error (Lisp_Object type, const Ascbyte *reason, Lisp_Object frob) |
563 | 2794 { |
2795 signal_error_1 (type, build_error_data (reason, frob)); | |
2796 } | |
2797 | |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
2798 /* NOTE NOTE NOTE: If you feel you need signal_ierror() or something |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
2799 similar when reason is a non-ASCII message, you're probably doing |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
2800 something wrong. When you have an error message from an external |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
2801 source, you should put the error message as the first item in FROB and |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
2802 put a string in REASON indicating what you were doing when the error |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
2803 message occurred. Use signal_error_2() for such a case. */ |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
2804 |
563 | 2805 void |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2806 maybe_signal_error (Lisp_Object type, const Ascbyte *reason, |
1204 | 2807 Lisp_Object frob, Lisp_Object class_, |
578 | 2808 Error_Behavior errb) |
563 | 2809 { |
2810 /* Optimization: */ | |
2811 if (ERRB_EQ (errb, ERROR_ME_NOT)) | |
2812 return; | |
1204 | 2813 maybe_signal_error_1 (type, build_error_data (reason, frob), class_, errb); |
563 | 2814 } |
2815 | |
2816 Lisp_Object | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2817 signal_continuable_error (Lisp_Object type, const Ascbyte *reason, |
563 | 2818 Lisp_Object frob) |
2819 { | |
2820 return Fsignal (type, build_error_data (reason, frob)); | |
2821 } | |
2822 | |
2823 Lisp_Object | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2824 maybe_signal_continuable_error (Lisp_Object type, const Ascbyte *reason, |
1204 | 2825 Lisp_Object frob, Lisp_Object class_, |
578 | 2826 Error_Behavior errb) |
563 | 2827 { |
2828 /* Optimization: */ | |
2829 if (ERRB_EQ (errb, ERROR_ME_NOT)) | |
2830 return Qnil; | |
2831 return maybe_signal_continuable_error_1 (type, | |
2832 build_error_data (reason, frob), | |
1204 | 2833 class_, errb); |
563 | 2834 } |
2835 | |
2836 | |
2837 /****************** Error functions class 3 ******************/ | |
2838 | |
2839 /* Class 3: Signal an error with a string and two associated objects. | |
2840 These functions signal an error of a specified type, whose data | |
2841 is three objects, a string and two related Lisp objects. | |
2842 (The equivalent could be accomplished using the class 2 functions, | |
2843 but these are more convenient in this particular case.) */ | |
2844 | |
2845 DOESNT_RETURN | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2846 signal_error_2 (Lisp_Object type, const Ascbyte *reason, |
563 | 2847 Lisp_Object frob0, Lisp_Object frob1) |
2848 { | |
771 | 2849 signal_error_1 (type, list3 (build_msg_string (reason), frob0, |
563 | 2850 frob1)); |
2851 } | |
2852 | |
2853 void | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2854 maybe_signal_error_2 (Lisp_Object type, const Ascbyte *reason, |
563 | 2855 Lisp_Object frob0, Lisp_Object frob1, |
1204 | 2856 Lisp_Object class_, Error_Behavior errb) |
563 | 2857 { |
2858 /* Optimization: */ | |
2859 if (ERRB_EQ (errb, ERROR_ME_NOT)) | |
2860 return; | |
771 | 2861 maybe_signal_error_1 (type, list3 (build_msg_string (reason), frob0, |
1204 | 2862 frob1), class_, errb); |
563 | 2863 } |
2864 | |
2865 Lisp_Object | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2866 signal_continuable_error_2 (Lisp_Object type, const Ascbyte *reason, |
563 | 2867 Lisp_Object frob0, Lisp_Object frob1) |
2868 { | |
771 | 2869 return Fsignal (type, list3 (build_msg_string (reason), frob0, |
563 | 2870 frob1)); |
2871 } | |
2872 | |
2873 Lisp_Object | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2874 maybe_signal_continuable_error_2 (Lisp_Object type, const Ascbyte *reason, |
563 | 2875 Lisp_Object frob0, Lisp_Object frob1, |
1204 | 2876 Lisp_Object class_, Error_Behavior errb) |
563 | 2877 { |
2878 /* Optimization: */ | |
2879 if (ERRB_EQ (errb, ERROR_ME_NOT)) | |
2880 return Qnil; | |
2881 return maybe_signal_continuable_error_1 | |
771 | 2882 (type, list3 (build_msg_string (reason), frob0, frob1), |
1204 | 2883 class_, errb); |
563 | 2884 } |
2885 | |
2886 | |
2887 /****************** Error functions class 4 ******************/ | |
2888 | |
2889 /* Class 4: Printf-like functions that signal an error. | |
442 | 2890 These functions signal an error of a specified type, whose data |
428 | 2891 is a single string, created using the arguments. */ |
2892 | |
2893 DOESNT_RETURN | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2894 signal_ferror (Lisp_Object type, const Ascbyte *fmt, ...) |
442 | 2895 { |
2896 Lisp_Object obj; | |
2897 va_list args; | |
2898 | |
2899 va_start (args, fmt); | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2900 obj = emacs_vsprintf_string (GETTEXT (fmt), args); |
442 | 2901 va_end (args); |
2902 | |
2903 /* Fsignal GC-protects its args */ | |
563 | 2904 signal_error (type, 0, obj); |
442 | 2905 } |
2906 | |
2907 void | |
1204 | 2908 maybe_signal_ferror (Lisp_Object type, Lisp_Object class_, Error_Behavior errb, |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2909 const Ascbyte *fmt, ...) |
442 | 2910 { |
2911 Lisp_Object obj; | |
2912 va_list args; | |
2913 | |
2914 /* Optimization: */ | |
2915 if (ERRB_EQ (errb, ERROR_ME_NOT)) | |
2916 return; | |
2917 | |
2918 va_start (args, fmt); | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2919 obj = emacs_vsprintf_string (GETTEXT (fmt), args); |
442 | 2920 va_end (args); |
2921 | |
2922 /* Fsignal GC-protects its args */ | |
1204 | 2923 maybe_signal_error (type, 0, obj, class_, errb); |
442 | 2924 } |
2925 | |
2926 Lisp_Object | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2927 signal_continuable_ferror (Lisp_Object type, const Ascbyte *fmt, ...) |
428 | 2928 { |
2929 Lisp_Object obj; | |
2930 va_list args; | |
2931 | |
2932 va_start (args, fmt); | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2933 obj = emacs_vsprintf_string (GETTEXT (fmt), args); |
442 | 2934 va_end (args); |
2935 | |
2936 /* Fsignal GC-protects its args */ | |
2937 return Fsignal (type, list1 (obj)); | |
2938 } | |
2939 | |
2940 Lisp_Object | |
1204 | 2941 maybe_signal_continuable_ferror (Lisp_Object type, Lisp_Object class_, |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2942 Error_Behavior errb, const Ascbyte *fmt, ...) |
442 | 2943 { |
2944 Lisp_Object obj; | |
2945 va_list args; | |
2946 | |
2947 /* Optimization: */ | |
2948 if (ERRB_EQ (errb, ERROR_ME_NOT)) | |
2949 return Qnil; | |
2950 | |
2951 va_start (args, fmt); | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2952 obj = emacs_vsprintf_string (GETTEXT (fmt), args); |
442 | 2953 va_end (args); |
2954 | |
2955 /* Fsignal GC-protects its args */ | |
1204 | 2956 return maybe_signal_continuable_error (type, 0, obj, class_, errb); |
442 | 2957 } |
2958 | |
2959 | |
2960 /****************** Error functions class 5 ******************/ | |
2961 | |
563 | 2962 /* Class 5: Printf-like functions that signal an error. |
442 | 2963 These functions signal an error of a specified type, whose data |
563 | 2964 is a one or more objects, a string (created using the arguments) |
2965 and additional Lisp objects specified in FROB. (The syntax of FROB | |
2966 is the same as for class 2.) | |
2967 | |
2968 There is no need for a class 6 because you can always attach 2 | |
2969 objects using class 5 (for FROB, specify a list with three | |
2970 elements, the first of which is Qunbound), and these functions are | |
2971 not commonly used. | |
2972 */ | |
442 | 2973 |
2974 DOESNT_RETURN | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2975 signal_ferror_with_frob (Lisp_Object type, Lisp_Object frob, const Ascbyte *fmt, |
563 | 2976 ...) |
442 | 2977 { |
2978 Lisp_Object obj; | |
2979 va_list args; | |
2980 | |
2981 va_start (args, fmt); | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2982 obj = emacs_vsprintf_string (GETTEXT (fmt), args); |
442 | 2983 va_end (args); |
2984 | |
2985 /* Fsignal GC-protects its args */ | |
563 | 2986 signal_error_1 (type, Fcons (obj, build_error_data (0, frob))); |
442 | 2987 } |
2988 | |
2989 void | |
563 | 2990 maybe_signal_ferror_with_frob (Lisp_Object type, Lisp_Object frob, |
1204 | 2991 Lisp_Object class_, Error_Behavior errb, |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2992 const Ascbyte *fmt, ...) |
442 | 2993 { |
2994 Lisp_Object obj; | |
2995 va_list args; | |
2996 | |
2997 /* Optimization: */ | |
2998 if (ERRB_EQ (errb, ERROR_ME_NOT)) | |
2999 return; | |
3000 | |
3001 va_start (args, fmt); | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3002 obj = emacs_vsprintf_string (GETTEXT (fmt), args); |
428 | 3003 va_end (args); |
3004 | |
3005 /* Fsignal GC-protects its args */ | |
1204 | 3006 maybe_signal_error_1 (type, Fcons (obj, build_error_data (0, frob)), class_, |
563 | 3007 errb); |
428 | 3008 } |
3009 | |
3010 Lisp_Object | |
563 | 3011 signal_continuable_ferror_with_frob (Lisp_Object type, Lisp_Object frob, |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3012 const Ascbyte *fmt, ...) |
428 | 3013 { |
3014 Lisp_Object obj; | |
3015 va_list args; | |
3016 | |
3017 va_start (args, fmt); | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3018 obj = emacs_vsprintf_string (GETTEXT (fmt), args); |
428 | 3019 va_end (args); |
3020 | |
3021 /* Fsignal GC-protects its args */ | |
563 | 3022 return Fsignal (type, Fcons (obj, build_error_data (0, frob))); |
428 | 3023 } |
3024 | |
3025 Lisp_Object | |
563 | 3026 maybe_signal_continuable_ferror_with_frob (Lisp_Object type, Lisp_Object frob, |
1204 | 3027 Lisp_Object class_, |
578 | 3028 Error_Behavior errb, |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3029 const Ascbyte *fmt, ...) |
428 | 3030 { |
3031 Lisp_Object obj; | |
3032 va_list args; | |
3033 | |
3034 /* Optimization: */ | |
3035 if (ERRB_EQ (errb, ERROR_ME_NOT)) | |
3036 return Qnil; | |
3037 | |
3038 va_start (args, fmt); | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3039 obj = emacs_vsprintf_string (GETTEXT (fmt), args); |
428 | 3040 va_end (args); |
3041 | |
3042 /* Fsignal GC-protects its args */ | |
563 | 3043 return maybe_signal_continuable_error_1 (type, |
3044 Fcons (obj, | |
3045 build_error_data (0, frob)), | |
1204 | 3046 class_, errb); |
428 | 3047 } |
3048 | |
3049 | |
3050 /* This is what the QUIT macro calls to signal a quit */ | |
3051 void | |
3052 signal_quit (void) | |
3053 { | |
853 | 3054 /* This function cannot GC. GC is prohibited because most callers do |
3055 not expect GC occurring in QUIT. Remove this if/when that gets fixed. | |
3056 --ben */ | |
3057 | |
3058 int count; | |
3059 | |
428 | 3060 if (EQ (Vquit_flag, Qcritical)) |
3061 debug_on_quit |= 2; /* set critical bit. */ | |
3062 Vquit_flag = Qnil; | |
853 | 3063 count = begin_gc_forbidden (); |
428 | 3064 /* note that this is continuable. */ |
3065 Fsignal (Qquit, Qnil); | |
853 | 3066 unbind_to (count); |
428 | 3067 } |
3068 | |
3069 | |
563 | 3070 /************************ convenience error functions ***********************/ |
3071 | |
436 | 3072 Lisp_Object |
428 | 3073 signal_void_function_error (Lisp_Object function) |
3074 { | |
436 | 3075 return Fsignal (Qvoid_function, list1 (function)); |
428 | 3076 } |
3077 | |
436 | 3078 Lisp_Object |
428 | 3079 signal_invalid_function_error (Lisp_Object function) |
3080 { | |
436 | 3081 return Fsignal (Qinvalid_function, list1 (function)); |
428 | 3082 } |
3083 | |
436 | 3084 Lisp_Object |
428 | 3085 signal_wrong_number_of_arguments_error (Lisp_Object function, int nargs) |
3086 { | |
436 | 3087 return Fsignal (Qwrong_number_of_arguments, |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
3088 list2 (function, make_fixnum (nargs))); |
428 | 3089 } |
3090 | |
3091 /* Used in list traversal macros for efficiency. */ | |
436 | 3092 DOESNT_RETURN |
428 | 3093 signal_malformed_list_error (Lisp_Object list) |
3094 { | |
563 | 3095 signal_error (Qmalformed_list, 0, list); |
428 | 3096 } |
3097 | |
436 | 3098 DOESNT_RETURN |
428 | 3099 signal_malformed_property_list_error (Lisp_Object list) |
3100 { | |
563 | 3101 signal_error (Qmalformed_property_list, 0, list); |
428 | 3102 } |
3103 | |
436 | 3104 DOESNT_RETURN |
428 | 3105 signal_circular_list_error (Lisp_Object list) |
3106 { | |
563 | 3107 signal_error (Qcircular_list, 0, list); |
428 | 3108 } |
3109 | |
436 | 3110 DOESNT_RETURN |
428 | 3111 signal_circular_property_list_error (Lisp_Object list) |
3112 { | |
563 | 3113 signal_error (Qcircular_property_list, 0, list); |
428 | 3114 } |
442 | 3115 |
2267 | 3116 /* Called from within emacs_doprnt_1, so REASON is not formatted. */ |
442 | 3117 DOESNT_RETURN |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3118 syntax_error (const Ascbyte *reason, Lisp_Object frob) |
442 | 3119 { |
563 | 3120 signal_error (Qsyntax_error, reason, frob); |
442 | 3121 } |
3122 | |
3123 DOESNT_RETURN | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3124 syntax_error_2 (const Ascbyte *reason, Lisp_Object frob1, Lisp_Object frob2) |
442 | 3125 { |
563 | 3126 signal_error_2 (Qsyntax_error, reason, frob1, frob2); |
3127 } | |
3128 | |
3129 void | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3130 maybe_syntax_error (const Ascbyte *reason, Lisp_Object frob, |
1204 | 3131 Lisp_Object class_, Error_Behavior errb) |
3132 { | |
3133 maybe_signal_error (Qsyntax_error, reason, frob, class_, errb); | |
563 | 3134 } |
3135 | |
3136 DOESNT_RETURN | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3137 sferror (const Ascbyte *reason, Lisp_Object frob) |
563 | 3138 { |
3139 signal_error (Qstructure_formation_error, reason, frob); | |
3140 } | |
3141 | |
3142 DOESNT_RETURN | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3143 sferror_2 (const Ascbyte *reason, Lisp_Object frob1, Lisp_Object frob2) |
563 | 3144 { |
3145 signal_error_2 (Qstructure_formation_error, reason, frob1, frob2); | |
3146 } | |
3147 | |
3148 void | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3149 maybe_sferror (const Ascbyte *reason, Lisp_Object frob, |
1204 | 3150 Lisp_Object class_, Error_Behavior errb) |
3151 { | |
3152 maybe_signal_error (Qstructure_formation_error, reason, frob, class_, errb); | |
442 | 3153 } |
3154 | |
3155 DOESNT_RETURN | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3156 invalid_argument (const Ascbyte *reason, Lisp_Object frob) |
442 | 3157 { |
563 | 3158 signal_error (Qinvalid_argument, reason, frob); |
442 | 3159 } |
3160 | |
3161 DOESNT_RETURN | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3162 invalid_argument_2 (const Ascbyte *reason, Lisp_Object frob1, |
609 | 3163 Lisp_Object frob2) |
442 | 3164 { |
563 | 3165 signal_error_2 (Qinvalid_argument, reason, frob1, frob2); |
3166 } | |
3167 | |
3168 void | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3169 maybe_invalid_argument (const Ascbyte *reason, Lisp_Object frob, |
1204 | 3170 Lisp_Object class_, Error_Behavior errb) |
3171 { | |
3172 maybe_signal_error (Qinvalid_argument, reason, frob, class_, errb); | |
563 | 3173 } |
3174 | |
3175 DOESNT_RETURN | |
5084
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
3176 invalid_keyword_argument (Lisp_Object function, Lisp_Object keyword) |
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
3177 { |
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
3178 signal_error_1 (Qinvalid_keyword_argument, list2 (function, keyword)); |
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
3179 } |
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
3180 |
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
3181 DOESNT_RETURN |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3182 invalid_constant (const Ascbyte *reason, Lisp_Object frob) |
563 | 3183 { |
3184 signal_error (Qinvalid_constant, reason, frob); | |
3185 } | |
3186 | |
3187 DOESNT_RETURN | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3188 invalid_constant_2 (const Ascbyte *reason, Lisp_Object frob1, |
609 | 3189 Lisp_Object frob2) |
563 | 3190 { |
3191 signal_error_2 (Qinvalid_constant, reason, frob1, frob2); | |
3192 } | |
3193 | |
3194 void | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3195 maybe_invalid_constant (const Ascbyte *reason, Lisp_Object frob, |
1204 | 3196 Lisp_Object class_, Error_Behavior errb) |
3197 { | |
3198 maybe_signal_error (Qinvalid_constant, reason, frob, class_, errb); | |
442 | 3199 } |
3200 | |
3201 DOESNT_RETURN | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3202 invalid_operation (const Ascbyte *reason, Lisp_Object frob) |
442 | 3203 { |
563 | 3204 signal_error (Qinvalid_operation, reason, frob); |
442 | 3205 } |
3206 | |
3207 DOESNT_RETURN | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3208 invalid_operation_2 (const Ascbyte *reason, Lisp_Object frob1, |
609 | 3209 Lisp_Object frob2) |
442 | 3210 { |
563 | 3211 signal_error_2 (Qinvalid_operation, reason, frob1, frob2); |
3212 } | |
3213 | |
3214 void | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3215 maybe_invalid_operation (const Ascbyte *reason, Lisp_Object frob, |
1204 | 3216 Lisp_Object class_, Error_Behavior errb) |
3217 { | |
3218 maybe_signal_error (Qinvalid_operation, reason, frob, class_, errb); | |
442 | 3219 } |
3220 | |
3221 DOESNT_RETURN | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3222 invalid_change (const Ascbyte *reason, Lisp_Object frob) |
442 | 3223 { |
563 | 3224 signal_error (Qinvalid_change, reason, frob); |
442 | 3225 } |
3226 | |
3227 DOESNT_RETURN | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3228 invalid_change_2 (const Ascbyte *reason, Lisp_Object frob1, Lisp_Object frob2) |
442 | 3229 { |
563 | 3230 signal_error_2 (Qinvalid_change, reason, frob1, frob2); |
3231 } | |
3232 | |
3233 void | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3234 maybe_invalid_change (const Ascbyte *reason, Lisp_Object frob, |
1204 | 3235 Lisp_Object class_, Error_Behavior errb) |
3236 { | |
3237 maybe_signal_error (Qinvalid_change, reason, frob, class_, errb); | |
563 | 3238 } |
3239 | |
3240 DOESNT_RETURN | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3241 invalid_state (const Ascbyte *reason, Lisp_Object frob) |
563 | 3242 { |
3243 signal_error (Qinvalid_state, reason, frob); | |
3244 } | |
3245 | |
3246 DOESNT_RETURN | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3247 invalid_state_2 (const Ascbyte *reason, Lisp_Object frob1, Lisp_Object frob2) |
563 | 3248 { |
3249 signal_error_2 (Qinvalid_state, reason, frob1, frob2); | |
3250 } | |
3251 | |
3252 void | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3253 maybe_invalid_state (const Ascbyte *reason, Lisp_Object frob, |
1204 | 3254 Lisp_Object class_, Error_Behavior errb) |
3255 { | |
3256 maybe_signal_error (Qinvalid_state, reason, frob, class_, errb); | |
563 | 3257 } |
3258 | |
3259 DOESNT_RETURN | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3260 wtaerror (const Ascbyte *reason, Lisp_Object frob) |
563 | 3261 { |
3262 signal_error (Qwrong_type_argument, reason, frob); | |
3263 } | |
3264 | |
3265 DOESNT_RETURN | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3266 stack_overflow (const Ascbyte *reason, Lisp_Object frob) |
563 | 3267 { |
3268 signal_error (Qstack_overflow, reason, frob); | |
3269 } | |
3270 | |
3271 DOESNT_RETURN | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3272 out_of_memory (const Ascbyte *reason, Lisp_Object frob) |
563 | 3273 { |
3274 signal_error (Qout_of_memory, reason, frob); | |
3275 } | |
3276 | |
428 | 3277 |
3278 /************************************************************************/ | |
3279 /* User commands */ | |
3280 /************************************************************************/ | |
3281 | |
3282 DEFUN ("commandp", Fcommandp, 1, 1, 0, /* | |
3283 Return t if FUNCTION makes provisions for interactive calling. | |
3284 This means it contains a description for how to read arguments to give it. | |
3285 The value is nil for an invalid function or a symbol with no function | |
3286 definition. | |
3287 | |
3288 Interactively callable functions include | |
3289 | |
3290 -- strings and vectors (treated as keyboard macros) | |
3291 -- lambda-expressions that contain a top-level call to `interactive' | |
3292 -- autoload definitions made by `autoload' with non-nil fourth argument | |
3293 (i.e. the interactive flag) | |
3294 -- compiled-function objects with a non-nil `compiled-function-interactive' | |
3295 value | |
3296 -- subrs (built-in functions) that are interactively callable | |
3297 | |
3298 Also, a symbol satisfies `commandp' if its function definition does so. | |
3299 */ | |
3300 (function)) | |
3301 { | |
3302 Lisp_Object fun = indirect_function (function, 0); | |
3303 | |
3304 if (COMPILED_FUNCTIONP (fun)) | |
3305 return XCOMPILED_FUNCTION (fun)->flags.interactivep ? Qt : Qnil; | |
3306 | |
3307 /* Lists may represent commands. */ | |
3308 if (CONSP (fun)) | |
3309 { | |
3310 Lisp_Object funcar = XCAR (fun); | |
3311 if (EQ (funcar, Qlambda)) | |
3312 return Fassq (Qinteractive, Fcdr (Fcdr (fun))); | |
3313 if (EQ (funcar, Qautoload)) | |
3314 return Fcar (Fcdr (Fcdr (Fcdr (fun)))); | |
3315 else | |
3316 return Qnil; | |
3317 } | |
3318 | |
3319 /* Emacs primitives are interactive if their DEFUN specifies an | |
3320 interactive spec. */ | |
3321 if (SUBRP (fun)) | |
3322 return XSUBR (fun)->prompt ? Qt : Qnil; | |
3323 | |
3324 /* Strings and vectors are keyboard macros. */ | |
3325 if (VECTORP (fun) || STRINGP (fun)) | |
3326 return Qt; | |
3327 | |
3328 /* Everything else (including Qunbound) is not a command. */ | |
3329 return Qnil; | |
3330 } | |
3331 | |
3332 DEFUN ("command-execute", Fcommand_execute, 1, 3, 0, /* | |
3333 Execute CMD as an editor command. | |
3334 CMD must be an object that satisfies the `commandp' predicate. | |
3335 Optional second arg RECORD-FLAG is as in `call-interactively'. | |
3336 The argument KEYS specifies the value to use instead of (this-command-keys) | |
3337 when reading the arguments. | |
3338 */ | |
444 | 3339 (cmd, record_flag, keys)) |
428 | 3340 { |
3341 /* This function can GC */ | |
3342 Lisp_Object prefixarg; | |
3343 Lisp_Object final = cmd; | |
4162 | 3344 PROFILE_DECLARE(); |
428 | 3345 struct console *con = XCONSOLE (Vselected_console); |
3346 | |
3347 prefixarg = con->prefix_arg; | |
3348 con->prefix_arg = Qnil; | |
3349 Vcurrent_prefix_arg = prefixarg; | |
3350 debug_on_next_call = 0; /* #### from FSFmacs; correct? */ | |
3351 | |
3352 if (SYMBOLP (cmd) && !NILP (Fget (cmd, Qdisabled, Qnil))) | |
733 | 3353 return run_hook (Qdisabled_command_hook); |
428 | 3354 |
3355 for (;;) | |
3356 { | |
3357 final = indirect_function (cmd, 1); | |
3358 if (CONSP (final) && EQ (Fcar (final), Qautoload)) | |
970 | 3359 { |
3360 /* do_autoload GCPROs both arguments */ | |
3361 do_autoload (final, cmd); | |
3362 } | |
428 | 3363 else |
3364 break; | |
3365 } | |
3366 | |
3367 if (CONSP (final) || SUBRP (final) || COMPILED_FUNCTIONP (final)) | |
3368 { | |
3369 backtrace.function = &Qcall_interactively; | |
3370 backtrace.args = &cmd; | |
3371 backtrace.nargs = 1; | |
3372 backtrace.evalargs = 0; | |
1292 | 3373 backtrace.pdlcount = specpdl_depth (); |
428 | 3374 backtrace.debug_on_exit = 0; |
1292 | 3375 backtrace.function_being_called = 0; |
428 | 3376 PUSH_BACKTRACE (backtrace); |
3377 | |
1292 | 3378 PROFILE_ENTER_FUNCTION (); |
444 | 3379 final = Fcall_interactively (cmd, record_flag, keys); |
1292 | 3380 PROFILE_EXIT_FUNCTION (); |
428 | 3381 |
3382 POP_BACKTRACE (backtrace); | |
3383 return final; | |
3384 } | |
3385 else if (STRINGP (final) || VECTORP (final)) | |
3386 { | |
3387 return Fexecute_kbd_macro (final, prefixarg); | |
3388 } | |
3389 else | |
3390 { | |
3391 Fsignal (Qwrong_type_argument, | |
3392 Fcons (Qcommandp, | |
3393 (EQ (cmd, final) | |
3394 ? list1 (cmd) | |
3395 : list2 (cmd, final)))); | |
3396 return Qnil; | |
3397 } | |
3398 } | |
3399 | |
3400 DEFUN ("interactive-p", Finteractive_p, 0, 0, 0, /* | |
3401 Return t if function in which this appears was called interactively. | |
3402 This means that the function was called with call-interactively (which | |
3403 includes being called as the binding of a key) | |
3404 and input is currently coming from the keyboard (not in keyboard macro). | |
3405 */ | |
3406 ()) | |
3407 { | |
3408 REGISTER struct backtrace *btp; | |
3409 REGISTER Lisp_Object fun; | |
3410 | |
3411 if (!INTERACTIVE) | |
3412 return Qnil; | |
3413 | |
3414 /* Unless the object was compiled, skip the frame of interactive-p itself | |
3415 (if interpreted) or the frame of byte-code (if called from a compiled | |
3416 function). Note that *btp->function may be a symbol pointing at a | |
3417 compiled function. */ | |
3418 btp = backtrace_list; | |
3419 | |
3420 #if 0 /* FSFmacs */ | |
3421 | |
3422 /* #### FSFmacs does the following instead. I can't figure | |
3423 out which one is more correct. */ | |
3424 /* If this isn't a byte-compiled function, there may be a frame at | |
3425 the top for Finteractive_p itself. If so, skip it. */ | |
3426 fun = Findirect_function (*btp->function); | |
3427 if (SUBRP (fun) && XSUBR (fun) == &Sinteractive_p) | |
3428 btp = btp->next; | |
3429 | |
3430 /* If we're running an Emacs 18-style byte-compiled function, there | |
3431 may be a frame for Fbyte_code. Now, given the strictest | |
3432 definition, this function isn't really being called | |
3433 interactively, but because that's the way Emacs 18 always builds | |
3434 byte-compiled functions, we'll accept it for now. */ | |
3435 if (EQ (*btp->function, Qbyte_code)) | |
3436 btp = btp->next; | |
3437 | |
3438 /* If this isn't a byte-compiled function, then we may now be | |
4905
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4846
diff
changeset
|
3439 looking at several frames for special operators. Skip past them. */ |
428 | 3440 while (btp && |
3441 btp->nargs == UNEVALLED) | |
3442 btp = btp->next; | |
3443 | |
3444 #else | |
3445 | |
3446 if (! (COMPILED_FUNCTIONP (Findirect_function (*btp->function)))) | |
3447 btp = btp->next; | |
3448 for (; | |
3449 btp && (btp->nargs == UNEVALLED | |
3450 || EQ (*btp->function, Qbyte_code)); | |
3451 btp = btp->next) | |
3452 {} | |
3453 /* btp now points at the frame of the innermost function | |
3454 that DOES eval its args. | |
3455 If it is a built-in function (such as load or eval-region) | |
3456 return nil. */ | |
3457 /* Beats me why this is necessary, but it is */ | |
3458 if (btp && EQ (*btp->function, Qcall_interactively)) | |
3459 return Qt; | |
3460 | |
3461 #endif | |
3462 | |
3463 fun = Findirect_function (*btp->function); | |
3464 if (SUBRP (fun)) | |
3465 return Qnil; | |
3466 /* btp points to the frame of a Lisp function that called interactive-p. | |
3467 Return t if that function was called interactively. */ | |
3468 if (btp && btp->next && EQ (*btp->next->function, Qcall_interactively)) | |
3469 return Qt; | |
3470 return Qnil; | |
3471 } | |
3472 | |
3473 | |
3474 /************************************************************************/ | |
3475 /* Autoloading */ | |
3476 /************************************************************************/ | |
3477 | |
3478 DEFUN ("autoload", Fautoload, 2, 5, 0, /* | |
444 | 3479 Define FUNCTION to autoload from FILENAME. |
3480 FUNCTION is a symbol; FILENAME is a file name string to pass to `load'. | |
3481 The remaining optional arguments provide additional info about the | |
3482 real definition. | |
3483 DOCSTRING is documentation for FUNCTION. | |
3484 INTERACTIVE, if non-nil, says FUNCTION can be called interactively. | |
3485 TYPE indicates the type of the object: | |
428 | 3486 nil or omitted says FUNCTION is a function, |
3487 `keymap' says FUNCTION is really a keymap, and | |
3488 `macro' or t says FUNCTION is really a macro. | |
444 | 3489 If FUNCTION already has a non-void function definition that is not an |
3490 autoload object, this function does nothing and returns nil. | |
428 | 3491 */ |
444 | 3492 (function, filename, docstring, interactive, type)) |
428 | 3493 { |
3494 /* This function can GC */ | |
3495 CHECK_SYMBOL (function); | |
444 | 3496 CHECK_STRING (filename); |
428 | 3497 |
3498 /* If function is defined and not as an autoload, don't override */ | |
3499 { | |
3500 Lisp_Object f = XSYMBOL (function)->function; | |
3501 if (!UNBOUNDP (f) && !(CONSP (f) && EQ (XCAR (f), Qautoload))) | |
3502 return Qnil; | |
3503 } | |
3504 | |
3505 if (purify_flag) | |
3506 { | |
3507 /* Attempt to avoid consing identical (string=) pure strings. */ | |
444 | 3508 filename = Fsymbol_name (Fintern (filename, Qnil)); |
428 | 3509 } |
440 | 3510 |
444 | 3511 return Ffset (function, Fcons (Qautoload, list4 (filename, |
428 | 3512 docstring, |
3513 interactive, | |
3514 type))); | |
3515 } | |
3516 | |
3517 Lisp_Object | |
3518 un_autoload (Lisp_Object oldqueue) | |
3519 { | |
3520 /* This function can GC */ | |
3521 REGISTER Lisp_Object queue, first, second; | |
3522 | |
3523 /* Queue to unwind is current value of Vautoload_queue. | |
3524 oldqueue is the shadowed value to leave in Vautoload_queue. */ | |
3525 queue = Vautoload_queue; | |
3526 Vautoload_queue = oldqueue; | |
3527 while (CONSP (queue)) | |
3528 { | |
3529 first = XCAR (queue); | |
3530 second = Fcdr (first); | |
3531 first = Fcar (first); | |
3532 if (NILP (second)) | |
3533 Vfeatures = first; | |
3534 else | |
3535 Ffset (first, second); | |
3536 queue = Fcdr (queue); | |
3537 } | |
3538 return Qnil; | |
3539 } | |
3540 | |
970 | 3541 /* do_autoload GCPROs both arguments */ |
428 | 3542 void |
3543 do_autoload (Lisp_Object fundef, | |
3544 Lisp_Object funname) | |
3545 { | |
3546 /* This function can GC */ | |
3547 int speccount = specpdl_depth(); | |
3548 Lisp_Object fun = funname; | |
970 | 3549 struct gcpro gcpro1, gcpro2, gcpro3; |
428 | 3550 |
3551 CHECK_SYMBOL (funname); | |
970 | 3552 GCPRO3 (fundef, funname, fun); |
428 | 3553 |
3554 /* Value saved here is to be restored into Vautoload_queue */ | |
3555 record_unwind_protect (un_autoload, Vautoload_queue); | |
3556 Vautoload_queue = Qt; | |
3557 call4 (Qload, Fcar (Fcdr (fundef)), Qnil, noninteractive ? Qt : Qnil, Qnil); | |
3558 | |
3559 { | |
3560 Lisp_Object queue; | |
3561 | |
3562 /* Save the old autoloads, in case we ever do an unload. */ | |
3563 for (queue = Vautoload_queue; CONSP (queue); queue = XCDR (queue)) | |
3564 { | |
3565 Lisp_Object first = XCAR (queue); | |
3566 Lisp_Object second = Fcdr (first); | |
3567 | |
3568 first = Fcar (first); | |
3569 | |
3570 /* Note: This test is subtle. The cdr of an autoload-queue entry | |
3571 may be an atom if the autoload entry was generated by a defalias | |
3572 or fset. */ | |
3573 if (CONSP (second)) | |
3574 Fput (first, Qautoload, (XCDR (second))); | |
3575 } | |
3576 } | |
3577 | |
3578 /* Once loading finishes, don't undo it. */ | |
3579 Vautoload_queue = Qt; | |
771 | 3580 unbind_to (speccount); |
428 | 3581 |
3582 fun = indirect_function (fun, 0); | |
3583 | |
3584 #if 0 /* FSFmacs */ | |
3585 if (!NILP (Fequal (fun, fundef))) | |
3586 #else | |
3587 if (UNBOUNDP (fun) | |
3588 || (CONSP (fun) | |
3589 && EQ (XCAR (fun), Qautoload))) | |
3590 #endif | |
563 | 3591 invalid_state ("Autoloading failed to define function", funname); |
428 | 3592 UNGCPRO; |
3593 } | |
3594 | |
3595 | |
3596 /************************************************************************/ | |
3597 /* eval, funcall, apply */ | |
3598 /************************************************************************/ | |
3599 | |
814 | 3600 /* NOTE: If you are hearing the endless complaint that function calls in |
3601 elisp are extremely slow, it just isn't true any more! The stuff below | |
3602 -- in particular, the calling of subrs and compiled functions, the most | |
3603 common cases -- has been highly optimized. There isn't a whole lot left | |
3604 to do to squeeze more speed out except by switching to lexical | |
3605 variables, which would eliminate the specbind loop. (But the real gain | |
3606 from lexical variables would come from better optimization -- with | |
3607 dynamic binding, you have the constant problem that any function call | |
3608 that you haven't explicitly proven to be side-effect-free might | |
3609 potentially side effect your local variables, which makes optimization | |
3610 extremely difficult when there are function calls anywhere in a chunk of | |
3611 code to be optimized. Even worse, you don't know that *your* local | |
3612 variables aren't side-effecting an outer function's local variables, so | |
3613 it's impossible to optimize away almost *any* variable assignment.) */ | |
3614 | |
428 | 3615 static Lisp_Object funcall_lambda (Lisp_Object fun, |
442 | 3616 int nargs, Lisp_Object args[]); |
428 | 3617 static int in_warnings; |
3618 | |
3619 | |
814 | 3620 void handle_compiled_function_with_and_rest (Lisp_Compiled_Function *f, |
3621 int nargs, | |
3622 Lisp_Object args[]); | |
3623 | |
3624 /* The theory behind making this a separate function is to shrink | |
3625 funcall_compiled_function() so as to increase the likelihood of a cache | |
3626 hit in the L1 cache -- &rest processing is not going to be fast anyway. | |
3627 The idea is the same as with execute_rare_opcode() in bytecode.c. We | |
3628 make this non-static to ensure the compiler doesn't inline it. */ | |
3629 | |
3630 void | |
3631 handle_compiled_function_with_and_rest (Lisp_Compiled_Function *f, int nargs, | |
3632 Lisp_Object args[]) | |
3633 { | |
3634 REGISTER int i = 0; | |
3635 int max_non_rest_args = f->args_in_array - 1; | |
3636 int bindargs = min (nargs, max_non_rest_args); | |
3637 | |
3638 for (i = 0; i < bindargs; i++) | |
3092 | 3639 #ifdef NEW_GC |
3640 SPECBIND_FAST_UNSAFE (XCOMPILED_FUNCTION_ARGS_DATA (f->arguments)[i], | |
3641 args[i]); | |
3642 #else /* not NEW_GC */ | |
814 | 3643 SPECBIND_FAST_UNSAFE (f->args[i], args[i]); |
3092 | 3644 #endif /* not NEW_GC */ |
814 | 3645 for (i = bindargs; i < max_non_rest_args; i++) |
3092 | 3646 #ifdef NEW_GC |
3647 SPECBIND_FAST_UNSAFE (XCOMPILED_FUNCTION_ARGS_DATA (f->arguments)[i], | |
3648 Qnil); | |
3649 #else /* not NEW_GC */ | |
814 | 3650 SPECBIND_FAST_UNSAFE (f->args[i], Qnil); |
3092 | 3651 #endif /* not NEW_GC */ |
3652 #ifdef NEW_GC | |
3653 SPECBIND_FAST_UNSAFE | |
3654 (XCOMPILED_FUNCTION_ARGS_DATA (f->arguments)[max_non_rest_args], | |
3655 nargs > max_non_rest_args ? | |
3656 Flist (nargs - max_non_rest_args, &args[max_non_rest_args]) : | |
3657 Qnil); | |
3658 #else /* not NEW_GC */ | |
814 | 3659 SPECBIND_FAST_UNSAFE |
3660 (f->args[max_non_rest_args], | |
3661 nargs > max_non_rest_args ? | |
3662 Flist (nargs - max_non_rest_args, &args[max_non_rest_args]) : | |
3663 Qnil); | |
3092 | 3664 #endif /* not NEW_GC */ |
814 | 3665 } |
3666 | |
3667 /* Apply compiled-function object FUN to the NARGS evaluated arguments | |
3668 in ARGS, and return the result of evaluation. */ | |
3669 inline static Lisp_Object | |
3670 funcall_compiled_function (Lisp_Object fun, int nargs, Lisp_Object args[]) | |
3671 { | |
3672 /* This function can GC */ | |
3673 int speccount = specpdl_depth(); | |
3674 REGISTER int i = 0; | |
3675 Lisp_Compiled_Function *f = XCOMPILED_FUNCTION (fun); | |
3676 | |
3677 if (!OPAQUEP (f->instructions)) | |
3678 /* Lazily munge the instructions into a more efficient form */ | |
3679 optimize_compiled_function (fun); | |
3680 | |
3681 /* optimize_compiled_function() guaranteed that f->specpdl_depth is | |
3682 the required space on the specbinding stack for binding the args | |
3683 and local variables of fun. So just reserve it once. */ | |
3684 SPECPDL_RESERVE (f->specpdl_depth); | |
3685 | |
3686 if (nargs == f->max_args) /* Optimize for the common case -- no unspecified | |
3687 optional arguments. */ | |
3688 { | |
3689 #if 1 | |
3690 for (i = 0; i < nargs; i++) | |
3092 | 3691 #ifdef NEW_GC |
3692 SPECBIND_FAST_UNSAFE (XCOMPILED_FUNCTION_ARGS_DATA (f->arguments)[i], | |
3693 args[i]); | |
3694 #else /* not NEW_GC */ | |
814 | 3695 SPECBIND_FAST_UNSAFE (f->args[i], args[i]); |
3092 | 3696 #endif /* not NEW_GC */ |
814 | 3697 #else |
3698 /* Here's an alternate way to write the loop that tries to further | |
3699 optimize funcalls for functions with few arguments by partially | |
3700 unrolling the loop. It's not clear whether this is a win since it | |
3701 increases the size of the function and the possibility of L1 cache | |
3702 misses. (Microsoft VC++ 6 with /O2 /G5 generates 0x90 == 144 bytes | |
3703 per SPECBIND_FAST_UNSAFE().) Tests under VC++ 6, running the byte | |
3704 compiler repeatedly and looking at the total time, show very | |
3705 little difference between the simple loop above, the unrolled code | |
3706 below, and a "partly unrolled" solution with only cases 0-2 below | |
3707 instead of 0-4. Therefore, I'm keeping it at the simple loop | |
3708 because it's smaller. */ | |
3709 switch (nargs) | |
3710 { | |
3711 default: | |
3712 for (i = nargs - 1; i >= 4; i--) | |
3713 SPECBIND_FAST_UNSAFE (f->args[i], args[i]); | |
3714 case 4: SPECBIND_FAST_UNSAFE (f->args[3], args[3]); | |
3715 case 3: SPECBIND_FAST_UNSAFE (f->args[2], args[2]); | |
3716 case 2: SPECBIND_FAST_UNSAFE (f->args[1], args[1]); | |
3717 case 1: SPECBIND_FAST_UNSAFE (f->args[0], args[0]); | |
3718 case 0: break; | |
3719 } | |
3720 #endif | |
3721 } | |
3722 else if (nargs < f->min_args) | |
3723 goto wrong_number_of_arguments; | |
3724 else if (nargs < f->max_args) | |
3725 { | |
3726 for (i = 0; i < nargs; i++) | |
3092 | 3727 #ifdef NEW_GC |
3728 SPECBIND_FAST_UNSAFE (XCOMPILED_FUNCTION_ARGS_DATA (f->arguments)[i], | |
3729 args[i]); | |
3730 #else /* not NEW_GC */ | |
814 | 3731 SPECBIND_FAST_UNSAFE (f->args[i], args[i]); |
3092 | 3732 #endif /* not NEW_GC */ |
814 | 3733 for (i = nargs; i < f->max_args; i++) |
3092 | 3734 #ifdef NEW_GC |
3735 SPECBIND_FAST_UNSAFE (XCOMPILED_FUNCTION_ARGS_DATA (f->arguments)[i], | |
3736 Qnil); | |
3737 #else /* not NEW_GC */ | |
814 | 3738 SPECBIND_FAST_UNSAFE (f->args[i], Qnil); |
3092 | 3739 #endif /* not NEW_GC */ |
814 | 3740 } |
3741 else if (f->max_args == MANY) | |
3742 handle_compiled_function_with_and_rest (f, nargs, args); | |
3743 else | |
3744 { | |
3745 wrong_number_of_arguments: | |
3746 /* The actual printed compiled_function object is incomprehensible. | |
3747 Check the backtrace to see if we can get a more meaningful symbol. */ | |
3748 if (EQ (fun, indirect_function (*backtrace_list->function, 0))) | |
3749 fun = *backtrace_list->function; | |
3750 return Fsignal (Qwrong_number_of_arguments, | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
3751 list2 (fun, make_fixnum (nargs))); |
814 | 3752 } |
3753 | |
3754 { | |
3755 Lisp_Object value = | |
3756 execute_optimized_program ((Opbyte *) XOPAQUE_DATA (f->instructions), | |
4921
17362f371cc2
add more byte-code assertions and better failure output
Ben Wing <ben@xemacs.org>
parents:
4905
diff
changeset
|
3757 #ifdef ERROR_CHECK_BYTE_CODE |
17362f371cc2
add more byte-code assertions and better failure output
Ben Wing <ben@xemacs.org>
parents:
4905
diff
changeset
|
3758 XOPAQUE_SIZE (f->instructions) / |
17362f371cc2
add more byte-code assertions and better failure output
Ben Wing <ben@xemacs.org>
parents:
4905
diff
changeset
|
3759 sizeof (Opbyte), |
17362f371cc2
add more byte-code assertions and better failure output
Ben Wing <ben@xemacs.org>
parents:
4905
diff
changeset
|
3760 #endif |
814 | 3761 f->stack_depth, |
3762 XVECTOR_DATA (f->constants)); | |
3763 | |
3764 /* The attempt to optimize this by only unbinding variables failed | |
3765 because using buffer-local variables as function parameters | |
3766 leads to specpdl_ptr->func != 0 */ | |
3767 /* UNBIND_TO_GCPRO_VARIABLES_ONLY (speccount, value); */ | |
3768 UNBIND_TO_GCPRO (speccount, value); | |
3769 return value; | |
3770 } | |
3771 } | |
3772 | |
428 | 3773 DEFUN ("eval", Feval, 1, 1, 0, /* |
3774 Evaluate FORM and return its value. | |
3775 */ | |
3776 (form)) | |
3777 { | |
3778 /* This function can GC */ | |
3779 Lisp_Object fun, val, original_fun, original_args; | |
3780 int nargs; | |
4162 | 3781 PROFILE_DECLARE(); |
428 | 3782 |
1318 | 3783 #ifdef ERROR_CHECK_TRAPPING_PROBLEMS |
3784 check_proper_critical_section_lisp_protection (); | |
3785 #endif | |
3786 | |
3989 | 3787 if (!CONSP (form)) |
3788 { | |
3789 if (SYMBOLP (form)) | |
3790 { | |
3791 return Fsymbol_value (form); | |
3792 } | |
3793 | |
3794 return form; | |
3795 } | |
3796 | |
428 | 3797 /* I think this is a pretty safe place to call Lisp code, don't you? */ |
853 | 3798 while (!in_warnings && !NILP (Vpending_warnings) |
3799 /* well, perhaps not so safe after all! */ | |
3800 && !(inhibit_flags & INHIBIT_ANY_CHANGE_AFFECTING_REDISPLAY)) | |
428 | 3801 { |
3802 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; | |
1204 | 3803 Lisp_Object this_warning_cons, this_warning, class_, level, messij; |
853 | 3804 int speccount = internal_bind_int (&in_warnings, 1); |
3805 | |
428 | 3806 this_warning_cons = Vpending_warnings; |
3807 this_warning = XCAR (this_warning_cons); | |
3808 /* in case an error occurs in the warn function, at least | |
3809 it won't happen infinitely */ | |
3810 Vpending_warnings = XCDR (Vpending_warnings); | |
853 | 3811 free_cons (this_warning_cons); |
1204 | 3812 class_ = XCAR (this_warning); |
428 | 3813 level = XCAR (XCDR (this_warning)); |
3814 messij = XCAR (XCDR (XCDR (this_warning))); | |
3815 free_list (this_warning); | |
3816 | |
3817 if (NILP (Vpending_warnings)) | |
3818 Vpending_warnings_tail = Qnil; /* perhaps not strictly necessary, | |
3819 but safer */ | |
3820 | |
1204 | 3821 GCPRO4 (form, class_, level, messij); |
428 | 3822 if (!STRINGP (messij)) |
3823 messij = Fprin1_to_string (messij, Qnil); | |
1204 | 3824 call3 (Qdisplay_warning, class_, messij, level); |
428 | 3825 UNGCPRO; |
771 | 3826 unbind_to (speccount); |
428 | 3827 } |
3828 | |
3829 QUIT; | |
814 | 3830 if (need_to_garbage_collect) |
428 | 3831 { |
3832 struct gcpro gcpro1; | |
3833 GCPRO1 (form); | |
3092 | 3834 #ifdef NEW_GC |
3835 gc_incremental (); | |
3836 #else /* not NEW_GC */ | |
428 | 3837 garbage_collect_1 (); |
3092 | 3838 #endif /* not NEW_GC */ |
428 | 3839 UNGCPRO; |
3840 } | |
3841 | |
3842 if (++lisp_eval_depth > max_lisp_eval_depth) | |
3843 { | |
3844 if (max_lisp_eval_depth < 100) | |
3845 max_lisp_eval_depth = 100; | |
3846 if (lisp_eval_depth > max_lisp_eval_depth) | |
563 | 3847 stack_overflow ("Lisp nesting exceeds `max-lisp-eval-depth'", |
3848 Qunbound); | |
428 | 3849 } |
3850 | |
3851 /* We guaranteed CONSP (form) above */ | |
3852 original_fun = XCAR (form); | |
3853 original_args = XCDR (form); | |
3854 | |
3855 GET_EXTERNAL_LIST_LENGTH (original_args, nargs); | |
3856 | |
3857 backtrace.pdlcount = specpdl_depth(); | |
3858 backtrace.function = &original_fun; /* This also protects them from gc */ | |
3859 backtrace.args = &original_args; | |
3860 backtrace.nargs = UNEVALLED; | |
3861 backtrace.evalargs = 1; | |
3862 backtrace.debug_on_exit = 0; | |
1292 | 3863 backtrace.function_being_called = 0; |
428 | 3864 PUSH_BACKTRACE (backtrace); |
3865 | |
3866 if (debug_on_next_call) | |
3867 do_debug_on_call (Qt); | |
3868 | |
3869 /* At this point, only original_fun and original_args | |
3870 have values that will be used below. */ | |
3871 retry: | |
3989 | 3872 /* Optimise for no indirection. */ |
3873 fun = original_fun; | |
3874 if (SYMBOLP (fun) && !EQ (fun, Qunbound) | |
3875 && (fun = XSYMBOL (fun)->function, SYMBOLP (fun))) | |
3876 { | |
3877 fun = indirect_function(original_fun, 1); | |
3878 } | |
428 | 3879 |
3880 if (SUBRP (fun)) | |
3881 { | |
3882 Lisp_Subr *subr = XSUBR (fun); | |
3883 int max_args = subr->max_args; | |
3884 | |
3885 if (nargs < subr->min_args) | |
3886 goto wrong_number_of_arguments; | |
3887 | |
3888 if (max_args == UNEVALLED) /* Optimize for the common case */ | |
3889 { | |
3890 backtrace.evalargs = 0; | |
1292 | 3891 PROFILE_ENTER_FUNCTION (); |
428 | 3892 val = (((Lisp_Object (*) (Lisp_Object)) subr_function (subr)) |
3893 (original_args)); | |
1292 | 3894 PROFILE_EXIT_FUNCTION (); |
428 | 3895 } |
3896 else if (nargs <= max_args) | |
3897 { | |
3898 struct gcpro gcpro1; | |
3899 Lisp_Object args[SUBR_MAX_ARGS]; | |
3900 REGISTER Lisp_Object *p = args; | |
3901 | |
3902 GCPRO1 (args[0]); | |
3903 gcpro1.nvars = 0; | |
3904 | |
3905 { | |
3906 LIST_LOOP_2 (arg, original_args) | |
3907 { | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
3908 *p++ = IGNORE_MULTIPLE_VALUES (Feval (arg)); |
428 | 3909 gcpro1.nvars++; |
3910 } | |
3911 } | |
3912 | |
3913 /* &optional args default to nil. */ | |
3914 while (p - args < max_args) | |
3915 *p++ = Qnil; | |
3916 | |
3917 backtrace.args = args; | |
3918 backtrace.nargs = nargs; | |
3919 | |
1292 | 3920 PROFILE_ENTER_FUNCTION (); |
428 | 3921 FUNCALL_SUBR (val, subr, args, max_args); |
1292 | 3922 PROFILE_EXIT_FUNCTION (); |
428 | 3923 |
3924 UNGCPRO; | |
3925 } | |
3926 else if (max_args == MANY) | |
3927 { | |
3928 /* Pass a vector of evaluated arguments */ | |
3929 struct gcpro gcpro1; | |
3930 Lisp_Object *args = alloca_array (Lisp_Object, nargs); | |
3931 REGISTER Lisp_Object *p = args; | |
3932 | |
3933 GCPRO1 (args[0]); | |
3934 gcpro1.nvars = 0; | |
3935 | |
3936 { | |
3937 LIST_LOOP_2 (arg, original_args) | |
3938 { | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
3939 *p++ = IGNORE_MULTIPLE_VALUES (Feval (arg)); |
428 | 3940 gcpro1.nvars++; |
3941 } | |
3942 } | |
3943 | |
3944 backtrace.args = args; | |
3945 backtrace.nargs = nargs; | |
3946 | |
1292 | 3947 PROFILE_ENTER_FUNCTION (); |
428 | 3948 val = (((Lisp_Object (*) (int, Lisp_Object *)) subr_function (subr)) |
3949 (nargs, args)); | |
1292 | 3950 PROFILE_EXIT_FUNCTION (); |
428 | 3951 |
3952 UNGCPRO; | |
3953 } | |
3954 else | |
3955 { | |
3956 wrong_number_of_arguments: | |
440 | 3957 val = signal_wrong_number_of_arguments_error (original_fun, nargs); |
428 | 3958 } |
3959 } | |
3960 else if (COMPILED_FUNCTIONP (fun)) | |
3961 { | |
3962 struct gcpro gcpro1; | |
3963 Lisp_Object *args = alloca_array (Lisp_Object, nargs); | |
3964 REGISTER Lisp_Object *p = args; | |
3965 | |
3966 GCPRO1 (args[0]); | |
3967 gcpro1.nvars = 0; | |
3968 | |
3969 { | |
3970 LIST_LOOP_2 (arg, original_args) | |
3971 { | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
3972 *p++ = IGNORE_MULTIPLE_VALUES (Feval (arg)); |
428 | 3973 gcpro1.nvars++; |
3974 } | |
3975 } | |
3976 | |
3977 backtrace.args = args; | |
3978 backtrace.nargs = nargs; | |
3979 backtrace.evalargs = 0; | |
3980 | |
1292 | 3981 PROFILE_ENTER_FUNCTION (); |
428 | 3982 val = funcall_compiled_function (fun, nargs, args); |
1292 | 3983 PROFILE_EXIT_FUNCTION (); |
428 | 3984 |
3985 /* Do the debug-on-exit now, while args is still GCPROed. */ | |
3986 if (backtrace.debug_on_exit) | |
3987 val = do_debug_on_exit (val); | |
3988 /* Don't do it again when we return to eval. */ | |
3989 backtrace.debug_on_exit = 0; | |
3990 | |
3991 UNGCPRO; | |
3992 } | |
3993 else if (CONSP (fun)) | |
3994 { | |
3995 Lisp_Object funcar = XCAR (fun); | |
3996 | |
3997 if (EQ (funcar, Qautoload)) | |
3998 { | |
970 | 3999 /* do_autoload GCPROs both arguments */ |
428 | 4000 do_autoload (fun, original_fun); |
4001 goto retry; | |
4002 } | |
4003 else if (EQ (funcar, Qmacro)) | |
4004 { | |
1292 | 4005 PROFILE_ENTER_FUNCTION (); |
428 | 4006 val = Feval (apply1 (XCDR (fun), original_args)); |
1292 | 4007 PROFILE_EXIT_FUNCTION (); |
428 | 4008 } |
4009 else if (EQ (funcar, Qlambda)) | |
4010 { | |
4011 struct gcpro gcpro1; | |
4012 Lisp_Object *args = alloca_array (Lisp_Object, nargs); | |
4013 REGISTER Lisp_Object *p = args; | |
4014 | |
4015 GCPRO1 (args[0]); | |
4016 gcpro1.nvars = 0; | |
4017 | |
4018 { | |
4019 LIST_LOOP_2 (arg, original_args) | |
4020 { | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4021 *p++ = IGNORE_MULTIPLE_VALUES (Feval (arg)); |
428 | 4022 gcpro1.nvars++; |
4023 } | |
4024 } | |
4025 | |
4026 UNGCPRO; | |
4027 | |
4028 backtrace.args = args; /* this also GCPROs `args' */ | |
4029 backtrace.nargs = nargs; | |
4030 backtrace.evalargs = 0; | |
4031 | |
1292 | 4032 PROFILE_ENTER_FUNCTION (); |
428 | 4033 val = funcall_lambda (fun, nargs, args); |
1292 | 4034 PROFILE_EXIT_FUNCTION (); |
428 | 4035 |
4036 /* Do the debug-on-exit now, while args is still GCPROed. */ | |
4037 if (backtrace.debug_on_exit) | |
4038 val = do_debug_on_exit (val); | |
4039 /* Don't do it again when we return to eval. */ | |
4040 backtrace.debug_on_exit = 0; | |
4041 } | |
4042 else | |
4043 { | |
4044 goto invalid_function; | |
4045 } | |
4046 } | |
4104 | 4047 else if (UNBOUNDP (fun)) |
4048 { | |
4049 val = signal_void_function_error (original_fun); | |
4050 } | |
4051 else /* ! (SUBRP (fun) || COMPILED_FUNCTIONP (fun) || CONSP (fun) | |
4052 UNBOUNDP (fun)) */ | |
428 | 4053 { |
4054 invalid_function: | |
436 | 4055 val = signal_invalid_function_error (fun); |
428 | 4056 } |
4057 | |
4058 lisp_eval_depth--; | |
4059 if (backtrace.debug_on_exit) | |
4060 val = do_debug_on_exit (val); | |
4061 POP_BACKTRACE (backtrace); | |
4062 return val; | |
4063 } | |
4064 | |
4065 | |
1111 | 4066 |
4067 static void | |
4068 run_post_gc_hook (void) | |
4069 { | |
4070 Lisp_Object args[2]; | |
4071 | |
4072 args[0] = Qpost_gc_hook; | |
4073 args[1] = Fcons (Fcons (Qfinalize_list, zap_finalize_list ()), Qnil); | |
4074 | |
4075 run_hook_with_args_trapping_problems | |
1333 | 4076 (Qgarbage_collecting, 2, args, RUN_HOOKS_TO_COMPLETION, |
1111 | 4077 INHIBIT_QUIT | NO_INHIBIT_ERRORS); |
4078 } | |
4079 | |
428 | 4080 DEFUN ("funcall", Ffuncall, 1, MANY, 0, /* |
4693
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
4081 Call FUNCTION as a function, passing the remaining arguments to it. |
428 | 4082 Thus, (funcall 'cons 'x 'y) returns (x . y). |
4693
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
4083 |
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
4084 arguments: (FUNCTION &rest ARGS) |
428 | 4085 */ |
4086 (int nargs, Lisp_Object *args)) | |
4087 { | |
4088 /* This function can GC */ | |
4089 Lisp_Object fun; | |
4090 Lisp_Object val; | |
4162 | 4091 PROFILE_DECLARE(); |
428 | 4092 int fun_nargs = nargs - 1; |
4093 Lisp_Object *fun_args = args + 1; | |
4094 | |
1318 | 4095 /* QUIT will check for proper redisplay wrapping */ |
4096 | |
428 | 4097 QUIT; |
851 | 4098 |
4099 if (funcall_allocation_flag) | |
4100 { | |
4101 if (need_to_garbage_collect) | |
4102 /* Callers should gcpro lexpr args */ | |
3092 | 4103 #ifdef NEW_GC |
4104 gc_incremental (); | |
4105 #else /* not NEW_GC */ | |
851 | 4106 garbage_collect_1 (); |
3092 | 4107 #endif /* not NEW_GC */ |
851 | 4108 if (need_to_check_c_alloca) |
4109 { | |
4110 if (++funcall_alloca_count >= MAX_FUNCALLS_BETWEEN_ALLOCA_CLEANUP) | |
4111 { | |
4112 xemacs_c_alloca (0); | |
4113 funcall_alloca_count = 0; | |
4114 } | |
4115 } | |
887 | 4116 if (need_to_signal_post_gc) |
4117 { | |
4118 need_to_signal_post_gc = 0; | |
1111 | 4119 recompute_funcall_allocation_flag (); |
3263 | 4120 #ifdef NEW_GC |
4121 run_finalizers (); | |
4122 #endif /* NEW_GC */ | |
1111 | 4123 run_post_gc_hook (); |
887 | 4124 } |
851 | 4125 } |
428 | 4126 |
4127 if (++lisp_eval_depth > max_lisp_eval_depth) | |
4128 { | |
4129 if (max_lisp_eval_depth < 100) | |
4130 max_lisp_eval_depth = 100; | |
4131 if (lisp_eval_depth > max_lisp_eval_depth) | |
563 | 4132 stack_overflow ("Lisp nesting exceeds `max-lisp-eval-depth'", |
4133 Qunbound); | |
428 | 4134 } |
4135 | |
1292 | 4136 backtrace.pdlcount = specpdl_depth (); |
428 | 4137 backtrace.function = &args[0]; |
4138 backtrace.args = fun_args; | |
4139 backtrace.nargs = fun_nargs; | |
4140 backtrace.evalargs = 0; | |
4141 backtrace.debug_on_exit = 0; | |
1292 | 4142 backtrace.function_being_called = 0; |
428 | 4143 PUSH_BACKTRACE (backtrace); |
4144 | |
4145 if (debug_on_next_call) | |
4146 do_debug_on_call (Qlambda); | |
4147 | |
4148 retry: | |
4149 | |
4150 fun = args[0]; | |
4151 | |
4152 /* We could call indirect_function directly, but profiling shows | |
4153 this is worth optimizing by partially unrolling the loop. */ | |
4154 if (SYMBOLP (fun)) | |
4155 { | |
4156 fun = XSYMBOL (fun)->function; | |
4157 if (SYMBOLP (fun)) | |
4158 { | |
4159 fun = XSYMBOL (fun)->function; | |
4160 if (SYMBOLP (fun)) | |
4161 fun = indirect_function (fun, 1); | |
4162 } | |
4163 } | |
4164 | |
4165 if (SUBRP (fun)) | |
4166 { | |
4167 Lisp_Subr *subr = XSUBR (fun); | |
4168 int max_args = subr->max_args; | |
4169 Lisp_Object spacious_args[SUBR_MAX_ARGS]; | |
4170 | |
4171 if (fun_nargs == max_args) /* Optimize for the common case */ | |
4172 { | |
4173 funcall_subr: | |
1292 | 4174 PROFILE_ENTER_FUNCTION (); |
428 | 4175 FUNCALL_SUBR (val, subr, fun_args, max_args); |
1292 | 4176 PROFILE_EXIT_FUNCTION (); |
428 | 4177 } |
436 | 4178 else if (fun_nargs < subr->min_args) |
4179 { | |
4180 goto wrong_number_of_arguments; | |
4181 } | |
428 | 4182 else if (fun_nargs < max_args) |
4183 { | |
4184 Lisp_Object *p = spacious_args; | |
4185 | |
4186 /* Default optionals to nil */ | |
4187 while (fun_nargs--) | |
4188 *p++ = *fun_args++; | |
4189 while (p - spacious_args < max_args) | |
4190 *p++ = Qnil; | |
4191 | |
4192 fun_args = spacious_args; | |
4193 goto funcall_subr; | |
4194 } | |
4195 else if (max_args == MANY) | |
4196 { | |
1292 | 4197 PROFILE_ENTER_FUNCTION (); |
436 | 4198 val = SUBR_FUNCTION (subr, MANY) (fun_nargs, fun_args); |
1292 | 4199 PROFILE_EXIT_FUNCTION (); |
428 | 4200 } |
4905
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4846
diff
changeset
|
4201 else if (max_args == UNEVALLED) /* Can't funcall a special operator */ |
428 | 4202 { |
5222
18c0b5909d16
Use keywords in structure syntax; new #define, NEED_TO_HANDLE_21_4_CODE 1
Aidan Kehoe <kehoea@parhasard.net>
parents:
5207
diff
changeset
|
4203 |
18c0b5909d16
Use keywords in structure syntax; new #define, NEED_TO_HANDLE_21_4_CODE 1
Aidan Kehoe <kehoea@parhasard.net>
parents:
5207
diff
changeset
|
4204 #ifdef NEED_TO_HANDLE_21_4_CODE |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4205 /* Ugh, ugh, ugh. */ |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4206 if (EQ (fun, XSYMBOL_FUNCTION (Qthrow))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4207 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4208 args[0] = Qobsolete_throw; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4209 goto retry; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4210 } |
5222
18c0b5909d16
Use keywords in structure syntax; new #define, NEED_TO_HANDLE_21_4_CODE 1
Aidan Kehoe <kehoea@parhasard.net>
parents:
5207
diff
changeset
|
4211 #endif /* NEED_TO_HANDLE_21_4_CODE */ |
18c0b5909d16
Use keywords in structure syntax; new #define, NEED_TO_HANDLE_21_4_CODE 1
Aidan Kehoe <kehoea@parhasard.net>
parents:
5207
diff
changeset
|
4212 |
428 | 4213 goto invalid_function; |
4214 } | |
4215 else | |
4216 { | |
4217 wrong_number_of_arguments: | |
436 | 4218 val = signal_wrong_number_of_arguments_error (fun, fun_nargs); |
428 | 4219 } |
4220 } | |
4221 else if (COMPILED_FUNCTIONP (fun)) | |
4222 { | |
1292 | 4223 PROFILE_ENTER_FUNCTION (); |
428 | 4224 val = funcall_compiled_function (fun, fun_nargs, fun_args); |
1292 | 4225 PROFILE_EXIT_FUNCTION (); |
428 | 4226 } |
4227 else if (CONSP (fun)) | |
4228 { | |
4229 Lisp_Object funcar = XCAR (fun); | |
4230 | |
4231 if (EQ (funcar, Qlambda)) | |
4232 { | |
1292 | 4233 PROFILE_ENTER_FUNCTION (); |
428 | 4234 val = funcall_lambda (fun, fun_nargs, fun_args); |
1292 | 4235 PROFILE_EXIT_FUNCTION (); |
428 | 4236 } |
4237 else if (EQ (funcar, Qautoload)) | |
4238 { | |
970 | 4239 /* do_autoload GCPROs both arguments */ |
428 | 4240 do_autoload (fun, args[0]); |
4241 goto retry; | |
4242 } | |
4243 else /* Can't funcall a macro */ | |
4244 { | |
4245 goto invalid_function; | |
4246 } | |
4247 } | |
4248 else if (UNBOUNDP (fun)) | |
4249 { | |
436 | 4250 val = signal_void_function_error (args[0]); |
428 | 4251 } |
4252 else | |
4253 { | |
4254 invalid_function: | |
436 | 4255 val = signal_invalid_function_error (fun); |
428 | 4256 } |
4257 | |
4258 lisp_eval_depth--; | |
4259 if (backtrace.debug_on_exit) | |
4260 val = do_debug_on_exit (val); | |
4261 POP_BACKTRACE (backtrace); | |
4262 return val; | |
4263 } | |
4264 | |
4265 DEFUN ("functionp", Ffunctionp, 1, 1, 0, /* | |
4266 Return t if OBJECT can be called as a function, else nil. | |
4267 A function is an object that can be applied to arguments, | |
4268 using for example `funcall' or `apply'. | |
4269 */ | |
4270 (object)) | |
4271 { | |
4272 if (SYMBOLP (object)) | |
4273 object = indirect_function (object, 0); | |
4274 | |
4795
084056f46755
#'functionp gives nil for special forms, as in CL and GNU Emacs 23.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4744
diff
changeset
|
4275 if (COMPILED_FUNCTIONP (object) |
084056f46755
#'functionp gives nil for special forms, as in CL and GNU Emacs 23.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4744
diff
changeset
|
4276 || (SUBRP (object) |
084056f46755
#'functionp gives nil for special forms, as in CL and GNU Emacs 23.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4744
diff
changeset
|
4277 && (XSUBR (object)->max_args != UNEVALLED))) |
919 | 4278 return Qt; |
4279 if (CONSP (object)) | |
4280 { | |
4281 Lisp_Object car = XCAR (object); | |
4282 if (EQ (car, Qlambda)) | |
4283 return Qt; | |
4284 if (EQ (car, Qautoload) | |
4795
084056f46755
#'functionp gives nil for special forms, as in CL and GNU Emacs 23.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4744
diff
changeset
|
4285 && NILP (Fcar_safe (Fcdr_safe(Fcdr_safe |
084056f46755
#'functionp gives nil for special forms, as in CL and GNU Emacs 23.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4744
diff
changeset
|
4286 (Fcdr_safe (XCDR (object))))))) |
919 | 4287 return Qt; |
4288 } | |
4289 return Qnil; | |
428 | 4290 } |
4291 | |
4292 static Lisp_Object | |
4293 function_argcount (Lisp_Object function, int function_min_args_p) | |
4294 { | |
4295 Lisp_Object orig_function = function; | |
4296 Lisp_Object arglist; | |
4297 | |
4298 retry: | |
4299 | |
4300 if (SYMBOLP (function)) | |
4301 function = indirect_function (function, 1); | |
4302 | |
4303 if (SUBRP (function)) | |
4304 { | |
442 | 4305 /* Using return with the ?: operator tickles a DEC CC compiler bug. */ |
4306 if (function_min_args_p) | |
4307 return Fsubr_min_args (function); | |
4308 else | |
4309 return Fsubr_max_args (function); | |
428 | 4310 } |
4311 else if (COMPILED_FUNCTIONP (function)) | |
4312 { | |
814 | 4313 Lisp_Compiled_Function *f = XCOMPILED_FUNCTION (function); |
4314 | |
1737 | 4315 if (!OPAQUEP (f->instructions)) |
4316 /* Lazily munge the instructions into a more efficient form */ | |
4317 /* Needed to set max_args */ | |
4318 optimize_compiled_function (function); | |
4319 | |
814 | 4320 if (function_min_args_p) |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
4321 return make_fixnum (f->min_args); |
814 | 4322 else if (f->max_args == MANY) |
4323 return Qnil; | |
4324 else | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
4325 return make_fixnum (f->max_args); |
428 | 4326 } |
4327 else if (CONSP (function)) | |
4328 { | |
4329 Lisp_Object funcar = XCAR (function); | |
4330 | |
4331 if (EQ (funcar, Qmacro)) | |
4332 { | |
4333 function = XCDR (function); | |
4334 goto retry; | |
4335 } | |
4336 else if (EQ (funcar, Qautoload)) | |
4337 { | |
970 | 4338 /* do_autoload GCPROs both arguments */ |
428 | 4339 do_autoload (function, orig_function); |
442 | 4340 function = orig_function; |
428 | 4341 goto retry; |
4342 } | |
4343 else if (EQ (funcar, Qlambda)) | |
4344 { | |
4345 arglist = Fcar (XCDR (function)); | |
4346 } | |
4347 else | |
4348 { | |
4349 goto invalid_function; | |
4350 } | |
4351 } | |
4352 else | |
4353 { | |
4354 invalid_function: | |
442 | 4355 return signal_invalid_function_error (orig_function); |
428 | 4356 } |
4357 | |
4358 { | |
4359 int argcount = 0; | |
4360 | |
4361 EXTERNAL_LIST_LOOP_2 (arg, arglist) | |
4362 { | |
4363 if (EQ (arg, Qand_optional)) | |
4364 { | |
4365 if (function_min_args_p) | |
4366 break; | |
4367 } | |
4368 else if (EQ (arg, Qand_rest)) | |
4369 { | |
4370 if (function_min_args_p) | |
4371 break; | |
4372 else | |
4373 return Qnil; | |
4374 } | |
4375 else | |
4376 { | |
4377 argcount++; | |
4378 } | |
4379 } | |
4380 | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
4381 return make_fixnum (argcount); |
428 | 4382 } |
4383 } | |
4384 | |
4385 DEFUN ("function-min-args", Ffunction_min_args, 1, 1, 0, /* | |
617 | 4386 Return the minimum number of arguments a function may be called with. |
428 | 4387 The function may be any form that can be passed to `funcall', |
4905
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4846
diff
changeset
|
4388 any special operator, or any macro. |
853 | 4389 |
4390 To check if a function can be called with a specified number of | |
4391 arguments, use `function-allows-args'. | |
428 | 4392 */ |
4393 (function)) | |
4394 { | |
4395 return function_argcount (function, 1); | |
4396 } | |
4397 | |
4398 DEFUN ("function-max-args", Ffunction_max_args, 1, 1, 0, /* | |
617 | 4399 Return the maximum number of arguments a function may be called with. |
428 | 4400 The function may be any form that can be passed to `funcall', |
4905
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4846
diff
changeset
|
4401 any special operator, or any macro. |
428 | 4402 If the function takes an arbitrary number of arguments or is |
4905
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4846
diff
changeset
|
4403 a built-in special operator, nil is returned. |
853 | 4404 |
4405 To check if a function can be called with a specified number of | |
4406 arguments, use `function-allows-args'. | |
428 | 4407 */ |
4408 (function)) | |
4409 { | |
4410 return function_argcount (function, 0); | |
4411 } | |
4412 | |
4413 | |
4414 DEFUN ("apply", Fapply, 2, MANY, 0, /* | |
4415 Call FUNCTION with the remaining args, using the last arg as a list of args. | |
4416 Thus, (apply '+ 1 2 '(3 4)) returns 10. | |
4693
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
4417 |
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
4418 arguments: (FUNCTION &rest ARGS) |
428 | 4419 */ |
4420 (int nargs, Lisp_Object *args)) | |
4421 { | |
4422 /* This function can GC */ | |
4423 Lisp_Object fun = args[0]; | |
4424 Lisp_Object spread_arg = args [nargs - 1]; | |
4425 int numargs; | |
4426 int funcall_nargs; | |
4427 | |
4428 GET_EXTERNAL_LIST_LENGTH (spread_arg, numargs); | |
4429 | |
4430 if (numargs == 0) | |
4431 /* (apply foo 0 1 '()) */ | |
4432 return Ffuncall (nargs - 1, args); | |
4433 else if (numargs == 1) | |
4434 { | |
4435 /* (apply foo 0 1 '(2)) */ | |
4436 args [nargs - 1] = XCAR (spread_arg); | |
4437 return Ffuncall (nargs, args); | |
4438 } | |
4439 | |
4440 /* -1 for function, -1 for spread arg */ | |
4441 numargs = nargs - 2 + numargs; | |
4442 /* +1 for function */ | |
4443 funcall_nargs = 1 + numargs; | |
4444 | |
4445 if (SYMBOLP (fun)) | |
4446 fun = indirect_function (fun, 0); | |
4447 | |
4448 if (SUBRP (fun)) | |
4449 { | |
4450 Lisp_Subr *subr = XSUBR (fun); | |
4451 int max_args = subr->max_args; | |
4452 | |
4453 if (numargs < subr->min_args | |
4454 || (max_args >= 0 && max_args < numargs)) | |
4455 { | |
4456 /* Let funcall get the error */ | |
4457 } | |
4458 else if (max_args > numargs) | |
4459 { | |
4460 /* Avoid having funcall cons up yet another new vector of arguments | |
4461 by explicitly supplying nil's for optional values */ | |
4462 funcall_nargs += (max_args - numargs); | |
4463 } | |
4464 } | |
4465 else if (UNBOUNDP (fun)) | |
4466 { | |
4467 /* Let funcall get the error */ | |
4468 fun = args[0]; | |
4469 } | |
4470 | |
4471 { | |
4472 REGISTER int i; | |
4473 Lisp_Object *funcall_args = alloca_array (Lisp_Object, funcall_nargs); | |
4474 struct gcpro gcpro1; | |
4475 | |
4476 GCPRO1 (*funcall_args); | |
4477 gcpro1.nvars = funcall_nargs; | |
4478 | |
4479 /* Copy in the unspread args */ | |
4480 memcpy (funcall_args, args, (nargs - 1) * sizeof (Lisp_Object)); | |
4481 /* Spread the last arg we got. Its first element goes in | |
4482 the slot that it used to occupy, hence this value of I. */ | |
4483 for (i = nargs - 1; | |
4484 !NILP (spread_arg); /* i < 1 + numargs */ | |
4485 i++, spread_arg = XCDR (spread_arg)) | |
4486 { | |
4487 funcall_args [i] = XCAR (spread_arg); | |
4488 } | |
4489 /* Supply nil for optional args (to subrs) */ | |
4490 for (; i < funcall_nargs; i++) | |
4491 funcall_args[i] = Qnil; | |
4492 | |
4493 | |
4494 RETURN_UNGCPRO (Ffuncall (funcall_nargs, funcall_args)); | |
4495 } | |
4496 } | |
4497 | |
4498 /* Apply lambda list FUN to the NARGS evaluated arguments in ARGS and | |
4499 return the result of evaluation. */ | |
4500 | |
4501 static Lisp_Object | |
4502 funcall_lambda (Lisp_Object fun, int nargs, Lisp_Object args[]) | |
4503 { | |
4504 /* This function can GC */ | |
442 | 4505 Lisp_Object arglist, body, tail; |
428 | 4506 int speccount = specpdl_depth(); |
4507 REGISTER int i = 0; | |
4508 | |
4509 tail = XCDR (fun); | |
4510 | |
4511 if (!CONSP (tail)) | |
4512 goto invalid_function; | |
4513 | |
4514 arglist = XCAR (tail); | |
4515 body = XCDR (tail); | |
4516 | |
4517 { | |
4518 int optional = 0, rest = 0; | |
4519 | |
442 | 4520 EXTERNAL_LIST_LOOP_2 (symbol, arglist) |
428 | 4521 { |
4522 if (!SYMBOLP (symbol)) | |
4523 goto invalid_function; | |
4524 if (EQ (symbol, Qand_rest)) | |
4525 rest = 1; | |
4526 else if (EQ (symbol, Qand_optional)) | |
4527 optional = 1; | |
4528 else if (rest) | |
4529 { | |
4530 specbind (symbol, Flist (nargs - i, &args[i])); | |
4531 i = nargs; | |
4532 } | |
4533 else if (i < nargs) | |
4534 specbind (symbol, args[i++]); | |
4535 else if (!optional) | |
4536 goto wrong_number_of_arguments; | |
4537 else | |
4538 specbind (symbol, Qnil); | |
4539 } | |
4540 } | |
4541 | |
4542 if (i < nargs) | |
4543 goto wrong_number_of_arguments; | |
4544 | |
771 | 4545 return unbind_to_1 (speccount, Fprogn (body)); |
428 | 4546 |
4547 wrong_number_of_arguments: | |
436 | 4548 return signal_wrong_number_of_arguments_error (fun, nargs); |
428 | 4549 |
4550 invalid_function: | |
436 | 4551 return signal_invalid_function_error (fun); |
428 | 4552 } |
4553 | |
4554 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4555 /* Multiple values. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4556 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4557 A multiple value object is returned by #'values if: |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4558 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4559 -- The number of arguments to #'values is not one, and: |
4905
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4846
diff
changeset
|
4560 -- Some special operator in the call stack is prepared to handle more than |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4561 one multiple value. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4562 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4563 The return value of #'values-list is analogous to that of #'values. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4564 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4565 Henry Baker, in https://eprints.kfupm.edu.sa/31898/1/31898.pdf ("CONS |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4566 Should not CONS its Arguments, or, a Lazy Alloc is a Smart Alloc", ACM |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4567 Sigplan Notices 27,3 (March 1992),24-34.) says it should be possible to |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4568 allocate Common Lisp multiple-value objects on the stack, but this |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4569 assumes that variable-length records can be allocated on the stack, |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4570 something not true for us. As far as I can tell, it also ignores the |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4571 contexts where multiple-values need to be thrown, or maybe it thinks such |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4572 objects should be converted to heap allocation at that point. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4573 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4574 The specific multiple values saved and returned depend on how many |
4905
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4846
diff
changeset
|
4575 multiple-values special operators in the stack are interested in; for |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4576 example, if #'multiple-value-call is somewhere in the call stack, all |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4577 values passed to #'values will be saved and returned. If an expansion of |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4578 #'multiple-value-setq with 10 SYMS is the only part of the call stack |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4579 interested in multiple values, then a maximum of ten multiple values will |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4580 be saved and returned. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4581 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4582 (#'throw passes back multiple values in its VALUE argument; this is why |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4583 we can't just take the details of the most immediate |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4584 #'multiple-value-{whatever} call to work out which values to save, we |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4585 need to look at the whole stack, or, equivalently, the dynamic variables |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4586 we set to reflect the whole stack.) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4587 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4588 The first value passed to #'values will always be saved, since that is |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4589 needed to convert a multiple value object into a single value object, |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4590 something that is normally necessary independent of how many functions in |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4591 the call stack are interested in multiple values. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4592 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4593 However many values (for values of "however many" that are not one) are |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4594 saved and restored, the multiple value object knows how many arguments it |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4595 would contain were none to have been discarded, and will indicate this |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4596 on being printed from within GDB. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4597 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4598 In lisp-interaction-mode, no multiple values should be discarded (unless |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4599 they need to be for the sake of the correctness of the program); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4600 #'eval-interactive-with-multiple-value-list in lisp-mode.el wraps its |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4601 #'eval calls with #'multiple-value-list calls to avoid this. This means |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4602 that there is a small performance and memory penalty for code evaluated |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4603 in *scratch*; use M-: EXPRESSION RET if you really need to avoid |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4604 this. Lisp code execution that is not ultimately from hitting C-j in |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4605 *scratch*--that is, the vast vast majority of Lisp code execution--does |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4606 not have this penalty. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4607 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4608 Probably the most important aspect of multiple values is stated with |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4609 admirable clarity by CLTL2: |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4610 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4611 "No matter how many values a form produces, if the form is an argument |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4612 form in a function call, then exactly one value (the first one) is |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4613 used." |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4614 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4615 This means that most contexts, most of the time, will never see multiple |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4616 values. There are important exceptions; search the web for that text in |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4617 quotation marks and read the related chapter. This code handles all of |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4618 them, to my knowledge. Aidan Kehoe, Mon Mar 16 00:17:39 GMT 2009. */ |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4619 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4620 static Lisp_Object |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4621 make_multiple_value (Lisp_Object first_value, Elemcount count, |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4622 Elemcount first_desired, Elemcount upper_limit) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4623 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4624 Bytecount sizem; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4625 struct multiple_value *mv; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4626 Elemcount i, allocated_count; |
5118
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
4627 Lisp_Object mvobj; |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4628 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4629 assert (count != 1); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4630 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4631 if (1 != upper_limit && (0 == first_desired)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4632 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4633 /* We always allocate element zero, and that's taken into account when |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4634 working out allocated_count: */ |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4635 first_desired = 1; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4636 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4637 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4638 if (first_desired >= count) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4639 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4640 /* We can't pass anything back that our caller is interested in. Only |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4641 allocate for the first argument. */ |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4642 allocated_count = 1; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4643 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4644 else |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4645 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4646 allocated_count = 1 + ((upper_limit > count ? count : upper_limit) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4647 - first_desired); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4648 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4649 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4650 sizem = FLEXIBLE_ARRAY_STRUCT_SIZEOF (multiple_value, |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4651 Lisp_Object, |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4652 contents, allocated_count); |
5118
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
4653 mvobj = ALLOC_SIZED_LISP_OBJECT (sizem, multiple_value); |
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
4654 mv = XMULTIPLE_VALUE (mvobj); |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4655 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4656 mv->count = count; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4657 mv->first_desired = first_desired; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4658 mv->allocated_count = allocated_count; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4659 mv->contents[0] = first_value; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4660 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4661 for (i = first_desired; i < upper_limit && i < count; ++i) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4662 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4663 mv->contents[1 + (i - first_desired)] = Qunbound; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4664 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4665 |
5118
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
4666 return mvobj; |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4667 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4668 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4669 void |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4670 multiple_value_aset (Lisp_Object obj, Elemcount index, Lisp_Object value) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4671 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4672 struct multiple_value *mv = XMULTIPLE_VALUE (obj); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4673 Elemcount first_desired = mv->first_desired; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4674 Elemcount allocated_count = mv->allocated_count; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4675 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4676 if (index != 0 && |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4677 (index < first_desired || index >= (first_desired + allocated_count))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4678 { |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
4679 args_out_of_range (make_fixnum (first_desired), |
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
4680 make_fixnum (first_desired + allocated_count)); |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4681 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4682 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4683 mv->contents[index == 0 ? 0 : 1 + (index - first_desired)] = value; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4684 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4685 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4686 Lisp_Object |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4687 multiple_value_aref (Lisp_Object obj, Elemcount index) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4688 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4689 struct multiple_value *mv = XMULTIPLE_VALUE (obj); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4690 Elemcount first_desired = mv->first_desired; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4691 Elemcount allocated_count = mv->allocated_count; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4692 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4693 if (index != 0 && |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4694 (index < first_desired || index >= (first_desired + allocated_count))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4695 { |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
4696 args_out_of_range (make_fixnum (first_desired), |
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
4697 make_fixnum (first_desired + allocated_count)); |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4698 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4699 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4700 return mv->contents[index == 0 ? 0 : 1 + (index - first_desired)]; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4701 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4702 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4703 static void |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4704 print_multiple_value (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4705 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4706 struct multiple_value *mv = XMULTIPLE_VALUE (obj); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4707 Elemcount first_desired = mv->first_desired; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4708 Elemcount allocated_count = mv->allocated_count; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4709 Elemcount count = mv->count, index; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4710 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4711 if (print_readably) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4712 { |
5146
88bd4f3ef8e4
make lrecord UID's have a separate UID space for each object, resurrect debug SOE code in extents.c
Ben Wing <ben@xemacs.org>
parents:
5142
diff
changeset
|
4713 printing_unreadable_object_fmt ("#<multiple values 0x%x>", |
88bd4f3ef8e4
make lrecord UID's have a separate UID space for each object, resurrect debug SOE code in extents.c
Ben Wing <ben@xemacs.org>
parents:
5142
diff
changeset
|
4714 LISP_OBJECT_UID (obj)); |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4715 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4716 |
5086
47bcef7b0b44
Print multiple values with #<INTERNAL OBJECT (XEmacs bug?) ...>, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
4717 write_fmt_string (printcharfun, |
47bcef7b0b44
Print multiple values with #<INTERNAL OBJECT (XEmacs bug?) ...>, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
4718 "#<INTERNAL OBJECT (XEmacs bug?) %d multiple values," |
47bcef7b0b44
Print multiple values with #<INTERNAL OBJECT (XEmacs bug?) ...>, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
4719 " data (", count); |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4720 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4721 for (index = 0; index < count;) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4722 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4723 if (index != 0 && |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4724 (index < first_desired || |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4725 index >= (first_desired + (allocated_count - 1)))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4726 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4727 write_fmt_string (printcharfun, "#<discarded-multiple-value %d>", |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4728 index); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4729 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4730 else |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4731 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4732 print_internal (multiple_value_aref (obj, index), |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4733 printcharfun, escapeflag); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4734 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4735 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4736 ++index; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4737 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4738 if (count > 1 && index < count) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4739 { |
5086
47bcef7b0b44
Print multiple values with #<INTERNAL OBJECT (XEmacs bug?) ...>, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
4740 write_ascstring (printcharfun, " "); |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4741 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4742 } |
5086
47bcef7b0b44
Print multiple values with #<INTERNAL OBJECT (XEmacs bug?) ...>, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
4743 |
5146
88bd4f3ef8e4
make lrecord UID's have a separate UID space for each object, resurrect debug SOE code in extents.c
Ben Wing <ben@xemacs.org>
parents:
5142
diff
changeset
|
4744 write_fmt_string (printcharfun, ") 0x%x>", LISP_OBJECT_UID (obj)); |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4745 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4746 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4747 static Lisp_Object |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4748 mark_multiple_value (Lisp_Object obj) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4749 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4750 struct multiple_value *mv = XMULTIPLE_VALUE (obj); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4751 Elemcount index, allocated_count = mv->allocated_count; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4752 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4753 for (index = 0; index < allocated_count; ++index) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4754 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4755 mark_object (mv->contents[index]); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4756 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4757 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4758 return Qnil; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4759 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4760 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4761 static Bytecount |
5127
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5126
diff
changeset
|
4762 size_multiple_value (Lisp_Object obj) |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4763 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4764 return FLEXIBLE_ARRAY_STRUCT_SIZEOF (struct multiple_value, |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4765 Lisp_Object, contents, |
5127
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5126
diff
changeset
|
4766 XMULTIPLE_VALUE (obj)->allocated_count); |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4767 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4768 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4769 static const struct memory_description multiple_value_description[] = { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4770 { XD_LONG, offsetof (struct multiple_value, count) }, |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4771 { XD_ELEMCOUNT, offsetof (struct multiple_value, allocated_count) }, |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4772 { XD_LONG, offsetof (struct multiple_value, first_desired) }, |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4773 { XD_LISP_OBJECT_ARRAY, offsetof (struct multiple_value, contents), |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4774 XD_INDIRECT (1, 0) }, |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4775 { XD_END } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4776 }; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4777 |
5118
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
4778 DEFINE_DUMPABLE_SIZABLE_LISP_OBJECT ("multiple-value", multiple_value, |
5124
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
4779 mark_multiple_value, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
4780 print_multiple_value, 0, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
4781 0, /* No equal method. */ |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
4782 0, /* No hash method. */ |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
4783 multiple_value_description, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
4784 size_multiple_value, |
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
4785 struct multiple_value); |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4786 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4787 /* Given that FIRST and UPPER are the inclusive lower and exclusive upper |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4788 bounds for the multiple values we're interested in, modify (or don't) the |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4789 special variables used to indicate this to #'values and #'values-list. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4790 Returns the specpdl_depth() value before any modification. */ |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4791 int |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4792 bind_multiple_value_limits (int first, int upper) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4793 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4794 int result = specpdl_depth(); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4795 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4796 if (!(upper > first)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4797 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4798 invalid_argument ("MULTIPLE-VALUE-UPPER-LIMIT must be greater than " |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4799 " FIRST-DESIRED-MULTIPLE-VALUE", Qunbound); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4800 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4801 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4802 if (upper > Vmultiple_values_limit) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4803 { |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
4804 args_out_of_range (make_fixnum (upper), make_fixnum (Vmultiple_values_limit)); |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4805 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4806 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4807 /* In the event that something back up the stack wants more multiple |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4808 values than we do, we need to keep its figures for |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4809 first_desired_multiple_value or multiple_value_current_limit both. It |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4810 may be that the form will throw past us. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4811 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4812 If first_desired_multiple_value is zero, this means it hasn't ever been |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4813 bound, and any value we have for first is appropriate to use. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4814 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4815 Zeroth element is always saved, no need to note that: */ |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4816 if (0 == first) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4817 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4818 first = 1; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4819 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4820 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4821 if (0 == first_desired_multiple_value |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4822 || first < first_desired_multiple_value) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4823 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4824 internal_bind_int (&first_desired_multiple_value, first); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4825 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4826 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4827 if (upper > multiple_value_current_limit) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4828 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4829 internal_bind_int (&multiple_value_current_limit, upper); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4830 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4831 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4832 return result; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4833 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4834 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4835 Lisp_Object |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4836 multiple_value_call (int nargs, Lisp_Object *args) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4837 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4838 /* The argument order here is horrible: */ |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
4839 int i, speccount = XFIXNUM (args[3]); |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4840 Lisp_Object result = Qnil, head = Fcons (args[0], Qnil), list_offset; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4841 struct gcpro gcpro1, gcpro2; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4842 Lisp_Object apply_args[2]; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4843 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4844 GCPRO2 (head, result); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4845 list_offset = head; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4846 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4847 assert (!(MULTIPLE_VALUEP (args[0]))); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4848 CHECK_FUNCTION (args[0]); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4849 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4850 /* Start at 4, to ignore the function, the speccount, and the arguments to |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4851 multiple-values-limit (which we don't discard because |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4852 #'multiple-value-list-internal needs them): */ |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4853 for (i = 4; i < nargs; ++i) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4854 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4855 result = args[i]; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4856 if (MULTIPLE_VALUEP (result)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4857 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4858 Lisp_Object val; |
5016
2ade80e8c640
enable more warnings and fix them
Ben Wing <ben@xemacs.org>
parents:
5013
diff
changeset
|
4859 Elemcount j, count = XMULTIPLE_VALUE_COUNT (result); |
2ade80e8c640
enable more warnings and fix them
Ben Wing <ben@xemacs.org>
parents:
5013
diff
changeset
|
4860 |
2ade80e8c640
enable more warnings and fix them
Ben Wing <ben@xemacs.org>
parents:
5013
diff
changeset
|
4861 for (j = 0; j < count; j++) |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4862 { |
5016
2ade80e8c640
enable more warnings and fix them
Ben Wing <ben@xemacs.org>
parents:
5013
diff
changeset
|
4863 val = multiple_value_aref (result, j); |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4864 assert (!UNBOUNDP (val)); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4865 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4866 XSETCDR (list_offset, Fcons (val, Qnil)); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4867 list_offset = XCDR (list_offset); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4868 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4869 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4870 else |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4871 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4872 XSETCDR (list_offset, Fcons (result, Qnil)); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4873 list_offset = XCDR (list_offset); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4874 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4875 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4876 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4877 apply_args [0] = XCAR (head); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4878 apply_args [1] = XCDR (head); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4879 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4880 unbind_to (speccount); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4881 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4882 RETURN_UNGCPRO (Fapply (countof(apply_args), apply_args)); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4883 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4884 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4885 DEFUN ("multiple-value-call", Fmultiple_value_call, 1, UNEVALLED, 0, /* |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4886 Call FUNCTION with arguments FORMS, using multiple values when returned. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4887 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4888 All of the (possibly multiple) values returned by each form in FORMS are |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4889 gathered together, and given as arguments to FUNCTION; conceptually, this |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4890 function is a version of `apply' that by-passes the multiple values |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4891 infrastructure, treating multiple values as intercalated lists. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4892 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4893 arguments: (FUNCTION &rest FORMS) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4894 */ |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4895 (args)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4896 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4897 int listcount, i = 0, speccount; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4898 Lisp_Object *constructed_args; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4899 struct gcpro gcpro1; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4900 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4901 GET_EXTERNAL_LIST_LENGTH (args, listcount); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4902 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4903 constructed_args = alloca_array (Lisp_Object, listcount + 3); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4904 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4905 /* Fcar so we error on non-cons: */ |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4906 constructed_args[i] = IGNORE_MULTIPLE_VALUES (Feval (Fcar (args))); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4907 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4908 GCPRO1 (*constructed_args); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4909 gcpro1.nvars = ++i; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4910 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4911 /* The argument order is horrible here. */ |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
4912 constructed_args[i] = make_fixnum (0); |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4913 gcpro1.nvars = ++i; |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
4914 constructed_args[i] = make_fixnum (Vmultiple_values_limit); |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4915 gcpro1.nvars = ++i; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4916 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4917 speccount = bind_multiple_value_limits (0, Vmultiple_values_limit); |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
4918 constructed_args[i] = make_fixnum (speccount); |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4919 gcpro1.nvars = ++i; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4920 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4921 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4922 LIST_LOOP_2 (elt, XCDR (args)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4923 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4924 constructed_args[i] = Feval (elt); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4925 gcpro1.nvars = ++i; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4926 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4927 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4928 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4929 RETURN_UNGCPRO (multiple_value_call (listcount + 3, constructed_args)); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4930 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4931 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4932 Lisp_Object |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4933 multiple_value_list_internal (int nargs, Lisp_Object *args) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4934 { |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
4935 int first = XFIXNUM (args[0]), upper = XFIXNUM (args[1]), |
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
4936 speccount = XFIXNUM(args[2]); |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4937 Lisp_Object result = Qnil; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4938 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4939 assert (nargs == 4); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4940 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4941 result = args[3]; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4942 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4943 unbind_to (speccount); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4944 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4945 if (MULTIPLE_VALUEP (result)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4946 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4947 Lisp_Object head = Fcons (Qnil, Qnil); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4948 Lisp_Object list_offset = head, val; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4949 Elemcount count = XMULTIPLE_VALUE_COUNT(result); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4950 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4951 for (; first < upper && first < count; ++first) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4952 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4953 val = multiple_value_aref (result, first); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4954 assert (!UNBOUNDP (val)); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4955 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4956 XSETCDR (list_offset, Fcons (val, Qnil)); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4957 list_offset = XCDR (list_offset); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4958 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4959 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4960 return XCDR (head); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4961 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4962 else |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4963 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4964 if (first == 0) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4965 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4966 return Fcons (result, Qnil); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4967 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4968 else |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4969 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4970 return Qnil; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4971 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4972 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4973 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4974 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4975 DEFUN ("multiple-value-list-internal", Fmultiple_value_list_internal, 3, |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4976 UNEVALLED, 0, /* |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4977 Evaluate FORM. Return a list of multiple vals reflecting the other two args. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4978 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4979 Don't use this. Use `multiple-value-list', the macro specified by Common |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4980 Lisp, instead. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4981 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4982 FIRST-DESIRED-MULTIPLE-VALUE is the first element in list of multiple values |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4983 to pass back. MULTIPLE-VALUE-UPPER-LIMIT is the exclusive upper limit on |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4984 the indexes within the values that may be passed back; this function will |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4985 never return a list longer than MULTIPLE-VALUE-UPPER-LIMIT - |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4986 FIRST-DESIRED-MULTIPLE-VALUE. It may return a list shorter than that, if |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4987 `values' or `values-list' do not supply enough elements. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4988 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4989 arguments: (FIRST-DESIRED-MULTIPLE-VALUE MULTIPLE-VALUE-UPPER-LIMIT FORM) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4990 */ |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4991 (args)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4992 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4993 Lisp_Object argv[4]; |
4686
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
4994 int first, upper, nargs; |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4995 struct gcpro gcpro1; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4996 |
4686
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
4997 GET_LIST_LENGTH (args, nargs); |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
4998 if (nargs != 3) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
4999 { |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
5000 Fsignal (Qwrong_number_of_arguments, |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
5001 list2 (Qmultiple_value_list_internal, make_fixnum (nargs))); |
4686
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
5002 } |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
5003 |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5004 argv[0] = IGNORE_MULTIPLE_VALUES (Feval (XCAR (args))); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5005 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5006 GCPRO1 (argv[0]); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5007 gcpro1.nvars = 1; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5008 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5009 args = XCDR (args); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5010 argv[1] = IGNORE_MULTIPLE_VALUES (Feval (XCAR (args))); |
5307
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5265
diff
changeset
|
5011 |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
5012 check_integer_range (argv[1], Qzero, make_fixnum (MOST_POSITIVE_FIXNUM)); |
5307
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5265
diff
changeset
|
5013 check_integer_range (argv[0], Qzero, argv[1]); |
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5265
diff
changeset
|
5014 |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
5015 upper = XFIXNUM (argv[1]); |
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
5016 first = XFIXNUM (argv[0]); |
5307
c096d8051f89
Have NATNUMP give t for positive bignums; check limits appropriately.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5265
diff
changeset
|
5017 |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5018 gcpro1.nvars = 2; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5019 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5020 /* The unintuitive order of things here is for the sake of the bytecode; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5021 the alternative would be to encode the number of arguments in the |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5022 bytecode stream, which complicates things if we have more than 255 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5023 arguments. */ |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
5024 argv[2] = make_fixnum (bind_multiple_value_limits (first, upper)); |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5025 gcpro1.nvars = 3; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5026 args = XCDR (args); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5027 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5028 /* GCPROing in this function is not strictly necessary, this Feval is the |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5029 only point that may cons up data that is not immediately discarded, and |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5030 within it is the only point (in Fmultiple_value_list_internal and |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5031 multiple_value_list) that we can garbage collect. But I'm conservative, |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5032 and this function is called so rarely (only from interpreted code) that |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5033 it doesn't matter for performance. */ |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5034 argv[3] = Feval (XCAR (args)); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5035 gcpro1.nvars = 4; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5036 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5037 RETURN_UNGCPRO (multiple_value_list_internal (countof (argv), argv)); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5038 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5039 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5040 DEFUN ("multiple-value-prog1", Fmultiple_value_prog1, 1, UNEVALLED, 0, /* |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5041 Similar to `prog1', but return any multiple values from the first form. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5042 `prog1' itself will never return multiple values. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5043 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5044 arguments: (FIRST &rest BODY) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5045 */ |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5046 (args)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5047 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5048 /* This function can GC */ |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5049 Lisp_Object val; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5050 struct gcpro gcpro1; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5051 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5052 val = Feval (XCAR (args)); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5053 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5054 GCPRO1 (val); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5055 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5056 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5057 LIST_LOOP_2 (form, XCDR (args)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5058 Feval (form); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5059 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5060 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5061 RETURN_UNGCPRO (val); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5062 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5063 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5064 DEFUN ("values", Fvalues, 0, MANY, 0, /* |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5065 Return all ARGS as multiple values. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5066 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5067 arguments: (&rest ARGS) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5068 */ |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5069 (int nargs, Lisp_Object *args)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5070 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5071 Lisp_Object result = Qnil; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5072 int counting = 1; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5073 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5074 /* Pathological cases, no need to cons up an object: */ |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5075 if (1 == nargs || 1 == multiple_value_current_limit) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5076 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5077 return nargs ? args[0] : Qnil; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5078 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5079 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5080 /* If nargs is zero, this code is correct and desirable. With |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5081 #'multiple-value-call, we want zero-length multiple values in the |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5082 argument list to be discarded entirely, and we can't do this if we |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5083 transform them to nil. */ |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5084 result = make_multiple_value (nargs ? args[0] : Qnil, nargs, |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5085 first_desired_multiple_value, |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5086 multiple_value_current_limit); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5087 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5088 for (; counting < nargs; ++counting) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5089 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5090 if (counting >= first_desired_multiple_value && |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5091 counting < multiple_value_current_limit) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5092 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5093 multiple_value_aset (result, counting, args[counting]); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5094 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5095 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5096 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5097 return result; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5098 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5099 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5100 DEFUN ("values-list", Fvalues_list, 1, 1, 0, /* |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5101 Return all the elements of LIST as multiple values. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5102 */ |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5103 (list)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5104 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5105 Lisp_Object result = Qnil; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5106 int counting = 1, listcount; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5107 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5108 GET_EXTERNAL_LIST_LENGTH (list, listcount); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5109 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5110 /* Pathological cases, no need to cons up an object: */ |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5111 if (1 == listcount || 1 == multiple_value_current_limit) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5112 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5113 return Fcar_safe (list); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5114 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5115 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5116 result = make_multiple_value (Fcar_safe (list), listcount, |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5117 first_desired_multiple_value, |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5118 multiple_value_current_limit); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5119 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5120 list = Fcdr_safe (list); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5121 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5122 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5123 EXTERNAL_LIST_LOOP_2 (elt, list) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5124 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5125 if (counting >= first_desired_multiple_value && |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5126 counting < multiple_value_current_limit) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5127 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5128 multiple_value_aset (result, counting, elt); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5129 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5130 ++counting; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5131 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5132 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5133 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5134 return result; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5135 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5136 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5137 Lisp_Object |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5138 values2 (Lisp_Object first, Lisp_Object second) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5139 { |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5140 Lisp_Object argv[2]; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5141 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5142 argv[0] = first; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5143 argv[1] = second; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5144 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5145 return Fvalues (countof (argv), argv); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5146 } |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5147 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5148 |
428 | 5149 /************************************************************************/ |
5150 /* Run hook variables in various ways. */ | |
5151 /************************************************************************/ | |
5152 | |
5153 DEFUN ("run-hooks", Frun_hooks, 1, MANY, 0, /* | |
5154 Run each hook in HOOKS. Major mode functions use this. | |
5155 Each argument should be a symbol, a hook variable. | |
5156 These symbols are processed in the order specified. | |
5157 If a hook symbol has a non-nil value, that value may be a function | |
5158 or a list of functions to be called to run the hook. | |
5159 If the value is a function, it is called with no arguments. | |
5160 If it is a list, the elements are called, in order, with no arguments. | |
5161 | |
5162 To make a hook variable buffer-local, use `make-local-hook', | |
5163 not `make-local-variable'. | |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
5164 |
4693
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
5165 arguments: (FIRST &rest REST) |
428 | 5166 */ |
5167 (int nargs, Lisp_Object *args)) | |
5168 { | |
5169 REGISTER int i; | |
5170 | |
5171 for (i = 0; i < nargs; i++) | |
5172 run_hook_with_args (1, args + i, RUN_HOOKS_TO_COMPLETION); | |
5173 | |
5174 return Qnil; | |
5175 } | |
5176 | |
5177 DEFUN ("run-hook-with-args", Frun_hook_with_args, 1, MANY, 0, /* | |
5178 Run HOOK with the specified arguments ARGS. | |
5179 HOOK should be a symbol, a hook variable. If HOOK has a non-nil | |
5180 value, that value may be a function or a list of functions to be | |
5181 called to run the hook. If the value is a function, it is called with | |
5182 the given arguments and its return value is returned. If it is a list | |
5183 of functions, those functions are called, in order, | |
5184 with the given arguments ARGS. | |
444 | 5185 It is best not to depend on the value returned by `run-hook-with-args', |
428 | 5186 as that may change. |
5187 | |
5188 To make a hook variable buffer-local, use `make-local-hook', | |
5189 not `make-local-variable'. | |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
5190 |
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
5191 arguments: (HOOK &rest ARGS) |
428 | 5192 */ |
5193 (int nargs, Lisp_Object *args)) | |
5194 { | |
5195 return run_hook_with_args (nargs, args, RUN_HOOKS_TO_COMPLETION); | |
5196 } | |
5197 | |
5198 DEFUN ("run-hook-with-args-until-success", Frun_hook_with_args_until_success, 1, MANY, 0, /* | |
5199 Run HOOK with the specified arguments ARGS. | |
5200 HOOK should be a symbol, a hook variable. Its value should | |
5201 be a list of functions. We call those functions, one by one, | |
5202 passing arguments ARGS to each of them, until one of them | |
5203 returns a non-nil value. Then we return that value. | |
5204 If all the functions return nil, we return nil. | |
5205 | |
5206 To make a hook variable buffer-local, use `make-local-hook', | |
5207 not `make-local-variable'. | |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
5208 |
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
5209 arguments: (HOOK &rest ARGS) |
428 | 5210 */ |
5211 (int nargs, Lisp_Object *args)) | |
5212 { | |
5213 return run_hook_with_args (nargs, args, RUN_HOOKS_UNTIL_SUCCESS); | |
5214 } | |
5215 | |
5216 DEFUN ("run-hook-with-args-until-failure", Frun_hook_with_args_until_failure, 1, MANY, 0, /* | |
5217 Run HOOK with the specified arguments ARGS. | |
5218 HOOK should be a symbol, a hook variable. Its value should | |
5219 be a list of functions. We call those functions, one by one, | |
5220 passing arguments ARGS to each of them, until one of them | |
5221 returns nil. Then we return nil. | |
5222 If all the functions return non-nil, we return non-nil. | |
5223 | |
5224 To make a hook variable buffer-local, use `make-local-hook', | |
5225 not `make-local-variable'. | |
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
5226 |
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
5227 arguments: (HOOK &rest ARGS) |
428 | 5228 */ |
5229 (int nargs, Lisp_Object *args)) | |
5230 { | |
5231 return run_hook_with_args (nargs, args, RUN_HOOKS_UNTIL_FAILURE); | |
5232 } | |
5233 | |
5234 /* ARGS[0] should be a hook symbol. | |
5235 Call each of the functions in the hook value, passing each of them | |
5236 as arguments all the rest of ARGS (all NARGS - 1 elements). | |
5237 COND specifies a condition to test after each call | |
5238 to decide whether to stop. | |
5239 The caller (or its caller, etc) must gcpro all of ARGS, | |
5240 except that it isn't necessary to gcpro ARGS[0]. */ | |
5241 | |
5242 Lisp_Object | |
5243 run_hook_with_args_in_buffer (struct buffer *buf, int nargs, Lisp_Object *args, | |
5244 enum run_hooks_condition cond) | |
5245 { | |
5246 Lisp_Object sym, val, ret; | |
5247 | |
5248 if (!initialized || preparing_for_armageddon) | |
5249 /* We need to bail out of here pronto. */ | |
5250 return Qnil; | |
5251 | |
3092 | 5252 #ifndef NEW_GC |
428 | 5253 /* Whenever gc_in_progress is true, preparing_for_armageddon |
5254 will also be true unless something is really hosed. */ | |
5255 assert (!gc_in_progress); | |
3092 | 5256 #endif /* not NEW_GC */ |
428 | 5257 |
5258 sym = args[0]; | |
771 | 5259 val = symbol_value_in_buffer (sym, wrap_buffer (buf)); |
428 | 5260 ret = (cond == RUN_HOOKS_UNTIL_FAILURE ? Qt : Qnil); |
5261 | |
5262 if (UNBOUNDP (val) || NILP (val)) | |
5263 return ret; | |
5264 else if (!CONSP (val) || EQ (XCAR (val), Qlambda)) | |
5265 { | |
5266 args[0] = val; | |
5267 return Ffuncall (nargs, args); | |
5268 } | |
5269 else | |
5270 { | |
5271 struct gcpro gcpro1, gcpro2, gcpro3; | |
5272 Lisp_Object globals = Qnil; | |
5273 GCPRO3 (sym, val, globals); | |
5274 | |
5275 for (; | |
5276 CONSP (val) && ((cond == RUN_HOOKS_TO_COMPLETION) | |
5277 || (cond == RUN_HOOKS_UNTIL_SUCCESS ? NILP (ret) | |
5278 : !NILP (ret))); | |
5279 val = XCDR (val)) | |
5280 { | |
5281 if (EQ (XCAR (val), Qt)) | |
5282 { | |
5283 /* t indicates this hook has a local binding; | |
5284 it means to run the global binding too. */ | |
5285 globals = Fdefault_value (sym); | |
5286 | |
5287 if ((! CONSP (globals) || EQ (XCAR (globals), Qlambda)) && | |
5288 ! NILP (globals)) | |
5289 { | |
5290 args[0] = globals; | |
5291 ret = Ffuncall (nargs, args); | |
5292 } | |
5293 else | |
5294 { | |
5295 for (; | |
5296 CONSP (globals) && ((cond == RUN_HOOKS_TO_COMPLETION) | |
5297 || (cond == RUN_HOOKS_UNTIL_SUCCESS | |
5298 ? NILP (ret) | |
5299 : !NILP (ret))); | |
5300 globals = XCDR (globals)) | |
5301 { | |
5302 args[0] = XCAR (globals); | |
5303 /* In a global value, t should not occur. If it does, we | |
5304 must ignore it to avoid an endless loop. */ | |
5305 if (!EQ (args[0], Qt)) | |
5306 ret = Ffuncall (nargs, args); | |
5307 } | |
5308 } | |
5309 } | |
5310 else | |
5311 { | |
5312 args[0] = XCAR (val); | |
5313 ret = Ffuncall (nargs, args); | |
5314 } | |
5315 } | |
5316 | |
5317 UNGCPRO; | |
5318 return ret; | |
5319 } | |
5320 } | |
5321 | |
5322 Lisp_Object | |
5323 run_hook_with_args (int nargs, Lisp_Object *args, | |
5324 enum run_hooks_condition cond) | |
5325 { | |
5326 return run_hook_with_args_in_buffer (current_buffer, nargs, args, cond); | |
5327 } | |
5328 | |
5329 #if 0 | |
5330 | |
853 | 5331 /* From FSF 19.30, not currently used; seems like a big kludge. */ |
428 | 5332 |
5333 /* Run a hook symbol ARGS[0], but use FUNLIST instead of the actual | |
5334 present value of that symbol. | |
5335 Call each element of FUNLIST, | |
5336 passing each of them the rest of ARGS. | |
5337 The caller (or its caller, etc) must gcpro all of ARGS, | |
5338 except that it isn't necessary to gcpro ARGS[0]. */ | |
5339 | |
5340 Lisp_Object | |
5341 run_hook_list_with_args (Lisp_Object funlist, int nargs, Lisp_Object *args) | |
5342 { | |
853 | 5343 omitted; |
428 | 5344 } |
5345 | |
5346 #endif /* 0 */ | |
5347 | |
5348 void | |
5349 va_run_hook_with_args (Lisp_Object hook_var, int nargs, ...) | |
5350 { | |
5351 /* This function can GC */ | |
5352 struct gcpro gcpro1; | |
5353 int i; | |
5354 va_list vargs; | |
5355 Lisp_Object *funcall_args = alloca_array (Lisp_Object, 1 + nargs); | |
5356 | |
5357 va_start (vargs, nargs); | |
5358 funcall_args[0] = hook_var; | |
5359 for (i = 0; i < nargs; i++) | |
5360 funcall_args[i + 1] = va_arg (vargs, Lisp_Object); | |
5361 va_end (vargs); | |
5362 | |
5363 GCPRO1 (*funcall_args); | |
5364 gcpro1.nvars = nargs + 1; | |
5365 run_hook_with_args (nargs + 1, funcall_args, RUN_HOOKS_TO_COMPLETION); | |
5366 UNGCPRO; | |
5367 } | |
5368 | |
5369 void | |
5370 va_run_hook_with_args_in_buffer (struct buffer *buf, Lisp_Object hook_var, | |
5371 int nargs, ...) | |
5372 { | |
5373 /* This function can GC */ | |
5374 struct gcpro gcpro1; | |
5375 int i; | |
5376 va_list vargs; | |
5377 Lisp_Object *funcall_args = alloca_array (Lisp_Object, 1 + nargs); | |
5378 | |
5379 va_start (vargs, nargs); | |
5380 funcall_args[0] = hook_var; | |
5381 for (i = 0; i < nargs; i++) | |
5382 funcall_args[i + 1] = va_arg (vargs, Lisp_Object); | |
5383 va_end (vargs); | |
5384 | |
5385 GCPRO1 (*funcall_args); | |
5386 gcpro1.nvars = nargs + 1; | |
5387 run_hook_with_args_in_buffer (buf, nargs + 1, funcall_args, | |
5388 RUN_HOOKS_TO_COMPLETION); | |
5389 UNGCPRO; | |
5390 } | |
5391 | |
5392 Lisp_Object | |
5393 run_hook (Lisp_Object hook) | |
5394 { | |
853 | 5395 return run_hook_with_args (1, &hook, RUN_HOOKS_TO_COMPLETION); |
428 | 5396 } |
5397 | |
5398 | |
5399 /************************************************************************/ | |
5400 /* Front-ends to eval, funcall, apply */ | |
5401 /************************************************************************/ | |
5402 | |
5403 /* Apply fn to arg */ | |
5404 Lisp_Object | |
5405 apply1 (Lisp_Object fn, Lisp_Object arg) | |
5406 { | |
5407 /* This function can GC */ | |
5408 struct gcpro gcpro1; | |
5409 Lisp_Object args[2]; | |
5410 | |
5411 if (NILP (arg)) | |
5412 return Ffuncall (1, &fn); | |
5413 GCPRO1 (args[0]); | |
5414 gcpro1.nvars = 2; | |
5415 args[0] = fn; | |
5416 args[1] = arg; | |
5417 RETURN_UNGCPRO (Fapply (2, args)); | |
5418 } | |
5419 | |
5420 /* Call function fn on no arguments */ | |
5421 Lisp_Object | |
5422 call0 (Lisp_Object fn) | |
5423 { | |
5424 /* This function can GC */ | |
5425 struct gcpro gcpro1; | |
5426 | |
5427 GCPRO1 (fn); | |
5428 RETURN_UNGCPRO (Ffuncall (1, &fn)); | |
5429 } | |
5430 | |
5431 /* Call function fn with argument arg0 */ | |
5432 Lisp_Object | |
5433 call1 (Lisp_Object fn, | |
5434 Lisp_Object arg0) | |
5435 { | |
5436 /* This function can GC */ | |
5437 struct gcpro gcpro1; | |
5438 Lisp_Object args[2]; | |
5439 args[0] = fn; | |
5440 args[1] = arg0; | |
5441 GCPRO1 (args[0]); | |
5442 gcpro1.nvars = 2; | |
5443 RETURN_UNGCPRO (Ffuncall (2, args)); | |
5444 } | |
5445 | |
5446 /* Call function fn with arguments arg0, arg1 */ | |
5447 Lisp_Object | |
5448 call2 (Lisp_Object fn, | |
5449 Lisp_Object arg0, Lisp_Object arg1) | |
5450 { | |
5451 /* This function can GC */ | |
5452 struct gcpro gcpro1; | |
5453 Lisp_Object args[3]; | |
5454 args[0] = fn; | |
5455 args[1] = arg0; | |
5456 args[2] = arg1; | |
5457 GCPRO1 (args[0]); | |
5458 gcpro1.nvars = 3; | |
5459 RETURN_UNGCPRO (Ffuncall (3, args)); | |
5460 } | |
5461 | |
5462 /* Call function fn with arguments arg0, arg1, arg2 */ | |
5463 Lisp_Object | |
5464 call3 (Lisp_Object fn, | |
5465 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2) | |
5466 { | |
5467 /* This function can GC */ | |
5468 struct gcpro gcpro1; | |
5469 Lisp_Object args[4]; | |
5470 args[0] = fn; | |
5471 args[1] = arg0; | |
5472 args[2] = arg1; | |
5473 args[3] = arg2; | |
5474 GCPRO1 (args[0]); | |
5475 gcpro1.nvars = 4; | |
5476 RETURN_UNGCPRO (Ffuncall (4, args)); | |
5477 } | |
5478 | |
5479 /* Call function fn with arguments arg0, arg1, arg2, arg3 */ | |
5480 Lisp_Object | |
5481 call4 (Lisp_Object fn, | |
5482 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2, | |
5483 Lisp_Object arg3) | |
5484 { | |
5485 /* This function can GC */ | |
5486 struct gcpro gcpro1; | |
5487 Lisp_Object args[5]; | |
5488 args[0] = fn; | |
5489 args[1] = arg0; | |
5490 args[2] = arg1; | |
5491 args[3] = arg2; | |
5492 args[4] = arg3; | |
5493 GCPRO1 (args[0]); | |
5494 gcpro1.nvars = 5; | |
5495 RETURN_UNGCPRO (Ffuncall (5, args)); | |
5496 } | |
5497 | |
5498 /* Call function fn with arguments arg0, arg1, arg2, arg3, arg4 */ | |
5499 Lisp_Object | |
5500 call5 (Lisp_Object fn, | |
5501 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2, | |
5502 Lisp_Object arg3, Lisp_Object arg4) | |
5503 { | |
5504 /* This function can GC */ | |
5505 struct gcpro gcpro1; | |
5506 Lisp_Object args[6]; | |
5507 args[0] = fn; | |
5508 args[1] = arg0; | |
5509 args[2] = arg1; | |
5510 args[3] = arg2; | |
5511 args[4] = arg3; | |
5512 args[5] = arg4; | |
5513 GCPRO1 (args[0]); | |
5514 gcpro1.nvars = 6; | |
5515 RETURN_UNGCPRO (Ffuncall (6, args)); | |
5516 } | |
5517 | |
5518 Lisp_Object | |
5519 call6 (Lisp_Object fn, | |
5520 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2, | |
5521 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5) | |
5522 { | |
5523 /* This function can GC */ | |
5524 struct gcpro gcpro1; | |
5525 Lisp_Object args[7]; | |
5526 args[0] = fn; | |
5527 args[1] = arg0; | |
5528 args[2] = arg1; | |
5529 args[3] = arg2; | |
5530 args[4] = arg3; | |
5531 args[5] = arg4; | |
5532 args[6] = arg5; | |
5533 GCPRO1 (args[0]); | |
5534 gcpro1.nvars = 7; | |
5535 RETURN_UNGCPRO (Ffuncall (7, args)); | |
5536 } | |
5537 | |
5538 Lisp_Object | |
5539 call7 (Lisp_Object fn, | |
5540 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2, | |
5541 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5, | |
5542 Lisp_Object arg6) | |
5543 { | |
5544 /* This function can GC */ | |
5545 struct gcpro gcpro1; | |
5546 Lisp_Object args[8]; | |
5547 args[0] = fn; | |
5548 args[1] = arg0; | |
5549 args[2] = arg1; | |
5550 args[3] = arg2; | |
5551 args[4] = arg3; | |
5552 args[5] = arg4; | |
5553 args[6] = arg5; | |
5554 args[7] = arg6; | |
5555 GCPRO1 (args[0]); | |
5556 gcpro1.nvars = 8; | |
5557 RETURN_UNGCPRO (Ffuncall (8, args)); | |
5558 } | |
5559 | |
5560 Lisp_Object | |
5561 call8 (Lisp_Object fn, | |
5562 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2, | |
5563 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5, | |
5564 Lisp_Object arg6, Lisp_Object arg7) | |
5565 { | |
5566 /* This function can GC */ | |
5567 struct gcpro gcpro1; | |
5568 Lisp_Object args[9]; | |
5569 args[0] = fn; | |
5570 args[1] = arg0; | |
5571 args[2] = arg1; | |
5572 args[3] = arg2; | |
5573 args[4] = arg3; | |
5574 args[5] = arg4; | |
5575 args[6] = arg5; | |
5576 args[7] = arg6; | |
5577 args[8] = arg7; | |
5578 GCPRO1 (args[0]); | |
5579 gcpro1.nvars = 9; | |
5580 RETURN_UNGCPRO (Ffuncall (9, args)); | |
5581 } | |
5582 | |
5583 Lisp_Object | |
5584 call0_in_buffer (struct buffer *buf, Lisp_Object fn) | |
5585 { | |
5586 if (current_buffer == buf) | |
5587 return call0 (fn); | |
5588 else | |
5589 { | |
5590 Lisp_Object val; | |
5591 int speccount = specpdl_depth(); | |
5592 record_unwind_protect (Fset_buffer, Fcurrent_buffer ()); | |
5593 set_buffer_internal (buf); | |
5594 val = call0 (fn); | |
771 | 5595 unbind_to (speccount); |
428 | 5596 return val; |
5597 } | |
5598 } | |
5599 | |
5600 Lisp_Object | |
5601 call1_in_buffer (struct buffer *buf, Lisp_Object fn, | |
5602 Lisp_Object arg0) | |
5603 { | |
5604 if (current_buffer == buf) | |
5605 return call1 (fn, arg0); | |
5606 else | |
5607 { | |
5608 Lisp_Object val; | |
5609 int speccount = specpdl_depth(); | |
5610 record_unwind_protect (Fset_buffer, Fcurrent_buffer ()); | |
5611 set_buffer_internal (buf); | |
5612 val = call1 (fn, arg0); | |
771 | 5613 unbind_to (speccount); |
428 | 5614 return val; |
5615 } | |
5616 } | |
5617 | |
5618 Lisp_Object | |
5619 call2_in_buffer (struct buffer *buf, Lisp_Object fn, | |
5620 Lisp_Object arg0, Lisp_Object arg1) | |
5621 { | |
5622 if (current_buffer == buf) | |
5623 return call2 (fn, arg0, arg1); | |
5624 else | |
5625 { | |
5626 Lisp_Object val; | |
5627 int speccount = specpdl_depth(); | |
5628 record_unwind_protect (Fset_buffer, Fcurrent_buffer ()); | |
5629 set_buffer_internal (buf); | |
5630 val = call2 (fn, arg0, arg1); | |
771 | 5631 unbind_to (speccount); |
428 | 5632 return val; |
5633 } | |
5634 } | |
5635 | |
5636 Lisp_Object | |
5637 call3_in_buffer (struct buffer *buf, Lisp_Object fn, | |
5638 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2) | |
5639 { | |
5640 if (current_buffer == buf) | |
5641 return call3 (fn, arg0, arg1, arg2); | |
5642 else | |
5643 { | |
5644 Lisp_Object val; | |
5645 int speccount = specpdl_depth(); | |
5646 record_unwind_protect (Fset_buffer, Fcurrent_buffer ()); | |
5647 set_buffer_internal (buf); | |
5648 val = call3 (fn, arg0, arg1, arg2); | |
771 | 5649 unbind_to (speccount); |
428 | 5650 return val; |
5651 } | |
5652 } | |
5653 | |
5654 Lisp_Object | |
5655 call4_in_buffer (struct buffer *buf, Lisp_Object fn, | |
5656 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2, | |
5657 Lisp_Object arg3) | |
5658 { | |
5659 if (current_buffer == buf) | |
5660 return call4 (fn, arg0, arg1, arg2, arg3); | |
5661 else | |
5662 { | |
5663 Lisp_Object val; | |
5664 int speccount = specpdl_depth(); | |
5665 record_unwind_protect (Fset_buffer, Fcurrent_buffer ()); | |
5666 set_buffer_internal (buf); | |
5667 val = call4 (fn, arg0, arg1, arg2, arg3); | |
771 | 5668 unbind_to (speccount); |
428 | 5669 return val; |
5670 } | |
5671 } | |
5672 | |
5673 Lisp_Object | |
5674 eval_in_buffer (struct buffer *buf, Lisp_Object form) | |
5675 { | |
5676 if (current_buffer == buf) | |
5677 return Feval (form); | |
5678 else | |
5679 { | |
5680 Lisp_Object val; | |
5681 int speccount = specpdl_depth(); | |
5682 record_unwind_protect (Fset_buffer, Fcurrent_buffer ()); | |
5683 set_buffer_internal (buf); | |
5684 val = Feval (form); | |
771 | 5685 unbind_to (speccount); |
428 | 5686 return val; |
5687 } | |
5688 } | |
5689 | |
5690 | |
5691 /************************************************************************/ | |
5692 /* Error-catching front-ends to eval, funcall, apply */ | |
5693 /************************************************************************/ | |
5694 | |
853 | 5695 int |
5696 get_inhibit_flags (void) | |
5697 { | |
5698 return inhibit_flags; | |
5699 } | |
5700 | |
5701 void | |
2286 | 5702 check_allowed_operation (int what, Lisp_Object obj, Lisp_Object UNUSED (prop)) |
853 | 5703 { |
5704 if (inhibit_flags & INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION) | |
5705 { | |
5706 if (what == OPERATION_MODIFY_BUFFER_TEXT && BUFFERP (obj) | |
5707 && NILP (memq_no_quit (obj, Vmodifiable_buffers))) | |
5708 invalid_change | |
5709 ("Modification of this buffer not currently permitted", obj); | |
5710 } | |
5711 if (inhibit_flags & INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION) | |
5712 { | |
5713 if (what == OPERATION_DELETE_OBJECT | |
5714 && (BUFFERP (obj) || WINDOWP (obj) || FRAMEP (obj) || DEVICEP (obj) | |
5715 || CONSOLEP (obj)) | |
5716 && NILP (memq_no_quit (obj, Vdeletable_permanent_display_objects))) | |
5717 invalid_change | |
5718 ("Deletion of this object not currently permitted", obj); | |
5719 } | |
5720 } | |
5721 | |
5722 void | |
5723 note_object_created (Lisp_Object obj) | |
5724 { | |
5725 if (inhibit_flags & INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION) | |
5726 { | |
5727 if (BUFFERP (obj)) | |
5728 Vmodifiable_buffers = Fcons (obj, Vmodifiable_buffers); | |
5729 } | |
5730 if (inhibit_flags & INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION) | |
5731 { | |
5732 if (BUFFERP (obj) || WINDOWP (obj) || FRAMEP (obj) || DEVICEP (obj) | |
5733 || CONSOLEP (obj)) | |
5734 Vdeletable_permanent_display_objects = | |
5735 Fcons (obj, Vdeletable_permanent_display_objects); | |
5736 } | |
5737 } | |
5738 | |
5739 void | |
5740 note_object_deleted (Lisp_Object obj) | |
5741 { | |
5742 if (inhibit_flags & INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION) | |
5743 { | |
5744 if (BUFFERP (obj)) | |
5745 Vmodifiable_buffers = delq_no_quit (obj, Vmodifiable_buffers); | |
5746 } | |
5747 if (inhibit_flags & INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION) | |
5748 { | |
5749 if (BUFFERP (obj) || WINDOWP (obj) || FRAMEP (obj) || DEVICEP (obj) | |
5750 || CONSOLEP (obj)) | |
5751 Vdeletable_permanent_display_objects = | |
5752 delq_no_quit (obj, Vdeletable_permanent_display_objects); | |
5753 } | |
5754 } | |
5755 | |
5756 struct call_trapping_problems | |
5757 { | |
5758 Lisp_Object catchtag; | |
5759 Lisp_Object error_conditions; | |
5760 Lisp_Object data; | |
5761 Lisp_Object backtrace; | |
5762 Lisp_Object warning_class; | |
5763 | |
867 | 5764 const CIbyte *warning_string; |
853 | 5765 Lisp_Object (*fun) (void *); |
5766 void *arg; | |
5767 }; | |
428 | 5768 |
2532 | 5769 static Lisp_Object |
5770 maybe_get_trapping_problems_backtrace (void) | |
5771 { | |
5772 Lisp_Object backtrace; | |
853 | 5773 |
1123 | 5774 if (!(inhibit_flags & INHIBIT_WARNING_ISSUE) |
2532 | 5775 && !warning_will_be_discarded (current_warning_level ())) |
428 | 5776 { |
1333 | 5777 struct gcpro gcpro1; |
5778 Lisp_Object lstream = Qnil; | |
5779 int speccount = specpdl_depth (); | |
5780 | |
853 | 5781 /* We're no longer protected against errors or quit here, so at |
5782 least let's temporarily inhibit quit. We definitely do not | |
5783 want to inhibit quit during the calling of the function | |
5784 itself!!!!!!!!!!! */ | |
5785 | |
5786 specbind (Qinhibit_quit, Qt); | |
5787 | |
5788 GCPRO1 (lstream); | |
5789 lstream = make_resizing_buffer_output_stream (); | |
5790 Fbacktrace (lstream, Qt); | |
5791 Lstream_flush (XLSTREAM (lstream)); | |
2532 | 5792 backtrace = resizing_buffer_to_lisp_string (XLSTREAM (lstream)); |
853 | 5793 Lstream_delete (XLSTREAM (lstream)); |
5794 UNGCPRO; | |
5795 | |
5796 unbind_to (speccount); | |
428 | 5797 } |
853 | 5798 else |
2532 | 5799 backtrace = Qnil; |
5800 | |
5801 return backtrace; | |
5802 } | |
5803 | |
5804 static DECLARE_DOESNT_RETURN_TYPE | |
5805 (Lisp_Object, flagged_a_squirmer (Lisp_Object, Lisp_Object, Lisp_Object)); | |
5806 | |
5807 static DOESNT_RETURN_TYPE (Lisp_Object) | |
5808 flagged_a_squirmer (Lisp_Object error_conditions, Lisp_Object data, | |
5809 Lisp_Object opaque) | |
5810 { | |
5811 struct call_trapping_problems *p = | |
5812 (struct call_trapping_problems *) get_opaque_ptr (opaque); | |
5813 | |
5814 if (!EQ (error_conditions, Qquit)) | |
5815 p->backtrace = maybe_get_trapping_problems_backtrace (); | |
5816 else | |
853 | 5817 p->backtrace = Qnil; |
5818 p->error_conditions = error_conditions; | |
5819 p->data = data; | |
5820 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5821 throw_or_bomb_out (p->catchtag, Qnil, 0, Qnil, Qnil); |
2268 | 5822 RETURN_NOT_REACHED (Qnil); |
853 | 5823 } |
5824 | |
5825 static Lisp_Object | |
5826 call_trapping_problems_2 (Lisp_Object opaque) | |
5827 { | |
5828 struct call_trapping_problems *p = | |
5829 (struct call_trapping_problems *) get_opaque_ptr (opaque); | |
5830 | |
5831 return (p->fun) (p->arg); | |
428 | 5832 } |
5833 | |
5834 static Lisp_Object | |
853 | 5835 call_trapping_problems_1 (Lisp_Object opaque) |
5836 { | |
5837 return call_with_condition_handler (flagged_a_squirmer, opaque, | |
5838 call_trapping_problems_2, opaque); | |
5839 } | |
5840 | |
1333 | 5841 static void |
5842 issue_call_trapping_problems_warning (Lisp_Object warning_class, | |
5843 const CIbyte *warning_string, | |
5844 struct call_trapping_problems_result *p) | |
5845 { | |
5846 if (!warning_will_be_discarded (current_warning_level ())) | |
5847 { | |
5848 int depth = specpdl_depth (); | |
5849 | |
5850 /* We're no longer protected against errors or quit here, so at | |
5851 least let's temporarily inhibit quit. */ | |
5852 specbind (Qinhibit_quit, Qt); | |
5853 | |
5854 if (p->caught_throw) | |
5855 { | |
5856 Lisp_Object errstr = | |
5857 emacs_sprintf_string_lisp | |
2532 | 5858 ("%s: Attempt to throw outside of function:" |
5859 "To catch `%s' with value `%s'\n\nBacktrace follows:\n\n%s", | |
2725 | 5860 Qnil, 4, |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
5861 build_msg_cistring (warning_string ? warning_string : "error"), |
2532 | 5862 p->thrown_tag, p->thrown_value, p->backtrace); |
1333 | 5863 warn_when_safe_lispobj (Qerror, current_warning_level (), errstr); |
5864 } | |
2421 | 5865 else if (p->caught_error && !EQ (p->error_conditions, Qquit)) |
1333 | 5866 { |
5867 Lisp_Object errstr; | |
5868 /* #### This should call | |
5869 (with-output-to-string (display-error (cons error_conditions | |
5870 data)) | |
5871 but that stuff is all in Lisp currently. */ | |
5872 errstr = | |
5873 emacs_sprintf_string_lisp | |
5874 ("%s: (%s %s)\n\nBacktrace follows:\n\n%s", | |
5875 Qnil, 4, | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
5876 build_msg_cistring (warning_string ? warning_string : "error"), |
1333 | 5877 p->error_conditions, p->data, p->backtrace); |
5878 | |
5879 warn_when_safe_lispobj (warning_class, current_warning_level (), | |
5880 errstr); | |
5881 } | |
5882 | |
5883 unbind_to (depth); | |
5884 } | |
5885 } | |
5886 | |
1318 | 5887 /* Turn on the trapping flags in FLAGS -- see call_trapping_problems(). |
5888 This cannot handle INTERNAL_INHIBIT_THROWS() or INTERNAL_INHIBIT_ERRORS | |
5889 (because they ultimately boil down to a setjmp()!) -- you must directly | |
5890 use call_trapping_problems() for that. Turn the flags off with | |
5891 unbind_to(). Returns the "canonicalized" flags (particularly in the | |
5892 case of INHIBIT_ANY_CHANGE_AFFECTING_REDISPLAY, which is shorthand for | |
5893 various other flags). */ | |
5894 | |
5895 int | |
5896 set_trapping_problems_flags (int flags) | |
5897 { | |
5898 int new_inhibit_flags; | |
5899 | |
5900 if (flags & INHIBIT_ANY_CHANGE_AFFECTING_REDISPLAY) | |
5901 flags |= INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION | |
5902 | INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION | |
5903 | INHIBIT_ENTERING_DEBUGGER | |
5904 | INHIBIT_WARNING_ISSUE | |
5905 | INHIBIT_GC; | |
5906 | |
5907 new_inhibit_flags = inhibit_flags | flags; | |
5908 if (new_inhibit_flags != inhibit_flags) | |
5909 internal_bind_int (&inhibit_flags, new_inhibit_flags); | |
5910 | |
5911 if (flags & INHIBIT_QUIT) | |
5912 specbind (Qinhibit_quit, Qt); | |
5913 | |
5914 if (flags & UNINHIBIT_QUIT) | |
5915 begin_do_check_for_quit (); | |
5916 | |
5917 if (flags & INHIBIT_GC) | |
5918 begin_gc_forbidden (); | |
5919 | |
5920 /* #### If we have nested calls to call_trapping_problems(), and the | |
5921 inner one creates some buffers/etc., should the outer one be able | |
5922 to delete them? I think so, but it means we need to combine rather | |
5923 than just reset the value. */ | |
5924 if (flags & INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION) | |
5925 internal_bind_lisp_object (&Vdeletable_permanent_display_objects, Qnil); | |
5926 | |
5927 if (flags & INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION) | |
5928 internal_bind_lisp_object (&Vmodifiable_buffers, Qnil); | |
5929 | |
5930 return flags; | |
5931 } | |
5932 | |
853 | 5933 /* This is equivalent to (*fun) (arg), except that various conditions |
5934 can be trapped or inhibited, according to FLAGS. | |
5935 | |
5936 If FLAGS does not contain NO_INHIBIT_ERRORS, when an error occurs, | |
5937 the error is caught and a warning is issued, specifying the | |
5938 specific error that occurred and a backtrace. In that case, | |
5939 WARNING_STRING should be given, and will be printed at the | |
5940 beginning of the error to indicate where the error occurred. | |
5941 | |
5942 If FLAGS does not contain NO_INHIBIT_THROWS, all attempts to | |
5943 `throw' out of the function being called are trapped, and a warning | |
5944 issued. (Again, WARNING_STRING should be given.) | |
5945 | |
2367 | 5946 If FLAGS contains INHIBIT_WARNING_ISSUE, no warnings are issued; |
853 | 5947 this applies to recursive invocations of call_trapping_problems, too. |
5948 | |
1333 | 5949 If FLAGS contains POSTPONE_WARNING_ISSUE, no warnings are issued; |
5950 but values useful for generating a warning are still computed (in | |
5951 particular, the backtrace), so that the calling function can issue | |
5952 a warning. | |
5953 | |
853 | 5954 If FLAGS contains ISSUE_WARNINGS_AT_DEBUG_LEVEL, warnings will be |
5955 issued, but at level `debug', which normally is below the minimum | |
5956 specified by `log-warning-minimum-level', meaning such warnings will | |
5957 be ignored entirely. The user can change this variable, however, | |
5958 to see the warnings.) | |
5959 | |
5960 Note: If neither of NO_INHIBIT_THROWS or NO_INHIBIT_ERRORS is | |
5961 given, you are *guaranteed* that there will be no non-local exits | |
5962 out of this function. | |
5963 | |
5964 If FLAGS contains INHIBIT_QUIT, QUIT using C-g is inhibited. (This | |
5965 is *rarely* a good idea. Unless you use NO_INHIBIT_ERRORS, QUIT is | |
5966 automatically caught as well, and treated as an error; you can | |
5967 check for this using EQ (problems->error_conditions, Qquit). | |
5968 | |
5969 If FLAGS contains UNINHIBIT_QUIT, QUIT checking will be explicitly | |
5970 turned on. (It will abort the code being called, but will still be | |
5971 trapped and reported as an error, unless NO_INHIBIT_ERRORS is | |
5972 given.) This is useful when QUIT checking has been turned off by a | |
5973 higher-level caller. | |
5974 | |
5975 If FLAGS contains INHIBIT_GC, garbage collection is inhibited. | |
1123 | 5976 This is useful for Lisp called within redisplay, for example. |
853 | 5977 |
5978 If FLAGS contains INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION, | |
5979 Lisp code is not allowed to delete any window, buffers, frames, devices, | |
5980 or consoles that were already in existence at the time this function | |
5981 was called. (However, it's perfectly legal for code to create a new | |
5982 buffer and then delete it.) | |
5983 | |
5984 #### It might be useful to have a flag that inhibits deletion of a | |
5985 specific permanent display object and everything it's attached to | |
5986 (e.g. a window, and the buffer, frame, device, and console it's | |
5987 attached to. | |
5988 | |
5989 If FLAGS contains INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION, Lisp | |
5990 code is not allowed to modify the text of any buffers that were | |
5991 already in existence at the time this function was called. | |
5992 (However, it's perfectly legal for code to create a new buffer and | |
5993 then modify its text.) | |
5994 | |
5995 [These last two flags are implemented using global variables | |
5996 Vdeletable_permanent_display_objects and Vmodifiable_buffers, | |
5997 which keep track of a list of all buffers or permanent display | |
5998 objects created since the last time one of these flags was set. | |
5999 The code that deletes buffers, etc. and modifies buffers checks | |
6000 | |
6001 (1) if the corresponding flag is set (through the global variable | |
6002 inhibit_flags or its accessor function get_inhibit_flags()), and | |
6003 | |
6004 (2) if the object to be modified or deleted is not in the | |
6005 appropriate list. | |
6006 | |
6007 If so, it signals an error. | |
6008 | |
6009 Recursive calls to call_trapping_problems() are allowed. In | |
6010 the case of the two flags mentioned above, the current values | |
6011 of the global variables are stored in an unwind-protect, and | |
6012 they're reset to nil.] | |
6013 | |
6014 If FLAGS contains INHIBIT_ENTERING_DEBUGGER, the debugger will not | |
6015 be entered if an error occurs inside the Lisp code being called, | |
6016 even when the user has requested an error. In such case, a warning | |
6017 is issued stating that access to the debugger is denied, unless | |
6018 INHIBIT_WARNING_ISSUE has also been supplied. This is useful when | |
6019 calling Lisp code inside redisplay, in menu callbacks, etc. because | |
6020 in such cases either the display is in an inconsistent state or | |
6021 doing window operations is explicitly forbidden by the OS, and the | |
6022 debugger would causes visual changes on the screen and might create | |
6023 another frame. | |
6024 | |
6025 If FLAGS contains INHIBIT_ANY_CHANGE_AFFECTING_REDISPLAY, no | |
6026 changes of any sort to extents, faces, glyphs, buffer text, | |
6027 specifiers relating to display, other variables relating to | |
6028 display, splitting, deleting, or resizing windows or frames, | |
6029 deleting buffers, windows, frames, devices, or consoles, etc. is | |
6030 allowed. This is for things called absolutely in the middle of | |
6031 redisplay, which expects things to be *exactly* the same after the | |
6032 call as before. This isn't completely implemented and needs to be | |
6033 thought out some more to determine exactly what its semantics are. | |
6034 For the moment, turning on this flag also turns on | |
6035 | |
6036 INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION | |
6037 INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION | |
6038 INHIBIT_ENTERING_DEBUGGER | |
6039 INHIBIT_WARNING_ISSUE | |
6040 INHIBIT_GC | |
6041 | |
6042 #### The following five flags are defined, but unimplemented: | |
6043 | |
6044 #define INHIBIT_EXISTING_CODING_SYSTEM_DELETION (1<<6) | |
6045 #define INHIBIT_EXISTING_CHARSET_DELETION (1<<7) | |
6046 #define INHIBIT_PERMANENT_DISPLAY_OBJECT_CREATION (1<<8) | |
6047 #define INHIBIT_CODING_SYSTEM_CREATION (1<<9) | |
6048 #define INHIBIT_CHARSET_CREATION (1<<10) | |
6049 | |
6050 FLAGS containing CALL_WITH_SUSPENDED_ERRORS is a sign that | |
6051 call_with_suspended_errors() was invoked. This exists only for | |
6052 debugging purposes -- often we want to break when a signal happens, | |
6053 but ignore signals from call_with_suspended_errors(), because they | |
6054 occur often and for legitimate reasons. | |
6055 | |
6056 If PROBLEM is non-zero, it should be a pointer to a structure into | |
6057 which exact information about any occurring problems (either an | |
6058 error or an attempted throw past this boundary). | |
6059 | |
6060 If a problem occurred and aborted operation (error, quit, or | |
6061 invalid throw), Qunbound is returned. Otherwise the return value | |
6062 from the call to (*fun) (arg) is returned. */ | |
6063 | |
6064 Lisp_Object | |
6065 call_trapping_problems (Lisp_Object warning_class, | |
867 | 6066 const CIbyte *warning_string, |
853 | 6067 int flags, |
6068 struct call_trapping_problems_result *problem, | |
6069 Lisp_Object (*fun) (void *), | |
6070 void *arg) | |
6071 { | |
1318 | 6072 int speccount = specpdl_depth (); |
853 | 6073 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5; |
6074 struct call_trapping_problems package; | |
1333 | 6075 struct call_trapping_problems_result real_problem; |
2532 | 6076 Lisp_Object opaque, thrown_tag, tem, thrown_backtrace; |
853 | 6077 int thrown = 0; |
6078 | |
6079 assert (SYMBOLP (warning_class)); /* sanity-check */ | |
6080 assert (!NILP (warning_class)); | |
6081 | |
6082 flags ^= INTERNAL_INHIBIT_ERRORS | INTERNAL_INHIBIT_THROWS; | |
6083 | |
6084 package.warning_class = warning_class; | |
6085 package.warning_string = warning_string; | |
6086 package.fun = fun; | |
6087 package.arg = arg; | |
6088 package.catchtag = | |
6089 flags & INTERNAL_INHIBIT_THROWS ? Vcatch_everything_tag : | |
6090 flags & INTERNAL_INHIBIT_ERRORS ? make_opaque_ptr (0) : | |
6091 Qnil; | |
6092 package.error_conditions = Qnil; | |
6093 package.data = Qnil; | |
6094 package.backtrace = Qnil; | |
6095 | |
1318 | 6096 flags = set_trapping_problems_flags (flags); |
853 | 6097 |
6098 if (flags & (INTERNAL_INHIBIT_THROWS | INTERNAL_INHIBIT_ERRORS)) | |
6099 opaque = make_opaque_ptr (&package); | |
6100 else | |
6101 opaque = Qnil; | |
6102 | |
6103 GCPRO5 (package.catchtag, package.error_conditions, package.data, | |
6104 package.backtrace, opaque); | |
6105 | |
6106 if (flags & INTERNAL_INHIBIT_ERRORS) | |
6107 /* We need a catch so that our condition-handler can throw back here | |
6108 after printing the warning. (We print the warning in the stack | |
6109 context of the error, so we can get a backtrace.) */ | |
6110 tem = internal_catch (package.catchtag, call_trapping_problems_1, opaque, | |
2532 | 6111 &thrown, &thrown_tag, &thrown_backtrace); |
853 | 6112 else if (flags & INTERNAL_INHIBIT_THROWS) |
6113 /* We skip over the first wrapper, which traps errors. */ | |
6114 tem = internal_catch (package.catchtag, call_trapping_problems_2, opaque, | |
2532 | 6115 &thrown, &thrown_tag, &thrown_backtrace); |
853 | 6116 else |
6117 /* Nothing special. */ | |
6118 tem = (fun) (arg); | |
6119 | |
1333 | 6120 if (!problem) |
6121 problem = &real_problem; | |
6122 | |
6123 if (!thrown) | |
853 | 6124 { |
1333 | 6125 problem->caught_error = 0; |
6126 problem->caught_throw = 0; | |
6127 problem->error_conditions = Qnil; | |
6128 problem->data = Qnil; | |
6129 problem->backtrace = Qnil; | |
6130 problem->thrown_tag = Qnil; | |
6131 problem->thrown_value = Qnil; | |
853 | 6132 } |
1333 | 6133 else if (EQ (thrown_tag, package.catchtag)) |
853 | 6134 { |
1333 | 6135 problem->caught_error = 1; |
6136 problem->caught_throw = 0; | |
6137 problem->error_conditions = package.error_conditions; | |
6138 problem->data = package.data; | |
6139 problem->backtrace = package.backtrace; | |
6140 problem->thrown_tag = Qnil; | |
6141 problem->thrown_value = Qnil; | |
853 | 6142 } |
1333 | 6143 else |
6144 { | |
6145 problem->caught_error = 0; | |
6146 problem->caught_throw = 1; | |
6147 problem->error_conditions = Qnil; | |
6148 problem->data = Qnil; | |
2532 | 6149 problem->backtrace = thrown_backtrace; |
1333 | 6150 problem->thrown_tag = thrown_tag; |
6151 problem->thrown_value = tem; | |
6152 } | |
6153 | |
6154 if (!(flags & INHIBIT_WARNING_ISSUE) && !(flags & POSTPONE_WARNING_ISSUE)) | |
6155 issue_call_trapping_problems_warning (warning_class, warning_string, | |
6156 problem); | |
853 | 6157 |
6158 if (!NILP (package.catchtag) && | |
6159 !EQ (package.catchtag, Vcatch_everything_tag)) | |
6160 free_opaque_ptr (package.catchtag); | |
6161 | |
6162 if (!NILP (opaque)) | |
6163 free_opaque_ptr (opaque); | |
6164 | |
6165 unbind_to (speccount); | |
6166 RETURN_UNGCPRO (thrown ? Qunbound : tem); | |
6167 } | |
6168 | |
6169 struct va_call_trapping_problems | |
6170 { | |
6171 lisp_fn_t fun; | |
6172 int nargs; | |
6173 Lisp_Object *args; | |
6174 }; | |
6175 | |
6176 static Lisp_Object | |
6177 va_call_trapping_problems_1 (void *ai_mi_madre) | |
6178 { | |
6179 struct va_call_trapping_problems *ai_no_corrida = | |
6180 (struct va_call_trapping_problems *) ai_mi_madre; | |
6181 Lisp_Object pegar_no_bumbum; | |
6182 | |
6183 PRIMITIVE_FUNCALL (pegar_no_bumbum, ai_no_corrida->fun, | |
6184 ai_no_corrida->args, ai_no_corrida->nargs); | |
6185 return pegar_no_bumbum; | |
6186 } | |
6187 | |
6188 /* #### document me. */ | |
6189 | |
6190 Lisp_Object | |
6191 va_call_trapping_problems (Lisp_Object warning_class, | |
867 | 6192 const CIbyte *warning_string, |
853 | 6193 int flags, |
6194 struct call_trapping_problems_result *problem, | |
6195 lisp_fn_t fun, int nargs, ...) | |
6196 { | |
6197 va_list vargs; | |
6198 Lisp_Object args[20]; | |
6199 int i; | |
6200 struct va_call_trapping_problems fazer_invocacao_atrapalhando_problemas; | |
6201 struct gcpro gcpro1; | |
6202 | |
6203 assert (nargs >= 0 && nargs < 20); | |
6204 | |
6205 va_start (vargs, nargs); | |
6206 for (i = 0; i < nargs; i++) | |
6207 args[i] = va_arg (vargs, Lisp_Object); | |
6208 va_end (vargs); | |
6209 | |
6210 fazer_invocacao_atrapalhando_problemas.fun = fun; | |
6211 fazer_invocacao_atrapalhando_problemas.nargs = nargs; | |
6212 fazer_invocacao_atrapalhando_problemas.args = args; | |
6213 | |
6214 GCPRO1_ARRAY (args, nargs); | |
6215 RETURN_UNGCPRO | |
6216 (call_trapping_problems | |
6217 (warning_class, warning_string, flags, problem, | |
6218 va_call_trapping_problems_1, &fazer_invocacao_atrapalhando_problemas)); | |
6219 } | |
6220 | |
6221 /* this is an older interface, barely different from | |
6222 va_call_trapping_problems. | |
6223 | |
6224 #### eliminate this or at least merge the ERROR_BEHAVIOR stuff into | |
6225 va_call_trapping_problems(). */ | |
6226 | |
6227 Lisp_Object | |
6228 call_with_suspended_errors (lisp_fn_t fun, Lisp_Object retval, | |
1204 | 6229 Lisp_Object class_, Error_Behavior errb, |
853 | 6230 int nargs, ...) |
6231 { | |
6232 va_list vargs; | |
6233 Lisp_Object args[20]; | |
6234 int i; | |
6235 struct va_call_trapping_problems fazer_invocacao_atrapalhando_problemas; | |
6236 int flags; | |
6237 struct gcpro gcpro1; | |
6238 | |
1204 | 6239 assert (SYMBOLP (class_)); /* sanity-check */ |
6240 assert (!NILP (class_)); | |
853 | 6241 assert (nargs >= 0 && nargs < 20); |
6242 | |
6243 va_start (vargs, nargs); | |
6244 for (i = 0; i < nargs; i++) | |
6245 args[i] = va_arg (vargs, Lisp_Object); | |
6246 va_end (vargs); | |
6247 | |
6248 /* If error-checking is not disabled, just call the function. */ | |
6249 | |
6250 if (ERRB_EQ (errb, ERROR_ME)) | |
6251 { | |
6252 Lisp_Object val; | |
6253 PRIMITIVE_FUNCALL (val, fun, args, nargs); | |
6254 return val; | |
6255 } | |
6256 | |
6257 if (ERRB_EQ (errb, ERROR_ME_NOT)) /* person wants no warnings */ | |
6258 flags = INHIBIT_WARNING_ISSUE | INHIBIT_ENTERING_DEBUGGER; | |
6259 else if (ERRB_EQ (errb, ERROR_ME_DEBUG_WARN)) | |
6260 flags = ISSUE_WARNINGS_AT_DEBUG_LEVEL | INHIBIT_ENTERING_DEBUGGER; | |
6261 else | |
6262 { | |
6263 assert (ERRB_EQ (errb, ERROR_ME_WARN)); | |
6264 flags = INHIBIT_ENTERING_DEBUGGER; | |
6265 } | |
6266 | |
6267 flags |= CALL_WITH_SUSPENDED_ERRORS; | |
6268 | |
6269 fazer_invocacao_atrapalhando_problemas.fun = fun; | |
6270 fazer_invocacao_atrapalhando_problemas.nargs = nargs; | |
6271 fazer_invocacao_atrapalhando_problemas.args = args; | |
6272 | |
6273 GCPRO1_ARRAY (args, nargs); | |
6274 { | |
6275 Lisp_Object its_way_too_goddamn_late = | |
6276 call_trapping_problems | |
1204 | 6277 (class_, 0, flags, 0, va_call_trapping_problems_1, |
853 | 6278 &fazer_invocacao_atrapalhando_problemas); |
6279 UNGCPRO; | |
6280 if (UNBOUNDP (its_way_too_goddamn_late)) | |
6281 return retval; | |
6282 else | |
6283 return its_way_too_goddamn_late; | |
6284 } | |
6285 } | |
6286 | |
6287 struct calln_trapping_problems | |
6288 { | |
6289 int nargs; | |
6290 Lisp_Object *args; | |
6291 }; | |
6292 | |
6293 static Lisp_Object | |
6294 calln_trapping_problems_1 (void *puta) | |
6295 { | |
6296 struct calln_trapping_problems *p = (struct calln_trapping_problems *) puta; | |
6297 | |
6298 return Ffuncall (p->nargs, p->args); | |
428 | 6299 } |
6300 | |
6301 static Lisp_Object | |
853 | 6302 calln_trapping_problems (Lisp_Object warning_class, |
867 | 6303 const CIbyte *warning_string, int flags, |
853 | 6304 struct call_trapping_problems_result *problem, |
6305 int nargs, Lisp_Object *args) | |
6306 { | |
6307 struct calln_trapping_problems foo; | |
6308 struct gcpro gcpro1; | |
6309 | |
6310 if (SYMBOLP (args[0])) | |
6311 { | |
6312 Lisp_Object tem = XSYMBOL (args[0])->function; | |
6313 if (NILP (tem) || UNBOUNDP (tem)) | |
6314 { | |
6315 if (problem) | |
6316 { | |
6317 problem->caught_error = 0; | |
6318 problem->caught_throw = 0; | |
6319 problem->error_conditions = Qnil; | |
6320 problem->data = Qnil; | |
6321 problem->backtrace = Qnil; | |
6322 problem->thrown_tag = Qnil; | |
6323 problem->thrown_value = Qnil; | |
6324 } | |
6325 return Qnil; | |
6326 } | |
6327 } | |
6328 | |
6329 foo.nargs = nargs; | |
6330 foo.args = args; | |
6331 | |
6332 GCPRO1_ARRAY (args, nargs); | |
6333 RETURN_UNGCPRO (call_trapping_problems (warning_class, warning_string, | |
6334 flags, problem, | |
6335 calln_trapping_problems_1, | |
6336 &foo)); | |
6337 } | |
6338 | |
6339 /* #### fix these functions to follow the calling convention of | |
6340 call_trapping_problems! */ | |
6341 | |
6342 Lisp_Object | |
867 | 6343 call0_trapping_problems (const CIbyte *warning_string, Lisp_Object function, |
853 | 6344 int flags) |
6345 { | |
6346 return calln_trapping_problems (Qerror, warning_string, flags, 0, 1, | |
6347 &function); | |
428 | 6348 } |
6349 | |
6350 Lisp_Object | |
867 | 6351 call1_trapping_problems (const CIbyte *warning_string, Lisp_Object function, |
853 | 6352 Lisp_Object object, int flags) |
6353 { | |
6354 Lisp_Object args[2]; | |
6355 | |
6356 args[0] = function; | |
6357 args[1] = object; | |
6358 | |
6359 return calln_trapping_problems (Qerror, warning_string, flags, 0, 2, | |
6360 args); | |
6361 } | |
6362 | |
6363 Lisp_Object | |
867 | 6364 call2_trapping_problems (const CIbyte *warning_string, Lisp_Object function, |
853 | 6365 Lisp_Object object1, Lisp_Object object2, |
6366 int flags) | |
6367 { | |
6368 Lisp_Object args[3]; | |
6369 | |
6370 args[0] = function; | |
6371 args[1] = object1; | |
6372 args[2] = object2; | |
6373 | |
6374 return calln_trapping_problems (Qerror, warning_string, flags, 0, 3, | |
6375 args); | |
6376 } | |
6377 | |
6378 Lisp_Object | |
867 | 6379 call3_trapping_problems (const CIbyte *warning_string, Lisp_Object function, |
853 | 6380 Lisp_Object object1, Lisp_Object object2, |
6381 Lisp_Object object3, int flags) | |
6382 { | |
6383 Lisp_Object args[4]; | |
6384 | |
6385 args[0] = function; | |
6386 args[1] = object1; | |
6387 args[2] = object2; | |
6388 args[3] = object3; | |
6389 | |
6390 return calln_trapping_problems (Qerror, warning_string, flags, 0, 4, | |
6391 args); | |
6392 } | |
6393 | |
6394 Lisp_Object | |
867 | 6395 call4_trapping_problems (const CIbyte *warning_string, Lisp_Object function, |
853 | 6396 Lisp_Object object1, Lisp_Object object2, |
6397 Lisp_Object object3, Lisp_Object object4, | |
6398 int flags) | |
6399 { | |
6400 Lisp_Object args[5]; | |
6401 | |
6402 args[0] = function; | |
6403 args[1] = object1; | |
6404 args[2] = object2; | |
6405 args[3] = object3; | |
6406 args[4] = object4; | |
6407 | |
6408 return calln_trapping_problems (Qerror, warning_string, flags, 0, 5, | |
6409 args); | |
6410 } | |
6411 | |
6412 Lisp_Object | |
867 | 6413 call5_trapping_problems (const CIbyte *warning_string, Lisp_Object function, |
853 | 6414 Lisp_Object object1, Lisp_Object object2, |
6415 Lisp_Object object3, Lisp_Object object4, | |
6416 Lisp_Object object5, int flags) | |
6417 { | |
6418 Lisp_Object args[6]; | |
6419 | |
6420 args[0] = function; | |
6421 args[1] = object1; | |
6422 args[2] = object2; | |
6423 args[3] = object3; | |
6424 args[4] = object4; | |
6425 args[5] = object5; | |
6426 | |
6427 return calln_trapping_problems (Qerror, warning_string, flags, 0, 6, | |
6428 args); | |
6429 } | |
6430 | |
6431 struct eval_in_buffer_trapping_problems | |
6432 { | |
6433 struct buffer *buf; | |
6434 Lisp_Object form; | |
6435 }; | |
6436 | |
6437 static Lisp_Object | |
6438 eval_in_buffer_trapping_problems_1 (void *arg) | |
6439 { | |
6440 struct eval_in_buffer_trapping_problems *p = | |
6441 (struct eval_in_buffer_trapping_problems *) arg; | |
6442 | |
6443 return eval_in_buffer (p->buf, p->form); | |
6444 } | |
6445 | |
6446 /* #### fix these functions to follow the calling convention of | |
6447 call_trapping_problems! */ | |
6448 | |
6449 Lisp_Object | |
867 | 6450 eval_in_buffer_trapping_problems (const CIbyte *warning_string, |
853 | 6451 struct buffer *buf, Lisp_Object form, |
6452 int flags) | |
6453 { | |
6454 struct eval_in_buffer_trapping_problems p; | |
6455 Lisp_Object buffer = wrap_buffer (buf); | |
428 | 6456 struct gcpro gcpro1, gcpro2; |
6457 | |
853 | 6458 GCPRO2 (buffer, form); |
6459 p.buf = buf; | |
6460 p.form = form; | |
6461 RETURN_UNGCPRO (call_trapping_problems (Qerror, warning_string, flags, 0, | |
6462 eval_in_buffer_trapping_problems_1, | |
6463 &p)); | |
6464 } | |
6465 | |
6466 Lisp_Object | |
1333 | 6467 run_hook_trapping_problems (Lisp_Object warning_class, |
853 | 6468 Lisp_Object hook_symbol, |
6469 int flags) | |
6470 { | |
1333 | 6471 return run_hook_with_args_trapping_problems (warning_class, 1, &hook_symbol, |
853 | 6472 RUN_HOOKS_TO_COMPLETION, |
6473 flags); | |
428 | 6474 } |
6475 | |
6476 static Lisp_Object | |
853 | 6477 safe_run_hook_trapping_problems_1 (void *puta) |
6478 { | |
5013 | 6479 Lisp_Object hook = GET_LISP_FROM_VOID (puta); |
853 | 6480 |
6481 run_hook (hook); | |
428 | 6482 return Qnil; |
6483 } | |
6484 | |
853 | 6485 /* Same as run_hook_trapping_problems() but also set the hook to nil |
6486 if an error occurs (but not a quit). */ | |
6487 | |
428 | 6488 Lisp_Object |
1333 | 6489 safe_run_hook_trapping_problems (Lisp_Object warning_class, |
6490 Lisp_Object hook_symbol, int flags) | |
853 | 6491 { |
428 | 6492 Lisp_Object tem; |
853 | 6493 struct gcpro gcpro1, gcpro2; |
6494 struct call_trapping_problems_result prob; | |
428 | 6495 |
6496 if (!initialized || preparing_for_armageddon) | |
6497 return Qnil; | |
6498 tem = find_symbol_value (hook_symbol); | |
6499 if (NILP (tem) || UNBOUNDP (tem)) | |
6500 return Qnil; | |
6501 | |
853 | 6502 GCPRO2 (hook_symbol, tem); |
1333 | 6503 tem = call_trapping_problems (Qerror, NULL, |
6504 flags | POSTPONE_WARNING_ISSUE, | |
853 | 6505 &prob, |
6506 safe_run_hook_trapping_problems_1, | |
5013 | 6507 STORE_LISP_IN_VOID (hook_symbol)); |
1333 | 6508 { |
6509 Lisp_Object hook_name = XSYMBOL_NAME (hook_symbol); | |
6510 Ibyte *hook_str = XSTRING_DATA (hook_name); | |
6511 Ibyte *err = alloca_ibytes (XSTRING_LENGTH (hook_name) + 100); | |
6512 | |
6513 if (prob.caught_throw || (prob.caught_error && !EQ (prob.error_conditions, | |
6514 Qquit))) | |
6515 { | |
6516 Fset (hook_symbol, Qnil); | |
6517 qxesprintf (err, "Error in `%s' (resetting to nil)", hook_str); | |
6518 } | |
6519 else | |
6520 qxesprintf (err, "Quit in `%s'", hook_str); | |
6521 | |
6522 | |
6523 issue_call_trapping_problems_warning (warning_class, (CIbyte *) err, | |
6524 &prob); | |
6525 } | |
6526 | |
6527 UNGCPRO; | |
6528 return tem; | |
853 | 6529 } |
6530 | |
6531 struct run_hook_with_args_in_buffer_trapping_problems | |
6532 { | |
6533 struct buffer *buf; | |
6534 int nargs; | |
6535 Lisp_Object *args; | |
6536 enum run_hooks_condition cond; | |
6537 }; | |
6538 | |
6539 static Lisp_Object | |
6540 run_hook_with_args_in_buffer_trapping_problems_1 (void *puta) | |
6541 { | |
6542 struct run_hook_with_args_in_buffer_trapping_problems *porra = | |
6543 (struct run_hook_with_args_in_buffer_trapping_problems *) puta; | |
6544 | |
6545 return run_hook_with_args_in_buffer (porra->buf, porra->nargs, porra->args, | |
6546 porra->cond); | |
6547 } | |
6548 | |
6549 /* #### fix these functions to follow the calling convention of | |
6550 call_trapping_problems! */ | |
428 | 6551 |
6552 Lisp_Object | |
1333 | 6553 run_hook_with_args_in_buffer_trapping_problems (Lisp_Object warning_class, |
853 | 6554 struct buffer *buf, int nargs, |
6555 Lisp_Object *args, | |
6556 enum run_hooks_condition cond, | |
6557 int flags) | |
6558 { | |
6559 Lisp_Object sym, val, ret; | |
6560 struct run_hook_with_args_in_buffer_trapping_problems diversity_and_distrust; | |
428 | 6561 struct gcpro gcpro1; |
1333 | 6562 Lisp_Object hook_name; |
6563 Ibyte *hook_str; | |
6564 Ibyte *err; | |
428 | 6565 |
6566 if (!initialized || preparing_for_armageddon) | |
853 | 6567 /* We need to bail out of here pronto. */ |
428 | 6568 return Qnil; |
6569 | |
853 | 6570 GCPRO1_ARRAY (args, nargs); |
6571 | |
6572 sym = args[0]; | |
6573 val = symbol_value_in_buffer (sym, wrap_buffer (buf)); | |
6574 ret = (cond == RUN_HOOKS_UNTIL_FAILURE ? Qt : Qnil); | |
6575 | |
6576 if (UNBOUNDP (val) || NILP (val)) | |
6577 RETURN_UNGCPRO (ret); | |
6578 | |
6579 diversity_and_distrust.buf = buf; | |
6580 diversity_and_distrust.nargs = nargs; | |
6581 diversity_and_distrust.args = args; | |
6582 diversity_and_distrust.cond = cond; | |
6583 | |
1333 | 6584 hook_name = XSYMBOL_NAME (args[0]); |
6585 hook_str = XSTRING_DATA (hook_name); | |
6586 err = alloca_ibytes (XSTRING_LENGTH (hook_name) + 100); | |
6587 qxesprintf (err, "Error in `%s'", hook_str); | |
853 | 6588 RETURN_UNGCPRO |
6589 (call_trapping_problems | |
1333 | 6590 (warning_class, (CIbyte *) err, flags, 0, |
853 | 6591 run_hook_with_args_in_buffer_trapping_problems_1, |
6592 &diversity_and_distrust)); | |
428 | 6593 } |
6594 | |
6595 Lisp_Object | |
1333 | 6596 run_hook_with_args_trapping_problems (Lisp_Object warning_class, |
853 | 6597 int nargs, |
6598 Lisp_Object *args, | |
6599 enum run_hooks_condition cond, | |
6600 int flags) | |
6601 { | |
6602 return run_hook_with_args_in_buffer_trapping_problems | |
1333 | 6603 (warning_class, current_buffer, nargs, args, cond, flags); |
428 | 6604 } |
6605 | |
6606 Lisp_Object | |
1333 | 6607 va_run_hook_with_args_trapping_problems (Lisp_Object warning_class, |
853 | 6608 Lisp_Object hook_var, |
6609 int nargs, ...) | |
6610 { | |
6611 /* This function can GC */ | |
6612 struct gcpro gcpro1; | |
6613 int i; | |
6614 va_list vargs; | |
6615 Lisp_Object *funcall_args = alloca_array (Lisp_Object, 1 + nargs); | |
6616 int flags; | |
6617 | |
6618 va_start (vargs, nargs); | |
6619 funcall_args[0] = hook_var; | |
6620 for (i = 0; i < nargs; i++) | |
6621 funcall_args[i + 1] = va_arg (vargs, Lisp_Object); | |
6622 flags = va_arg (vargs, int); | |
6623 va_end (vargs); | |
6624 | |
6625 GCPRO1_ARRAY (funcall_args, nargs + 1); | |
6626 RETURN_UNGCPRO (run_hook_with_args_in_buffer_trapping_problems | |
1333 | 6627 (warning_class, current_buffer, nargs + 1, funcall_args, |
853 | 6628 RUN_HOOKS_TO_COMPLETION, flags)); |
428 | 6629 } |
6630 | |
6631 Lisp_Object | |
1333 | 6632 va_run_hook_with_args_in_buffer_trapping_problems (Lisp_Object warning_class, |
853 | 6633 struct buffer *buf, |
6634 Lisp_Object hook_var, | |
6635 int nargs, ...) | |
6636 { | |
6637 /* This function can GC */ | |
6638 struct gcpro gcpro1; | |
6639 int i; | |
6640 va_list vargs; | |
6641 Lisp_Object *funcall_args = alloca_array (Lisp_Object, 1 + nargs); | |
6642 int flags; | |
6643 | |
6644 va_start (vargs, nargs); | |
6645 funcall_args[0] = hook_var; | |
6646 for (i = 0; i < nargs; i++) | |
6647 funcall_args[i + 1] = va_arg (vargs, Lisp_Object); | |
6648 flags = va_arg (vargs, int); | |
6649 va_end (vargs); | |
6650 | |
6651 GCPRO1_ARRAY (funcall_args, nargs + 1); | |
6652 RETURN_UNGCPRO (run_hook_with_args_in_buffer_trapping_problems | |
1333 | 6653 (warning_class, buf, nargs + 1, funcall_args, |
853 | 6654 RUN_HOOKS_TO_COMPLETION, flags)); |
428 | 6655 } |
6656 | |
6657 | |
6658 /************************************************************************/ | |
6659 /* The special binding stack */ | |
771 | 6660 /* Most C code should simply use specbind() and unbind_to_1(). */ |
428 | 6661 /* When performance is critical, use the macros in backtrace.h. */ |
6662 /************************************************************************/ | |
6663 | |
6664 #define min_max_specpdl_size 400 | |
6665 | |
6666 void | |
647 | 6667 grow_specpdl (EMACS_INT reserved) |
6668 { | |
6669 EMACS_INT size_needed = specpdl_depth() + reserved; | |
428 | 6670 if (size_needed >= max_specpdl_size) |
6671 { | |
6672 if (max_specpdl_size < min_max_specpdl_size) | |
6673 max_specpdl_size = min_max_specpdl_size; | |
6674 if (size_needed >= max_specpdl_size) | |
6675 { | |
1951 | 6676 /* Leave room for some specpdl in the debugger. */ |
6677 max_specpdl_size = size_needed + 100; | |
6678 if (max_specpdl_size > specpdl_size) | |
6679 { | |
6680 specpdl_size = max_specpdl_size; | |
6681 XREALLOC_ARRAY (specpdl, struct specbinding, specpdl_size); | |
6682 specpdl_ptr = specpdl + specpdl_depth(); | |
6683 } | |
563 | 6684 signal_continuable_error |
6685 (Qstack_overflow, | |
6686 "Variable binding depth exceeds max-specpdl-size", Qunbound); | |
428 | 6687 } |
6688 } | |
6689 while (specpdl_size < size_needed) | |
6690 { | |
6691 specpdl_size *= 2; | |
6692 if (specpdl_size > max_specpdl_size) | |
6693 specpdl_size = max_specpdl_size; | |
6694 } | |
6695 XREALLOC_ARRAY (specpdl, struct specbinding, specpdl_size); | |
6696 specpdl_ptr = specpdl + specpdl_depth(); | |
853 | 6697 check_specbind_stack_sanity (); |
428 | 6698 } |
6699 | |
6700 | |
6701 /* Handle unbinding buffer-local variables */ | |
6702 static Lisp_Object | |
6703 specbind_unwind_local (Lisp_Object ovalue) | |
6704 { | |
6705 Lisp_Object current = Fcurrent_buffer (); | |
6706 Lisp_Object symbol = specpdl_ptr->symbol; | |
853 | 6707 Lisp_Object victim = ovalue; |
6708 Lisp_Object buf = get_buffer (XCAR (victim), 0); | |
6709 ovalue = XCDR (victim); | |
428 | 6710 |
6711 free_cons (victim); | |
6712 | |
6713 if (NILP (buf)) | |
6714 { | |
6715 /* Deleted buffer -- do nothing */ | |
6716 } | |
6717 else if (symbol_value_buffer_local_info (symbol, XBUFFER (buf)) == 0) | |
6718 { | |
6719 /* Was buffer-local when binding was made, now no longer is. | |
6720 * (kill-local-variable can do this.) | |
6721 * Do nothing in this case. | |
6722 */ | |
6723 } | |
6724 else if (EQ (buf, current)) | |
6725 Fset (symbol, ovalue); | |
6726 else | |
6727 { | |
6728 /* Urk! Somebody switched buffers */ | |
6729 struct gcpro gcpro1; | |
6730 GCPRO1 (current); | |
6731 Fset_buffer (buf); | |
6732 Fset (symbol, ovalue); | |
6733 Fset_buffer (current); | |
6734 UNGCPRO; | |
6735 } | |
6736 return symbol; | |
6737 } | |
6738 | |
6739 static Lisp_Object | |
6740 specbind_unwind_wasnt_local (Lisp_Object buffer) | |
6741 { | |
6742 Lisp_Object current = Fcurrent_buffer (); | |
6743 Lisp_Object symbol = specpdl_ptr->symbol; | |
6744 | |
6745 buffer = get_buffer (buffer, 0); | |
6746 if (NILP (buffer)) | |
6747 { | |
6748 /* Deleted buffer -- do nothing */ | |
6749 } | |
6750 else if (symbol_value_buffer_local_info (symbol, XBUFFER (buffer)) == 0) | |
6751 { | |
6752 /* Was buffer-local when binding was made, now no longer is. | |
6753 * (kill-local-variable can do this.) | |
6754 * Do nothing in this case. | |
6755 */ | |
6756 } | |
6757 else if (EQ (buffer, current)) | |
6758 Fkill_local_variable (symbol); | |
6759 else | |
6760 { | |
6761 /* Urk! Somebody switched buffers */ | |
6762 struct gcpro gcpro1; | |
6763 GCPRO1 (current); | |
6764 Fset_buffer (buffer); | |
6765 Fkill_local_variable (symbol); | |
6766 Fset_buffer (current); | |
6767 UNGCPRO; | |
6768 } | |
6769 return symbol; | |
6770 } | |
6771 | |
6772 | |
6773 void | |
6774 specbind (Lisp_Object symbol, Lisp_Object value) | |
6775 { | |
6776 SPECBIND (symbol, value); | |
853 | 6777 |
6778 check_specbind_stack_sanity (); | |
428 | 6779 } |
6780 | |
6781 void | |
6782 specbind_magic (Lisp_Object symbol, Lisp_Object value) | |
6783 { | |
6784 int buffer_local = | |
6785 symbol_value_buffer_local_info (symbol, current_buffer); | |
6786 | |
6787 if (buffer_local == 0) | |
6788 { | |
6789 specpdl_ptr->old_value = find_symbol_value (symbol); | |
771 | 6790 specpdl_ptr->func = 0; /* Handled specially by unbind_to_1 */ |
428 | 6791 } |
6792 else if (buffer_local > 0) | |
6793 { | |
6794 /* Already buffer-local */ | |
6795 specpdl_ptr->old_value = noseeum_cons (Fcurrent_buffer (), | |
6796 find_symbol_value (symbol)); | |
6797 specpdl_ptr->func = specbind_unwind_local; | |
6798 } | |
6799 else | |
6800 { | |
6801 /* About to become buffer-local */ | |
6802 specpdl_ptr->old_value = Fcurrent_buffer (); | |
6803 specpdl_ptr->func = specbind_unwind_wasnt_local; | |
6804 } | |
6805 | |
6806 specpdl_ptr->symbol = symbol; | |
6807 specpdl_ptr++; | |
6808 specpdl_depth_counter++; | |
6809 | |
6810 Fset (symbol, value); | |
853 | 6811 |
6812 check_specbind_stack_sanity (); | |
428 | 6813 } |
6814 | |
771 | 6815 /* Record an unwind-protect -- FUNCTION will be called with ARG no matter |
6816 whether a normal or non-local exit occurs. (You need to call unbind_to_1() | |
6817 before your function returns normally, passing in the integer returned | |
6818 by this function.) Note: As long as the unwind-protect exists, ARG is | |
6819 automatically GCPRO'd. The return value from FUNCTION is completely | |
6820 ignored. #### We should eliminate it entirely. */ | |
6821 | |
6822 int | |
428 | 6823 record_unwind_protect (Lisp_Object (*function) (Lisp_Object arg), |
6824 Lisp_Object arg) | |
6825 { | |
6826 SPECPDL_RESERVE (1); | |
6827 specpdl_ptr->func = function; | |
6828 specpdl_ptr->symbol = Qnil; | |
6829 specpdl_ptr->old_value = arg; | |
6830 specpdl_ptr++; | |
6831 specpdl_depth_counter++; | |
853 | 6832 check_specbind_stack_sanity (); |
771 | 6833 return specpdl_depth_counter - 1; |
6834 } | |
6835 | |
6836 static Lisp_Object | |
802 | 6837 restore_lisp_object (Lisp_Object cons) |
6838 { | |
5013 | 6839 Lisp_Object laddr = XCAR (cons); |
6840 Lisp_Object *addr = (Lisp_Object *) GET_VOID_FROM_LISP (laddr); | |
802 | 6841 *addr = XCDR (cons); |
853 | 6842 free_cons (cons); |
802 | 6843 return Qnil; |
6844 } | |
6845 | |
6846 /* Establish an unwind-protect which will restore the Lisp_Object pointed to | |
6847 by ADDR with the value VAL. */ | |
814 | 6848 static int |
802 | 6849 record_unwind_protect_restoring_lisp_object (Lisp_Object *addr, |
6850 Lisp_Object val) | |
6851 { | |
5013 | 6852 /* We use a cons rather than a malloc()ed structure because we want the |
6853 Lisp object to have garbage-collection protection */ | |
6854 Lisp_Object laddr = STORE_VOID_IN_LISP (addr); | |
802 | 6855 return record_unwind_protect (restore_lisp_object, |
5013 | 6856 noseeum_cons (laddr, val)); |
802 | 6857 } |
6858 | |
6859 /* Similar to specbind() but for any C variable whose value is a | |
6860 Lisp_Object. Sets up an unwind-protect to restore the variable | |
6861 pointed to by ADDR to its existing value, and then changes its | |
6862 value to NEWVAL. Returns the previous value of specpdl_depth(); | |
6863 pass this to unbind_to() after you are done. */ | |
6864 int | |
6865 internal_bind_lisp_object (Lisp_Object *addr, Lisp_Object newval) | |
6866 { | |
6867 int count = specpdl_depth (); | |
6868 record_unwind_protect_restoring_lisp_object (addr, *addr); | |
6869 *addr = newval; | |
6870 return count; | |
6871 } | |
6872 | |
5013 | 6873 struct restore_int |
6874 { | |
6875 int *addr; | |
802 | 6876 int val; |
5013 | 6877 }; |
6878 | |
6879 static Lisp_Object | |
6880 restore_int (Lisp_Object obj) | |
6881 { | |
6882 struct restore_int *ri = (struct restore_int *) GET_VOID_FROM_LISP (obj); | |
6883 *(ri->addr) = ri->val; | |
6884 xfree (ri); | |
802 | 6885 return Qnil; |
6886 } | |
6887 | |
6888 /* Establish an unwind-protect which will restore the int pointed to | |
6889 by ADDR with the value VAL. This function works correctly with | |
6890 all ints, even those that don't fit into a Lisp integer. */ | |
1333 | 6891 int |
802 | 6892 record_unwind_protect_restoring_int (int *addr, int val) |
6893 { | |
5013 | 6894 struct restore_int *ri = xnew (struct restore_int); |
6895 ri->addr = addr; | |
6896 ri->val = val; | |
6897 return record_unwind_protect (restore_int, STORE_VOID_IN_LISP (ri)); | |
802 | 6898 } |
6899 | |
6900 /* Similar to specbind() but for any C variable whose value is an int. | |
6901 Sets up an unwind-protect to restore the variable pointed to by | |
6902 ADDR to its existing value, and then changes its value to NEWVAL. | |
6903 Returns the previous value of specpdl_depth(); pass this to | |
6904 unbind_to() after you are done. This function works correctly with | |
6905 all ints, even those that don't fit into a Lisp integer. */ | |
6906 int | |
6907 internal_bind_int (int *addr, int newval) | |
6908 { | |
6909 int count = specpdl_depth (); | |
6910 record_unwind_protect_restoring_int (addr, *addr); | |
6911 *addr = newval; | |
6912 return count; | |
6913 } | |
6914 | |
6915 static Lisp_Object | |
771 | 6916 free_pointer (Lisp_Object opaque) |
6917 { | |
5013 | 6918 void *ptr = GET_VOID_FROM_LISP (opaque); |
6919 xfree (ptr); | |
771 | 6920 return Qnil; |
6921 } | |
6922 | |
6923 /* Establish an unwind-protect which will free the specified block. | |
6924 */ | |
6925 int | |
6926 record_unwind_protect_freeing (void *ptr) | |
6927 { | |
5013 | 6928 return record_unwind_protect (free_pointer, STORE_VOID_IN_LISP (ptr)); |
771 | 6929 } |
6930 | |
6931 static Lisp_Object | |
6932 free_dynarr (Lisp_Object opaque) | |
6933 { | |
5013 | 6934 Dynarr_free (GET_VOID_FROM_LISP (opaque)); |
771 | 6935 return Qnil; |
6936 } | |
6937 | |
6938 int | |
6939 record_unwind_protect_freeing_dynarr (void *ptr) | |
6940 { | |
5013 | 6941 return record_unwind_protect (free_dynarr, STORE_VOID_IN_LISP (ptr)); |
771 | 6942 } |
428 | 6943 |
6944 /* Unwind the stack till specpdl_depth() == COUNT. | |
6945 VALUE is not used, except that, purely as a convenience to the | |
771 | 6946 caller, it is protected from garbage-protection and returned. */ |
428 | 6947 Lisp_Object |
771 | 6948 unbind_to_1 (int count, Lisp_Object value) |
428 | 6949 { |
6950 UNBIND_TO_GCPRO (count, value); | |
853 | 6951 check_specbind_stack_sanity (); |
428 | 6952 return value; |
6953 } | |
6954 | |
6955 /* Don't call this directly. | |
6956 Only for use by UNBIND_TO* macros in backtrace.h */ | |
6957 void | |
6958 unbind_to_hairy (int count) | |
6959 { | |
442 | 6960 ++specpdl_ptr; |
6961 ++specpdl_depth_counter; | |
6962 | |
428 | 6963 while (specpdl_depth_counter != count) |
6964 { | |
1313 | 6965 Lisp_Object oquit = Qunbound; |
6966 | |
6967 /* Do this check BEFORE decrementing the values below, because once | |
6968 they're decremented, GC protection is lost on | |
6969 specpdl_ptr->old_value. */ | |
1322 | 6970 if (specpdl_ptr[-1].func == Fprogn) |
1313 | 6971 { |
6972 /* Allow QUIT within unwind-protect routines, but defer any | |
6973 existing QUIT until afterwards. Only do this, however, for | |
6974 unwind-protects established by Lisp code, not by C code | |
6975 (e.g. free_opaque_ptr() or something), because the act of | |
6976 checking for QUIT can cause all sorts of weird things to | |
6977 happen, since it churns the event loop -- redisplay, running | |
6978 Lisp, etc. Code should not have to worry about this just | |
6979 because of establishing an unwind-protect. */ | |
6980 check_quit (); /* make Vquit_flag accurate */ | |
6981 oquit = Vquit_flag; | |
6982 Vquit_flag = Qnil; | |
6983 } | |
6984 | |
428 | 6985 --specpdl_ptr; |
6986 --specpdl_depth_counter; | |
6987 | |
1313 | 6988 /* #### At this point, there is no GC protection on old_value. This |
6989 could be a real problem, depending on what unwind-protect function | |
6990 is called. It looks like it just so happens that the ones | |
6991 actually called don't have a problem with this, e.g. Fprogn. But | |
6992 we should look into fixing this. (Many unwind-protect functions | |
6993 free values. Is it a problem if freed values are | |
6994 GC-protected?) */ | |
428 | 6995 if (specpdl_ptr->func != 0) |
1313 | 6996 { |
6997 /* An unwind-protect */ | |
6998 (*specpdl_ptr->func) (specpdl_ptr->old_value); | |
6999 } | |
7000 | |
428 | 7001 else |
7002 { | |
7003 /* We checked symbol for validity when we specbound it, | |
7004 so only need to call Fset if symbol has magic value. */ | |
440 | 7005 Lisp_Symbol *sym = XSYMBOL (specpdl_ptr->symbol); |
428 | 7006 if (!SYMBOL_VALUE_MAGIC_P (sym->value)) |
7007 sym->value = specpdl_ptr->old_value; | |
7008 else | |
7009 Fset (specpdl_ptr->symbol, specpdl_ptr->old_value); | |
7010 } | |
7011 | |
7012 #if 0 /* martin */ | |
7013 #ifndef EXCEEDINGLY_QUESTIONABLE_CODE | |
7014 /* There should never be anything here for us to remove. | |
7015 If so, it indicates a logic error in Emacs. Catches | |
7016 should get removed when a throw or signal occurs, or | |
7017 when a catch or condition-case exits normally. But | |
7018 it's too dangerous to just remove this code. --ben */ | |
7019 | |
7020 /* Furthermore, this code is not in FSFmacs!!! | |
7021 Braino on mly's part? */ | |
7022 /* If we're unwound past the pdlcount of a catch frame, | |
7023 that catch can't possibly still be valid. */ | |
7024 while (catchlist && catchlist->pdlcount > specpdl_depth_counter) | |
7025 { | |
7026 catchlist = catchlist->next; | |
7027 /* Don't mess with gcprolist, backtrace_list here */ | |
7028 } | |
7029 #endif | |
7030 #endif | |
1313 | 7031 |
7032 if (!UNBOUNDP (oquit)) | |
7033 Vquit_flag = oquit; | |
428 | 7034 } |
853 | 7035 check_specbind_stack_sanity (); |
428 | 7036 } |
7037 | |
7038 | |
7039 | |
7040 /* Get the value of symbol's global binding, even if that binding is | |
7041 not now dynamically visible. May return Qunbound or magic values. */ | |
7042 | |
7043 Lisp_Object | |
7044 top_level_value (Lisp_Object symbol) | |
7045 { | |
7046 REGISTER struct specbinding *ptr = specpdl; | |
7047 | |
7048 CHECK_SYMBOL (symbol); | |
7049 for (; ptr != specpdl_ptr; ptr++) | |
7050 { | |
7051 if (EQ (ptr->symbol, symbol)) | |
7052 return ptr->old_value; | |
7053 } | |
7054 return XSYMBOL (symbol)->value; | |
7055 } | |
7056 | |
7057 #if 0 | |
7058 | |
7059 Lisp_Object | |
7060 top_level_set (Lisp_Object symbol, Lisp_Object newval) | |
7061 { | |
7062 REGISTER struct specbinding *ptr = specpdl; | |
7063 | |
7064 CHECK_SYMBOL (symbol); | |
7065 for (; ptr != specpdl_ptr; ptr++) | |
7066 { | |
7067 if (EQ (ptr->symbol, symbol)) | |
7068 { | |
7069 ptr->old_value = newval; | |
7070 return newval; | |
7071 } | |
7072 } | |
7073 return Fset (symbol, newval); | |
7074 } | |
7075 | |
7076 #endif /* 0 */ | |
7077 | |
7078 | |
7079 /************************************************************************/ | |
7080 /* Backtraces */ | |
7081 /************************************************************************/ | |
7082 | |
7083 DEFUN ("backtrace-debug", Fbacktrace_debug, 2, 2, 0, /* | |
7084 Set the debug-on-exit flag of eval frame LEVEL levels down to FLAG. | |
7085 The debugger is entered when that frame exits, if the flag is non-nil. | |
7086 */ | |
7087 (level, flag)) | |
7088 { | |
7089 REGISTER struct backtrace *backlist = backtrace_list; | |
7090 REGISTER int i; | |
7091 | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
7092 CHECK_FIXNUM (level); |
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
7093 |
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
7094 for (i = 0; backlist && i < XFIXNUM (level); i++) |
428 | 7095 { |
7096 backlist = backlist->next; | |
7097 } | |
7098 | |
7099 if (backlist) | |
7100 backlist->debug_on_exit = !NILP (flag); | |
7101 | |
7102 return flag; | |
7103 } | |
7104 | |
7105 static void | |
7106 backtrace_specials (int speccount, int speclimit, Lisp_Object stream) | |
7107 { | |
7108 int printing_bindings = 0; | |
7109 | |
7110 for (; speccount > speclimit; speccount--) | |
7111 { | |
7112 if (specpdl[speccount - 1].func == 0 | |
7113 || specpdl[speccount - 1].func == specbind_unwind_local | |
7114 || specpdl[speccount - 1].func == specbind_unwind_wasnt_local) | |
7115 { | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7116 write_ascstring (stream, !printing_bindings ? " # bind (" : " "); |
428 | 7117 Fprin1 (specpdl[speccount - 1].symbol, stream); |
7118 printing_bindings = 1; | |
7119 } | |
7120 else | |
7121 { | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7122 if (printing_bindings) write_ascstring (stream, ")\n"); |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7123 write_ascstring (stream, " # (unwind-protect ...)\n"); |
428 | 7124 printing_bindings = 0; |
7125 } | |
7126 } | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7127 if (printing_bindings) write_ascstring (stream, ")\n"); |
428 | 7128 } |
7129 | |
1292 | 7130 static Lisp_Object |
7131 backtrace_unevalled_args (Lisp_Object *args) | |
7132 { | |
7133 if (args) | |
7134 return *args; | |
7135 else | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7136 return list1 (build_ascstring ("[internal]")); |
1292 | 7137 } |
7138 | |
428 | 7139 DEFUN ("backtrace", Fbacktrace, 0, 2, "", /* |
7140 Print a trace of Lisp function calls currently active. | |
438 | 7141 Optional arg STREAM specifies the output stream to send the backtrace to, |
444 | 7142 and defaults to the value of `standard-output'. |
7143 Optional second arg DETAILED non-nil means show places where currently | |
7144 active variable bindings, catches, condition-cases, and | |
7145 unwind-protects, as well as function calls, were made. | |
428 | 7146 */ |
7147 (stream, detailed)) | |
7148 { | |
7149 /* This function can GC */ | |
7150 struct backtrace *backlist = backtrace_list; | |
7151 struct catchtag *catches = catchlist; | |
7152 int speccount = specpdl_depth(); | |
7153 | |
7154 int old_nl = print_escape_newlines; | |
7155 int old_pr = print_readably; | |
7156 Lisp_Object old_level = Vprint_level; | |
7157 Lisp_Object oiq = Vinhibit_quit; | |
7158 struct gcpro gcpro1, gcpro2; | |
7159 | |
7160 /* We can't allow quits in here because that could cause the values | |
7161 of print_readably and print_escape_newlines to get screwed up. | |
7162 Normally we would use a record_unwind_protect but that would | |
7163 screw up the functioning of this function. */ | |
7164 Vinhibit_quit = Qt; | |
7165 | |
7166 entering_debugger = 0; | |
7167 | |
872 | 7168 if (!NILP (detailed)) |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
7169 Vprint_level = make_fixnum (50); |
872 | 7170 else |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
7171 Vprint_level = make_fixnum (3); |
428 | 7172 print_readably = 0; |
7173 print_escape_newlines = 1; | |
7174 | |
7175 GCPRO2 (stream, old_level); | |
7176 | |
1261 | 7177 stream = canonicalize_printcharfun (stream); |
428 | 7178 |
7179 for (;;) | |
7180 { | |
7181 if (!NILP (detailed) && catches && catches->backlist == backlist) | |
7182 { | |
7183 int catchpdl = catches->pdlcount; | |
438 | 7184 if (speccount > catchpdl |
7185 && specpdl[catchpdl].func == condition_case_unwind) | |
428 | 7186 /* This is a condition-case catchpoint */ |
7187 catchpdl = catchpdl + 1; | |
7188 | |
7189 backtrace_specials (speccount, catchpdl, stream); | |
7190 | |
7191 speccount = catches->pdlcount; | |
7192 if (catchpdl == speccount) | |
7193 { | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7194 write_ascstring (stream, " # (catch "); |
428 | 7195 Fprin1 (catches->tag, stream); |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7196 write_ascstring (stream, " ...)\n"); |
428 | 7197 } |
7198 else | |
7199 { | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7200 write_ascstring (stream, " # (condition-case ... . "); |
428 | 7201 Fprin1 (Fcdr (Fcar (catches->tag)), stream); |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7202 write_ascstring (stream, ")\n"); |
428 | 7203 } |
7204 catches = catches->next; | |
7205 } | |
7206 else if (!backlist) | |
7207 break; | |
7208 else | |
7209 { | |
7210 if (!NILP (detailed) && backlist->pdlcount < speccount) | |
7211 { | |
7212 backtrace_specials (speccount, backlist->pdlcount, stream); | |
7213 speccount = backlist->pdlcount; | |
7214 } | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7215 write_ascstring (stream, backlist->debug_on_exit ? "* " : " "); |
428 | 7216 if (backlist->nargs == UNEVALLED) |
7217 { | |
1292 | 7218 Fprin1 (Fcons (*backlist->function, |
7219 backtrace_unevalled_args (backlist->args)), | |
7220 stream); | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7221 write_ascstring (stream, "\n"); /* from FSFmacs 19.30 */ |
428 | 7222 } |
7223 else | |
7224 { | |
7225 Lisp_Object tem = *backlist->function; | |
7226 Fprin1 (tem, stream); /* This can QUIT */ | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7227 write_ascstring (stream, "("); |
428 | 7228 if (backlist->nargs == MANY) |
7229 { | |
7230 int i; | |
7231 Lisp_Object tail = Qnil; | |
7232 struct gcpro ngcpro1; | |
7233 | |
7234 NGCPRO1 (tail); | |
7235 for (tail = *backlist->args, i = 0; | |
7236 !NILP (tail); | |
7237 tail = Fcdr (tail), i++) | |
7238 { | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7239 if (i != 0) write_ascstring (stream, " "); |
428 | 7240 Fprin1 (Fcar (tail), stream); |
7241 } | |
7242 NUNGCPRO; | |
7243 } | |
7244 else | |
7245 { | |
7246 int i; | |
7247 for (i = 0; i < backlist->nargs; i++) | |
7248 { | |
826 | 7249 if (!i && EQ (tem, Qbyte_code)) |
7250 { | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7251 write_ascstring (stream, "\"...\""); |
826 | 7252 continue; |
7253 } | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7254 if (i != 0) write_ascstring (stream, " "); |
428 | 7255 Fprin1 (backlist->args[i], stream); |
7256 } | |
7257 } | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7258 write_ascstring (stream, ")\n"); |
428 | 7259 } |
7260 backlist = backlist->next; | |
7261 } | |
7262 } | |
7263 Vprint_level = old_level; | |
7264 print_readably = old_pr; | |
7265 print_escape_newlines = old_nl; | |
7266 UNGCPRO; | |
7267 Vinhibit_quit = oiq; | |
7268 return Qnil; | |
7269 } | |
7270 | |
7271 | |
444 | 7272 DEFUN ("backtrace-frame", Fbacktrace_frame, 1, 1, 0, /* |
7273 Return the function and arguments NFRAMES up from current execution point. | |
4905
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4846
diff
changeset
|
7274 If that frame has not evaluated the arguments yet (or involves a special |
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4846
diff
changeset
|
7275 operator), the value is (nil FUNCTION ARG-FORMS...). |
428 | 7276 If that frame has evaluated its arguments and called its function already, |
7277 the value is (t FUNCTION ARG-VALUES...). | |
7278 A &rest arg is represented as the tail of the list ARG-VALUES. | |
7279 FUNCTION is whatever was supplied as car of evaluated list, | |
7280 or a lambda expression for macro calls. | |
444 | 7281 If NFRAMES is more than the number of frames, the value is nil. |
428 | 7282 */ |
7283 (nframes)) | |
7284 { | |
7285 REGISTER struct backtrace *backlist = backtrace_list; | |
7286 REGISTER int i; | |
7287 Lisp_Object tem; | |
7288 | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
7289 check_integer_range (nframes, Qzero, make_integer (MOST_POSITIVE_FIXNUM)); |
428 | 7290 |
7291 /* Find the frame requested. */ | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
7292 for (i = XFIXNUM (nframes); backlist && (i-- > 0);) |
428 | 7293 backlist = backlist->next; |
7294 | |
7295 if (!backlist) | |
7296 return Qnil; | |
7297 if (backlist->nargs == UNEVALLED) | |
1292 | 7298 return Fcons (Qnil, Fcons (*backlist->function, |
7299 backtrace_unevalled_args (backlist->args))); | |
428 | 7300 else |
7301 { | |
7302 if (backlist->nargs == MANY) | |
7303 tem = *backlist->args; | |
7304 else | |
7305 tem = Flist (backlist->nargs, backlist->args); | |
7306 | |
7307 return Fcons (Qt, Fcons (*backlist->function, tem)); | |
7308 } | |
7309 } | |
7310 | |
7311 | |
7312 /************************************************************************/ | |
7313 /* Warnings */ | |
7314 /************************************************************************/ | |
7315 | |
1123 | 7316 static int |
7317 warning_will_be_discarded (Lisp_Object level) | |
7318 { | |
7319 /* Don't even generate debug warnings if they're going to be discarded, | |
7320 to avoid excessive consing. */ | |
7321 return (EQ (level, Qdebug) && !NILP (Vlog_warning_minimum_level) && | |
7322 !EQ (Vlog_warning_minimum_level, Qdebug)); | |
7323 } | |
7324 | |
428 | 7325 void |
1204 | 7326 warn_when_safe_lispobj (Lisp_Object class_, Lisp_Object level, |
428 | 7327 Lisp_Object obj) |
7328 { | |
1123 | 7329 if (warning_will_be_discarded (level)) |
793 | 7330 return; |
1123 | 7331 |
1204 | 7332 obj = list1 (list3 (class_, level, obj)); |
428 | 7333 if (NILP (Vpending_warnings)) |
7334 Vpending_warnings = Vpending_warnings_tail = obj; | |
7335 else | |
7336 { | |
7337 Fsetcdr (Vpending_warnings_tail, obj); | |
7338 Vpending_warnings_tail = obj; | |
7339 } | |
7340 } | |
7341 | |
7342 /* #### This should probably accept Lisp objects; but then we have | |
7343 to make sure that Feval() isn't called, since it might not be safe. | |
7344 | |
7345 An alternative approach is to just pass some non-string type of | |
7346 Lisp_Object to warn_when_safe_lispobj(); `prin1-to-string' will | |
7347 automatically be called when it is safe to do so. */ | |
7348 | |
7349 void | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7350 warn_when_safe (Lisp_Object class_, Lisp_Object level, const Ascbyte *fmt, ...) |
428 | 7351 { |
7352 Lisp_Object obj; | |
7353 va_list args; | |
7354 | |
1123 | 7355 if (warning_will_be_discarded (level)) |
793 | 7356 return; |
1123 | 7357 |
428 | 7358 va_start (args, fmt); |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7359 obj = emacs_vsprintf_string (GETTEXT (fmt), args); |
428 | 7360 va_end (args); |
7361 | |
1204 | 7362 warn_when_safe_lispobj (class_, level, obj); |
428 | 7363 } |
7364 | |
7365 | |
7366 | |
7367 | |
7368 /************************************************************************/ | |
7369 /* Initialization */ | |
7370 /************************************************************************/ | |
7371 | |
7372 void | |
7373 syms_of_eval (void) | |
7374 { | |
5117
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3025
diff
changeset
|
7375 INIT_LISP_OBJECT (subr); |
5118
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
7376 INIT_LISP_OBJECT (multiple_value); |
442 | 7377 |
563 | 7378 DEFSYMBOL (Qinhibit_quit); |
7379 DEFSYMBOL (Qautoload); | |
5615
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
7380 DEFSYMBOL (Qbyte_compile_macro_environment); |
563 | 7381 DEFSYMBOL (Qdebug_on_error); |
7382 DEFSYMBOL (Qstack_trace_on_error); | |
7383 DEFSYMBOL (Qdebug_on_signal); | |
7384 DEFSYMBOL (Qstack_trace_on_signal); | |
7385 DEFSYMBOL (Qdebugger); | |
7386 DEFSYMBOL (Qmacro); | |
428 | 7387 defsymbol (&Qand_rest, "&rest"); |
7388 defsymbol (&Qand_optional, "&optional"); | |
7389 /* Note that the process code also uses Qexit */ | |
563 | 7390 DEFSYMBOL (Qexit); |
5506
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
7391 DEFSYMBOL (Qdeclare); |
563 | 7392 DEFSYMBOL (Qsetq); |
7393 DEFSYMBOL (Qinteractive); | |
7394 DEFSYMBOL (Qcommandp); | |
7395 DEFSYMBOL (Qdefun); | |
7396 DEFSYMBOL (Qprogn); | |
7397 DEFSYMBOL (Qvalues); | |
7398 DEFSYMBOL (Qdisplay_warning); | |
7399 DEFSYMBOL (Qrun_hooks); | |
887 | 7400 DEFSYMBOL (Qfinalize_list); |
563 | 7401 DEFSYMBOL (Qif); |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7402 DEFSYMBOL (Qthrow); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7403 DEFSYMBOL (Qobsolete_throw); |
4686
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
7404 DEFSYMBOL (Qmultiple_value_list_internal); |
428 | 7405 |
7406 DEFSUBR (For); | |
7407 DEFSUBR (Fand); | |
7408 DEFSUBR (Fif); | |
7409 DEFSUBR_MACRO (Fwhen); | |
7410 DEFSUBR_MACRO (Funless); | |
7411 DEFSUBR (Fcond); | |
7412 DEFSUBR (Fprogn); | |
7413 DEFSUBR (Fprog1); | |
7414 DEFSUBR (Fprog2); | |
7415 DEFSUBR (Fsetq); | |
7416 DEFSUBR (Fquote); | |
4744
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
7417 DEFSUBR (Fquote_maybe); |
428 | 7418 DEFSUBR (Ffunction); |
7419 DEFSUBR (Fdefun); | |
7420 DEFSUBR (Fdefmacro); | |
7421 DEFSUBR (Fdefvar); | |
7422 DEFSUBR (Fdefconst); | |
7423 DEFSUBR (Flet); | |
7424 DEFSUBR (FletX); | |
7425 DEFSUBR (Fwhile); | |
5615
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
7426 DEFSUBR (Fmacroexpand); |
428 | 7427 DEFSUBR (Fcatch); |
7428 DEFSUBR (Fthrow); | |
7429 DEFSUBR (Funwind_protect); | |
7430 DEFSUBR (Fcondition_case); | |
7431 DEFSUBR (Fcall_with_condition_handler); | |
7432 DEFSUBR (Fsignal); | |
7433 DEFSUBR (Finteractive_p); | |
7434 DEFSUBR (Fcommandp); | |
7435 DEFSUBR (Fcommand_execute); | |
7436 DEFSUBR (Fautoload); | |
7437 DEFSUBR (Feval); | |
7438 DEFSUBR (Fapply); | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7439 DEFSUBR (Fmultiple_value_call); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7440 DEFSUBR (Fmultiple_value_list_internal); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7441 DEFSUBR (Fmultiple_value_prog1); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7442 DEFSUBR (Fvalues); |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7443 DEFSUBR (Fvalues_list); |
428 | 7444 DEFSUBR (Ffuncall); |
7445 DEFSUBR (Ffunctionp); | |
7446 DEFSUBR (Ffunction_min_args); | |
7447 DEFSUBR (Ffunction_max_args); | |
7448 DEFSUBR (Frun_hooks); | |
7449 DEFSUBR (Frun_hook_with_args); | |
7450 DEFSUBR (Frun_hook_with_args_until_success); | |
7451 DEFSUBR (Frun_hook_with_args_until_failure); | |
7452 DEFSUBR (Fbacktrace_debug); | |
7453 DEFSUBR (Fbacktrace); | |
7454 DEFSUBR (Fbacktrace_frame); | |
7455 } | |
7456 | |
7457 void | |
814 | 7458 init_eval_semi_early (void) |
428 | 7459 { |
7460 specpdl_ptr = specpdl; | |
7461 specpdl_depth_counter = 0; | |
7462 catchlist = 0; | |
7463 Vcondition_handlers = Qnil; | |
7464 backtrace_list = 0; | |
7465 Vquit_flag = Qnil; | |
7466 debug_on_next_call = 0; | |
7467 lisp_eval_depth = 0; | |
7468 entering_debugger = 0; | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7469 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7470 first_desired_multiple_value = 0; |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7471 multiple_value_current_limit = 1; |
428 | 7472 } |
7473 | |
7474 void | |
7475 reinit_vars_of_eval (void) | |
7476 { | |
7477 preparing_for_armageddon = 0; | |
7478 in_warnings = 0; | |
7479 specpdl_size = 50; | |
7480 specpdl = xnew_array (struct specbinding, specpdl_size); | |
7481 /* XEmacs change: increase these values. */ | |
7482 max_specpdl_size = 3000; | |
442 | 7483 max_lisp_eval_depth = 1000; |
7484 #ifdef DEFEND_AGAINST_THROW_RECURSION | |
428 | 7485 throw_level = 0; |
7486 #endif | |
2367 | 7487 init_eval_semi_early (); |
428 | 7488 } |
7489 | |
7490 void | |
7491 vars_of_eval (void) | |
7492 { | |
7493 DEFVAR_INT ("max-specpdl-size", &max_specpdl_size /* | |
7494 Limit on number of Lisp variable bindings & unwind-protects before error. | |
7495 */ ); | |
7496 | |
7497 DEFVAR_INT ("max-lisp-eval-depth", &max_lisp_eval_depth /* | |
7498 Limit on depth in `eval', `apply' and `funcall' before error. | |
7499 This limit is to catch infinite recursions for you before they cause | |
7500 actual stack overflow in C, which would be fatal for Emacs. | |
7501 You can safely make it considerably larger than its default value, | |
7502 if that proves inconveniently small. | |
7503 */ ); | |
7504 | |
7505 DEFVAR_LISP ("quit-flag", &Vquit_flag /* | |
853 | 7506 t causes running Lisp code to abort, unless `inhibit-quit' is non-nil. |
7507 `critical' causes running Lisp code to abort regardless of `inhibit-quit'. | |
7508 Normally, you do not need to set this value yourself. It is set to | |
7509 t each time a Control-G is detected, and to `critical' each time a | |
7510 Shift-Control-G is detected. The XEmacs core C code is littered with | |
7511 calls to the QUIT; macro, which check the values of `quit-flag' and | |
2500 | 7512 `inhibit-quit' and ABORT (or more accurately, call (signal 'quit)) if |
853 | 7513 it's correct to do so. |
428 | 7514 */ ); |
7515 Vquit_flag = Qnil; | |
7516 | |
7517 DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit /* | |
7518 Non-nil inhibits C-g quitting from happening immediately. | |
7519 Note that `quit-flag' will still be set by typing C-g, | |
7520 so a quit will be signalled as soon as `inhibit-quit' is nil. | |
7521 To prevent this happening, set `quit-flag' to nil | |
853 | 7522 before making `inhibit-quit' nil. |
7523 | |
7524 The value of `inhibit-quit' is ignored if a critical quit is | |
7525 requested by typing control-shift-G in a window-system frame; | |
7526 this is explained in more detail in `quit-flag'. | |
428 | 7527 */ ); |
7528 Vinhibit_quit = Qnil; | |
7529 | |
7530 DEFVAR_LISP ("stack-trace-on-error", &Vstack_trace_on_error /* | |
7531 *Non-nil means automatically display a backtrace buffer | |
7532 after any error that is not handled by a `condition-case'. | |
7533 If the value is a list, an error only means to display a backtrace | |
7534 if one of its condition symbols appears in the list. | |
7535 See also variable `stack-trace-on-signal'. | |
7536 */ ); | |
7537 Vstack_trace_on_error = Qnil; | |
7538 | |
7539 DEFVAR_LISP ("stack-trace-on-signal", &Vstack_trace_on_signal /* | |
7540 *Non-nil means automatically display a backtrace buffer | |
7541 after any error that is signalled, whether or not it is handled by | |
7542 a `condition-case'. | |
7543 If the value is a list, an error only means to display a backtrace | |
7544 if one of its condition symbols appears in the list. | |
7545 See also variable `stack-trace-on-error'. | |
7546 */ ); | |
7547 Vstack_trace_on_signal = Qnil; | |
7548 | |
7549 DEFVAR_LISP ("debug-ignored-errors", &Vdebug_ignored_errors /* | |
7550 *List of errors for which the debugger should not be called. | |
7551 Each element may be a condition-name or a regexp that matches error messages. | |
7552 If any element applies to a given error, that error skips the debugger | |
7553 and just returns to top level. | |
7554 This overrides the variable `debug-on-error'. | |
7555 It does not apply to errors handled by `condition-case'. | |
7556 */ ); | |
7557 Vdebug_ignored_errors = Qnil; | |
7558 | |
7559 DEFVAR_LISP ("debug-on-error", &Vdebug_on_error /* | |
7560 *Non-nil means enter debugger if an unhandled error is signalled. | |
7561 The debugger will not be entered if the error is handled by | |
7562 a `condition-case'. | |
7563 If the value is a list, an error only means to enter the debugger | |
7564 if one of its condition symbols appears in the list. | |
7565 This variable is overridden by `debug-ignored-errors'. | |
7566 See also variables `debug-on-quit' and `debug-on-signal'. | |
1123 | 7567 |
4657
f8d7d8202635
imported patch accept-process-output-docstring
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4642
diff
changeset
|
7568 Process filters are considered to be outside of condition-case forms |
f8d7d8202635
imported patch accept-process-output-docstring
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4642
diff
changeset
|
7569 (unless contained in the process filter itself). To prevent the |
f8d7d8202635
imported patch accept-process-output-docstring
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4642
diff
changeset
|
7570 debugger from being called from a process filter, use a list value, or |
f8d7d8202635
imported patch accept-process-output-docstring
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4642
diff
changeset
|
7571 put the expected error\(s) in `debug-ignored-errors'. |
f8d7d8202635
imported patch accept-process-output-docstring
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4642
diff
changeset
|
7572 |
1123 | 7573 If this variable is set while XEmacs is running noninteractively (using |
7574 `-batch'), and XEmacs was configured with `--debug' (#define XEMACS_DEBUG | |
7575 in the C code), instead of trying to invoke the Lisp debugger (which | |
7576 obviously won't work), XEmacs will break out to a C debugger using | |
7577 \(force-debugging-signal t). This is useful because debugging | |
7578 noninteractive runs of XEmacs is often very difficult, since they typically | |
7579 happen as part of sometimes large and complex make suites (e.g. rebuilding | |
2500 | 7580 the XEmacs packages). NOTE: This runs ABORT()!!! (As well as and after |
1123 | 7581 executing INT 3 under MS Windows, which should invoke a debugger if it's |
7582 active.) This is guaranteed to kill XEmacs! (But in this situation, XEmacs | |
7583 is about to die anyway, and if no debugger is present, this will usefully | |
7584 dump core.) The most useful way to set this flag when debugging | |
7585 noninteractive runs, especially in makefiles, is using the environment | |
7586 variable XEMACSDEBUG, like this: | |
771 | 7587 |
7588 \(using csh) setenv XEMACSDEBUG '(setq debug-on-error t)' | |
7589 \(using bash) export XEMACSDEBUG='(setq debug-on-error t)' | |
428 | 7590 */ ); |
7591 Vdebug_on_error = Qnil; | |
7592 | |
7593 DEFVAR_LISP ("debug-on-signal", &Vdebug_on_signal /* | |
7594 *Non-nil means enter debugger if an error is signalled. | |
7595 The debugger will be entered whether or not the error is handled by | |
7596 a `condition-case'. | |
7597 If the value is a list, an error only means to enter the debugger | |
7598 if one of its condition symbols appears in the list. | |
7599 See also variable `debug-on-quit'. | |
1123 | 7600 |
7601 This will attempt to enter a C debugger when XEmacs is run noninteractively | |
7602 and under the same conditions as described in `debug-on-error'. | |
428 | 7603 */ ); |
7604 Vdebug_on_signal = Qnil; | |
7605 | |
7606 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit /* | |
7607 *Non-nil means enter debugger if quit is signalled (C-G, for example). | |
7608 Does not apply if quit is handled by a `condition-case'. Entering the | |
7609 debugger can also be achieved at any time (for X11 console) by typing | |
7610 control-shift-G to signal a critical quit. | |
7611 */ ); | |
7612 debug_on_quit = 0; | |
7613 | |
7614 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call /* | |
7615 Non-nil means enter debugger before next `eval', `apply' or `funcall'. | |
7616 */ ); | |
7617 | |
1292 | 7618 DEFVAR_BOOL ("backtrace-with-interal-sections", |
7619 &backtrace_with_internal_sections /* | |
7620 Non-nil means backtraces will contain additional information indicating | |
7621 when particular sections of the C code have been entered, e.g. redisplay(), | |
7622 byte-char conversion, internal-external conversion, etc. This can be | |
7623 particularly useful when XEmacs crashes, in helping to pinpoint the problem. | |
7624 */ ); | |
7625 #ifdef ERROR_CHECK_STRUCTURES | |
7626 backtrace_with_internal_sections = 1; | |
7627 #else | |
7628 backtrace_with_internal_sections = 0; | |
7629 #endif | |
7630 | |
428 | 7631 DEFVAR_LISP ("debugger", &Vdebugger /* |
7632 Function to call to invoke debugger. | |
7633 If due to frame exit, args are `exit' and the value being returned; | |
7634 this function's value will be returned instead of that. | |
7635 If due to error, args are `error' and a list of the args to `signal'. | |
7636 If due to `apply' or `funcall' entry, one arg, `lambda'. | |
7637 If due to `eval' entry, one arg, t. | |
7638 */ ); | |
7639 Vdebugger = Qnil; | |
7640 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7641 DEFVAR_CONST_INT ("multiple-values-limit", &Vmultiple_values_limit /* |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7642 The exclusive upper bound on the number of multiple values. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7643 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7644 This applies to `values', `values-list', `multiple-value-bind' and related |
4905
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4846
diff
changeset
|
7645 macros and special operators. |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7646 */); |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
7647 Vmultiple_values_limit = MOST_POSITIVE_FIXNUM > INT_MAX ? INT_MAX : MOST_POSITIVE_FIXNUM; |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7648 |
5506
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
7649 DEFVAR_LISP ("macro-declaration-function", &Vmacro_declaration_function /* |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
7650 Function to process declarations in a macro definition. |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
7651 The function will be called with two args MACRO and DECL. |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
7652 MACRO is the name of the macro being defined. |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
7653 DECL is a list `(declare ...)' containing the declarations. |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
7654 The value the function returns is not used. |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
7655 */); |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
7656 Vmacro_declaration_function = Qnil; |
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
7657 |
5615
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
7658 DEFVAR_LISP ("byte-compile-macro-environment", &Vbyte_compile_macro_environment /* |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
7659 Alist of macros defined in the file being compiled. |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
7660 Each element looks like (MACRONAME . DEFINITION). It is |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
7661 \(MACRONAME . nil) when a macro is redefined as a function. |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
7662 */); |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
7663 Vbyte_compile_macro_environment = Qnil; |
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
7664 |
853 | 7665 staticpro (&Vcatch_everything_tag); |
7666 Vcatch_everything_tag = make_opaque (OPAQUE_CLEAR, 0); | |
7667 | |
428 | 7668 staticpro (&Vpending_warnings); |
7669 Vpending_warnings = Qnil; | |
1204 | 7670 dump_add_root_lisp_object (&Vpending_warnings_tail); |
428 | 7671 Vpending_warnings_tail = Qnil; |
7672 | |
793 | 7673 DEFVAR_LISP ("log-warning-minimum-level", &Vlog_warning_minimum_level); |
7674 Vlog_warning_minimum_level = Qinfo; | |
7675 | |
428 | 7676 staticpro (&Vautoload_queue); |
7677 Vautoload_queue = Qnil; | |
7678 | |
7679 staticpro (&Vcondition_handlers); | |
7680 | |
853 | 7681 staticpro (&Vdeletable_permanent_display_objects); |
7682 Vdeletable_permanent_display_objects = Qnil; | |
7683 | |
7684 staticpro (&Vmodifiable_buffers); | |
7685 Vmodifiable_buffers = Qnil; | |
7686 | |
7687 inhibit_flags = 0; | |
7688 } |