Mercurial > hg > xemacs-beta
annotate src/eval.c @ 5670:baab2e3a4141
Prepare for release.
| author | Stephen J. Turnbull <stephen@xemacs.org> |
|---|---|
| date | Fri, 03 Aug 2012 02:00:29 +0900 |
| parents | f5315ccbf005 |
| children | 289cf21be887 |
| 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 |
|
5630
f5315ccbf005
Cons less, be more careful about always using the environment, #'macroexpand
Aidan Kehoe <kehoea@parhasard.net>
parents:
5615
diff
changeset
|
1568 if (!NILP (environment) && |
|
f5315ccbf005
Cons less, be more careful about always using the environment, #'macroexpand
Aidan Kehoe <kehoea@parhasard.net>
parents:
5615
diff
changeset
|
1569 !EQ (environment, Vbyte_compile_macro_environment)) |
|
5615
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1570 { |
|
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1571 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
|
1572 { |
|
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1573 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
|
1574 } |
|
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1575 else |
|
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1576 { |
|
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1577 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
|
1578 nconc2 (Fcopy_list (environment), |
|
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1579 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 |
|
5630
f5315ccbf005
Cons less, be more careful about always using the environment, #'macroexpand
Aidan Kehoe <kehoea@parhasard.net>
parents:
5615
diff
changeset
|
1583 environment = Vbyte_compile_macro_environment; |
|
f5315ccbf005
Cons less, be more careful about always using the environment, #'macroexpand
Aidan Kehoe <kehoea@parhasard.net>
parents:
5615
diff
changeset
|
1584 |
| 428 | 1585 while (1) |
| 1586 { | |
| 1587 /* Come back here each time we expand a macro call, | |
| 1588 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
|
1589 if (SYMBOLP (form)) |
|
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1590 { |
|
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1591 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
|
1592 Lisp_Object assocked; |
|
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 if (BIGNUMP (hashed)) |
|
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1595 { |
|
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1596 struct gcpro gcpro1; |
|
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1597 GCPRO1 (hashed); |
|
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1598 assocked = Fassoc (hashed, environment); |
|
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1599 UNGCPRO; |
|
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 else |
|
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 assocked = Fassq (hashed, environment); |
|
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1604 } |
|
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 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
|
1607 { |
|
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1608 form = Fcar (XCDR (assocked)); |
|
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1609 continue; |
|
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1610 } |
|
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1611 } |
|
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1612 |
| 428 | 1613 if (!CONSP (form)) |
| 1614 break; | |
| 1615 /* Set SYM, give DEF and TEM right values in case SYM is not a symbol. */ | |
| 1616 def = sym = XCAR (form); | |
| 1617 tem = Qnil; | |
| 1618 /* Trace symbols aliases to other symbols | |
| 1619 until we get a symbol that is not an alias. */ | |
| 1620 while (SYMBOLP (def)) | |
| 1621 { | |
| 1622 QUIT; | |
| 1623 sym = def; | |
| 442 | 1624 tem = Fassq (sym, environment); |
| 428 | 1625 if (NILP (tem)) |
| 1626 { | |
| 1627 def = XSYMBOL (sym)->function; | |
| 1628 if (!UNBOUNDP (def)) | |
| 1629 continue; | |
| 1630 } | |
| 1631 break; | |
| 1632 } | |
| 442 | 1633 /* Right now TEM is the result from SYM in ENVIRONMENT, |
| 428 | 1634 and if TEM is nil then DEF is SYM's function definition. */ |
| 1635 if (NILP (tem)) | |
| 1636 { | |
| 442 | 1637 /* SYM is not mentioned in ENVIRONMENT. |
| 428 | 1638 Look at its function definition. */ |
| 1639 if (UNBOUNDP (def) | |
| 1640 || !CONSP (def)) | |
| 1641 /* Not defined or definition not suitable */ | |
| 1642 break; | |
| 1643 if (EQ (XCAR (def), Qautoload)) | |
| 1644 { | |
| 1645 /* 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
|
1646 tem = Felt (def, make_fixnum (4)); |
| 428 | 1647 if (EQ (tem, Qt) || EQ (tem, Qmacro)) |
| 1648 { | |
| 1649 /* Yes, load it and try again. */ | |
| 970 | 1650 /* do_autoload GCPROs both arguments */ |
| 428 | 1651 do_autoload (def, sym); |
| 1652 continue; | |
| 1653 } | |
| 1654 else | |
| 1655 break; | |
| 1656 } | |
| 1657 else if (!EQ (XCAR (def), Qmacro)) | |
| 1658 break; | |
| 1659 else expander = XCDR (def); | |
| 1660 } | |
| 1661 else | |
| 1662 { | |
| 1663 expander = XCDR (tem); | |
| 1664 if (NILP (expander)) | |
| 1665 break; | |
| 1666 } | |
| 1667 form = apply1 (expander, XCDR (form)); | |
| 1668 } | |
|
5615
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1669 |
|
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1670 unbind_to (speccount); |
|
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
1671 |
| 428 | 1672 return form; |
| 1673 } | |
| 1674 | |
| 1675 | |
| 1676 /************************************************************************/ | |
| 1677 /* Non-local exits */ | |
| 1678 /************************************************************************/ | |
| 1679 | |
| 1318 | 1680 #ifdef ERROR_CHECK_TRAPPING_PROBLEMS |
| 1681 | |
| 1682 int | |
| 1683 proper_redisplay_wrapping_in_place (void) | |
| 1684 { | |
| 1685 return !in_display | |
| 1686 || ((get_inhibit_flags () & INTERNAL_INHIBIT_ERRORS) | |
| 1687 && (get_inhibit_flags () & INTERNAL_INHIBIT_THROWS)); | |
| 1688 } | |
| 1689 | |
| 1690 static void | |
| 1691 check_proper_critical_section_nonlocal_exit_protection (void) | |
| 1692 { | |
| 1693 assert_with_message | |
| 1694 (proper_redisplay_wrapping_in_place (), | |
| 1695 "Attempted non-local exit from within redisplay without being properly wrapped"); | |
| 1696 } | |
| 1697 | |
| 1698 static void | |
| 1699 check_proper_critical_section_lisp_protection (void) | |
| 1700 { | |
| 1701 assert_with_message | |
| 1702 (proper_redisplay_wrapping_in_place (), | |
| 1703 "Attempt to call Lisp code from within redisplay without being properly wrapped"); | |
| 1704 } | |
| 1705 | |
| 1706 #endif /* ERROR_CHECK_TRAPPING_PROBLEMS */ | |
| 1707 | |
| 428 | 1708 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
|
1709 Eval BODY allowing nonlocal exits using `throw'. |
| 428 | 1710 TAG is evalled to get the tag to use. Then the BODY is executed. |
| 3577 | 1711 Within BODY, (throw TAG VAL) with same (`eq') tag exits BODY and this `catch'. |
| 428 | 1712 If no throw happens, `catch' returns the value of the last BODY form. |
| 1713 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
|
1714 |
|
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
1715 arguments: (TAG &rest BODY) |
| 428 | 1716 */ |
| 1717 (args)) | |
| 1718 { | |
| 1719 /* This function can GC */ | |
| 1720 Lisp_Object tag = Feval (XCAR (args)); | |
| 1721 Lisp_Object body = XCDR (args); | |
| 2532 | 1722 return internal_catch (tag, Fprogn, body, 0, 0, 0); |
| 428 | 1723 } |
| 1724 | |
| 1725 /* Set up a catch, then call C function FUNC on argument ARG. | |
| 1726 FUNC should return a Lisp_Object. | |
| 1727 This is how catches are done from within C code. */ | |
| 1728 | |
| 1729 Lisp_Object | |
| 1730 internal_catch (Lisp_Object tag, | |
| 1731 Lisp_Object (*func) (Lisp_Object arg), | |
| 1732 Lisp_Object arg, | |
| 853 | 1733 int * volatile threw, |
| 2532 | 1734 Lisp_Object * volatile thrown_tag, |
| 1735 Lisp_Object * volatile backtrace_before_throw) | |
| 428 | 1736 { |
| 1737 /* This structure is made part of the chain `catchlist'. */ | |
| 1738 struct catchtag c; | |
| 1739 | |
| 1740 /* Fill in the components of c, and put it on the list. */ | |
| 1741 c.next = catchlist; | |
| 1742 c.tag = tag; | |
| 853 | 1743 c.actual_tag = Qnil; |
| 2532 | 1744 c.backtrace = Qnil; |
| 428 | 1745 c.val = Qnil; |
| 1746 c.backlist = backtrace_list; | |
| 1747 #if 0 /* FSFmacs */ | |
| 1748 /* #### */ | |
| 1749 c.handlerlist = handlerlist; | |
| 1750 #endif | |
| 1751 c.lisp_eval_depth = lisp_eval_depth; | |
| 1752 c.pdlcount = specpdl_depth(); | |
| 1753 #if 0 /* FSFmacs */ | |
| 1754 c.poll_suppress_count = async_timer_suppress_count; | |
| 1755 #endif | |
| 1756 c.gcpro = gcprolist; | |
| 1757 catchlist = &c; | |
| 1758 | |
| 1759 /* Call FUNC. */ | |
| 1760 if (SETJMP (c.jmp)) | |
| 1761 { | |
| 1762 /* Throw works by a longjmp that comes right here. */ | |
| 1763 if (threw) *threw = 1; | |
| 853 | 1764 if (thrown_tag) *thrown_tag = c.actual_tag; |
| 2532 | 1765 if (backtrace_before_throw) *backtrace_before_throw = c.backtrace; |
| 428 | 1766 return c.val; |
| 1767 } | |
| 1768 c.val = (*func) (arg); | |
| 1769 if (threw) *threw = 0; | |
| 853 | 1770 if (thrown_tag) *thrown_tag = Qnil; |
| 428 | 1771 catchlist = c.next; |
| 853 | 1772 check_catchlist_sanity (); |
| 428 | 1773 return c.val; |
| 1774 } | |
| 1775 | |
| 1776 | |
| 1777 /* Unwind the specbind, catch, and handler stacks back to CATCH, and | |
| 1778 jump to that CATCH, returning VALUE as the value of that catch. | |
| 1779 | |
| 2297 | 1780 This is the guts of Fthrow and Fsignal; they differ only in the |
| 1781 way they choose the catch tag to throw to. A catch tag for a | |
| 428 | 1782 condition-case form has a TAG of Qnil. |
| 1783 | |
| 1784 Before each catch is discarded, unbind all special bindings and | |
| 1785 execute all unwind-protect clauses made above that catch. Unwind | |
| 1786 the handler stack as we go, so that the proper handlers are in | |
| 1787 effect for each unwind-protect clause we run. At the end, restore | |
| 1788 some static info saved in CATCH, and longjmp to the location | |
| 1789 specified in the | |
| 1790 | |
| 1791 This is used for correct unwinding in Fthrow and Fsignal. */ | |
| 1792 | |
| 2268 | 1793 static DECLARE_DOESNT_RETURN (unwind_to_catch (struct catchtag *, Lisp_Object, |
| 1794 Lisp_Object)); | |
| 1795 | |
| 1796 static DOESNT_RETURN | |
| 853 | 1797 unwind_to_catch (struct catchtag *c, Lisp_Object val, Lisp_Object tag) |
| 428 | 1798 { |
| 1799 REGISTER int last_time; | |
| 1800 | |
| 1801 /* Unwind the specbind, catch, and handler stacks back to CATCH | |
| 1802 Before each catch is discarded, unbind all special bindings | |
| 1803 and execute all unwind-protect clauses made above that catch. | |
| 1804 At the end, restore some static info saved in CATCH, | |
| 1805 and longjmp to the location specified. | |
| 1806 */ | |
| 1807 | |
| 1808 /* Save the value somewhere it will be GC'ed. | |
| 1809 (Can't overwrite tag slot because an unwind-protect may | |
| 1810 want to throw to this same tag, which isn't yet invalid.) */ | |
| 1811 c->val = val; | |
| 853 | 1812 c->actual_tag = tag; |
| 428 | 1813 |
| 1814 #if 0 /* FSFmacs */ | |
| 1815 /* Restore the polling-suppression count. */ | |
| 1816 set_poll_suppress_count (catch->poll_suppress_count); | |
| 1817 #endif | |
| 1818 | |
| 617 | 1819 #if 1 |
| 428 | 1820 do |
| 1821 { | |
| 1822 last_time = catchlist == c; | |
| 1823 | |
| 1824 /* Unwind the specpdl stack, and then restore the proper set of | |
| 1825 handlers. */ | |
| 771 | 1826 unbind_to (catchlist->pdlcount); |
| 428 | 1827 catchlist = catchlist->next; |
| 853 | 1828 check_catchlist_sanity (); |
| 428 | 1829 } |
| 1830 while (! last_time); | |
| 617 | 1831 #else |
| 1832 /* Former XEmacs code. This is definitely not as correct because | |
| 1833 there may be a number of catches we're unwinding, and a number | |
| 1834 of unwind-protects in the process. By not undoing the catches till | |
| 1835 the end, there may be invalid catches still current. (This would | |
| 1836 be a particular problem with code like this: | |
| 1837 | |
| 1838 (catch 'foo | |
| 1839 (call-some-code-which-does... | |
| 1840 (catch 'bar | |
| 1841 (unwind-protect | |
| 1842 (call-some-code-which-does... | |
| 1843 (catch 'bar | |
| 1844 (call-some-code-which-does... | |
| 1845 (throw 'foo nil)))) | |
| 1846 (throw 'bar nil))))) | |
| 1847 | |
| 1848 This would try to throw to the inner (catch 'bar)! | |
| 1849 | |
| 1850 --ben | |
| 1851 */ | |
| 428 | 1852 /* Unwind the specpdl stack */ |
| 771 | 1853 unbind_to (c->pdlcount); |
| 428 | 1854 catchlist = c->next; |
| 853 | 1855 check_catchlist_sanity (); |
| 617 | 1856 #endif /* Former code */ |
| 428 | 1857 |
| 1204 | 1858 UNWIND_GCPRO_TO (c->gcpro); |
| 1292 | 1859 if (profiling_active) |
| 1860 { | |
| 1861 while (backtrace_list != c->backlist) | |
| 1862 { | |
| 1863 profile_record_unwind (backtrace_list); | |
| 1864 backtrace_list = backtrace_list->next; | |
| 1865 } | |
| 1866 } | |
| 1867 else | |
| 1868 backtrace_list = c->backlist; | |
| 428 | 1869 lisp_eval_depth = c->lisp_eval_depth; |
| 1870 | |
| 442 | 1871 #ifdef DEFEND_AGAINST_THROW_RECURSION |
| 428 | 1872 throw_level = 0; |
| 1873 #endif | |
| 1874 LONGJMP (c->jmp, 1); | |
| 1875 } | |
| 1876 | |
|
5348
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1877 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
|
1878 Lisp_Object, Lisp_Object)); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1879 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1880 DOESNT_RETURN |
|
5348
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1881 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
|
1882 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
|
1883 { |
| 428 | 1884 /* If bomb_out_p is t, this is being called from Fsignal as a |
| 1885 "last resort" when there is no handler for this error and | |
| 1886 the debugger couldn't be invoked, so we are throwing to | |
| 3025 | 1887 `top-level'. If this tag doesn't exist (happens during the |
| 428 | 1888 initialization stages) we would get in an infinite recursive |
| 1889 Fsignal/Fthrow loop, so instead we bomb out to the | |
| 1890 really-early-error-handler. | |
| 1891 | |
| 1892 Note that in fact the only time that the "last resort" | |
| 3025 | 1893 occurs is when there's no catch for `top-level' -- the |
| 1894 `top-level' catch and the catch-all error handler are | |
| 428 | 1895 established at the same time, in initial_command_loop/ |
| 1896 top_level_1. | |
| 1897 | |
| 853 | 1898 [[#### Fix this horrifitude!]] |
| 1899 | |
| 1900 I don't think this is horrifitude, just defensive programming. --ben | |
| 428 | 1901 */ |
| 1902 | |
| 1903 while (1) | |
| 1904 { | |
| 1905 REGISTER struct catchtag *c; | |
| 1906 | |
| 1907 #if 0 /* FSFmacs */ | |
| 1908 if (!NILP (tag)) /* #### */ | |
| 1909 #endif | |
| 1910 for (c = catchlist; c; c = c->next) | |
| 1911 { | |
| 2532 | 1912 if (EQ (c->tag, Vcatch_everything_tag)) |
| 1913 c->backtrace = maybe_get_trapping_problems_backtrace (); | |
| 853 | 1914 if (EQ (c->tag, tag) || EQ (c->tag, Vcatch_everything_tag)) |
| 1915 unwind_to_catch (c, val, tag); | |
| 428 | 1916 } |
| 1917 if (!bomb_out_p) | |
| 1918 tag = Fsignal (Qno_catch, list2 (tag, val)); | |
| 1919 else | |
| 1920 call1 (Qreally_early_error_handler, Fcons (sig, data)); | |
| 1921 } | |
| 1922 } | |
|
5348
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1923 |
|
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1924 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
|
1925 Lisp_Object, Lisp_Object)); |
|
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1926 |
|
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1927 DOESNT_RETURN |
|
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1928 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
|
1929 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
|
1930 { |
|
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1931 #ifdef DEFEND_AGAINST_THROW_RECURSION |
|
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1932 /* 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
|
1933 assert (++throw_level <= 20); |
|
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1934 #endif |
|
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1935 |
|
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1936 #ifdef ERROR_CHECK_TRAPPING_PROBLEMS |
|
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1937 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
|
1938 #endif |
|
39304a35b6b3
Don't commit suicide when an X device dies.
Mike Sperber <sperber@deinprogramm.de>
parents:
5307
diff
changeset
|
1939 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
|
1940 } |
| 428 | 1941 |
| 1942 /* See above, where CATCHLIST is defined, for a description of how | |
| 1943 Fthrow() works. | |
| 1944 | |
| 1945 Fthrow() is also called by Fsignal(), to do a non-local jump | |
| 1946 back to the appropriate condition-case handler after (maybe) | |
| 1947 the debugger is entered. In that case, TAG is the value | |
| 1948 of Vcondition_handlers that was in place just after the | |
| 1949 condition-case handler was set up. The car of this will be | |
| 1950 some data referring to the handler: Its car will be Qunbound | |
| 1951 (thus, this tag can never be generated by Lisp code), and | |
| 1952 its CDR will be the HANDLERS argument to condition_case_1() | |
| 1953 (either Qerror, Qt, or a list of handlers as in `condition-case'). | |
| 1954 This works fine because Fthrow() does not care what TAG was | |
| 1955 passed to it: it just looks up the catch list for something | |
| 1956 that is EQ() to TAG. When it finds it, it will longjmp() | |
| 1957 back to the place that established the catch (in this case, | |
| 1958 condition_case_1). See below for more info. | |
| 1959 */ | |
| 1960 | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1961 DEFUN_NORETURN ("throw", Fthrow, 2, UNEVALLED, 0, /* |
| 444 | 1962 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
|
1963 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1964 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
|
1965 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
|
1966 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1967 arguments: (TAG VALUE) |
| 428 | 1968 */ |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1969 (args)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1970 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1971 int nargs; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1972 Lisp_Object tag, value; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1973 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1974 GET_LIST_LENGTH (args, nargs); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1975 if (nargs != 2) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1976 { |
|
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
1977 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
|
1978 } |
|
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 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
|
1981 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1982 value = Feval (XCAR (XCDR (args))); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
1983 |
| 444 | 1984 throw_or_bomb_out (tag, value, 0, Qnil, Qnil); /* Doesn't return */ |
| 2268 | 1985 RETURN_NOT_REACHED (Qnil); |
| 428 | 1986 } |
| 1987 | |
| 1988 DEFUN ("unwind-protect", Funwind_protect, 1, UNEVALLED, 0, /* | |
| 1989 Do BODYFORM, protecting with UNWINDFORMS. | |
| 1990 If BODYFORM completes normally, its value is returned | |
| 1991 after executing the UNWINDFORMS. | |
| 1992 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
|
1993 |
|
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
1994 arguments: (BODYFORM &rest UNWINDFORMS) |
| 428 | 1995 */ |
| 1996 (args)) | |
| 1997 { | |
| 1998 /* This function can GC */ | |
| 1999 int speccount = specpdl_depth(); | |
| 2000 | |
| 2001 record_unwind_protect (Fprogn, XCDR (args)); | |
| 771 | 2002 return unbind_to_1 (speccount, Feval (XCAR (args))); |
| 428 | 2003 } |
| 2004 | |
| 2005 | |
| 2006 /************************************************************************/ | |
| 1292 | 2007 /* Trapping errors */ |
| 428 | 2008 /************************************************************************/ |
| 2009 | |
| 2010 static Lisp_Object | |
| 2011 condition_bind_unwind (Lisp_Object loser) | |
| 2012 { | |
| 617 | 2013 /* There is no problem freeing stuff here like there is in |
| 2014 condition_case_unwind(), because there are no outside pointers | |
| 2015 (like the tag below in the catchlist) pointing to the objects. */ | |
| 853 | 2016 |
| 428 | 2017 /* ((handler-fun . handler-args) ... other handlers) */ |
| 2018 Lisp_Object tem = XCAR (loser); | |
| 853 | 2019 int first = 1; |
| 428 | 2020 |
| 2021 while (CONSP (tem)) | |
| 2022 { | |
| 853 | 2023 Lisp_Object victim = tem; |
| 2024 if (first && OPAQUE_PTRP (XCAR (victim))) | |
| 2025 free_opaque_ptr (XCAR (victim)); | |
| 2026 first = 0; | |
| 2027 tem = XCDR (victim); | |
| 428 | 2028 free_cons (victim); |
| 2029 } | |
| 2030 | |
| 2031 if (EQ (loser, Vcondition_handlers)) /* may have been rebound to some tail */ | |
| 853 | 2032 Vcondition_handlers = XCDR (loser); |
| 2033 | |
| 2034 free_cons (loser); | |
| 428 | 2035 return Qnil; |
| 2036 } | |
| 2037 | |
| 2038 static Lisp_Object | |
| 2039 condition_case_unwind (Lisp_Object loser) | |
| 2040 { | |
| 2041 /* ((<unbound> . clauses) ... other handlers */ | |
| 617 | 2042 /* NO! Doing this now leaves the tag deleted in a still-active |
| 2043 catch. With the recent changes to unwind_to_catch(), the | |
| 2044 evil situation might not happen any more; it certainly could | |
| 2045 happen before because it did. But it's very precarious to rely | |
| 2046 on something like this. #### Instead we should rewrite, adopting | |
| 2047 the FSF's mechanism with a struct handler instead of | |
| 2048 Vcondition_handlers; then we have NO Lisp-object structures used | |
| 2049 to hold all of the values, and there's no possibility either of | |
| 2050 crashes from freeing objects too quickly, or objects not getting | |
| 2051 freed and hanging around till the next GC. | |
| 2052 | |
| 2053 In practice, the extra consing here should not matter because | |
| 2054 it only happens when we throw past the condition-case, which almost | |
| 2055 always is the result of an error. Most of the time, there will be | |
| 2056 no error, and we will free the objects below in the main function. | |
| 2057 | |
| 2058 --ben | |
| 2059 | |
| 2060 DO NOT DO: free_cons (XCAR (loser)); | |
| 2061 */ | |
| 2062 | |
| 428 | 2063 if (EQ (loser, Vcondition_handlers)) /* may have been rebound to some tail */ |
| 617 | 2064 Vcondition_handlers = XCDR (loser); |
| 2065 | |
| 2066 /* DO NOT DO: free_cons (loser); */ | |
| 428 | 2067 return Qnil; |
| 2068 } | |
| 2069 | |
| 2070 /* Split out from condition_case_3 so that primitive C callers | |
| 2071 don't have to cons up a lisp handler form to be evaluated. */ | |
| 2072 | |
| 2073 /* Call a function BFUN of one argument BARG, trapping errors as | |
| 2074 specified by HANDLERS. If no error occurs that is indicated by | |
| 2075 HANDLERS as something to be caught, the return value of this | |
| 2076 function is the return value from BFUN. If such an error does | |
| 2077 occur, HFUN is called, and its return value becomes the | |
| 2078 return value of condition_case_1(). The second argument passed | |
| 2079 to HFUN will always be HARG. The first argument depends on | |
| 2080 HANDLERS: | |
| 2081 | |
| 2082 If HANDLERS is Qt, all errors (this includes QUIT, but not | |
| 2083 non-local exits with `throw') cause HFUN to be invoked, and VAL | |
| 2084 (the first argument to HFUN) is a cons (SIG . DATA) of the | |
| 2085 arguments passed to `signal'. The debugger is not invoked even if | |
| 2086 `debug-on-error' was set. | |
| 2087 | |
| 2088 A HANDLERS value of Qerror is the same as Qt except that the | |
| 2089 debugger is invoked if `debug-on-error' was set. | |
| 2090 | |
| 2091 Otherwise, HANDLERS should be a list of lists (CONDITION-NAME BODY ...) | |
| 2092 exactly as in `condition-case', and errors will be trapped | |
| 2093 as indicated in HANDLERS. VAL (the first argument to HFUN) will | |
| 2094 be a cons whose car is the cons (SIG . DATA) and whose CDR is the | |
| 2095 list (BODY ...) from the appropriate slot in HANDLERS. | |
| 2096 | |
| 2097 This function pushes HANDLERS onto the front of Vcondition_handlers | |
| 2098 (actually with a Qunbound marker as well -- see Fthrow() above | |
| 2099 for why), establishes a catch whose tag is this new value of | |
| 2100 Vcondition_handlers, and calls BFUN. When Fsignal() is called, | |
| 2101 it calls Fthrow(), setting TAG to this same new value of | |
| 2102 Vcondition_handlers and setting VAL to the same thing that will | |
| 2103 be passed to HFUN, as above. Fthrow() longjmp()s back to the | |
| 2104 jump point we just established, and we in turn just call the | |
| 2105 HFUN and return its value. | |
| 2106 | |
| 2107 For a real condition-case, HFUN will always be | |
| 2108 run_condition_case_handlers() and HARG is the argument VAR | |
| 2109 to condition-case. That function just binds VAR to the cons | |
| 2110 (SIG . DATA) that is the CAR of VAL, and calls the handler | |
| 2111 (BODY ...) that is the CDR of VAL. Note that before calling | |
| 2112 Fthrow(), Fsignal() restored Vcondition_handlers to the value | |
| 2113 it had *before* condition_case_1() was called. This maintains | |
| 2114 consistency (so that the state of things at exit of | |
| 2115 condition_case_1() is the same as at entry), and implies | |
| 2116 that the handler can signal the same error again (possibly | |
| 2117 after processing of its own), without getting in an infinite | |
| 2118 loop. */ | |
| 2119 | |
| 2120 Lisp_Object | |
| 2121 condition_case_1 (Lisp_Object handlers, | |
| 2122 Lisp_Object (*bfun) (Lisp_Object barg), | |
| 2123 Lisp_Object barg, | |
| 2124 Lisp_Object (*hfun) (Lisp_Object val, Lisp_Object harg), | |
| 2125 Lisp_Object harg) | |
| 2126 { | |
| 2127 int speccount = specpdl_depth(); | |
| 2128 struct catchtag c; | |
| 617 | 2129 struct gcpro gcpro1, gcpro2, gcpro3; |
| 428 | 2130 |
| 2131 #if 0 /* FSFmacs */ | |
| 2132 c.tag = Qnil; | |
| 2133 #else | |
| 2134 /* Do consing now so out-of-memory error happens up front */ | |
| 2135 /* (unbound . stuff) is a special condition-case kludge marker | |
| 2136 which is known specially by Fsignal. | |
| 617 | 2137 [[ This is an abomination, but to fix it would require either |
| 428 | 2138 making condition_case cons (a union of the conditions of the clauses) |
| 617 | 2139 or changing the byte-compiler output (no thanks).]] |
| 2140 | |
| 2141 The above comment is clearly wrong. FSF does not do it this way | |
| 2142 and did not change the byte-compiler output. Instead they use a | |
| 2143 `struct handler' to hold the various values (in place of our | |
| 2144 Vcondition_handlers) and chain them together, with pointers from | |
| 2145 the `struct catchtag' to the `struct handler'. We should perhaps | |
| 2146 consider moving to something similar, but not before I merge my | |
| 2147 stderr-proc workspace, which contains changes to these | |
| 2148 functions. --ben */ | |
| 428 | 2149 c.tag = noseeum_cons (noseeum_cons (Qunbound, handlers), |
| 2150 Vcondition_handlers); | |
| 2151 #endif | |
| 2152 c.val = Qnil; | |
| 853 | 2153 c.actual_tag = Qnil; |
| 2532 | 2154 c.backtrace = Qnil; |
| 428 | 2155 c.backlist = backtrace_list; |
| 2156 #if 0 /* FSFmacs */ | |
| 2157 /* #### */ | |
| 2158 c.handlerlist = handlerlist; | |
| 2159 #endif | |
| 2160 c.lisp_eval_depth = lisp_eval_depth; | |
| 2161 c.pdlcount = specpdl_depth(); | |
| 2162 #if 0 /* FSFmacs */ | |
| 2163 c.poll_suppress_count = async_timer_suppress_count; | |
| 2164 #endif | |
| 2165 c.gcpro = gcprolist; | |
| 2166 /* #### FSFmacs does the following statement *after* the setjmp(). */ | |
| 2167 c.next = catchlist; | |
| 2168 | |
| 2169 if (SETJMP (c.jmp)) | |
| 2170 { | |
| 2171 /* throw does ungcpro, etc */ | |
| 2172 return (*hfun) (c.val, harg); | |
| 2173 } | |
| 2174 | |
| 2175 record_unwind_protect (condition_case_unwind, c.tag); | |
| 2176 | |
| 2177 catchlist = &c; | |
| 2178 #if 0 /* FSFmacs */ | |
| 2179 h.handler = handlers; | |
| 2180 h.var = Qnil; | |
| 2181 h.next = handlerlist; | |
| 2182 h.tag = &c; | |
| 2183 handlerlist = &h; | |
| 2184 #else | |
| 2185 Vcondition_handlers = c.tag; | |
| 2186 #endif | |
| 2187 GCPRO1 (harg); /* Somebody has to gc-protect */ | |
| 2188 c.val = ((*bfun) (barg)); | |
| 2189 UNGCPRO; | |
| 617 | 2190 |
| 2191 /* Once we change `catchlist' below, the stuff in c will not be GCPRO'd. */ | |
| 2192 GCPRO3 (harg, c.val, c.tag); | |
| 2193 | |
| 428 | 2194 catchlist = c.next; |
| 853 | 2195 check_catchlist_sanity (); |
| 617 | 2196 /* Note: The unbind also resets Vcondition_handlers. Maybe we should |
| 2197 delete this here. */ | |
| 428 | 2198 Vcondition_handlers = XCDR (c.tag); |
| 771 | 2199 unbind_to (speccount); |
| 617 | 2200 |
| 2201 UNGCPRO; | |
| 2202 /* free the conses *after* the unbind, because the unbind will run | |
| 2203 condition_case_unwind above. */ | |
| 853 | 2204 free_cons (XCAR (c.tag)); |
| 2205 free_cons (c.tag); | |
| 617 | 2206 return c.val; |
| 428 | 2207 } |
| 2208 | |
| 2209 static Lisp_Object | |
| 2210 run_condition_case_handlers (Lisp_Object val, Lisp_Object var) | |
| 2211 { | |
| 2212 /* This function can GC */ | |
| 2213 #if 0 /* FSFmacs */ | |
| 2214 if (!NILP (h.var)) | |
| 2215 specbind (h.var, c.val); | |
| 2216 val = Fprogn (Fcdr (h.chosen_clause)); | |
| 2217 | |
| 2218 /* Note that this just undoes the binding of h.var; whoever | |
| 2219 longjmp()ed to us unwound the stack to c.pdlcount before | |
| 2220 throwing. */ | |
| 771 | 2221 unbind_to (c.pdlcount); |
| 428 | 2222 return val; |
| 2223 #else | |
| 2224 int speccount; | |
| 2225 | |
| 2226 CHECK_TRUE_LIST (val); | |
| 2227 if (NILP (var)) | |
| 2228 return Fprogn (Fcdr (val)); /* tail call */ | |
| 2229 | |
| 2230 speccount = specpdl_depth(); | |
| 2231 specbind (var, Fcar (val)); | |
| 2232 val = Fprogn (Fcdr (val)); | |
| 771 | 2233 return unbind_to_1 (speccount, val); |
| 428 | 2234 #endif |
| 2235 } | |
| 2236 | |
| 2237 /* Here for bytecode to call non-consfully. This is exactly like | |
| 2238 condition-case except that it takes three arguments rather | |
| 2239 than a single list of arguments. */ | |
| 2240 Lisp_Object | |
| 2241 condition_case_3 (Lisp_Object bodyform, Lisp_Object var, Lisp_Object handlers) | |
| 2242 { | |
| 2243 /* This function can GC */ | |
| 2244 EXTERNAL_LIST_LOOP_2 (handler, handlers) | |
| 2245 { | |
| 2246 if (NILP (handler)) | |
| 2247 ; | |
| 2248 else if (CONSP (handler)) | |
| 2249 { | |
| 2250 Lisp_Object conditions = XCAR (handler); | |
| 2251 /* CONDITIONS must a condition name or a list of condition names */ | |
| 2252 if (SYMBOLP (conditions)) | |
| 2253 ; | |
| 2254 else | |
| 2255 { | |
| 2256 EXTERNAL_LIST_LOOP_2 (condition, conditions) | |
| 2257 if (!SYMBOLP (condition)) | |
| 2258 goto invalid_condition_handler; | |
| 2259 } | |
| 2260 } | |
| 2261 else | |
| 2262 { | |
| 2263 invalid_condition_handler: | |
| 563 | 2264 sferror ("Invalid condition handler", handler); |
| 428 | 2265 } |
| 2266 } | |
| 2267 | |
| 2268 CHECK_SYMBOL (var); | |
| 2269 | |
| 2270 return condition_case_1 (handlers, | |
| 2271 Feval, bodyform, | |
| 2272 run_condition_case_handlers, | |
| 2273 var); | |
| 2274 } | |
| 2275 | |
| 2276 DEFUN ("condition-case", Fcondition_case, 2, UNEVALLED, 0, /* | |
| 2277 Regain control when an error is signalled. | |
| 2278 Usage looks like (condition-case VAR BODYFORM HANDLERS...). | |
| 2279 Executes BODYFORM and returns its value if no error happens. | |
| 2280 Each element of HANDLERS looks like (CONDITION-NAME BODY...) | |
| 2281 where the BODY is made of Lisp expressions. | |
| 2282 | |
| 771 | 2283 A typical usage of `condition-case' looks like this: |
| 2284 | |
| 2285 (condition-case nil | |
| 2286 ;; you need a progn here if you want more than one statement ... | |
| 2287 (progn | |
| 2288 (do-something) | |
| 2289 (do-something-else)) | |
| 2290 (error | |
| 2291 (issue-warning-or) | |
| 2292 ;; but strangely, you don't need one here. | |
| 2293 (return-a-value-etc) | |
| 2294 )) | |
| 2295 | |
| 428 | 2296 A handler is applicable to an error if CONDITION-NAME is one of the |
| 2297 error's condition names. If an error happens, the first applicable | |
| 2298 handler is run. As a special case, a CONDITION-NAME of t matches | |
| 2299 all errors, even those without the `error' condition name on them | |
| 2300 \(e.g. `quit'). | |
| 2301 | |
| 2302 The car of a handler may be a list of condition names | |
| 2303 instead of a single condition name. | |
| 2304 | |
| 2305 When a handler handles an error, | |
| 2306 control returns to the condition-case and the handler BODY... is executed | |
| 2307 with VAR bound to (SIGNALED-CONDITIONS . SIGNAL-DATA). | |
| 2308 VAR may be nil; then you do not get access to the signal information. | |
| 2309 | |
| 2310 The value of the last BODY form is returned from the condition-case. | |
| 2311 See also the function `signal' for more info. | |
| 2312 | |
| 2313 Note that at the time the condition handler is invoked, the Lisp stack | |
| 2314 and the current catches, condition-cases, and bindings have all been | |
| 2315 popped back to the state they were in just before the call to | |
| 2316 `condition-case'. This means that resignalling the error from | |
| 2317 within the handler will not result in an infinite loop. | |
| 2318 | |
| 2319 If you want to establish an error handler that is called with the | |
| 2320 Lisp stack, bindings, etc. as they were when `signal' was called, | |
| 2321 rather than when the handler was set, use `call-with-condition-handler'. | |
| 2322 */ | |
| 2323 (args)) | |
| 2324 { | |
| 2325 /* This function can GC */ | |
| 2326 Lisp_Object var = XCAR (args); | |
| 2327 Lisp_Object bodyform = XCAR (XCDR (args)); | |
| 2328 Lisp_Object handlers = XCDR (XCDR (args)); | |
| 2329 return condition_case_3 (bodyform, var, handlers); | |
| 2330 } | |
| 2331 | |
| 2332 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
|
2333 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
|
2334 |
|
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
2335 This function is similar to `condition-case', but HANDLER is invoked |
| 428 | 2336 with the same environment (Lisp stack, bindings, catches, condition-cases) |
| 2337 that was current when `signal' was called, rather than when the handler | |
| 2338 was established. | |
| 2339 | |
| 2340 HANDLER should be a function of one argument, which is a cons of the args | |
| 2341 \(SIG . DATA) that were passed to `signal'. It is invoked whenever | |
| 2342 `signal' is called (this differs from `condition-case', which allows | |
| 2343 you to specify which errors are trapped). If the handler function | |
| 2344 returns, `signal' continues as if the handler were never invoked. | |
| 2345 \(It continues to look for handlers established earlier than this one, | |
| 2346 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
|
2347 |
|
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
2348 arguments: (HANDLER FUNCTION &rest ARGS) |
| 428 | 2349 */ |
| 2350 (int nargs, Lisp_Object *args)) /* Note! Args side-effected! */ | |
| 2351 { | |
| 2352 /* This function can GC */ | |
| 2353 int speccount = specpdl_depth(); | |
| 2354 Lisp_Object tem; | |
| 2355 | |
| 853 | 2356 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
|
2357 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
|
2358 && (NILP (tem) || 1 <= XFIXNUM (tem)))) |
| 853 | 2359 invalid_argument ("Must be function of one argument", args[0]); |
| 2360 | |
| 2361 /* (handler-fun . handler-args) but currently there are no handler-args */ | |
| 428 | 2362 tem = noseeum_cons (list1 (args[0]), Vcondition_handlers); |
| 2363 record_unwind_protect (condition_bind_unwind, tem); | |
| 2364 Vcondition_handlers = tem; | |
| 2365 | |
| 2366 /* Caller should have GC-protected args */ | |
| 771 | 2367 return unbind_to_1 (speccount, Ffuncall (nargs - 1, args + 1)); |
| 428 | 2368 } |
| 2369 | |
| 853 | 2370 /* This is the C version of the above function. It calls FUN, passing it |
| 2371 ARG, first setting up HANDLER to catch signals in the environment in | |
| 2372 which they were signalled. (HANDLER is only invoked if there was no | |
| 2373 handler (either from condition-case or call-with-condition-handler) set | |
| 2374 later on that handled the signal; therefore, this is a real error. | |
| 2375 | |
| 2376 HANDLER is invoked with three arguments: the ERROR-SYMBOL and DATA as | |
| 2377 passed to `signal', and HANDLER_ARG. Originally I made HANDLER_ARG and | |
| 2378 ARG be void * to facilitate passing structures, but I changed to | |
| 2379 Lisp_Objects because all the other C interfaces to catch/condition-case/etc. | |
| 2380 take Lisp_Objects, and it is easy enough to use make_opaque_ptr() et al. | |
| 2381 to convert between Lisp_Objects and structure pointers. */ | |
| 2382 | |
| 2383 Lisp_Object | |
| 2384 call_with_condition_handler (Lisp_Object (*handler) (Lisp_Object, Lisp_Object, | |
| 2385 Lisp_Object), | |
| 2386 Lisp_Object handler_arg, | |
| 2387 Lisp_Object (*fun) (Lisp_Object), | |
| 2388 Lisp_Object arg) | |
| 2389 { | |
| 2390 /* This function can GC */ | |
| 1111 | 2391 int speccount = specpdl_depth (); |
| 853 | 2392 Lisp_Object tem; |
| 2393 | |
| 2394 /* ((handler-fun . (handler-arg . nil)) ... ) */ | |
| 1111 | 2395 tem = noseeum_cons (noseeum_cons (make_opaque_ptr ((void *) handler), |
| 853 | 2396 noseeum_cons (handler_arg, Qnil)), |
| 2397 Vcondition_handlers); | |
| 2398 record_unwind_protect (condition_bind_unwind, tem); | |
| 2399 Vcondition_handlers = tem; | |
| 2400 | |
| 2401 return unbind_to_1 (speccount, (*fun) (arg)); | |
| 2402 } | |
| 2403 | |
| 428 | 2404 static int |
| 2405 condition_type_p (Lisp_Object type, Lisp_Object conditions) | |
| 2406 { | |
| 2407 if (EQ (type, Qt)) | |
| 2408 /* (condition-case c # (t c)) catches -all- signals | |
| 2409 * Use with caution! */ | |
| 2410 return 1; | |
| 2411 | |
| 2412 if (SYMBOLP (type)) | |
| 2413 return !NILP (Fmemq (type, conditions)); | |
| 2414 | |
| 2415 for (; CONSP (type); type = XCDR (type)) | |
| 2416 if (!NILP (Fmemq (XCAR (type), conditions))) | |
| 2417 return 1; | |
| 2418 | |
| 2419 return 0; | |
| 2420 } | |
| 2421 | |
| 2422 static Lisp_Object | |
| 2423 return_from_signal (Lisp_Object value) | |
| 2424 { | |
| 2425 #if 1 | |
| 2426 /* Most callers are not prepared to handle gc if this | |
| 2427 returns. So, since this feature is not very useful, | |
| 2428 take it out. */ | |
| 2429 /* Have called debugger; return value to signaller */ | |
| 2430 return value; | |
| 2431 #else /* But the reality is that that stinks, because: */ | |
| 2432 /* GACK!!! Really want some way for debug-on-quit errors | |
| 2433 to be continuable!! */ | |
| 563 | 2434 signal_error (Qunimplemented, |
| 2435 "Returning a value from an error is no longer supported", | |
| 2436 Qunbound); | |
| 428 | 2437 #endif |
| 2438 } | |
| 2439 | |
| 2440 | |
| 2441 /************************************************************************/ | |
| 2442 /* the workhorse error-signaling function */ | |
| 2443 /************************************************************************/ | |
| 2444 | |
| 853 | 2445 /* This exists only for debugging purposes, as a place to put a breakpoint |
| 2446 that won't get signalled for errors occurring when | |
| 2447 call_with_suspended_errors() was invoked. */ | |
| 2448 | |
| 872 | 2449 /* Don't make static or it might be compiled away */ |
| 2450 void signal_1 (void); | |
| 2451 | |
| 2452 void | |
| 853 | 2453 signal_1 (void) |
| 2454 { | |
| 2455 } | |
| 2456 | |
| 428 | 2457 /* #### This function has not been synched with FSF. It diverges |
| 2458 significantly. */ | |
| 2459 | |
| 853 | 2460 /* The simplest external error function: it would be called |
| 2461 signal_continuable_error() in the terminology below, but it's | |
| 2462 Lisp-callable. */ | |
| 2463 | |
| 2464 DEFUN ("signal", Fsignal, 2, 2, 0, /* | |
| 2465 Signal a continuable error. Args are ERROR-SYMBOL, and associated DATA. | |
| 2466 An error symbol is a symbol defined using `define-error'. | |
| 2467 DATA should be a list. Its elements are printed as part of the error message. | |
| 2468 If the signal is handled, DATA is made available to the handler. | |
| 2469 See also the function `signal-error', and the functions to handle errors: | |
| 2470 `condition-case' and `call-with-condition-handler'. | |
| 2471 | |
| 2472 Note that this function can return, if the debugger is invoked and the | |
| 2473 user invokes the "return from signal" option. | |
| 2474 */ | |
| 2475 (error_symbol, data)) | |
| 428 | 2476 { |
| 2477 /* This function can GC */ | |
| 853 | 2478 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; |
| 2479 Lisp_Object conditions = Qnil; | |
| 2480 Lisp_Object handlers = Qnil; | |
| 428 | 2481 /* signal_call_debugger() could get called more than once |
| 2482 (once when a call-with-condition-handler is about to | |
| 2483 be dealt with, and another when a condition-case handler | |
| 2484 is about to be invoked). So make sure the debugger and/or | |
| 2485 stack trace aren't done more than once. */ | |
| 2486 int stack_trace_displayed = 0; | |
| 2487 int debugger_entered = 0; | |
| 853 | 2488 |
| 2489 /* Fsignal() is one of these functions that's called all the time | |
| 2490 with newly-created Lisp objects. We allow this; but we must GC- | |
| 2491 protect the objects because all sorts of weird stuff could | |
| 2492 happen. */ | |
| 2493 | |
| 2494 GCPRO4 (conditions, handlers, error_symbol, data); | |
| 2495 | |
| 2496 if (!(inhibit_flags & CALL_WITH_SUSPENDED_ERRORS)) | |
| 2497 signal_1 (); | |
| 428 | 2498 |
| 2499 if (!initialized) | |
| 2500 { | |
| 2501 /* who knows how much has been initialized? Safest bet is | |
| 2502 just to bomb out immediately. */ | |
| 771 | 2503 stderr_out ("Error before initialization is complete!\n"); |
| 2500 | 2504 ABORT (); |
| 428 | 2505 } |
| 2506 | |
| 3092 | 2507 #ifndef NEW_GC |
| 1123 | 2508 assert (!gc_in_progress); |
| 3092 | 2509 #endif /* not NEW_GC */ |
| 1123 | 2510 |
| 2511 /* We abort if in_display and we are not protected, as garbage | |
| 2512 collections and non-local exits will invariably be fatal, but in | |
| 2513 messy, difficult-to-debug ways. See enter_redisplay_critical_section(). | |
| 2514 */ | |
| 2515 | |
| 1318 | 2516 #ifdef ERROR_CHECK_TRAPPING_PROBLEMS |
| 1123 | 2517 check_proper_critical_section_nonlocal_exit_protection (); |
| 1318 | 2518 #endif |
| 428 | 2519 |
| 853 | 2520 conditions = Fget (error_symbol, Qerror_conditions, Qnil); |
| 428 | 2521 |
| 2522 for (handlers = Vcondition_handlers; | |
| 2523 CONSP (handlers); | |
| 2524 handlers = XCDR (handlers)) | |
| 2525 { | |
| 2526 Lisp_Object handler_fun = XCAR (XCAR (handlers)); | |
| 2527 Lisp_Object handler_data = XCDR (XCAR (handlers)); | |
| 2528 Lisp_Object outer_handlers = XCDR (handlers); | |
| 2529 | |
| 2530 if (!UNBOUNDP (handler_fun)) | |
| 2531 { | |
| 2532 /* call-with-condition-handler */ | |
| 2533 Lisp_Object tem; | |
| 2534 Lisp_Object all_handlers = Vcondition_handlers; | |
| 2535 struct gcpro ngcpro1; | |
| 2536 NGCPRO1 (all_handlers); | |
| 2537 Vcondition_handlers = outer_handlers; | |
| 2538 | |
| 853 | 2539 tem = signal_call_debugger (conditions, error_symbol, data, |
| 428 | 2540 outer_handlers, 1, |
| 2541 &stack_trace_displayed, | |
| 2542 &debugger_entered); | |
| 2543 if (!UNBOUNDP (tem)) | |
| 2544 RETURN_NUNGCPRO (return_from_signal (tem)); | |
| 2545 | |
| 853 | 2546 if (OPAQUE_PTRP (handler_fun)) |
| 2547 { | |
| 2548 if (NILP (handler_data)) | |
| 2549 { | |
| 2550 Lisp_Object (*hfun) (Lisp_Object, Lisp_Object) = | |
| 2551 (Lisp_Object (*) (Lisp_Object, Lisp_Object)) | |
| 2552 (get_opaque_ptr (handler_fun)); | |
| 2553 | |
| 2554 tem = (*hfun) (error_symbol, data); | |
| 2555 } | |
| 2556 else | |
| 2557 { | |
| 2558 Lisp_Object (*hfun) (Lisp_Object, Lisp_Object, Lisp_Object) = | |
| 2559 (Lisp_Object (*) (Lisp_Object, Lisp_Object, Lisp_Object)) | |
| 2560 (get_opaque_ptr (handler_fun)); | |
| 2561 | |
| 2562 assert (NILP (XCDR (handler_data))); | |
| 2563 tem = (*hfun) (error_symbol, data, XCAR (handler_data)); | |
| 2564 } | |
| 2565 } | |
| 2566 else | |
| 2567 { | |
| 2568 tem = Fcons (error_symbol, data); | |
| 2569 if (NILP (handler_data)) | |
| 2570 tem = call1 (handler_fun, tem); | |
| 2571 else | |
| 2572 { | |
| 2573 /* (This code won't be used (for now?).) */ | |
| 2574 struct gcpro nngcpro1; | |
| 2575 Lisp_Object args[3]; | |
| 2576 NNGCPRO1 (args[0]); | |
| 2577 nngcpro1.nvars = 3; | |
| 2578 args[0] = handler_fun; | |
| 2579 args[1] = tem; | |
| 2580 args[2] = handler_data; | |
| 2581 nngcpro1.var = args; | |
| 2582 tem = Fapply (3, args); | |
| 2583 NNUNGCPRO; | |
| 2584 } | |
| 2585 } | |
| 428 | 2586 NUNGCPRO; |
| 2587 #if 0 | |
| 2588 if (!EQ (tem, Qsignal)) | |
| 2589 return return_from_signal (tem); | |
| 2590 #endif | |
| 2591 /* If handler didn't throw, try another handler */ | |
| 2592 Vcondition_handlers = all_handlers; | |
| 2593 } | |
| 2594 | |
| 2595 /* It's a condition-case handler */ | |
| 2596 | |
| 2597 /* t is used by handlers for all conditions, set up by C code. | |
| 2598 * debugger is not called even if debug_on_error */ | |
| 2599 else if (EQ (handler_data, Qt)) | |
| 2600 { | |
| 2601 UNGCPRO; | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
2602 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
|
2603 0, Qnil, Qnil); |
| 428 | 2604 } |
| 2605 /* `error' is used similarly to the way `t' is used, but in | |
| 2606 addition it invokes the debugger if debug_on_error. | |
| 2607 This is normally used for the outer command-loop error | |
| 2608 handler. */ | |
| 2609 else if (EQ (handler_data, Qerror)) | |
| 2610 { | |
| 853 | 2611 Lisp_Object tem = signal_call_debugger (conditions, error_symbol, |
| 2612 data, | |
| 428 | 2613 outer_handlers, 0, |
| 2614 &stack_trace_displayed, | |
| 2615 &debugger_entered); | |
| 2616 | |
| 2617 UNGCPRO; | |
| 2618 if (!UNBOUNDP (tem)) | |
| 2619 return return_from_signal (tem); | |
| 2620 | |
| 853 | 2621 tem = Fcons (error_symbol, data); |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
2622 throw_or_bomb_out (handlers, tem, 0, Qnil, Qnil); |
| 428 | 2623 } |
| 2624 else | |
| 2625 { | |
| 2626 /* handler established by real (Lisp) condition-case */ | |
| 2627 Lisp_Object h; | |
| 2628 | |
| 2629 for (h = handler_data; CONSP (h); h = Fcdr (h)) | |
| 2630 { | |
| 2631 Lisp_Object clause = Fcar (h); | |
| 2632 Lisp_Object tem = Fcar (clause); | |
| 2633 | |
| 2634 if (condition_type_p (tem, conditions)) | |
| 2635 { | |
| 853 | 2636 tem = signal_call_debugger (conditions, error_symbol, data, |
| 428 | 2637 outer_handlers, 1, |
| 2638 &stack_trace_displayed, | |
| 2639 &debugger_entered); | |
| 2640 UNGCPRO; | |
| 2641 if (!UNBOUNDP (tem)) | |
| 2642 return return_from_signal (tem); | |
| 2643 | |
| 2644 /* Doesn't return */ | |
| 853 | 2645 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
|
2646 throw_or_bomb_out (handlers, tem, 0, Qnil, Qnil); |
| 428 | 2647 } |
| 2648 } | |
| 2649 } | |
| 2650 } | |
| 2651 | |
| 2652 /* If no handler is present now, try to run the debugger, | |
| 2653 and if that fails, throw to top level. | |
| 2654 | |
| 2655 #### The only time that no handler is present is during | |
| 2656 temacs or perhaps very early in XEmacs. In both cases, | |
| 3025 | 2657 there is no `top-level' catch. (That's why the |
| 428 | 2658 "bomb-out" hack was added.) |
| 2659 | |
| 853 | 2660 [[#### Fix this horrifitude!]] |
| 2661 | |
| 2662 I don't think this is horrifitude, but just defensive coding. --ben */ | |
| 2663 | |
| 2664 signal_call_debugger (conditions, error_symbol, data, Qnil, 0, | |
| 428 | 2665 &stack_trace_displayed, |
| 2666 &debugger_entered); | |
| 2667 UNGCPRO; | |
| 853 | 2668 throw_or_bomb_out (Qtop_level, Qt, 1, error_symbol, |
| 2669 data); /* Doesn't return */ | |
| 2268 | 2670 RETURN_NOT_REACHED (Qnil); |
| 428 | 2671 } |
| 2672 | |
| 2673 /****************** Error functions class 1 ******************/ | |
| 2674 | |
| 2675 /* Class 1: General functions that signal an error. | |
| 2676 These functions take an error type and a list of associated error | |
| 2677 data. */ | |
| 2678 | |
| 853 | 2679 /* No signal_continuable_error_1(); it's called Fsignal(). */ |
| 428 | 2680 |
| 2681 /* Signal a non-continuable error. */ | |
| 2682 | |
| 2683 DOESNT_RETURN | |
| 563 | 2684 signal_error_1 (Lisp_Object sig, Lisp_Object data) |
| 428 | 2685 { |
| 2686 for (;;) | |
| 2687 Fsignal (sig, data); | |
| 2688 } | |
| 853 | 2689 |
| 2690 #ifdef ERROR_CHECK_CATCH | |
| 2691 | |
| 2692 void | |
| 2693 check_catchlist_sanity (void) | |
| 2694 { | |
| 2695 #if 0 | |
| 2696 /* vou me tomar no cu! i just masked andy's missing-unbind | |
| 2697 bug! */ | |
| 442 | 2698 struct catchtag *c; |
| 2699 int found_error_tag = 0; | |
| 2700 | |
| 2701 for (c = catchlist; c; c = c->next) | |
| 2702 { | |
| 2703 if (EQ (c->tag, Qunbound_suspended_errors_tag)) | |
| 2704 { | |
| 2705 found_error_tag = 1; | |
| 2706 break; | |
| 2707 } | |
| 2708 } | |
| 2709 | |
| 2710 assert (found_error_tag || NILP (Vcurrent_error_state)); | |
| 853 | 2711 #endif /* vou me tomar no cul */ |
| 2712 } | |
| 2713 | |
| 2714 void | |
| 2715 check_specbind_stack_sanity (void) | |
| 2716 { | |
| 2717 } | |
| 2718 | |
| 2719 #endif /* ERROR_CHECK_CATCH */ | |
| 428 | 2720 |
| 2721 /* Signal a non-continuable error or display a warning or do nothing, | |
| 2722 according to ERRB. CLASS is the class of warning and should | |
| 2723 refer to what sort of operation is being done (e.g. Qtoolbar, | |
| 2724 Qresource, etc.). */ | |
| 2725 | |
| 2726 void | |
| 1204 | 2727 maybe_signal_error_1 (Lisp_Object sig, Lisp_Object data, Lisp_Object class_, |
| 578 | 2728 Error_Behavior errb) |
| 428 | 2729 { |
| 2730 if (ERRB_EQ (errb, ERROR_ME_NOT)) | |
| 2731 return; | |
| 793 | 2732 else if (ERRB_EQ (errb, ERROR_ME_DEBUG_WARN)) |
| 1204 | 2733 warn_when_safe_lispobj (class_, Qdebug, Fcons (sig, data)); |
| 428 | 2734 else if (ERRB_EQ (errb, ERROR_ME_WARN)) |
| 1204 | 2735 warn_when_safe_lispobj (class_, Qwarning, Fcons (sig, data)); |
| 428 | 2736 else |
|
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
2737 signal_error_1 (sig, data); |
| 428 | 2738 } |
| 2739 | |
| 2740 /* Signal a continuable error or display a warning or do nothing, | |
| 2741 according to ERRB. */ | |
| 2742 | |
| 2743 Lisp_Object | |
| 563 | 2744 maybe_signal_continuable_error_1 (Lisp_Object sig, Lisp_Object data, |
| 1204 | 2745 Lisp_Object class_, Error_Behavior errb) |
| 428 | 2746 { |
| 2747 if (ERRB_EQ (errb, ERROR_ME_NOT)) | |
| 2748 return Qnil; | |
| 793 | 2749 else if (ERRB_EQ (errb, ERROR_ME_DEBUG_WARN)) |
| 2750 { | |
| 1204 | 2751 warn_when_safe_lispobj (class_, Qdebug, Fcons (sig, data)); |
| 793 | 2752 return Qnil; |
| 2753 } | |
| 428 | 2754 else if (ERRB_EQ (errb, ERROR_ME_WARN)) |
| 2755 { | |
| 1204 | 2756 warn_when_safe_lispobj (class_, Qwarning, Fcons (sig, data)); |
| 428 | 2757 return Qnil; |
| 2758 } | |
| 2759 else | |
| 2760 return Fsignal (sig, data); | |
| 2761 } | |
| 2762 | |
| 2763 | |
| 2764 /****************** Error functions class 2 ******************/ | |
| 2765 | |
| 563 | 2766 /* Class 2: Signal an error with a string and an associated object. |
| 2767 Normally these functions are used to attach one associated object, | |
| 2768 but to attach no objects, specify Qunbound for FROB, and for more | |
| 2769 than one object, make a list of the objects with Qunbound as the | |
| 2770 first element. (If you have specifically two objects to attach, | |
| 2771 consider using the function in class 3 below.) These functions | |
| 2772 signal an error of a specified type, whose data is one or more | |
| 2773 objects (usually two), a string the related Lisp object(s) | |
| 2774 specified as FROB. */ | |
| 2775 | |
| 2776 /* Out of REASON and FROB, return a list of elements suitable for passing | |
| 2777 to signal_error_1(). */ | |
| 2778 | |
| 2779 Lisp_Object | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2780 build_error_data (const Ascbyte *reason, Lisp_Object frob) |
| 563 | 2781 { |
| 2782 if (EQ (frob, Qunbound)) | |
| 2783 frob = Qnil; | |
| 2784 else if (CONSP (frob) && EQ (XCAR (frob), Qunbound)) | |
| 2785 frob = XCDR (frob); | |
| 2786 else | |
| 2787 frob = list1 (frob); | |
| 2788 if (!reason) | |
| 2789 return frob; | |
| 2790 else | |
| 771 | 2791 return Fcons (build_msg_string (reason), frob); |
| 563 | 2792 } |
| 2793 | |
| 2794 DOESNT_RETURN | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2795 signal_error (Lisp_Object type, const Ascbyte *reason, Lisp_Object frob) |
| 563 | 2796 { |
| 2797 signal_error_1 (type, build_error_data (reason, frob)); | |
| 2798 } | |
| 2799 | |
|
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
2800 /* 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
|
2801 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
|
2802 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
|
2803 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
|
2804 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
|
2805 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
|
2806 |
| 563 | 2807 void |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2808 maybe_signal_error (Lisp_Object type, const Ascbyte *reason, |
| 1204 | 2809 Lisp_Object frob, Lisp_Object class_, |
| 578 | 2810 Error_Behavior errb) |
| 563 | 2811 { |
| 2812 /* Optimization: */ | |
| 2813 if (ERRB_EQ (errb, ERROR_ME_NOT)) | |
| 2814 return; | |
| 1204 | 2815 maybe_signal_error_1 (type, build_error_data (reason, frob), class_, errb); |
| 563 | 2816 } |
| 2817 | |
| 2818 Lisp_Object | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2819 signal_continuable_error (Lisp_Object type, const Ascbyte *reason, |
| 563 | 2820 Lisp_Object frob) |
| 2821 { | |
| 2822 return Fsignal (type, build_error_data (reason, frob)); | |
| 2823 } | |
| 2824 | |
| 2825 Lisp_Object | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2826 maybe_signal_continuable_error (Lisp_Object type, const Ascbyte *reason, |
| 1204 | 2827 Lisp_Object frob, Lisp_Object class_, |
| 578 | 2828 Error_Behavior errb) |
| 563 | 2829 { |
| 2830 /* Optimization: */ | |
| 2831 if (ERRB_EQ (errb, ERROR_ME_NOT)) | |
| 2832 return Qnil; | |
| 2833 return maybe_signal_continuable_error_1 (type, | |
| 2834 build_error_data (reason, frob), | |
| 1204 | 2835 class_, errb); |
| 563 | 2836 } |
| 2837 | |
| 2838 | |
| 2839 /****************** Error functions class 3 ******************/ | |
| 2840 | |
| 2841 /* Class 3: Signal an error with a string and two associated objects. | |
| 2842 These functions signal an error of a specified type, whose data | |
| 2843 is three objects, a string and two related Lisp objects. | |
| 2844 (The equivalent could be accomplished using the class 2 functions, | |
| 2845 but these are more convenient in this particular case.) */ | |
| 2846 | |
| 2847 DOESNT_RETURN | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2848 signal_error_2 (Lisp_Object type, const Ascbyte *reason, |
| 563 | 2849 Lisp_Object frob0, Lisp_Object frob1) |
| 2850 { | |
| 771 | 2851 signal_error_1 (type, list3 (build_msg_string (reason), frob0, |
| 563 | 2852 frob1)); |
| 2853 } | |
| 2854 | |
| 2855 void | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2856 maybe_signal_error_2 (Lisp_Object type, const Ascbyte *reason, |
| 563 | 2857 Lisp_Object frob0, Lisp_Object frob1, |
| 1204 | 2858 Lisp_Object class_, Error_Behavior errb) |
| 563 | 2859 { |
| 2860 /* Optimization: */ | |
| 2861 if (ERRB_EQ (errb, ERROR_ME_NOT)) | |
| 2862 return; | |
| 771 | 2863 maybe_signal_error_1 (type, list3 (build_msg_string (reason), frob0, |
| 1204 | 2864 frob1), class_, errb); |
| 563 | 2865 } |
| 2866 | |
| 2867 Lisp_Object | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2868 signal_continuable_error_2 (Lisp_Object type, const Ascbyte *reason, |
| 563 | 2869 Lisp_Object frob0, Lisp_Object frob1) |
| 2870 { | |
| 771 | 2871 return Fsignal (type, list3 (build_msg_string (reason), frob0, |
| 563 | 2872 frob1)); |
| 2873 } | |
| 2874 | |
| 2875 Lisp_Object | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2876 maybe_signal_continuable_error_2 (Lisp_Object type, const Ascbyte *reason, |
| 563 | 2877 Lisp_Object frob0, Lisp_Object frob1, |
| 1204 | 2878 Lisp_Object class_, Error_Behavior errb) |
| 563 | 2879 { |
| 2880 /* Optimization: */ | |
| 2881 if (ERRB_EQ (errb, ERROR_ME_NOT)) | |
| 2882 return Qnil; | |
| 2883 return maybe_signal_continuable_error_1 | |
| 771 | 2884 (type, list3 (build_msg_string (reason), frob0, frob1), |
| 1204 | 2885 class_, errb); |
| 563 | 2886 } |
| 2887 | |
| 2888 | |
| 2889 /****************** Error functions class 4 ******************/ | |
| 2890 | |
| 2891 /* Class 4: Printf-like functions that signal an error. | |
| 442 | 2892 These functions signal an error of a specified type, whose data |
| 428 | 2893 is a single string, created using the arguments. */ |
| 2894 | |
| 2895 DOESNT_RETURN | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2896 signal_ferror (Lisp_Object type, const Ascbyte *fmt, ...) |
| 442 | 2897 { |
| 2898 Lisp_Object obj; | |
| 2899 va_list args; | |
| 2900 | |
| 2901 va_start (args, fmt); | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2902 obj = emacs_vsprintf_string (GETTEXT (fmt), args); |
| 442 | 2903 va_end (args); |
| 2904 | |
| 2905 /* Fsignal GC-protects its args */ | |
| 563 | 2906 signal_error (type, 0, obj); |
| 442 | 2907 } |
| 2908 | |
| 2909 void | |
| 1204 | 2910 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
|
2911 const Ascbyte *fmt, ...) |
| 442 | 2912 { |
| 2913 Lisp_Object obj; | |
| 2914 va_list args; | |
| 2915 | |
| 2916 /* Optimization: */ | |
| 2917 if (ERRB_EQ (errb, ERROR_ME_NOT)) | |
| 2918 return; | |
| 2919 | |
| 2920 va_start (args, fmt); | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2921 obj = emacs_vsprintf_string (GETTEXT (fmt), args); |
| 442 | 2922 va_end (args); |
| 2923 | |
| 2924 /* Fsignal GC-protects its args */ | |
| 1204 | 2925 maybe_signal_error (type, 0, obj, class_, errb); |
| 442 | 2926 } |
| 2927 | |
| 2928 Lisp_Object | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2929 signal_continuable_ferror (Lisp_Object type, const Ascbyte *fmt, ...) |
| 428 | 2930 { |
| 2931 Lisp_Object obj; | |
| 2932 va_list args; | |
| 2933 | |
| 2934 va_start (args, fmt); | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2935 obj = emacs_vsprintf_string (GETTEXT (fmt), args); |
| 442 | 2936 va_end (args); |
| 2937 | |
| 2938 /* Fsignal GC-protects its args */ | |
| 2939 return Fsignal (type, list1 (obj)); | |
| 2940 } | |
| 2941 | |
| 2942 Lisp_Object | |
| 1204 | 2943 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
|
2944 Error_Behavior errb, const Ascbyte *fmt, ...) |
| 442 | 2945 { |
| 2946 Lisp_Object obj; | |
| 2947 va_list args; | |
| 2948 | |
| 2949 /* Optimization: */ | |
| 2950 if (ERRB_EQ (errb, ERROR_ME_NOT)) | |
| 2951 return Qnil; | |
| 2952 | |
| 2953 va_start (args, fmt); | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2954 obj = emacs_vsprintf_string (GETTEXT (fmt), args); |
| 442 | 2955 va_end (args); |
| 2956 | |
| 2957 /* Fsignal GC-protects its args */ | |
| 1204 | 2958 return maybe_signal_continuable_error (type, 0, obj, class_, errb); |
| 442 | 2959 } |
| 2960 | |
| 2961 | |
| 2962 /****************** Error functions class 5 ******************/ | |
| 2963 | |
| 563 | 2964 /* Class 5: Printf-like functions that signal an error. |
| 442 | 2965 These functions signal an error of a specified type, whose data |
| 563 | 2966 is a one or more objects, a string (created using the arguments) |
| 2967 and additional Lisp objects specified in FROB. (The syntax of FROB | |
| 2968 is the same as for class 2.) | |
| 2969 | |
| 2970 There is no need for a class 6 because you can always attach 2 | |
| 2971 objects using class 5 (for FROB, specify a list with three | |
| 2972 elements, the first of which is Qunbound), and these functions are | |
| 2973 not commonly used. | |
| 2974 */ | |
| 442 | 2975 |
| 2976 DOESNT_RETURN | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2977 signal_ferror_with_frob (Lisp_Object type, Lisp_Object frob, const Ascbyte *fmt, |
| 563 | 2978 ...) |
| 442 | 2979 { |
| 2980 Lisp_Object obj; | |
| 2981 va_list args; | |
| 2982 | |
| 2983 va_start (args, fmt); | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
2984 obj = emacs_vsprintf_string (GETTEXT (fmt), args); |
| 442 | 2985 va_end (args); |
| 2986 | |
| 2987 /* Fsignal GC-protects its args */ | |
| 563 | 2988 signal_error_1 (type, Fcons (obj, build_error_data (0, frob))); |
| 442 | 2989 } |
| 2990 | |
| 2991 void | |
| 563 | 2992 maybe_signal_ferror_with_frob (Lisp_Object type, Lisp_Object frob, |
| 1204 | 2993 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
|
2994 const Ascbyte *fmt, ...) |
| 442 | 2995 { |
| 2996 Lisp_Object obj; | |
| 2997 va_list args; | |
| 2998 | |
| 2999 /* Optimization: */ | |
| 3000 if (ERRB_EQ (errb, ERROR_ME_NOT)) | |
| 3001 return; | |
| 3002 | |
| 3003 va_start (args, fmt); | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3004 obj = emacs_vsprintf_string (GETTEXT (fmt), args); |
| 428 | 3005 va_end (args); |
| 3006 | |
| 3007 /* Fsignal GC-protects its args */ | |
| 1204 | 3008 maybe_signal_error_1 (type, Fcons (obj, build_error_data (0, frob)), class_, |
| 563 | 3009 errb); |
| 428 | 3010 } |
| 3011 | |
| 3012 Lisp_Object | |
| 563 | 3013 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
|
3014 const Ascbyte *fmt, ...) |
| 428 | 3015 { |
| 3016 Lisp_Object obj; | |
| 3017 va_list args; | |
| 3018 | |
| 3019 va_start (args, fmt); | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3020 obj = emacs_vsprintf_string (GETTEXT (fmt), args); |
| 428 | 3021 va_end (args); |
| 3022 | |
| 3023 /* Fsignal GC-protects its args */ | |
| 563 | 3024 return Fsignal (type, Fcons (obj, build_error_data (0, frob))); |
| 428 | 3025 } |
| 3026 | |
| 3027 Lisp_Object | |
| 563 | 3028 maybe_signal_continuable_ferror_with_frob (Lisp_Object type, Lisp_Object frob, |
| 1204 | 3029 Lisp_Object class_, |
| 578 | 3030 Error_Behavior errb, |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3031 const Ascbyte *fmt, ...) |
| 428 | 3032 { |
| 3033 Lisp_Object obj; | |
| 3034 va_list args; | |
| 3035 | |
| 3036 /* Optimization: */ | |
| 3037 if (ERRB_EQ (errb, ERROR_ME_NOT)) | |
| 3038 return Qnil; | |
| 3039 | |
| 3040 va_start (args, fmt); | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3041 obj = emacs_vsprintf_string (GETTEXT (fmt), args); |
| 428 | 3042 va_end (args); |
| 3043 | |
| 3044 /* Fsignal GC-protects its args */ | |
| 563 | 3045 return maybe_signal_continuable_error_1 (type, |
| 3046 Fcons (obj, | |
| 3047 build_error_data (0, frob)), | |
| 1204 | 3048 class_, errb); |
| 428 | 3049 } |
| 3050 | |
| 3051 | |
| 3052 /* This is what the QUIT macro calls to signal a quit */ | |
| 3053 void | |
| 3054 signal_quit (void) | |
| 3055 { | |
| 853 | 3056 /* This function cannot GC. GC is prohibited because most callers do |
| 3057 not expect GC occurring in QUIT. Remove this if/when that gets fixed. | |
| 3058 --ben */ | |
| 3059 | |
| 3060 int count; | |
| 3061 | |
| 428 | 3062 if (EQ (Vquit_flag, Qcritical)) |
| 3063 debug_on_quit |= 2; /* set critical bit. */ | |
| 3064 Vquit_flag = Qnil; | |
| 853 | 3065 count = begin_gc_forbidden (); |
| 428 | 3066 /* note that this is continuable. */ |
| 3067 Fsignal (Qquit, Qnil); | |
| 853 | 3068 unbind_to (count); |
| 428 | 3069 } |
| 3070 | |
| 3071 | |
| 563 | 3072 /************************ convenience error functions ***********************/ |
| 3073 | |
| 436 | 3074 Lisp_Object |
| 428 | 3075 signal_void_function_error (Lisp_Object function) |
| 3076 { | |
| 436 | 3077 return Fsignal (Qvoid_function, list1 (function)); |
| 428 | 3078 } |
| 3079 | |
| 436 | 3080 Lisp_Object |
| 428 | 3081 signal_invalid_function_error (Lisp_Object function) |
| 3082 { | |
| 436 | 3083 return Fsignal (Qinvalid_function, list1 (function)); |
| 428 | 3084 } |
| 3085 | |
| 436 | 3086 Lisp_Object |
| 428 | 3087 signal_wrong_number_of_arguments_error (Lisp_Object function, int nargs) |
| 3088 { | |
| 436 | 3089 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
|
3090 list2 (function, make_fixnum (nargs))); |
| 428 | 3091 } |
| 3092 | |
| 3093 /* Used in list traversal macros for efficiency. */ | |
| 436 | 3094 DOESNT_RETURN |
| 428 | 3095 signal_malformed_list_error (Lisp_Object list) |
| 3096 { | |
| 563 | 3097 signal_error (Qmalformed_list, 0, list); |
| 428 | 3098 } |
| 3099 | |
| 436 | 3100 DOESNT_RETURN |
| 428 | 3101 signal_malformed_property_list_error (Lisp_Object list) |
| 3102 { | |
| 563 | 3103 signal_error (Qmalformed_property_list, 0, list); |
| 428 | 3104 } |
| 3105 | |
| 436 | 3106 DOESNT_RETURN |
| 428 | 3107 signal_circular_list_error (Lisp_Object list) |
| 3108 { | |
| 563 | 3109 signal_error (Qcircular_list, 0, list); |
| 428 | 3110 } |
| 3111 | |
| 436 | 3112 DOESNT_RETURN |
| 428 | 3113 signal_circular_property_list_error (Lisp_Object list) |
| 3114 { | |
| 563 | 3115 signal_error (Qcircular_property_list, 0, list); |
| 428 | 3116 } |
| 442 | 3117 |
| 2267 | 3118 /* Called from within emacs_doprnt_1, so REASON is not formatted. */ |
| 442 | 3119 DOESNT_RETURN |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3120 syntax_error (const Ascbyte *reason, Lisp_Object frob) |
| 442 | 3121 { |
| 563 | 3122 signal_error (Qsyntax_error, reason, frob); |
| 442 | 3123 } |
| 3124 | |
| 3125 DOESNT_RETURN | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3126 syntax_error_2 (const Ascbyte *reason, Lisp_Object frob1, Lisp_Object frob2) |
| 442 | 3127 { |
| 563 | 3128 signal_error_2 (Qsyntax_error, reason, frob1, frob2); |
| 3129 } | |
| 3130 | |
| 3131 void | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3132 maybe_syntax_error (const Ascbyte *reason, Lisp_Object frob, |
| 1204 | 3133 Lisp_Object class_, Error_Behavior errb) |
| 3134 { | |
| 3135 maybe_signal_error (Qsyntax_error, reason, frob, class_, errb); | |
| 563 | 3136 } |
| 3137 | |
| 3138 DOESNT_RETURN | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3139 sferror (const Ascbyte *reason, Lisp_Object frob) |
| 563 | 3140 { |
| 3141 signal_error (Qstructure_formation_error, reason, frob); | |
| 3142 } | |
| 3143 | |
| 3144 DOESNT_RETURN | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3145 sferror_2 (const Ascbyte *reason, Lisp_Object frob1, Lisp_Object frob2) |
| 563 | 3146 { |
| 3147 signal_error_2 (Qstructure_formation_error, reason, frob1, frob2); | |
| 3148 } | |
| 3149 | |
| 3150 void | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3151 maybe_sferror (const Ascbyte *reason, Lisp_Object frob, |
| 1204 | 3152 Lisp_Object class_, Error_Behavior errb) |
| 3153 { | |
| 3154 maybe_signal_error (Qstructure_formation_error, reason, frob, class_, errb); | |
| 442 | 3155 } |
| 3156 | |
| 3157 DOESNT_RETURN | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3158 invalid_argument (const Ascbyte *reason, Lisp_Object frob) |
| 442 | 3159 { |
| 563 | 3160 signal_error (Qinvalid_argument, reason, frob); |
| 442 | 3161 } |
| 3162 | |
| 3163 DOESNT_RETURN | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3164 invalid_argument_2 (const Ascbyte *reason, Lisp_Object frob1, |
| 609 | 3165 Lisp_Object frob2) |
| 442 | 3166 { |
| 563 | 3167 signal_error_2 (Qinvalid_argument, reason, frob1, frob2); |
| 3168 } | |
| 3169 | |
| 3170 void | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3171 maybe_invalid_argument (const Ascbyte *reason, Lisp_Object frob, |
| 1204 | 3172 Lisp_Object class_, Error_Behavior errb) |
| 3173 { | |
| 3174 maybe_signal_error (Qinvalid_argument, reason, frob, class_, errb); | |
| 563 | 3175 } |
| 3176 | |
| 3177 DOESNT_RETURN | |
|
5084
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
3178 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
|
3179 { |
|
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
3180 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
|
3181 } |
|
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
3182 |
|
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5050
diff
changeset
|
3183 DOESNT_RETURN |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3184 invalid_constant (const Ascbyte *reason, Lisp_Object frob) |
| 563 | 3185 { |
| 3186 signal_error (Qinvalid_constant, reason, frob); | |
| 3187 } | |
| 3188 | |
| 3189 DOESNT_RETURN | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3190 invalid_constant_2 (const Ascbyte *reason, Lisp_Object frob1, |
| 609 | 3191 Lisp_Object frob2) |
| 563 | 3192 { |
| 3193 signal_error_2 (Qinvalid_constant, reason, frob1, frob2); | |
| 3194 } | |
| 3195 | |
| 3196 void | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3197 maybe_invalid_constant (const Ascbyte *reason, Lisp_Object frob, |
| 1204 | 3198 Lisp_Object class_, Error_Behavior errb) |
| 3199 { | |
| 3200 maybe_signal_error (Qinvalid_constant, reason, frob, class_, errb); | |
| 442 | 3201 } |
| 3202 | |
| 3203 DOESNT_RETURN | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3204 invalid_operation (const Ascbyte *reason, Lisp_Object frob) |
| 442 | 3205 { |
| 563 | 3206 signal_error (Qinvalid_operation, reason, frob); |
| 442 | 3207 } |
| 3208 | |
| 3209 DOESNT_RETURN | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3210 invalid_operation_2 (const Ascbyte *reason, Lisp_Object frob1, |
| 609 | 3211 Lisp_Object frob2) |
| 442 | 3212 { |
| 563 | 3213 signal_error_2 (Qinvalid_operation, reason, frob1, frob2); |
| 3214 } | |
| 3215 | |
| 3216 void | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3217 maybe_invalid_operation (const Ascbyte *reason, Lisp_Object frob, |
| 1204 | 3218 Lisp_Object class_, Error_Behavior errb) |
| 3219 { | |
| 3220 maybe_signal_error (Qinvalid_operation, reason, frob, class_, errb); | |
| 442 | 3221 } |
| 3222 | |
| 3223 DOESNT_RETURN | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3224 invalid_change (const Ascbyte *reason, Lisp_Object frob) |
| 442 | 3225 { |
| 563 | 3226 signal_error (Qinvalid_change, reason, frob); |
| 442 | 3227 } |
| 3228 | |
| 3229 DOESNT_RETURN | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3230 invalid_change_2 (const Ascbyte *reason, Lisp_Object frob1, Lisp_Object frob2) |
| 442 | 3231 { |
| 563 | 3232 signal_error_2 (Qinvalid_change, reason, frob1, frob2); |
| 3233 } | |
| 3234 | |
| 3235 void | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3236 maybe_invalid_change (const Ascbyte *reason, Lisp_Object frob, |
| 1204 | 3237 Lisp_Object class_, Error_Behavior errb) |
| 3238 { | |
| 3239 maybe_signal_error (Qinvalid_change, reason, frob, class_, errb); | |
| 563 | 3240 } |
| 3241 | |
| 3242 DOESNT_RETURN | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3243 invalid_state (const Ascbyte *reason, Lisp_Object frob) |
| 563 | 3244 { |
| 3245 signal_error (Qinvalid_state, reason, frob); | |
| 3246 } | |
| 3247 | |
| 3248 DOESNT_RETURN | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3249 invalid_state_2 (const Ascbyte *reason, Lisp_Object frob1, Lisp_Object frob2) |
| 563 | 3250 { |
| 3251 signal_error_2 (Qinvalid_state, reason, frob1, frob2); | |
| 3252 } | |
| 3253 | |
| 3254 void | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3255 maybe_invalid_state (const Ascbyte *reason, Lisp_Object frob, |
| 1204 | 3256 Lisp_Object class_, Error_Behavior errb) |
| 3257 { | |
| 3258 maybe_signal_error (Qinvalid_state, reason, frob, class_, errb); | |
| 563 | 3259 } |
| 3260 | |
| 3261 DOESNT_RETURN | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3262 wtaerror (const Ascbyte *reason, Lisp_Object frob) |
| 563 | 3263 { |
| 3264 signal_error (Qwrong_type_argument, reason, frob); | |
| 3265 } | |
| 3266 | |
| 3267 DOESNT_RETURN | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3268 stack_overflow (const Ascbyte *reason, Lisp_Object frob) |
| 563 | 3269 { |
| 3270 signal_error (Qstack_overflow, reason, frob); | |
| 3271 } | |
| 3272 | |
| 3273 DOESNT_RETURN | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
3274 out_of_memory (const Ascbyte *reason, Lisp_Object frob) |
| 563 | 3275 { |
| 3276 signal_error (Qout_of_memory, reason, frob); | |
| 3277 } | |
| 3278 | |
| 428 | 3279 |
| 3280 /************************************************************************/ | |
| 3281 /* User commands */ | |
| 3282 /************************************************************************/ | |
| 3283 | |
| 3284 DEFUN ("commandp", Fcommandp, 1, 1, 0, /* | |
| 3285 Return t if FUNCTION makes provisions for interactive calling. | |
| 3286 This means it contains a description for how to read arguments to give it. | |
| 3287 The value is nil for an invalid function or a symbol with no function | |
| 3288 definition. | |
| 3289 | |
| 3290 Interactively callable functions include | |
| 3291 | |
| 3292 -- strings and vectors (treated as keyboard macros) | |
| 3293 -- lambda-expressions that contain a top-level call to `interactive' | |
| 3294 -- autoload definitions made by `autoload' with non-nil fourth argument | |
| 3295 (i.e. the interactive flag) | |
| 3296 -- compiled-function objects with a non-nil `compiled-function-interactive' | |
| 3297 value | |
| 3298 -- subrs (built-in functions) that are interactively callable | |
| 3299 | |
| 3300 Also, a symbol satisfies `commandp' if its function definition does so. | |
| 3301 */ | |
| 3302 (function)) | |
| 3303 { | |
| 3304 Lisp_Object fun = indirect_function (function, 0); | |
| 3305 | |
| 3306 if (COMPILED_FUNCTIONP (fun)) | |
| 3307 return XCOMPILED_FUNCTION (fun)->flags.interactivep ? Qt : Qnil; | |
| 3308 | |
| 3309 /* Lists may represent commands. */ | |
| 3310 if (CONSP (fun)) | |
| 3311 { | |
| 3312 Lisp_Object funcar = XCAR (fun); | |
| 3313 if (EQ (funcar, Qlambda)) | |
| 3314 return Fassq (Qinteractive, Fcdr (Fcdr (fun))); | |
| 3315 if (EQ (funcar, Qautoload)) | |
| 3316 return Fcar (Fcdr (Fcdr (Fcdr (fun)))); | |
| 3317 else | |
| 3318 return Qnil; | |
| 3319 } | |
| 3320 | |
| 3321 /* Emacs primitives are interactive if their DEFUN specifies an | |
| 3322 interactive spec. */ | |
| 3323 if (SUBRP (fun)) | |
| 3324 return XSUBR (fun)->prompt ? Qt : Qnil; | |
| 3325 | |
| 3326 /* Strings and vectors are keyboard macros. */ | |
| 3327 if (VECTORP (fun) || STRINGP (fun)) | |
| 3328 return Qt; | |
| 3329 | |
| 3330 /* Everything else (including Qunbound) is not a command. */ | |
| 3331 return Qnil; | |
| 3332 } | |
| 3333 | |
| 3334 DEFUN ("command-execute", Fcommand_execute, 1, 3, 0, /* | |
| 3335 Execute CMD as an editor command. | |
| 3336 CMD must be an object that satisfies the `commandp' predicate. | |
| 3337 Optional second arg RECORD-FLAG is as in `call-interactively'. | |
| 3338 The argument KEYS specifies the value to use instead of (this-command-keys) | |
| 3339 when reading the arguments. | |
| 3340 */ | |
| 444 | 3341 (cmd, record_flag, keys)) |
| 428 | 3342 { |
| 3343 /* This function can GC */ | |
| 3344 Lisp_Object prefixarg; | |
| 3345 Lisp_Object final = cmd; | |
| 4162 | 3346 PROFILE_DECLARE(); |
| 428 | 3347 struct console *con = XCONSOLE (Vselected_console); |
| 3348 | |
| 3349 prefixarg = con->prefix_arg; | |
| 3350 con->prefix_arg = Qnil; | |
| 3351 Vcurrent_prefix_arg = prefixarg; | |
| 3352 debug_on_next_call = 0; /* #### from FSFmacs; correct? */ | |
| 3353 | |
| 3354 if (SYMBOLP (cmd) && !NILP (Fget (cmd, Qdisabled, Qnil))) | |
| 733 | 3355 return run_hook (Qdisabled_command_hook); |
| 428 | 3356 |
| 3357 for (;;) | |
| 3358 { | |
| 3359 final = indirect_function (cmd, 1); | |
| 3360 if (CONSP (final) && EQ (Fcar (final), Qautoload)) | |
| 970 | 3361 { |
| 3362 /* do_autoload GCPROs both arguments */ | |
| 3363 do_autoload (final, cmd); | |
| 3364 } | |
| 428 | 3365 else |
| 3366 break; | |
| 3367 } | |
| 3368 | |
| 3369 if (CONSP (final) || SUBRP (final) || COMPILED_FUNCTIONP (final)) | |
| 3370 { | |
| 3371 backtrace.function = &Qcall_interactively; | |
| 3372 backtrace.args = &cmd; | |
| 3373 backtrace.nargs = 1; | |
| 3374 backtrace.evalargs = 0; | |
| 1292 | 3375 backtrace.pdlcount = specpdl_depth (); |
| 428 | 3376 backtrace.debug_on_exit = 0; |
| 1292 | 3377 backtrace.function_being_called = 0; |
| 428 | 3378 PUSH_BACKTRACE (backtrace); |
| 3379 | |
| 1292 | 3380 PROFILE_ENTER_FUNCTION (); |
| 444 | 3381 final = Fcall_interactively (cmd, record_flag, keys); |
| 1292 | 3382 PROFILE_EXIT_FUNCTION (); |
| 428 | 3383 |
| 3384 POP_BACKTRACE (backtrace); | |
| 3385 return final; | |
| 3386 } | |
| 3387 else if (STRINGP (final) || VECTORP (final)) | |
| 3388 { | |
| 3389 return Fexecute_kbd_macro (final, prefixarg); | |
| 3390 } | |
| 3391 else | |
| 3392 { | |
| 3393 Fsignal (Qwrong_type_argument, | |
| 3394 Fcons (Qcommandp, | |
| 3395 (EQ (cmd, final) | |
| 3396 ? list1 (cmd) | |
| 3397 : list2 (cmd, final)))); | |
| 3398 return Qnil; | |
| 3399 } | |
| 3400 } | |
| 3401 | |
| 3402 DEFUN ("interactive-p", Finteractive_p, 0, 0, 0, /* | |
| 3403 Return t if function in which this appears was called interactively. | |
| 3404 This means that the function was called with call-interactively (which | |
| 3405 includes being called as the binding of a key) | |
| 3406 and input is currently coming from the keyboard (not in keyboard macro). | |
| 3407 */ | |
| 3408 ()) | |
| 3409 { | |
| 3410 REGISTER struct backtrace *btp; | |
| 3411 REGISTER Lisp_Object fun; | |
| 3412 | |
| 3413 if (!INTERACTIVE) | |
| 3414 return Qnil; | |
| 3415 | |
| 3416 /* Unless the object was compiled, skip the frame of interactive-p itself | |
| 3417 (if interpreted) or the frame of byte-code (if called from a compiled | |
| 3418 function). Note that *btp->function may be a symbol pointing at a | |
| 3419 compiled function. */ | |
| 3420 btp = backtrace_list; | |
| 3421 | |
| 3422 #if 0 /* FSFmacs */ | |
| 3423 | |
| 3424 /* #### FSFmacs does the following instead. I can't figure | |
| 3425 out which one is more correct. */ | |
| 3426 /* If this isn't a byte-compiled function, there may be a frame at | |
| 3427 the top for Finteractive_p itself. If so, skip it. */ | |
| 3428 fun = Findirect_function (*btp->function); | |
| 3429 if (SUBRP (fun) && XSUBR (fun) == &Sinteractive_p) | |
| 3430 btp = btp->next; | |
| 3431 | |
| 3432 /* If we're running an Emacs 18-style byte-compiled function, there | |
| 3433 may be a frame for Fbyte_code. Now, given the strictest | |
| 3434 definition, this function isn't really being called | |
| 3435 interactively, but because that's the way Emacs 18 always builds | |
| 3436 byte-compiled functions, we'll accept it for now. */ | |
| 3437 if (EQ (*btp->function, Qbyte_code)) | |
| 3438 btp = btp->next; | |
| 3439 | |
| 3440 /* 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
|
3441 looking at several frames for special operators. Skip past them. */ |
| 428 | 3442 while (btp && |
| 3443 btp->nargs == UNEVALLED) | |
| 3444 btp = btp->next; | |
| 3445 | |
| 3446 #else | |
| 3447 | |
| 3448 if (! (COMPILED_FUNCTIONP (Findirect_function (*btp->function)))) | |
| 3449 btp = btp->next; | |
| 3450 for (; | |
| 3451 btp && (btp->nargs == UNEVALLED | |
| 3452 || EQ (*btp->function, Qbyte_code)); | |
| 3453 btp = btp->next) | |
| 3454 {} | |
| 3455 /* btp now points at the frame of the innermost function | |
| 3456 that DOES eval its args. | |
| 3457 If it is a built-in function (such as load or eval-region) | |
| 3458 return nil. */ | |
| 3459 /* Beats me why this is necessary, but it is */ | |
| 3460 if (btp && EQ (*btp->function, Qcall_interactively)) | |
| 3461 return Qt; | |
| 3462 | |
| 3463 #endif | |
| 3464 | |
| 3465 fun = Findirect_function (*btp->function); | |
| 3466 if (SUBRP (fun)) | |
| 3467 return Qnil; | |
| 3468 /* btp points to the frame of a Lisp function that called interactive-p. | |
| 3469 Return t if that function was called interactively. */ | |
| 3470 if (btp && btp->next && EQ (*btp->next->function, Qcall_interactively)) | |
| 3471 return Qt; | |
| 3472 return Qnil; | |
| 3473 } | |
| 3474 | |
| 3475 | |
| 3476 /************************************************************************/ | |
| 3477 /* Autoloading */ | |
| 3478 /************************************************************************/ | |
| 3479 | |
| 3480 DEFUN ("autoload", Fautoload, 2, 5, 0, /* | |
| 444 | 3481 Define FUNCTION to autoload from FILENAME. |
| 3482 FUNCTION is a symbol; FILENAME is a file name string to pass to `load'. | |
| 3483 The remaining optional arguments provide additional info about the | |
| 3484 real definition. | |
| 3485 DOCSTRING is documentation for FUNCTION. | |
| 3486 INTERACTIVE, if non-nil, says FUNCTION can be called interactively. | |
| 3487 TYPE indicates the type of the object: | |
| 428 | 3488 nil or omitted says FUNCTION is a function, |
| 3489 `keymap' says FUNCTION is really a keymap, and | |
| 3490 `macro' or t says FUNCTION is really a macro. | |
| 444 | 3491 If FUNCTION already has a non-void function definition that is not an |
| 3492 autoload object, this function does nothing and returns nil. | |
| 428 | 3493 */ |
| 444 | 3494 (function, filename, docstring, interactive, type)) |
| 428 | 3495 { |
| 3496 /* This function can GC */ | |
| 3497 CHECK_SYMBOL (function); | |
| 444 | 3498 CHECK_STRING (filename); |
| 428 | 3499 |
| 3500 /* If function is defined and not as an autoload, don't override */ | |
| 3501 { | |
| 3502 Lisp_Object f = XSYMBOL (function)->function; | |
| 3503 if (!UNBOUNDP (f) && !(CONSP (f) && EQ (XCAR (f), Qautoload))) | |
| 3504 return Qnil; | |
| 3505 } | |
| 3506 | |
| 3507 if (purify_flag) | |
| 3508 { | |
| 3509 /* Attempt to avoid consing identical (string=) pure strings. */ | |
| 444 | 3510 filename = Fsymbol_name (Fintern (filename, Qnil)); |
| 428 | 3511 } |
| 440 | 3512 |
| 444 | 3513 return Ffset (function, Fcons (Qautoload, list4 (filename, |
| 428 | 3514 docstring, |
| 3515 interactive, | |
| 3516 type))); | |
| 3517 } | |
| 3518 | |
| 3519 Lisp_Object | |
| 3520 un_autoload (Lisp_Object oldqueue) | |
| 3521 { | |
| 3522 /* This function can GC */ | |
| 3523 REGISTER Lisp_Object queue, first, second; | |
| 3524 | |
| 3525 /* Queue to unwind is current value of Vautoload_queue. | |
| 3526 oldqueue is the shadowed value to leave in Vautoload_queue. */ | |
| 3527 queue = Vautoload_queue; | |
| 3528 Vautoload_queue = oldqueue; | |
| 3529 while (CONSP (queue)) | |
| 3530 { | |
| 3531 first = XCAR (queue); | |
| 3532 second = Fcdr (first); | |
| 3533 first = Fcar (first); | |
| 3534 if (NILP (second)) | |
| 3535 Vfeatures = first; | |
| 3536 else | |
| 3537 Ffset (first, second); | |
| 3538 queue = Fcdr (queue); | |
| 3539 } | |
| 3540 return Qnil; | |
| 3541 } | |
| 3542 | |
| 970 | 3543 /* do_autoload GCPROs both arguments */ |
| 428 | 3544 void |
| 3545 do_autoload (Lisp_Object fundef, | |
| 3546 Lisp_Object funname) | |
| 3547 { | |
| 3548 /* This function can GC */ | |
| 3549 int speccount = specpdl_depth(); | |
| 3550 Lisp_Object fun = funname; | |
| 970 | 3551 struct gcpro gcpro1, gcpro2, gcpro3; |
| 428 | 3552 |
| 3553 CHECK_SYMBOL (funname); | |
| 970 | 3554 GCPRO3 (fundef, funname, fun); |
| 428 | 3555 |
| 3556 /* Value saved here is to be restored into Vautoload_queue */ | |
| 3557 record_unwind_protect (un_autoload, Vautoload_queue); | |
| 3558 Vautoload_queue = Qt; | |
| 3559 call4 (Qload, Fcar (Fcdr (fundef)), Qnil, noninteractive ? Qt : Qnil, Qnil); | |
| 3560 | |
| 3561 { | |
| 3562 Lisp_Object queue; | |
| 3563 | |
| 3564 /* Save the old autoloads, in case we ever do an unload. */ | |
| 3565 for (queue = Vautoload_queue; CONSP (queue); queue = XCDR (queue)) | |
| 3566 { | |
| 3567 Lisp_Object first = XCAR (queue); | |
| 3568 Lisp_Object second = Fcdr (first); | |
| 3569 | |
| 3570 first = Fcar (first); | |
| 3571 | |
| 3572 /* Note: This test is subtle. The cdr of an autoload-queue entry | |
| 3573 may be an atom if the autoload entry was generated by a defalias | |
| 3574 or fset. */ | |
| 3575 if (CONSP (second)) | |
| 3576 Fput (first, Qautoload, (XCDR (second))); | |
| 3577 } | |
| 3578 } | |
| 3579 | |
| 3580 /* Once loading finishes, don't undo it. */ | |
| 3581 Vautoload_queue = Qt; | |
| 771 | 3582 unbind_to (speccount); |
| 428 | 3583 |
| 3584 fun = indirect_function (fun, 0); | |
| 3585 | |
| 3586 #if 0 /* FSFmacs */ | |
| 3587 if (!NILP (Fequal (fun, fundef))) | |
| 3588 #else | |
| 3589 if (UNBOUNDP (fun) | |
| 3590 || (CONSP (fun) | |
| 3591 && EQ (XCAR (fun), Qautoload))) | |
| 3592 #endif | |
| 563 | 3593 invalid_state ("Autoloading failed to define function", funname); |
| 428 | 3594 UNGCPRO; |
| 3595 } | |
| 3596 | |
| 3597 | |
| 3598 /************************************************************************/ | |
| 3599 /* eval, funcall, apply */ | |
| 3600 /************************************************************************/ | |
| 3601 | |
| 814 | 3602 /* NOTE: If you are hearing the endless complaint that function calls in |
| 3603 elisp are extremely slow, it just isn't true any more! The stuff below | |
| 3604 -- in particular, the calling of subrs and compiled functions, the most | |
| 3605 common cases -- has been highly optimized. There isn't a whole lot left | |
| 3606 to do to squeeze more speed out except by switching to lexical | |
| 3607 variables, which would eliminate the specbind loop. (But the real gain | |
| 3608 from lexical variables would come from better optimization -- with | |
| 3609 dynamic binding, you have the constant problem that any function call | |
| 3610 that you haven't explicitly proven to be side-effect-free might | |
| 3611 potentially side effect your local variables, which makes optimization | |
| 3612 extremely difficult when there are function calls anywhere in a chunk of | |
| 3613 code to be optimized. Even worse, you don't know that *your* local | |
| 3614 variables aren't side-effecting an outer function's local variables, so | |
| 3615 it's impossible to optimize away almost *any* variable assignment.) */ | |
| 3616 | |
| 428 | 3617 static Lisp_Object funcall_lambda (Lisp_Object fun, |
| 442 | 3618 int nargs, Lisp_Object args[]); |
| 428 | 3619 static int in_warnings; |
| 3620 | |
| 3621 | |
| 814 | 3622 void handle_compiled_function_with_and_rest (Lisp_Compiled_Function *f, |
| 3623 int nargs, | |
| 3624 Lisp_Object args[]); | |
| 3625 | |
| 3626 /* The theory behind making this a separate function is to shrink | |
| 3627 funcall_compiled_function() so as to increase the likelihood of a cache | |
| 3628 hit in the L1 cache -- &rest processing is not going to be fast anyway. | |
| 3629 The idea is the same as with execute_rare_opcode() in bytecode.c. We | |
| 3630 make this non-static to ensure the compiler doesn't inline it. */ | |
| 3631 | |
| 3632 void | |
| 3633 handle_compiled_function_with_and_rest (Lisp_Compiled_Function *f, int nargs, | |
| 3634 Lisp_Object args[]) | |
| 3635 { | |
| 3636 REGISTER int i = 0; | |
| 3637 int max_non_rest_args = f->args_in_array - 1; | |
| 3638 int bindargs = min (nargs, max_non_rest_args); | |
| 3639 | |
| 3640 for (i = 0; i < bindargs; i++) | |
| 3092 | 3641 #ifdef NEW_GC |
| 3642 SPECBIND_FAST_UNSAFE (XCOMPILED_FUNCTION_ARGS_DATA (f->arguments)[i], | |
| 3643 args[i]); | |
| 3644 #else /* not NEW_GC */ | |
| 814 | 3645 SPECBIND_FAST_UNSAFE (f->args[i], args[i]); |
| 3092 | 3646 #endif /* not NEW_GC */ |
| 814 | 3647 for (i = bindargs; i < max_non_rest_args; i++) |
| 3092 | 3648 #ifdef NEW_GC |
| 3649 SPECBIND_FAST_UNSAFE (XCOMPILED_FUNCTION_ARGS_DATA (f->arguments)[i], | |
| 3650 Qnil); | |
| 3651 #else /* not NEW_GC */ | |
| 814 | 3652 SPECBIND_FAST_UNSAFE (f->args[i], Qnil); |
| 3092 | 3653 #endif /* not NEW_GC */ |
| 3654 #ifdef NEW_GC | |
| 3655 SPECBIND_FAST_UNSAFE | |
| 3656 (XCOMPILED_FUNCTION_ARGS_DATA (f->arguments)[max_non_rest_args], | |
| 3657 nargs > max_non_rest_args ? | |
| 3658 Flist (nargs - max_non_rest_args, &args[max_non_rest_args]) : | |
| 3659 Qnil); | |
| 3660 #else /* not NEW_GC */ | |
| 814 | 3661 SPECBIND_FAST_UNSAFE |
| 3662 (f->args[max_non_rest_args], | |
| 3663 nargs > max_non_rest_args ? | |
| 3664 Flist (nargs - max_non_rest_args, &args[max_non_rest_args]) : | |
| 3665 Qnil); | |
| 3092 | 3666 #endif /* not NEW_GC */ |
| 814 | 3667 } |
| 3668 | |
| 3669 /* Apply compiled-function object FUN to the NARGS evaluated arguments | |
| 3670 in ARGS, and return the result of evaluation. */ | |
| 3671 inline static Lisp_Object | |
| 3672 funcall_compiled_function (Lisp_Object fun, int nargs, Lisp_Object args[]) | |
| 3673 { | |
| 3674 /* This function can GC */ | |
| 3675 int speccount = specpdl_depth(); | |
| 3676 REGISTER int i = 0; | |
| 3677 Lisp_Compiled_Function *f = XCOMPILED_FUNCTION (fun); | |
| 3678 | |
| 3679 if (!OPAQUEP (f->instructions)) | |
| 3680 /* Lazily munge the instructions into a more efficient form */ | |
| 3681 optimize_compiled_function (fun); | |
| 3682 | |
| 3683 /* optimize_compiled_function() guaranteed that f->specpdl_depth is | |
| 3684 the required space on the specbinding stack for binding the args | |
| 3685 and local variables of fun. So just reserve it once. */ | |
| 3686 SPECPDL_RESERVE (f->specpdl_depth); | |
| 3687 | |
| 3688 if (nargs == f->max_args) /* Optimize for the common case -- no unspecified | |
| 3689 optional arguments. */ | |
| 3690 { | |
| 3691 #if 1 | |
| 3692 for (i = 0; i < nargs; i++) | |
| 3092 | 3693 #ifdef NEW_GC |
| 3694 SPECBIND_FAST_UNSAFE (XCOMPILED_FUNCTION_ARGS_DATA (f->arguments)[i], | |
| 3695 args[i]); | |
| 3696 #else /* not NEW_GC */ | |
| 814 | 3697 SPECBIND_FAST_UNSAFE (f->args[i], args[i]); |
| 3092 | 3698 #endif /* not NEW_GC */ |
| 814 | 3699 #else |
| 3700 /* Here's an alternate way to write the loop that tries to further | |
| 3701 optimize funcalls for functions with few arguments by partially | |
| 3702 unrolling the loop. It's not clear whether this is a win since it | |
| 3703 increases the size of the function and the possibility of L1 cache | |
| 3704 misses. (Microsoft VC++ 6 with /O2 /G5 generates 0x90 == 144 bytes | |
| 3705 per SPECBIND_FAST_UNSAFE().) Tests under VC++ 6, running the byte | |
| 3706 compiler repeatedly and looking at the total time, show very | |
| 3707 little difference between the simple loop above, the unrolled code | |
| 3708 below, and a "partly unrolled" solution with only cases 0-2 below | |
| 3709 instead of 0-4. Therefore, I'm keeping it at the simple loop | |
| 3710 because it's smaller. */ | |
| 3711 switch (nargs) | |
| 3712 { | |
| 3713 default: | |
| 3714 for (i = nargs - 1; i >= 4; i--) | |
| 3715 SPECBIND_FAST_UNSAFE (f->args[i], args[i]); | |
| 3716 case 4: SPECBIND_FAST_UNSAFE (f->args[3], args[3]); | |
| 3717 case 3: SPECBIND_FAST_UNSAFE (f->args[2], args[2]); | |
| 3718 case 2: SPECBIND_FAST_UNSAFE (f->args[1], args[1]); | |
| 3719 case 1: SPECBIND_FAST_UNSAFE (f->args[0], args[0]); | |
| 3720 case 0: break; | |
| 3721 } | |
| 3722 #endif | |
| 3723 } | |
| 3724 else if (nargs < f->min_args) | |
| 3725 goto wrong_number_of_arguments; | |
| 3726 else if (nargs < f->max_args) | |
| 3727 { | |
| 3728 for (i = 0; i < nargs; i++) | |
| 3092 | 3729 #ifdef NEW_GC |
| 3730 SPECBIND_FAST_UNSAFE (XCOMPILED_FUNCTION_ARGS_DATA (f->arguments)[i], | |
| 3731 args[i]); | |
| 3732 #else /* not NEW_GC */ | |
| 814 | 3733 SPECBIND_FAST_UNSAFE (f->args[i], args[i]); |
| 3092 | 3734 #endif /* not NEW_GC */ |
| 814 | 3735 for (i = nargs; i < f->max_args; i++) |
| 3092 | 3736 #ifdef NEW_GC |
| 3737 SPECBIND_FAST_UNSAFE (XCOMPILED_FUNCTION_ARGS_DATA (f->arguments)[i], | |
| 3738 Qnil); | |
| 3739 #else /* not NEW_GC */ | |
| 814 | 3740 SPECBIND_FAST_UNSAFE (f->args[i], Qnil); |
| 3092 | 3741 #endif /* not NEW_GC */ |
| 814 | 3742 } |
| 3743 else if (f->max_args == MANY) | |
| 3744 handle_compiled_function_with_and_rest (f, nargs, args); | |
| 3745 else | |
| 3746 { | |
| 3747 wrong_number_of_arguments: | |
| 3748 /* The actual printed compiled_function object is incomprehensible. | |
| 3749 Check the backtrace to see if we can get a more meaningful symbol. */ | |
| 3750 if (EQ (fun, indirect_function (*backtrace_list->function, 0))) | |
| 3751 fun = *backtrace_list->function; | |
| 3752 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
|
3753 list2 (fun, make_fixnum (nargs))); |
| 814 | 3754 } |
| 3755 | |
| 3756 { | |
| 3757 Lisp_Object value = | |
| 3758 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
|
3759 #ifdef ERROR_CHECK_BYTE_CODE |
|
17362f371cc2
add more byte-code assertions and better failure output
Ben Wing <ben@xemacs.org>
parents:
4905
diff
changeset
|
3760 XOPAQUE_SIZE (f->instructions) / |
|
17362f371cc2
add more byte-code assertions and better failure output
Ben Wing <ben@xemacs.org>
parents:
4905
diff
changeset
|
3761 sizeof (Opbyte), |
|
17362f371cc2
add more byte-code assertions and better failure output
Ben Wing <ben@xemacs.org>
parents:
4905
diff
changeset
|
3762 #endif |
| 814 | 3763 f->stack_depth, |
| 3764 XVECTOR_DATA (f->constants)); | |
| 3765 | |
| 3766 /* The attempt to optimize this by only unbinding variables failed | |
| 3767 because using buffer-local variables as function parameters | |
| 3768 leads to specpdl_ptr->func != 0 */ | |
| 3769 /* UNBIND_TO_GCPRO_VARIABLES_ONLY (speccount, value); */ | |
| 3770 UNBIND_TO_GCPRO (speccount, value); | |
| 3771 return value; | |
| 3772 } | |
| 3773 } | |
| 3774 | |
| 428 | 3775 DEFUN ("eval", Feval, 1, 1, 0, /* |
| 3776 Evaluate FORM and return its value. | |
| 3777 */ | |
| 3778 (form)) | |
| 3779 { | |
| 3780 /* This function can GC */ | |
| 3781 Lisp_Object fun, val, original_fun, original_args; | |
| 3782 int nargs; | |
| 4162 | 3783 PROFILE_DECLARE(); |
| 428 | 3784 |
| 1318 | 3785 #ifdef ERROR_CHECK_TRAPPING_PROBLEMS |
| 3786 check_proper_critical_section_lisp_protection (); | |
| 3787 #endif | |
| 3788 | |
| 3989 | 3789 if (!CONSP (form)) |
| 3790 { | |
| 3791 if (SYMBOLP (form)) | |
| 3792 { | |
| 3793 return Fsymbol_value (form); | |
| 3794 } | |
| 3795 | |
| 3796 return form; | |
| 3797 } | |
| 3798 | |
| 428 | 3799 /* I think this is a pretty safe place to call Lisp code, don't you? */ |
| 853 | 3800 while (!in_warnings && !NILP (Vpending_warnings) |
| 3801 /* well, perhaps not so safe after all! */ | |
| 3802 && !(inhibit_flags & INHIBIT_ANY_CHANGE_AFFECTING_REDISPLAY)) | |
| 428 | 3803 { |
| 3804 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; | |
| 1204 | 3805 Lisp_Object this_warning_cons, this_warning, class_, level, messij; |
| 853 | 3806 int speccount = internal_bind_int (&in_warnings, 1); |
| 3807 | |
| 428 | 3808 this_warning_cons = Vpending_warnings; |
| 3809 this_warning = XCAR (this_warning_cons); | |
| 3810 /* in case an error occurs in the warn function, at least | |
| 3811 it won't happen infinitely */ | |
| 3812 Vpending_warnings = XCDR (Vpending_warnings); | |
| 853 | 3813 free_cons (this_warning_cons); |
| 1204 | 3814 class_ = XCAR (this_warning); |
| 428 | 3815 level = XCAR (XCDR (this_warning)); |
| 3816 messij = XCAR (XCDR (XCDR (this_warning))); | |
| 3817 free_list (this_warning); | |
| 3818 | |
| 3819 if (NILP (Vpending_warnings)) | |
| 3820 Vpending_warnings_tail = Qnil; /* perhaps not strictly necessary, | |
| 3821 but safer */ | |
| 3822 | |
| 1204 | 3823 GCPRO4 (form, class_, level, messij); |
| 428 | 3824 if (!STRINGP (messij)) |
| 3825 messij = Fprin1_to_string (messij, Qnil); | |
| 1204 | 3826 call3 (Qdisplay_warning, class_, messij, level); |
| 428 | 3827 UNGCPRO; |
| 771 | 3828 unbind_to (speccount); |
| 428 | 3829 } |
| 3830 | |
| 3831 QUIT; | |
| 814 | 3832 if (need_to_garbage_collect) |
| 428 | 3833 { |
| 3834 struct gcpro gcpro1; | |
| 3835 GCPRO1 (form); | |
| 3092 | 3836 #ifdef NEW_GC |
| 3837 gc_incremental (); | |
| 3838 #else /* not NEW_GC */ | |
| 428 | 3839 garbage_collect_1 (); |
| 3092 | 3840 #endif /* not NEW_GC */ |
| 428 | 3841 UNGCPRO; |
| 3842 } | |
| 3843 | |
| 3844 if (++lisp_eval_depth > max_lisp_eval_depth) | |
| 3845 { | |
| 3846 if (max_lisp_eval_depth < 100) | |
| 3847 max_lisp_eval_depth = 100; | |
| 3848 if (lisp_eval_depth > max_lisp_eval_depth) | |
| 563 | 3849 stack_overflow ("Lisp nesting exceeds `max-lisp-eval-depth'", |
| 3850 Qunbound); | |
| 428 | 3851 } |
| 3852 | |
| 3853 /* We guaranteed CONSP (form) above */ | |
| 3854 original_fun = XCAR (form); | |
| 3855 original_args = XCDR (form); | |
| 3856 | |
| 3857 GET_EXTERNAL_LIST_LENGTH (original_args, nargs); | |
| 3858 | |
| 3859 backtrace.pdlcount = specpdl_depth(); | |
| 3860 backtrace.function = &original_fun; /* This also protects them from gc */ | |
| 3861 backtrace.args = &original_args; | |
| 3862 backtrace.nargs = UNEVALLED; | |
| 3863 backtrace.evalargs = 1; | |
| 3864 backtrace.debug_on_exit = 0; | |
| 1292 | 3865 backtrace.function_being_called = 0; |
| 428 | 3866 PUSH_BACKTRACE (backtrace); |
| 3867 | |
| 3868 if (debug_on_next_call) | |
| 3869 do_debug_on_call (Qt); | |
| 3870 | |
| 3871 /* At this point, only original_fun and original_args | |
| 3872 have values that will be used below. */ | |
| 3873 retry: | |
| 3989 | 3874 /* Optimise for no indirection. */ |
| 3875 fun = original_fun; | |
| 3876 if (SYMBOLP (fun) && !EQ (fun, Qunbound) | |
| 3877 && (fun = XSYMBOL (fun)->function, SYMBOLP (fun))) | |
| 3878 { | |
| 3879 fun = indirect_function(original_fun, 1); | |
| 3880 } | |
| 428 | 3881 |
| 3882 if (SUBRP (fun)) | |
| 3883 { | |
| 3884 Lisp_Subr *subr = XSUBR (fun); | |
| 3885 int max_args = subr->max_args; | |
| 3886 | |
| 3887 if (nargs < subr->min_args) | |
| 3888 goto wrong_number_of_arguments; | |
| 3889 | |
| 3890 if (max_args == UNEVALLED) /* Optimize for the common case */ | |
| 3891 { | |
| 3892 backtrace.evalargs = 0; | |
| 1292 | 3893 PROFILE_ENTER_FUNCTION (); |
| 428 | 3894 val = (((Lisp_Object (*) (Lisp_Object)) subr_function (subr)) |
| 3895 (original_args)); | |
| 1292 | 3896 PROFILE_EXIT_FUNCTION (); |
| 428 | 3897 } |
| 3898 else if (nargs <= max_args) | |
| 3899 { | |
| 3900 struct gcpro gcpro1; | |
| 3901 Lisp_Object args[SUBR_MAX_ARGS]; | |
| 3902 REGISTER Lisp_Object *p = args; | |
| 3903 | |
| 3904 GCPRO1 (args[0]); | |
| 3905 gcpro1.nvars = 0; | |
| 3906 | |
| 3907 { | |
| 3908 LIST_LOOP_2 (arg, original_args) | |
| 3909 { | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
3910 *p++ = IGNORE_MULTIPLE_VALUES (Feval (arg)); |
| 428 | 3911 gcpro1.nvars++; |
| 3912 } | |
| 3913 } | |
| 3914 | |
| 3915 /* &optional args default to nil. */ | |
| 3916 while (p - args < max_args) | |
| 3917 *p++ = Qnil; | |
| 3918 | |
| 3919 backtrace.args = args; | |
| 3920 backtrace.nargs = nargs; | |
| 3921 | |
| 1292 | 3922 PROFILE_ENTER_FUNCTION (); |
| 428 | 3923 FUNCALL_SUBR (val, subr, args, max_args); |
| 1292 | 3924 PROFILE_EXIT_FUNCTION (); |
| 428 | 3925 |
| 3926 UNGCPRO; | |
| 3927 } | |
| 3928 else if (max_args == MANY) | |
| 3929 { | |
| 3930 /* Pass a vector of evaluated arguments */ | |
| 3931 struct gcpro gcpro1; | |
| 3932 Lisp_Object *args = alloca_array (Lisp_Object, nargs); | |
| 3933 REGISTER Lisp_Object *p = args; | |
| 3934 | |
| 3935 GCPRO1 (args[0]); | |
| 3936 gcpro1.nvars = 0; | |
| 3937 | |
| 3938 { | |
| 3939 LIST_LOOP_2 (arg, original_args) | |
| 3940 { | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
3941 *p++ = IGNORE_MULTIPLE_VALUES (Feval (arg)); |
| 428 | 3942 gcpro1.nvars++; |
| 3943 } | |
| 3944 } | |
| 3945 | |
| 3946 backtrace.args = args; | |
| 3947 backtrace.nargs = nargs; | |
| 3948 | |
| 1292 | 3949 PROFILE_ENTER_FUNCTION (); |
| 428 | 3950 val = (((Lisp_Object (*) (int, Lisp_Object *)) subr_function (subr)) |
| 3951 (nargs, args)); | |
| 1292 | 3952 PROFILE_EXIT_FUNCTION (); |
| 428 | 3953 |
| 3954 UNGCPRO; | |
| 3955 } | |
| 3956 else | |
| 3957 { | |
| 3958 wrong_number_of_arguments: | |
| 440 | 3959 val = signal_wrong_number_of_arguments_error (original_fun, nargs); |
| 428 | 3960 } |
| 3961 } | |
| 3962 else if (COMPILED_FUNCTIONP (fun)) | |
| 3963 { | |
| 3964 struct gcpro gcpro1; | |
| 3965 Lisp_Object *args = alloca_array (Lisp_Object, nargs); | |
| 3966 REGISTER Lisp_Object *p = args; | |
| 3967 | |
| 3968 GCPRO1 (args[0]); | |
| 3969 gcpro1.nvars = 0; | |
| 3970 | |
| 3971 { | |
| 3972 LIST_LOOP_2 (arg, original_args) | |
| 3973 { | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
3974 *p++ = IGNORE_MULTIPLE_VALUES (Feval (arg)); |
| 428 | 3975 gcpro1.nvars++; |
| 3976 } | |
| 3977 } | |
| 3978 | |
| 3979 backtrace.args = args; | |
| 3980 backtrace.nargs = nargs; | |
| 3981 backtrace.evalargs = 0; | |
| 3982 | |
| 1292 | 3983 PROFILE_ENTER_FUNCTION (); |
| 428 | 3984 val = funcall_compiled_function (fun, nargs, args); |
| 1292 | 3985 PROFILE_EXIT_FUNCTION (); |
| 428 | 3986 |
| 3987 /* Do the debug-on-exit now, while args is still GCPROed. */ | |
| 3988 if (backtrace.debug_on_exit) | |
| 3989 val = do_debug_on_exit (val); | |
| 3990 /* Don't do it again when we return to eval. */ | |
| 3991 backtrace.debug_on_exit = 0; | |
| 3992 | |
| 3993 UNGCPRO; | |
| 3994 } | |
| 3995 else if (CONSP (fun)) | |
| 3996 { | |
| 3997 Lisp_Object funcar = XCAR (fun); | |
| 3998 | |
| 3999 if (EQ (funcar, Qautoload)) | |
| 4000 { | |
| 970 | 4001 /* do_autoload GCPROs both arguments */ |
| 428 | 4002 do_autoload (fun, original_fun); |
| 4003 goto retry; | |
| 4004 } | |
| 4005 else if (EQ (funcar, Qmacro)) | |
| 4006 { | |
| 1292 | 4007 PROFILE_ENTER_FUNCTION (); |
| 428 | 4008 val = Feval (apply1 (XCDR (fun), original_args)); |
| 1292 | 4009 PROFILE_EXIT_FUNCTION (); |
| 428 | 4010 } |
| 4011 else if (EQ (funcar, Qlambda)) | |
| 4012 { | |
| 4013 struct gcpro gcpro1; | |
| 4014 Lisp_Object *args = alloca_array (Lisp_Object, nargs); | |
| 4015 REGISTER Lisp_Object *p = args; | |
| 4016 | |
| 4017 GCPRO1 (args[0]); | |
| 4018 gcpro1.nvars = 0; | |
| 4019 | |
| 4020 { | |
| 4021 LIST_LOOP_2 (arg, original_args) | |
| 4022 { | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4023 *p++ = IGNORE_MULTIPLE_VALUES (Feval (arg)); |
| 428 | 4024 gcpro1.nvars++; |
| 4025 } | |
| 4026 } | |
| 4027 | |
| 4028 UNGCPRO; | |
| 4029 | |
| 4030 backtrace.args = args; /* this also GCPROs `args' */ | |
| 4031 backtrace.nargs = nargs; | |
| 4032 backtrace.evalargs = 0; | |
| 4033 | |
| 1292 | 4034 PROFILE_ENTER_FUNCTION (); |
| 428 | 4035 val = funcall_lambda (fun, nargs, args); |
| 1292 | 4036 PROFILE_EXIT_FUNCTION (); |
| 428 | 4037 |
| 4038 /* Do the debug-on-exit now, while args is still GCPROed. */ | |
| 4039 if (backtrace.debug_on_exit) | |
| 4040 val = do_debug_on_exit (val); | |
| 4041 /* Don't do it again when we return to eval. */ | |
| 4042 backtrace.debug_on_exit = 0; | |
| 4043 } | |
| 4044 else | |
| 4045 { | |
| 4046 goto invalid_function; | |
| 4047 } | |
| 4048 } | |
| 4104 | 4049 else if (UNBOUNDP (fun)) |
| 4050 { | |
| 4051 val = signal_void_function_error (original_fun); | |
| 4052 } | |
| 4053 else /* ! (SUBRP (fun) || COMPILED_FUNCTIONP (fun) || CONSP (fun) | |
| 4054 UNBOUNDP (fun)) */ | |
| 428 | 4055 { |
| 4056 invalid_function: | |
| 436 | 4057 val = signal_invalid_function_error (fun); |
| 428 | 4058 } |
| 4059 | |
| 4060 lisp_eval_depth--; | |
| 4061 if (backtrace.debug_on_exit) | |
| 4062 val = do_debug_on_exit (val); | |
| 4063 POP_BACKTRACE (backtrace); | |
| 4064 return val; | |
| 4065 } | |
| 4066 | |
| 4067 | |
| 1111 | 4068 |
| 4069 static void | |
| 4070 run_post_gc_hook (void) | |
| 4071 { | |
| 4072 Lisp_Object args[2]; | |
| 4073 | |
| 4074 args[0] = Qpost_gc_hook; | |
| 4075 args[1] = Fcons (Fcons (Qfinalize_list, zap_finalize_list ()), Qnil); | |
| 4076 | |
| 4077 run_hook_with_args_trapping_problems | |
| 1333 | 4078 (Qgarbage_collecting, 2, args, RUN_HOOKS_TO_COMPLETION, |
| 1111 | 4079 INHIBIT_QUIT | NO_INHIBIT_ERRORS); |
| 4080 } | |
| 4081 | |
| 428 | 4082 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
|
4083 Call FUNCTION as a function, passing the remaining arguments to it. |
| 428 | 4084 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
|
4085 |
|
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
4086 arguments: (FUNCTION &rest ARGS) |
| 428 | 4087 */ |
| 4088 (int nargs, Lisp_Object *args)) | |
| 4089 { | |
| 4090 /* This function can GC */ | |
| 4091 Lisp_Object fun; | |
| 4092 Lisp_Object val; | |
| 4162 | 4093 PROFILE_DECLARE(); |
| 428 | 4094 int fun_nargs = nargs - 1; |
| 4095 Lisp_Object *fun_args = args + 1; | |
| 4096 | |
| 1318 | 4097 /* QUIT will check for proper redisplay wrapping */ |
| 4098 | |
| 428 | 4099 QUIT; |
| 851 | 4100 |
| 4101 if (funcall_allocation_flag) | |
| 4102 { | |
| 4103 if (need_to_garbage_collect) | |
| 4104 /* Callers should gcpro lexpr args */ | |
| 3092 | 4105 #ifdef NEW_GC |
| 4106 gc_incremental (); | |
| 4107 #else /* not NEW_GC */ | |
| 851 | 4108 garbage_collect_1 (); |
| 3092 | 4109 #endif /* not NEW_GC */ |
| 851 | 4110 if (need_to_check_c_alloca) |
| 4111 { | |
| 4112 if (++funcall_alloca_count >= MAX_FUNCALLS_BETWEEN_ALLOCA_CLEANUP) | |
| 4113 { | |
| 4114 xemacs_c_alloca (0); | |
| 4115 funcall_alloca_count = 0; | |
| 4116 } | |
| 4117 } | |
| 887 | 4118 if (need_to_signal_post_gc) |
| 4119 { | |
| 4120 need_to_signal_post_gc = 0; | |
| 1111 | 4121 recompute_funcall_allocation_flag (); |
| 3263 | 4122 #ifdef NEW_GC |
| 4123 run_finalizers (); | |
| 4124 #endif /* NEW_GC */ | |
| 1111 | 4125 run_post_gc_hook (); |
| 887 | 4126 } |
| 851 | 4127 } |
| 428 | 4128 |
| 4129 if (++lisp_eval_depth > max_lisp_eval_depth) | |
| 4130 { | |
| 4131 if (max_lisp_eval_depth < 100) | |
| 4132 max_lisp_eval_depth = 100; | |
| 4133 if (lisp_eval_depth > max_lisp_eval_depth) | |
| 563 | 4134 stack_overflow ("Lisp nesting exceeds `max-lisp-eval-depth'", |
| 4135 Qunbound); | |
| 428 | 4136 } |
| 4137 | |
| 1292 | 4138 backtrace.pdlcount = specpdl_depth (); |
| 428 | 4139 backtrace.function = &args[0]; |
| 4140 backtrace.args = fun_args; | |
| 4141 backtrace.nargs = fun_nargs; | |
| 4142 backtrace.evalargs = 0; | |
| 4143 backtrace.debug_on_exit = 0; | |
| 1292 | 4144 backtrace.function_being_called = 0; |
| 428 | 4145 PUSH_BACKTRACE (backtrace); |
| 4146 | |
| 4147 if (debug_on_next_call) | |
| 4148 do_debug_on_call (Qlambda); | |
| 4149 | |
| 4150 retry: | |
| 4151 | |
| 4152 fun = args[0]; | |
| 4153 | |
| 4154 /* We could call indirect_function directly, but profiling shows | |
| 4155 this is worth optimizing by partially unrolling the loop. */ | |
| 4156 if (SYMBOLP (fun)) | |
| 4157 { | |
| 4158 fun = XSYMBOL (fun)->function; | |
| 4159 if (SYMBOLP (fun)) | |
| 4160 { | |
| 4161 fun = XSYMBOL (fun)->function; | |
| 4162 if (SYMBOLP (fun)) | |
| 4163 fun = indirect_function (fun, 1); | |
| 4164 } | |
| 4165 } | |
| 4166 | |
| 4167 if (SUBRP (fun)) | |
| 4168 { | |
| 4169 Lisp_Subr *subr = XSUBR (fun); | |
| 4170 int max_args = subr->max_args; | |
| 4171 Lisp_Object spacious_args[SUBR_MAX_ARGS]; | |
| 4172 | |
| 4173 if (fun_nargs == max_args) /* Optimize for the common case */ | |
| 4174 { | |
| 4175 funcall_subr: | |
| 1292 | 4176 PROFILE_ENTER_FUNCTION (); |
| 428 | 4177 FUNCALL_SUBR (val, subr, fun_args, max_args); |
| 1292 | 4178 PROFILE_EXIT_FUNCTION (); |
| 428 | 4179 } |
| 436 | 4180 else if (fun_nargs < subr->min_args) |
| 4181 { | |
| 4182 goto wrong_number_of_arguments; | |
| 4183 } | |
| 428 | 4184 else if (fun_nargs < max_args) |
| 4185 { | |
| 4186 Lisp_Object *p = spacious_args; | |
| 4187 | |
| 4188 /* Default optionals to nil */ | |
| 4189 while (fun_nargs--) | |
| 4190 *p++ = *fun_args++; | |
| 4191 while (p - spacious_args < max_args) | |
| 4192 *p++ = Qnil; | |
| 4193 | |
| 4194 fun_args = spacious_args; | |
| 4195 goto funcall_subr; | |
| 4196 } | |
| 4197 else if (max_args == MANY) | |
| 4198 { | |
| 1292 | 4199 PROFILE_ENTER_FUNCTION (); |
| 436 | 4200 val = SUBR_FUNCTION (subr, MANY) (fun_nargs, fun_args); |
| 1292 | 4201 PROFILE_EXIT_FUNCTION (); |
| 428 | 4202 } |
|
4905
755ae5b97edb
Change "special form" to "special operator" in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4846
diff
changeset
|
4203 else if (max_args == UNEVALLED) /* Can't funcall a special operator */ |
| 428 | 4204 { |
|
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
|
4205 |
|
18c0b5909d16
Use keywords in structure syntax; new #define, NEED_TO_HANDLE_21_4_CODE 1
Aidan Kehoe <kehoea@parhasard.net>
parents:
5207
diff
changeset
|
4206 #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
|
4207 /* Ugh, ugh, ugh. */ |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4208 if (EQ (fun, XSYMBOL_FUNCTION (Qthrow))) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4209 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4210 args[0] = Qobsolete_throw; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4211 goto retry; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4212 } |
|
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
|
4213 #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
|
4214 |
| 428 | 4215 goto invalid_function; |
| 4216 } | |
| 4217 else | |
| 4218 { | |
| 4219 wrong_number_of_arguments: | |
| 436 | 4220 val = signal_wrong_number_of_arguments_error (fun, fun_nargs); |
| 428 | 4221 } |
| 4222 } | |
| 4223 else if (COMPILED_FUNCTIONP (fun)) | |
| 4224 { | |
| 1292 | 4225 PROFILE_ENTER_FUNCTION (); |
| 428 | 4226 val = funcall_compiled_function (fun, fun_nargs, fun_args); |
| 1292 | 4227 PROFILE_EXIT_FUNCTION (); |
| 428 | 4228 } |
| 4229 else if (CONSP (fun)) | |
| 4230 { | |
| 4231 Lisp_Object funcar = XCAR (fun); | |
| 4232 | |
| 4233 if (EQ (funcar, Qlambda)) | |
| 4234 { | |
| 1292 | 4235 PROFILE_ENTER_FUNCTION (); |
| 428 | 4236 val = funcall_lambda (fun, fun_nargs, fun_args); |
| 1292 | 4237 PROFILE_EXIT_FUNCTION (); |
| 428 | 4238 } |
| 4239 else if (EQ (funcar, Qautoload)) | |
| 4240 { | |
| 970 | 4241 /* do_autoload GCPROs both arguments */ |
| 428 | 4242 do_autoload (fun, args[0]); |
| 4243 goto retry; | |
| 4244 } | |
| 4245 else /* Can't funcall a macro */ | |
| 4246 { | |
| 4247 goto invalid_function; | |
| 4248 } | |
| 4249 } | |
| 4250 else if (UNBOUNDP (fun)) | |
| 4251 { | |
| 436 | 4252 val = signal_void_function_error (args[0]); |
| 428 | 4253 } |
| 4254 else | |
| 4255 { | |
| 4256 invalid_function: | |
| 436 | 4257 val = signal_invalid_function_error (fun); |
| 428 | 4258 } |
| 4259 | |
| 4260 lisp_eval_depth--; | |
| 4261 if (backtrace.debug_on_exit) | |
| 4262 val = do_debug_on_exit (val); | |
| 4263 POP_BACKTRACE (backtrace); | |
| 4264 return val; | |
| 4265 } | |
| 4266 | |
| 4267 DEFUN ("functionp", Ffunctionp, 1, 1, 0, /* | |
| 4268 Return t if OBJECT can be called as a function, else nil. | |
| 4269 A function is an object that can be applied to arguments, | |
| 4270 using for example `funcall' or `apply'. | |
| 4271 */ | |
| 4272 (object)) | |
| 4273 { | |
| 4274 if (SYMBOLP (object)) | |
| 4275 object = indirect_function (object, 0); | |
| 4276 | |
|
4795
084056f46755
#'functionp gives nil for special forms, as in CL and GNU Emacs 23.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4744
diff
changeset
|
4277 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
|
4278 || (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
|
4279 && (XSUBR (object)->max_args != UNEVALLED))) |
| 919 | 4280 return Qt; |
| 4281 if (CONSP (object)) | |
| 4282 { | |
| 4283 Lisp_Object car = XCAR (object); | |
| 4284 if (EQ (car, Qlambda)) | |
| 4285 return Qt; | |
| 4286 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
|
4287 && 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
|
4288 (Fcdr_safe (XCDR (object))))))) |
| 919 | 4289 return Qt; |
| 4290 } | |
| 4291 return Qnil; | |
| 428 | 4292 } |
| 4293 | |
| 4294 static Lisp_Object | |
| 4295 function_argcount (Lisp_Object function, int function_min_args_p) | |
| 4296 { | |
| 4297 Lisp_Object orig_function = function; | |
| 4298 Lisp_Object arglist; | |
| 4299 | |
| 4300 retry: | |
| 4301 | |
| 4302 if (SYMBOLP (function)) | |
| 4303 function = indirect_function (function, 1); | |
| 4304 | |
| 4305 if (SUBRP (function)) | |
| 4306 { | |
| 442 | 4307 /* Using return with the ?: operator tickles a DEC CC compiler bug. */ |
| 4308 if (function_min_args_p) | |
| 4309 return Fsubr_min_args (function); | |
| 4310 else | |
| 4311 return Fsubr_max_args (function); | |
| 428 | 4312 } |
| 4313 else if (COMPILED_FUNCTIONP (function)) | |
| 4314 { | |
| 814 | 4315 Lisp_Compiled_Function *f = XCOMPILED_FUNCTION (function); |
| 4316 | |
| 1737 | 4317 if (!OPAQUEP (f->instructions)) |
| 4318 /* Lazily munge the instructions into a more efficient form */ | |
| 4319 /* Needed to set max_args */ | |
| 4320 optimize_compiled_function (function); | |
| 4321 | |
| 814 | 4322 if (function_min_args_p) |
|
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
4323 return make_fixnum (f->min_args); |
| 814 | 4324 else if (f->max_args == MANY) |
| 4325 return Qnil; | |
| 4326 else | |
|
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
4327 return make_fixnum (f->max_args); |
| 428 | 4328 } |
| 4329 else if (CONSP (function)) | |
| 4330 { | |
| 4331 Lisp_Object funcar = XCAR (function); | |
| 4332 | |
| 4333 if (EQ (funcar, Qmacro)) | |
| 4334 { | |
| 4335 function = XCDR (function); | |
| 4336 goto retry; | |
| 4337 } | |
| 4338 else if (EQ (funcar, Qautoload)) | |
| 4339 { | |
| 970 | 4340 /* do_autoload GCPROs both arguments */ |
| 428 | 4341 do_autoload (function, orig_function); |
| 442 | 4342 function = orig_function; |
| 428 | 4343 goto retry; |
| 4344 } | |
| 4345 else if (EQ (funcar, Qlambda)) | |
| 4346 { | |
| 4347 arglist = Fcar (XCDR (function)); | |
| 4348 } | |
| 4349 else | |
| 4350 { | |
| 4351 goto invalid_function; | |
| 4352 } | |
| 4353 } | |
| 4354 else | |
| 4355 { | |
| 4356 invalid_function: | |
| 442 | 4357 return signal_invalid_function_error (orig_function); |
| 428 | 4358 } |
| 4359 | |
| 4360 { | |
| 4361 int argcount = 0; | |
| 4362 | |
| 4363 EXTERNAL_LIST_LOOP_2 (arg, arglist) | |
| 4364 { | |
| 4365 if (EQ (arg, Qand_optional)) | |
| 4366 { | |
| 4367 if (function_min_args_p) | |
| 4368 break; | |
| 4369 } | |
| 4370 else if (EQ (arg, Qand_rest)) | |
| 4371 { | |
| 4372 if (function_min_args_p) | |
| 4373 break; | |
| 4374 else | |
| 4375 return Qnil; | |
| 4376 } | |
| 4377 else | |
| 4378 { | |
| 4379 argcount++; | |
| 4380 } | |
| 4381 } | |
| 4382 | |
|
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
4383 return make_fixnum (argcount); |
| 428 | 4384 } |
| 4385 } | |
| 4386 | |
| 4387 DEFUN ("function-min-args", Ffunction_min_args, 1, 1, 0, /* | |
| 617 | 4388 Return the minimum number of arguments a function may be called with. |
| 428 | 4389 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
|
4390 any special operator, or any macro. |
| 853 | 4391 |
| 4392 To check if a function can be called with a specified number of | |
| 4393 arguments, use `function-allows-args'. | |
| 428 | 4394 */ |
| 4395 (function)) | |
| 4396 { | |
| 4397 return function_argcount (function, 1); | |
| 4398 } | |
| 4399 | |
| 4400 DEFUN ("function-max-args", Ffunction_max_args, 1, 1, 0, /* | |
| 617 | 4401 Return the maximum number of arguments a function may be called with. |
| 428 | 4402 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
|
4403 any special operator, or any macro. |
| 428 | 4404 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
|
4405 a built-in special operator, nil is returned. |
| 853 | 4406 |
| 4407 To check if a function can be called with a specified number of | |
| 4408 arguments, use `function-allows-args'. | |
| 428 | 4409 */ |
| 4410 (function)) | |
| 4411 { | |
| 4412 return function_argcount (function, 0); | |
| 4413 } | |
| 4414 | |
| 4415 | |
| 4416 DEFUN ("apply", Fapply, 2, MANY, 0, /* | |
| 4417 Call FUNCTION with the remaining args, using the last arg as a list of args. | |
| 4418 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
|
4419 |
|
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
4420 arguments: (FUNCTION &rest ARGS) |
| 428 | 4421 */ |
| 4422 (int nargs, Lisp_Object *args)) | |
| 4423 { | |
| 4424 /* This function can GC */ | |
| 4425 Lisp_Object fun = args[0]; | |
| 4426 Lisp_Object spread_arg = args [nargs - 1]; | |
| 4427 int numargs; | |
| 4428 int funcall_nargs; | |
| 4429 | |
| 4430 GET_EXTERNAL_LIST_LENGTH (spread_arg, numargs); | |
| 4431 | |
| 4432 if (numargs == 0) | |
| 4433 /* (apply foo 0 1 '()) */ | |
| 4434 return Ffuncall (nargs - 1, args); | |
| 4435 else if (numargs == 1) | |
| 4436 { | |
| 4437 /* (apply foo 0 1 '(2)) */ | |
| 4438 args [nargs - 1] = XCAR (spread_arg); | |
| 4439 return Ffuncall (nargs, args); | |
| 4440 } | |
| 4441 | |
| 4442 /* -1 for function, -1 for spread arg */ | |
| 4443 numargs = nargs - 2 + numargs; | |
| 4444 /* +1 for function */ | |
| 4445 funcall_nargs = 1 + numargs; | |
| 4446 | |
| 4447 if (SYMBOLP (fun)) | |
| 4448 fun = indirect_function (fun, 0); | |
| 4449 | |
| 4450 if (SUBRP (fun)) | |
| 4451 { | |
| 4452 Lisp_Subr *subr = XSUBR (fun); | |
| 4453 int max_args = subr->max_args; | |
| 4454 | |
| 4455 if (numargs < subr->min_args | |
| 4456 || (max_args >= 0 && max_args < numargs)) | |
| 4457 { | |
| 4458 /* Let funcall get the error */ | |
| 4459 } | |
| 4460 else if (max_args > numargs) | |
| 4461 { | |
| 4462 /* Avoid having funcall cons up yet another new vector of arguments | |
| 4463 by explicitly supplying nil's for optional values */ | |
| 4464 funcall_nargs += (max_args - numargs); | |
| 4465 } | |
| 4466 } | |
| 4467 else if (UNBOUNDP (fun)) | |
| 4468 { | |
| 4469 /* Let funcall get the error */ | |
| 4470 fun = args[0]; | |
| 4471 } | |
| 4472 | |
| 4473 { | |
| 4474 REGISTER int i; | |
| 4475 Lisp_Object *funcall_args = alloca_array (Lisp_Object, funcall_nargs); | |
| 4476 struct gcpro gcpro1; | |
| 4477 | |
| 4478 GCPRO1 (*funcall_args); | |
| 4479 gcpro1.nvars = funcall_nargs; | |
| 4480 | |
| 4481 /* Copy in the unspread args */ | |
| 4482 memcpy (funcall_args, args, (nargs - 1) * sizeof (Lisp_Object)); | |
| 4483 /* Spread the last arg we got. Its first element goes in | |
| 4484 the slot that it used to occupy, hence this value of I. */ | |
| 4485 for (i = nargs - 1; | |
| 4486 !NILP (spread_arg); /* i < 1 + numargs */ | |
| 4487 i++, spread_arg = XCDR (spread_arg)) | |
| 4488 { | |
| 4489 funcall_args [i] = XCAR (spread_arg); | |
| 4490 } | |
| 4491 /* Supply nil for optional args (to subrs) */ | |
| 4492 for (; i < funcall_nargs; i++) | |
| 4493 funcall_args[i] = Qnil; | |
| 4494 | |
| 4495 | |
| 4496 RETURN_UNGCPRO (Ffuncall (funcall_nargs, funcall_args)); | |
| 4497 } | |
| 4498 } | |
| 4499 | |
| 4500 /* Apply lambda list FUN to the NARGS evaluated arguments in ARGS and | |
| 4501 return the result of evaluation. */ | |
| 4502 | |
| 4503 static Lisp_Object | |
| 4504 funcall_lambda (Lisp_Object fun, int nargs, Lisp_Object args[]) | |
| 4505 { | |
| 4506 /* This function can GC */ | |
| 442 | 4507 Lisp_Object arglist, body, tail; |
| 428 | 4508 int speccount = specpdl_depth(); |
| 4509 REGISTER int i = 0; | |
| 4510 | |
| 4511 tail = XCDR (fun); | |
| 4512 | |
| 4513 if (!CONSP (tail)) | |
| 4514 goto invalid_function; | |
| 4515 | |
| 4516 arglist = XCAR (tail); | |
| 4517 body = XCDR (tail); | |
| 4518 | |
| 4519 { | |
| 4520 int optional = 0, rest = 0; | |
| 4521 | |
| 442 | 4522 EXTERNAL_LIST_LOOP_2 (symbol, arglist) |
| 428 | 4523 { |
| 4524 if (!SYMBOLP (symbol)) | |
| 4525 goto invalid_function; | |
| 4526 if (EQ (symbol, Qand_rest)) | |
| 4527 rest = 1; | |
| 4528 else if (EQ (symbol, Qand_optional)) | |
| 4529 optional = 1; | |
| 4530 else if (rest) | |
| 4531 { | |
| 4532 specbind (symbol, Flist (nargs - i, &args[i])); | |
| 4533 i = nargs; | |
| 4534 } | |
| 4535 else if (i < nargs) | |
| 4536 specbind (symbol, args[i++]); | |
| 4537 else if (!optional) | |
| 4538 goto wrong_number_of_arguments; | |
| 4539 else | |
| 4540 specbind (symbol, Qnil); | |
| 4541 } | |
| 4542 } | |
| 4543 | |
| 4544 if (i < nargs) | |
| 4545 goto wrong_number_of_arguments; | |
| 4546 | |
| 771 | 4547 return unbind_to_1 (speccount, Fprogn (body)); |
| 428 | 4548 |
| 4549 wrong_number_of_arguments: | |
| 436 | 4550 return signal_wrong_number_of_arguments_error (fun, nargs); |
| 428 | 4551 |
| 4552 invalid_function: | |
| 436 | 4553 return signal_invalid_function_error (fun); |
| 428 | 4554 } |
| 4555 | |
| 4556 | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4557 /* Multiple values. |
|
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 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
|
4560 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4561 -- 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
|
4562 -- 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
|
4563 one multiple value. |
|
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 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
|
4566 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4567 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
|
4568 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
|
4569 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
|
4570 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
|
4571 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
|
4572 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
|
4573 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
|
4574 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
|
4575 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4576 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
|
4577 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
|
4578 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
|
4579 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
|
4580 #'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
|
4581 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
|
4582 be saved and returned. |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4583 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4584 (#'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
|
4585 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
|
4586 #'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
|
4587 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
|
4588 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
|
4589 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4590 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
|
4591 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
|
4592 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
|
4593 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
|
4594 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4595 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
|
4596 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
|
4597 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
|
4598 on being printed from within GDB. |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4599 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4600 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
|
4601 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
|
4602 #'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
|
4603 #'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
|
4604 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
|
4605 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
|
4606 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
|
4607 *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
|
4608 not have this penalty. |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4609 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4610 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
|
4611 admirable clarity by CLTL2: |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4612 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4613 "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
|
4614 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
|
4615 used." |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4616 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4617 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
|
4618 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
|
4619 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
|
4620 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
|
4621 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4622 static Lisp_Object |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4623 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
|
4624 Elemcount first_desired, Elemcount upper_limit) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4625 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4626 Bytecount sizem; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4627 struct multiple_value *mv; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4628 Elemcount i, allocated_count; |
|
5118
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
4629 Lisp_Object mvobj; |
|
4677
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 assert (count != 1); |
|
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 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
|
4634 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4635 /* 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
|
4636 working out allocated_count: */ |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4637 first_desired = 1; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4638 } |
|
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 if (first_desired >= count) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4641 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4642 /* 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
|
4643 allocate for the first argument. */ |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4644 allocated_count = 1; |
|
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 else |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4647 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4648 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
|
4649 - first_desired); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4650 } |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4651 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4652 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
|
4653 Lisp_Object, |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4654 contents, allocated_count); |
|
5118
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
4655 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
|
4656 mv = XMULTIPLE_VALUE (mvobj); |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4657 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4658 mv->count = count; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4659 mv->first_desired = first_desired; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4660 mv->allocated_count = allocated_count; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4661 mv->contents[0] = first_value; |
|
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 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
|
4664 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4665 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
|
4666 } |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4667 |
|
5118
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
4668 return mvobj; |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4669 } |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4670 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4671 void |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4672 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
|
4673 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4674 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
|
4675 Elemcount first_desired = mv->first_desired; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4676 Elemcount allocated_count = mv->allocated_count; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4677 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4678 if (index != 0 && |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4679 (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
|
4680 { |
|
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
4681 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
|
4682 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
|
4683 } |
|
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 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
|
4686 } |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4687 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4688 Lisp_Object |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4689 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
|
4690 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4691 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
|
4692 Elemcount first_desired = mv->first_desired; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4693 Elemcount allocated_count = mv->allocated_count; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4694 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4695 if (index != 0 && |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4696 (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
|
4697 { |
|
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
4698 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
|
4699 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
|
4700 } |
|
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 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
|
4703 } |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4704 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4705 static void |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4706 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
|
4707 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4708 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
|
4709 Elemcount first_desired = mv->first_desired; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4710 Elemcount allocated_count = mv->allocated_count; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4711 Elemcount count = mv->count, index; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4712 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4713 if (print_readably) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4714 { |
|
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
|
4715 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
|
4716 LISP_OBJECT_UID (obj)); |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4717 } |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4718 |
|
5086
47bcef7b0b44
Print multiple values with #<INTERNAL OBJECT (XEmacs bug?) ...>, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
4719 write_fmt_string (printcharfun, |
|
47bcef7b0b44
Print multiple values with #<INTERNAL OBJECT (XEmacs bug?) ...>, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
4720 "#<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
|
4721 " data (", count); |
|
4677
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 for (index = 0; index < count;) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4724 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4725 if (index != 0 && |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4726 (index < first_desired || |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4727 index >= (first_desired + (allocated_count - 1)))) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4728 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4729 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
|
4730 index); |
|
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 else |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4733 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4734 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
|
4735 printcharfun, escapeflag); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4736 } |
|
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 ++index; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4739 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4740 if (count > 1 && index < count) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4741 { |
|
5086
47bcef7b0b44
Print multiple values with #<INTERNAL OBJECT (XEmacs bug?) ...>, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
4742 write_ascstring (printcharfun, " "); |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4743 } |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4744 } |
|
5086
47bcef7b0b44
Print multiple values with #<INTERNAL OBJECT (XEmacs bug?) ...>, too
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
4745 |
|
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
|
4746 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
|
4747 } |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4748 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4749 static Lisp_Object |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4750 mark_multiple_value (Lisp_Object obj) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4751 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4752 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
|
4753 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
|
4754 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4755 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
|
4756 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4757 mark_object (mv->contents[index]); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4758 } |
|
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 return Qnil; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4761 } |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4762 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4763 static Bytecount |
|
5127
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5126
diff
changeset
|
4764 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
|
4765 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4766 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
|
4767 Lisp_Object, contents, |
|
5127
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5126
diff
changeset
|
4768 XMULTIPLE_VALUE (obj)->allocated_count); |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4769 } |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4770 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4771 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
|
4772 { 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
|
4773 { 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
|
4774 { 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
|
4775 { 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
|
4776 XD_INDIRECT (1, 0) }, |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4777 { XD_END } |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4778 }; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4779 |
|
5118
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
4780 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
|
4781 mark_multiple_value, |
|
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
4782 print_multiple_value, 0, |
|
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
4783 0, /* No equal method. */ |
|
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
4784 0, /* No hash method. */ |
|
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
4785 multiple_value_description, |
|
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
4786 size_multiple_value, |
|
623d57b7fbe8
separate regular and disksave finalization, print method fixes.
Ben Wing <ben@xemacs.org>
parents:
5118
diff
changeset
|
4787 struct multiple_value); |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4788 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4789 /* 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
|
4790 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
|
4791 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
|
4792 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
|
4793 int |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4794 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
|
4795 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4796 int result = specpdl_depth(); |
|
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 if (!(upper > first)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4799 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4800 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
|
4801 " FIRST-DESIRED-MULTIPLE-VALUE", Qunbound); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4802 } |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4803 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4804 if (upper > Vmultiple_values_limit) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4805 { |
|
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
4806 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
|
4807 } |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4808 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4809 /* 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
|
4810 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
|
4811 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
|
4812 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
|
4813 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4814 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
|
4815 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
|
4816 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4817 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
|
4818 if (0 == first) |
|
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 first = 1; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4821 } |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4822 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4823 if (0 == first_desired_multiple_value |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4824 || first < first_desired_multiple_value) |
|
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 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
|
4827 } |
|
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 if (upper > multiple_value_current_limit) |
|
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 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
|
4832 } |
|
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 return result; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4835 } |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4836 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4837 Lisp_Object |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4838 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
|
4839 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4840 /* 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
|
4841 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
|
4842 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
|
4843 struct gcpro gcpro1, gcpro2; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4844 Lisp_Object apply_args[2]; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4845 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4846 GCPRO2 (head, result); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4847 list_offset = head; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4848 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4849 assert (!(MULTIPLE_VALUEP (args[0]))); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4850 CHECK_FUNCTION (args[0]); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4851 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4852 /* 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
|
4853 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
|
4854 #'multiple-value-list-internal needs them): */ |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4855 for (i = 4; i < nargs; ++i) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4856 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4857 result = args[i]; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4858 if (MULTIPLE_VALUEP (result)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4859 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4860 Lisp_Object val; |
|
5016
2ade80e8c640
enable more warnings and fix them
Ben Wing <ben@xemacs.org>
parents:
5013
diff
changeset
|
4861 Elemcount j, count = XMULTIPLE_VALUE_COUNT (result); |
|
2ade80e8c640
enable more warnings and fix them
Ben Wing <ben@xemacs.org>
parents:
5013
diff
changeset
|
4862 |
|
2ade80e8c640
enable more warnings and fix them
Ben Wing <ben@xemacs.org>
parents:
5013
diff
changeset
|
4863 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
|
4864 { |
|
5016
2ade80e8c640
enable more warnings and fix them
Ben Wing <ben@xemacs.org>
parents:
5013
diff
changeset
|
4865 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
|
4866 assert (!UNBOUNDP (val)); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4867 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4868 XSETCDR (list_offset, Fcons (val, Qnil)); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4869 list_offset = XCDR (list_offset); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4870 } |
|
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 else |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4873 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4874 XSETCDR (list_offset, Fcons (result, Qnil)); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4875 list_offset = XCDR (list_offset); |
|
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 } |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4878 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4879 apply_args [0] = XCAR (head); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4880 apply_args [1] = XCDR (head); |
|
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 unbind_to (speccount); |
|
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 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
|
4885 } |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4886 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4887 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
|
4888 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
|
4889 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4890 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
|
4891 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
|
4892 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
|
4893 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
|
4894 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4895 arguments: (FUNCTION &rest FORMS) |
|
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 (args)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4898 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4899 int listcount, i = 0, speccount; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4900 Lisp_Object *constructed_args; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4901 struct gcpro gcpro1; |
|
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 GET_EXTERNAL_LIST_LENGTH (args, listcount); |
|
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 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
|
4906 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4907 /* 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
|
4908 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
|
4909 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4910 GCPRO1 (*constructed_args); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4911 gcpro1.nvars = ++i; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4912 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4913 /* 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
|
4914 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
|
4915 gcpro1.nvars = ++i; |
|
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
4916 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
|
4917 gcpro1.nvars = ++i; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4918 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4919 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
|
4920 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
|
4921 gcpro1.nvars = ++i; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4922 |
|
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 LIST_LOOP_2 (elt, XCDR (args)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4925 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4926 constructed_args[i] = Feval (elt); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4927 gcpro1.nvars = ++i; |
|
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 } |
|
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 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
|
4932 } |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4933 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4934 Lisp_Object |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4935 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
|
4936 { |
|
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
4937 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
|
4938 speccount = XFIXNUM(args[2]); |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4939 Lisp_Object result = Qnil; |
|
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 assert (nargs == 4); |
|
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 result = args[3]; |
|
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 unbind_to (speccount); |
|
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 if (MULTIPLE_VALUEP (result)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4948 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4949 Lisp_Object head = Fcons (Qnil, Qnil); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4950 Lisp_Object list_offset = head, val; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4951 Elemcount count = XMULTIPLE_VALUE_COUNT(result); |
|
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 for (; first < upper && first < count; ++first) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4954 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4955 val = multiple_value_aref (result, first); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4956 assert (!UNBOUNDP (val)); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4957 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4958 XSETCDR (list_offset, Fcons (val, Qnil)); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4959 list_offset = XCDR (list_offset); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4960 } |
|
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 return XCDR (head); |
|
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 else |
|
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 if (first == 0) |
|
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 return Fcons (result, Qnil); |
|
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 else |
|
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 return Qnil; |
|
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 } |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4976 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4977 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
|
4978 UNEVALLED, 0, /* |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4979 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
|
4980 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4981 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
|
4982 Lisp, instead. |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4983 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4984 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
|
4985 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
|
4986 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
|
4987 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
|
4988 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
|
4989 `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
|
4990 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4991 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
|
4992 */ |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4993 (args)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4994 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4995 Lisp_Object argv[4]; |
|
4686
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
4996 int first, upper, nargs; |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4997 struct gcpro gcpro1; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
4998 |
|
4686
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
4999 GET_LIST_LENGTH (args, nargs); |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
5000 if (nargs != 3) |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
5001 { |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
5002 Fsignal (Qwrong_number_of_arguments, |
|
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
5003 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
|
5004 } |
|
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
5005 |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5006 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
|
5007 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5008 GCPRO1 (argv[0]); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5009 gcpro1.nvars = 1; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5010 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5011 args = XCDR (args); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5012 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
|
5013 |
|
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
5014 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
|
5015 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
|
5016 |
|
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
5017 upper = XFIXNUM (argv[1]); |
|
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
5018 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
|
5019 |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5020 gcpro1.nvars = 2; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5021 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5022 /* 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
|
5023 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
|
5024 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
|
5025 arguments. */ |
|
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
5026 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
|
5027 gcpro1.nvars = 3; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5028 args = XCDR (args); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5029 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5030 /* 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
|
5031 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
|
5032 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
|
5033 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
|
5034 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
|
5035 it doesn't matter for performance. */ |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5036 argv[3] = Feval (XCAR (args)); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5037 gcpro1.nvars = 4; |
|
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 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
|
5040 } |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5041 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5042 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
|
5043 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
|
5044 `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
|
5045 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5046 arguments: (FIRST &rest BODY) |
|
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 (args)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5049 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5050 /* This function can GC */ |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5051 Lisp_Object val; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5052 struct gcpro gcpro1; |
|
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 val = Feval (XCAR (args)); |
|
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 GCPRO1 (val); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5057 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5058 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5059 LIST_LOOP_2 (form, XCDR (args)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5060 Feval (form); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5061 } |
|
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 RETURN_UNGCPRO (val); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5064 } |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5065 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5066 DEFUN ("values", Fvalues, 0, MANY, 0, /* |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5067 Return all ARGS as multiple values. |
|
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 arguments: (&rest 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 (int nargs, Lisp_Object *args)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5072 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5073 Lisp_Object result = Qnil; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5074 int counting = 1; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5075 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5076 /* 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
|
5077 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
|
5078 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5079 return nargs ? args[0] : Qnil; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5080 } |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5081 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5082 /* 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
|
5083 #'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
|
5084 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
|
5085 transform them to nil. */ |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5086 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
|
5087 first_desired_multiple_value, |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5088 multiple_value_current_limit); |
|
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 for (; counting < nargs; ++counting) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5091 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5092 if (counting >= first_desired_multiple_value && |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5093 counting < multiple_value_current_limit) |
|
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 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
|
5096 } |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5097 } |
|
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 return result; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5100 } |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5101 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5102 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
|
5103 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
|
5104 */ |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5105 (list)) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5106 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5107 Lisp_Object result = Qnil; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5108 int counting = 1, 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 GET_EXTERNAL_LIST_LENGTH (list, listcount); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5111 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5112 /* 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
|
5113 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
|
5114 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5115 return Fcar_safe (list); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5116 } |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5117 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5118 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
|
5119 first_desired_multiple_value, |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5120 multiple_value_current_limit); |
|
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 list = Fcdr_safe (list); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5123 |
|
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 EXTERNAL_LIST_LOOP_2 (elt, list) |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5126 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5127 if (counting >= first_desired_multiple_value && |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5128 counting < multiple_value_current_limit) |
|
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 multiple_value_aset (result, counting, elt); |
|
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 ++counting; |
|
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 } |
|
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 return result; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5137 } |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5138 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5139 Lisp_Object |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5140 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
|
5141 { |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5142 Lisp_Object argv[2]; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5143 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5144 argv[0] = first; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5145 argv[1] = second; |
|
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 return Fvalues (countof (argv), argv); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5148 } |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5149 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5150 |
| 428 | 5151 /************************************************************************/ |
| 5152 /* Run hook variables in various ways. */ | |
| 5153 /************************************************************************/ | |
| 5154 | |
| 5155 DEFUN ("run-hooks", Frun_hooks, 1, MANY, 0, /* | |
| 5156 Run each hook in HOOKS. Major mode functions use this. | |
| 5157 Each argument should be a symbol, a hook variable. | |
| 5158 These symbols are processed in the order specified. | |
| 5159 If a hook symbol has a non-nil value, that value may be a function | |
| 5160 or a list of functions to be called to run the hook. | |
| 5161 If the value is a function, it is called with no arguments. | |
| 5162 If it is a list, the elements are called, in order, with no arguments. | |
| 5163 | |
| 5164 To make a hook variable buffer-local, use `make-local-hook', | |
| 5165 not `make-local-variable'. | |
|
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
5166 |
|
4693
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4686
diff
changeset
|
5167 arguments: (FIRST &rest REST) |
| 428 | 5168 */ |
| 5169 (int nargs, Lisp_Object *args)) | |
| 5170 { | |
| 5171 REGISTER int i; | |
| 5172 | |
| 5173 for (i = 0; i < nargs; i++) | |
| 5174 run_hook_with_args (1, args + i, RUN_HOOKS_TO_COMPLETION); | |
| 5175 | |
| 5176 return Qnil; | |
| 5177 } | |
| 5178 | |
| 5179 DEFUN ("run-hook-with-args", Frun_hook_with_args, 1, MANY, 0, /* | |
| 5180 Run HOOK with the specified arguments ARGS. | |
| 5181 HOOK should be a symbol, a hook variable. If HOOK has a non-nil | |
| 5182 value, that value may be a function or a list of functions to be | |
| 5183 called to run the hook. If the value is a function, it is called with | |
| 5184 the given arguments and its return value is returned. If it is a list | |
| 5185 of functions, those functions are called, in order, | |
| 5186 with the given arguments ARGS. | |
| 444 | 5187 It is best not to depend on the value returned by `run-hook-with-args', |
| 428 | 5188 as that may change. |
| 5189 | |
| 5190 To make a hook variable buffer-local, use `make-local-hook', | |
| 5191 not `make-local-variable'. | |
|
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
5192 |
|
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
5193 arguments: (HOOK &rest ARGS) |
| 428 | 5194 */ |
| 5195 (int nargs, Lisp_Object *args)) | |
| 5196 { | |
| 5197 return run_hook_with_args (nargs, args, RUN_HOOKS_TO_COMPLETION); | |
| 5198 } | |
| 5199 | |
| 5200 DEFUN ("run-hook-with-args-until-success", Frun_hook_with_args_until_success, 1, MANY, 0, /* | |
| 5201 Run HOOK with the specified arguments ARGS. | |
| 5202 HOOK should be a symbol, a hook variable. Its value should | |
| 5203 be a list of functions. We call those functions, one by one, | |
| 5204 passing arguments ARGS to each of them, until one of them | |
| 5205 returns a non-nil value. Then we return that value. | |
| 5206 If all the functions return nil, we return nil. | |
| 5207 | |
| 5208 To make a hook variable buffer-local, use `make-local-hook', | |
| 5209 not `make-local-variable'. | |
|
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
5210 |
|
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
5211 arguments: (HOOK &rest ARGS) |
| 428 | 5212 */ |
| 5213 (int nargs, Lisp_Object *args)) | |
| 5214 { | |
| 5215 return run_hook_with_args (nargs, args, RUN_HOOKS_UNTIL_SUCCESS); | |
| 5216 } | |
| 5217 | |
| 5218 DEFUN ("run-hook-with-args-until-failure", Frun_hook_with_args_until_failure, 1, MANY, 0, /* | |
| 5219 Run HOOK with the specified arguments ARGS. | |
| 5220 HOOK should be a symbol, a hook variable. Its value should | |
| 5221 be a list of functions. We call those functions, one by one, | |
| 5222 passing arguments ARGS to each of them, until one of them | |
| 5223 returns nil. Then we return nil. | |
| 5224 If all the functions return non-nil, we return non-nil. | |
| 5225 | |
| 5226 To make a hook variable buffer-local, use `make-local-hook', | |
| 5227 not `make-local-variable'. | |
|
4642
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
5228 |
|
48b45a606961
Support #'function-arglist with built-in special forms.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4624
diff
changeset
|
5229 arguments: (HOOK &rest ARGS) |
| 428 | 5230 */ |
| 5231 (int nargs, Lisp_Object *args)) | |
| 5232 { | |
| 5233 return run_hook_with_args (nargs, args, RUN_HOOKS_UNTIL_FAILURE); | |
| 5234 } | |
| 5235 | |
| 5236 /* ARGS[0] should be a hook symbol. | |
| 5237 Call each of the functions in the hook value, passing each of them | |
| 5238 as arguments all the rest of ARGS (all NARGS - 1 elements). | |
| 5239 COND specifies a condition to test after each call | |
| 5240 to decide whether to stop. | |
| 5241 The caller (or its caller, etc) must gcpro all of ARGS, | |
| 5242 except that it isn't necessary to gcpro ARGS[0]. */ | |
| 5243 | |
| 5244 Lisp_Object | |
| 5245 run_hook_with_args_in_buffer (struct buffer *buf, int nargs, Lisp_Object *args, | |
| 5246 enum run_hooks_condition cond) | |
| 5247 { | |
| 5248 Lisp_Object sym, val, ret; | |
| 5249 | |
| 5250 if (!initialized || preparing_for_armageddon) | |
| 5251 /* We need to bail out of here pronto. */ | |
| 5252 return Qnil; | |
| 5253 | |
| 3092 | 5254 #ifndef NEW_GC |
| 428 | 5255 /* Whenever gc_in_progress is true, preparing_for_armageddon |
| 5256 will also be true unless something is really hosed. */ | |
| 5257 assert (!gc_in_progress); | |
| 3092 | 5258 #endif /* not NEW_GC */ |
| 428 | 5259 |
| 5260 sym = args[0]; | |
| 771 | 5261 val = symbol_value_in_buffer (sym, wrap_buffer (buf)); |
| 428 | 5262 ret = (cond == RUN_HOOKS_UNTIL_FAILURE ? Qt : Qnil); |
| 5263 | |
| 5264 if (UNBOUNDP (val) || NILP (val)) | |
| 5265 return ret; | |
| 5266 else if (!CONSP (val) || EQ (XCAR (val), Qlambda)) | |
| 5267 { | |
| 5268 args[0] = val; | |
| 5269 return Ffuncall (nargs, args); | |
| 5270 } | |
| 5271 else | |
| 5272 { | |
| 5273 struct gcpro gcpro1, gcpro2, gcpro3; | |
| 5274 Lisp_Object globals = Qnil; | |
| 5275 GCPRO3 (sym, val, globals); | |
| 5276 | |
| 5277 for (; | |
| 5278 CONSP (val) && ((cond == RUN_HOOKS_TO_COMPLETION) | |
| 5279 || (cond == RUN_HOOKS_UNTIL_SUCCESS ? NILP (ret) | |
| 5280 : !NILP (ret))); | |
| 5281 val = XCDR (val)) | |
| 5282 { | |
| 5283 if (EQ (XCAR (val), Qt)) | |
| 5284 { | |
| 5285 /* t indicates this hook has a local binding; | |
| 5286 it means to run the global binding too. */ | |
| 5287 globals = Fdefault_value (sym); | |
| 5288 | |
| 5289 if ((! CONSP (globals) || EQ (XCAR (globals), Qlambda)) && | |
| 5290 ! NILP (globals)) | |
| 5291 { | |
| 5292 args[0] = globals; | |
| 5293 ret = Ffuncall (nargs, args); | |
| 5294 } | |
| 5295 else | |
| 5296 { | |
| 5297 for (; | |
| 5298 CONSP (globals) && ((cond == RUN_HOOKS_TO_COMPLETION) | |
| 5299 || (cond == RUN_HOOKS_UNTIL_SUCCESS | |
| 5300 ? NILP (ret) | |
| 5301 : !NILP (ret))); | |
| 5302 globals = XCDR (globals)) | |
| 5303 { | |
| 5304 args[0] = XCAR (globals); | |
| 5305 /* In a global value, t should not occur. If it does, we | |
| 5306 must ignore it to avoid an endless loop. */ | |
| 5307 if (!EQ (args[0], Qt)) | |
| 5308 ret = Ffuncall (nargs, args); | |
| 5309 } | |
| 5310 } | |
| 5311 } | |
| 5312 else | |
| 5313 { | |
| 5314 args[0] = XCAR (val); | |
| 5315 ret = Ffuncall (nargs, args); | |
| 5316 } | |
| 5317 } | |
| 5318 | |
| 5319 UNGCPRO; | |
| 5320 return ret; | |
| 5321 } | |
| 5322 } | |
| 5323 | |
| 5324 Lisp_Object | |
| 5325 run_hook_with_args (int nargs, Lisp_Object *args, | |
| 5326 enum run_hooks_condition cond) | |
| 5327 { | |
| 5328 return run_hook_with_args_in_buffer (current_buffer, nargs, args, cond); | |
| 5329 } | |
| 5330 | |
| 5331 #if 0 | |
| 5332 | |
| 853 | 5333 /* From FSF 19.30, not currently used; seems like a big kludge. */ |
| 428 | 5334 |
| 5335 /* Run a hook symbol ARGS[0], but use FUNLIST instead of the actual | |
| 5336 present value of that symbol. | |
| 5337 Call each element of FUNLIST, | |
| 5338 passing each of them the rest of ARGS. | |
| 5339 The caller (or its caller, etc) must gcpro all of ARGS, | |
| 5340 except that it isn't necessary to gcpro ARGS[0]. */ | |
| 5341 | |
| 5342 Lisp_Object | |
| 5343 run_hook_list_with_args (Lisp_Object funlist, int nargs, Lisp_Object *args) | |
| 5344 { | |
| 853 | 5345 omitted; |
| 428 | 5346 } |
| 5347 | |
| 5348 #endif /* 0 */ | |
| 5349 | |
| 5350 void | |
| 5351 va_run_hook_with_args (Lisp_Object hook_var, int nargs, ...) | |
| 5352 { | |
| 5353 /* This function can GC */ | |
| 5354 struct gcpro gcpro1; | |
| 5355 int i; | |
| 5356 va_list vargs; | |
| 5357 Lisp_Object *funcall_args = alloca_array (Lisp_Object, 1 + nargs); | |
| 5358 | |
| 5359 va_start (vargs, nargs); | |
| 5360 funcall_args[0] = hook_var; | |
| 5361 for (i = 0; i < nargs; i++) | |
| 5362 funcall_args[i + 1] = va_arg (vargs, Lisp_Object); | |
| 5363 va_end (vargs); | |
| 5364 | |
| 5365 GCPRO1 (*funcall_args); | |
| 5366 gcpro1.nvars = nargs + 1; | |
| 5367 run_hook_with_args (nargs + 1, funcall_args, RUN_HOOKS_TO_COMPLETION); | |
| 5368 UNGCPRO; | |
| 5369 } | |
| 5370 | |
| 5371 void | |
| 5372 va_run_hook_with_args_in_buffer (struct buffer *buf, Lisp_Object hook_var, | |
| 5373 int nargs, ...) | |
| 5374 { | |
| 5375 /* This function can GC */ | |
| 5376 struct gcpro gcpro1; | |
| 5377 int i; | |
| 5378 va_list vargs; | |
| 5379 Lisp_Object *funcall_args = alloca_array (Lisp_Object, 1 + nargs); | |
| 5380 | |
| 5381 va_start (vargs, nargs); | |
| 5382 funcall_args[0] = hook_var; | |
| 5383 for (i = 0; i < nargs; i++) | |
| 5384 funcall_args[i + 1] = va_arg (vargs, Lisp_Object); | |
| 5385 va_end (vargs); | |
| 5386 | |
| 5387 GCPRO1 (*funcall_args); | |
| 5388 gcpro1.nvars = nargs + 1; | |
| 5389 run_hook_with_args_in_buffer (buf, nargs + 1, funcall_args, | |
| 5390 RUN_HOOKS_TO_COMPLETION); | |
| 5391 UNGCPRO; | |
| 5392 } | |
| 5393 | |
| 5394 Lisp_Object | |
| 5395 run_hook (Lisp_Object hook) | |
| 5396 { | |
| 853 | 5397 return run_hook_with_args (1, &hook, RUN_HOOKS_TO_COMPLETION); |
| 428 | 5398 } |
| 5399 | |
| 5400 | |
| 5401 /************************************************************************/ | |
| 5402 /* Front-ends to eval, funcall, apply */ | |
| 5403 /************************************************************************/ | |
| 5404 | |
| 5405 /* Apply fn to arg */ | |
| 5406 Lisp_Object | |
| 5407 apply1 (Lisp_Object fn, Lisp_Object arg) | |
| 5408 { | |
| 5409 /* This function can GC */ | |
| 5410 struct gcpro gcpro1; | |
| 5411 Lisp_Object args[2]; | |
| 5412 | |
| 5413 if (NILP (arg)) | |
| 5414 return Ffuncall (1, &fn); | |
| 5415 GCPRO1 (args[0]); | |
| 5416 gcpro1.nvars = 2; | |
| 5417 args[0] = fn; | |
| 5418 args[1] = arg; | |
| 5419 RETURN_UNGCPRO (Fapply (2, args)); | |
| 5420 } | |
| 5421 | |
| 5422 /* Call function fn on no arguments */ | |
| 5423 Lisp_Object | |
| 5424 call0 (Lisp_Object fn) | |
| 5425 { | |
| 5426 /* This function can GC */ | |
| 5427 struct gcpro gcpro1; | |
| 5428 | |
| 5429 GCPRO1 (fn); | |
| 5430 RETURN_UNGCPRO (Ffuncall (1, &fn)); | |
| 5431 } | |
| 5432 | |
| 5433 /* Call function fn with argument arg0 */ | |
| 5434 Lisp_Object | |
| 5435 call1 (Lisp_Object fn, | |
| 5436 Lisp_Object arg0) | |
| 5437 { | |
| 5438 /* This function can GC */ | |
| 5439 struct gcpro gcpro1; | |
| 5440 Lisp_Object args[2]; | |
| 5441 args[0] = fn; | |
| 5442 args[1] = arg0; | |
| 5443 GCPRO1 (args[0]); | |
| 5444 gcpro1.nvars = 2; | |
| 5445 RETURN_UNGCPRO (Ffuncall (2, args)); | |
| 5446 } | |
| 5447 | |
| 5448 /* Call function fn with arguments arg0, arg1 */ | |
| 5449 Lisp_Object | |
| 5450 call2 (Lisp_Object fn, | |
| 5451 Lisp_Object arg0, Lisp_Object arg1) | |
| 5452 { | |
| 5453 /* This function can GC */ | |
| 5454 struct gcpro gcpro1; | |
| 5455 Lisp_Object args[3]; | |
| 5456 args[0] = fn; | |
| 5457 args[1] = arg0; | |
| 5458 args[2] = arg1; | |
| 5459 GCPRO1 (args[0]); | |
| 5460 gcpro1.nvars = 3; | |
| 5461 RETURN_UNGCPRO (Ffuncall (3, args)); | |
| 5462 } | |
| 5463 | |
| 5464 /* Call function fn with arguments arg0, arg1, arg2 */ | |
| 5465 Lisp_Object | |
| 5466 call3 (Lisp_Object fn, | |
| 5467 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2) | |
| 5468 { | |
| 5469 /* This function can GC */ | |
| 5470 struct gcpro gcpro1; | |
| 5471 Lisp_Object args[4]; | |
| 5472 args[0] = fn; | |
| 5473 args[1] = arg0; | |
| 5474 args[2] = arg1; | |
| 5475 args[3] = arg2; | |
| 5476 GCPRO1 (args[0]); | |
| 5477 gcpro1.nvars = 4; | |
| 5478 RETURN_UNGCPRO (Ffuncall (4, args)); | |
| 5479 } | |
| 5480 | |
| 5481 /* Call function fn with arguments arg0, arg1, arg2, arg3 */ | |
| 5482 Lisp_Object | |
| 5483 call4 (Lisp_Object fn, | |
| 5484 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2, | |
| 5485 Lisp_Object arg3) | |
| 5486 { | |
| 5487 /* This function can GC */ | |
| 5488 struct gcpro gcpro1; | |
| 5489 Lisp_Object args[5]; | |
| 5490 args[0] = fn; | |
| 5491 args[1] = arg0; | |
| 5492 args[2] = arg1; | |
| 5493 args[3] = arg2; | |
| 5494 args[4] = arg3; | |
| 5495 GCPRO1 (args[0]); | |
| 5496 gcpro1.nvars = 5; | |
| 5497 RETURN_UNGCPRO (Ffuncall (5, args)); | |
| 5498 } | |
| 5499 | |
| 5500 /* Call function fn with arguments arg0, arg1, arg2, arg3, arg4 */ | |
| 5501 Lisp_Object | |
| 5502 call5 (Lisp_Object fn, | |
| 5503 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2, | |
| 5504 Lisp_Object arg3, Lisp_Object arg4) | |
| 5505 { | |
| 5506 /* This function can GC */ | |
| 5507 struct gcpro gcpro1; | |
| 5508 Lisp_Object args[6]; | |
| 5509 args[0] = fn; | |
| 5510 args[1] = arg0; | |
| 5511 args[2] = arg1; | |
| 5512 args[3] = arg2; | |
| 5513 args[4] = arg3; | |
| 5514 args[5] = arg4; | |
| 5515 GCPRO1 (args[0]); | |
| 5516 gcpro1.nvars = 6; | |
| 5517 RETURN_UNGCPRO (Ffuncall (6, args)); | |
| 5518 } | |
| 5519 | |
| 5520 Lisp_Object | |
| 5521 call6 (Lisp_Object fn, | |
| 5522 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2, | |
| 5523 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5) | |
| 5524 { | |
| 5525 /* This function can GC */ | |
| 5526 struct gcpro gcpro1; | |
| 5527 Lisp_Object args[7]; | |
| 5528 args[0] = fn; | |
| 5529 args[1] = arg0; | |
| 5530 args[2] = arg1; | |
| 5531 args[3] = arg2; | |
| 5532 args[4] = arg3; | |
| 5533 args[5] = arg4; | |
| 5534 args[6] = arg5; | |
| 5535 GCPRO1 (args[0]); | |
| 5536 gcpro1.nvars = 7; | |
| 5537 RETURN_UNGCPRO (Ffuncall (7, args)); | |
| 5538 } | |
| 5539 | |
| 5540 Lisp_Object | |
| 5541 call7 (Lisp_Object fn, | |
| 5542 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2, | |
| 5543 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5, | |
| 5544 Lisp_Object arg6) | |
| 5545 { | |
| 5546 /* This function can GC */ | |
| 5547 struct gcpro gcpro1; | |
| 5548 Lisp_Object args[8]; | |
| 5549 args[0] = fn; | |
| 5550 args[1] = arg0; | |
| 5551 args[2] = arg1; | |
| 5552 args[3] = arg2; | |
| 5553 args[4] = arg3; | |
| 5554 args[5] = arg4; | |
| 5555 args[6] = arg5; | |
| 5556 args[7] = arg6; | |
| 5557 GCPRO1 (args[0]); | |
| 5558 gcpro1.nvars = 8; | |
| 5559 RETURN_UNGCPRO (Ffuncall (8, args)); | |
| 5560 } | |
| 5561 | |
| 5562 Lisp_Object | |
| 5563 call8 (Lisp_Object fn, | |
| 5564 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2, | |
| 5565 Lisp_Object arg3, Lisp_Object arg4, Lisp_Object arg5, | |
| 5566 Lisp_Object arg6, Lisp_Object arg7) | |
| 5567 { | |
| 5568 /* This function can GC */ | |
| 5569 struct gcpro gcpro1; | |
| 5570 Lisp_Object args[9]; | |
| 5571 args[0] = fn; | |
| 5572 args[1] = arg0; | |
| 5573 args[2] = arg1; | |
| 5574 args[3] = arg2; | |
| 5575 args[4] = arg3; | |
| 5576 args[5] = arg4; | |
| 5577 args[6] = arg5; | |
| 5578 args[7] = arg6; | |
| 5579 args[8] = arg7; | |
| 5580 GCPRO1 (args[0]); | |
| 5581 gcpro1.nvars = 9; | |
| 5582 RETURN_UNGCPRO (Ffuncall (9, args)); | |
| 5583 } | |
| 5584 | |
| 5585 Lisp_Object | |
| 5586 call0_in_buffer (struct buffer *buf, Lisp_Object fn) | |
| 5587 { | |
| 5588 if (current_buffer == buf) | |
| 5589 return call0 (fn); | |
| 5590 else | |
| 5591 { | |
| 5592 Lisp_Object val; | |
| 5593 int speccount = specpdl_depth(); | |
| 5594 record_unwind_protect (Fset_buffer, Fcurrent_buffer ()); | |
| 5595 set_buffer_internal (buf); | |
| 5596 val = call0 (fn); | |
| 771 | 5597 unbind_to (speccount); |
| 428 | 5598 return val; |
| 5599 } | |
| 5600 } | |
| 5601 | |
| 5602 Lisp_Object | |
| 5603 call1_in_buffer (struct buffer *buf, Lisp_Object fn, | |
| 5604 Lisp_Object arg0) | |
| 5605 { | |
| 5606 if (current_buffer == buf) | |
| 5607 return call1 (fn, arg0); | |
| 5608 else | |
| 5609 { | |
| 5610 Lisp_Object val; | |
| 5611 int speccount = specpdl_depth(); | |
| 5612 record_unwind_protect (Fset_buffer, Fcurrent_buffer ()); | |
| 5613 set_buffer_internal (buf); | |
| 5614 val = call1 (fn, arg0); | |
| 771 | 5615 unbind_to (speccount); |
| 428 | 5616 return val; |
| 5617 } | |
| 5618 } | |
| 5619 | |
| 5620 Lisp_Object | |
| 5621 call2_in_buffer (struct buffer *buf, Lisp_Object fn, | |
| 5622 Lisp_Object arg0, Lisp_Object arg1) | |
| 5623 { | |
| 5624 if (current_buffer == buf) | |
| 5625 return call2 (fn, arg0, arg1); | |
| 5626 else | |
| 5627 { | |
| 5628 Lisp_Object val; | |
| 5629 int speccount = specpdl_depth(); | |
| 5630 record_unwind_protect (Fset_buffer, Fcurrent_buffer ()); | |
| 5631 set_buffer_internal (buf); | |
| 5632 val = call2 (fn, arg0, arg1); | |
| 771 | 5633 unbind_to (speccount); |
| 428 | 5634 return val; |
| 5635 } | |
| 5636 } | |
| 5637 | |
| 5638 Lisp_Object | |
| 5639 call3_in_buffer (struct buffer *buf, Lisp_Object fn, | |
| 5640 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2) | |
| 5641 { | |
| 5642 if (current_buffer == buf) | |
| 5643 return call3 (fn, arg0, arg1, arg2); | |
| 5644 else | |
| 5645 { | |
| 5646 Lisp_Object val; | |
| 5647 int speccount = specpdl_depth(); | |
| 5648 record_unwind_protect (Fset_buffer, Fcurrent_buffer ()); | |
| 5649 set_buffer_internal (buf); | |
| 5650 val = call3 (fn, arg0, arg1, arg2); | |
| 771 | 5651 unbind_to (speccount); |
| 428 | 5652 return val; |
| 5653 } | |
| 5654 } | |
| 5655 | |
| 5656 Lisp_Object | |
| 5657 call4_in_buffer (struct buffer *buf, Lisp_Object fn, | |
| 5658 Lisp_Object arg0, Lisp_Object arg1, Lisp_Object arg2, | |
| 5659 Lisp_Object arg3) | |
| 5660 { | |
| 5661 if (current_buffer == buf) | |
| 5662 return call4 (fn, arg0, arg1, arg2, arg3); | |
| 5663 else | |
| 5664 { | |
| 5665 Lisp_Object val; | |
| 5666 int speccount = specpdl_depth(); | |
| 5667 record_unwind_protect (Fset_buffer, Fcurrent_buffer ()); | |
| 5668 set_buffer_internal (buf); | |
| 5669 val = call4 (fn, arg0, arg1, arg2, arg3); | |
| 771 | 5670 unbind_to (speccount); |
| 428 | 5671 return val; |
| 5672 } | |
| 5673 } | |
| 5674 | |
| 5675 Lisp_Object | |
| 5676 eval_in_buffer (struct buffer *buf, Lisp_Object form) | |
| 5677 { | |
| 5678 if (current_buffer == buf) | |
| 5679 return Feval (form); | |
| 5680 else | |
| 5681 { | |
| 5682 Lisp_Object val; | |
| 5683 int speccount = specpdl_depth(); | |
| 5684 record_unwind_protect (Fset_buffer, Fcurrent_buffer ()); | |
| 5685 set_buffer_internal (buf); | |
| 5686 val = Feval (form); | |
| 771 | 5687 unbind_to (speccount); |
| 428 | 5688 return val; |
| 5689 } | |
| 5690 } | |
| 5691 | |
| 5692 | |
| 5693 /************************************************************************/ | |
| 5694 /* Error-catching front-ends to eval, funcall, apply */ | |
| 5695 /************************************************************************/ | |
| 5696 | |
| 853 | 5697 int |
| 5698 get_inhibit_flags (void) | |
| 5699 { | |
| 5700 return inhibit_flags; | |
| 5701 } | |
| 5702 | |
| 5703 void | |
| 2286 | 5704 check_allowed_operation (int what, Lisp_Object obj, Lisp_Object UNUSED (prop)) |
| 853 | 5705 { |
| 5706 if (inhibit_flags & INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION) | |
| 5707 { | |
| 5708 if (what == OPERATION_MODIFY_BUFFER_TEXT && BUFFERP (obj) | |
| 5709 && NILP (memq_no_quit (obj, Vmodifiable_buffers))) | |
| 5710 invalid_change | |
| 5711 ("Modification of this buffer not currently permitted", obj); | |
| 5712 } | |
| 5713 if (inhibit_flags & INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION) | |
| 5714 { | |
| 5715 if (what == OPERATION_DELETE_OBJECT | |
| 5716 && (BUFFERP (obj) || WINDOWP (obj) || FRAMEP (obj) || DEVICEP (obj) | |
| 5717 || CONSOLEP (obj)) | |
| 5718 && NILP (memq_no_quit (obj, Vdeletable_permanent_display_objects))) | |
| 5719 invalid_change | |
| 5720 ("Deletion of this object not currently permitted", obj); | |
| 5721 } | |
| 5722 } | |
| 5723 | |
| 5724 void | |
| 5725 note_object_created (Lisp_Object obj) | |
| 5726 { | |
| 5727 if (inhibit_flags & INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION) | |
| 5728 { | |
| 5729 if (BUFFERP (obj)) | |
| 5730 Vmodifiable_buffers = Fcons (obj, Vmodifiable_buffers); | |
| 5731 } | |
| 5732 if (inhibit_flags & INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION) | |
| 5733 { | |
| 5734 if (BUFFERP (obj) || WINDOWP (obj) || FRAMEP (obj) || DEVICEP (obj) | |
| 5735 || CONSOLEP (obj)) | |
| 5736 Vdeletable_permanent_display_objects = | |
| 5737 Fcons (obj, Vdeletable_permanent_display_objects); | |
| 5738 } | |
| 5739 } | |
| 5740 | |
| 5741 void | |
| 5742 note_object_deleted (Lisp_Object obj) | |
| 5743 { | |
| 5744 if (inhibit_flags & INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION) | |
| 5745 { | |
| 5746 if (BUFFERP (obj)) | |
| 5747 Vmodifiable_buffers = delq_no_quit (obj, Vmodifiable_buffers); | |
| 5748 } | |
| 5749 if (inhibit_flags & INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION) | |
| 5750 { | |
| 5751 if (BUFFERP (obj) || WINDOWP (obj) || FRAMEP (obj) || DEVICEP (obj) | |
| 5752 || CONSOLEP (obj)) | |
| 5753 Vdeletable_permanent_display_objects = | |
| 5754 delq_no_quit (obj, Vdeletable_permanent_display_objects); | |
| 5755 } | |
| 5756 } | |
| 5757 | |
| 5758 struct call_trapping_problems | |
| 5759 { | |
| 5760 Lisp_Object catchtag; | |
| 5761 Lisp_Object error_conditions; | |
| 5762 Lisp_Object data; | |
| 5763 Lisp_Object backtrace; | |
| 5764 Lisp_Object warning_class; | |
| 5765 | |
| 867 | 5766 const CIbyte *warning_string; |
| 853 | 5767 Lisp_Object (*fun) (void *); |
| 5768 void *arg; | |
| 5769 }; | |
| 428 | 5770 |
| 2532 | 5771 static Lisp_Object |
| 5772 maybe_get_trapping_problems_backtrace (void) | |
| 5773 { | |
| 5774 Lisp_Object backtrace; | |
| 853 | 5775 |
| 1123 | 5776 if (!(inhibit_flags & INHIBIT_WARNING_ISSUE) |
| 2532 | 5777 && !warning_will_be_discarded (current_warning_level ())) |
| 428 | 5778 { |
| 1333 | 5779 struct gcpro gcpro1; |
| 5780 Lisp_Object lstream = Qnil; | |
| 5781 int speccount = specpdl_depth (); | |
| 5782 | |
| 853 | 5783 /* We're no longer protected against errors or quit here, so at |
| 5784 least let's temporarily inhibit quit. We definitely do not | |
| 5785 want to inhibit quit during the calling of the function | |
| 5786 itself!!!!!!!!!!! */ | |
| 5787 | |
| 5788 specbind (Qinhibit_quit, Qt); | |
| 5789 | |
| 5790 GCPRO1 (lstream); | |
| 5791 lstream = make_resizing_buffer_output_stream (); | |
| 5792 Fbacktrace (lstream, Qt); | |
| 5793 Lstream_flush (XLSTREAM (lstream)); | |
| 2532 | 5794 backtrace = resizing_buffer_to_lisp_string (XLSTREAM (lstream)); |
| 853 | 5795 Lstream_delete (XLSTREAM (lstream)); |
| 5796 UNGCPRO; | |
| 5797 | |
| 5798 unbind_to (speccount); | |
| 428 | 5799 } |
| 853 | 5800 else |
| 2532 | 5801 backtrace = Qnil; |
| 5802 | |
| 5803 return backtrace; | |
| 5804 } | |
| 5805 | |
| 5806 static DECLARE_DOESNT_RETURN_TYPE | |
| 5807 (Lisp_Object, flagged_a_squirmer (Lisp_Object, Lisp_Object, Lisp_Object)); | |
| 5808 | |
| 5809 static DOESNT_RETURN_TYPE (Lisp_Object) | |
| 5810 flagged_a_squirmer (Lisp_Object error_conditions, Lisp_Object data, | |
| 5811 Lisp_Object opaque) | |
| 5812 { | |
| 5813 struct call_trapping_problems *p = | |
| 5814 (struct call_trapping_problems *) get_opaque_ptr (opaque); | |
| 5815 | |
| 5816 if (!EQ (error_conditions, Qquit)) | |
| 5817 p->backtrace = maybe_get_trapping_problems_backtrace (); | |
| 5818 else | |
| 853 | 5819 p->backtrace = Qnil; |
| 5820 p->error_conditions = error_conditions; | |
| 5821 p->data = data; | |
| 5822 | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
5823 throw_or_bomb_out (p->catchtag, Qnil, 0, Qnil, Qnil); |
| 2268 | 5824 RETURN_NOT_REACHED (Qnil); |
| 853 | 5825 } |
| 5826 | |
| 5827 static Lisp_Object | |
| 5828 call_trapping_problems_2 (Lisp_Object opaque) | |
| 5829 { | |
| 5830 struct call_trapping_problems *p = | |
| 5831 (struct call_trapping_problems *) get_opaque_ptr (opaque); | |
| 5832 | |
| 5833 return (p->fun) (p->arg); | |
| 428 | 5834 } |
| 5835 | |
| 5836 static Lisp_Object | |
| 853 | 5837 call_trapping_problems_1 (Lisp_Object opaque) |
| 5838 { | |
| 5839 return call_with_condition_handler (flagged_a_squirmer, opaque, | |
| 5840 call_trapping_problems_2, opaque); | |
| 5841 } | |
| 5842 | |
| 1333 | 5843 static void |
| 5844 issue_call_trapping_problems_warning (Lisp_Object warning_class, | |
| 5845 const CIbyte *warning_string, | |
| 5846 struct call_trapping_problems_result *p) | |
| 5847 { | |
| 5848 if (!warning_will_be_discarded (current_warning_level ())) | |
| 5849 { | |
| 5850 int depth = specpdl_depth (); | |
| 5851 | |
| 5852 /* We're no longer protected against errors or quit here, so at | |
| 5853 least let's temporarily inhibit quit. */ | |
| 5854 specbind (Qinhibit_quit, Qt); | |
| 5855 | |
| 5856 if (p->caught_throw) | |
| 5857 { | |
| 5858 Lisp_Object errstr = | |
| 5859 emacs_sprintf_string_lisp | |
| 2532 | 5860 ("%s: Attempt to throw outside of function:" |
| 5861 "To catch `%s' with value `%s'\n\nBacktrace follows:\n\n%s", | |
| 2725 | 5862 Qnil, 4, |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
5863 build_msg_cistring (warning_string ? warning_string : "error"), |
| 2532 | 5864 p->thrown_tag, p->thrown_value, p->backtrace); |
| 1333 | 5865 warn_when_safe_lispobj (Qerror, current_warning_level (), errstr); |
| 5866 } | |
| 2421 | 5867 else if (p->caught_error && !EQ (p->error_conditions, Qquit)) |
| 1333 | 5868 { |
| 5869 Lisp_Object errstr; | |
| 5870 /* #### This should call | |
| 5871 (with-output-to-string (display-error (cons error_conditions | |
| 5872 data)) | |
| 5873 but that stuff is all in Lisp currently. */ | |
| 5874 errstr = | |
| 5875 emacs_sprintf_string_lisp | |
| 5876 ("%s: (%s %s)\n\nBacktrace follows:\n\n%s", | |
| 5877 Qnil, 4, | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
5878 build_msg_cistring (warning_string ? warning_string : "error"), |
| 1333 | 5879 p->error_conditions, p->data, p->backtrace); |
| 5880 | |
| 5881 warn_when_safe_lispobj (warning_class, current_warning_level (), | |
| 5882 errstr); | |
| 5883 } | |
| 5884 | |
| 5885 unbind_to (depth); | |
| 5886 } | |
| 5887 } | |
| 5888 | |
| 1318 | 5889 /* Turn on the trapping flags in FLAGS -- see call_trapping_problems(). |
| 5890 This cannot handle INTERNAL_INHIBIT_THROWS() or INTERNAL_INHIBIT_ERRORS | |
| 5891 (because they ultimately boil down to a setjmp()!) -- you must directly | |
| 5892 use call_trapping_problems() for that. Turn the flags off with | |
| 5893 unbind_to(). Returns the "canonicalized" flags (particularly in the | |
| 5894 case of INHIBIT_ANY_CHANGE_AFFECTING_REDISPLAY, which is shorthand for | |
| 5895 various other flags). */ | |
| 5896 | |
| 5897 int | |
| 5898 set_trapping_problems_flags (int flags) | |
| 5899 { | |
| 5900 int new_inhibit_flags; | |
| 5901 | |
| 5902 if (flags & INHIBIT_ANY_CHANGE_AFFECTING_REDISPLAY) | |
| 5903 flags |= INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION | |
| 5904 | INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION | |
| 5905 | INHIBIT_ENTERING_DEBUGGER | |
| 5906 | INHIBIT_WARNING_ISSUE | |
| 5907 | INHIBIT_GC; | |
| 5908 | |
| 5909 new_inhibit_flags = inhibit_flags | flags; | |
| 5910 if (new_inhibit_flags != inhibit_flags) | |
| 5911 internal_bind_int (&inhibit_flags, new_inhibit_flags); | |
| 5912 | |
| 5913 if (flags & INHIBIT_QUIT) | |
| 5914 specbind (Qinhibit_quit, Qt); | |
| 5915 | |
| 5916 if (flags & UNINHIBIT_QUIT) | |
| 5917 begin_do_check_for_quit (); | |
| 5918 | |
| 5919 if (flags & INHIBIT_GC) | |
| 5920 begin_gc_forbidden (); | |
| 5921 | |
| 5922 /* #### If we have nested calls to call_trapping_problems(), and the | |
| 5923 inner one creates some buffers/etc., should the outer one be able | |
| 5924 to delete them? I think so, but it means we need to combine rather | |
| 5925 than just reset the value. */ | |
| 5926 if (flags & INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION) | |
| 5927 internal_bind_lisp_object (&Vdeletable_permanent_display_objects, Qnil); | |
| 5928 | |
| 5929 if (flags & INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION) | |
| 5930 internal_bind_lisp_object (&Vmodifiable_buffers, Qnil); | |
| 5931 | |
| 5932 return flags; | |
| 5933 } | |
| 5934 | |
| 853 | 5935 /* This is equivalent to (*fun) (arg), except that various conditions |
| 5936 can be trapped or inhibited, according to FLAGS. | |
| 5937 | |
| 5938 If FLAGS does not contain NO_INHIBIT_ERRORS, when an error occurs, | |
| 5939 the error is caught and a warning is issued, specifying the | |
| 5940 specific error that occurred and a backtrace. In that case, | |
| 5941 WARNING_STRING should be given, and will be printed at the | |
| 5942 beginning of the error to indicate where the error occurred. | |
| 5943 | |
| 5944 If FLAGS does not contain NO_INHIBIT_THROWS, all attempts to | |
| 5945 `throw' out of the function being called are trapped, and a warning | |
| 5946 issued. (Again, WARNING_STRING should be given.) | |
| 5947 | |
| 2367 | 5948 If FLAGS contains INHIBIT_WARNING_ISSUE, no warnings are issued; |
| 853 | 5949 this applies to recursive invocations of call_trapping_problems, too. |
| 5950 | |
| 1333 | 5951 If FLAGS contains POSTPONE_WARNING_ISSUE, no warnings are issued; |
| 5952 but values useful for generating a warning are still computed (in | |
| 5953 particular, the backtrace), so that the calling function can issue | |
| 5954 a warning. | |
| 5955 | |
| 853 | 5956 If FLAGS contains ISSUE_WARNINGS_AT_DEBUG_LEVEL, warnings will be |
| 5957 issued, but at level `debug', which normally is below the minimum | |
| 5958 specified by `log-warning-minimum-level', meaning such warnings will | |
| 5959 be ignored entirely. The user can change this variable, however, | |
| 5960 to see the warnings.) | |
| 5961 | |
| 5962 Note: If neither of NO_INHIBIT_THROWS or NO_INHIBIT_ERRORS is | |
| 5963 given, you are *guaranteed* that there will be no non-local exits | |
| 5964 out of this function. | |
| 5965 | |
| 5966 If FLAGS contains INHIBIT_QUIT, QUIT using C-g is inhibited. (This | |
| 5967 is *rarely* a good idea. Unless you use NO_INHIBIT_ERRORS, QUIT is | |
| 5968 automatically caught as well, and treated as an error; you can | |
| 5969 check for this using EQ (problems->error_conditions, Qquit). | |
| 5970 | |
| 5971 If FLAGS contains UNINHIBIT_QUIT, QUIT checking will be explicitly | |
| 5972 turned on. (It will abort the code being called, but will still be | |
| 5973 trapped and reported as an error, unless NO_INHIBIT_ERRORS is | |
| 5974 given.) This is useful when QUIT checking has been turned off by a | |
| 5975 higher-level caller. | |
| 5976 | |
| 5977 If FLAGS contains INHIBIT_GC, garbage collection is inhibited. | |
| 1123 | 5978 This is useful for Lisp called within redisplay, for example. |
| 853 | 5979 |
| 5980 If FLAGS contains INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION, | |
| 5981 Lisp code is not allowed to delete any window, buffers, frames, devices, | |
| 5982 or consoles that were already in existence at the time this function | |
| 5983 was called. (However, it's perfectly legal for code to create a new | |
| 5984 buffer and then delete it.) | |
| 5985 | |
| 5986 #### It might be useful to have a flag that inhibits deletion of a | |
| 5987 specific permanent display object and everything it's attached to | |
| 5988 (e.g. a window, and the buffer, frame, device, and console it's | |
| 5989 attached to. | |
| 5990 | |
| 5991 If FLAGS contains INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION, Lisp | |
| 5992 code is not allowed to modify the text of any buffers that were | |
| 5993 already in existence at the time this function was called. | |
| 5994 (However, it's perfectly legal for code to create a new buffer and | |
| 5995 then modify its text.) | |
| 5996 | |
| 5997 [These last two flags are implemented using global variables | |
| 5998 Vdeletable_permanent_display_objects and Vmodifiable_buffers, | |
| 5999 which keep track of a list of all buffers or permanent display | |
| 6000 objects created since the last time one of these flags was set. | |
| 6001 The code that deletes buffers, etc. and modifies buffers checks | |
| 6002 | |
| 6003 (1) if the corresponding flag is set (through the global variable | |
| 6004 inhibit_flags or its accessor function get_inhibit_flags()), and | |
| 6005 | |
| 6006 (2) if the object to be modified or deleted is not in the | |
| 6007 appropriate list. | |
| 6008 | |
| 6009 If so, it signals an error. | |
| 6010 | |
| 6011 Recursive calls to call_trapping_problems() are allowed. In | |
| 6012 the case of the two flags mentioned above, the current values | |
| 6013 of the global variables are stored in an unwind-protect, and | |
| 6014 they're reset to nil.] | |
| 6015 | |
| 6016 If FLAGS contains INHIBIT_ENTERING_DEBUGGER, the debugger will not | |
| 6017 be entered if an error occurs inside the Lisp code being called, | |
| 6018 even when the user has requested an error. In such case, a warning | |
| 6019 is issued stating that access to the debugger is denied, unless | |
| 6020 INHIBIT_WARNING_ISSUE has also been supplied. This is useful when | |
| 6021 calling Lisp code inside redisplay, in menu callbacks, etc. because | |
| 6022 in such cases either the display is in an inconsistent state or | |
| 6023 doing window operations is explicitly forbidden by the OS, and the | |
| 6024 debugger would causes visual changes on the screen and might create | |
| 6025 another frame. | |
| 6026 | |
| 6027 If FLAGS contains INHIBIT_ANY_CHANGE_AFFECTING_REDISPLAY, no | |
| 6028 changes of any sort to extents, faces, glyphs, buffer text, | |
| 6029 specifiers relating to display, other variables relating to | |
| 6030 display, splitting, deleting, or resizing windows or frames, | |
| 6031 deleting buffers, windows, frames, devices, or consoles, etc. is | |
| 6032 allowed. This is for things called absolutely in the middle of | |
| 6033 redisplay, which expects things to be *exactly* the same after the | |
| 6034 call as before. This isn't completely implemented and needs to be | |
| 6035 thought out some more to determine exactly what its semantics are. | |
| 6036 For the moment, turning on this flag also turns on | |
| 6037 | |
| 6038 INHIBIT_EXISTING_PERMANENT_DISPLAY_OBJECT_DELETION | |
| 6039 INHIBIT_EXISTING_BUFFER_TEXT_MODIFICATION | |
| 6040 INHIBIT_ENTERING_DEBUGGER | |
| 6041 INHIBIT_WARNING_ISSUE | |
| 6042 INHIBIT_GC | |
| 6043 | |
| 6044 #### The following five flags are defined, but unimplemented: | |
| 6045 | |
| 6046 #define INHIBIT_EXISTING_CODING_SYSTEM_DELETION (1<<6) | |
| 6047 #define INHIBIT_EXISTING_CHARSET_DELETION (1<<7) | |
| 6048 #define INHIBIT_PERMANENT_DISPLAY_OBJECT_CREATION (1<<8) | |
| 6049 #define INHIBIT_CODING_SYSTEM_CREATION (1<<9) | |
| 6050 #define INHIBIT_CHARSET_CREATION (1<<10) | |
| 6051 | |
| 6052 FLAGS containing CALL_WITH_SUSPENDED_ERRORS is a sign that | |
| 6053 call_with_suspended_errors() was invoked. This exists only for | |
| 6054 debugging purposes -- often we want to break when a signal happens, | |
| 6055 but ignore signals from call_with_suspended_errors(), because they | |
| 6056 occur often and for legitimate reasons. | |
| 6057 | |
| 6058 If PROBLEM is non-zero, it should be a pointer to a structure into | |
| 6059 which exact information about any occurring problems (either an | |
| 6060 error or an attempted throw past this boundary). | |
| 6061 | |
| 6062 If a problem occurred and aborted operation (error, quit, or | |
| 6063 invalid throw), Qunbound is returned. Otherwise the return value | |
| 6064 from the call to (*fun) (arg) is returned. */ | |
| 6065 | |
| 6066 Lisp_Object | |
| 6067 call_trapping_problems (Lisp_Object warning_class, | |
| 867 | 6068 const CIbyte *warning_string, |
| 853 | 6069 int flags, |
| 6070 struct call_trapping_problems_result *problem, | |
| 6071 Lisp_Object (*fun) (void *), | |
| 6072 void *arg) | |
| 6073 { | |
| 1318 | 6074 int speccount = specpdl_depth (); |
| 853 | 6075 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5; |
| 6076 struct call_trapping_problems package; | |
| 1333 | 6077 struct call_trapping_problems_result real_problem; |
| 2532 | 6078 Lisp_Object opaque, thrown_tag, tem, thrown_backtrace; |
| 853 | 6079 int thrown = 0; |
| 6080 | |
| 6081 assert (SYMBOLP (warning_class)); /* sanity-check */ | |
| 6082 assert (!NILP (warning_class)); | |
| 6083 | |
| 6084 flags ^= INTERNAL_INHIBIT_ERRORS | INTERNAL_INHIBIT_THROWS; | |
| 6085 | |
| 6086 package.warning_class = warning_class; | |
| 6087 package.warning_string = warning_string; | |
| 6088 package.fun = fun; | |
| 6089 package.arg = arg; | |
| 6090 package.catchtag = | |
| 6091 flags & INTERNAL_INHIBIT_THROWS ? Vcatch_everything_tag : | |
| 6092 flags & INTERNAL_INHIBIT_ERRORS ? make_opaque_ptr (0) : | |
| 6093 Qnil; | |
| 6094 package.error_conditions = Qnil; | |
| 6095 package.data = Qnil; | |
| 6096 package.backtrace = Qnil; | |
| 6097 | |
| 1318 | 6098 flags = set_trapping_problems_flags (flags); |
| 853 | 6099 |
| 6100 if (flags & (INTERNAL_INHIBIT_THROWS | INTERNAL_INHIBIT_ERRORS)) | |
| 6101 opaque = make_opaque_ptr (&package); | |
| 6102 else | |
| 6103 opaque = Qnil; | |
| 6104 | |
| 6105 GCPRO5 (package.catchtag, package.error_conditions, package.data, | |
| 6106 package.backtrace, opaque); | |
| 6107 | |
| 6108 if (flags & INTERNAL_INHIBIT_ERRORS) | |
| 6109 /* We need a catch so that our condition-handler can throw back here | |
| 6110 after printing the warning. (We print the warning in the stack | |
| 6111 context of the error, so we can get a backtrace.) */ | |
| 6112 tem = internal_catch (package.catchtag, call_trapping_problems_1, opaque, | |
| 2532 | 6113 &thrown, &thrown_tag, &thrown_backtrace); |
| 853 | 6114 else if (flags & INTERNAL_INHIBIT_THROWS) |
| 6115 /* We skip over the first wrapper, which traps errors. */ | |
| 6116 tem = internal_catch (package.catchtag, call_trapping_problems_2, opaque, | |
| 2532 | 6117 &thrown, &thrown_tag, &thrown_backtrace); |
| 853 | 6118 else |
| 6119 /* Nothing special. */ | |
| 6120 tem = (fun) (arg); | |
| 6121 | |
| 1333 | 6122 if (!problem) |
| 6123 problem = &real_problem; | |
| 6124 | |
| 6125 if (!thrown) | |
| 853 | 6126 { |
| 1333 | 6127 problem->caught_error = 0; |
| 6128 problem->caught_throw = 0; | |
| 6129 problem->error_conditions = Qnil; | |
| 6130 problem->data = Qnil; | |
| 6131 problem->backtrace = Qnil; | |
| 6132 problem->thrown_tag = Qnil; | |
| 6133 problem->thrown_value = Qnil; | |
| 853 | 6134 } |
| 1333 | 6135 else if (EQ (thrown_tag, package.catchtag)) |
| 853 | 6136 { |
| 1333 | 6137 problem->caught_error = 1; |
| 6138 problem->caught_throw = 0; | |
| 6139 problem->error_conditions = package.error_conditions; | |
| 6140 problem->data = package.data; | |
| 6141 problem->backtrace = package.backtrace; | |
| 6142 problem->thrown_tag = Qnil; | |
| 6143 problem->thrown_value = Qnil; | |
| 853 | 6144 } |
| 1333 | 6145 else |
| 6146 { | |
| 6147 problem->caught_error = 0; | |
| 6148 problem->caught_throw = 1; | |
| 6149 problem->error_conditions = Qnil; | |
| 6150 problem->data = Qnil; | |
| 2532 | 6151 problem->backtrace = thrown_backtrace; |
| 1333 | 6152 problem->thrown_tag = thrown_tag; |
| 6153 problem->thrown_value = tem; | |
| 6154 } | |
| 6155 | |
| 6156 if (!(flags & INHIBIT_WARNING_ISSUE) && !(flags & POSTPONE_WARNING_ISSUE)) | |
| 6157 issue_call_trapping_problems_warning (warning_class, warning_string, | |
| 6158 problem); | |
| 853 | 6159 |
| 6160 if (!NILP (package.catchtag) && | |
| 6161 !EQ (package.catchtag, Vcatch_everything_tag)) | |
| 6162 free_opaque_ptr (package.catchtag); | |
| 6163 | |
| 6164 if (!NILP (opaque)) | |
| 6165 free_opaque_ptr (opaque); | |
| 6166 | |
| 6167 unbind_to (speccount); | |
| 6168 RETURN_UNGCPRO (thrown ? Qunbound : tem); | |
| 6169 } | |
| 6170 | |
| 6171 struct va_call_trapping_problems | |
| 6172 { | |
| 6173 lisp_fn_t fun; | |
| 6174 int nargs; | |
| 6175 Lisp_Object *args; | |
| 6176 }; | |
| 6177 | |
| 6178 static Lisp_Object | |
| 6179 va_call_trapping_problems_1 (void *ai_mi_madre) | |
| 6180 { | |
| 6181 struct va_call_trapping_problems *ai_no_corrida = | |
| 6182 (struct va_call_trapping_problems *) ai_mi_madre; | |
| 6183 Lisp_Object pegar_no_bumbum; | |
| 6184 | |
| 6185 PRIMITIVE_FUNCALL (pegar_no_bumbum, ai_no_corrida->fun, | |
| 6186 ai_no_corrida->args, ai_no_corrida->nargs); | |
| 6187 return pegar_no_bumbum; | |
| 6188 } | |
| 6189 | |
| 6190 /* #### document me. */ | |
| 6191 | |
| 6192 Lisp_Object | |
| 6193 va_call_trapping_problems (Lisp_Object warning_class, | |
| 867 | 6194 const CIbyte *warning_string, |
| 853 | 6195 int flags, |
| 6196 struct call_trapping_problems_result *problem, | |
| 6197 lisp_fn_t fun, int nargs, ...) | |
| 6198 { | |
| 6199 va_list vargs; | |
| 6200 Lisp_Object args[20]; | |
| 6201 int i; | |
| 6202 struct va_call_trapping_problems fazer_invocacao_atrapalhando_problemas; | |
| 6203 struct gcpro gcpro1; | |
| 6204 | |
| 6205 assert (nargs >= 0 && nargs < 20); | |
| 6206 | |
| 6207 va_start (vargs, nargs); | |
| 6208 for (i = 0; i < nargs; i++) | |
| 6209 args[i] = va_arg (vargs, Lisp_Object); | |
| 6210 va_end (vargs); | |
| 6211 | |
| 6212 fazer_invocacao_atrapalhando_problemas.fun = fun; | |
| 6213 fazer_invocacao_atrapalhando_problemas.nargs = nargs; | |
| 6214 fazer_invocacao_atrapalhando_problemas.args = args; | |
| 6215 | |
| 6216 GCPRO1_ARRAY (args, nargs); | |
| 6217 RETURN_UNGCPRO | |
| 6218 (call_trapping_problems | |
| 6219 (warning_class, warning_string, flags, problem, | |
| 6220 va_call_trapping_problems_1, &fazer_invocacao_atrapalhando_problemas)); | |
| 6221 } | |
| 6222 | |
| 6223 /* this is an older interface, barely different from | |
| 6224 va_call_trapping_problems. | |
| 6225 | |
| 6226 #### eliminate this or at least merge the ERROR_BEHAVIOR stuff into | |
| 6227 va_call_trapping_problems(). */ | |
| 6228 | |
| 6229 Lisp_Object | |
| 6230 call_with_suspended_errors (lisp_fn_t fun, Lisp_Object retval, | |
| 1204 | 6231 Lisp_Object class_, Error_Behavior errb, |
| 853 | 6232 int nargs, ...) |
| 6233 { | |
| 6234 va_list vargs; | |
| 6235 Lisp_Object args[20]; | |
| 6236 int i; | |
| 6237 struct va_call_trapping_problems fazer_invocacao_atrapalhando_problemas; | |
| 6238 int flags; | |
| 6239 struct gcpro gcpro1; | |
| 6240 | |
| 1204 | 6241 assert (SYMBOLP (class_)); /* sanity-check */ |
| 6242 assert (!NILP (class_)); | |
| 853 | 6243 assert (nargs >= 0 && nargs < 20); |
| 6244 | |
| 6245 va_start (vargs, nargs); | |
| 6246 for (i = 0; i < nargs; i++) | |
| 6247 args[i] = va_arg (vargs, Lisp_Object); | |
| 6248 va_end (vargs); | |
| 6249 | |
| 6250 /* If error-checking is not disabled, just call the function. */ | |
| 6251 | |
| 6252 if (ERRB_EQ (errb, ERROR_ME)) | |
| 6253 { | |
| 6254 Lisp_Object val; | |
| 6255 PRIMITIVE_FUNCALL (val, fun, args, nargs); | |
| 6256 return val; | |
| 6257 } | |
| 6258 | |
| 6259 if (ERRB_EQ (errb, ERROR_ME_NOT)) /* person wants no warnings */ | |
| 6260 flags = INHIBIT_WARNING_ISSUE | INHIBIT_ENTERING_DEBUGGER; | |
| 6261 else if (ERRB_EQ (errb, ERROR_ME_DEBUG_WARN)) | |
| 6262 flags = ISSUE_WARNINGS_AT_DEBUG_LEVEL | INHIBIT_ENTERING_DEBUGGER; | |
| 6263 else | |
| 6264 { | |
| 6265 assert (ERRB_EQ (errb, ERROR_ME_WARN)); | |
| 6266 flags = INHIBIT_ENTERING_DEBUGGER; | |
| 6267 } | |
| 6268 | |
| 6269 flags |= CALL_WITH_SUSPENDED_ERRORS; | |
| 6270 | |
| 6271 fazer_invocacao_atrapalhando_problemas.fun = fun; | |
| 6272 fazer_invocacao_atrapalhando_problemas.nargs = nargs; | |
| 6273 fazer_invocacao_atrapalhando_problemas.args = args; | |
| 6274 | |
| 6275 GCPRO1_ARRAY (args, nargs); | |
| 6276 { | |
| 6277 Lisp_Object its_way_too_goddamn_late = | |
| 6278 call_trapping_problems | |
| 1204 | 6279 (class_, 0, flags, 0, va_call_trapping_problems_1, |
| 853 | 6280 &fazer_invocacao_atrapalhando_problemas); |
| 6281 UNGCPRO; | |
| 6282 if (UNBOUNDP (its_way_too_goddamn_late)) | |
| 6283 return retval; | |
| 6284 else | |
| 6285 return its_way_too_goddamn_late; | |
| 6286 } | |
| 6287 } | |
| 6288 | |
| 6289 struct calln_trapping_problems | |
| 6290 { | |
| 6291 int nargs; | |
| 6292 Lisp_Object *args; | |
| 6293 }; | |
| 6294 | |
| 6295 static Lisp_Object | |
| 6296 calln_trapping_problems_1 (void *puta) | |
| 6297 { | |
| 6298 struct calln_trapping_problems *p = (struct calln_trapping_problems *) puta; | |
| 6299 | |
| 6300 return Ffuncall (p->nargs, p->args); | |
| 428 | 6301 } |
| 6302 | |
| 6303 static Lisp_Object | |
| 853 | 6304 calln_trapping_problems (Lisp_Object warning_class, |
| 867 | 6305 const CIbyte *warning_string, int flags, |
| 853 | 6306 struct call_trapping_problems_result *problem, |
| 6307 int nargs, Lisp_Object *args) | |
| 6308 { | |
| 6309 struct calln_trapping_problems foo; | |
| 6310 struct gcpro gcpro1; | |
| 6311 | |
| 6312 if (SYMBOLP (args[0])) | |
| 6313 { | |
| 6314 Lisp_Object tem = XSYMBOL (args[0])->function; | |
| 6315 if (NILP (tem) || UNBOUNDP (tem)) | |
| 6316 { | |
| 6317 if (problem) | |
| 6318 { | |
| 6319 problem->caught_error = 0; | |
| 6320 problem->caught_throw = 0; | |
| 6321 problem->error_conditions = Qnil; | |
| 6322 problem->data = Qnil; | |
| 6323 problem->backtrace = Qnil; | |
| 6324 problem->thrown_tag = Qnil; | |
| 6325 problem->thrown_value = Qnil; | |
| 6326 } | |
| 6327 return Qnil; | |
| 6328 } | |
| 6329 } | |
| 6330 | |
| 6331 foo.nargs = nargs; | |
| 6332 foo.args = args; | |
| 6333 | |
| 6334 GCPRO1_ARRAY (args, nargs); | |
| 6335 RETURN_UNGCPRO (call_trapping_problems (warning_class, warning_string, | |
| 6336 flags, problem, | |
| 6337 calln_trapping_problems_1, | |
| 6338 &foo)); | |
| 6339 } | |
| 6340 | |
| 6341 /* #### fix these functions to follow the calling convention of | |
| 6342 call_trapping_problems! */ | |
| 6343 | |
| 6344 Lisp_Object | |
| 867 | 6345 call0_trapping_problems (const CIbyte *warning_string, Lisp_Object function, |
| 853 | 6346 int flags) |
| 6347 { | |
| 6348 return calln_trapping_problems (Qerror, warning_string, flags, 0, 1, | |
| 6349 &function); | |
| 428 | 6350 } |
| 6351 | |
| 6352 Lisp_Object | |
| 867 | 6353 call1_trapping_problems (const CIbyte *warning_string, Lisp_Object function, |
| 853 | 6354 Lisp_Object object, int flags) |
| 6355 { | |
| 6356 Lisp_Object args[2]; | |
| 6357 | |
| 6358 args[0] = function; | |
| 6359 args[1] = object; | |
| 6360 | |
| 6361 return calln_trapping_problems (Qerror, warning_string, flags, 0, 2, | |
| 6362 args); | |
| 6363 } | |
| 6364 | |
| 6365 Lisp_Object | |
| 867 | 6366 call2_trapping_problems (const CIbyte *warning_string, Lisp_Object function, |
| 853 | 6367 Lisp_Object object1, Lisp_Object object2, |
| 6368 int flags) | |
| 6369 { | |
| 6370 Lisp_Object args[3]; | |
| 6371 | |
| 6372 args[0] = function; | |
| 6373 args[1] = object1; | |
| 6374 args[2] = object2; | |
| 6375 | |
| 6376 return calln_trapping_problems (Qerror, warning_string, flags, 0, 3, | |
| 6377 args); | |
| 6378 } | |
| 6379 | |
| 6380 Lisp_Object | |
| 867 | 6381 call3_trapping_problems (const CIbyte *warning_string, Lisp_Object function, |
| 853 | 6382 Lisp_Object object1, Lisp_Object object2, |
| 6383 Lisp_Object object3, int flags) | |
| 6384 { | |
| 6385 Lisp_Object args[4]; | |
| 6386 | |
| 6387 args[0] = function; | |
| 6388 args[1] = object1; | |
| 6389 args[2] = object2; | |
| 6390 args[3] = object3; | |
| 6391 | |
| 6392 return calln_trapping_problems (Qerror, warning_string, flags, 0, 4, | |
| 6393 args); | |
| 6394 } | |
| 6395 | |
| 6396 Lisp_Object | |
| 867 | 6397 call4_trapping_problems (const CIbyte *warning_string, Lisp_Object function, |
| 853 | 6398 Lisp_Object object1, Lisp_Object object2, |
| 6399 Lisp_Object object3, Lisp_Object object4, | |
| 6400 int flags) | |
| 6401 { | |
| 6402 Lisp_Object args[5]; | |
| 6403 | |
| 6404 args[0] = function; | |
| 6405 args[1] = object1; | |
| 6406 args[2] = object2; | |
| 6407 args[3] = object3; | |
| 6408 args[4] = object4; | |
| 6409 | |
| 6410 return calln_trapping_problems (Qerror, warning_string, flags, 0, 5, | |
| 6411 args); | |
| 6412 } | |
| 6413 | |
| 6414 Lisp_Object | |
| 867 | 6415 call5_trapping_problems (const CIbyte *warning_string, Lisp_Object function, |
| 853 | 6416 Lisp_Object object1, Lisp_Object object2, |
| 6417 Lisp_Object object3, Lisp_Object object4, | |
| 6418 Lisp_Object object5, int flags) | |
| 6419 { | |
| 6420 Lisp_Object args[6]; | |
| 6421 | |
| 6422 args[0] = function; | |
| 6423 args[1] = object1; | |
| 6424 args[2] = object2; | |
| 6425 args[3] = object3; | |
| 6426 args[4] = object4; | |
| 6427 args[5] = object5; | |
| 6428 | |
| 6429 return calln_trapping_problems (Qerror, warning_string, flags, 0, 6, | |
| 6430 args); | |
| 6431 } | |
| 6432 | |
| 6433 struct eval_in_buffer_trapping_problems | |
| 6434 { | |
| 6435 struct buffer *buf; | |
| 6436 Lisp_Object form; | |
| 6437 }; | |
| 6438 | |
| 6439 static Lisp_Object | |
| 6440 eval_in_buffer_trapping_problems_1 (void *arg) | |
| 6441 { | |
| 6442 struct eval_in_buffer_trapping_problems *p = | |
| 6443 (struct eval_in_buffer_trapping_problems *) arg; | |
| 6444 | |
| 6445 return eval_in_buffer (p->buf, p->form); | |
| 6446 } | |
| 6447 | |
| 6448 /* #### fix these functions to follow the calling convention of | |
| 6449 call_trapping_problems! */ | |
| 6450 | |
| 6451 Lisp_Object | |
| 867 | 6452 eval_in_buffer_trapping_problems (const CIbyte *warning_string, |
| 853 | 6453 struct buffer *buf, Lisp_Object form, |
| 6454 int flags) | |
| 6455 { | |
| 6456 struct eval_in_buffer_trapping_problems p; | |
| 6457 Lisp_Object buffer = wrap_buffer (buf); | |
| 428 | 6458 struct gcpro gcpro1, gcpro2; |
| 6459 | |
| 853 | 6460 GCPRO2 (buffer, form); |
| 6461 p.buf = buf; | |
| 6462 p.form = form; | |
| 6463 RETURN_UNGCPRO (call_trapping_problems (Qerror, warning_string, flags, 0, | |
| 6464 eval_in_buffer_trapping_problems_1, | |
| 6465 &p)); | |
| 6466 } | |
| 6467 | |
| 6468 Lisp_Object | |
| 1333 | 6469 run_hook_trapping_problems (Lisp_Object warning_class, |
| 853 | 6470 Lisp_Object hook_symbol, |
| 6471 int flags) | |
| 6472 { | |
| 1333 | 6473 return run_hook_with_args_trapping_problems (warning_class, 1, &hook_symbol, |
| 853 | 6474 RUN_HOOKS_TO_COMPLETION, |
| 6475 flags); | |
| 428 | 6476 } |
| 6477 | |
| 6478 static Lisp_Object | |
| 853 | 6479 safe_run_hook_trapping_problems_1 (void *puta) |
| 6480 { | |
| 5013 | 6481 Lisp_Object hook = GET_LISP_FROM_VOID (puta); |
| 853 | 6482 |
| 6483 run_hook (hook); | |
| 428 | 6484 return Qnil; |
| 6485 } | |
| 6486 | |
| 853 | 6487 /* Same as run_hook_trapping_problems() but also set the hook to nil |
| 6488 if an error occurs (but not a quit). */ | |
| 6489 | |
| 428 | 6490 Lisp_Object |
| 1333 | 6491 safe_run_hook_trapping_problems (Lisp_Object warning_class, |
| 6492 Lisp_Object hook_symbol, int flags) | |
| 853 | 6493 { |
| 428 | 6494 Lisp_Object tem; |
| 853 | 6495 struct gcpro gcpro1, gcpro2; |
| 6496 struct call_trapping_problems_result prob; | |
| 428 | 6497 |
| 6498 if (!initialized || preparing_for_armageddon) | |
| 6499 return Qnil; | |
| 6500 tem = find_symbol_value (hook_symbol); | |
| 6501 if (NILP (tem) || UNBOUNDP (tem)) | |
| 6502 return Qnil; | |
| 6503 | |
| 853 | 6504 GCPRO2 (hook_symbol, tem); |
| 1333 | 6505 tem = call_trapping_problems (Qerror, NULL, |
| 6506 flags | POSTPONE_WARNING_ISSUE, | |
| 853 | 6507 &prob, |
| 6508 safe_run_hook_trapping_problems_1, | |
| 5013 | 6509 STORE_LISP_IN_VOID (hook_symbol)); |
| 1333 | 6510 { |
| 6511 Lisp_Object hook_name = XSYMBOL_NAME (hook_symbol); | |
| 6512 Ibyte *hook_str = XSTRING_DATA (hook_name); | |
| 6513 Ibyte *err = alloca_ibytes (XSTRING_LENGTH (hook_name) + 100); | |
| 6514 | |
| 6515 if (prob.caught_throw || (prob.caught_error && !EQ (prob.error_conditions, | |
| 6516 Qquit))) | |
| 6517 { | |
| 6518 Fset (hook_symbol, Qnil); | |
| 6519 qxesprintf (err, "Error in `%s' (resetting to nil)", hook_str); | |
| 6520 } | |
| 6521 else | |
| 6522 qxesprintf (err, "Quit in `%s'", hook_str); | |
| 6523 | |
| 6524 | |
| 6525 issue_call_trapping_problems_warning (warning_class, (CIbyte *) err, | |
| 6526 &prob); | |
| 6527 } | |
| 6528 | |
| 6529 UNGCPRO; | |
| 6530 return tem; | |
| 853 | 6531 } |
| 6532 | |
| 6533 struct run_hook_with_args_in_buffer_trapping_problems | |
| 6534 { | |
| 6535 struct buffer *buf; | |
| 6536 int nargs; | |
| 6537 Lisp_Object *args; | |
| 6538 enum run_hooks_condition cond; | |
| 6539 }; | |
| 6540 | |
| 6541 static Lisp_Object | |
| 6542 run_hook_with_args_in_buffer_trapping_problems_1 (void *puta) | |
| 6543 { | |
| 6544 struct run_hook_with_args_in_buffer_trapping_problems *porra = | |
| 6545 (struct run_hook_with_args_in_buffer_trapping_problems *) puta; | |
| 6546 | |
| 6547 return run_hook_with_args_in_buffer (porra->buf, porra->nargs, porra->args, | |
| 6548 porra->cond); | |
| 6549 } | |
| 6550 | |
| 6551 /* #### fix these functions to follow the calling convention of | |
| 6552 call_trapping_problems! */ | |
| 428 | 6553 |
| 6554 Lisp_Object | |
| 1333 | 6555 run_hook_with_args_in_buffer_trapping_problems (Lisp_Object warning_class, |
| 853 | 6556 struct buffer *buf, int nargs, |
| 6557 Lisp_Object *args, | |
| 6558 enum run_hooks_condition cond, | |
| 6559 int flags) | |
| 6560 { | |
| 6561 Lisp_Object sym, val, ret; | |
| 6562 struct run_hook_with_args_in_buffer_trapping_problems diversity_and_distrust; | |
| 428 | 6563 struct gcpro gcpro1; |
| 1333 | 6564 Lisp_Object hook_name; |
| 6565 Ibyte *hook_str; | |
| 6566 Ibyte *err; | |
| 428 | 6567 |
| 6568 if (!initialized || preparing_for_armageddon) | |
| 853 | 6569 /* We need to bail out of here pronto. */ |
| 428 | 6570 return Qnil; |
| 6571 | |
| 853 | 6572 GCPRO1_ARRAY (args, nargs); |
| 6573 | |
| 6574 sym = args[0]; | |
| 6575 val = symbol_value_in_buffer (sym, wrap_buffer (buf)); | |
| 6576 ret = (cond == RUN_HOOKS_UNTIL_FAILURE ? Qt : Qnil); | |
| 6577 | |
| 6578 if (UNBOUNDP (val) || NILP (val)) | |
| 6579 RETURN_UNGCPRO (ret); | |
| 6580 | |
| 6581 diversity_and_distrust.buf = buf; | |
| 6582 diversity_and_distrust.nargs = nargs; | |
| 6583 diversity_and_distrust.args = args; | |
| 6584 diversity_and_distrust.cond = cond; | |
| 6585 | |
| 1333 | 6586 hook_name = XSYMBOL_NAME (args[0]); |
| 6587 hook_str = XSTRING_DATA (hook_name); | |
| 6588 err = alloca_ibytes (XSTRING_LENGTH (hook_name) + 100); | |
| 6589 qxesprintf (err, "Error in `%s'", hook_str); | |
| 853 | 6590 RETURN_UNGCPRO |
| 6591 (call_trapping_problems | |
| 1333 | 6592 (warning_class, (CIbyte *) err, flags, 0, |
| 853 | 6593 run_hook_with_args_in_buffer_trapping_problems_1, |
| 6594 &diversity_and_distrust)); | |
| 428 | 6595 } |
| 6596 | |
| 6597 Lisp_Object | |
| 1333 | 6598 run_hook_with_args_trapping_problems (Lisp_Object warning_class, |
| 853 | 6599 int nargs, |
| 6600 Lisp_Object *args, | |
| 6601 enum run_hooks_condition cond, | |
| 6602 int flags) | |
| 6603 { | |
| 6604 return run_hook_with_args_in_buffer_trapping_problems | |
| 1333 | 6605 (warning_class, current_buffer, nargs, args, cond, flags); |
| 428 | 6606 } |
| 6607 | |
| 6608 Lisp_Object | |
| 1333 | 6609 va_run_hook_with_args_trapping_problems (Lisp_Object warning_class, |
| 853 | 6610 Lisp_Object hook_var, |
| 6611 int nargs, ...) | |
| 6612 { | |
| 6613 /* This function can GC */ | |
| 6614 struct gcpro gcpro1; | |
| 6615 int i; | |
| 6616 va_list vargs; | |
| 6617 Lisp_Object *funcall_args = alloca_array (Lisp_Object, 1 + nargs); | |
| 6618 int flags; | |
| 6619 | |
| 6620 va_start (vargs, nargs); | |
| 6621 funcall_args[0] = hook_var; | |
| 6622 for (i = 0; i < nargs; i++) | |
| 6623 funcall_args[i + 1] = va_arg (vargs, Lisp_Object); | |
| 6624 flags = va_arg (vargs, int); | |
| 6625 va_end (vargs); | |
| 6626 | |
| 6627 GCPRO1_ARRAY (funcall_args, nargs + 1); | |
| 6628 RETURN_UNGCPRO (run_hook_with_args_in_buffer_trapping_problems | |
| 1333 | 6629 (warning_class, current_buffer, nargs + 1, funcall_args, |
| 853 | 6630 RUN_HOOKS_TO_COMPLETION, flags)); |
| 428 | 6631 } |
| 6632 | |
| 6633 Lisp_Object | |
| 1333 | 6634 va_run_hook_with_args_in_buffer_trapping_problems (Lisp_Object warning_class, |
| 853 | 6635 struct buffer *buf, |
| 6636 Lisp_Object hook_var, | |
| 6637 int nargs, ...) | |
| 6638 { | |
| 6639 /* This function can GC */ | |
| 6640 struct gcpro gcpro1; | |
| 6641 int i; | |
| 6642 va_list vargs; | |
| 6643 Lisp_Object *funcall_args = alloca_array (Lisp_Object, 1 + nargs); | |
| 6644 int flags; | |
| 6645 | |
| 6646 va_start (vargs, nargs); | |
| 6647 funcall_args[0] = hook_var; | |
| 6648 for (i = 0; i < nargs; i++) | |
| 6649 funcall_args[i + 1] = va_arg (vargs, Lisp_Object); | |
| 6650 flags = va_arg (vargs, int); | |
| 6651 va_end (vargs); | |
| 6652 | |
| 6653 GCPRO1_ARRAY (funcall_args, nargs + 1); | |
| 6654 RETURN_UNGCPRO (run_hook_with_args_in_buffer_trapping_problems | |
| 1333 | 6655 (warning_class, buf, nargs + 1, funcall_args, |
| 853 | 6656 RUN_HOOKS_TO_COMPLETION, flags)); |
| 428 | 6657 } |
| 6658 | |
| 6659 | |
| 6660 /************************************************************************/ | |
| 6661 /* The special binding stack */ | |
| 771 | 6662 /* Most C code should simply use specbind() and unbind_to_1(). */ |
| 428 | 6663 /* When performance is critical, use the macros in backtrace.h. */ |
| 6664 /************************************************************************/ | |
| 6665 | |
| 6666 #define min_max_specpdl_size 400 | |
| 6667 | |
| 6668 void | |
| 647 | 6669 grow_specpdl (EMACS_INT reserved) |
| 6670 { | |
| 6671 EMACS_INT size_needed = specpdl_depth() + reserved; | |
| 428 | 6672 if (size_needed >= max_specpdl_size) |
| 6673 { | |
| 6674 if (max_specpdl_size < min_max_specpdl_size) | |
| 6675 max_specpdl_size = min_max_specpdl_size; | |
| 6676 if (size_needed >= max_specpdl_size) | |
| 6677 { | |
| 1951 | 6678 /* Leave room for some specpdl in the debugger. */ |
| 6679 max_specpdl_size = size_needed + 100; | |
| 6680 if (max_specpdl_size > specpdl_size) | |
| 6681 { | |
| 6682 specpdl_size = max_specpdl_size; | |
| 6683 XREALLOC_ARRAY (specpdl, struct specbinding, specpdl_size); | |
| 6684 specpdl_ptr = specpdl + specpdl_depth(); | |
| 6685 } | |
| 563 | 6686 signal_continuable_error |
| 6687 (Qstack_overflow, | |
| 6688 "Variable binding depth exceeds max-specpdl-size", Qunbound); | |
| 428 | 6689 } |
| 6690 } | |
| 6691 while (specpdl_size < size_needed) | |
| 6692 { | |
| 6693 specpdl_size *= 2; | |
| 6694 if (specpdl_size > max_specpdl_size) | |
| 6695 specpdl_size = max_specpdl_size; | |
| 6696 } | |
| 6697 XREALLOC_ARRAY (specpdl, struct specbinding, specpdl_size); | |
| 6698 specpdl_ptr = specpdl + specpdl_depth(); | |
| 853 | 6699 check_specbind_stack_sanity (); |
| 428 | 6700 } |
| 6701 | |
| 6702 | |
| 6703 /* Handle unbinding buffer-local variables */ | |
| 6704 static Lisp_Object | |
| 6705 specbind_unwind_local (Lisp_Object ovalue) | |
| 6706 { | |
| 6707 Lisp_Object current = Fcurrent_buffer (); | |
| 6708 Lisp_Object symbol = specpdl_ptr->symbol; | |
| 853 | 6709 Lisp_Object victim = ovalue; |
| 6710 Lisp_Object buf = get_buffer (XCAR (victim), 0); | |
| 6711 ovalue = XCDR (victim); | |
| 428 | 6712 |
| 6713 free_cons (victim); | |
| 6714 | |
| 6715 if (NILP (buf)) | |
| 6716 { | |
| 6717 /* Deleted buffer -- do nothing */ | |
| 6718 } | |
| 6719 else if (symbol_value_buffer_local_info (symbol, XBUFFER (buf)) == 0) | |
| 6720 { | |
| 6721 /* Was buffer-local when binding was made, now no longer is. | |
| 6722 * (kill-local-variable can do this.) | |
| 6723 * Do nothing in this case. | |
| 6724 */ | |
| 6725 } | |
| 6726 else if (EQ (buf, current)) | |
| 6727 Fset (symbol, ovalue); | |
| 6728 else | |
| 6729 { | |
| 6730 /* Urk! Somebody switched buffers */ | |
| 6731 struct gcpro gcpro1; | |
| 6732 GCPRO1 (current); | |
| 6733 Fset_buffer (buf); | |
| 6734 Fset (symbol, ovalue); | |
| 6735 Fset_buffer (current); | |
| 6736 UNGCPRO; | |
| 6737 } | |
| 6738 return symbol; | |
| 6739 } | |
| 6740 | |
| 6741 static Lisp_Object | |
| 6742 specbind_unwind_wasnt_local (Lisp_Object buffer) | |
| 6743 { | |
| 6744 Lisp_Object current = Fcurrent_buffer (); | |
| 6745 Lisp_Object symbol = specpdl_ptr->symbol; | |
| 6746 | |
| 6747 buffer = get_buffer (buffer, 0); | |
| 6748 if (NILP (buffer)) | |
| 6749 { | |
| 6750 /* Deleted buffer -- do nothing */ | |
| 6751 } | |
| 6752 else if (symbol_value_buffer_local_info (symbol, XBUFFER (buffer)) == 0) | |
| 6753 { | |
| 6754 /* Was buffer-local when binding was made, now no longer is. | |
| 6755 * (kill-local-variable can do this.) | |
| 6756 * Do nothing in this case. | |
| 6757 */ | |
| 6758 } | |
| 6759 else if (EQ (buffer, current)) | |
| 6760 Fkill_local_variable (symbol); | |
| 6761 else | |
| 6762 { | |
| 6763 /* Urk! Somebody switched buffers */ | |
| 6764 struct gcpro gcpro1; | |
| 6765 GCPRO1 (current); | |
| 6766 Fset_buffer (buffer); | |
| 6767 Fkill_local_variable (symbol); | |
| 6768 Fset_buffer (current); | |
| 6769 UNGCPRO; | |
| 6770 } | |
| 6771 return symbol; | |
| 6772 } | |
| 6773 | |
| 6774 | |
| 6775 void | |
| 6776 specbind (Lisp_Object symbol, Lisp_Object value) | |
| 6777 { | |
| 6778 SPECBIND (symbol, value); | |
| 853 | 6779 |
| 6780 check_specbind_stack_sanity (); | |
| 428 | 6781 } |
| 6782 | |
| 6783 void | |
| 6784 specbind_magic (Lisp_Object symbol, Lisp_Object value) | |
| 6785 { | |
| 6786 int buffer_local = | |
| 6787 symbol_value_buffer_local_info (symbol, current_buffer); | |
| 6788 | |
| 6789 if (buffer_local == 0) | |
| 6790 { | |
| 6791 specpdl_ptr->old_value = find_symbol_value (symbol); | |
| 771 | 6792 specpdl_ptr->func = 0; /* Handled specially by unbind_to_1 */ |
| 428 | 6793 } |
| 6794 else if (buffer_local > 0) | |
| 6795 { | |
| 6796 /* Already buffer-local */ | |
| 6797 specpdl_ptr->old_value = noseeum_cons (Fcurrent_buffer (), | |
| 6798 find_symbol_value (symbol)); | |
| 6799 specpdl_ptr->func = specbind_unwind_local; | |
| 6800 } | |
| 6801 else | |
| 6802 { | |
| 6803 /* About to become buffer-local */ | |
| 6804 specpdl_ptr->old_value = Fcurrent_buffer (); | |
| 6805 specpdl_ptr->func = specbind_unwind_wasnt_local; | |
| 6806 } | |
| 6807 | |
| 6808 specpdl_ptr->symbol = symbol; | |
| 6809 specpdl_ptr++; | |
| 6810 specpdl_depth_counter++; | |
| 6811 | |
| 6812 Fset (symbol, value); | |
| 853 | 6813 |
| 6814 check_specbind_stack_sanity (); | |
| 428 | 6815 } |
| 6816 | |
| 771 | 6817 /* Record an unwind-protect -- FUNCTION will be called with ARG no matter |
| 6818 whether a normal or non-local exit occurs. (You need to call unbind_to_1() | |
| 6819 before your function returns normally, passing in the integer returned | |
| 6820 by this function.) Note: As long as the unwind-protect exists, ARG is | |
| 6821 automatically GCPRO'd. The return value from FUNCTION is completely | |
| 6822 ignored. #### We should eliminate it entirely. */ | |
| 6823 | |
| 6824 int | |
| 428 | 6825 record_unwind_protect (Lisp_Object (*function) (Lisp_Object arg), |
| 6826 Lisp_Object arg) | |
| 6827 { | |
| 6828 SPECPDL_RESERVE (1); | |
| 6829 specpdl_ptr->func = function; | |
| 6830 specpdl_ptr->symbol = Qnil; | |
| 6831 specpdl_ptr->old_value = arg; | |
| 6832 specpdl_ptr++; | |
| 6833 specpdl_depth_counter++; | |
| 853 | 6834 check_specbind_stack_sanity (); |
| 771 | 6835 return specpdl_depth_counter - 1; |
| 6836 } | |
| 6837 | |
| 6838 static Lisp_Object | |
| 802 | 6839 restore_lisp_object (Lisp_Object cons) |
| 6840 { | |
| 5013 | 6841 Lisp_Object laddr = XCAR (cons); |
| 6842 Lisp_Object *addr = (Lisp_Object *) GET_VOID_FROM_LISP (laddr); | |
| 802 | 6843 *addr = XCDR (cons); |
| 853 | 6844 free_cons (cons); |
| 802 | 6845 return Qnil; |
| 6846 } | |
| 6847 | |
| 6848 /* Establish an unwind-protect which will restore the Lisp_Object pointed to | |
| 6849 by ADDR with the value VAL. */ | |
| 814 | 6850 static int |
| 802 | 6851 record_unwind_protect_restoring_lisp_object (Lisp_Object *addr, |
| 6852 Lisp_Object val) | |
| 6853 { | |
| 5013 | 6854 /* We use a cons rather than a malloc()ed structure because we want the |
| 6855 Lisp object to have garbage-collection protection */ | |
| 6856 Lisp_Object laddr = STORE_VOID_IN_LISP (addr); | |
| 802 | 6857 return record_unwind_protect (restore_lisp_object, |
| 5013 | 6858 noseeum_cons (laddr, val)); |
| 802 | 6859 } |
| 6860 | |
| 6861 /* Similar to specbind() but for any C variable whose value is a | |
| 6862 Lisp_Object. Sets up an unwind-protect to restore the variable | |
| 6863 pointed to by ADDR to its existing value, and then changes its | |
| 6864 value to NEWVAL. Returns the previous value of specpdl_depth(); | |
| 6865 pass this to unbind_to() after you are done. */ | |
| 6866 int | |
| 6867 internal_bind_lisp_object (Lisp_Object *addr, Lisp_Object newval) | |
| 6868 { | |
| 6869 int count = specpdl_depth (); | |
| 6870 record_unwind_protect_restoring_lisp_object (addr, *addr); | |
| 6871 *addr = newval; | |
| 6872 return count; | |
| 6873 } | |
| 6874 | |
| 5013 | 6875 struct restore_int |
| 6876 { | |
| 6877 int *addr; | |
| 802 | 6878 int val; |
| 5013 | 6879 }; |
| 6880 | |
| 6881 static Lisp_Object | |
| 6882 restore_int (Lisp_Object obj) | |
| 6883 { | |
| 6884 struct restore_int *ri = (struct restore_int *) GET_VOID_FROM_LISP (obj); | |
| 6885 *(ri->addr) = ri->val; | |
| 6886 xfree (ri); | |
| 802 | 6887 return Qnil; |
| 6888 } | |
| 6889 | |
| 6890 /* Establish an unwind-protect which will restore the int pointed to | |
| 6891 by ADDR with the value VAL. This function works correctly with | |
| 6892 all ints, even those that don't fit into a Lisp integer. */ | |
| 1333 | 6893 int |
| 802 | 6894 record_unwind_protect_restoring_int (int *addr, int val) |
| 6895 { | |
| 5013 | 6896 struct restore_int *ri = xnew (struct restore_int); |
| 6897 ri->addr = addr; | |
| 6898 ri->val = val; | |
| 6899 return record_unwind_protect (restore_int, STORE_VOID_IN_LISP (ri)); | |
| 802 | 6900 } |
| 6901 | |
| 6902 /* Similar to specbind() but for any C variable whose value is an int. | |
| 6903 Sets up an unwind-protect to restore the variable pointed to by | |
| 6904 ADDR to its existing value, and then changes its value to NEWVAL. | |
| 6905 Returns the previous value of specpdl_depth(); pass this to | |
| 6906 unbind_to() after you are done. This function works correctly with | |
| 6907 all ints, even those that don't fit into a Lisp integer. */ | |
| 6908 int | |
| 6909 internal_bind_int (int *addr, int newval) | |
| 6910 { | |
| 6911 int count = specpdl_depth (); | |
| 6912 record_unwind_protect_restoring_int (addr, *addr); | |
| 6913 *addr = newval; | |
| 6914 return count; | |
| 6915 } | |
| 6916 | |
| 6917 static Lisp_Object | |
| 771 | 6918 free_pointer (Lisp_Object opaque) |
| 6919 { | |
| 5013 | 6920 void *ptr = GET_VOID_FROM_LISP (opaque); |
| 6921 xfree (ptr); | |
| 771 | 6922 return Qnil; |
| 6923 } | |
| 6924 | |
| 6925 /* Establish an unwind-protect which will free the specified block. | |
| 6926 */ | |
| 6927 int | |
| 6928 record_unwind_protect_freeing (void *ptr) | |
| 6929 { | |
| 5013 | 6930 return record_unwind_protect (free_pointer, STORE_VOID_IN_LISP (ptr)); |
| 771 | 6931 } |
| 6932 | |
| 6933 static Lisp_Object | |
| 6934 free_dynarr (Lisp_Object opaque) | |
| 6935 { | |
| 5013 | 6936 Dynarr_free (GET_VOID_FROM_LISP (opaque)); |
| 771 | 6937 return Qnil; |
| 6938 } | |
| 6939 | |
| 6940 int | |
| 6941 record_unwind_protect_freeing_dynarr (void *ptr) | |
| 6942 { | |
| 5013 | 6943 return record_unwind_protect (free_dynarr, STORE_VOID_IN_LISP (ptr)); |
| 771 | 6944 } |
| 428 | 6945 |
| 6946 /* Unwind the stack till specpdl_depth() == COUNT. | |
| 6947 VALUE is not used, except that, purely as a convenience to the | |
| 771 | 6948 caller, it is protected from garbage-protection and returned. */ |
| 428 | 6949 Lisp_Object |
| 771 | 6950 unbind_to_1 (int count, Lisp_Object value) |
| 428 | 6951 { |
| 6952 UNBIND_TO_GCPRO (count, value); | |
| 853 | 6953 check_specbind_stack_sanity (); |
| 428 | 6954 return value; |
| 6955 } | |
| 6956 | |
| 6957 /* Don't call this directly. | |
| 6958 Only for use by UNBIND_TO* macros in backtrace.h */ | |
| 6959 void | |
| 6960 unbind_to_hairy (int count) | |
| 6961 { | |
| 442 | 6962 ++specpdl_ptr; |
| 6963 ++specpdl_depth_counter; | |
| 6964 | |
| 428 | 6965 while (specpdl_depth_counter != count) |
| 6966 { | |
| 1313 | 6967 Lisp_Object oquit = Qunbound; |
| 6968 | |
| 6969 /* Do this check BEFORE decrementing the values below, because once | |
| 6970 they're decremented, GC protection is lost on | |
| 6971 specpdl_ptr->old_value. */ | |
| 1322 | 6972 if (specpdl_ptr[-1].func == Fprogn) |
| 1313 | 6973 { |
| 6974 /* Allow QUIT within unwind-protect routines, but defer any | |
| 6975 existing QUIT until afterwards. Only do this, however, for | |
| 6976 unwind-protects established by Lisp code, not by C code | |
| 6977 (e.g. free_opaque_ptr() or something), because the act of | |
| 6978 checking for QUIT can cause all sorts of weird things to | |
| 6979 happen, since it churns the event loop -- redisplay, running | |
| 6980 Lisp, etc. Code should not have to worry about this just | |
| 6981 because of establishing an unwind-protect. */ | |
| 6982 check_quit (); /* make Vquit_flag accurate */ | |
| 6983 oquit = Vquit_flag; | |
| 6984 Vquit_flag = Qnil; | |
| 6985 } | |
| 6986 | |
| 428 | 6987 --specpdl_ptr; |
| 6988 --specpdl_depth_counter; | |
| 6989 | |
| 1313 | 6990 /* #### At this point, there is no GC protection on old_value. This |
| 6991 could be a real problem, depending on what unwind-protect function | |
| 6992 is called. It looks like it just so happens that the ones | |
| 6993 actually called don't have a problem with this, e.g. Fprogn. But | |
| 6994 we should look into fixing this. (Many unwind-protect functions | |
| 6995 free values. Is it a problem if freed values are | |
| 6996 GC-protected?) */ | |
| 428 | 6997 if (specpdl_ptr->func != 0) |
| 1313 | 6998 { |
| 6999 /* An unwind-protect */ | |
| 7000 (*specpdl_ptr->func) (specpdl_ptr->old_value); | |
| 7001 } | |
| 7002 | |
| 428 | 7003 else |
| 7004 { | |
| 7005 /* We checked symbol for validity when we specbound it, | |
| 7006 so only need to call Fset if symbol has magic value. */ | |
| 440 | 7007 Lisp_Symbol *sym = XSYMBOL (specpdl_ptr->symbol); |
| 428 | 7008 if (!SYMBOL_VALUE_MAGIC_P (sym->value)) |
| 7009 sym->value = specpdl_ptr->old_value; | |
| 7010 else | |
| 7011 Fset (specpdl_ptr->symbol, specpdl_ptr->old_value); | |
| 7012 } | |
| 7013 | |
| 7014 #if 0 /* martin */ | |
| 7015 #ifndef EXCEEDINGLY_QUESTIONABLE_CODE | |
| 7016 /* There should never be anything here for us to remove. | |
| 7017 If so, it indicates a logic error in Emacs. Catches | |
| 7018 should get removed when a throw or signal occurs, or | |
| 7019 when a catch or condition-case exits normally. But | |
| 7020 it's too dangerous to just remove this code. --ben */ | |
| 7021 | |
| 7022 /* Furthermore, this code is not in FSFmacs!!! | |
| 7023 Braino on mly's part? */ | |
| 7024 /* If we're unwound past the pdlcount of a catch frame, | |
| 7025 that catch can't possibly still be valid. */ | |
| 7026 while (catchlist && catchlist->pdlcount > specpdl_depth_counter) | |
| 7027 { | |
| 7028 catchlist = catchlist->next; | |
| 7029 /* Don't mess with gcprolist, backtrace_list here */ | |
| 7030 } | |
| 7031 #endif | |
| 7032 #endif | |
| 1313 | 7033 |
| 7034 if (!UNBOUNDP (oquit)) | |
| 7035 Vquit_flag = oquit; | |
| 428 | 7036 } |
| 853 | 7037 check_specbind_stack_sanity (); |
| 428 | 7038 } |
| 7039 | |
| 7040 | |
| 7041 | |
| 7042 /* Get the value of symbol's global binding, even if that binding is | |
| 7043 not now dynamically visible. May return Qunbound or magic values. */ | |
| 7044 | |
| 7045 Lisp_Object | |
| 7046 top_level_value (Lisp_Object symbol) | |
| 7047 { | |
| 7048 REGISTER struct specbinding *ptr = specpdl; | |
| 7049 | |
| 7050 CHECK_SYMBOL (symbol); | |
| 7051 for (; ptr != specpdl_ptr; ptr++) | |
| 7052 { | |
| 7053 if (EQ (ptr->symbol, symbol)) | |
| 7054 return ptr->old_value; | |
| 7055 } | |
| 7056 return XSYMBOL (symbol)->value; | |
| 7057 } | |
| 7058 | |
| 7059 #if 0 | |
| 7060 | |
| 7061 Lisp_Object | |
| 7062 top_level_set (Lisp_Object symbol, Lisp_Object newval) | |
| 7063 { | |
| 7064 REGISTER struct specbinding *ptr = specpdl; | |
| 7065 | |
| 7066 CHECK_SYMBOL (symbol); | |
| 7067 for (; ptr != specpdl_ptr; ptr++) | |
| 7068 { | |
| 7069 if (EQ (ptr->symbol, symbol)) | |
| 7070 { | |
| 7071 ptr->old_value = newval; | |
| 7072 return newval; | |
| 7073 } | |
| 7074 } | |
| 7075 return Fset (symbol, newval); | |
| 7076 } | |
| 7077 | |
| 7078 #endif /* 0 */ | |
| 7079 | |
| 7080 | |
| 7081 /************************************************************************/ | |
| 7082 /* Backtraces */ | |
| 7083 /************************************************************************/ | |
| 7084 | |
| 7085 DEFUN ("backtrace-debug", Fbacktrace_debug, 2, 2, 0, /* | |
| 7086 Set the debug-on-exit flag of eval frame LEVEL levels down to FLAG. | |
| 7087 The debugger is entered when that frame exits, if the flag is non-nil. | |
| 7088 */ | |
| 7089 (level, flag)) | |
| 7090 { | |
| 7091 REGISTER struct backtrace *backlist = backtrace_list; | |
| 7092 REGISTER int i; | |
| 7093 | |
|
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
7094 CHECK_FIXNUM (level); |
|
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
7095 |
|
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
7096 for (i = 0; backlist && i < XFIXNUM (level); i++) |
| 428 | 7097 { |
| 7098 backlist = backlist->next; | |
| 7099 } | |
| 7100 | |
| 7101 if (backlist) | |
| 7102 backlist->debug_on_exit = !NILP (flag); | |
| 7103 | |
| 7104 return flag; | |
| 7105 } | |
| 7106 | |
| 7107 static void | |
| 7108 backtrace_specials (int speccount, int speclimit, Lisp_Object stream) | |
| 7109 { | |
| 7110 int printing_bindings = 0; | |
| 7111 | |
| 7112 for (; speccount > speclimit; speccount--) | |
| 7113 { | |
| 7114 if (specpdl[speccount - 1].func == 0 | |
| 7115 || specpdl[speccount - 1].func == specbind_unwind_local | |
| 7116 || specpdl[speccount - 1].func == specbind_unwind_wasnt_local) | |
| 7117 { | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7118 write_ascstring (stream, !printing_bindings ? " # bind (" : " "); |
| 428 | 7119 Fprin1 (specpdl[speccount - 1].symbol, stream); |
| 7120 printing_bindings = 1; | |
| 7121 } | |
| 7122 else | |
| 7123 { | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7124 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
|
7125 write_ascstring (stream, " # (unwind-protect ...)\n"); |
| 428 | 7126 printing_bindings = 0; |
| 7127 } | |
| 7128 } | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7129 if (printing_bindings) write_ascstring (stream, ")\n"); |
| 428 | 7130 } |
| 7131 | |
| 1292 | 7132 static Lisp_Object |
| 7133 backtrace_unevalled_args (Lisp_Object *args) | |
| 7134 { | |
| 7135 if (args) | |
| 7136 return *args; | |
| 7137 else | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7138 return list1 (build_ascstring ("[internal]")); |
| 1292 | 7139 } |
| 7140 | |
| 428 | 7141 DEFUN ("backtrace", Fbacktrace, 0, 2, "", /* |
| 7142 Print a trace of Lisp function calls currently active. | |
| 438 | 7143 Optional arg STREAM specifies the output stream to send the backtrace to, |
| 444 | 7144 and defaults to the value of `standard-output'. |
| 7145 Optional second arg DETAILED non-nil means show places where currently | |
| 7146 active variable bindings, catches, condition-cases, and | |
| 7147 unwind-protects, as well as function calls, were made. | |
| 428 | 7148 */ |
| 7149 (stream, detailed)) | |
| 7150 { | |
| 7151 /* This function can GC */ | |
| 7152 struct backtrace *backlist = backtrace_list; | |
| 7153 struct catchtag *catches = catchlist; | |
| 7154 int speccount = specpdl_depth(); | |
| 7155 | |
| 7156 int old_nl = print_escape_newlines; | |
| 7157 int old_pr = print_readably; | |
| 7158 Lisp_Object old_level = Vprint_level; | |
| 7159 Lisp_Object oiq = Vinhibit_quit; | |
| 7160 struct gcpro gcpro1, gcpro2; | |
| 7161 | |
| 7162 /* We can't allow quits in here because that could cause the values | |
| 7163 of print_readably and print_escape_newlines to get screwed up. | |
| 7164 Normally we would use a record_unwind_protect but that would | |
| 7165 screw up the functioning of this function. */ | |
| 7166 Vinhibit_quit = Qt; | |
| 7167 | |
| 7168 entering_debugger = 0; | |
| 7169 | |
| 872 | 7170 if (!NILP (detailed)) |
|
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
7171 Vprint_level = make_fixnum (50); |
| 872 | 7172 else |
|
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
7173 Vprint_level = make_fixnum (3); |
| 428 | 7174 print_readably = 0; |
| 7175 print_escape_newlines = 1; | |
| 7176 | |
| 7177 GCPRO2 (stream, old_level); | |
| 7178 | |
| 1261 | 7179 stream = canonicalize_printcharfun (stream); |
| 428 | 7180 |
| 7181 for (;;) | |
| 7182 { | |
| 7183 if (!NILP (detailed) && catches && catches->backlist == backlist) | |
| 7184 { | |
| 7185 int catchpdl = catches->pdlcount; | |
| 438 | 7186 if (speccount > catchpdl |
| 7187 && specpdl[catchpdl].func == condition_case_unwind) | |
| 428 | 7188 /* This is a condition-case catchpoint */ |
| 7189 catchpdl = catchpdl + 1; | |
| 7190 | |
| 7191 backtrace_specials (speccount, catchpdl, stream); | |
| 7192 | |
| 7193 speccount = catches->pdlcount; | |
| 7194 if (catchpdl == speccount) | |
| 7195 { | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7196 write_ascstring (stream, " # (catch "); |
| 428 | 7197 Fprin1 (catches->tag, stream); |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7198 write_ascstring (stream, " ...)\n"); |
| 428 | 7199 } |
| 7200 else | |
| 7201 { | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7202 write_ascstring (stream, " # (condition-case ... . "); |
| 428 | 7203 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
|
7204 write_ascstring (stream, ")\n"); |
| 428 | 7205 } |
| 7206 catches = catches->next; | |
| 7207 } | |
| 7208 else if (!backlist) | |
| 7209 break; | |
| 7210 else | |
| 7211 { | |
| 7212 if (!NILP (detailed) && backlist->pdlcount < speccount) | |
| 7213 { | |
| 7214 backtrace_specials (speccount, backlist->pdlcount, stream); | |
| 7215 speccount = backlist->pdlcount; | |
| 7216 } | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7217 write_ascstring (stream, backlist->debug_on_exit ? "* " : " "); |
| 428 | 7218 if (backlist->nargs == UNEVALLED) |
| 7219 { | |
| 1292 | 7220 Fprin1 (Fcons (*backlist->function, |
| 7221 backtrace_unevalled_args (backlist->args)), | |
| 7222 stream); | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7223 write_ascstring (stream, "\n"); /* from FSFmacs 19.30 */ |
| 428 | 7224 } |
| 7225 else | |
| 7226 { | |
| 7227 Lisp_Object tem = *backlist->function; | |
| 7228 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
|
7229 write_ascstring (stream, "("); |
| 428 | 7230 if (backlist->nargs == MANY) |
| 7231 { | |
| 7232 int i; | |
| 7233 Lisp_Object tail = Qnil; | |
| 7234 struct gcpro ngcpro1; | |
| 7235 | |
| 7236 NGCPRO1 (tail); | |
| 7237 for (tail = *backlist->args, i = 0; | |
| 7238 !NILP (tail); | |
| 7239 tail = Fcdr (tail), i++) | |
| 7240 { | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7241 if (i != 0) write_ascstring (stream, " "); |
| 428 | 7242 Fprin1 (Fcar (tail), stream); |
| 7243 } | |
| 7244 NUNGCPRO; | |
| 7245 } | |
| 7246 else | |
| 7247 { | |
| 7248 int i; | |
| 7249 for (i = 0; i < backlist->nargs; i++) | |
| 7250 { | |
| 826 | 7251 if (!i && EQ (tem, Qbyte_code)) |
| 7252 { | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7253 write_ascstring (stream, "\"...\""); |
| 826 | 7254 continue; |
| 7255 } | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7256 if (i != 0) write_ascstring (stream, " "); |
| 428 | 7257 Fprin1 (backlist->args[i], stream); |
| 7258 } | |
| 7259 } | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7260 write_ascstring (stream, ")\n"); |
| 428 | 7261 } |
| 7262 backlist = backlist->next; | |
| 7263 } | |
| 7264 } | |
| 7265 Vprint_level = old_level; | |
| 7266 print_readably = old_pr; | |
| 7267 print_escape_newlines = old_nl; | |
| 7268 UNGCPRO; | |
| 7269 Vinhibit_quit = oiq; | |
| 7270 return Qnil; | |
| 7271 } | |
| 7272 | |
| 7273 | |
| 444 | 7274 DEFUN ("backtrace-frame", Fbacktrace_frame, 1, 1, 0, /* |
| 7275 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
|
7276 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
|
7277 operator), the value is (nil FUNCTION ARG-FORMS...). |
| 428 | 7278 If that frame has evaluated its arguments and called its function already, |
| 7279 the value is (t FUNCTION ARG-VALUES...). | |
| 7280 A &rest arg is represented as the tail of the list ARG-VALUES. | |
| 7281 FUNCTION is whatever was supplied as car of evaluated list, | |
| 7282 or a lambda expression for macro calls. | |
| 444 | 7283 If NFRAMES is more than the number of frames, the value is nil. |
| 428 | 7284 */ |
| 7285 (nframes)) | |
| 7286 { | |
| 7287 REGISTER struct backtrace *backlist = backtrace_list; | |
| 7288 REGISTER int i; | |
| 7289 Lisp_Object tem; | |
| 7290 | |
|
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
7291 check_integer_range (nframes, Qzero, make_integer (MOST_POSITIVE_FIXNUM)); |
| 428 | 7292 |
| 7293 /* Find the frame requested. */ | |
|
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
7294 for (i = XFIXNUM (nframes); backlist && (i-- > 0);) |
| 428 | 7295 backlist = backlist->next; |
| 7296 | |
| 7297 if (!backlist) | |
| 7298 return Qnil; | |
| 7299 if (backlist->nargs == UNEVALLED) | |
| 1292 | 7300 return Fcons (Qnil, Fcons (*backlist->function, |
| 7301 backtrace_unevalled_args (backlist->args))); | |
| 428 | 7302 else |
| 7303 { | |
| 7304 if (backlist->nargs == MANY) | |
| 7305 tem = *backlist->args; | |
| 7306 else | |
| 7307 tem = Flist (backlist->nargs, backlist->args); | |
| 7308 | |
| 7309 return Fcons (Qt, Fcons (*backlist->function, tem)); | |
| 7310 } | |
| 7311 } | |
| 7312 | |
| 7313 | |
| 7314 /************************************************************************/ | |
| 7315 /* Warnings */ | |
| 7316 /************************************************************************/ | |
| 7317 | |
| 1123 | 7318 static int |
| 7319 warning_will_be_discarded (Lisp_Object level) | |
| 7320 { | |
| 7321 /* Don't even generate debug warnings if they're going to be discarded, | |
| 7322 to avoid excessive consing. */ | |
| 7323 return (EQ (level, Qdebug) && !NILP (Vlog_warning_minimum_level) && | |
| 7324 !EQ (Vlog_warning_minimum_level, Qdebug)); | |
| 7325 } | |
| 7326 | |
| 428 | 7327 void |
| 1204 | 7328 warn_when_safe_lispobj (Lisp_Object class_, Lisp_Object level, |
| 428 | 7329 Lisp_Object obj) |
| 7330 { | |
| 1123 | 7331 if (warning_will_be_discarded (level)) |
| 793 | 7332 return; |
| 1123 | 7333 |
| 1204 | 7334 obj = list1 (list3 (class_, level, obj)); |
| 428 | 7335 if (NILP (Vpending_warnings)) |
| 7336 Vpending_warnings = Vpending_warnings_tail = obj; | |
| 7337 else | |
| 7338 { | |
| 7339 Fsetcdr (Vpending_warnings_tail, obj); | |
| 7340 Vpending_warnings_tail = obj; | |
| 7341 } | |
| 7342 } | |
| 7343 | |
| 7344 /* #### This should probably accept Lisp objects; but then we have | |
| 7345 to make sure that Feval() isn't called, since it might not be safe. | |
| 7346 | |
| 7347 An alternative approach is to just pass some non-string type of | |
| 7348 Lisp_Object to warn_when_safe_lispobj(); `prin1-to-string' will | |
| 7349 automatically be called when it is safe to do so. */ | |
| 7350 | |
| 7351 void | |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7352 warn_when_safe (Lisp_Object class_, Lisp_Object level, const Ascbyte *fmt, ...) |
| 428 | 7353 { |
| 7354 Lisp_Object obj; | |
| 7355 va_list args; | |
| 7356 | |
| 1123 | 7357 if (warning_will_be_discarded (level)) |
| 793 | 7358 return; |
| 1123 | 7359 |
| 428 | 7360 va_start (args, fmt); |
|
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4846
diff
changeset
|
7361 obj = emacs_vsprintf_string (GETTEXT (fmt), args); |
| 428 | 7362 va_end (args); |
| 7363 | |
| 1204 | 7364 warn_when_safe_lispobj (class_, level, obj); |
| 428 | 7365 } |
| 7366 | |
| 7367 | |
| 7368 | |
| 7369 | |
| 7370 /************************************************************************/ | |
| 7371 /* Initialization */ | |
| 7372 /************************************************************************/ | |
| 7373 | |
| 7374 void | |
| 7375 syms_of_eval (void) | |
| 7376 { | |
|
5117
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3025
diff
changeset
|
7377 INIT_LISP_OBJECT (subr); |
|
5118
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
7378 INIT_LISP_OBJECT (multiple_value); |
| 442 | 7379 |
| 563 | 7380 DEFSYMBOL (Qinhibit_quit); |
| 7381 DEFSYMBOL (Qautoload); | |
|
5615
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
7382 DEFSYMBOL (Qbyte_compile_macro_environment); |
| 563 | 7383 DEFSYMBOL (Qdebug_on_error); |
| 7384 DEFSYMBOL (Qstack_trace_on_error); | |
| 7385 DEFSYMBOL (Qdebug_on_signal); | |
| 7386 DEFSYMBOL (Qstack_trace_on_signal); | |
| 7387 DEFSYMBOL (Qdebugger); | |
| 7388 DEFSYMBOL (Qmacro); | |
| 428 | 7389 defsymbol (&Qand_rest, "&rest"); |
| 7390 defsymbol (&Qand_optional, "&optional"); | |
| 7391 /* Note that the process code also uses Qexit */ | |
| 563 | 7392 DEFSYMBOL (Qexit); |
|
5506
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
7393 DEFSYMBOL (Qdeclare); |
| 563 | 7394 DEFSYMBOL (Qsetq); |
| 7395 DEFSYMBOL (Qinteractive); | |
| 7396 DEFSYMBOL (Qcommandp); | |
| 7397 DEFSYMBOL (Qdefun); | |
| 7398 DEFSYMBOL (Qprogn); | |
| 7399 DEFSYMBOL (Qvalues); | |
| 7400 DEFSYMBOL (Qdisplay_warning); | |
| 7401 DEFSYMBOL (Qrun_hooks); | |
| 887 | 7402 DEFSYMBOL (Qfinalize_list); |
| 563 | 7403 DEFSYMBOL (Qif); |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7404 DEFSYMBOL (Qthrow); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7405 DEFSYMBOL (Qobsolete_throw); |
|
4686
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
7406 DEFSYMBOL (Qmultiple_value_list_internal); |
| 428 | 7407 |
| 7408 DEFSUBR (For); | |
| 7409 DEFSUBR (Fand); | |
| 7410 DEFSUBR (Fif); | |
| 7411 DEFSUBR_MACRO (Fwhen); | |
| 7412 DEFSUBR_MACRO (Funless); | |
| 7413 DEFSUBR (Fcond); | |
| 7414 DEFSUBR (Fprogn); | |
| 7415 DEFSUBR (Fprog1); | |
| 7416 DEFSUBR (Fprog2); | |
| 7417 DEFSUBR (Fsetq); | |
| 7418 DEFSUBR (Fquote); | |
|
4744
17f7e9191c0b
Rationalise duplicated functionality, #'custom-quote, #'quote-maybe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4693
diff
changeset
|
7419 DEFSUBR (Fquote_maybe); |
| 428 | 7420 DEFSUBR (Ffunction); |
| 7421 DEFSUBR (Fdefun); | |
| 7422 DEFSUBR (Fdefmacro); | |
| 7423 DEFSUBR (Fdefvar); | |
| 7424 DEFSUBR (Fdefconst); | |
| 7425 DEFSUBR (Flet); | |
| 7426 DEFSUBR (FletX); | |
| 7427 DEFSUBR (Fwhile); | |
|
5615
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
7428 DEFSUBR (Fmacroexpand); |
| 428 | 7429 DEFSUBR (Fcatch); |
| 7430 DEFSUBR (Fthrow); | |
| 7431 DEFSUBR (Funwind_protect); | |
| 7432 DEFSUBR (Fcondition_case); | |
| 7433 DEFSUBR (Fcall_with_condition_handler); | |
| 7434 DEFSUBR (Fsignal); | |
| 7435 DEFSUBR (Finteractive_p); | |
| 7436 DEFSUBR (Fcommandp); | |
| 7437 DEFSUBR (Fcommand_execute); | |
| 7438 DEFSUBR (Fautoload); | |
| 7439 DEFSUBR (Feval); | |
| 7440 DEFSUBR (Fapply); | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7441 DEFSUBR (Fmultiple_value_call); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7442 DEFSUBR (Fmultiple_value_list_internal); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7443 DEFSUBR (Fmultiple_value_prog1); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7444 DEFSUBR (Fvalues); |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7445 DEFSUBR (Fvalues_list); |
| 428 | 7446 DEFSUBR (Ffuncall); |
| 7447 DEFSUBR (Ffunctionp); | |
| 7448 DEFSUBR (Ffunction_min_args); | |
| 7449 DEFSUBR (Ffunction_max_args); | |
| 7450 DEFSUBR (Frun_hooks); | |
| 7451 DEFSUBR (Frun_hook_with_args); | |
| 7452 DEFSUBR (Frun_hook_with_args_until_success); | |
| 7453 DEFSUBR (Frun_hook_with_args_until_failure); | |
| 7454 DEFSUBR (Fbacktrace_debug); | |
| 7455 DEFSUBR (Fbacktrace); | |
| 7456 DEFSUBR (Fbacktrace_frame); | |
| 7457 } | |
| 7458 | |
| 7459 void | |
| 814 | 7460 init_eval_semi_early (void) |
| 428 | 7461 { |
| 7462 specpdl_ptr = specpdl; | |
| 7463 specpdl_depth_counter = 0; | |
| 7464 catchlist = 0; | |
| 7465 Vcondition_handlers = Qnil; | |
| 7466 backtrace_list = 0; | |
| 7467 Vquit_flag = Qnil; | |
| 7468 debug_on_next_call = 0; | |
| 7469 lisp_eval_depth = 0; | |
| 7470 entering_debugger = 0; | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7471 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7472 first_desired_multiple_value = 0; |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7473 multiple_value_current_limit = 1; |
| 428 | 7474 } |
| 7475 | |
| 7476 void | |
| 7477 reinit_vars_of_eval (void) | |
| 7478 { | |
| 7479 preparing_for_armageddon = 0; | |
| 7480 in_warnings = 0; | |
| 7481 specpdl_size = 50; | |
| 7482 specpdl = xnew_array (struct specbinding, specpdl_size); | |
| 7483 /* XEmacs change: increase these values. */ | |
| 7484 max_specpdl_size = 3000; | |
| 442 | 7485 max_lisp_eval_depth = 1000; |
| 7486 #ifdef DEFEND_AGAINST_THROW_RECURSION | |
| 428 | 7487 throw_level = 0; |
| 7488 #endif | |
| 2367 | 7489 init_eval_semi_early (); |
| 428 | 7490 } |
| 7491 | |
| 7492 void | |
| 7493 vars_of_eval (void) | |
| 7494 { | |
| 7495 DEFVAR_INT ("max-specpdl-size", &max_specpdl_size /* | |
| 7496 Limit on number of Lisp variable bindings & unwind-protects before error. | |
| 7497 */ ); | |
| 7498 | |
| 7499 DEFVAR_INT ("max-lisp-eval-depth", &max_lisp_eval_depth /* | |
| 7500 Limit on depth in `eval', `apply' and `funcall' before error. | |
| 7501 This limit is to catch infinite recursions for you before they cause | |
| 7502 actual stack overflow in C, which would be fatal for Emacs. | |
| 7503 You can safely make it considerably larger than its default value, | |
| 7504 if that proves inconveniently small. | |
| 7505 */ ); | |
| 7506 | |
| 7507 DEFVAR_LISP ("quit-flag", &Vquit_flag /* | |
| 853 | 7508 t causes running Lisp code to abort, unless `inhibit-quit' is non-nil. |
| 7509 `critical' causes running Lisp code to abort regardless of `inhibit-quit'. | |
| 7510 Normally, you do not need to set this value yourself. It is set to | |
| 7511 t each time a Control-G is detected, and to `critical' each time a | |
| 7512 Shift-Control-G is detected. The XEmacs core C code is littered with | |
| 7513 calls to the QUIT; macro, which check the values of `quit-flag' and | |
| 2500 | 7514 `inhibit-quit' and ABORT (or more accurately, call (signal 'quit)) if |
| 853 | 7515 it's correct to do so. |
| 428 | 7516 */ ); |
| 7517 Vquit_flag = Qnil; | |
| 7518 | |
| 7519 DEFVAR_LISP ("inhibit-quit", &Vinhibit_quit /* | |
| 7520 Non-nil inhibits C-g quitting from happening immediately. | |
| 7521 Note that `quit-flag' will still be set by typing C-g, | |
| 7522 so a quit will be signalled as soon as `inhibit-quit' is nil. | |
| 7523 To prevent this happening, set `quit-flag' to nil | |
| 853 | 7524 before making `inhibit-quit' nil. |
| 7525 | |
| 7526 The value of `inhibit-quit' is ignored if a critical quit is | |
| 7527 requested by typing control-shift-G in a window-system frame; | |
| 7528 this is explained in more detail in `quit-flag'. | |
| 428 | 7529 */ ); |
| 7530 Vinhibit_quit = Qnil; | |
| 7531 | |
| 7532 DEFVAR_LISP ("stack-trace-on-error", &Vstack_trace_on_error /* | |
| 7533 *Non-nil means automatically display a backtrace buffer | |
| 7534 after any error that is not handled by a `condition-case'. | |
| 7535 If the value is a list, an error only means to display a backtrace | |
| 7536 if one of its condition symbols appears in the list. | |
| 7537 See also variable `stack-trace-on-signal'. | |
| 7538 */ ); | |
| 7539 Vstack_trace_on_error = Qnil; | |
| 7540 | |
| 7541 DEFVAR_LISP ("stack-trace-on-signal", &Vstack_trace_on_signal /* | |
| 7542 *Non-nil means automatically display a backtrace buffer | |
| 7543 after any error that is signalled, whether or not it is handled by | |
| 7544 a `condition-case'. | |
| 7545 If the value is a list, an error only means to display a backtrace | |
| 7546 if one of its condition symbols appears in the list. | |
| 7547 See also variable `stack-trace-on-error'. | |
| 7548 */ ); | |
| 7549 Vstack_trace_on_signal = Qnil; | |
| 7550 | |
| 7551 DEFVAR_LISP ("debug-ignored-errors", &Vdebug_ignored_errors /* | |
| 7552 *List of errors for which the debugger should not be called. | |
| 7553 Each element may be a condition-name or a regexp that matches error messages. | |
| 7554 If any element applies to a given error, that error skips the debugger | |
| 7555 and just returns to top level. | |
| 7556 This overrides the variable `debug-on-error'. | |
| 7557 It does not apply to errors handled by `condition-case'. | |
| 7558 */ ); | |
| 7559 Vdebug_ignored_errors = Qnil; | |
| 7560 | |
| 7561 DEFVAR_LISP ("debug-on-error", &Vdebug_on_error /* | |
| 7562 *Non-nil means enter debugger if an unhandled error is signalled. | |
| 7563 The debugger will not be entered if the error is handled by | |
| 7564 a `condition-case'. | |
| 7565 If the value is a list, an error only means to enter the debugger | |
| 7566 if one of its condition symbols appears in the list. | |
| 7567 This variable is overridden by `debug-ignored-errors'. | |
| 7568 See also variables `debug-on-quit' and `debug-on-signal'. | |
| 1123 | 7569 |
|
4657
f8d7d8202635
imported patch accept-process-output-docstring
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4642
diff
changeset
|
7570 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
|
7571 (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
|
7572 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
|
7573 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
|
7574 |
| 1123 | 7575 If this variable is set while XEmacs is running noninteractively (using |
| 7576 `-batch'), and XEmacs was configured with `--debug' (#define XEMACS_DEBUG | |
| 7577 in the C code), instead of trying to invoke the Lisp debugger (which | |
| 7578 obviously won't work), XEmacs will break out to a C debugger using | |
| 7579 \(force-debugging-signal t). This is useful because debugging | |
| 7580 noninteractive runs of XEmacs is often very difficult, since they typically | |
| 7581 happen as part of sometimes large and complex make suites (e.g. rebuilding | |
| 2500 | 7582 the XEmacs packages). NOTE: This runs ABORT()!!! (As well as and after |
| 1123 | 7583 executing INT 3 under MS Windows, which should invoke a debugger if it's |
| 7584 active.) This is guaranteed to kill XEmacs! (But in this situation, XEmacs | |
| 7585 is about to die anyway, and if no debugger is present, this will usefully | |
| 7586 dump core.) The most useful way to set this flag when debugging | |
| 7587 noninteractive runs, especially in makefiles, is using the environment | |
| 7588 variable XEMACSDEBUG, like this: | |
| 771 | 7589 |
| 7590 \(using csh) setenv XEMACSDEBUG '(setq debug-on-error t)' | |
| 7591 \(using bash) export XEMACSDEBUG='(setq debug-on-error t)' | |
| 428 | 7592 */ ); |
| 7593 Vdebug_on_error = Qnil; | |
| 7594 | |
| 7595 DEFVAR_LISP ("debug-on-signal", &Vdebug_on_signal /* | |
| 7596 *Non-nil means enter debugger if an error is signalled. | |
| 7597 The debugger will be entered whether or not the error is handled by | |
| 7598 a `condition-case'. | |
| 7599 If the value is a list, an error only means to enter the debugger | |
| 7600 if one of its condition symbols appears in the list. | |
| 7601 See also variable `debug-on-quit'. | |
| 1123 | 7602 |
| 7603 This will attempt to enter a C debugger when XEmacs is run noninteractively | |
| 7604 and under the same conditions as described in `debug-on-error'. | |
| 428 | 7605 */ ); |
| 7606 Vdebug_on_signal = Qnil; | |
| 7607 | |
| 7608 DEFVAR_BOOL ("debug-on-quit", &debug_on_quit /* | |
| 7609 *Non-nil means enter debugger if quit is signalled (C-G, for example). | |
| 7610 Does not apply if quit is handled by a `condition-case'. Entering the | |
| 7611 debugger can also be achieved at any time (for X11 console) by typing | |
| 7612 control-shift-G to signal a critical quit. | |
| 7613 */ ); | |
| 7614 debug_on_quit = 0; | |
| 7615 | |
| 7616 DEFVAR_BOOL ("debug-on-next-call", &debug_on_next_call /* | |
| 7617 Non-nil means enter debugger before next `eval', `apply' or `funcall'. | |
| 7618 */ ); | |
| 7619 | |
| 1292 | 7620 DEFVAR_BOOL ("backtrace-with-interal-sections", |
| 7621 &backtrace_with_internal_sections /* | |
| 7622 Non-nil means backtraces will contain additional information indicating | |
| 7623 when particular sections of the C code have been entered, e.g. redisplay(), | |
| 7624 byte-char conversion, internal-external conversion, etc. This can be | |
| 7625 particularly useful when XEmacs crashes, in helping to pinpoint the problem. | |
| 7626 */ ); | |
| 7627 #ifdef ERROR_CHECK_STRUCTURES | |
| 7628 backtrace_with_internal_sections = 1; | |
| 7629 #else | |
| 7630 backtrace_with_internal_sections = 0; | |
| 7631 #endif | |
| 7632 | |
| 428 | 7633 DEFVAR_LISP ("debugger", &Vdebugger /* |
| 7634 Function to call to invoke debugger. | |
| 7635 If due to frame exit, args are `exit' and the value being returned; | |
| 7636 this function's value will be returned instead of that. | |
| 7637 If due to error, args are `error' and a list of the args to `signal'. | |
| 7638 If due to `apply' or `funcall' entry, one arg, `lambda'. | |
| 7639 If due to `eval' entry, one arg, t. | |
| 7640 */ ); | |
| 7641 Vdebugger = Qnil; | |
| 7642 | |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7643 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
|
7644 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
|
7645 |
|
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7646 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
|
7647 macros and special operators. |
|
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4657
diff
changeset
|
7648 */); |
|
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5506
diff
changeset
|
7649 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
|
7650 |
|
5506
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
7651 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
|
7652 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
|
7653 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
|
7654 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
|
7655 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
|
7656 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
|
7657 */); |
|
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
7658 Vmacro_declaration_function = Qnil; |
|
b0d87f92e60b
Complete support for macro-declaration-function, bytecomp{,-runtime}.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5470
diff
changeset
|
7659 |
|
5615
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
7660 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
|
7661 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
|
7662 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
|
7663 \(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
|
7664 */); |
|
5f4f92a31875
Move the functionality of #'cl-macroexpand into Fmacroexpand, eval.c
Aidan Kehoe <kehoea@parhasard.net>
parents:
5581
diff
changeset
|
7665 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
|
7666 |
| 853 | 7667 staticpro (&Vcatch_everything_tag); |
| 7668 Vcatch_everything_tag = make_opaque (OPAQUE_CLEAR, 0); | |
| 7669 | |
| 428 | 7670 staticpro (&Vpending_warnings); |
| 7671 Vpending_warnings = Qnil; | |
| 1204 | 7672 dump_add_root_lisp_object (&Vpending_warnings_tail); |
| 428 | 7673 Vpending_warnings_tail = Qnil; |
| 7674 | |
| 793 | 7675 DEFVAR_LISP ("log-warning-minimum-level", &Vlog_warning_minimum_level); |
| 7676 Vlog_warning_minimum_level = Qinfo; | |
| 7677 | |
| 428 | 7678 staticpro (&Vautoload_queue); |
| 7679 Vautoload_queue = Qnil; | |
| 7680 | |
| 7681 staticpro (&Vcondition_handlers); | |
| 7682 | |
| 853 | 7683 staticpro (&Vdeletable_permanent_display_objects); |
| 7684 Vdeletable_permanent_display_objects = Qnil; | |
| 7685 | |
| 7686 staticpro (&Vmodifiable_buffers); | |
| 7687 Vmodifiable_buffers = Qnil; | |
| 7688 | |
| 7689 inhibit_flags = 0; | |
| 7690 } |
