(scm_frame_current_module): New.
[bpt/guile.git] / libguile / eval.c
CommitLineData
434f2f7a
DH
1/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004
2 * Free Software Foundation, Inc.
0f2d19dd 3 *
73be1d9e
MV
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
0f2d19dd 8 *
73be1d9e
MV
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
0f2d19dd 13 *
73be1d9e
MV
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
1bbd0b84 18
0f2d19dd
JB
19\f
20
434f2f7a
DH
21/* This file is read twice in order to produce debugging versions of ceval and
22 * scm_apply. These functions, deval and scm_dapply, are produced when we
23 * define the preprocessor macro DEVAL. The file is divided into sections
24 * which are treated differently with respect to DEVAL. The heads of these
25 * sections are marked with the string "SECTION:". */
6dbd0af5 26
6dbd0af5 27/* SECTION: This code is compiled once.
0f2d19dd
JB
28 */
29
3d05f2e0
RB
30#if HAVE_CONFIG_H
31# include <config.h>
32#endif
0f2d19dd 33
3d05f2e0
RB
34#include "libguile/__scm.h"
35
36#ifndef DEVAL
d16332b3 37
48b96f4b
JB
38/* AIX requires this to be the first thing in the file. The #pragma
39 directive is indented so pre-ANSI compilers will ignore it, rather
40 than choke on it. */
5862b540 41#ifndef __GNUC__
48b96f4b
JB
42# if HAVE_ALLOCA_H
43# include <alloca.h>
44# else
45# ifdef _AIX
ac13d9d2 46# pragma alloca
48b96f4b
JB
47# else
48# ifndef alloca /* predefined by HP cc +Olibcalls */
49char *alloca ();
50# endif
51# endif
52# endif
53#endif
54
e7313a9d 55#include <assert.h>
a0599745 56#include "libguile/_scm.h"
21628685
DH
57#include "libguile/alist.h"
58#include "libguile/async.h"
59#include "libguile/continuations.h"
a0599745 60#include "libguile/debug.h"
328dc9a3 61#include "libguile/deprecation.h"
09074dbf 62#include "libguile/dynwind.h"
a0599745 63#include "libguile/eq.h"
21628685
DH
64#include "libguile/feature.h"
65#include "libguile/fluids.h"
756414cf 66#include "libguile/futures.h"
21628685
DH
67#include "libguile/goops.h"
68#include "libguile/hash.h"
69#include "libguile/hashtab.h"
70#include "libguile/lang.h"
4610b011 71#include "libguile/list.h"
a0599745 72#include "libguile/macros.h"
a0599745 73#include "libguile/modules.h"
21628685 74#include "libguile/objects.h"
a0599745 75#include "libguile/ports.h"
7e6e6b37 76#include "libguile/print.h"
21628685 77#include "libguile/procprop.h"
a0599745 78#include "libguile/root.h"
21628685
DH
79#include "libguile/smob.h"
80#include "libguile/srcprop.h"
81#include "libguile/stackchk.h"
82#include "libguile/strings.h"
83#include "libguile/throw.h"
84#include "libguile/validate.h"
a513ead3 85#include "libguile/values.h"
21628685 86#include "libguile/vectors.h"
a0599745 87
a0599745 88#include "libguile/eval.h"
89efbff4 89
0f2d19dd
JB
90\f
91
212e58ed 92static SCM unmemoize_exprs (SCM expr, SCM env);
0f572ba7 93static SCM canonicalize_define (SCM expr);
e5156567 94static SCM *scm_lookupcar1 (SCM vloc, SCM genv, int check);
212e58ed 95static SCM unmemoize_builtin_macro (SCM expr, SCM env);
0f572ba7
DH
96
97\f
98
e6729603
DH
99/* {Syntax Errors}
100 *
101 * This section defines the message strings for the syntax errors that can be
102 * detected during memoization and the functions and macros that shall be
103 * called by the memoizer code to signal syntax errors. */
104
105
106/* Syntax errors that can be detected during memoization: */
107
108/* Circular or improper lists do not form valid scheme expressions. If a
109 * circular list or an improper list is detected in a place where a scheme
110 * expression is expected, a 'Bad expression' error is signalled. */
111static const char s_bad_expression[] = "Bad expression";
112
89bff2fc
DH
113/* If a form is detected that holds a different number of expressions than are
114 * required in that context, a 'Missing or extra expression' error is
115 * signalled. */
116static const char s_expression[] = "Missing or extra expression in";
117
cc56ba80 118/* If a form is detected that holds less expressions than are required in that
8ae95199 119 * context, a 'Missing expression' error is signalled. */
cc56ba80
DH
120static const char s_missing_expression[] = "Missing expression in";
121
609a8b86 122/* If a form is detected that holds more expressions than are allowed in that
8ae95199 123 * context, an 'Extra expression' error is signalled. */
609a8b86
DH
124static const char s_extra_expression[] = "Extra expression in";
125
89bff2fc
DH
126/* The empty combination '()' is not allowed as an expression in scheme. If
127 * it is detected in a place where an expression is expected, an 'Illegal
128 * empty combination' error is signalled. Note: If you encounter this error
129 * message, it is very likely that you intended to denote the empty list. To
130 * do so, you need to quote the empty list like (quote ()) or '(). */
131static const char s_empty_combination[] = "Illegal empty combination";
132
c86c440b
DH
133/* A body may hold an arbitrary number of internal defines, followed by a
134 * non-empty sequence of expressions. If a body with an empty sequence of
135 * expressions is detected, a 'Missing body expression' error is signalled.
136 */
137static const char s_missing_body_expression[] = "Missing body expression in";
138
139/* A body may hold an arbitrary number of internal defines, followed by a
140 * non-empty sequence of expressions. Each the definitions and the
141 * expressions may be grouped arbitraryly with begin, but it is not allowed to
142 * mix definitions and expressions. If a define form in a body mixes
143 * definitions and expressions, a 'Mixed definitions and expressions' error is
6bff1368 144 * signalled. */
c86c440b 145static const char s_mixed_body_forms[] = "Mixed definitions and expressions in";
6bff1368
DH
146/* Definitions are only allowed on the top level and at the start of a body.
147 * If a definition is detected anywhere else, a 'Bad define placement' error
148 * is signalled. */
149static const char s_bad_define[] = "Bad define placement";
c86c440b 150
2a6f7afe
DH
151/* Case or cond expressions must have at least one clause. If a case or cond
152 * expression without any clauses is detected, a 'Missing clauses' error is
153 * signalled. */
154static const char s_missing_clauses[] = "Missing clauses";
155
609a8b86
DH
156/* If there is an 'else' clause in a case or a cond statement, it must be the
157 * last clause. If after the 'else' case clause further clauses are detected,
158 * a 'Misplaced else clause' error is signalled. */
159static const char s_misplaced_else_clause[] = "Misplaced else clause";
160
2a6f7afe
DH
161/* If a case clause is detected that is not in the format
162 * (<label(s)> <expression1> <expression2> ...)
163 * a 'Bad case clause' error is signalled. */
164static const char s_bad_case_clause[] = "Bad case clause";
165
2a6f7afe
DH
166/* If a case clause is detected where the <label(s)> element is neither a
167 * proper list nor (in case of the last clause) the syntactic keyword 'else',
168 * a 'Bad case labels' error is signalled. Note: If you encounter this error
169 * for an else-clause which seems to be syntactically correct, check if 'else'
170 * is really a syntactic keyword in that context. If 'else' is bound in the
171 * local or global environment, it is not considered a syntactic keyword, but
172 * will be treated as any other variable. */
173static const char s_bad_case_labels[] = "Bad case labels";
174
175/* In a case statement all labels have to be distinct. If in a case statement
176 * a label occurs more than once, a 'Duplicate case label' error is
177 * signalled. */
178static const char s_duplicate_case_label[] = "Duplicate case label";
179
609a8b86
DH
180/* If a cond clause is detected that is not in one of the formats
181 * (<test> <expression1> ...) or (else <expression1> <expression2> ...)
182 * a 'Bad cond clause' error is signalled. */
183static const char s_bad_cond_clause[] = "Bad cond clause";
184
185/* If a cond clause is detected that uses the alternate '=>' form, but does
186 * not hold a recipient element for the test result, a 'Missing recipient'
187 * error is signalled. */
188static const char s_missing_recipient[] = "Missing recipient in";
189
cc56ba80
DH
190/* If in a position where a variable name is required some other object is
191 * detected, a 'Bad variable' error is signalled. */
192static const char s_bad_variable[] = "Bad variable";
193
a954ce1d
DH
194/* Bindings for forms like 'let' and 'do' have to be given in a proper,
195 * possibly empty list. If any other object is detected in a place where a
196 * list of bindings was required, a 'Bad bindings' error is signalled. */
197static const char s_bad_bindings[] = "Bad bindings";
198
199/* Depending on the syntactic context, a binding has to be in the format
200 * (<variable> <expression>) or (<variable> <expression1> <expression2>).
201 * If anything else is detected in a place where a binding was expected, a
202 * 'Bad binding' error is signalled. */
203static const char s_bad_binding[] = "Bad binding";
204
4610b011
DH
205/* Some syntactic forms don't allow variable names to appear more than once in
206 * a list of bindings. If such a situation is nevertheless detected, a
207 * 'Duplicate binding' error is signalled. */
208static const char s_duplicate_binding[] = "Duplicate binding";
209
a954ce1d
DH
210/* If the exit form of a 'do' expression is not in the format
211 * (<test> <expression> ...)
212 * a 'Bad exit clause' error is signalled. */
213static const char s_bad_exit_clause[] = "Bad exit clause";
214
03a3e941
DH
215/* The formal function arguments of a lambda expression have to be either a
216 * single symbol or a non-cyclic list. For anything else a 'Bad formals'
217 * error is signalled. */
218static const char s_bad_formals[] = "Bad formals";
219
220/* If in a lambda expression something else than a symbol is detected at a
221 * place where a formal function argument is required, a 'Bad formal' error is
222 * signalled. */
223static const char s_bad_formal[] = "Bad formal";
224
225/* If in the arguments list of a lambda expression an argument name occurs
226 * more than once, a 'Duplicate formal' error is signalled. */
227static const char s_duplicate_formal[] = "Duplicate formal";
228
6f81708a
DH
229/* If the evaluation of an unquote-splicing expression gives something else
230 * than a proper list, a 'Non-list result for unquote-splicing' error is
231 * signalled. */
232static const char s_splicing[] = "Non-list result for unquote-splicing";
233
9a848baf
DH
234/* If something else than an exact integer is detected as the argument for
235 * @slot-ref and @slot-set!, a 'Bad slot number' error is signalled. */
236static const char s_bad_slot_number[] = "Bad slot number";
237
e6729603
DH
238
239/* Signal a syntax error. We distinguish between the form that caused the
240 * error and the enclosing expression. The error message will print out as
241 * shown in the following pattern. The file name and line number are only
242 * given when they can be determined from the erroneous form or from the
243 * enclosing expression.
244 *
245 * <filename>: In procedure memoization:
246 * <filename>: In file <name>, line <nr>: <error-message> in <expression>. */
247
248SCM_SYMBOL (syntax_error_key, "syntax-error");
249
250/* The prototype is needed to indicate that the function does not return. */
251static void
252syntax_error (const char* const, const SCM, const SCM) SCM_NORETURN;
253
254static void
255syntax_error (const char* const msg, const SCM form, const SCM expr)
256{
cc95e00a 257 SCM msg_string = scm_from_locale_string (msg);
e6729603
DH
258 SCM filename = SCM_BOOL_F;
259 SCM linenr = SCM_BOOL_F;
260 const char *format;
261 SCM args;
262
a61f4e0c 263 if (scm_is_pair (form))
e6729603
DH
264 {
265 filename = scm_source_property (form, scm_sym_filename);
266 linenr = scm_source_property (form, scm_sym_line);
267 }
268
a61f4e0c 269 if (scm_is_false (filename) && scm_is_false (linenr) && scm_is_pair (expr))
e6729603
DH
270 {
271 filename = scm_source_property (expr, scm_sym_filename);
272 linenr = scm_source_property (expr, scm_sym_line);
273 }
274
275 if (!SCM_UNBNDP (expr))
276 {
7888309b 277 if (scm_is_true (filename))
e6729603
DH
278 {
279 format = "In file ~S, line ~S: ~A ~S in expression ~S.";
280 args = scm_list_5 (filename, linenr, msg_string, form, expr);
281 }
7888309b 282 else if (scm_is_true (linenr))
e6729603
DH
283 {
284 format = "In line ~S: ~A ~S in expression ~S.";
285 args = scm_list_4 (linenr, msg_string, form, expr);
286 }
287 else
288 {
289 format = "~A ~S in expression ~S.";
290 args = scm_list_3 (msg_string, form, expr);
291 }
292 }
293 else
294 {
7888309b 295 if (scm_is_true (filename))
e6729603
DH
296 {
297 format = "In file ~S, line ~S: ~A ~S.";
298 args = scm_list_4 (filename, linenr, msg_string, form);
299 }
7888309b 300 else if (scm_is_true (linenr))
e6729603
DH
301 {
302 format = "In line ~S: ~A ~S.";
303 args = scm_list_3 (linenr, msg_string, form);
304 }
305 else
306 {
307 format = "~A ~S.";
308 args = scm_list_2 (msg_string, form);
309 }
310 }
311
312 scm_error (syntax_error_key, "memoization", format, args, SCM_BOOL_F);
313}
314
315
316/* Shortcut macros to simplify syntax error handling. */
317#define ASSERT_SYNTAX(cond, message, form) \
318 { if (!(cond)) syntax_error (message, form, SCM_UNDEFINED); }
319#define ASSERT_SYNTAX_2(cond, message, form, expr) \
320 { if (!(cond)) syntax_error (message, form, expr); }
321
322\f
323
d0624e39
DH
324/* {Ilocs}
325 *
326 * Ilocs are memoized references to variables in local environment frames.
327 * They are represented as three values: The relative offset of the
328 * environment frame, the number of the binding within that frame, and a
329 * boolean value indicating whether the binding is the last binding in the
330 * frame.
a55c2b68
MV
331 *
332 * Frame numbers have 11 bits, relative offsets have 12 bits.
d0624e39 333 */
7e6e6b37 334
d0624e39 335#define SCM_ILOC00 SCM_MAKE_ITAG8(0L, scm_tc8_iloc)
7e6e6b37
DH
336#define SCM_IFRINC (0x00000100L)
337#define SCM_ICDR (0x00080000L)
d0624e39 338#define SCM_IDINC (0x00100000L)
7e6e6b37
DH
339#define SCM_IFRAME(n) ((long)((SCM_ICDR-SCM_IFRINC)>>8) \
340 & (SCM_UNPACK (n) >> 8))
341#define SCM_IDIST(n) (SCM_UNPACK (n) >> 20)
342#define SCM_ICDRP(n) (SCM_ICDR & SCM_UNPACK (n))
d0624e39 343#define SCM_IDSTMSK (-SCM_IDINC)
a55c2b68
MV
344#define SCM_IFRAMEMAX ((1<<11)-1)
345#define SCM_IDISTMAX ((1<<12)-1)
d0624e39
DH
346#define SCM_MAKE_ILOC(frame_nr, binding_nr, last_p) \
347 SCM_PACK ( \
348 ((frame_nr) << 8) \
349 + ((binding_nr) << 20) \
350 + ((last_p) ? SCM_ICDR : 0) \
351 + scm_tc8_iloc )
352
7e6e6b37
DH
353void
354scm_i_print_iloc (SCM iloc, SCM port)
355{
356 scm_puts ("#@", port);
357 scm_intprint ((long) SCM_IFRAME (iloc), 10, port);
358 scm_putc (SCM_ICDRP (iloc) ? '-' : '+', port);
359 scm_intprint ((long) SCM_IDIST (iloc), 10, port);
360}
361
d0624e39
DH
362#if (SCM_DEBUG_DEBUGGING_SUPPORT == 1)
363
364SCM scm_dbg_make_iloc (SCM frame, SCM binding, SCM cdrp);
90df793f 365
d0624e39
DH
366SCM_DEFINE (scm_dbg_make_iloc, "dbg-make-iloc", 3, 0, 0,
367 (SCM frame, SCM binding, SCM cdrp),
368 "Return a new iloc with frame offset @var{frame}, binding\n"
369 "offset @var{binding} and the cdr flag @var{cdrp}.")
370#define FUNC_NAME s_scm_dbg_make_iloc
371{
a55c2b68
MV
372 return SCM_MAKE_ILOC (scm_to_unsigned_integer (frame, 0, SCM_IFRAME_MAX),
373 scm_to_unsigned_integer (binding, 0, SCM_IDIST_MAX),
7888309b 374 scm_is_true (cdrp));
d0624e39
DH
375}
376#undef FUNC_NAME
377
378SCM scm_dbg_iloc_p (SCM obj);
90df793f 379
d0624e39
DH
380SCM_DEFINE (scm_dbg_iloc_p, "dbg-iloc?", 1, 0, 0,
381 (SCM obj),
382 "Return @code{#t} if @var{obj} is an iloc.")
383#define FUNC_NAME s_scm_dbg_iloc_p
384{
7888309b 385 return scm_from_bool (SCM_ILOCP (obj));
d0624e39
DH
386}
387#undef FUNC_NAME
388
389#endif
390
391\f
392
7e6e6b37
DH
393/* {Evaluator byte codes (isyms)}
394 */
395
396#define ISYMNUM(n) (SCM_ITAG8_DATA (n))
397
398/* This table must agree with the list of SCM_IM_ constants in tags.h */
399static const char *const isymnames[] =
400{
401 "#@and",
402 "#@begin",
403 "#@case",
404 "#@cond",
405 "#@do",
406 "#@if",
407 "#@lambda",
408 "#@let",
409 "#@let*",
410 "#@letrec",
411 "#@or",
412 "#@quote",
413 "#@set!",
414 "#@define",
415 "#@apply",
416 "#@call-with-current-continuation",
417 "#@dispatch",
418 "#@slot-ref",
419 "#@slot-set!",
420 "#@delay",
421 "#@future",
422 "#@call-with-values",
423 "#@else",
424 "#@arrow",
425 "#@nil-cond",
426 "#@bind"
427};
428
429void
430scm_i_print_isym (SCM isym, SCM port)
431{
432 const size_t isymnum = ISYMNUM (isym);
433 if (isymnum < (sizeof isymnames / sizeof (char *)))
434 scm_puts (isymnames[isymnum], port);
435 else
436 scm_ipruk ("isym", isym, port);
437}
438
439\f
440
e5156567
DH
441/* The function lookup_symbol is used during memoization: Lookup the symbol in
442 * the environment. If there is no binding for the symbol, SCM_UNDEFINED is
57d23e25
DH
443 * returned. If the symbol is a global variable, the variable object to which
444 * the symbol is bound is returned. Finally, if the symbol is a local
445 * variable the corresponding iloc object is returned. */
6f81708a
DH
446
447/* A helper function for lookup_symbol: Try to find the symbol in the top
448 * level environment frame. The function returns SCM_UNDEFINED if the symbol
57d23e25
DH
449 * is unbound and it returns a variable object if the symbol is a global
450 * variable. */
6f81708a
DH
451static SCM
452lookup_global_symbol (const SCM symbol, const SCM top_level)
453{
454 const SCM variable = scm_sym2var (symbol, top_level, SCM_BOOL_F);
7888309b 455 if (scm_is_false (variable))
57d23e25 456 return SCM_UNDEFINED;
6f81708a 457 else
57d23e25 458 return variable;
6f81708a
DH
459}
460
461static SCM
462lookup_symbol (const SCM symbol, const SCM env)
463{
464 SCM frame_idx;
465 unsigned int frame_nr;
466
467 for (frame_idx = env, frame_nr = 0;
a61f4e0c 468 !scm_is_null (frame_idx);
6f81708a
DH
469 frame_idx = SCM_CDR (frame_idx), ++frame_nr)
470 {
471 const SCM frame = SCM_CAR (frame_idx);
a61f4e0c 472 if (scm_is_pair (frame))
6f81708a
DH
473 {
474 /* frame holds a local environment frame */
475 SCM symbol_idx;
476 unsigned int symbol_nr;
477
478 for (symbol_idx = SCM_CAR (frame), symbol_nr = 0;
a61f4e0c 479 scm_is_pair (symbol_idx);
6f81708a
DH
480 symbol_idx = SCM_CDR (symbol_idx), ++symbol_nr)
481 {
bc36d050 482 if (scm_is_eq (SCM_CAR (symbol_idx), symbol))
6f81708a
DH
483 /* found the symbol, therefore return the iloc */
484 return SCM_MAKE_ILOC (frame_nr, symbol_nr, 0);
485 }
bc36d050 486 if (scm_is_eq (symbol_idx, symbol))
6f81708a
DH
487 /* found the symbol as the last element of the current frame */
488 return SCM_MAKE_ILOC (frame_nr, symbol_nr, 1);
489 }
490 else
491 {
492 /* no more local environment frames */
493 return lookup_global_symbol (symbol, frame);
494 }
495 }
496
497 return lookup_global_symbol (symbol, SCM_BOOL_F);
498}
499
500
501/* Return true if the symbol is - from the point of view of a macro
502 * transformer - a literal in the sense specified in chapter "pattern
503 * language" of R5RS. In the code below, however, we don't match the
504 * definition of R5RS exactly: It returns true if the identifier has no
505 * binding or if it is a syntactic keyword. */
506static int
507literal_p (const SCM symbol, const SCM env)
508{
57d23e25
DH
509 const SCM variable = lookup_symbol (symbol, env);
510 if (SCM_UNBNDP (variable))
511 return 1;
512 if (SCM_VARIABLEP (variable) && SCM_MACROP (SCM_VARIABLE_REF (variable)))
6f81708a
DH
513 return 1;
514 else
515 return 0;
516}
17fa3fcf 517
5fb64383
DH
518
519/* Return true if the expression is self-quoting in the memoized code. Thus,
520 * some other objects (like e. g. vectors) are reported as self-quoting, which
521 * according to R5RS would need to be quoted. */
522static int
523is_self_quoting_p (const SCM expr)
524{
a61f4e0c 525 if (scm_is_pair (expr))
5fb64383 526 return 0;
cc95e00a 527 else if (scm_is_symbol (expr))
5fb64383 528 return 0;
a61f4e0c 529 else if (scm_is_null (expr))
5fb64383
DH
530 return 0;
531 else return 1;
532}
533
0f2d19dd 534
212e58ed
DH
535SCM_SYMBOL (sym_three_question_marks, "???");
536
537static SCM
538unmemoize_expression (const SCM expr, const SCM env)
539{
540 if (SCM_ILOCP (expr))
541 {
542 SCM frame_idx;
543 unsigned long int frame_nr;
544 SCM symbol_idx;
545 unsigned long int symbol_nr;
546
547 for (frame_idx = env, frame_nr = SCM_IFRAME (expr);
548 frame_nr != 0;
549 frame_idx = SCM_CDR (frame_idx), --frame_nr)
550 ;
551 for (symbol_idx = SCM_CAAR (frame_idx), symbol_nr = SCM_IDIST (expr);
552 symbol_nr != 0;
553 symbol_idx = SCM_CDR (symbol_idx), --symbol_nr)
554 ;
555 return SCM_ICDRP (expr) ? symbol_idx : SCM_CAR (symbol_idx);
556 }
557 else if (SCM_VARIABLEP (expr))
558 {
559 const SCM sym = scm_module_reverse_lookup (scm_env_module (env), expr);
7888309b 560 return scm_is_true (sym) ? sym : sym_three_question_marks;
212e58ed 561 }
4057a3e0 562 else if (scm_is_simple_vector (expr))
212e58ed
DH
563 {
564 return scm_list_2 (scm_sym_quote, expr);
565 }
a61f4e0c 566 else if (!scm_is_pair (expr))
212e58ed
DH
567 {
568 return expr;
569 }
570 else if (SCM_ISYMP (SCM_CAR (expr)))
571 {
572 return unmemoize_builtin_macro (expr, env);
573 }
574 else
575 {
576 return unmemoize_exprs (expr, env);
577 }
578}
579
580
581static SCM
582unmemoize_exprs (const SCM exprs, const SCM env)
583{
90df793f 584 SCM r_result = SCM_EOL;
9fcf3cbb 585 SCM expr_idx = exprs;
90df793f
DH
586 SCM um_expr;
587
588 /* Note that due to the current lazy memoizer we may find partially memoized
5fa0939c 589 * code during execution. In such code we have to expect improper lists of
90df793f
DH
590 * expressions: On the one hand, for such code syntax checks have not yet
591 * fully been performed, on the other hand, there may be even legal code
592 * like '(a . b) appear as an improper list of expressions as long as the
593 * quote expression is still in its unmemoized form. For this reason, the
594 * following code handles improper lists of expressions until memoization
595 * and execution have been completely separated. */
a61f4e0c 596 for (; scm_is_pair (expr_idx); expr_idx = SCM_CDR (expr_idx))
212e58ed
DH
597 {
598 const SCM expr = SCM_CAR (expr_idx);
5fa0939c
DH
599
600 /* In partially memoized code, lists of expressions that stem from a
601 * body form may start with an ISYM if the body itself has not yet been
602 * memoized. This isym is just an internal marker to indicate that the
603 * body still needs to be memoized. An isym may occur at the very
604 * beginning of the body or after one or more comment strings. It is
605 * dropped during unmemoization. */
606 if (!SCM_ISYMP (expr))
607 {
608 um_expr = unmemoize_expression (expr, env);
609 r_result = scm_cons (um_expr, r_result);
610 }
90df793f
DH
611 }
612 um_expr = unmemoize_expression (expr_idx, env);
a61f4e0c 613 if (!scm_is_null (r_result))
90df793f
DH
614 {
615 const SCM result = scm_reverse_x (r_result, SCM_UNDEFINED);
616 SCM_SETCDR (r_result, um_expr);
617 return result;
618 }
619 else
620 {
621 return um_expr;
212e58ed 622 }
212e58ed
DH
623}
624
625
34adf7ea
DH
626/* Rewrite the body (which is given as the list of expressions forming the
627 * body) into its internal form. The internal form of a body (<expr> ...) is
628 * just the body itself, but prefixed with an ISYM that denotes to what kind
629 * of outer construct this body belongs: (<ISYM> <expr> ...). A lambda body
630 * starts with SCM_IM_LAMBDA, for example, a body of a let starts with
6bff1368 631 * SCM_IM_LET, etc.
34adf7ea
DH
632 *
633 * It is assumed that the calling expression has already made sure that the
634 * body is a proper list. */
26d5b9b4 635static SCM
430b8401 636m_body (SCM op, SCM exprs)
26d5b9b4 637{
26d5b9b4 638 /* Don't add another ISYM if one is present already. */
34adf7ea
DH
639 if (SCM_ISYMP (SCM_CAR (exprs)))
640 return exprs;
641 else
642 return scm_cons (op, exprs);
26d5b9b4
MD
643}
644
1cc91f1b 645
57d23e25
DH
646/* The function m_expand_body memoizes a proper list of expressions forming a
647 * body. This function takes care of dealing with internal defines and
648 * transforming them into an equivalent letrec expression. The list of
649 * expressions is rewritten in place. */
910b5125 650
57d23e25
DH
651/* This is a helper function for m_expand_body. If the argument expression is
652 * a symbol that denotes a syntactic keyword, the corresponding macro object
653 * is returned, in all other cases the function returns SCM_UNDEFINED. */
910b5125
DH
654static SCM
655try_macro_lookup (const SCM expr, const SCM env)
656{
cc95e00a 657 if (scm_is_symbol (expr))
910b5125 658 {
57d23e25
DH
659 const SCM variable = lookup_symbol (expr, env);
660 if (SCM_VARIABLEP (variable))
661 {
662 const SCM value = SCM_VARIABLE_REF (variable);
663 if (SCM_MACROP (value))
664 return value;
665 }
910b5125 666 }
57d23e25
DH
667
668 return SCM_UNDEFINED;
910b5125
DH
669}
670
671/* This is a helper function for m_expand_body. It expands user macros,
672 * because for the correct translation of a body we need to know whether they
673 * expand to a definition. */
674static SCM
675expand_user_macros (SCM expr, const SCM env)
676{
a61f4e0c 677 while (scm_is_pair (expr))
910b5125
DH
678 {
679 const SCM car_expr = SCM_CAR (expr);
680 const SCM new_car = expand_user_macros (car_expr, env);
681 const SCM value = try_macro_lookup (new_car, env);
682
683 if (SCM_MACROP (value) && SCM_MACRO_TYPE (value) == 2)
684 {
685 /* User macros transform code into code. */
686 expr = scm_call_2 (SCM_MACRO_CODE (value), expr, env);
687 /* We need to reiterate on the transformed code. */
688 }
689 else
690 {
691 /* No user macro: return. */
692 SCM_SETCAR (expr, new_car);
693 return expr;
694 }
695 }
696
697 return expr;
698}
699
700/* This is a helper function for m_expand_body. It determines if a given form
701 * represents an application of a given built-in macro. The built-in macro to
702 * check for is identified by its syntactic keyword. The form is an
703 * application of the given macro if looking up the car of the form in the
704 * given environment actually returns the built-in macro. */
705static int
706is_system_macro_p (const SCM syntactic_keyword, const SCM form, const SCM env)
707{
a61f4e0c 708 if (scm_is_pair (form))
910b5125
DH
709 {
710 const SCM car_form = SCM_CAR (form);
711 const SCM value = try_macro_lookup (car_form, env);
712 if (SCM_BUILTIN_MACRO_P (value))
713 {
714 const SCM macro_name = scm_macro_name (value);
bc36d050 715 return scm_is_eq (macro_name, syntactic_keyword);
910b5125
DH
716 }
717 }
718
719 return 0;
720}
721
9d4bf6d3 722static void
910b5125
DH
723m_expand_body (const SCM forms, const SCM env)
724{
725 /* The first body form can be skipped since it is known to be the ISYM that
726 * was prepended to the body by m_body. */
727 SCM cdr_forms = SCM_CDR (forms);
728 SCM form_idx = cdr_forms;
729 SCM definitions = SCM_EOL;
730 SCM sequence = SCM_EOL;
731
732 /* According to R5RS, the list of body forms consists of two parts: a number
733 * (maybe zero) of definitions, followed by a non-empty sequence of
734 * expressions. Each the definitions and the expressions may be grouped
735 * arbitrarily with begin, but it is not allowed to mix definitions and
736 * expressions. The task of the following loop therefore is to split the
737 * list of body forms into the list of definitions and the sequence of
738 * expressions. */
a61f4e0c 739 while (!scm_is_null (form_idx))
910b5125
DH
740 {
741 const SCM form = SCM_CAR (form_idx);
742 const SCM new_form = expand_user_macros (form, env);
743 if (is_system_macro_p (scm_sym_define, new_form, env))
744 {
745 definitions = scm_cons (new_form, definitions);
746 form_idx = SCM_CDR (form_idx);
747 }
748 else if (is_system_macro_p (scm_sym_begin, new_form, env))
749 {
750 /* We have encountered a group of forms. This has to be either a
751 * (possibly empty) group of (possibly further grouped) definitions,
752 * or a non-empty group of (possibly further grouped)
753 * expressions. */
754 const SCM grouped_forms = SCM_CDR (new_form);
755 unsigned int found_definition = 0;
756 unsigned int found_expression = 0;
757 SCM grouped_form_idx = grouped_forms;
a61f4e0c 758 while (!found_expression && !scm_is_null (grouped_form_idx))
910b5125
DH
759 {
760 const SCM inner_form = SCM_CAR (grouped_form_idx);
761 const SCM new_inner_form = expand_user_macros (inner_form, env);
762 if (is_system_macro_p (scm_sym_define, new_inner_form, env))
763 {
764 found_definition = 1;
765 definitions = scm_cons (new_inner_form, definitions);
766 grouped_form_idx = SCM_CDR (grouped_form_idx);
767 }
768 else if (is_system_macro_p (scm_sym_begin, new_inner_form, env))
769 {
770 const SCM inner_group = SCM_CDR (new_inner_form);
771 grouped_form_idx
772 = scm_append (scm_list_2 (inner_group,
773 SCM_CDR (grouped_form_idx)));
774 }
775 else
776 {
777 /* The group marks the start of the expressions of the body.
778 * We have to make sure that within the same group we have
779 * not encountered a definition before. */
780 ASSERT_SYNTAX (!found_definition, s_mixed_body_forms, form);
781 found_expression = 1;
782 grouped_form_idx = SCM_EOL;
783 }
784 }
785
786 /* We have finished processing the group. If we have not yet
787 * encountered an expression we continue processing the forms of the
788 * body to collect further definition forms. Otherwise, the group
789 * marks the start of the sequence of expressions of the body. */
790 if (!found_expression)
791 {
792 form_idx = SCM_CDR (form_idx);
793 }
794 else
795 {
796 sequence = form_idx;
797 form_idx = SCM_EOL;
798 }
799 }
800 else
801 {
802 /* We have detected a form which is no definition. This marks the
803 * start of the sequence of expressions of the body. */
804 sequence = form_idx;
805 form_idx = SCM_EOL;
806 }
807 }
808
809 /* FIXME: forms does not hold information about the file location. */
a61f4e0c 810 ASSERT_SYNTAX (scm_is_pair (sequence), s_missing_body_expression, cdr_forms);
910b5125 811
a61f4e0c 812 if (!scm_is_null (definitions))
910b5125
DH
813 {
814 SCM definition_idx;
815 SCM letrec_tail;
816 SCM letrec_expression;
817 SCM new_letrec_expression;
910b5125
DH
818
819 SCM bindings = SCM_EOL;
820 for (definition_idx = definitions;
a61f4e0c 821 !scm_is_null (definition_idx);
910b5125
DH
822 definition_idx = SCM_CDR (definition_idx))
823 {
824 const SCM definition = SCM_CAR (definition_idx);
825 const SCM canonical_definition = canonicalize_define (definition);
826 const SCM binding = SCM_CDR (canonical_definition);
827 bindings = scm_cons (binding, bindings);
828 };
829
830 letrec_tail = scm_cons (bindings, sequence);
831 /* FIXME: forms does not hold information about the file location. */
832 letrec_expression = scm_cons_source (forms, scm_sym_letrec, letrec_tail);
833 new_letrec_expression = scm_m_letrec (letrec_expression, env);
9d4bf6d3
MV
834 SCM_SETCAR (forms, new_letrec_expression);
835 SCM_SETCDR (forms, SCM_EOL);
910b5125
DH
836 }
837 else
838 {
839 SCM_SETCAR (forms, SCM_CAR (sequence));
840 SCM_SETCDR (forms, SCM_CDR (sequence));
910b5125
DH
841 }
842}
843
2b189e65
MV
844static SCM
845macroexp (SCM x, SCM env)
846{
847 SCM res, proc, orig_sym;
848
849 /* Don't bother to produce error messages here. We get them when we
850 eventually execute the code for real. */
851
852 macro_tail:
853 orig_sym = SCM_CAR (x);
cc95e00a 854 if (!scm_is_symbol (orig_sym))
2b189e65
MV
855 return x;
856
857 {
858 SCM *proc_ptr = scm_lookupcar1 (x, env, 0);
859 if (proc_ptr == NULL)
860 {
861 /* We have lost the race. */
862 goto macro_tail;
863 }
864 proc = *proc_ptr;
865 }
866
867 /* Only handle memoizing macros. `Acros' and `macros' are really
868 special forms and should not be evaluated here. */
869
870 if (!SCM_MACROP (proc)
871 || (SCM_MACRO_TYPE (proc) != 2 && !SCM_BUILTIN_MACRO_P (proc)))
872 return x;
873
874 SCM_SETCAR (x, orig_sym); /* Undo memoizing effect of lookupcar */
875 res = scm_call_2 (SCM_MACRO_CODE (proc), x, env);
876
877 if (scm_ilength (res) <= 0)
878 res = scm_list_2 (SCM_IM_BEGIN, res);
879
880 SCM_DEFER_INTS;
881 SCM_SETCAR (x, SCM_CAR (res));
882 SCM_SETCDR (x, SCM_CDR (res));
883 SCM_ALLOW_INTS;
884
885 goto macro_tail;
886}
910b5125 887
9fbee57e 888/* Start of the memoizers for the standard R5RS builtin macros. */
0f2d19dd
JB
889
890
3b88ed2a 891SCM_SYNTAX (s_and, "and", scm_i_makbimacro, scm_m_and);
8ea46249 892SCM_GLOBAL_SYMBOL (scm_sym_and, s_and);
1cc91f1b 893
8ea46249 894SCM
e6729603 895scm_m_and (SCM expr, SCM env SCM_UNUSED)
0f2d19dd 896{
e6729603
DH
897 const SCM cdr_expr = SCM_CDR (expr);
898 const long length = scm_ilength (cdr_expr);
899
900 ASSERT_SYNTAX (length >= 0, s_bad_expression, expr);
901
902 if (length == 0)
903 {
904 /* Special case: (and) is replaced by #t. */
905 return SCM_BOOL_T;
906 }
0f2d19dd 907 else
e6729603
DH
908 {
909 SCM_SETCAR (expr, SCM_IM_AND);
910 return expr;
911 }
0f2d19dd
JB
912}
913
212e58ed
DH
914static SCM
915unmemoize_and (const SCM expr, const SCM env)
916{
917 return scm_cons (scm_sym_and, unmemoize_exprs (SCM_CDR (expr), env));
918}
919
1cc91f1b 920
3b88ed2a 921SCM_SYNTAX (s_begin, "begin", scm_i_makbimacro, scm_m_begin);
9fbee57e 922SCM_GLOBAL_SYMBOL (scm_sym_begin, s_begin);
8ea46249
DH
923
924SCM
2a6f7afe 925scm_m_begin (SCM expr, SCM env SCM_UNUSED)
0f2d19dd 926{
2a6f7afe 927 const SCM cdr_expr = SCM_CDR (expr);
21628685
DH
928 /* Dirk:FIXME:: An empty begin clause is not generally allowed by R5RS.
929 * That means, there should be a distinction between uses of begin where an
930 * empty clause is OK and where it is not. */
2a6f7afe
DH
931 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
932
933 SCM_SETCAR (expr, SCM_IM_BEGIN);
934 return expr;
0f2d19dd
JB
935}
936
212e58ed
DH
937static SCM
938unmemoize_begin (const SCM expr, const SCM env)
939{
940 return scm_cons (scm_sym_begin, unmemoize_exprs (SCM_CDR (expr), env));
941}
942
0f2d19dd 943
3b88ed2a 944SCM_SYNTAX (s_case, "case", scm_i_makbimacro, scm_m_case);
8ea46249 945SCM_GLOBAL_SYMBOL (scm_sym_case, s_case);
6f81708a 946SCM_GLOBAL_SYMBOL (scm_sym_else, "else");
1cc91f1b 947
8ea46249 948SCM
2a6f7afe 949scm_m_case (SCM expr, SCM env)
0f2d19dd 950{
8ea46249 951 SCM clauses;
2a6f7afe
DH
952 SCM all_labels = SCM_EOL;
953
954 /* Check, whether 'else is a literal, i. e. not bound to a value. */
955 const int else_literal_p = literal_p (scm_sym_else, env);
956
957 const SCM cdr_expr = SCM_CDR (expr);
958 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
959 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 2, s_missing_clauses, expr);
960
961 clauses = SCM_CDR (cdr_expr);
a61f4e0c 962 while (!scm_is_null (clauses))
0f2d19dd 963 {
2a6f7afe
DH
964 SCM labels;
965
966 const SCM clause = SCM_CAR (clauses);
967 ASSERT_SYNTAX_2 (scm_ilength (clause) >= 2,
968 s_bad_case_clause, clause, expr);
969
970 labels = SCM_CAR (clause);
a61f4e0c 971 if (scm_is_pair (labels))
2a6f7afe
DH
972 {
973 ASSERT_SYNTAX_2 (scm_ilength (labels) >= 0,
974 s_bad_case_labels, labels, expr);
26ecfa39 975 all_labels = scm_append (scm_list_2 (labels, all_labels));
2a6f7afe 976 }
a61f4e0c 977 else if (scm_is_null (labels))
58a2510b
DH
978 {
979 /* The list of labels is empty. According to R5RS this is allowed.
980 * It means that the sequence of expressions will never be executed.
981 * Therefore, as an optimization, we could remove the whole
982 * clause. */
983 }
2a6f7afe
DH
984 else
985 {
bc36d050 986 ASSERT_SYNTAX_2 (scm_is_eq (labels, scm_sym_else) && else_literal_p,
2a6f7afe 987 s_bad_case_labels, labels, expr);
a61f4e0c 988 ASSERT_SYNTAX_2 (scm_is_null (SCM_CDR (clauses)),
609a8b86 989 s_misplaced_else_clause, clause, expr);
2a6f7afe
DH
990 }
991
992 /* build the new clause */
bc36d050 993 if (scm_is_eq (labels, scm_sym_else))
2a6f7afe
DH
994 SCM_SETCAR (clause, SCM_IM_ELSE);
995
8ea46249 996 clauses = SCM_CDR (clauses);
0f2d19dd 997 }
2a6f7afe
DH
998
999 /* Check whether all case labels are distinct. */
a61f4e0c 1000 for (; !scm_is_null (all_labels); all_labels = SCM_CDR (all_labels))
2a6f7afe
DH
1001 {
1002 const SCM label = SCM_CAR (all_labels);
7888309b 1003 ASSERT_SYNTAX_2 (scm_is_false (scm_c_memq (label, SCM_CDR (all_labels))),
4610b011 1004 s_duplicate_case_label, label, expr);
2a6f7afe
DH
1005 }
1006
1007 SCM_SETCAR (expr, SCM_IM_CASE);
1008 return expr;
0f2d19dd
JB
1009}
1010
212e58ed
DH
1011static SCM
1012unmemoize_case (const SCM expr, const SCM env)
1013{
1014 const SCM um_key_expr = unmemoize_expression (SCM_CADR (expr), env);
1015 SCM um_clauses = SCM_EOL;
1016 SCM clause_idx;
1017
1018 for (clause_idx = SCM_CDDR (expr);
a61f4e0c 1019 !scm_is_null (clause_idx);
212e58ed
DH
1020 clause_idx = SCM_CDR (clause_idx))
1021 {
1022 const SCM clause = SCM_CAR (clause_idx);
1023 const SCM labels = SCM_CAR (clause);
1024 const SCM exprs = SCM_CDR (clause);
1025
1026 const SCM um_exprs = unmemoize_exprs (exprs, env);
bc36d050 1027 const SCM um_labels = (scm_is_eq (labels, SCM_IM_ELSE))
212e58ed
DH
1028 ? scm_sym_else
1029 : scm_i_finite_list_copy (labels);
1030 const SCM um_clause = scm_cons (um_labels, um_exprs);
1031
1032 um_clauses = scm_cons (um_clause, um_clauses);
1033 }
1034 um_clauses = scm_reverse_x (um_clauses, SCM_UNDEFINED);
1035
1036 return scm_cons2 (scm_sym_case, um_key_expr, um_clauses);
1037}
1038
0f2d19dd 1039
3b88ed2a 1040SCM_SYNTAX (s_cond, "cond", scm_i_makbimacro, scm_m_cond);
8ea46249 1041SCM_GLOBAL_SYMBOL (scm_sym_cond, s_cond);
609a8b86 1042SCM_GLOBAL_SYMBOL (scm_sym_arrow, "=>");
1cc91f1b 1043
8ea46249 1044SCM
609a8b86 1045scm_m_cond (SCM expr, SCM env)
0f2d19dd 1046{
609a8b86
DH
1047 /* Check, whether 'else or '=> is a literal, i. e. not bound to a value. */
1048 const int else_literal_p = literal_p (scm_sym_else, env);
1049 const int arrow_literal_p = literal_p (scm_sym_arrow, env);
1050
1051 const SCM clauses = SCM_CDR (expr);
1052 SCM clause_idx;
1053
1054 ASSERT_SYNTAX (scm_ilength (clauses) >= 0, s_bad_expression, expr);
1055 ASSERT_SYNTAX (scm_ilength (clauses) >= 1, s_missing_clauses, expr);
1056
1057 for (clause_idx = clauses;
a61f4e0c 1058 !scm_is_null (clause_idx);
609a8b86 1059 clause_idx = SCM_CDR (clause_idx))
0f2d19dd 1060 {
609a8b86
DH
1061 SCM test;
1062
1063 const SCM clause = SCM_CAR (clause_idx);
1064 const long length = scm_ilength (clause);
1065 ASSERT_SYNTAX_2 (length >= 1, s_bad_cond_clause, clause, expr);
1066
1067 test = SCM_CAR (clause);
bc36d050 1068 if (scm_is_eq (test, scm_sym_else) && else_literal_p)
0f2d19dd 1069 {
a61f4e0c 1070 const int last_clause_p = scm_is_null (SCM_CDR (clause_idx));
609a8b86
DH
1071 ASSERT_SYNTAX_2 (length >= 2,
1072 s_bad_cond_clause, clause, expr);
1073 ASSERT_SYNTAX_2 (last_clause_p,
1074 s_misplaced_else_clause, clause, expr);
1075 SCM_SETCAR (clause, SCM_IM_ELSE);
0f2d19dd 1076 }
609a8b86 1077 else if (length >= 2
bc36d050 1078 && scm_is_eq (SCM_CADR (clause), scm_sym_arrow)
609a8b86
DH
1079 && arrow_literal_p)
1080 {
1081 ASSERT_SYNTAX_2 (length > 2, s_missing_recipient, clause, expr);
1082 ASSERT_SYNTAX_2 (length == 3, s_extra_expression, clause, expr);
1083 SCM_SETCAR (SCM_CDR (clause), SCM_IM_ARROW);
8ea46249 1084 }
0f2d19dd 1085 }
609a8b86
DH
1086
1087 SCM_SETCAR (expr, SCM_IM_COND);
1088 return expr;
0f2d19dd
JB
1089}
1090
212e58ed
DH
1091static SCM
1092unmemoize_cond (const SCM expr, const SCM env)
1093{
1094 SCM um_clauses = SCM_EOL;
1095 SCM clause_idx;
1096
1097 for (clause_idx = SCM_CDR (expr);
a61f4e0c 1098 !scm_is_null (clause_idx);
212e58ed
DH
1099 clause_idx = SCM_CDR (clause_idx))
1100 {
1101 const SCM clause = SCM_CAR (clause_idx);
1102 const SCM sequence = SCM_CDR (clause);
1103 const SCM test = SCM_CAR (clause);
1104 SCM um_test;
1105 SCM um_sequence;
1106 SCM um_clause;
1107
bc36d050 1108 if (scm_is_eq (test, SCM_IM_ELSE))
212e58ed
DH
1109 um_test = scm_sym_else;
1110 else
1111 um_test = unmemoize_expression (test, env);
1112
a61f4e0c 1113 if (!scm_is_null (sequence) && scm_is_eq (SCM_CAR (sequence),
bc36d050 1114 SCM_IM_ARROW))
212e58ed
DH
1115 {
1116 const SCM target = SCM_CADR (sequence);
1117 const SCM um_target = unmemoize_expression (target, env);
1118 um_sequence = scm_list_2 (scm_sym_arrow, um_target);
1119 }
1120 else
1121 {
1122 um_sequence = unmemoize_exprs (sequence, env);
1123 }
1124
1125 um_clause = scm_cons (um_test, um_sequence);
1126 um_clauses = scm_cons (um_clause, um_clauses);
1127 }
1128 um_clauses = scm_reverse_x (um_clauses, SCM_UNDEFINED);
1129
1130 return scm_cons (scm_sym_cond, um_clauses);
1131}
1132
1cc91f1b 1133
0f572ba7
DH
1134SCM_SYNTAX (s_define, "define", scm_i_makbimacro, scm_m_define);
1135SCM_GLOBAL_SYMBOL (scm_sym_define, s_define);
5280aaca 1136
9fbee57e
DH
1137/* Guile provides an extension to R5RS' define syntax to represent function
1138 * currying in a compact way. With this extension, it is allowed to write
1139 * (define <nested-variable> <body>), where <nested-variable> has of one of
1140 * the forms (<nested-variable> <formals>), (<nested-variable> . <formal>),
1141 * (<variable> <formals>) or (<variable> . <formal>). As in R5RS, <formals>
1142 * should be either a sequence of zero or more variables, or a sequence of one
1143 * or more variables followed by a space-delimited period and another
1144 * variable. Each level of argument nesting wraps the <body> within another
1145 * lambda expression. For example, the following forms are allowed, each one
1146 * followed by an equivalent, more explicit implementation.
1147 * Example 1:
1148 * (define ((a b . c) . d) <body>) is equivalent to
1149 * (define a (lambda (b . c) (lambda d <body>)))
1150 * Example 2:
1151 * (define (((a) b) c . d) <body>) is equivalent to
1152 * (define a (lambda () (lambda (b) (lambda (c . d) <body>))))
1153 */
1154/* Dirk:FIXME:: We should provide an implementation for 'define' in the R5RS
1155 * module that does not implement this extension. */
0f572ba7
DH
1156static SCM
1157canonicalize_define (const SCM expr)
5280aaca 1158{
cc56ba80
DH
1159 SCM body;
1160 SCM variable;
1161
1162 const SCM cdr_expr = SCM_CDR (expr);
c86c440b 1163 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
cc56ba80
DH
1164 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 2, s_missing_expression, expr);
1165
1166 body = SCM_CDR (cdr_expr);
1167 variable = SCM_CAR (cdr_expr);
a61f4e0c 1168 while (scm_is_pair (variable))
5280aaca 1169 {
cc56ba80
DH
1170 /* This while loop realizes function currying by variable nesting.
1171 * Variable is known to be a nested-variable. In every iteration of the
1172 * loop another level of lambda expression is created, starting with the
4610b011
DH
1173 * innermost one. Note that we don't check for duplicate formals here:
1174 * This will be done by the memoizer of the lambda expression. */
cc56ba80
DH
1175 const SCM formals = SCM_CDR (variable);
1176 const SCM tail = scm_cons (formals, body);
1177
1178 /* Add source properties to each new lambda expression: */
1179 const SCM lambda = scm_cons_source (variable, scm_sym_lambda, tail);
1180
1181 body = scm_list_1 (lambda);
1182 variable = SCM_CAR (variable);
5280aaca 1183 }
cc95e00a 1184 ASSERT_SYNTAX_2 (scm_is_symbol (variable), s_bad_variable, variable, expr);
cc56ba80
DH
1185 ASSERT_SYNTAX (scm_ilength (body) == 1, s_expression, expr);
1186
0f572ba7
DH
1187 SCM_SETCAR (cdr_expr, variable);
1188 SCM_SETCDR (cdr_expr, body);
1189 return expr;
1190}
1191
36245b66
DH
1192/* According to section 5.2.1 of R5RS we first have to make sure that the
1193 * variable is bound, and then perform the (set! variable expression)
1194 * operation. This means, that within the expression we may already assign
1195 * values to variable: (define foo (begin (set! foo 1) (+ foo 1))) */
0f572ba7
DH
1196SCM
1197scm_m_define (SCM expr, SCM env)
1198{
6bff1368 1199 ASSERT_SYNTAX (SCM_TOP_LEVEL (env), s_bad_define, expr);
0f572ba7 1200
6bff1368
DH
1201 {
1202 const SCM canonical_definition = canonicalize_define (expr);
1203 const SCM cdr_canonical_definition = SCM_CDR (canonical_definition);
1204 const SCM variable = SCM_CAR (cdr_canonical_definition);
36245b66
DH
1205 const SCM location
1206 = scm_sym2var (variable, scm_env_top_level (env), SCM_BOOL_T);
1207 const SCM value = scm_eval_car (SCM_CDR (cdr_canonical_definition), env);
6bff1368 1208
6bff1368
DH
1209 if (SCM_REC_PROCNAMES_P)
1210 {
1211 SCM tmp = value;
1212 while (SCM_MACROP (tmp))
1213 tmp = SCM_MACRO_CODE (tmp);
1214 if (SCM_CLOSUREP (tmp)
1215 /* Only the first definition determines the name. */
7888309b 1216 && scm_is_false (scm_procedure_property (tmp, scm_sym_name)))
6bff1368
DH
1217 scm_set_procedure_property_x (tmp, scm_sym_name, variable);
1218 }
0f572ba7 1219
36245b66 1220 SCM_VARIABLE_SET (location, value);
6bff1368
DH
1221
1222 return SCM_UNSPECIFIED;
1223 }
0f2d19dd
JB
1224}
1225
1226
8ae95199
DH
1227/* This is a helper function for forms (<keyword> <expression>) that are
1228 * transformed into (#@<keyword> '() <memoized_expression>) in order to allow
1229 * for easy creation of a thunk (i. e. a closure without arguments) using the
1230 * ('() <memoized_expression>) tail of the memoized form. */
1231static SCM
1232memoize_as_thunk_prototype (const SCM expr, const SCM env SCM_UNUSED)
1233{
1234 const SCM cdr_expr = SCM_CDR (expr);
1235 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
1236 ASSERT_SYNTAX (scm_ilength (cdr_expr) == 1, s_expression, expr);
1237
1238 SCM_SETCDR (expr, scm_cons (SCM_EOL, cdr_expr));
1239
1240 return expr;
1241}
1242
1243
3b88ed2a 1244SCM_SYNTAX (s_delay, "delay", scm_i_makbimacro, scm_m_delay);
9fbee57e 1245SCM_GLOBAL_SYMBOL (scm_sym_delay, s_delay);
1cc91f1b 1246
9fbee57e
DH
1247/* Promises are implemented as closures with an empty parameter list. Thus,
1248 * (delay <expression>) is transformed into (#@delay '() <expression>), where
1249 * the empty list represents the empty parameter list. This representation
1250 * allows for easy creation of the closure during evaluation. */
8ea46249 1251SCM
8ae95199 1252scm_m_delay (SCM expr, SCM env)
0f2d19dd 1253{
8ae95199
DH
1254 const SCM new_expr = memoize_as_thunk_prototype (expr, env);
1255 SCM_SETCAR (new_expr, SCM_IM_DELAY);
1256 return new_expr;
0f2d19dd
JB
1257}
1258
212e58ed
DH
1259static SCM
1260unmemoize_delay (const SCM expr, const SCM env)
1261{
1262 const SCM thunk_expr = SCM_CADDR (expr);
1263 return scm_list_2 (scm_sym_delay, unmemoize_expression (thunk_expr, env));
1264}
1265
8ea46249 1266
a954ce1d
DH
1267SCM_SYNTAX(s_do, "do", scm_i_makbimacro, scm_m_do);
1268SCM_GLOBAL_SYMBOL(scm_sym_do, s_do);
1269
302c12b4 1270/* DO gets the most radically altered syntax. The order of the vars is
4610b011
DH
1271 * reversed here. During the evaluation this allows for simple consing of the
1272 * results of the inits and steps:
302c12b4 1273
0f2d19dd 1274 (do ((<var1> <init1> <step1>)
a954ce1d
DH
1275 (<var2> <init2>)
1276 ... )
1277 (<test> <return>)
1278 <body>)
302c12b4 1279
0f2d19dd 1280 ;; becomes
302c12b4 1281
e681d187 1282 (#@do (<init1> <init2> ... <initn>)
a954ce1d
DH
1283 (varn ... var2 var1)
1284 (<test> <return>)
1285 (<body>)
1286 <step1> <step2> ... <stepn>) ;; missing steps replaced by var
302c12b4 1287 */
0f2d19dd 1288SCM
a954ce1d 1289scm_m_do (SCM expr, SCM env SCM_UNUSED)
0f2d19dd 1290{
a954ce1d
DH
1291 SCM variables = SCM_EOL;
1292 SCM init_forms = SCM_EOL;
1293 SCM step_forms = SCM_EOL;
1294 SCM binding_idx;
1295 SCM cddr_expr;
1296 SCM exit_clause;
1297 SCM commands;
1298 SCM tail;
1299
1300 const SCM cdr_expr = SCM_CDR (expr);
1301 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
1302 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 2, s_missing_expression, expr);
1303
1304 /* Collect variables, init and step forms. */
1305 binding_idx = SCM_CAR (cdr_expr);
1306 ASSERT_SYNTAX_2 (scm_ilength (binding_idx) >= 0,
1307 s_bad_bindings, binding_idx, expr);
a61f4e0c 1308 for (; !scm_is_null (binding_idx); binding_idx = SCM_CDR (binding_idx))
0f2d19dd 1309 {
a954ce1d
DH
1310 const SCM binding = SCM_CAR (binding_idx);
1311 const long length = scm_ilength (binding);
1312 ASSERT_SYNTAX_2 (length == 2 || length == 3,
1313 s_bad_binding, binding, expr);
1314
302c12b4 1315 {
a954ce1d
DH
1316 const SCM name = SCM_CAR (binding);
1317 const SCM init = SCM_CADR (binding);
1318 const SCM step = (length == 2) ? name : SCM_CADDR (binding);
cc95e00a 1319 ASSERT_SYNTAX_2 (scm_is_symbol (name), s_bad_variable, name, expr);
7888309b 1320 ASSERT_SYNTAX_2 (scm_is_false (scm_c_memq (name, variables)),
4610b011
DH
1321 s_duplicate_binding, name, expr);
1322
a954ce1d
DH
1323 variables = scm_cons (name, variables);
1324 init_forms = scm_cons (init, init_forms);
1325 step_forms = scm_cons (step, step_forms);
302c12b4 1326 }
0f2d19dd 1327 }
a954ce1d
DH
1328 init_forms = scm_reverse_x (init_forms, SCM_UNDEFINED);
1329 step_forms = scm_reverse_x (step_forms, SCM_UNDEFINED);
1330
1331 /* Memoize the test form and the exit sequence. */
1332 cddr_expr = SCM_CDR (cdr_expr);
1333 exit_clause = SCM_CAR (cddr_expr);
1334 ASSERT_SYNTAX_2 (scm_ilength (exit_clause) >= 1,
1335 s_bad_exit_clause, exit_clause, expr);
1336
1337 commands = SCM_CDR (cddr_expr);
1338 tail = scm_cons2 (exit_clause, commands, step_forms);
1339 tail = scm_cons2 (init_forms, variables, tail);
1340 SCM_SETCAR (expr, SCM_IM_DO);
1341 SCM_SETCDR (expr, tail);
1342 return expr;
0f2d19dd
JB
1343}
1344
212e58ed
DH
1345static SCM
1346unmemoize_do (const SCM expr, const SCM env)
1347{
1348 const SCM cdr_expr = SCM_CDR (expr);
1349 const SCM cddr_expr = SCM_CDR (cdr_expr);
1350 const SCM rnames = SCM_CAR (cddr_expr);
1351 const SCM extended_env = SCM_EXTEND_ENV (rnames, SCM_EOL, env);
1352 const SCM cdddr_expr = SCM_CDR (cddr_expr);
1353 const SCM exit_sequence = SCM_CAR (cdddr_expr);
1354 const SCM um_exit_sequence = unmemoize_exprs (exit_sequence, extended_env);
1355 const SCM cddddr_expr = SCM_CDR (cdddr_expr);
1356 const SCM um_body = unmemoize_exprs (SCM_CAR (cddddr_expr), extended_env);
1357
1358 /* build transformed binding list */
1359 SCM um_names = scm_reverse (rnames);
1360 SCM um_inits = unmemoize_exprs (SCM_CAR (cdr_expr), env);
1361 SCM um_steps = unmemoize_exprs (SCM_CDR (cddddr_expr), extended_env);
1362 SCM um_bindings = SCM_EOL;
a61f4e0c 1363 while (!scm_is_null (um_names))
212e58ed
DH
1364 {
1365 const SCM name = SCM_CAR (um_names);
1366 const SCM init = SCM_CAR (um_inits);
1367 SCM step = SCM_CAR (um_steps);
bc36d050 1368 step = scm_is_eq (step, name) ? SCM_EOL : scm_list_1 (step);
212e58ed
DH
1369
1370 um_bindings = scm_cons (scm_cons2 (name, init, step), um_bindings);
1371
1372 um_names = SCM_CDR (um_names);
1373 um_inits = SCM_CDR (um_inits);
1374 um_steps = SCM_CDR (um_steps);
1375 }
1376 um_bindings = scm_reverse_x (um_bindings, SCM_UNDEFINED);
1377
1378 return scm_cons (scm_sym_do,
1379 scm_cons2 (um_bindings, um_exit_sequence, um_body));
1380}
1381
b8229a3b 1382
3b88ed2a 1383SCM_SYNTAX (s_if, "if", scm_i_makbimacro, scm_m_if);
9fbee57e 1384SCM_GLOBAL_SYMBOL (scm_sym_if, s_if);
b8229a3b 1385
9fbee57e 1386SCM
4610b011 1387scm_m_if (SCM expr, SCM env SCM_UNUSED)
0f2d19dd 1388{
4610b011
DH
1389 const SCM cdr_expr = SCM_CDR (expr);
1390 const long length = scm_ilength (cdr_expr);
1391 ASSERT_SYNTAX (length == 2 || length == 3, s_expression, expr);
1392 SCM_SETCAR (expr, SCM_IM_IF);
1393 return expr;
0f2d19dd
JB
1394}
1395
212e58ed
DH
1396static SCM
1397unmemoize_if (const SCM expr, const SCM env)
1398{
1399 const SCM cdr_expr = SCM_CDR (expr);
1400 const SCM um_condition = unmemoize_expression (SCM_CAR (cdr_expr), env);
1401 const SCM cddr_expr = SCM_CDR (cdr_expr);
1402 const SCM um_then = unmemoize_expression (SCM_CAR (cddr_expr), env);
1403 const SCM cdddr_expr = SCM_CDR (cddr_expr);
1404
a61f4e0c 1405 if (scm_is_null (cdddr_expr))
212e58ed
DH
1406 {
1407 return scm_list_3 (scm_sym_if, um_condition, um_then);
1408 }
1409 else
1410 {
1411 const SCM um_else = unmemoize_expression (SCM_CAR (cdddr_expr), env);
1412 return scm_list_4 (scm_sym_if, um_condition, um_then, um_else);
1413 }
1414}
1415
302c12b4 1416
3b88ed2a 1417SCM_SYNTAX (s_lambda, "lambda", scm_i_makbimacro, scm_m_lambda);
9fbee57e 1418SCM_GLOBAL_SYMBOL (scm_sym_lambda, s_lambda);
0f2d19dd 1419
4610b011
DH
1420/* A helper function for memoize_lambda to support checking for duplicate
1421 * formal arguments: Return true if OBJ is `eq?' to one of the elements of
1422 * LIST or to the cdr of the last cons. Therefore, LIST may have any of the
1423 * forms that a formal argument can have:
1424 * <rest>, (<arg1> ...), (<arg1> ... . <rest>) */
9fbee57e 1425static int
4610b011 1426c_improper_memq (SCM obj, SCM list)
5cb22e96 1427{
a61f4e0c 1428 for (; scm_is_pair (list); list = SCM_CDR (list))
9fbee57e 1429 {
bc36d050 1430 if (scm_is_eq (SCM_CAR (list), obj))
4610b011 1431 return 1;
9fbee57e 1432 }
bc36d050 1433 return scm_is_eq (list, obj);
5cb22e96
DH
1434}
1435
28d52ebb 1436SCM
03a3e941 1437scm_m_lambda (SCM expr, SCM env SCM_UNUSED)
28d52ebb 1438{
9fbee57e 1439 SCM formals;
03a3e941 1440 SCM formals_idx;
34adf7ea
DH
1441 SCM cddr_expr;
1442 int documentation;
1443 SCM body;
1444 SCM new_body;
03a3e941
DH
1445
1446 const SCM cdr_expr = SCM_CDR (expr);
1447 const long length = scm_ilength (cdr_expr);
1448 ASSERT_SYNTAX (length >= 0, s_bad_expression, expr);
1449 ASSERT_SYNTAX (length >= 2, s_missing_expression, expr);
28d52ebb 1450
03a3e941
DH
1451 /* Before iterating the list of formal arguments, make sure the formals
1452 * actually are given as either a symbol or a non-cyclic list. */
1453 formals = SCM_CAR (cdr_expr);
a61f4e0c 1454 if (scm_is_pair (formals))
03a3e941
DH
1455 {
1456 /* Dirk:FIXME:: We should check for a cyclic list of formals, and if
1457 * detected, report a 'Bad formals' error. */
1458 }
1459 else
1460 {
a61f4e0c 1461 ASSERT_SYNTAX_2 (scm_is_symbol (formals) || scm_is_null (formals),
03a3e941
DH
1462 s_bad_formals, formals, expr);
1463 }
1cc91f1b 1464
03a3e941
DH
1465 /* Now iterate the list of formal arguments to check if all formals are
1466 * symbols, and that there are no duplicates. */
1467 formals_idx = formals;
a61f4e0c 1468 while (scm_is_pair (formals_idx))
0f2d19dd 1469 {
03a3e941
DH
1470 const SCM formal = SCM_CAR (formals_idx);
1471 const SCM next_idx = SCM_CDR (formals_idx);
cc95e00a 1472 ASSERT_SYNTAX_2 (scm_is_symbol (formal), s_bad_formal, formal, expr);
03a3e941
DH
1473 ASSERT_SYNTAX_2 (!c_improper_memq (formal, next_idx),
1474 s_duplicate_formal, formal, expr);
1475 formals_idx = next_idx;
0f2d19dd 1476 }
a61f4e0c 1477 ASSERT_SYNTAX_2 (scm_is_null (formals_idx) || scm_is_symbol (formals_idx),
03a3e941 1478 s_bad_formal, formals_idx, expr);
9fbee57e 1479
34adf7ea
DH
1480 /* Memoize the body. Keep a potential documentation string. */
1481 /* Dirk:FIXME:: We should probably extract the documentation string to
1482 * some external database. Otherwise it will slow down execution, since
1483 * the documentation string will have to be skipped with every execution
1484 * of the closure. */
1485 cddr_expr = SCM_CDR (cdr_expr);
7f9994d9 1486 documentation = (length >= 3 && scm_is_string (SCM_CAR (cddr_expr)));
34adf7ea 1487 body = documentation ? SCM_CDR (cddr_expr) : cddr_expr;
430b8401 1488 new_body = m_body (SCM_IM_LAMBDA, body);
34adf7ea
DH
1489
1490 SCM_SETCAR (expr, SCM_IM_LAMBDA);
1491 if (documentation)
1492 SCM_SETCDR (cddr_expr, new_body);
1493 else
1494 SCM_SETCDR (cdr_expr, new_body);
1495 return expr;
0f2d19dd 1496}
6dbd0af5 1497
212e58ed
DH
1498static SCM
1499unmemoize_lambda (const SCM expr, const SCM env)
1500{
1501 const SCM formals = SCM_CADR (expr);
1502 const SCM body = SCM_CDDR (expr);
1503
1504 const SCM new_env = SCM_EXTEND_ENV (formals, SCM_EOL, env);
1505 const SCM um_formals = scm_i_finite_list_copy (formals);
1506 const SCM um_body = unmemoize_exprs (body, new_env);
1507
1508 return scm_cons2 (scm_sym_lambda, um_formals, um_body);
1509}
1510
0f2d19dd 1511
d6754c23 1512/* Check if the format of the bindings is ((<symbol> <init-form>) ...). */
302c12b4 1513static void
d6754c23 1514check_bindings (const SCM bindings, const SCM expr)
0f2d19dd 1515{
d6754c23 1516 SCM binding_idx;
302c12b4 1517
d6754c23
DH
1518 ASSERT_SYNTAX_2 (scm_ilength (bindings) >= 0,
1519 s_bad_bindings, bindings, expr);
0f2d19dd 1520
d6754c23 1521 binding_idx = bindings;
a61f4e0c 1522 for (; !scm_is_null (binding_idx); binding_idx = SCM_CDR (binding_idx))
0f2d19dd 1523 {
d6754c23
DH
1524 SCM name; /* const */
1525
1526 const SCM binding = SCM_CAR (binding_idx);
1527 ASSERT_SYNTAX_2 (scm_ilength (binding) == 2,
1528 s_bad_binding, binding, expr);
1529
1530 name = SCM_CAR (binding);
cc95e00a 1531 ASSERT_SYNTAX_2 (scm_is_symbol (name), s_bad_variable, name, expr);
0f2d19dd 1532 }
d6754c23 1533}
26d5b9b4 1534
d6754c23
DH
1535
1536/* The bindings, which must have the format ((v1 i1) (v2 i2) ... (vn in)), are
1537 * transformed to the lists (vn ... v2 v1) and (i1 i2 ... in). That is, the
1538 * variables are returned in a list with their order reversed, and the init
1539 * forms are returned in a list in the same order as they are given in the
1540 * bindings. If a duplicate variable name is detected, an error is
1541 * signalled. */
1542static void
1543transform_bindings (
1544 const SCM bindings, const SCM expr,
1545 SCM *const rvarptr, SCM *const initptr )
1546{
1547 SCM rvariables = SCM_EOL;
1548 SCM rinits = SCM_EOL;
1549 SCM binding_idx = bindings;
a61f4e0c 1550 for (; !scm_is_null (binding_idx); binding_idx = SCM_CDR (binding_idx))
d6754c23
DH
1551 {
1552 const SCM binding = SCM_CAR (binding_idx);
1553 const SCM cdr_binding = SCM_CDR (binding);
1554 const SCM name = SCM_CAR (binding);
7888309b 1555 ASSERT_SYNTAX_2 (scm_is_false (scm_c_memq (name, rvariables)),
d6754c23
DH
1556 s_duplicate_binding, name, expr);
1557 rvariables = scm_cons (name, rvariables);
1558 rinits = scm_cons (SCM_CAR (cdr_binding), rinits);
1559 }
1560 *rvarptr = rvariables;
1561 *initptr = scm_reverse_x (rinits, SCM_UNDEFINED);
0f2d19dd
JB
1562}
1563
302c12b4 1564
3b88ed2a 1565SCM_SYNTAX(s_let, "let", scm_i_makbimacro, scm_m_let);
2f0d1375 1566SCM_GLOBAL_SYMBOL(scm_sym_let, s_let);
b8229a3b 1567
d6754c23
DH
1568/* This function is a helper function for memoize_let. It transforms
1569 * (let name ((var init) ...) body ...) into
1570 * ((letrec ((name (lambda (var ...) body ...))) name) init ...)
1571 * and memoizes the expression. It is assumed that the caller has checked
1572 * that name is a symbol and that there are bindings and a body. */
1573static SCM
1574memoize_named_let (const SCM expr, const SCM env SCM_UNUSED)
1575{
1576 SCM rvariables;
1577 SCM variables;
1578 SCM inits;
1579
1580 const SCM cdr_expr = SCM_CDR (expr);
1581 const SCM name = SCM_CAR (cdr_expr);
1582 const SCM cddr_expr = SCM_CDR (cdr_expr);
1583 const SCM bindings = SCM_CAR (cddr_expr);
1584 check_bindings (bindings, expr);
1585
1586 transform_bindings (bindings, expr, &rvariables, &inits);
1587 variables = scm_reverse_x (rvariables, SCM_UNDEFINED);
1588
1589 {
1590 const SCM let_body = SCM_CDR (cddr_expr);
430b8401 1591 const SCM lambda_body = m_body (SCM_IM_LET, let_body);
d6754c23
DH
1592 const SCM lambda_tail = scm_cons (variables, lambda_body);
1593 const SCM lambda_form = scm_cons_source (expr, scm_sym_lambda, lambda_tail);
1594
1595 const SCM rvar = scm_list_1 (name);
1596 const SCM init = scm_list_1 (lambda_form);
430b8401 1597 const SCM body = m_body (SCM_IM_LET, scm_list_1 (name));
d6754c23
DH
1598 const SCM letrec_tail = scm_cons (rvar, scm_cons (init, body));
1599 const SCM letrec_form = scm_cons_source (expr, SCM_IM_LETREC, letrec_tail);
1600 return scm_cons_source (expr, letrec_form, inits);
1601 }
1602}
1603
1604/* (let ((v1 i1) (v2 i2) ...) body) with variables v1 .. vn and initializers
1605 * i1 .. in is transformed to (#@let (vn ... v2 v1) (i1 i2 ...) body). */
302c12b4 1606SCM
d6754c23 1607scm_m_let (SCM expr, SCM env)
0f2d19dd 1608{
d6754c23
DH
1609 SCM bindings;
1610
1611 const SCM cdr_expr = SCM_CDR (expr);
1612 const long length = scm_ilength (cdr_expr);
1613 ASSERT_SYNTAX (length >= 0, s_bad_expression, expr);
1614 ASSERT_SYNTAX (length >= 2, s_missing_expression, expr);
302c12b4 1615
d6754c23 1616 bindings = SCM_CAR (cdr_expr);
cc95e00a 1617 if (scm_is_symbol (bindings))
26d5b9b4 1618 {
d6754c23
DH
1619 ASSERT_SYNTAX (length >= 3, s_missing_expression, expr);
1620 return memoize_named_let (expr, env);
26d5b9b4 1621 }
d6754c23
DH
1622
1623 check_bindings (bindings, expr);
a61f4e0c 1624 if (scm_is_null (bindings) || scm_is_null (SCM_CDR (bindings)))
26d5b9b4 1625 {
d6754c23 1626 /* Special case: no bindings or single binding => let* is faster. */
430b8401 1627 const SCM body = m_body (SCM_IM_LET, SCM_CDR (cdr_expr));
d6754c23 1628 return scm_m_letstar (scm_cons2 (SCM_CAR (expr), bindings, body), env);
26d5b9b4 1629 }
302c12b4
DH
1630 else
1631 {
d6754c23
DH
1632 /* plain let */
1633 SCM rvariables;
1634 SCM inits;
1635 transform_bindings (bindings, expr, &rvariables, &inits);
26d5b9b4 1636
302c12b4 1637 {
430b8401 1638 const SCM new_body = m_body (SCM_IM_LET, SCM_CDR (cdr_expr));
d6754c23
DH
1639 const SCM new_tail = scm_cons2 (rvariables, inits, new_body);
1640 SCM_SETCAR (expr, SCM_IM_LET);
1641 SCM_SETCDR (expr, new_tail);
1642 return expr;
302c12b4
DH
1643 }
1644 }
0f2d19dd
JB
1645}
1646
212e58ed
DH
1647static SCM
1648build_binding_list (SCM rnames, SCM rinits)
1649{
1650 SCM bindings = SCM_EOL;
a61f4e0c 1651 while (!scm_is_null (rnames))
212e58ed
DH
1652 {
1653 const SCM binding = scm_list_2 (SCM_CAR (rnames), SCM_CAR (rinits));
1654 bindings = scm_cons (binding, bindings);
1655 rnames = SCM_CDR (rnames);
1656 rinits = SCM_CDR (rinits);
1657 }
1658 return bindings;
1659}
1660
1661static SCM
1662unmemoize_let (const SCM expr, const SCM env)
1663{
1664 const SCM cdr_expr = SCM_CDR (expr);
1665 const SCM um_rnames = SCM_CAR (cdr_expr);
1666 const SCM extended_env = SCM_EXTEND_ENV (um_rnames, SCM_EOL, env);
1667 const SCM cddr_expr = SCM_CDR (cdr_expr);
1668 const SCM um_inits = unmemoize_exprs (SCM_CAR (cddr_expr), env);
1669 const SCM um_rinits = scm_reverse_x (um_inits, SCM_UNDEFINED);
1670 const SCM um_bindings = build_binding_list (um_rnames, um_rinits);
1671 const SCM um_body = unmemoize_exprs (SCM_CDR (cddr_expr), extended_env);
1672
1673 return scm_cons2 (scm_sym_let, um_bindings, um_body);
1674}
1675
1676
1677SCM_SYNTAX(s_letrec, "letrec", scm_i_makbimacro, scm_m_letrec);
1678SCM_GLOBAL_SYMBOL(scm_sym_letrec, s_letrec);
1679
1680SCM
1681scm_m_letrec (SCM expr, SCM env)
1682{
1683 SCM bindings;
1684
1685 const SCM cdr_expr = SCM_CDR (expr);
1686 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
1687 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 2, s_missing_expression, expr);
1688
1689 bindings = SCM_CAR (cdr_expr);
a61f4e0c 1690 if (scm_is_null (bindings))
212e58ed
DH
1691 {
1692 /* no bindings, let* is executed faster */
1693 SCM body = m_body (SCM_IM_LETREC, SCM_CDR (cdr_expr));
1694 return scm_m_letstar (scm_cons2 (SCM_CAR (expr), SCM_EOL, body), env);
1695 }
1696 else
1697 {
1698 SCM rvariables;
1699 SCM inits;
1700 SCM new_body;
1701
1702 check_bindings (bindings, expr);
1703 transform_bindings (bindings, expr, &rvariables, &inits);
1704 new_body = m_body (SCM_IM_LETREC, SCM_CDR (cdr_expr));
1705 return scm_cons2 (SCM_IM_LETREC, rvariables, scm_cons (inits, new_body));
1706 }
1707}
1708
1709static SCM
1710unmemoize_letrec (const SCM expr, const SCM env)
1711{
1712 const SCM cdr_expr = SCM_CDR (expr);
1713 const SCM um_rnames = SCM_CAR (cdr_expr);
1714 const SCM extended_env = SCM_EXTEND_ENV (um_rnames, SCM_EOL, env);
1715 const SCM cddr_expr = SCM_CDR (cdr_expr);
1716 const SCM um_inits = unmemoize_exprs (SCM_CAR (cddr_expr), extended_env);
1717 const SCM um_rinits = scm_reverse_x (um_inits, SCM_UNDEFINED);
1718 const SCM um_bindings = build_binding_list (um_rnames, um_rinits);
1719 const SCM um_body = unmemoize_exprs (SCM_CDR (cddr_expr), extended_env);
1720
1721 return scm_cons2 (scm_sym_letrec, um_bindings, um_body);
1722}
1723
1724
0f2d19dd 1725
3b88ed2a 1726SCM_SYNTAX (s_letstar, "let*", scm_i_makbimacro, scm_m_letstar);
9fbee57e 1727SCM_GLOBAL_SYMBOL (scm_sym_letstar, s_letstar);
1cc91f1b 1728
d6754c23
DH
1729/* (let* ((v1 i1) (v2 i2) ...) body) with variables v1 .. vn and initializers
1730 * i1 .. in is transformed into the form (#@let* (v1 i1 v2 i2 ...) body). */
9fbee57e 1731SCM
d6754c23 1732scm_m_letstar (SCM expr, SCM env SCM_UNUSED)
0f2d19dd 1733{
d6754c23 1734 SCM binding_idx;
d6754c23 1735 SCM new_body;
0f2d19dd 1736
d6754c23
DH
1737 const SCM cdr_expr = SCM_CDR (expr);
1738 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
1739 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 2, s_missing_expression, expr);
9fbee57e 1740
d6754c23
DH
1741 binding_idx = SCM_CAR (cdr_expr);
1742 check_bindings (binding_idx, expr);
1743
461bffb1
DH
1744 /* Transform ((v1 i1) (v2 i2) ...) into (v1 i1 v2 i2 ...). The
1745 * transformation is done in place. At the beginning of one iteration of
1746 * the loop the variable binding_idx holds the form
1747 * P1:( (vn . P2:(in . ())) . P3:( (vn+1 in+1) ... ) ),
1748 * where P1, P2 and P3 indicate the pairs, that are relevant for the
1749 * transformation. P1 and P2 are modified in the loop, P3 remains
1750 * untouched. After the execution of the loop, P1 will hold
1751 * P1:( vn . P2:(in . P3:( (vn+1 in+1) ... )) )
1752 * and binding_idx will hold P3. */
a61f4e0c 1753 while (!scm_is_null (binding_idx))
9fbee57e 1754 {
461bffb1 1755 const SCM cdr_binding_idx = SCM_CDR (binding_idx); /* remember P3 */
d6754c23
DH
1756 const SCM binding = SCM_CAR (binding_idx);
1757 const SCM name = SCM_CAR (binding);
461bffb1
DH
1758 const SCM cdr_binding = SCM_CDR (binding);
1759
1760 SCM_SETCDR (cdr_binding, cdr_binding_idx); /* update P2 */
1761 SCM_SETCAR (binding_idx, name); /* update P1 */
1762 SCM_SETCDR (binding_idx, cdr_binding); /* update P1 */
1763
1764 binding_idx = cdr_binding_idx; /* continue with P3 */
9fbee57e
DH
1765 }
1766
430b8401 1767 new_body = m_body (SCM_IM_LETSTAR, SCM_CDR (cdr_expr));
461bffb1
DH
1768 SCM_SETCAR (expr, SCM_IM_LETSTAR);
1769 /* the bindings have been changed in place */
1770 SCM_SETCDR (cdr_expr, new_body);
1771 return expr;
9fbee57e 1772}
b8229a3b 1773
212e58ed
DH
1774static SCM
1775unmemoize_letstar (const SCM expr, const SCM env)
0f2d19dd 1776{
d6754c23 1777 const SCM cdr_expr = SCM_CDR (expr);
212e58ed
DH
1778 const SCM body = SCM_CDR (cdr_expr);
1779 SCM bindings = SCM_CAR (cdr_expr);
1780 SCM um_bindings = SCM_EOL;
1781 SCM extended_env = env;
1782 SCM um_body;
d6754c23 1783
a61f4e0c 1784 while (!scm_is_null (bindings))
9fbee57e 1785 {
212e58ed
DH
1786 const SCM variable = SCM_CAR (bindings);
1787 const SCM init = SCM_CADR (bindings);
1788 const SCM um_init = unmemoize_expression (init, extended_env);
1789 um_bindings = scm_cons (scm_list_2 (variable, um_init), um_bindings);
1790 extended_env = SCM_EXTEND_ENV (variable, SCM_BOOL_F, extended_env);
1791 bindings = SCM_CDDR (bindings);
9fbee57e 1792 }
212e58ed 1793 um_bindings = scm_reverse_x (um_bindings, SCM_UNDEFINED);
d6754c23 1794
212e58ed
DH
1795 um_body = unmemoize_exprs (body, extended_env);
1796
1797 return scm_cons2 (scm_sym_letstar, um_bindings, um_body);
0f2d19dd
JB
1798}
1799
73b64342 1800
3b88ed2a 1801SCM_SYNTAX (s_or, "or", scm_i_makbimacro, scm_m_or);
9fbee57e 1802SCM_GLOBAL_SYMBOL (scm_sym_or, s_or);
73b64342
MD
1803
1804SCM
21628685 1805scm_m_or (SCM expr, SCM env SCM_UNUSED)
73b64342 1806{
21628685
DH
1807 const SCM cdr_expr = SCM_CDR (expr);
1808 const long length = scm_ilength (cdr_expr);
1809
1810 ASSERT_SYNTAX (length >= 0, s_bad_expression, expr);
1811
1812 if (length == 0)
1813 {
1814 /* Special case: (or) is replaced by #f. */
1815 return SCM_BOOL_F;
1816 }
9fbee57e 1817 else
21628685
DH
1818 {
1819 SCM_SETCAR (expr, SCM_IM_OR);
1820 return expr;
1821 }
73b64342
MD
1822}
1823
212e58ed
DH
1824static SCM
1825unmemoize_or (const SCM expr, const SCM env)
1826{
1827 return scm_cons (scm_sym_or, unmemoize_exprs (SCM_CDR (expr), env));
1828}
1829
73b64342 1830
9fbee57e
DH
1831SCM_SYNTAX (s_quasiquote, "quasiquote", scm_makacro, scm_m_quasiquote);
1832SCM_GLOBAL_SYMBOL (scm_sym_quasiquote, s_quasiquote);
6f81708a
DH
1833SCM_GLOBAL_SYMBOL (scm_sym_unquote, "unquote");
1834SCM_GLOBAL_SYMBOL (scm_sym_uq_splicing, "unquote-splicing");
9fbee57e
DH
1835
1836/* Internal function to handle a quasiquotation: 'form' is the parameter in
1837 * the call (quasiquotation form), 'env' is the environment where unquoted
1838 * expressions will be evaluated, and 'depth' is the current quasiquotation
1839 * nesting level and is known to be greater than zero. */
1840static SCM
1841iqq (SCM form, SCM env, unsigned long int depth)
73b64342 1842{
a61f4e0c 1843 if (scm_is_pair (form))
c96d76b8 1844 {
21628685 1845 const SCM tmp = SCM_CAR (form);
bc36d050 1846 if (scm_is_eq (tmp, scm_sym_quasiquote))
9fbee57e 1847 {
21628685
DH
1848 const SCM args = SCM_CDR (form);
1849 ASSERT_SYNTAX (scm_ilength (args) == 1, s_expression, form);
9fbee57e
DH
1850 return scm_list_2 (tmp, iqq (SCM_CAR (args), env, depth + 1));
1851 }
bc36d050 1852 else if (scm_is_eq (tmp, scm_sym_unquote))
9fbee57e 1853 {
21628685
DH
1854 const SCM args = SCM_CDR (form);
1855 ASSERT_SYNTAX (scm_ilength (args) == 1, s_expression, form);
9fbee57e
DH
1856 if (depth - 1 == 0)
1857 return scm_eval_car (args, env);
1858 else
1859 return scm_list_2 (tmp, iqq (SCM_CAR (args), env, depth - 1));
1860 }
a61f4e0c 1861 else if (scm_is_pair (tmp)
bc36d050 1862 && scm_is_eq (SCM_CAR (tmp), scm_sym_uq_splicing))
9fbee57e 1863 {
21628685
DH
1864 const SCM args = SCM_CDR (tmp);
1865 ASSERT_SYNTAX (scm_ilength (args) == 1, s_expression, form);
9fbee57e
DH
1866 if (depth - 1 == 0)
1867 {
21628685
DH
1868 const SCM list = scm_eval_car (args, env);
1869 const SCM rest = SCM_CDR (form);
1870 ASSERT_SYNTAX_2 (scm_ilength (list) >= 0,
1871 s_splicing, list, form);
9fbee57e
DH
1872 return scm_append (scm_list_2 (list, iqq (rest, env, depth)));
1873 }
1874 else
1875 return scm_cons (iqq (SCM_CAR (form), env, depth - 1),
1876 iqq (SCM_CDR (form), env, depth));
1877 }
1878 else
1879 return scm_cons (iqq (SCM_CAR (form), env, depth),
1880 iqq (SCM_CDR (form), env, depth));
1881 }
4057a3e0
MV
1882 else if (scm_is_vector (form))
1883 return scm_vector (iqq (scm_vector_to_list (form), env, depth));
9fbee57e
DH
1884 else
1885 return form;
1886}
1887
1888SCM
21628685 1889scm_m_quasiquote (SCM expr, SCM env)
9fbee57e 1890{
21628685
DH
1891 const SCM cdr_expr = SCM_CDR (expr);
1892 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
1893 ASSERT_SYNTAX (scm_ilength (cdr_expr) == 1, s_expression, expr);
1894 return iqq (SCM_CAR (cdr_expr), env, 1);
9fbee57e
DH
1895}
1896
1897
3b88ed2a 1898SCM_SYNTAX (s_quote, "quote", scm_i_makbimacro, scm_m_quote);
9fbee57e
DH
1899SCM_GLOBAL_SYMBOL (scm_sym_quote, s_quote);
1900
1901SCM
21628685 1902scm_m_quote (SCM expr, SCM env SCM_UNUSED)
9fbee57e 1903{
21628685
DH
1904 SCM quotee;
1905
1906 const SCM cdr_expr = SCM_CDR (expr);
1907 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
1908 ASSERT_SYNTAX (scm_ilength (cdr_expr) == 1, s_expression, expr);
1909 quotee = SCM_CAR (cdr_expr);
5fb64383 1910 if (is_self_quoting_p (quotee))
21628685 1911 return quotee;
e7313a9d 1912
21628685 1913 SCM_SETCAR (expr, SCM_IM_QUOTE);
e7313a9d 1914 SCM_SETCDR (expr, quotee);
21628685 1915 return expr;
9fbee57e
DH
1916}
1917
e7313a9d
DH
1918static SCM
1919unmemoize_quote (const SCM expr, const SCM env SCM_UNUSED)
1920{
1921 return scm_list_2 (scm_sym_quote, SCM_CDR (expr));
1922}
1923
9fbee57e
DH
1924
1925/* Will go into the RnRS module when Guile is factorized.
3b88ed2a 1926SCM_SYNTAX (s_set_x, "set!", scm_i_makbimacro, scm_m_set_x); */
9fbee57e
DH
1927static const char s_set_x[] = "set!";
1928SCM_GLOBAL_SYMBOL (scm_sym_set_x, s_set_x);
1929
1930SCM
82b3e2c6 1931scm_m_set_x (SCM expr, SCM env SCM_UNUSED)
9fbee57e 1932{
82b3e2c6 1933 SCM variable;
36245b66 1934 SCM new_variable;
82b3e2c6
DH
1935
1936 const SCM cdr_expr = SCM_CDR (expr);
1937 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
1938 ASSERT_SYNTAX (scm_ilength (cdr_expr) == 2, s_expression, expr);
1939 variable = SCM_CAR (cdr_expr);
36245b66
DH
1940
1941 /* Memoize the variable form. */
cc95e00a 1942 ASSERT_SYNTAX_2 (scm_is_symbol (variable), s_bad_variable, variable, expr);
36245b66 1943 new_variable = lookup_symbol (variable, env);
36245b66
DH
1944 /* Leave the memoization of unbound symbols to lazy memoization: */
1945 if (SCM_UNBNDP (new_variable))
1946 new_variable = variable;
82b3e2c6
DH
1947
1948 SCM_SETCAR (expr, SCM_IM_SET_X);
36245b66 1949 SCM_SETCAR (cdr_expr, new_variable);
82b3e2c6 1950 return expr;
9fbee57e
DH
1951}
1952
212e58ed
DH
1953static SCM
1954unmemoize_set_x (const SCM expr, const SCM env)
1955{
1956 return scm_cons (scm_sym_set_x, unmemoize_exprs (SCM_CDR (expr), env));
1957}
1958
9fbee57e
DH
1959
1960/* Start of the memoizers for non-R5RS builtin macros. */
1961
1962
3b88ed2a 1963SCM_SYNTAX (s_atapply, "@apply", scm_i_makbimacro, scm_m_apply);
9fbee57e
DH
1964SCM_GLOBAL_SYMBOL (scm_sym_atapply, s_atapply);
1965SCM_GLOBAL_SYMBOL (scm_sym_apply, s_atapply + 1);
1966
1967SCM
82b3e2c6 1968scm_m_apply (SCM expr, SCM env SCM_UNUSED)
9fbee57e 1969{
82b3e2c6
DH
1970 const SCM cdr_expr = SCM_CDR (expr);
1971 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
1972 ASSERT_SYNTAX (scm_ilength (cdr_expr) == 2, s_missing_expression, expr);
2e171178 1973
82b3e2c6
DH
1974 SCM_SETCAR (expr, SCM_IM_APPLY);
1975 return expr;
1976}
2e171178 1977
212e58ed
DH
1978static SCM
1979unmemoize_apply (const SCM expr, const SCM env)
1980{
1981 return scm_list_2 (scm_sym_atapply, unmemoize_exprs (SCM_CDR (expr), env));
1982}
1983
2e171178 1984
3b88ed2a 1985SCM_SYNTAX (s_atbind, "@bind", scm_i_makbimacro, scm_m_atbind);
73b64342 1986
82b3e2c6
DH
1987/* FIXME: The following explanation should go into the documentation: */
1988/* (@bind ((var init) ...) body ...) will assign the values of the `init's to
1989 * the global variables named by `var's (symbols, not evaluated), creating
1990 * them if they don't exist, executes body, and then restores the previous
1991 * values of the `var's. Additionally, whenever control leaves body, the
1992 * values of the `var's are saved and restored when control returns. It is an
1993 * error when a symbol appears more than once among the `var's. All `init's
1994 * are evaluated before any `var' is set.
1995 *
1996 * Think of this as `let' for dynamic scope.
1997 */
1998
1999/* (@bind ((var1 exp1) ... (varn expn)) body ...) is memoized into
2000 * (#@bind ((varn ... var1) . (exp1 ... expn)) body ...).
2001 *
2002 * FIXME - also implement `@bind*'.
2003 */
73b64342 2004SCM
82b3e2c6 2005scm_m_atbind (SCM expr, SCM env)
73b64342 2006{
82b3e2c6
DH
2007 SCM bindings;
2008 SCM rvariables;
2009 SCM inits;
2010 SCM variable_idx;
2e171178 2011
82b3e2c6 2012 const SCM top_level = scm_env_top_level (env);
73b64342 2013
82b3e2c6
DH
2014 const SCM cdr_expr = SCM_CDR (expr);
2015 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
2016 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 2, s_missing_expression, expr);
2017 bindings = SCM_CAR (cdr_expr);
2018 check_bindings (bindings, expr);
2019 transform_bindings (bindings, expr, &rvariables, &inits);
2020
2021 for (variable_idx = rvariables;
a61f4e0c 2022 !scm_is_null (variable_idx);
82b3e2c6 2023 variable_idx = SCM_CDR (variable_idx))
73b64342 2024 {
82b3e2c6
DH
2025 /* The first call to scm_sym2var will look beyond the current module,
2026 * while the second call wont. */
2027 const SCM variable = SCM_CAR (variable_idx);
2028 SCM new_variable = scm_sym2var (variable, top_level, SCM_BOOL_F);
7888309b 2029 if (scm_is_false (new_variable))
82b3e2c6
DH
2030 new_variable = scm_sym2var (variable, top_level, SCM_BOOL_T);
2031 SCM_SETCAR (variable_idx, new_variable);
73b64342 2032 }
82b3e2c6
DH
2033
2034 SCM_SETCAR (expr, SCM_IM_BIND);
2035 SCM_SETCAR (cdr_expr, scm_cons (rvariables, inits));
2036 return expr;
73b64342 2037}
73b64342 2038
b0c5d67b 2039
3b88ed2a 2040SCM_SYNTAX(s_atcall_cc, "@call-with-current-continuation", scm_i_makbimacro, scm_m_cont);
9fbee57e
DH
2041SCM_GLOBAL_SYMBOL(scm_sym_atcall_cc, s_atcall_cc);
2042
9fbee57e 2043SCM
da48db62 2044scm_m_cont (SCM expr, SCM env SCM_UNUSED)
b0c5d67b 2045{
da48db62
DH
2046 const SCM cdr_expr = SCM_CDR (expr);
2047 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
2048 ASSERT_SYNTAX (scm_ilength (cdr_expr) == 1, s_expression, expr);
2049
2050 SCM_SETCAR (expr, SCM_IM_CONT);
2051 return expr;
b0c5d67b 2052}
b0c5d67b 2053
212e58ed
DH
2054static SCM
2055unmemoize_atcall_cc (const SCM expr, const SCM env)
2056{
2057 return scm_list_2 (scm_sym_atcall_cc, unmemoize_exprs (SCM_CDR (expr), env));
2058}
2059
b0c5d67b 2060
3b88ed2a 2061SCM_SYNTAX (s_at_call_with_values, "@call-with-values", scm_i_makbimacro, scm_m_at_call_with_values);
9fbee57e 2062SCM_GLOBAL_SYMBOL(scm_sym_at_call_with_values, s_at_call_with_values);
b0c5d67b
DH
2063
2064SCM
da48db62 2065scm_m_at_call_with_values (SCM expr, SCM env SCM_UNUSED)
b0c5d67b 2066{
da48db62
DH
2067 const SCM cdr_expr = SCM_CDR (expr);
2068 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
2069 ASSERT_SYNTAX (scm_ilength (cdr_expr) == 2, s_expression, expr);
2070
2071 SCM_SETCAR (expr, SCM_IM_CALL_WITH_VALUES);
2072 return expr;
b0c5d67b 2073}
b0c5d67b 2074
212e58ed
DH
2075static SCM
2076unmemoize_at_call_with_values (const SCM expr, const SCM env)
2077{
2078 return scm_list_2 (scm_sym_at_call_with_values,
2079 unmemoize_exprs (SCM_CDR (expr), env));
2080}
2081
b0c5d67b 2082
3b88ed2a 2083SCM_SYNTAX (s_future, "future", scm_i_makbimacro, scm_m_future);
9fbee57e 2084SCM_GLOBAL_SYMBOL (scm_sym_future, s_future);
a513ead3 2085
9fbee57e
DH
2086/* Like promises, futures are implemented as closures with an empty
2087 * parameter list. Thus, (future <expression>) is transformed into
2088 * (#@future '() <expression>), where the empty list represents the
2089 * empty parameter list. This representation allows for easy creation
2090 * of the closure during evaluation. */
a513ead3 2091SCM
8ae95199 2092scm_m_future (SCM expr, SCM env)
a513ead3 2093{
8ae95199
DH
2094 const SCM new_expr = memoize_as_thunk_prototype (expr, env);
2095 SCM_SETCAR (new_expr, SCM_IM_FUTURE);
2096 return new_expr;
a513ead3
MV
2097}
2098
212e58ed
DH
2099static SCM
2100unmemoize_future (const SCM expr, const SCM env)
2101{
2102 const SCM thunk_expr = SCM_CADDR (expr);
2103 return scm_list_2 (scm_sym_future, unmemoize_expression (thunk_expr, env));
2104}
2105
9fbee57e 2106
3b88ed2a 2107SCM_SYNTAX (s_gset_x, "set!", scm_i_makbimacro, scm_m_generalized_set_x);
9fbee57e
DH
2108SCM_SYMBOL (scm_sym_setter, "setter");
2109
2110SCM
7893dbbf 2111scm_m_generalized_set_x (SCM expr, SCM env)
9fbee57e 2112{
7893dbbf 2113 SCM target, exp_target;
da48db62
DH
2114
2115 const SCM cdr_expr = SCM_CDR (expr);
2116 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
2117 ASSERT_SYNTAX (scm_ilength (cdr_expr) == 2, s_expression, expr);
2118
2119 target = SCM_CAR (cdr_expr);
a61f4e0c 2120 if (!scm_is_pair (target))
da48db62
DH
2121 {
2122 /* R5RS usage */
2123 return scm_m_set_x (expr, env);
2124 }
9fbee57e 2125 else
da48db62
DH
2126 {
2127 /* (set! (foo bar ...) baz) becomes ((setter foo) bar ... baz) */
7893dbbf
MV
2128 /* Macroexpanding the target might return things of the form
2129 (begin <atom>). In that case, <atom> must be a symbol or a
2130 variable and we memoize to (set! <atom> ...).
2131 */
2b189e65 2132 exp_target = macroexp (target, env);
bc36d050 2133 if (scm_is_eq (SCM_CAR (exp_target), SCM_IM_BEGIN)
a61f4e0c
MV
2134 && !scm_is_null (SCM_CDR (exp_target))
2135 && scm_is_null (SCM_CDDR (exp_target)))
7893dbbf
MV
2136 {
2137 exp_target= SCM_CADR (exp_target);
cc95e00a 2138 ASSERT_SYNTAX_2 (scm_is_symbol (exp_target)
6d1a2e9f
MV
2139 || SCM_VARIABLEP (exp_target),
2140 s_bad_variable, exp_target, expr);
7893dbbf
MV
2141 return scm_cons (SCM_IM_SET_X, scm_cons (exp_target,
2142 SCM_CDR (cdr_expr)));
2143 }
2144 else
2145 {
2146 const SCM setter_proc_tail = scm_list_1 (SCM_CAR (target));
2147 const SCM setter_proc = scm_cons_source (expr, scm_sym_setter,
2148 setter_proc_tail);
da48db62 2149
7893dbbf
MV
2150 const SCM cddr_expr = SCM_CDR (cdr_expr);
2151 const SCM setter_args = scm_append_x (scm_list_2 (SCM_CDR (target),
2152 cddr_expr));
da48db62 2153
7893dbbf
MV
2154 SCM_SETCAR (expr, setter_proc);
2155 SCM_SETCDR (expr, setter_args);
2156 return expr;
2157 }
da48db62 2158 }
9fbee57e
DH
2159}
2160
2161
a4aa2134
DH
2162/* @slot-ref is bound privately in the (oop goops) module from goops.c. As
2163 * soon as the module system allows us to more freely create bindings in
2164 * arbitrary modules during the startup phase, the code from goops.c should be
2165 * moved here. */
212e58ed
DH
2166
2167SCM_SYMBOL (sym_atslot_ref, "@slot-ref");
2168
9fbee57e 2169SCM
9a848baf 2170scm_m_atslot_ref (SCM expr, SCM env SCM_UNUSED)
9fbee57e 2171{
9a848baf
DH
2172 SCM slot_nr;
2173
2174 const SCM cdr_expr = SCM_CDR (expr);
2175 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
2176 ASSERT_SYNTAX (scm_ilength (cdr_expr) == 2, s_expression, expr);
2177 slot_nr = SCM_CADR (cdr_expr);
e11e83f3 2178 ASSERT_SYNTAX_2 (SCM_I_INUMP (slot_nr), s_bad_slot_number, slot_nr, expr);
9fbee57e 2179
9a848baf 2180 SCM_SETCAR (expr, SCM_IM_SLOT_REF);
e7313a9d 2181 SCM_SETCDR (cdr_expr, slot_nr);
9a848baf
DH
2182 return expr;
2183}
9fbee57e 2184
212e58ed
DH
2185static SCM
2186unmemoize_atslot_ref (const SCM expr, const SCM env)
2187{
2188 const SCM instance = SCM_CADR (expr);
2189 const SCM um_instance = unmemoize_expression (instance, env);
2190 const SCM slot_nr = SCM_CDDR (expr);
2191 return scm_list_3 (sym_atslot_ref, um_instance, slot_nr);
2192}
2193
9fbee57e 2194
a4aa2134
DH
2195/* @slot-set! is bound privately in the (oop goops) module from goops.c. As
2196 * soon as the module system allows us to more freely create bindings in
2197 * arbitrary modules during the startup phase, the code from goops.c should be
2198 * moved here. */
212e58ed
DH
2199
2200SCM_SYMBOL (sym_atslot_set_x, "@slot-set!");
2201
9fbee57e 2202SCM
9a848baf 2203scm_m_atslot_set_x (SCM expr, SCM env SCM_UNUSED)
9fbee57e 2204{
9a848baf
DH
2205 SCM slot_nr;
2206
2207 const SCM cdr_expr = SCM_CDR (expr);
2208 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
2209 ASSERT_SYNTAX (scm_ilength (cdr_expr) == 3, s_expression, expr);
2210 slot_nr = SCM_CADR (cdr_expr);
e11e83f3 2211 ASSERT_SYNTAX_2 (SCM_I_INUMP (slot_nr), s_bad_slot_number, slot_nr, expr);
9a848baf
DH
2212
2213 SCM_SETCAR (expr, SCM_IM_SLOT_SET_X);
2214 return expr;
9fbee57e 2215}
9fbee57e 2216
212e58ed
DH
2217static SCM
2218unmemoize_atslot_set_x (const SCM expr, const SCM env)
2219{
2220 const SCM cdr_expr = SCM_CDR (expr);
2221 const SCM instance = SCM_CAR (cdr_expr);
2222 const SCM um_instance = unmemoize_expression (instance, env);
2223 const SCM cddr_expr = SCM_CDR (cdr_expr);
2224 const SCM slot_nr = SCM_CAR (cddr_expr);
2225 const SCM cdddr_expr = SCM_CDR (cddr_expr);
2226 const SCM value = SCM_CAR (cdddr_expr);
2227 const SCM um_value = unmemoize_expression (value, env);
2228 return scm_list_4 (sym_atslot_set_x, um_instance, slot_nr, um_value);
2229}
2230
9fbee57e
DH
2231
2232#if SCM_ENABLE_ELISP
2233
70c1c108
DH
2234static const char s_defun[] = "Symbol's function definition is void";
2235
3b88ed2a 2236SCM_SYNTAX (s_nil_cond, "nil-cond", scm_i_makbimacro, scm_m_nil_cond);
9fbee57e 2237
70c1c108
DH
2238/* nil-cond expressions have the form
2239 * (nil-cond COND VAL COND VAL ... ELSEVAL) */
9fbee57e 2240SCM
70c1c108 2241scm_m_nil_cond (SCM expr, SCM env SCM_UNUSED)
9fbee57e 2242{
70c1c108
DH
2243 const long length = scm_ilength (SCM_CDR (expr));
2244 ASSERT_SYNTAX (length >= 0, s_bad_expression, expr);
2245 ASSERT_SYNTAX (length >= 1 && (length % 2) == 1, s_expression, expr);
2246
2247 SCM_SETCAR (expr, SCM_IM_NIL_COND);
2248 return expr;
9fbee57e
DH
2249}
2250
2251
3b88ed2a 2252SCM_SYNTAX (s_atfop, "@fop", scm_i_makbimacro, scm_m_atfop);
9fbee57e 2253
70c1c108
DH
2254/* The @fop-macro handles procedure and macro applications for elisp. The
2255 * input expression must have the form
2256 * (@fop <var> (transformer-macro <expr> ...))
2257 * where <var> must be a symbol. The expression is transformed into the
2258 * memoized form of either
2259 * (apply <un-aliased var> (transformer-macro <expr> ...))
2260 * if the value of var (across all aliasing) is not a macro, or
2261 * (<un-aliased var> <expr> ...)
2262 * if var is a macro. */
9fbee57e 2263SCM
70c1c108 2264scm_m_atfop (SCM expr, SCM env SCM_UNUSED)
9fbee57e 2265{
70c1c108
DH
2266 SCM location;
2267 SCM symbol;
2268
2269 const SCM cdr_expr = SCM_CDR (expr);
2270 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
2271 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 1, s_missing_expression, expr);
2272
2273 symbol = SCM_CAR (cdr_expr);
cc95e00a 2274 ASSERT_SYNTAX_2 (scm_is_symbol (symbol), s_bad_variable, symbol, expr);
70c1c108
DH
2275
2276 location = scm_symbol_fref (symbol);
2277 ASSERT_SYNTAX_2 (SCM_VARIABLEP (location), s_defun, symbol, expr);
2278
2279 /* The elisp function `defalias' allows to define aliases for symbols. To
2280 * look up such definitions, the chain of symbol definitions has to be
2281 * followed up to the terminal symbol. */
cc95e00a 2282 while (scm_is_symbol (SCM_VARIABLE_REF (location)))
9fbee57e 2283 {
70c1c108
DH
2284 const SCM alias = SCM_VARIABLE_REF (location);
2285 location = scm_symbol_fref (alias);
2286 ASSERT_SYNTAX_2 (SCM_VARIABLEP (location), s_defun, symbol, expr);
9fbee57e 2287 }
70c1c108
DH
2288
2289 /* Memoize the value location belonging to the terminal symbol. */
2290 SCM_SETCAR (cdr_expr, location);
2291
2292 if (!SCM_MACROP (SCM_VARIABLE_REF (location)))
9fbee57e 2293 {
70c1c108
DH
2294 /* Since the location does not contain a macro, the form is a procedure
2295 * application. Replace `@fop' by `@apply' and transform the expression
2296 * including the `transformer-macro'. */
2297 SCM_SETCAR (expr, SCM_IM_APPLY);
2298 return expr;
2299 }
2300 else
2301 {
2302 /* Since the location contains a macro, the arguments should not be
2303 * transformed, so the `transformer-macro' is cut out. The resulting
2304 * expression starts with the memoized variable, that is at the cdr of
2305 * the input expression. */
2306 SCM_SETCDR (cdr_expr, SCM_CDADR (cdr_expr));
2307 return cdr_expr;
9fbee57e 2308 }
9fbee57e
DH
2309}
2310
2311#endif /* SCM_ENABLE_ELISP */
2312
2313
212e58ed
DH
2314static SCM
2315unmemoize_builtin_macro (const SCM expr, const SCM env)
2316{
2317 switch (ISYMNUM (SCM_CAR (expr)))
2318 {
2319 case (ISYMNUM (SCM_IM_AND)):
2320 return unmemoize_and (expr, env);
2321
2322 case (ISYMNUM (SCM_IM_BEGIN)):
2323 return unmemoize_begin (expr, env);
2324
2325 case (ISYMNUM (SCM_IM_CASE)):
2326 return unmemoize_case (expr, env);
2327
2328 case (ISYMNUM (SCM_IM_COND)):
2329 return unmemoize_cond (expr, env);
2330
2331 case (ISYMNUM (SCM_IM_DELAY)):
2332 return unmemoize_delay (expr, env);
2333
2334 case (ISYMNUM (SCM_IM_DO)):
2335 return unmemoize_do (expr, env);
2336
2337 case (ISYMNUM (SCM_IM_IF)):
2338 return unmemoize_if (expr, env);
2339
2340 case (ISYMNUM (SCM_IM_LAMBDA)):
2341 return unmemoize_lambda (expr, env);
2342
2343 case (ISYMNUM (SCM_IM_LET)):
2344 return unmemoize_let (expr, env);
2345
2346 case (ISYMNUM (SCM_IM_LETREC)):
2347 return unmemoize_letrec (expr, env);
2348
2349 case (ISYMNUM (SCM_IM_LETSTAR)):
2350 return unmemoize_letstar (expr, env);
2351
2352 case (ISYMNUM (SCM_IM_OR)):
2353 return unmemoize_or (expr, env);
2354
2355 case (ISYMNUM (SCM_IM_QUOTE)):
2356 return unmemoize_quote (expr, env);
2357
2358 case (ISYMNUM (SCM_IM_SET_X)):
2359 return unmemoize_set_x (expr, env);
2360
2361 case (ISYMNUM (SCM_IM_APPLY)):
2362 return unmemoize_apply (expr, env);
2363
2364 case (ISYMNUM (SCM_IM_BIND)):
2365 return unmemoize_exprs (expr, env); /* FIXME */
2366
2367 case (ISYMNUM (SCM_IM_CONT)):
2368 return unmemoize_atcall_cc (expr, env);
2369
2370 case (ISYMNUM (SCM_IM_CALL_WITH_VALUES)):
2371 return unmemoize_at_call_with_values (expr, env);
2372
2373 case (ISYMNUM (SCM_IM_FUTURE)):
2374 return unmemoize_future (expr, env);
2375
2376 case (ISYMNUM (SCM_IM_SLOT_REF)):
2377 return unmemoize_atslot_ref (expr, env);
2378
2379 case (ISYMNUM (SCM_IM_SLOT_SET_X)):
2380 return unmemoize_atslot_set_x (expr, env);
2381
2382 case (ISYMNUM (SCM_IM_NIL_COND)):
2383 return unmemoize_exprs (expr, env); /* FIXME */
2384
2385 default:
2386 return unmemoize_exprs (expr, env); /* FIXME */
2387 }
2388}
2389
2390
9fcf3cbb
DH
2391/* scm_i_unmemocopy_expr and scm_i_unmemocopy_body take a memoized expression
2392 * respectively a memoized body together with its environment and rewrite it
2393 * to its original form. Thus, these functions are the inversion of the
2394 * rewrite rules above. The procedure is not optimized for speed. It's used
2395 * in scm_i_unmemoize_expr, scm_procedure_source, macro_print and scm_iprin1.
212e58ed
DH
2396 *
2397 * Unmemoizing is not a reliable process. You cannot in general expect to get
2398 * the original source back.
2399 *
2400 * However, GOOPS currently relies on this for method compilation. This ought
2401 * to change. */
2402
2403SCM
9fcf3cbb
DH
2404scm_i_unmemocopy_expr (SCM expr, SCM env)
2405{
2406 const SCM source_properties = scm_whash_lookup (scm_source_whash, expr);
2407 const SCM um_expr = unmemoize_expression (expr, env);
2408
7888309b 2409 if (scm_is_true (source_properties))
9fcf3cbb
DH
2410 scm_whash_insert (scm_source_whash, um_expr, source_properties);
2411
2412 return um_expr;
2413}
2414
2415SCM
2416scm_i_unmemocopy_body (SCM forms, SCM env)
212e58ed
DH
2417{
2418 const SCM source_properties = scm_whash_lookup (scm_source_whash, forms);
2419 const SCM um_forms = unmemoize_exprs (forms, env);
2420
7888309b 2421 if (scm_is_true (source_properties))
212e58ed
DH
2422 scm_whash_insert (scm_source_whash, um_forms, source_properties);
2423
2424 return um_forms;
2425}
2426
2427
434f2f7a 2428#if (SCM_ENABLE_DEPRECATED == 1)
f58c472a 2429
434f2f7a
DH
2430/* Deprecated in guile 1.7.0 on 2003-11-09. */
2431SCM
2432scm_m_expand_body (SCM exprs, SCM env)
2433{
2434 scm_c_issue_deprecation_warning
2435 ("`scm_m_expand_body' is deprecated.");
2436 m_expand_body (exprs, env);
2437 return exprs;
2438}
f58c472a 2439
f58c472a
DH
2440
2441SCM_SYNTAX (s_undefine, "undefine", scm_makacro, scm_m_undefine);
2442
2443SCM
70c1c108 2444scm_m_undefine (SCM expr, SCM env)
f58c472a 2445{
70c1c108
DH
2446 SCM variable;
2447 SCM location;
2448
2449 const SCM cdr_expr = SCM_CDR (expr);
2450 ASSERT_SYNTAX (SCM_TOP_LEVEL (env), "Bad undefine placement in", expr);
2451 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
2452 ASSERT_SYNTAX (scm_ilength (cdr_expr) == 1, s_expression, expr);
2453
2b189e65
MV
2454 scm_c_issue_deprecation_warning
2455 ("`undefine' is deprecated.\n");
2456
70c1c108 2457 variable = SCM_CAR (cdr_expr);
cc95e00a 2458 ASSERT_SYNTAX_2 (scm_is_symbol (variable), s_bad_variable, variable, expr);
70c1c108 2459 location = scm_sym2var (variable, scm_env_top_level (env), SCM_BOOL_F);
7888309b 2460 ASSERT_SYNTAX_2 (scm_is_true (location)
70c1c108
DH
2461 && !SCM_UNBNDP (SCM_VARIABLE_REF (location)),
2462 "variable already unbound ", variable, expr);
2463 SCM_VARIABLE_SET (location, SCM_UNDEFINED);
f58c472a 2464 return SCM_UNSPECIFIED;
f58c472a
DH
2465}
2466
26d5b9b4
MD
2467SCM
2468scm_macroexp (SCM x, SCM env)
2469{
2b189e65
MV
2470 scm_c_issue_deprecation_warning
2471 ("`scm_macroexp' is deprecated.");
2472 return macroexp (x, env);
26d5b9b4 2473}
73b64342 2474
6f81708a
DH
2475#endif
2476
60a49842 2477
212e58ed 2478#if (SCM_ENABLE_DEPRECATED == 1)
26d5b9b4 2479
212e58ed
DH
2480SCM
2481scm_unmemocar (SCM form, SCM env)
8ea46249 2482{
212e58ed
DH
2483 scm_c_issue_deprecation_warning
2484 ("`scm_unmemocar' is deprecated.");
60a49842 2485
a61f4e0c 2486 if (!scm_is_pair (form))
60a49842
DH
2487 return form;
2488 else
2489 {
2490 SCM c = SCM_CAR (form);
2491 if (SCM_VARIABLEP (c))
2492 {
2493 SCM sym = scm_module_reverse_lookup (scm_env_module (env), c);
7888309b 2494 if (scm_is_false (sym))
60a49842
DH
2495 sym = sym_three_question_marks;
2496 SCM_SETCAR (form, sym);
2497 }
2498 else if (SCM_ILOCP (c))
2499 {
2500 unsigned long int ir;
2501
2502 for (ir = SCM_IFRAME (c); ir != 0; --ir)
2503 env = SCM_CDR (env);
2504 env = SCM_CAAR (env);
2505 for (ir = SCM_IDIST (c); ir != 0; --ir)
2506 env = SCM_CDR (env);
f62b9dff 2507
60a49842
DH
2508 SCM_SETCAR (form, SCM_ICDRP (c) ? env : SCM_CAR (env));
2509 }
2510 return form;
2511 }
2512}
2513
434f2f7a
DH
2514#endif
2515
6f81708a
DH
2516/*****************************************************************************/
2517/*****************************************************************************/
2518/* The definitions for execution start here. */
2519/*****************************************************************************/
2520/*****************************************************************************/
2521
2522SCM_GLOBAL_SYMBOL (scm_sym_enter_frame, "enter-frame");
2523SCM_GLOBAL_SYMBOL (scm_sym_apply_frame, "apply-frame");
2524SCM_GLOBAL_SYMBOL (scm_sym_exit_frame, "exit-frame");
2525SCM_GLOBAL_SYMBOL (scm_sym_trace, "trace");
2526
2527/* A function object to implement "apply" for non-closure functions. */
2528static SCM f_apply;
2529/* An endless list consisting of #<undefined> objects: */
2530static SCM undefineds;
2531
2532
2533int
6e8d25a6 2534scm_badargsp (SCM formals, SCM args)
0f2d19dd 2535{
a61f4e0c 2536 while (!scm_is_null (formals))
0f2d19dd 2537 {
a61f4e0c 2538 if (!scm_is_pair (formals))
ff467021 2539 return 0;
a61f4e0c 2540 if (scm_is_null (args))
ff467021 2541 return 1;
0f2d19dd
JB
2542 formals = SCM_CDR (formals);
2543 args = SCM_CDR (args);
2544 }
a61f4e0c 2545 return !scm_is_null (args) ? 1 : 0;
0f2d19dd 2546}
a392ee15 2547
0f2d19dd 2548\f
62360b89 2549
434f2f7a
DH
2550/* The evaluator contains a plethora of EVAL symbols. This is an attempt at
2551 * explanation.
62360b89 2552 *
434f2f7a
DH
2553 * The following macros should be used in code which is read twice (where the
2554 * choice of evaluator is hard soldered):
62360b89 2555 *
434f2f7a
DH
2556 * CEVAL is the symbol used within one evaluator to call itself.
2557 * Originally, it is defined to ceval, but is redefined to deval during the
2558 * second pass.
62360b89 2559 *
385609b9 2560 * SCM_I_EVALIM is used when it is known that the expression is an
62360b89 2561 * immediate. (This macro never calls an evaluator.)
434f2f7a
DH
2562 *
2563 * EVAL evaluates an expression that is expected to have its symbols already
2564 * memoized. Expressions that are not of the form '(<form> <form> ...)' are
2565 * evaluated inline without calling an evaluator.
2566 *
2567 * EVALCAR evaluates the car of an expression 'X:(Y:<form> <form> ...)',
2568 * potentially replacing a symbol at the position Y:<form> by its memoized
2569 * variable. If Y:<form> is not of the form '(<form> <form> ...)', the
2570 * evaluation is performed inline without calling an evaluator.
62360b89
DH
2571 *
2572 * The following macros should be used in code which is read once
2573 * (where the choice of evaluator is dynamic):
2574 *
385609b9 2575 * SCM_I_XEVAL corresponds to EVAL, but uses ceval *or* deval depending on the
434f2f7a 2576 * debugging mode.
62360b89 2577 *
385609b9 2578 * SCM_I_XEVALCAR corresponds to EVALCAR, but uses ceval *or* deval depending
434f2f7a 2579 * on the debugging mode.
62360b89
DH
2580 *
2581 * The main motivation for keeping this plethora is efficiency
2582 * together with maintainability (=> locality of code).
2583 */
2584
434f2f7a
DH
2585static SCM ceval (SCM x, SCM env);
2586static SCM deval (SCM x, SCM env);
2587#define CEVAL ceval
2588
62360b89 2589
385609b9 2590#define SCM_I_EVALIM2(x) \
bc36d050 2591 ((scm_is_eq ((x), SCM_EOL) \
62360b89
DH
2592 ? syntax_error (s_empty_combination, (x), SCM_UNDEFINED), 0 \
2593 : 0), \
2594 (x))
2595
385609b9 2596#define SCM_I_EVALIM(x, env) (SCM_ILOCP (x) \
434f2f7a 2597 ? *scm_ilookup ((x), (env)) \
385609b9 2598 : SCM_I_EVALIM2(x))
62360b89 2599
385609b9 2600#define SCM_I_XEVAL(x, env) \
434f2f7a 2601 (SCM_IMP (x) \
385609b9 2602 ? SCM_I_EVALIM2 (x) \
434f2f7a
DH
2603 : (SCM_VARIABLEP (x) \
2604 ? SCM_VARIABLE_REF (x) \
a61f4e0c 2605 : (scm_is_pair (x) \
434f2f7a
DH
2606 ? (scm_debug_mode_p \
2607 ? deval ((x), (env)) \
2608 : ceval ((x), (env))) \
2609 : (x))))
2610
385609b9 2611#define SCM_I_XEVALCAR(x, env) \
434f2f7a 2612 (SCM_IMP (SCM_CAR (x)) \
385609b9 2613 ? SCM_I_EVALIM (SCM_CAR (x), (env)) \
434f2f7a
DH
2614 : (SCM_VARIABLEP (SCM_CAR (x)) \
2615 ? SCM_VARIABLE_REF (SCM_CAR (x)) \
a61f4e0c 2616 : (scm_is_pair (SCM_CAR (x)) \
434f2f7a
DH
2617 ? (scm_debug_mode_p \
2618 ? deval (SCM_CAR (x), (env)) \
2619 : ceval (SCM_CAR (x), (env))) \
cc95e00a 2620 : (!scm_is_symbol (SCM_CAR (x)) \
434f2f7a
DH
2621 ? SCM_CAR (x) \
2622 : *scm_lookupcar ((x), (env), 1)))))
2623
2624#define EVAL(x, env) \
2625 (SCM_IMP (x) \
385609b9 2626 ? SCM_I_EVALIM ((x), (env)) \
434f2f7a
DH
2627 : (SCM_VARIABLEP (x) \
2628 ? SCM_VARIABLE_REF (x) \
a61f4e0c 2629 : (scm_is_pair (x) \
434f2f7a
DH
2630 ? CEVAL ((x), (env)) \
2631 : (x))))
2632
2633#define EVALCAR(x, env) \
2634 (SCM_IMP (SCM_CAR (x)) \
385609b9 2635 ? SCM_I_EVALIM (SCM_CAR (x), (env)) \
434f2f7a
DH
2636 : (SCM_VARIABLEP (SCM_CAR (x)) \
2637 ? SCM_VARIABLE_REF (SCM_CAR (x)) \
a61f4e0c 2638 : (scm_is_pair (SCM_CAR (x)) \
434f2f7a 2639 ? CEVAL (SCM_CAR (x), (env)) \
cc95e00a 2640 : (!scm_is_symbol (SCM_CAR (x)) \
434f2f7a
DH
2641 ? SCM_CAR (x) \
2642 : *scm_lookupcar ((x), (env), 1)))))
62360b89 2643
76da80e7 2644SCM_REC_MUTEX (source_mutex);
62360b89
DH
2645
2646
e5156567
DH
2647/* Lookup a given local variable in an environment. The local variable is
2648 * given as an iloc, that is a triple <frame, binding, last?>, where frame
2649 * indicates the relative number of the environment frame (counting upwards
2650 * from the innermost environment frame), binding indicates the number of the
2651 * binding within the frame, and last? (which is extracted from the iloc using
2652 * the macro SCM_ICDRP) indicates whether the binding forms the binding at the
2653 * very end of the improper list of bindings. */
2654SCM *
2655scm_ilookup (SCM iloc, SCM env)
2656{
2657 unsigned int frame_nr = SCM_IFRAME (iloc);
2658 unsigned int binding_nr = SCM_IDIST (iloc);
2659 SCM frames = env;
2660 SCM bindings;
2661
2662 for (; 0 != frame_nr; --frame_nr)
2663 frames = SCM_CDR (frames);
2664
2665 bindings = SCM_CAR (frames);
2666 for (; 0 != binding_nr; --binding_nr)
2667 bindings = SCM_CDR (bindings);
2668
2669 if (SCM_ICDRP (iloc))
2670 return SCM_CDRLOC (bindings);
2671 return SCM_CARLOC (SCM_CDR (bindings));
2672}
2673
2674
2675SCM_SYMBOL (scm_unbound_variable_key, "unbound-variable");
2676
2677static void error_unbound_variable (SCM symbol) SCM_NORETURN;
2d0c133f
MV
2678static void error_defined_variable (SCM symbol) SCM_NORETURN;
2679
2680/* Call this for variables that are unfound.
2681 */
e5156567
DH
2682static void
2683error_unbound_variable (SCM symbol)
2684{
2685 scm_error (scm_unbound_variable_key, NULL,
2686 "Unbound variable: ~S",
2687 scm_list_1 (symbol), SCM_BOOL_F);
2688}
2689
2d0c133f
MV
2690/* Call this for variables that are found but contain SCM_UNDEFINED.
2691 */
2692static void
2693error_defined_variable (SCM symbol)
2694{
2695 /* We use the 'unbound-variable' key here as well, since it
2696 basically is the same kind of error, with a slight variation in
2697 the displayed message.
2698 */
2699 scm_error (scm_unbound_variable_key, NULL,
a03bad87 2700 "Variable used before given a value: ~S",
2d0c133f
MV
2701 scm_list_1 (symbol), SCM_BOOL_F);
2702}
2703
e5156567
DH
2704
2705/* The Lookup Car Race
2706 - by Eva Luator
2707
2708 Memoization of variables and special forms is done while executing
2709 the code for the first time. As long as there is only one thread
2710 everything is fine, but as soon as two threads execute the same
2711 code concurrently `for the first time' they can come into conflict.
2712
2713 This memoization includes rewriting variable references into more
2714 efficient forms and expanding macros. Furthermore, macro expansion
2715 includes `compiling' special forms like `let', `cond', etc. into
2716 tree-code instructions.
2717
2718 There shouldn't normally be a problem with memoizing local and
2719 global variable references (into ilocs and variables), because all
2720 threads will mutate the code in *exactly* the same way and (if I
2721 read the C code correctly) it is not possible to observe a half-way
2722 mutated cons cell. The lookup procedure can handle this
2723 transparently without any critical sections.
2724
2725 It is different with macro expansion, because macro expansion
2726 happens outside of the lookup procedure and can't be
2727 undone. Therefore the lookup procedure can't cope with it. It has
2728 to indicate failure when it detects a lost race and hope that the
2729 caller can handle it. Luckily, it turns out that this is the case.
2730
2731 An example to illustrate this: Suppose that the following form will
2732 be memoized concurrently by two threads
2733
2734 (let ((x 12)) x)
2735
2736 Let's first examine the lookup of X in the body. The first thread
2737 decides that it has to find the symbol "x" in the environment and
2738 starts to scan it. Then the other thread takes over and actually
2739 overtakes the first. It looks up "x" and substitutes an
2740 appropriate iloc for it. Now the first thread continues and
2741 completes its lookup. It comes to exactly the same conclusions as
2742 the second one and could - without much ado - just overwrite the
2743 iloc with the same iloc.
2744
2745 But let's see what will happen when the race occurs while looking
2746 up the symbol "let" at the start of the form. It could happen that
2747 the second thread interrupts the lookup of the first thread and not
2748 only substitutes a variable for it but goes right ahead and
2749 replaces it with the compiled form (#@let* (x 12) x). Now, when
2750 the first thread completes its lookup, it would replace the #@let*
2751 with a variable containing the "let" binding, effectively reverting
2752 the form to (let (x 12) x). This is wrong. It has to detect that
2753 it has lost the race and the evaluator has to reconsider the
2754 changed form completely.
2755
2756 This race condition could be resolved with some kind of traffic
2757 light (like mutexes) around scm_lookupcar, but I think that it is
2758 best to avoid them in this case. They would serialize memoization
2759 completely and because lookup involves calling arbitrary Scheme
2760 code (via the lookup-thunk), threads could be blocked for an
2761 arbitrary amount of time or even deadlock. But with the current
2762 solution a lot of unnecessary work is potentially done. */
2763
2764/* SCM_LOOKUPCAR1 is what SCM_LOOKUPCAR used to be but is allowed to
2765 return NULL to indicate a failed lookup due to some race conditions
2766 between threads. This only happens when VLOC is the first cell of
2767 a special form that will eventually be memoized (like `let', etc.)
2768 In that case the whole lookup is bogus and the caller has to
2769 reconsider the complete special form.
2770
2771 SCM_LOOKUPCAR is still there, of course. It just calls
2772 SCM_LOOKUPCAR1 and aborts on receiving NULL. So SCM_LOOKUPCAR
2773 should only be called when it is known that VLOC is not the first
2774 pair of a special form. Otherwise, use SCM_LOOKUPCAR1 and check
2775 for NULL. I think I've found the only places where this
2776 applies. */
2777
2778static SCM *
2779scm_lookupcar1 (SCM vloc, SCM genv, int check)
2780{
2781 SCM env = genv;
2782 register SCM *al, fl, var = SCM_CAR (vloc);
2783 register SCM iloc = SCM_ILOC00;
2784 for (; SCM_NIMP (env); env = SCM_CDR (env))
2785 {
a61f4e0c 2786 if (!scm_is_pair (SCM_CAR (env)))
e5156567
DH
2787 break;
2788 al = SCM_CARLOC (env);
2789 for (fl = SCM_CAR (*al); SCM_NIMP (fl); fl = SCM_CDR (fl))
2790 {
a61f4e0c 2791 if (!scm_is_pair (fl))
e5156567 2792 {
bc36d050 2793 if (scm_is_eq (fl, var))
e5156567 2794 {
bc36d050 2795 if (!scm_is_eq (SCM_CAR (vloc), var))
e5156567
DH
2796 goto race;
2797 SCM_SET_CELL_WORD_0 (vloc, SCM_UNPACK (iloc) + SCM_ICDR);
2798 return SCM_CDRLOC (*al);
2799 }
2800 else
2801 break;
2802 }
2803 al = SCM_CDRLOC (*al);
bc36d050 2804 if (scm_is_eq (SCM_CAR (fl), var))
e5156567
DH
2805 {
2806 if (SCM_UNBNDP (SCM_CAR (*al)))
2d0c133f 2807 error_defined_variable (var);
bc36d050 2808 if (!scm_is_eq (SCM_CAR (vloc), var))
e5156567
DH
2809 goto race;
2810 SCM_SETCAR (vloc, iloc);
2811 return SCM_CARLOC (*al);
2812 }
2813 iloc = SCM_PACK (SCM_UNPACK (iloc) + SCM_IDINC);
2814 }
2815 iloc = SCM_PACK ((~SCM_IDSTMSK) & (SCM_UNPACK(iloc) + SCM_IFRINC));
2816 }
2817 {
2818 SCM top_thunk, real_var;
2819 if (SCM_NIMP (env))
2820 {
2821 top_thunk = SCM_CAR (env); /* env now refers to a
2822 top level env thunk */
2823 env = SCM_CDR (env);
2824 }
2825 else
2826 top_thunk = SCM_BOOL_F;
2827 real_var = scm_sym2var (var, top_thunk, SCM_BOOL_F);
7888309b 2828 if (scm_is_false (real_var))
e5156567
DH
2829 goto errout;
2830
a61f4e0c 2831 if (!scm_is_null (env) || SCM_UNBNDP (SCM_VARIABLE_REF (real_var)))
e5156567
DH
2832 {
2833 errout:
2834 if (check)
2835 {
a61f4e0c 2836 if (scm_is_null (env))
e5156567
DH
2837 error_unbound_variable (var);
2838 else
2839 scm_misc_error (NULL, "Damaged environment: ~S",
2840 scm_list_1 (var));
2841 }
2842 else
2843 {
2844 /* A variable could not be found, but we shall
2845 not throw an error. */
2846 static SCM undef_object = SCM_UNDEFINED;
2847 return &undef_object;
2848 }
2849 }
2850
bc36d050 2851 if (!scm_is_eq (SCM_CAR (vloc), var))
e5156567
DH
2852 {
2853 /* Some other thread has changed the very cell we are working
2854 on. In effect, it must have done our job or messed it up
2855 completely. */
2856 race:
2857 var = SCM_CAR (vloc);
2858 if (SCM_VARIABLEP (var))
2859 return SCM_VARIABLE_LOC (var);
2860 if (SCM_ILOCP (var))
2861 return scm_ilookup (var, genv);
2862 /* We can't cope with anything else than variables and ilocs. When
2863 a special form has been memoized (i.e. `let' into `#@let') we
2864 return NULL and expect the calling function to do the right
2865 thing. For the evaluator, this means going back and redoing
2866 the dispatch on the car of the form. */
2867 return NULL;
2868 }
2869
2870 SCM_SETCAR (vloc, real_var);
2871 return SCM_VARIABLE_LOC (real_var);
2872 }
2873}
2874
2875SCM *
2876scm_lookupcar (SCM vloc, SCM genv, int check)
2877{
2878 SCM *loc = scm_lookupcar1 (vloc, genv, check);
2879 if (loc == NULL)
2880 abort ();
2881 return loc;
2882}
2883
2884
36245b66
DH
2885/* During execution, look up a symbol in the top level of the given local
2886 * environment and return the corresponding variable object. If no binding
2887 * for the symbol can be found, an 'Unbound variable' error is signalled. */
2888static SCM
2889lazy_memoize_variable (const SCM symbol, const SCM environment)
2890{
2891 const SCM top_level = scm_env_top_level (environment);
2892 const SCM variable = scm_sym2var (symbol, top_level, SCM_BOOL_F);
2893
7888309b 2894 if (scm_is_false (variable))
36245b66
DH
2895 error_unbound_variable (symbol);
2896 else
2897 return variable;
2898}
2899
2900
62360b89
DH
2901SCM
2902scm_eval_car (SCM pair, SCM env)
2903{
385609b9 2904 return SCM_I_XEVALCAR (pair, env);
62360b89
DH
2905}
2906
2907
6dbd0af5 2908SCM
6e8d25a6 2909scm_eval_args (SCM l, SCM env, SCM proc)
6dbd0af5 2910{
680ed4a8 2911 SCM results = SCM_EOL, *lloc = &results, res;
a61f4e0c 2912 while (scm_is_pair (l))
6dbd0af5 2913 {
680ed4a8 2914 res = EVALCAR (l, env);
904a077d 2915
8ea46249 2916 *lloc = scm_list_1 (res);
a23afe53 2917 lloc = SCM_CDRLOC (*lloc);
6dbd0af5
MD
2918 l = SCM_CDR (l);
2919 }
a61f4e0c 2920 if (!scm_is_null (l))
904a077d 2921 scm_wrong_num_args (proc);
680ed4a8 2922 return results;
6dbd0af5 2923}
c4ac4d88 2924
d0b07b5d 2925
9de33deb
MD
2926SCM
2927scm_eval_body (SCM code, SCM env)
2928{
2929 SCM next;
434f2f7a 2930
9de33deb 2931 again:
01f11e02 2932 next = SCM_CDR (code);
a61f4e0c 2933 while (!scm_is_null (next))
9de33deb
MD
2934 {
2935 if (SCM_IMP (SCM_CAR (code)))
2936 {
2937 if (SCM_ISYMP (SCM_CAR (code)))
2938 {
76da80e7 2939 scm_rec_mutex_lock (&source_mutex);
9bc4701c
MD
2940 /* check for race condition */
2941 if (SCM_ISYMP (SCM_CAR (code)))
9d4bf6d3 2942 m_expand_body (code, env);
76da80e7 2943 scm_rec_mutex_unlock (&source_mutex);
9de33deb
MD
2944 goto again;
2945 }
2946 }
2947 else
385609b9 2948 SCM_I_XEVAL (SCM_CAR (code), env);
9de33deb 2949 code = next;
01f11e02 2950 next = SCM_CDR (code);
9de33deb 2951 }
385609b9 2952 return SCM_I_XEVALCAR (code, env);
9de33deb
MD
2953}
2954
0f2d19dd
JB
2955#endif /* !DEVAL */
2956
6dbd0af5
MD
2957
2958/* SECTION: This code is specific for the debugging support. One
2959 * branch is read when DEVAL isn't defined, the other when DEVAL is
2960 * defined.
2961 */
2962
2963#ifndef DEVAL
2964
2965#define SCM_APPLY scm_apply
2966#define PREP_APPLY(proc, args)
2967#define ENTER_APPLY
ddea3325 2968#define RETURN(x) do { return x; } while (0)
b7ff98dd
MD
2969#ifdef STACK_CHECKING
2970#ifndef NO_CEVAL_STACK_CHECKING
2971#define EVAL_STACK_CHECKING
2972#endif
6dbd0af5
MD
2973#endif
2974
2975#else /* !DEVAL */
2976
434f2f7a
DH
2977#undef CEVAL
2978#define CEVAL deval /* Substitute all uses of ceval */
2979
0f2d19dd
JB
2980#undef SCM_APPLY
2981#define SCM_APPLY scm_dapply
434f2f7a 2982
6dbd0af5
MD
2983#undef PREP_APPLY
2984#define PREP_APPLY(p, l) \
2985{ ++debug.info; debug.info->a.proc = p; debug.info->a.args = l; }
434f2f7a 2986
6dbd0af5
MD
2987#undef ENTER_APPLY
2988#define ENTER_APPLY \
d3a6bc94 2989do { \
b7ff98dd 2990 SCM_SET_ARGSREADY (debug);\
5132eef0 2991 if (scm_check_apply_p && SCM_TRAPS_P)\
b7ff98dd 2992 if (SCM_APPLY_FRAME_P || (SCM_TRACE_P && PROCTRACEP (proc)))\
6dbd0af5 2993 {\
7888309b 2994 SCM tmp, tail = scm_from_bool(SCM_TRACED_FRAME_P (debug)); \
c6a4fbce 2995 SCM_SET_TRACED_FRAME (debug); \
d95c0b76 2996 SCM_TRAPS_P = 0;\
b7ff98dd 2997 if (SCM_CHEAPTRAPS_P)\
6dbd0af5 2998 {\
c0ab1b8d 2999 tmp = scm_make_debugobj (&debug);\
d95c0b76 3000 scm_call_3 (SCM_APPLY_FRAME_HDLR, scm_sym_apply_frame, tmp, tail);\
b6d75948 3001 }\
6dbd0af5
MD
3002 else\
3003 {\
5f144b10
GH
3004 int first;\
3005 tmp = scm_make_continuation (&first);\
3006 if (first)\
d95c0b76 3007 scm_call_3 (SCM_APPLY_FRAME_HDLR, scm_sym_apply_frame, tmp, tail);\
6dbd0af5 3008 }\
d95c0b76 3009 SCM_TRAPS_P = 1;\
6dbd0af5 3010 }\
d3a6bc94 3011} while (0)
434f2f7a 3012
0f2d19dd 3013#undef RETURN
ddea3325 3014#define RETURN(e) do { proc = (e); goto exit; } while (0)
434f2f7a 3015
b7ff98dd
MD
3016#ifdef STACK_CHECKING
3017#ifndef EVAL_STACK_CHECKING
3018#define EVAL_STACK_CHECKING
3019#endif
6dbd0af5
MD
3020#endif
3021
0f2d19dd 3022
434f2f7a
DH
3023/* scm_last_debug_frame contains a pointer to the last debugging information
3024 * stack frame. It is accessed very often from the debugging evaluator, so it
3025 * should probably not be indirectly addressed. Better to save and restore it
3026 * from the current root at any stack swaps.
6dbd0af5
MD
3027 */
3028
6dbd0af5
MD
3029/* scm_debug_eframe_size is the number of slots available for pseudo
3030 * stack frames at each real stack frame.
3031 */
3032
c014a02e 3033long scm_debug_eframe_size;
6dbd0af5 3034
434f2f7a
DH
3035int scm_debug_mode_p;
3036int scm_check_entry_p;
3037int scm_check_apply_p;
3038int scm_check_exit_p;
6dbd0af5 3039
c014a02e 3040long scm_eval_stack;
a74145b8 3041
92c2555f 3042scm_t_option scm_eval_opts[] = {
a74145b8 3043 { SCM_OPTION_INTEGER, "stack", 22000, "Size of thread stacks (in machine words)." }
33b97402
MD
3044};
3045
92c2555f 3046scm_t_option scm_debug_opts[] = {
b7ff98dd
MD
3047 { SCM_OPTION_BOOLEAN, "cheap", 1,
3048 "*Flyweight representation of the stack at traps." },
3049 { SCM_OPTION_BOOLEAN, "breakpoints", 0, "*Check for breakpoints." },
3050 { SCM_OPTION_BOOLEAN, "trace", 0, "*Trace mode." },
3051 { SCM_OPTION_BOOLEAN, "procnames", 1,
3052 "Record procedure names at definition." },
3053 { SCM_OPTION_BOOLEAN, "backwards", 0,
3054 "Display backtrace in anti-chronological order." },
274dc5fd 3055 { SCM_OPTION_INTEGER, "width", 79, "Maximal width of backtrace." },
4e646a03
MD
3056 { SCM_OPTION_INTEGER, "indent", 10, "Maximal indentation in backtrace." },
3057 { SCM_OPTION_INTEGER, "frames", 3,
b7ff98dd 3058 "Maximum number of tail-recursive frames in backtrace." },
4e646a03
MD
3059 { SCM_OPTION_INTEGER, "maxdepth", 1000,
3060 "Maximal number of stored backtrace frames." },
3061 { SCM_OPTION_INTEGER, "depth", 20, "Maximal length of printed backtrace." },
11f77bfc
MD
3062 { SCM_OPTION_BOOLEAN, "backtrace", 0, "Show backtrace on error." },
3063 { SCM_OPTION_BOOLEAN, "debug", 0, "Use the debugging evaluator." },
863e833b 3064 { SCM_OPTION_INTEGER, "stack", 20000, "Stack size limit (measured in words; 0 = no check)." },
65bc1f7a
MV
3065 { SCM_OPTION_SCM, "show-file-name", (unsigned long)SCM_BOOL_T, "Show file names and line numbers in backtraces when not `#f'. A value of `base' displays only base names, while `#t' displays full names."},
3066 { SCM_OPTION_BOOLEAN, "warn-deprecated", 0, "Warn when deprecated features are used." }
6dbd0af5
MD
3067};
3068
92c2555f 3069scm_t_option scm_evaluator_trap_table[] = {
b6d75948 3070 { SCM_OPTION_BOOLEAN, "traps", 0, "Enable evaluator traps." },
b7ff98dd
MD
3071 { SCM_OPTION_BOOLEAN, "enter-frame", 0, "Trap when eval enters new frame." },
3072 { SCM_OPTION_BOOLEAN, "apply-frame", 0, "Trap when entering apply." },
d95c0b76
NJ
3073 { SCM_OPTION_BOOLEAN, "exit-frame", 0, "Trap when exiting eval or apply." },
3074 { SCM_OPTION_SCM, "enter-frame-handler", (unsigned long)SCM_BOOL_F, "Handler for enter-frame traps." },
3075 { SCM_OPTION_SCM, "apply-frame-handler", (unsigned long)SCM_BOOL_F, "Handler for apply-frame traps." },
3076 { SCM_OPTION_SCM, "exit-frame-handler", (unsigned long)SCM_BOOL_F, "Handler for exit-frame traps." }
6dbd0af5
MD
3077};
3078
a1ec6916 3079SCM_DEFINE (scm_eval_options_interface, "eval-options-interface", 0, 1, 0,
1bbd0b84 3080 (SCM setting),
b3f26b14
MG
3081 "Option interface for the evaluation options. Instead of using\n"
3082 "this procedure directly, use the procedures @code{eval-enable},\n"
3939e9df 3083 "@code{eval-disable}, @code{eval-set!} and @code{eval-options}.")
1bbd0b84 3084#define FUNC_NAME s_scm_eval_options_interface
33b97402
MD
3085{
3086 SCM ans;
3087 SCM_DEFER_INTS;
3088 ans = scm_options (setting,
3089 scm_eval_opts,
3090 SCM_N_EVAL_OPTIONS,
1bbd0b84 3091 FUNC_NAME);
a74145b8 3092 scm_eval_stack = SCM_EVAL_STACK * sizeof (void *);
33b97402
MD
3093 SCM_ALLOW_INTS;
3094 return ans;
3095}
1bbd0b84 3096#undef FUNC_NAME
33b97402 3097
d0b07b5d 3098
a1ec6916 3099SCM_DEFINE (scm_evaluator_traps, "evaluator-traps-interface", 0, 1, 0,
1bbd0b84 3100 (SCM setting),
b3f26b14 3101 "Option interface for the evaluator trap options.")
1bbd0b84 3102#define FUNC_NAME s_scm_evaluator_traps
33b97402
MD
3103{
3104 SCM ans;
3105 SCM_DEFER_INTS;
3106 ans = scm_options (setting,
3107 scm_evaluator_trap_table,
3108 SCM_N_EVALUATOR_TRAPS,
1bbd0b84 3109 FUNC_NAME);
33b97402 3110 SCM_RESET_DEBUG_MODE;
bfc69694 3111 SCM_ALLOW_INTS;
33b97402
MD
3112 return ans;
3113}
1bbd0b84 3114#undef FUNC_NAME
33b97402 3115
d0b07b5d 3116
24933780 3117static SCM
a392ee15 3118deval_args (SCM l, SCM env, SCM proc, SCM *lloc)
0f2d19dd 3119{
b1cb24ff 3120 SCM *results = lloc;
a61f4e0c 3121 while (scm_is_pair (l))
0f2d19dd 3122 {
b1cb24ff 3123 const SCM res = EVALCAR (l, env);
904a077d 3124
8ea46249 3125 *lloc = scm_list_1 (res);
a23afe53 3126 lloc = SCM_CDRLOC (*lloc);
0f2d19dd
JB
3127 l = SCM_CDR (l);
3128 }
a61f4e0c 3129 if (!scm_is_null (l))
904a077d 3130 scm_wrong_num_args (proc);
680ed4a8 3131 return *results;
0f2d19dd
JB
3132}
3133
6dbd0af5
MD
3134#endif /* !DEVAL */
3135
3136
a392ee15 3137/* SECTION: This code is compiled twice.
6dbd0af5
MD
3138 */
3139
a392ee15 3140
d9d39d76 3141/* Update the toplevel environment frame ENV so that it refers to the
a392ee15 3142 * current module. */
d9d39d76
MV
3143#define UPDATE_TOPLEVEL_ENV(env) \
3144 do { \
3145 SCM p = scm_current_module_lookup_closure (); \
d0b07b5d 3146 if (p != SCM_CAR (env)) \
d9d39d76
MV
3147 env = scm_top_level_env (p); \
3148 } while (0)
3149
6dbd0af5 3150
6f81708a 3151#define SCM_VALIDATE_NON_EMPTY_COMBINATION(x) \
bc36d050 3152 ASSERT_SYNTAX (!scm_is_eq ((x), SCM_EOL), s_empty_combination, x)
6f81708a
DH
3153
3154
a392ee15
DH
3155/* This is the evaluator. Like any real monster, it has three heads:
3156 *
434f2f7a
DH
3157 * ceval is the non-debugging evaluator, deval is the debugging version. Both
3158 * are implemented using a common code base, using the following mechanism:
3159 * CEVAL is a macro, which is either defined to ceval or deval. Thus, there
3160 * is no function CEVAL, but the code for CEVAL actually compiles to either
3161 * ceval or deval. When CEVAL is defined to ceval, it is known that the macro
3162 * DEVAL is not defined. When CEVAL is defined to deval, then the macro DEVAL
3163 * is known to be defined. Thus, in CEVAL parts for the debugging evaluator
a392ee15
DH
3164 * are enclosed within #ifdef DEVAL ... #endif.
3165 *
434f2f7a
DH
3166 * All three (ceval, deval and their common implementation CEVAL) take two
3167 * input parameters, x and env: x is a single expression to be evalutated.
3168 * env is the environment in which bindings are searched.
a392ee15 3169 *
434f2f7a
DH
3170 * x is known to be a pair. Since x is a single expression, it is necessarily
3171 * in a tail position. If x is just a call to another function like in the
3172 * expression (foo exp1 exp2 ...), the realization of that call therefore
3173 * _must_not_ increase stack usage (the evaluation of exp1, exp2 etc.,
3174 * however, may do so). This is realized by making extensive use of 'goto'
3175 * statements within the evaluator: The gotos replace recursive calls to
3176 * CEVAL, thus re-using the same stack frame that CEVAL was already using.
3177 * If, however, x represents some form that requires to evaluate a sequence of
3178 * expressions like (begin exp1 exp2 ...), then recursive calls to CEVAL are
3179 * performed for all but the last expression of that sequence. */
6dbd0af5 3180
434f2f7a
DH
3181static SCM
3182CEVAL (SCM x, SCM env)
0f2d19dd 3183{
42030fb2 3184 SCM proc, arg1;
6dbd0af5 3185#ifdef DEVAL
92c2555f
MV
3186 scm_t_debug_frame debug;
3187 scm_t_debug_info *debug_info_end;
1646d37b 3188 debug.prev = scm_last_debug_frame;
020c890c 3189 debug.status = 0;
04b6c081 3190 /*
92c2555f 3191 * The debug.vect contains twice as much scm_t_debug_info frames as the
04b6c081
MD
3192 * user has specified with (debug-set! frames <n>).
3193 *
3194 * Even frames are eval frames, odd frames are apply frames.
3195 */
92c2555f 3196 debug.vect = (scm_t_debug_info *) alloca (scm_debug_eframe_size
a392ee15 3197 * sizeof (scm_t_debug_info));
c0ab1b8d
JB
3198 debug.info = debug.vect;
3199 debug_info_end = debug.vect + scm_debug_eframe_size;
3200 scm_last_debug_frame = &debug;
6dbd0af5 3201#endif
b7ff98dd 3202#ifdef EVAL_STACK_CHECKING
79f55b7c 3203 if (scm_stack_checking_enabled_p && SCM_STACK_OVERFLOW_P (&proc))
6dbd0af5 3204 {
b7ff98dd 3205#ifdef DEVAL
6dbd0af5
MD
3206 debug.info->e.exp = x;
3207 debug.info->e.env = env;
b7ff98dd 3208#endif
6dbd0af5
MD
3209 scm_report_stack_overflow ();
3210 }
3211#endif
6a0f6ff3 3212
6dbd0af5
MD
3213#ifdef DEVAL
3214 goto start;
3215#endif
6a0f6ff3 3216
6dbd0af5
MD
3217loop:
3218#ifdef DEVAL
b7ff98dd
MD
3219 SCM_CLEAR_ARGSREADY (debug);
3220 if (SCM_OVERFLOWP (debug))
6dbd0af5 3221 --debug.info;
04b6c081
MD
3222 /*
3223 * In theory, this should be the only place where it is necessary to
3224 * check for space in debug.vect since both eval frames and
3225 * available space are even.
3226 *
3227 * For this to be the case, however, it is necessary that primitive
3228 * special forms which jump back to `loop', `begin' or some similar
680516ba 3229 * label call PREP_APPLY.
04b6c081 3230 */
c0ab1b8d 3231 else if (++debug.info >= debug_info_end)
6dbd0af5 3232 {
b7ff98dd 3233 SCM_SET_OVERFLOW (debug);
6dbd0af5
MD
3234 debug.info -= 2;
3235 }
6a0f6ff3 3236
6dbd0af5
MD
3237start:
3238 debug.info->e.exp = x;
3239 debug.info->e.env = env;
5132eef0
DH
3240 if (scm_check_entry_p && SCM_TRAPS_P)
3241 {
bc76d628
DH
3242 if (SCM_ENTER_FRAME_P
3243 || (SCM_BREAKPOINTS_P && scm_c_source_property_breakpoint_p (x)))
5132eef0 3244 {
bc76d628 3245 SCM stackrep;
7888309b 3246 SCM tail = scm_from_bool (SCM_TAILRECP (debug));
5132eef0
DH
3247 SCM_SET_TAILREC (debug);
3248 if (SCM_CHEAPTRAPS_P)
bc76d628 3249 stackrep = scm_make_debugobj (&debug);
5132eef0
DH
3250 else
3251 {
3252 int first;
3253 SCM val = scm_make_continuation (&first);
3254
3255 if (first)
bc76d628 3256 stackrep = val;
5132eef0
DH
3257 else
3258 {
3259 x = val;
3260 if (SCM_IMP (x))
3261 RETURN (x);
3262 else
3263 /* This gives the possibility for the debugger to
3264 modify the source expression before evaluation. */
3265 goto dispatch;
3266 }
3267 }
3268 SCM_TRAPS_P = 0;
3269 scm_call_4 (SCM_ENTER_FRAME_HDLR,
3270 scm_sym_enter_frame,
bc76d628 3271 stackrep,
5132eef0 3272 tail,
212e58ed 3273 unmemoize_expression (x, env));
5132eef0
DH
3274 SCM_TRAPS_P = 1;
3275 }
3276 }
6dbd0af5 3277#endif
f8769b1d 3278dispatch:
9cb5124f 3279 SCM_TICK;
dec40cd2 3280 if (SCM_ISYMP (SCM_CAR (x)))
0f2d19dd 3281 {
7e6e6b37 3282 switch (ISYMNUM (SCM_CAR (x)))
dec40cd2 3283 {
7e6e6b37 3284 case (ISYMNUM (SCM_IM_AND)):
dec40cd2 3285 x = SCM_CDR (x);
a61f4e0c 3286 while (!scm_is_null (SCM_CDR (x)))
dec40cd2
DH
3287 {
3288 SCM test_result = EVALCAR (x, env);
7888309b 3289 if (scm_is_false (test_result) || SCM_NILP (test_result))
dec40cd2
DH
3290 RETURN (SCM_BOOL_F);
3291 else
3292 x = SCM_CDR (x);
3293 }
3294 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
3295 goto carloop;
0f2d19dd 3296
7e6e6b37 3297 case (ISYMNUM (SCM_IM_BEGIN)):
dec40cd2 3298 x = SCM_CDR (x);
a61f4e0c 3299 if (scm_is_null (x))
dec40cd2 3300 RETURN (SCM_UNSPECIFIED);
b8113bc8 3301
dec40cd2 3302 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
0f2d19dd 3303
dec40cd2
DH
3304 begin:
3305 /* If we are on toplevel with a lookup closure, we need to sync
3306 with the current module. */
a61f4e0c 3307 if (scm_is_pair (env) && !scm_is_pair (SCM_CAR (env)))
dec40cd2
DH
3308 {
3309 UPDATE_TOPLEVEL_ENV (env);
a61f4e0c 3310 while (!scm_is_null (SCM_CDR (x)))
dec40cd2
DH
3311 {
3312 EVALCAR (x, env);
3313 UPDATE_TOPLEVEL_ENV (env);
3314 x = SCM_CDR (x);
3315 }
3316 goto carloop;
3317 }
3318 else
3319 goto nontoplevel_begin;
5280aaca 3320
dec40cd2 3321 nontoplevel_begin:
a61f4e0c 3322 while (!scm_is_null (SCM_CDR (x)))
dec40cd2 3323 {
b1cb24ff 3324 const SCM form = SCM_CAR (x);
dec40cd2
DH
3325 if (SCM_IMP (form))
3326 {
3327 if (SCM_ISYMP (form))
3328 {
76da80e7 3329 scm_rec_mutex_lock (&source_mutex);
dec40cd2
DH
3330 /* check for race condition */
3331 if (SCM_ISYMP (SCM_CAR (x)))
3332 m_expand_body (x, env);
76da80e7 3333 scm_rec_mutex_unlock (&source_mutex);
dec40cd2
DH
3334 goto nontoplevel_begin;
3335 }
3336 else
3337 SCM_VALIDATE_NON_EMPTY_COMBINATION (form);
3338 }
3339 else
b1cb24ff 3340 (void) EVAL (form, env);
dec40cd2
DH
3341 x = SCM_CDR (x);
3342 }
b1cb24ff 3343
dec40cd2
DH
3344 carloop:
3345 {
3346 /* scm_eval last form in list */
b1cb24ff 3347 const SCM last_form = SCM_CAR (x);
0f2d19dd 3348
a61f4e0c 3349 if (scm_is_pair (last_form))
dec40cd2
DH
3350 {
3351 /* This is by far the most frequent case. */
3352 x = last_form;
3353 goto loop; /* tail recurse */
3354 }
3355 else if (SCM_IMP (last_form))
385609b9 3356 RETURN (SCM_I_EVALIM (last_form, env));
dec40cd2
DH
3357 else if (SCM_VARIABLEP (last_form))
3358 RETURN (SCM_VARIABLE_REF (last_form));
cc95e00a 3359 else if (scm_is_symbol (last_form))
dec40cd2
DH
3360 RETURN (*scm_lookupcar (x, env, 1));
3361 else
3362 RETURN (last_form);
3363 }
0f2d19dd
JB
3364
3365
7e6e6b37 3366 case (ISYMNUM (SCM_IM_CASE)):
dec40cd2
DH
3367 x = SCM_CDR (x);
3368 {
b1cb24ff 3369 const SCM key = EVALCAR (x, env);
dec40cd2 3370 x = SCM_CDR (x);
a61f4e0c 3371 while (!scm_is_null (x))
dec40cd2 3372 {
b1cb24ff 3373 const SCM clause = SCM_CAR (x);
dec40cd2 3374 SCM labels = SCM_CAR (clause);
bc36d050 3375 if (scm_is_eq (labels, SCM_IM_ELSE))
dec40cd2
DH
3376 {
3377 x = SCM_CDR (clause);
3378 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
3379 goto begin;
3380 }
a61f4e0c 3381 while (!scm_is_null (labels))
dec40cd2 3382 {
b1cb24ff 3383 const SCM label = SCM_CAR (labels);
bc36d050 3384 if (scm_is_eq (label, key)
7888309b 3385 || scm_is_true (scm_eqv_p (label, key)))
dec40cd2
DH
3386 {
3387 x = SCM_CDR (clause);
3388 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
3389 goto begin;
3390 }
3391 labels = SCM_CDR (labels);
3392 }
3393 x = SCM_CDR (x);
3394 }
3395 }
3396 RETURN (SCM_UNSPECIFIED);
0f2d19dd
JB
3397
3398
7e6e6b37 3399 case (ISYMNUM (SCM_IM_COND)):
dec40cd2 3400 x = SCM_CDR (x);
a61f4e0c 3401 while (!scm_is_null (x))
dec40cd2 3402 {
b1cb24ff 3403 const SCM clause = SCM_CAR (x);
bc36d050 3404 if (scm_is_eq (SCM_CAR (clause), SCM_IM_ELSE))
dec40cd2
DH
3405 {
3406 x = SCM_CDR (clause);
3407 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
3408 goto begin;
3409 }
3410 else
3411 {
3412 arg1 = EVALCAR (clause, env);
7888309b 3413 if (scm_is_true (arg1) && !SCM_NILP (arg1))
dec40cd2
DH
3414 {
3415 x = SCM_CDR (clause);
a61f4e0c 3416 if (scm_is_null (x))
dec40cd2 3417 RETURN (arg1);
bc36d050 3418 else if (!scm_is_eq (SCM_CAR (x), SCM_IM_ARROW))
dec40cd2
DH
3419 {
3420 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
3421 goto begin;
3422 }
3423 else
3424 {
3425 proc = SCM_CDR (x);
3426 proc = EVALCAR (proc, env);
3427 PREP_APPLY (proc, scm_list_1 (arg1));
3428 ENTER_APPLY;
3429 goto evap1;
3430 }
3431 }
3432 x = SCM_CDR (x);
3433 }
3434 }
3435 RETURN (SCM_UNSPECIFIED);
e5cb71a0 3436
e5cb71a0 3437
7e6e6b37 3438 case (ISYMNUM (SCM_IM_DO)):
dec40cd2
DH
3439 x = SCM_CDR (x);
3440 {
3441 /* Compute the initialization values and the initial environment. */
3442 SCM init_forms = SCM_CAR (x);
3443 SCM init_values = SCM_EOL;
a61f4e0c 3444 while (!scm_is_null (init_forms))
dec40cd2
DH
3445 {
3446 init_values = scm_cons (EVALCAR (init_forms, env), init_values);
3447 init_forms = SCM_CDR (init_forms);
3448 }
3449 x = SCM_CDR (x);
3450 env = SCM_EXTEND_ENV (SCM_CAR (x), init_values, env);
3451 }
3452 x = SCM_CDR (x);
3453 {
3454 SCM test_form = SCM_CAR (x);
3455 SCM body_forms = SCM_CADR (x);
3456 SCM step_forms = SCM_CDDR (x);
e5cb71a0 3457
dec40cd2 3458 SCM test_result = EVALCAR (test_form, env);
e5cb71a0 3459
7888309b 3460 while (scm_is_false (test_result) || SCM_NILP (test_result))
dec40cd2
DH
3461 {
3462 {
3463 /* Evaluate body forms. */
3464 SCM temp_forms;
3465 for (temp_forms = body_forms;
a61f4e0c 3466 !scm_is_null (temp_forms);
dec40cd2
DH
3467 temp_forms = SCM_CDR (temp_forms))
3468 {
3469 SCM form = SCM_CAR (temp_forms);
b1cb24ff
DH
3470 /* Dirk:FIXME: We only need to eval forms that may have
3471 * a side effect here. This is only true for forms that
3472 * start with a pair. All others are just constants.
3473 * Since with the current memoizer 'form' may hold a
3474 * constant, we call EVAL here to handle the constant
3475 * cases. In the long run it would make sense to have
3476 * the macro transformer of 'do' eliminate all forms
3477 * that have no sideeffect. Then instead of EVAL we
3478 * could call CEVAL directly here. */
3479 (void) EVAL (form, env);
dec40cd2
DH
3480 }
3481 }
0f2d19dd 3482
dec40cd2
DH
3483 {
3484 /* Evaluate the step expressions. */
3485 SCM temp_forms;
3486 SCM step_values = SCM_EOL;
3487 for (temp_forms = step_forms;
a61f4e0c 3488 !scm_is_null (temp_forms);
dec40cd2
DH
3489 temp_forms = SCM_CDR (temp_forms))
3490 {
b1cb24ff 3491 const SCM value = EVALCAR (temp_forms, env);
dec40cd2
DH
3492 step_values = scm_cons (value, step_values);
3493 }
3494 env = SCM_EXTEND_ENV (SCM_CAAR (env),
3495 step_values,
3496 SCM_CDR (env));
3497 }
0f2d19dd 3498
dec40cd2
DH
3499 test_result = EVALCAR (test_form, env);
3500 }
3501 }
3502 x = SCM_CDAR (x);
a61f4e0c 3503 if (scm_is_null (x))
dec40cd2
DH
3504 RETURN (SCM_UNSPECIFIED);
3505 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
3506 goto nontoplevel_begin;
0f2d19dd
JB
3507
3508
7e6e6b37 3509 case (ISYMNUM (SCM_IM_IF)):
dec40cd2
DH
3510 x = SCM_CDR (x);
3511 {
3512 SCM test_result = EVALCAR (x, env);
3513 x = SCM_CDR (x); /* then expression */
7888309b 3514 if (scm_is_false (test_result) || SCM_NILP (test_result))
dec40cd2
DH
3515 {
3516 x = SCM_CDR (x); /* else expression */
a61f4e0c 3517 if (scm_is_null (x))
dec40cd2
DH
3518 RETURN (SCM_UNSPECIFIED);
3519 }
3520 }
3521 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
3522 goto carloop;
0f2d19dd
JB
3523
3524
7e6e6b37 3525 case (ISYMNUM (SCM_IM_LET)):
dec40cd2
DH
3526 x = SCM_CDR (x);
3527 {
3528 SCM init_forms = SCM_CADR (x);
3529 SCM init_values = SCM_EOL;
3530 do
3531 {
3532 init_values = scm_cons (EVALCAR (init_forms, env), init_values);
3533 init_forms = SCM_CDR (init_forms);
3534 }
a61f4e0c 3535 while (!scm_is_null (init_forms));
dec40cd2
DH
3536 env = SCM_EXTEND_ENV (SCM_CAR (x), init_values, env);
3537 }
3538 x = SCM_CDDR (x);
3539 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
3540 goto nontoplevel_begin;
0f2d19dd
JB
3541
3542
7e6e6b37 3543 case (ISYMNUM (SCM_IM_LETREC)):
dec40cd2
DH
3544 x = SCM_CDR (x);
3545 env = SCM_EXTEND_ENV (SCM_CAR (x), undefineds, env);
3546 x = SCM_CDR (x);
3547 {
3548 SCM init_forms = SCM_CAR (x);
3549 SCM init_values = SCM_EOL;
3550 do
3551 {
3552 init_values = scm_cons (EVALCAR (init_forms, env), init_values);
3553 init_forms = SCM_CDR (init_forms);
3554 }
a61f4e0c 3555 while (!scm_is_null (init_forms));
dec40cd2
DH
3556 SCM_SETCDR (SCM_CAR (env), init_values);
3557 }
3558 x = SCM_CDR (x);
3559 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
3560 goto nontoplevel_begin;
0f2d19dd 3561
302c12b4 3562
7e6e6b37 3563 case (ISYMNUM (SCM_IM_LETSTAR)):
dec40cd2
DH
3564 x = SCM_CDR (x);
3565 {
3566 SCM bindings = SCM_CAR (x);
a61f4e0c 3567 if (!scm_is_null (bindings))
dec40cd2
DH
3568 {
3569 do
3570 {
3571 SCM name = SCM_CAR (bindings);
3572 SCM init = SCM_CDR (bindings);
3573 env = SCM_EXTEND_ENV (name, EVALCAR (init, env), env);
3574 bindings = SCM_CDR (init);
3575 }
a61f4e0c 3576 while (!scm_is_null (bindings));
dec40cd2
DH
3577 }
3578 }
3579 x = SCM_CDR (x);
3580 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
3581 goto nontoplevel_begin;
0f2d19dd
JB
3582
3583
7e6e6b37 3584 case (ISYMNUM (SCM_IM_OR)):
dec40cd2 3585 x = SCM_CDR (x);
a61f4e0c 3586 while (!scm_is_null (SCM_CDR (x)))
dec40cd2
DH
3587 {
3588 SCM val = EVALCAR (x, env);
7888309b 3589 if (scm_is_true (val) && !SCM_NILP (val))
dec40cd2
DH
3590 RETURN (val);
3591 else
3592 x = SCM_CDR (x);
3593 }
3594 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
3595 goto carloop;
0f2d19dd
JB
3596
3597
7e6e6b37 3598 case (ISYMNUM (SCM_IM_LAMBDA)):
dec40cd2 3599 RETURN (scm_closure (SCM_CDR (x), env));
0f2d19dd
JB
3600
3601
7e6e6b37 3602 case (ISYMNUM (SCM_IM_QUOTE)):
e7313a9d 3603 RETURN (SCM_CDR (x));
0f2d19dd
JB
3604
3605
7e6e6b37 3606 case (ISYMNUM (SCM_IM_SET_X)):
dec40cd2
DH
3607 x = SCM_CDR (x);
3608 {
3609 SCM *location;
3610 SCM variable = SCM_CAR (x);
3611 if (SCM_ILOCP (variable))
3612 location = scm_ilookup (variable, env);
3613 else if (SCM_VARIABLEP (variable))
3614 location = SCM_VARIABLE_LOC (variable);
36245b66
DH
3615 else
3616 {
cc95e00a 3617 /* (scm_is_symbol (variable)) is known to be true */
36245b66
DH
3618 variable = lazy_memoize_variable (variable, env);
3619 SCM_SETCAR (x, variable);
3620 location = SCM_VARIABLE_LOC (variable);
3621 }
dec40cd2
DH
3622 x = SCM_CDR (x);
3623 *location = EVALCAR (x, env);
3624 }
3625 RETURN (SCM_UNSPECIFIED);
3f04400d
DH
3626
3627
7e6e6b37 3628 case (ISYMNUM (SCM_IM_APPLY)):
6bff1368 3629 /* Evaluate the procedure to be applied. */
e910e9d2
DH
3630 x = SCM_CDR (x);
3631 proc = EVALCAR (x, env);
3632 PREP_APPLY (proc, SCM_EOL);
6bff1368
DH
3633
3634 /* Evaluate the argument holding the list of arguments */
e910e9d2
DH
3635 x = SCM_CDR (x);
3636 arg1 = EVALCAR (x, env);
9a069bdd
DH
3637
3638 apply_proc:
3639 /* Go here to tail-apply a procedure. PROC is the procedure and
3640 * ARG1 is the list of arguments. PREP_APPLY must have been called
3641 * before jumping to apply_proc. */
0f2d19dd
JB
3642 if (SCM_CLOSUREP (proc))
3643 {
9a069bdd 3644 SCM formals = SCM_CLOSURE_FORMALS (proc);
6dbd0af5 3645#ifdef DEVAL
9a069bdd 3646 debug.info->a.args = arg1;
6dbd0af5 3647#endif
9a069bdd
DH
3648 if (scm_badargsp (formals, arg1))
3649 scm_wrong_num_args (proc);
3650 ENTER_APPLY;
3651 /* Copy argument list */
3652 if (SCM_NULL_OR_NIL_P (arg1))
3653 env = SCM_EXTEND_ENV (formals, SCM_EOL, SCM_ENV (proc));
3654 else
3655 {
3656 SCM args = scm_list_1 (SCM_CAR (arg1));
3657 SCM tail = args;
3658 arg1 = SCM_CDR (arg1);
3659 while (!SCM_NULL_OR_NIL_P (arg1))
3660 {
3661 SCM new_tail = scm_list_1 (SCM_CAR (arg1));
3662 SCM_SETCDR (tail, new_tail);
3663 tail = new_tail;
3664 arg1 = SCM_CDR (arg1);
3665 }
3666 env = SCM_EXTEND_ENV (formals, args, SCM_ENV (proc));
3667 }
3668
3669 x = SCM_CLOSURE_BODY (proc);
3670 goto nontoplevel_begin;
0f2d19dd 3671 }
3f04400d
DH
3672 else
3673 {
e910e9d2
DH
3674 ENTER_APPLY;
3675 RETURN (SCM_APPLY (proc, arg1, SCM_EOL));
3f04400d
DH
3676 }
3677
0f2d19dd 3678
7e6e6b37 3679 case (ISYMNUM (SCM_IM_CONT)):
5f144b10
GH
3680 {
3681 int first;
3682 SCM val = scm_make_continuation (&first);
3683
e050d4f8 3684 if (!first)
5f144b10 3685 RETURN (val);
e050d4f8
DH
3686 else
3687 {
3688 arg1 = val;
3689 proc = SCM_CDR (x);
6bff1368 3690 proc = EVALCAR (proc, env);
e050d4f8
DH
3691 PREP_APPLY (proc, scm_list_1 (arg1));
3692 ENTER_APPLY;
e050d4f8
DH
3693 goto evap1;
3694 }
5f144b10 3695 }
e050d4f8 3696
0f2d19dd 3697
7e6e6b37 3698 case (ISYMNUM (SCM_IM_DELAY)):
ddea3325 3699 RETURN (scm_makprom (scm_closure (SCM_CDR (x), env)));
a570e93a 3700
e050d4f8 3701
7e6e6b37 3702 case (ISYMNUM (SCM_IM_FUTURE)):
28d52ebb
MD
3703 RETURN (scm_i_make_future (scm_closure (SCM_CDR (x), env)));
3704
3705
7e6e6b37
DH
3706 /* PLACEHOLDER for case (ISYMNUM (SCM_IM_DISPATCH)): The following
3707 code (type_dispatch) is intended to be the tail of the case
3708 clause for the internal macro SCM_IM_DISPATCH. Please don't
3709 remove it from this location without discussing it with Mikael
c8e1d354
MD
3710 <djurfeldt@nada.kth.se> */
3711
f12745b6
DH
3712 /* The type dispatch code is duplicated below
3713 * (c.f. objects.c:scm_mcache_compute_cmethod) since that
3714 * cuts down execution time for type dispatch to 50%. */
dff98306 3715 type_dispatch: /* inputs: x, arg1 */
f12745b6
DH
3716 /* Type dispatch means to determine from the types of the function
3717 * arguments (i. e. the 'signature' of the call), which method from
3718 * a generic function is to be called. This process of selecting
3719 * the right method takes some time. To speed it up, guile uses
3720 * caching: Together with the macro call to dispatch the signatures
3721 * of some previous calls to that generic function from the same
3722 * place are stored (in the code!) in a cache that we call the
3723 * 'method cache'. This is done since it is likely, that
3724 * consecutive calls to dispatch from that position in the code will
3725 * have the same signature. Thus, the type dispatch works as
3726 * follows: First, determine a hash value from the signature of the
3727 * actual arguments. Second, use this hash value as an index to
3728 * find that same signature in the method cache stored at this
3729 * position in the code. If found, you have also found the
3730 * corresponding method that belongs to that signature. If the
3731 * signature is not found in the method cache, you have to perform a
3732 * full search over all signatures stored with the generic
3733 * function. */
3734 {
3735 unsigned long int specializers;
3736 unsigned long int hash_value;
3737 unsigned long int cache_end_pos;
3738 unsigned long int mask;
3739 SCM method_cache;
3740
3741 {
3742 SCM z = SCM_CDDR (x);
3743 SCM tmp = SCM_CADR (z);
e11e83f3 3744 specializers = scm_to_ulong (SCM_CAR (z));
f12745b6
DH
3745
3746 /* Compute a hash value for searching the method cache. There
3747 * are two variants for computing the hash value, a (rather)
3748 * complicated one, and a simple one. For the complicated one
3749 * explained below, tmp holds a number that is used in the
3750 * computation. */
4057a3e0 3751 if (scm_is_simple_vector (tmp))
e11e83f3
MV
3752 {
3753 /* This method of determining the hash value is much
3754 * simpler: Set the hash value to zero and just perform a
3755 * linear search through the method cache. */
3756 method_cache = tmp;
3757 mask = (unsigned long int) ((long) -1);
3758 hash_value = 0;
4057a3e0 3759 cache_end_pos = SCM_SIMPLE_VECTOR_LENGTH (method_cache);
e11e83f3
MV
3760 }
3761 else
f12745b6
DH
3762 {
3763 /* Use the signature of the actual arguments to determine
3764 * the hash value. This is done as follows: Each class has
3765 * an array of random numbers, that are determined when the
3766 * class is created. The integer 'hashset' is an index into
3767 * that array of random numbers. Now, from all classes that
3768 * are part of the signature of the actual arguments, the
3769 * random numbers at index 'hashset' are taken and summed
3770 * up, giving the hash value. The value of 'hashset' is
3771 * stored at the call to dispatch. This allows to have
3772 * different 'formulas' for calculating the hash value at
3773 * different places where dispatch is called. This allows
3774 * to optimize the hash formula at every individual place
3775 * where dispatch is called, such that hopefully the hash
3776 * value that is computed will directly point to the right
3777 * method in the method cache. */
e11e83f3 3778 unsigned long int hashset = scm_to_ulong (tmp);
f12745b6 3779 unsigned long int counter = specializers + 1;
dff98306 3780 SCM tmp_arg = arg1;
f12745b6 3781 hash_value = 0;
a61f4e0c 3782 while (!scm_is_null (tmp_arg) && counter != 0)
61364ba6 3783 {
f12745b6
DH
3784 SCM class = scm_class_of (SCM_CAR (tmp_arg));
3785 hash_value += SCM_INSTANCE_HASH (class, hashset);
3786 tmp_arg = SCM_CDR (tmp_arg);
3787 counter--;
61364ba6 3788 }
f12745b6
DH
3789 z = SCM_CDDR (z);
3790 method_cache = SCM_CADR (z);
e11e83f3 3791 mask = scm_to_ulong (SCM_CAR (z));
f12745b6
DH
3792 hash_value &= mask;
3793 cache_end_pos = hash_value;
3794 }
f12745b6 3795 }
61364ba6 3796
f12745b6
DH
3797 {
3798 /* Search the method cache for a method with a matching
3799 * signature. Start the search at position 'hash_value'. The
3800 * hashing implementation uses linear probing for conflict
3801 * resolution, that is, if the signature in question is not
3802 * found at the starting index in the hash table, the next table
3803 * entry is tried, and so on, until in the worst case the whole
3804 * cache has been searched, but still the signature has not been
3805 * found. */
3806 SCM z;
3807 do
3808 {
dff98306 3809 SCM args = arg1; /* list of arguments */
4057a3e0 3810 z = SCM_SIMPLE_VECTOR_REF (method_cache, hash_value);
a61f4e0c 3811 while (!scm_is_null (args))
61364ba6
MD
3812 {
3813 /* More arguments than specifiers => CLASS != ENV */
f12745b6 3814 SCM class_of_arg = scm_class_of (SCM_CAR (args));
bc36d050 3815 if (!scm_is_eq (class_of_arg, SCM_CAR (z)))
61364ba6 3816 goto next_method;
f12745b6 3817 args = SCM_CDR (args);
61364ba6
MD
3818 z = SCM_CDR (z);
3819 }
f12745b6 3820 /* Fewer arguments than specifiers => CAR != ENV */
a61f4e0c 3821 if (scm_is_null (SCM_CAR (z)) || scm_is_pair (SCM_CAR (z)))
f12745b6
DH
3822 goto apply_cmethod;
3823 next_method:
3824 hash_value = (hash_value + 1) & mask;
3825 } while (hash_value != cache_end_pos);
3826
3827 /* No appropriate method was found in the cache. */
dff98306 3828 z = scm_memoize_method (x, arg1);
f12745b6 3829
dff98306 3830 apply_cmethod: /* inputs: z, arg1 */
f12745b6
DH
3831 {
3832 SCM formals = SCM_CMETHOD_FORMALS (z);
821f18a4 3833 env = SCM_EXTEND_ENV (formals, arg1, SCM_CMETHOD_ENV (z));
f12745b6
DH
3834 x = SCM_CMETHOD_BODY (z);
3835 goto nontoplevel_begin;
3836 }
3837 }
61364ba6 3838 }
73b64342 3839
1d15ecd3 3840
7e6e6b37 3841 case (ISYMNUM (SCM_IM_SLOT_REF)):
ca4be6ea 3842 x = SCM_CDR (x);
1d15ecd3
DH
3843 {
3844 SCM instance = EVALCAR (x, env);
e11e83f3 3845 unsigned long int slot = SCM_I_INUM (SCM_CDR (x));
1d15ecd3
DH
3846 RETURN (SCM_PACK (SCM_STRUCT_DATA (instance) [slot]));
3847 }
3848
3849
7e6e6b37 3850 case (ISYMNUM (SCM_IM_SLOT_SET_X)):
ca4be6ea 3851 x = SCM_CDR (x);
1d15ecd3
DH
3852 {
3853 SCM instance = EVALCAR (x, env);
e11e83f3 3854 unsigned long int slot = SCM_I_INUM (SCM_CADR (x));
1d15ecd3
DH
3855 SCM value = EVALCAR (SCM_CDDR (x), env);
3856 SCM_STRUCT_DATA (instance) [slot] = SCM_UNPACK (value);
3857 RETURN (SCM_UNSPECIFIED);
3858 }
3859
c96d76b8 3860
22721140 3861#if SCM_ENABLE_ELISP
ca4be6ea 3862
7e6e6b37 3863 case (ISYMNUM (SCM_IM_NIL_COND)):
1d15ecd3
DH
3864 {
3865 SCM test_form = SCM_CDR (x);
3866 x = SCM_CDR (test_form);
3867 while (!SCM_NULL_OR_NIL_P (x))
3868 {
3869 SCM test_result = EVALCAR (test_form, env);
7888309b 3870 if (!(scm_is_false (test_result)
1d15ecd3
DH
3871 || SCM_NULL_OR_NIL_P (test_result)))
3872 {
bc36d050 3873 if (scm_is_eq (SCM_CAR (x), SCM_UNSPECIFIED))
1d15ecd3
DH
3874 RETURN (test_result);
3875 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
3876 goto carloop;
3877 }
3878 else
3879 {
3880 test_form = SCM_CDR (x);
3881 x = SCM_CDR (test_form);
3882 }
3883 }
3884 x = test_form;
3885 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
3886 goto carloop;
3887 }
73b64342 3888
c96d76b8 3889#endif /* SCM_ENABLE_ELISP */
73b64342 3890
7e6e6b37 3891 case (ISYMNUM (SCM_IM_BIND)):
2e171178
MV
3892 {
3893 SCM vars, exps, vals;
73b64342 3894
2e171178
MV
3895 x = SCM_CDR (x);
3896 vars = SCM_CAAR (x);
3897 exps = SCM_CDAR (x);
2e171178 3898 vals = SCM_EOL;
a61f4e0c 3899 while (!scm_is_null (exps))
2e171178
MV
3900 {
3901 vals = scm_cons (EVALCAR (exps, env), vals);
3902 exps = SCM_CDR (exps);
3903 }
3904
3905 scm_swap_bindings (vars, vals);
3906 scm_dynwinds = scm_acons (vars, vals, scm_dynwinds);
1d15ecd3
DH
3907
3908 /* Ignore all but the last evaluation result. */
a61f4e0c 3909 for (x = SCM_CDR (x); !scm_is_null (SCM_CDR (x)); x = SCM_CDR (x))
2e171178 3910 {
a61f4e0c 3911 if (scm_is_pair (SCM_CAR (x)))
434f2f7a 3912 CEVAL (SCM_CAR (x), env);
2e171178
MV
3913 }
3914 proc = EVALCAR (x, env);
73b64342 3915
2e171178
MV
3916 scm_dynwinds = SCM_CDR (scm_dynwinds);
3917 scm_swap_bindings (vars, vals);
73b64342 3918
ddea3325 3919 RETURN (proc);
2e171178 3920 }
c96d76b8 3921
1d15ecd3 3922
7e6e6b37 3923 case (ISYMNUM (SCM_IM_CALL_WITH_VALUES)):
a513ead3 3924 {
9a069bdd
DH
3925 SCM producer;
3926
3927 x = SCM_CDR (x);
3928 producer = EVALCAR (x, env);
3929 x = SCM_CDR (x);
3930 proc = EVALCAR (x, env); /* proc is the consumer. */
3931 arg1 = SCM_APPLY (producer, SCM_EOL, SCM_EOL);
dff98306 3932 if (SCM_VALUESP (arg1))
82b3e2c6
DH
3933 {
3934 /* The list of arguments is not copied. Rather, it is assumed
3935 * that this has been done by the 'values' procedure. */
3936 arg1 = scm_struct_ref (arg1, SCM_INUM0);
3937 }
a513ead3 3938 else
82b3e2c6
DH
3939 {
3940 arg1 = scm_list_1 (arg1);
3941 }
9a069bdd
DH
3942 PREP_APPLY (proc, arg1);
3943 goto apply_proc;
a513ead3
MV
3944 }
3945
b7798e10 3946
0f2d19dd 3947 default:
dec40cd2 3948 break;
0f2d19dd 3949 }
dec40cd2
DH
3950 }
3951 else
3952 {
434f2f7a
DH
3953 if (SCM_VARIABLEP (SCM_CAR (x)))
3954 proc = SCM_VARIABLE_REF (SCM_CAR (x));
f9986767
DH
3955 else if (SCM_ILOCP (SCM_CAR (x)))
3956 proc = *scm_ilookup (SCM_CAR (x), env);
a61f4e0c 3957 else if (scm_is_pair (SCM_CAR (x)))
434f2f7a 3958 proc = CEVAL (SCM_CAR (x), env);
cc95e00a 3959 else if (scm_is_symbol (SCM_CAR (x)))
0f2d19dd 3960 {
e050d4f8 3961 SCM orig_sym = SCM_CAR (x);
b7798e10
DH
3962 {
3963 SCM *location = scm_lookupcar1 (x, env, 1);
3964 if (location == NULL)
3965 {
3966 /* we have lost the race, start again. */
3967 goto dispatch;
3968 }
3969 proc = *location;
3970 }
f8769b1d 3971
22a52da1 3972 if (SCM_MACROP (proc))
0f2d19dd 3973 {
86d31dfe
MV
3974 SCM_SETCAR (x, orig_sym); /* Undo memoizing effect of
3975 lookupcar */
e050d4f8 3976 handle_a_macro: /* inputs: x, env, proc */
368bf056 3977#ifdef DEVAL
7c354052
MD
3978 /* Set a flag during macro expansion so that macro
3979 application frames can be deleted from the backtrace. */
3980 SCM_SET_MACROEXP (debug);
368bf056 3981#endif
dff98306 3982 arg1 = SCM_APPLY (SCM_MACRO_CODE (proc), x,
6bff1368 3983 scm_cons (env, scm_listofnull));
7c354052
MD
3984#ifdef DEVAL
3985 SCM_CLEAR_MACROEXP (debug);
3986#endif
22a52da1 3987 switch (SCM_MACRO_TYPE (proc))
0f2d19dd 3988 {
3b88ed2a 3989 case 3:
0f2d19dd 3990 case 2:
a61f4e0c 3991 if (!scm_is_pair (arg1))
dff98306 3992 arg1 = scm_list_2 (SCM_IM_BEGIN, arg1);
e7313a9d 3993
bc36d050
MV
3994 assert (!scm_is_eq (x, SCM_CAR (arg1))
3995 && !scm_is_eq (x, SCM_CDR (arg1)));
e7313a9d 3996
6dbd0af5 3997#ifdef DEVAL
22a52da1 3998 if (!SCM_CLOSUREP (SCM_MACRO_CODE (proc)))
6dbd0af5 3999 {
6dbd0af5 4000 SCM_DEFER_INTS;
dff98306
DH
4001 SCM_SETCAR (x, SCM_CAR (arg1));
4002 SCM_SETCDR (x, SCM_CDR (arg1));
6dbd0af5
MD
4003 SCM_ALLOW_INTS;
4004 goto dispatch;
4005 }
4006 /* Prevent memoizing of debug info expression. */
6203706f
MD
4007 debug.info->e.exp = scm_cons_source (debug.info->e.exp,
4008 SCM_CAR (x),
4009 SCM_CDR (x));
6dbd0af5 4010#endif
0f2d19dd 4011 SCM_DEFER_INTS;
dff98306
DH
4012 SCM_SETCAR (x, SCM_CAR (arg1));
4013 SCM_SETCDR (x, SCM_CDR (arg1));
0f2d19dd 4014 SCM_ALLOW_INTS;
680516ba
DH
4015 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
4016 goto loop;
3063e30a 4017#if SCM_ENABLE_DEPRECATED == 1
0f2d19dd 4018 case 1:
680516ba
DH
4019 x = arg1;
4020 if (SCM_NIMP (x))
4021 {
4022 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
4023 goto loop;
4024 }
4025 else
4026 RETURN (arg1);
3063e30a 4027#endif
0f2d19dd 4028 case 0:
dff98306 4029 RETURN (arg1);
0f2d19dd
JB
4030 }
4031 }
4032 }
4033 else
434f2f7a 4034 proc = SCM_CAR (x);
bd987b8e 4035
ddd8f927 4036 if (SCM_MACROP (proc))
0f2d19dd 4037 goto handle_a_macro;
0f2d19dd
JB
4038 }
4039
4040
dec40cd2
DH
4041 /* When reaching this part of the code, the following is granted: Variable x
4042 * holds the first pair of an expression of the form (<function> arg ...).
4043 * Variable proc holds the object that resulted from the evaluation of
4044 * <function>. In the following, the arguments (if any) will be evaluated,
4045 * and proc will be applied to them. If proc does not really hold a
4046 * function object, this will be signalled as an error on the scheme
4047 * level. If the number of arguments does not match the number of arguments
4048 * that are allowed to be passed to proc, also an error on the scheme level
4049 * will be signalled. */
6dbd0af5 4050 PREP_APPLY (proc, SCM_EOL);
a61f4e0c 4051 if (scm_is_null (SCM_CDR (x))) {
6dbd0af5 4052 ENTER_APPLY;
89efbff4 4053 evap0:
ddd8f927 4054 SCM_ASRTGO (!SCM_IMP (proc), badfun);
0f2d19dd
JB
4055 switch (SCM_TYP7 (proc))
4056 { /* no arguments given */
4057 case scm_tc7_subr_0:
4058 RETURN (SCM_SUBRF (proc) ());
4059 case scm_tc7_subr_1o:
4060 RETURN (SCM_SUBRF (proc) (SCM_UNDEFINED));
4061 case scm_tc7_lsubr:
4062 RETURN (SCM_SUBRF (proc) (SCM_EOL));
4063 case scm_tc7_rpsubr:
4064 RETURN (SCM_BOOL_T);
4065 case scm_tc7_asubr:
4066 RETURN (SCM_SUBRF (proc) (SCM_UNDEFINED, SCM_UNDEFINED));
0717dfd8 4067 case scm_tc7_smob:
68b06924 4068 if (!SCM_SMOB_APPLICABLE_P (proc))
0717dfd8 4069 goto badfun;
68b06924 4070 RETURN (SCM_SMOB_APPLY_0 (proc));
0f2d19dd 4071 case scm_tc7_cclo:
dff98306 4072 arg1 = proc;
0f2d19dd 4073 proc = SCM_CCLO_SUBR (proc);
6dbd0af5
MD
4074#ifdef DEVAL
4075 debug.info->a.proc = proc;
dff98306 4076 debug.info->a.args = scm_list_1 (arg1);
6dbd0af5 4077#endif
0f2d19dd 4078 goto evap1;
89efbff4
MD
4079 case scm_tc7_pws:
4080 proc = SCM_PROCEDURE (proc);
4081#ifdef DEVAL
4082 debug.info->a.proc = proc;
4083#endif
002f1a5d
MD
4084 if (!SCM_CLOSUREP (proc))
4085 goto evap0;
ddd8f927 4086 /* fallthrough */
0f2d19dd 4087 case scm_tcs_closures:
ddd8f927
DH
4088 {
4089 const SCM formals = SCM_CLOSURE_FORMALS (proc);
a61f4e0c 4090 if (scm_is_pair (formals))
212e58ed 4091 goto wrongnumargs;
ddd8f927
DH
4092 x = SCM_CLOSURE_BODY (proc);
4093 env = SCM_EXTEND_ENV (formals, SCM_EOL, SCM_ENV (proc));
4094 goto nontoplevel_begin;
4095 }
904a077d 4096 case scm_tcs_struct:
195847fa
MD
4097 if (SCM_OBJ_CLASS_FLAGS (proc) & SCM_CLASSF_PURE_GENERIC)
4098 {
4099 x = SCM_ENTITY_PROCEDURE (proc);
dff98306 4100 arg1 = SCM_EOL;
195847fa
MD
4101 goto type_dispatch;
4102 }
2ca0d207 4103 else if (SCM_I_OPERATORP (proc))
da7f71d7 4104 {
dff98306 4105 arg1 = proc;
195847fa
MD
4106 proc = (SCM_I_ENTITYP (proc)
4107 ? SCM_ENTITY_PROCEDURE (proc)
4108 : SCM_OPERATOR_PROCEDURE (proc));
da7f71d7 4109#ifdef DEVAL
195847fa 4110 debug.info->a.proc = proc;
dff98306 4111 debug.info->a.args = scm_list_1 (arg1);
da7f71d7 4112#endif
ddd8f927 4113 goto evap1;
da7f71d7 4114 }
2ca0d207
DH
4115 else
4116 goto badfun;
0f2d19dd
JB
4117 case scm_tc7_subr_1:
4118 case scm_tc7_subr_2:
4119 case scm_tc7_subr_2o:
14b18ed6 4120 case scm_tc7_dsubr:
0f2d19dd
JB
4121 case scm_tc7_cxr:
4122 case scm_tc7_subr_3:
4123 case scm_tc7_lsubr_2:
212e58ed 4124 wrongnumargs:
f5bf2977 4125 scm_wrong_num_args (proc);
0f2d19dd 4126 default:
ddd8f927
DH
4127 badfun:
4128 scm_misc_error (NULL, "Wrong type to apply: ~S", scm_list_1 (proc));
0f2d19dd 4129 }
6dbd0af5 4130 }
0f2d19dd
JB
4131
4132 /* must handle macros by here */
4133 x = SCM_CDR (x);
a61f4e0c 4134 if (scm_is_pair (x))
dff98306 4135 arg1 = EVALCAR (x, env);
680ed4a8 4136 else
ab1f1094 4137 scm_wrong_num_args (proc);
6dbd0af5 4138#ifdef DEVAL
dff98306 4139 debug.info->a.args = scm_list_1 (arg1);
6dbd0af5 4140#endif
0f2d19dd 4141 x = SCM_CDR (x);
42030fb2
DH
4142 {
4143 SCM arg2;
a61f4e0c 4144 if (scm_is_null (x))
42030fb2
DH
4145 {
4146 ENTER_APPLY;
4147 evap1: /* inputs: proc, arg1 */
ddd8f927 4148 SCM_ASRTGO (!SCM_IMP (proc), badfun);
42030fb2
DH
4149 switch (SCM_TYP7 (proc))
4150 { /* have one argument in arg1 */
4151 case scm_tc7_subr_2o:
4152 RETURN (SCM_SUBRF (proc) (arg1, SCM_UNDEFINED));
4153 case scm_tc7_subr_1:
4154 case scm_tc7_subr_1o:
4155 RETURN (SCM_SUBRF (proc) (arg1));
14b18ed6 4156 case scm_tc7_dsubr:
e11e83f3 4157 if (SCM_I_INUMP (arg1))
14b18ed6 4158 {
d9a67fc4 4159 RETURN (scm_from_double (SCM_DSUBRF (proc) ((double) SCM_I_INUM (arg1))));
14b18ed6
DH
4160 }
4161 else if (SCM_REALP (arg1))
4162 {
d9a67fc4 4163 RETURN (scm_from_double (SCM_DSUBRF (proc) (SCM_REAL_VALUE (arg1))));
14b18ed6
DH
4164 }
4165 else if (SCM_BIGP (arg1))
4166 {
d9a67fc4 4167 RETURN (scm_from_double (SCM_DSUBRF (proc) (scm_i_big2dbl (arg1))));
14b18ed6 4168 }
f92e85f7
MV
4169 else if (SCM_FRACTIONP (arg1))
4170 {
d9a67fc4 4171 RETURN (scm_from_double (SCM_DSUBRF (proc) (scm_i_fraction2double (arg1))));
f92e85f7
MV
4172 }
4173 SCM_WTA_DISPATCH_1 (*SCM_SUBR_GENERIC (proc), arg1,
cc95e00a
MV
4174 SCM_ARG1,
4175 scm_i_symbol_chars (SCM_SNAME (proc)));
42030fb2 4176 case scm_tc7_cxr:
a61f4e0c 4177 RETURN (scm_i_chase_pairs (arg1, (scm_t_bits) SCM_SUBRF (proc)));
42030fb2
DH
4178 case scm_tc7_rpsubr:
4179 RETURN (SCM_BOOL_T);
4180 case scm_tc7_asubr:
4181 RETURN (SCM_SUBRF (proc) (arg1, SCM_UNDEFINED));
4182 case scm_tc7_lsubr:
0f2d19dd 4183#ifdef DEVAL
42030fb2 4184 RETURN (SCM_SUBRF (proc) (debug.info->a.args));
0f2d19dd 4185#else
42030fb2 4186 RETURN (SCM_SUBRF (proc) (scm_list_1 (arg1)));
0f2d19dd 4187#endif
42030fb2
DH
4188 case scm_tc7_smob:
4189 if (!SCM_SMOB_APPLICABLE_P (proc))
4190 goto badfun;
4191 RETURN (SCM_SMOB_APPLY_1 (proc, arg1));
4192 case scm_tc7_cclo:
4193 arg2 = arg1;
4194 arg1 = proc;
4195 proc = SCM_CCLO_SUBR (proc);
6dbd0af5 4196#ifdef DEVAL
42030fb2
DH
4197 debug.info->a.args = scm_cons (arg1, debug.info->a.args);
4198 debug.info->a.proc = proc;
6dbd0af5 4199#endif
42030fb2
DH
4200 goto evap2;
4201 case scm_tc7_pws:
4202 proc = SCM_PROCEDURE (proc);
89efbff4 4203#ifdef DEVAL
42030fb2 4204 debug.info->a.proc = proc;
89efbff4 4205#endif
42030fb2
DH
4206 if (!SCM_CLOSUREP (proc))
4207 goto evap1;
ddd8f927 4208 /* fallthrough */
42030fb2 4209 case scm_tcs_closures:
ddd8f927
DH
4210 {
4211 /* clos1: */
4212 const SCM formals = SCM_CLOSURE_FORMALS (proc);
a61f4e0c
MV
4213 if (scm_is_null (formals)
4214 || (scm_is_pair (formals) && scm_is_pair (SCM_CDR (formals))))
212e58ed 4215 goto wrongnumargs;
ddd8f927 4216 x = SCM_CLOSURE_BODY (proc);
0f2d19dd 4217#ifdef DEVAL
ddd8f927
DH
4218 env = SCM_EXTEND_ENV (formals,
4219 debug.info->a.args,
4220 SCM_ENV (proc));
0f2d19dd 4221#else
ddd8f927
DH
4222 env = SCM_EXTEND_ENV (formals,
4223 scm_list_1 (arg1),
4224 SCM_ENV (proc));
0f2d19dd 4225#endif
ddd8f927
DH
4226 goto nontoplevel_begin;
4227 }
42030fb2
DH
4228 case scm_tcs_struct:
4229 if (SCM_OBJ_CLASS_FLAGS (proc) & SCM_CLASSF_PURE_GENERIC)
4230 {
4231 x = SCM_ENTITY_PROCEDURE (proc);
f3d2630a 4232#ifdef DEVAL
42030fb2 4233 arg1 = debug.info->a.args;
f3d2630a 4234#else
42030fb2 4235 arg1 = scm_list_1 (arg1);
f3d2630a 4236#endif
42030fb2
DH
4237 goto type_dispatch;
4238 }
2ca0d207 4239 else if (SCM_I_OPERATORP (proc))
42030fb2
DH
4240 {
4241 arg2 = arg1;
4242 arg1 = proc;
4243 proc = (SCM_I_ENTITYP (proc)
4244 ? SCM_ENTITY_PROCEDURE (proc)
4245 : SCM_OPERATOR_PROCEDURE (proc));
0c32d76c 4246#ifdef DEVAL
42030fb2
DH
4247 debug.info->a.args = scm_cons (arg1, debug.info->a.args);
4248 debug.info->a.proc = proc;
0c32d76c 4249#endif
ddd8f927 4250 goto evap2;
42030fb2 4251 }
2ca0d207
DH
4252 else
4253 goto badfun;
42030fb2
DH
4254 case scm_tc7_subr_2:
4255 case scm_tc7_subr_0:
4256 case scm_tc7_subr_3:
4257 case scm_tc7_lsubr_2:
ab1f1094 4258 scm_wrong_num_args (proc);
42030fb2
DH
4259 default:
4260 goto badfun;
4261 }
4262 }
a61f4e0c 4263 if (scm_is_pair (x))
42030fb2
DH
4264 arg2 = EVALCAR (x, env);
4265 else
ab1f1094 4266 scm_wrong_num_args (proc);
bd987b8e 4267
42030fb2 4268 { /* have two or more arguments */
6dbd0af5 4269#ifdef DEVAL
42030fb2 4270 debug.info->a.args = scm_list_2 (arg1, arg2);
6dbd0af5 4271#endif
42030fb2 4272 x = SCM_CDR (x);
a61f4e0c 4273 if (scm_is_null (x)) {
42030fb2
DH
4274 ENTER_APPLY;
4275 evap2:
ddd8f927 4276 SCM_ASRTGO (!SCM_IMP (proc), badfun);
42030fb2
DH
4277 switch (SCM_TYP7 (proc))
4278 { /* have two arguments */
4279 case scm_tc7_subr_2:
4280 case scm_tc7_subr_2o:
4281 RETURN (SCM_SUBRF (proc) (arg1, arg2));
4282 case scm_tc7_lsubr:
0f2d19dd 4283#ifdef DEVAL
42030fb2 4284 RETURN (SCM_SUBRF (proc) (debug.info->a.args));
6dbd0af5 4285#else
42030fb2
DH
4286 RETURN (SCM_SUBRF (proc) (scm_list_2 (arg1, arg2)));
4287#endif
4288 case scm_tc7_lsubr_2:
4289 RETURN (SCM_SUBRF (proc) (arg1, arg2, SCM_EOL));
4290 case scm_tc7_rpsubr:
4291 case scm_tc7_asubr:
4292 RETURN (SCM_SUBRF (proc) (arg1, arg2));
4293 case scm_tc7_smob:
4294 if (!SCM_SMOB_APPLICABLE_P (proc))
4295 goto badfun;
4296 RETURN (SCM_SMOB_APPLY_2 (proc, arg1, arg2));
4297 cclon:
4298 case scm_tc7_cclo:
0f2d19dd 4299#ifdef DEVAL
42030fb2
DH
4300 RETURN (SCM_APPLY (SCM_CCLO_SUBR (proc),
4301 scm_cons (proc, debug.info->a.args),
4302 SCM_EOL));
0f2d19dd 4303#else
42030fb2
DH
4304 RETURN (SCM_APPLY (SCM_CCLO_SUBR (proc),
4305 scm_cons2 (proc, arg1,
4306 scm_cons (arg2,
4307 scm_eval_args (x,
4308 env,
4309 proc))),
4310 SCM_EOL));
4311#endif
4312 case scm_tcs_struct:
4313 if (SCM_OBJ_CLASS_FLAGS (proc) & SCM_CLASSF_PURE_GENERIC)
4314 {
4315 x = SCM_ENTITY_PROCEDURE (proc);
4316#ifdef DEVAL
4317 arg1 = debug.info->a.args;
4318#else
4319 arg1 = scm_list_2 (arg1, arg2);
6dbd0af5 4320#endif
42030fb2
DH
4321 goto type_dispatch;
4322 }
2ca0d207 4323 else if (SCM_I_OPERATORP (proc))
42030fb2
DH
4324 {
4325 operatorn:
f3d2630a 4326#ifdef DEVAL
42030fb2
DH
4327 RETURN (SCM_APPLY (SCM_I_ENTITYP (proc)
4328 ? SCM_ENTITY_PROCEDURE (proc)
4329 : SCM_OPERATOR_PROCEDURE (proc),
4330 scm_cons (proc, debug.info->a.args),
4331 SCM_EOL));
f3d2630a 4332#else
42030fb2
DH
4333 RETURN (SCM_APPLY (SCM_I_ENTITYP (proc)
4334 ? SCM_ENTITY_PROCEDURE (proc)
4335 : SCM_OPERATOR_PROCEDURE (proc),
4336 scm_cons2 (proc, arg1,
4337 scm_cons (arg2,
4338 scm_eval_args (x,
4339 env,
4340 proc))),
4341 SCM_EOL));
f3d2630a 4342#endif
42030fb2 4343 }
2ca0d207
DH
4344 else
4345 goto badfun;
42030fb2 4346 case scm_tc7_subr_0:
14b18ed6 4347 case scm_tc7_dsubr:
42030fb2
DH
4348 case scm_tc7_cxr:
4349 case scm_tc7_subr_1o:
4350 case scm_tc7_subr_1:
4351 case scm_tc7_subr_3:
ab1f1094 4352 scm_wrong_num_args (proc);
42030fb2 4353 default:
9b07e212 4354 goto badfun;
42030fb2
DH
4355 case scm_tc7_pws:
4356 proc = SCM_PROCEDURE (proc);
4357#ifdef DEVAL
4358 debug.info->a.proc = proc;
4359#endif
4360 if (!SCM_CLOSUREP (proc))
4361 goto evap2;
ddd8f927 4362 /* fallthrough */
42030fb2 4363 case scm_tcs_closures:
ddd8f927
DH
4364 {
4365 /* clos2: */
4366 const SCM formals = SCM_CLOSURE_FORMALS (proc);
a61f4e0c
MV
4367 if (scm_is_null (formals)
4368 || (scm_is_pair (formals)
4369 && (scm_is_null (SCM_CDR (formals))
4370 || (scm_is_pair (SCM_CDR (formals))
4371 && scm_is_pair (SCM_CDDR (formals))))))
212e58ed 4372 goto wrongnumargs;
0c32d76c 4373#ifdef DEVAL
ddd8f927
DH
4374 env = SCM_EXTEND_ENV (formals,
4375 debug.info->a.args,
4376 SCM_ENV (proc));
195847fa 4377#else
ddd8f927
DH
4378 env = SCM_EXTEND_ENV (formals,
4379 scm_list_2 (arg1, arg2),
4380 SCM_ENV (proc));
195847fa 4381#endif
ddd8f927
DH
4382 x = SCM_CLOSURE_BODY (proc);
4383 goto nontoplevel_begin;
4384 }
42030fb2
DH
4385 }
4386 }
a61f4e0c 4387 if (!scm_is_pair (x))
ab1f1094 4388 scm_wrong_num_args (proc);
42030fb2
DH
4389#ifdef DEVAL
4390 debug.info->a.args = scm_cons2 (arg1, arg2,
4391 deval_args (x, env, proc,
4392 SCM_CDRLOC (SCM_CDR (debug.info->a.args))));
4393#endif
4394 ENTER_APPLY;
4395 evap3:
ddd8f927 4396 SCM_ASRTGO (!SCM_IMP (proc), badfun);
42030fb2
DH
4397 switch (SCM_TYP7 (proc))
4398 { /* have 3 or more arguments */
4399#ifdef DEVAL
6dbd0af5 4400 case scm_tc7_subr_3:
a61f4e0c 4401 if (!scm_is_null (SCM_CDR (x)))
ab1f1094
DH
4402 scm_wrong_num_args (proc);
4403 else
4404 RETURN (SCM_SUBRF (proc) (arg1, arg2,
4405 SCM_CADDR (debug.info->a.args)));
42030fb2
DH
4406 case scm_tc7_asubr:
4407 arg1 = SCM_SUBRF(proc)(arg1, arg2);
4408 arg2 = SCM_CDDR (debug.info->a.args);
4409 do
4410 {
4411 arg1 = SCM_SUBRF(proc)(arg1, SCM_CAR (arg2));
4412 arg2 = SCM_CDR (arg2);
4413 }
4414 while (SCM_NIMP (arg2));
4415 RETURN (arg1);
4416 case scm_tc7_rpsubr:
7888309b 4417 if (scm_is_false (SCM_SUBRF (proc) (arg1, arg2)))
42030fb2
DH
4418 RETURN (SCM_BOOL_F);
4419 arg1 = SCM_CDDR (debug.info->a.args);
4420 do
4421 {
7888309b 4422 if (scm_is_false (SCM_SUBRF (proc) (arg2, SCM_CAR (arg1))))
42030fb2
DH
4423 RETURN (SCM_BOOL_F);
4424 arg2 = SCM_CAR (arg1);
4425 arg1 = SCM_CDR (arg1);
4426 }
4427 while (SCM_NIMP (arg1));
4428 RETURN (SCM_BOOL_T);
4429 case scm_tc7_lsubr_2:
4430 RETURN (SCM_SUBRF (proc) (arg1, arg2,
4431 SCM_CDDR (debug.info->a.args)));
4432 case scm_tc7_lsubr:
4433 RETURN (SCM_SUBRF (proc) (debug.info->a.args));
4434 case scm_tc7_smob:
4435 if (!SCM_SMOB_APPLICABLE_P (proc))
4436 goto badfun;
4437 RETURN (SCM_SMOB_APPLY_3 (proc, arg1, arg2,
4438 SCM_CDDR (debug.info->a.args)));
4439 case scm_tc7_cclo:
4440 goto cclon;
002f1a5d
MD
4441 case scm_tc7_pws:
4442 proc = SCM_PROCEDURE (proc);
002f1a5d 4443 debug.info->a.proc = proc;
002f1a5d 4444 if (!SCM_CLOSUREP (proc))
42030fb2 4445 goto evap3;
ddd8f927 4446 /* fallthrough */
6dbd0af5 4447 case scm_tcs_closures:
ddd8f927
DH
4448 {
4449 const SCM formals = SCM_CLOSURE_FORMALS (proc);
a61f4e0c
MV
4450 if (scm_is_null (formals)
4451 || (scm_is_pair (formals)
4452 && (scm_is_null (SCM_CDR (formals))
4453 || (scm_is_pair (SCM_CDR (formals))
ddd8f927 4454 && scm_badargsp (SCM_CDDR (formals), x)))))
212e58ed 4455 goto wrongnumargs;
ddd8f927
DH
4456 SCM_SET_ARGSREADY (debug);
4457 env = SCM_EXTEND_ENV (formals,
4458 debug.info->a.args,
4459 SCM_ENV (proc));
4460 x = SCM_CLOSURE_BODY (proc);
4461 goto nontoplevel_begin;
4462 }
6dbd0af5 4463#else /* DEVAL */
42030fb2 4464 case scm_tc7_subr_3:
a61f4e0c 4465 if (!scm_is_null (SCM_CDR (x)))
ab1f1094
DH
4466 scm_wrong_num_args (proc);
4467 else
4468 RETURN (SCM_SUBRF (proc) (arg1, arg2, EVALCAR (x, env)));
42030fb2
DH
4469 case scm_tc7_asubr:
4470 arg1 = SCM_SUBRF (proc) (arg1, arg2);
4471 do
4472 {
4473 arg1 = SCM_SUBRF(proc)(arg1, EVALCAR(x, env));
4474 x = SCM_CDR(x);
4475 }
a61f4e0c 4476 while (!scm_is_null (x));
42030fb2
DH
4477 RETURN (arg1);
4478 case scm_tc7_rpsubr:
7888309b 4479 if (scm_is_false (SCM_SUBRF (proc) (arg1, arg2)))
42030fb2
DH
4480 RETURN (SCM_BOOL_F);
4481 do
4482 {
4483 arg1 = EVALCAR (x, env);
7888309b 4484 if (scm_is_false (SCM_SUBRF (proc) (arg2, arg1)))
42030fb2
DH
4485 RETURN (SCM_BOOL_F);
4486 arg2 = arg1;
4487 x = SCM_CDR (x);
4488 }
a61f4e0c 4489 while (!scm_is_null (x));
42030fb2
DH
4490 RETURN (SCM_BOOL_T);
4491 case scm_tc7_lsubr_2:
4492 RETURN (SCM_SUBRF (proc) (arg1, arg2, scm_eval_args (x, env, proc)));
4493 case scm_tc7_lsubr:
4494 RETURN (SCM_SUBRF (proc) (scm_cons2 (arg1,
4495 arg2,
4496 scm_eval_args (x, env, proc))));
4497 case scm_tc7_smob:
4498 if (!SCM_SMOB_APPLICABLE_P (proc))
4499 goto badfun;
4500 RETURN (SCM_SMOB_APPLY_3 (proc, arg1, arg2,
4501 scm_eval_args (x, env, proc)));
4502 case scm_tc7_cclo:
4503 goto cclon;
4504 case scm_tc7_pws:
4505 proc = SCM_PROCEDURE (proc);
4506 if (!SCM_CLOSUREP (proc))
4507 goto evap3;
ddd8f927
DH
4508 /* fallthrough */
4509 case scm_tcs_closures:
da7f71d7 4510 {
ddd8f927 4511 const SCM formals = SCM_CLOSURE_FORMALS (proc);
a61f4e0c
MV
4512 if (scm_is_null (formals)
4513 || (scm_is_pair (formals)
4514 && (scm_is_null (SCM_CDR (formals))
4515 || (scm_is_pair (SCM_CDR (formals))
42030fb2 4516 && scm_badargsp (SCM_CDDR (formals), x)))))
212e58ed 4517 goto wrongnumargs;
ddd8f927
DH
4518 env = SCM_EXTEND_ENV (formals,
4519 scm_cons2 (arg1,
4520 arg2,
4521 scm_eval_args (x, env, proc)),
4522 SCM_ENV (proc));
4523 x = SCM_CLOSURE_BODY (proc);
4524 goto nontoplevel_begin;
da7f71d7 4525 }
0f2d19dd 4526#endif /* DEVAL */
42030fb2
DH
4527 case scm_tcs_struct:
4528 if (SCM_OBJ_CLASS_FLAGS (proc) & SCM_CLASSF_PURE_GENERIC)
4529 {
f3d2630a 4530#ifdef DEVAL
42030fb2 4531 arg1 = debug.info->a.args;
f3d2630a 4532#else
42030fb2 4533 arg1 = scm_cons2 (arg1, arg2, scm_eval_args (x, env, proc));
f3d2630a 4534#endif
42030fb2
DH
4535 x = SCM_ENTITY_PROCEDURE (proc);
4536 goto type_dispatch;
4537 }
2ca0d207 4538 else if (SCM_I_OPERATORP (proc))
42030fb2 4539 goto operatorn;
2ca0d207
DH
4540 else
4541 goto badfun;
42030fb2
DH
4542 case scm_tc7_subr_2:
4543 case scm_tc7_subr_1o:
4544 case scm_tc7_subr_2o:
4545 case scm_tc7_subr_0:
14b18ed6 4546 case scm_tc7_dsubr:
42030fb2
DH
4547 case scm_tc7_cxr:
4548 case scm_tc7_subr_1:
ab1f1094 4549 scm_wrong_num_args (proc);
42030fb2 4550 default:
9b07e212 4551 goto badfun;
42030fb2
DH
4552 }
4553 }
0f2d19dd
JB
4554 }
4555#ifdef DEVAL
6dbd0af5 4556exit:
5132eef0 4557 if (scm_check_exit_p && SCM_TRAPS_P)
b7ff98dd 4558 if (SCM_EXIT_FRAME_P || (SCM_TRACE_P && SCM_TRACED_FRAME_P (debug)))
6dbd0af5 4559 {
b7ff98dd
MD
4560 SCM_CLEAR_TRACED_FRAME (debug);
4561 if (SCM_CHEAPTRAPS_P)
dff98306 4562 arg1 = scm_make_debugobj (&debug);
6dbd0af5
MD
4563 else
4564 {
5f144b10
GH
4565 int first;
4566 SCM val = scm_make_continuation (&first);
e050d4f8 4567
5f144b10 4568 if (first)
dff98306 4569 arg1 = val;
5f144b10 4570 else
6dbd0af5 4571 {
5f144b10 4572 proc = val;
6dbd0af5
MD
4573 goto ret;
4574 }
4575 }
d95c0b76 4576 SCM_TRAPS_P = 0;
dff98306 4577 scm_call_3 (SCM_EXIT_FRAME_HDLR, scm_sym_exit_frame, arg1, proc);
d95c0b76 4578 SCM_TRAPS_P = 1;
6dbd0af5
MD
4579 }
4580ret:
1646d37b 4581 scm_last_debug_frame = debug.prev;
0f2d19dd
JB
4582 return proc;
4583#endif
4584}
4585
6dbd0af5
MD
4586
4587/* SECTION: This code is compiled once.
4588 */
4589
0f2d19dd
JB
4590#ifndef DEVAL
4591
fdc28395 4592\f
d0b07b5d 4593
fdc28395
KN
4594/* Simple procedure calls
4595 */
4596
4597SCM
4598scm_call_0 (SCM proc)
4599{
4600 return scm_apply (proc, SCM_EOL, SCM_EOL);
4601}
4602
4603SCM
4604scm_call_1 (SCM proc, SCM arg1)
4605{
4606 return scm_apply (proc, arg1, scm_listofnull);
4607}
4608
4609SCM
4610scm_call_2 (SCM proc, SCM arg1, SCM arg2)
4611{
4612 return scm_apply (proc, arg1, scm_cons (arg2, scm_listofnull));
4613}
4614
4615SCM
4616scm_call_3 (SCM proc, SCM arg1, SCM arg2, SCM arg3)
4617{
4618 return scm_apply (proc, arg1, scm_cons2 (arg2, arg3, scm_listofnull));
4619}
4620
d95c0b76
NJ
4621SCM
4622scm_call_4 (SCM proc, SCM arg1, SCM arg2, SCM arg3, SCM arg4)
4623{
4624 return scm_apply (proc, arg1, scm_cons2 (arg2, arg3,
4625 scm_cons (arg4, scm_listofnull)));
4626}
4627
fdc28395
KN
4628/* Simple procedure applies
4629 */
4630
4631SCM
4632scm_apply_0 (SCM proc, SCM args)
4633{
4634 return scm_apply (proc, args, SCM_EOL);
4635}
4636
4637SCM
4638scm_apply_1 (SCM proc, SCM arg1, SCM args)
4639{
4640 return scm_apply (proc, scm_cons (arg1, args), SCM_EOL);
4641}
4642
4643SCM
4644scm_apply_2 (SCM proc, SCM arg1, SCM arg2, SCM args)
4645{
4646 return scm_apply (proc, scm_cons2 (arg1, arg2, args), SCM_EOL);
4647}
4648
4649SCM
4650scm_apply_3 (SCM proc, SCM arg1, SCM arg2, SCM arg3, SCM args)
4651{
4652 return scm_apply (proc, scm_cons (arg1, scm_cons2 (arg2, arg3, args)),
4653 SCM_EOL);
4654}
4655
82a2622a 4656/* This code processes the arguments to apply:
b145c172
JB
4657
4658 (apply PROC ARG1 ... ARGS)
4659
82a2622a
JB
4660 Given a list (ARG1 ... ARGS), this function conses the ARG1
4661 ... arguments onto the front of ARGS, and returns the resulting
4662 list. Note that ARGS is a list; thus, the argument to this
4663 function is a list whose last element is a list.
4664
4665 Apply calls this function, and applies PROC to the elements of the
b145c172
JB
4666 result. apply:nconc2last takes care of building the list of
4667 arguments, given (ARG1 ... ARGS).
4668
82a2622a
JB
4669 Rather than do new consing, apply:nconc2last destroys its argument.
4670 On that topic, this code came into my care with the following
4671 beautifully cryptic comment on that topic: "This will only screw
4672 you if you do (scm_apply scm_apply '( ... ))" If you know what
4673 they're referring to, send me a patch to this comment. */
b145c172 4674
3b3b36dd 4675SCM_DEFINE (scm_nconc2last, "apply:nconc2last", 1, 0, 0,
b3f26b14
MG
4676 (SCM lst),
4677 "Given a list (@var{arg1} @dots{} @var{args}), this function\n"
4678 "conses the @var{arg1} @dots{} arguments onto the front of\n"
4679 "@var{args}, and returns the resulting list. Note that\n"
4680 "@var{args} is a list; thus, the argument to this function is\n"
4681 "a list whose last element is a list.\n"
4682 "Note: Rather than do new consing, @code{apply:nconc2last}\n"
4683 "destroys its argument, so use with care.")
1bbd0b84 4684#define FUNC_NAME s_scm_nconc2last
0f2d19dd
JB
4685{
4686 SCM *lloc;
34d19ef6 4687 SCM_VALIDATE_NONEMPTYLIST (1, lst);
0f2d19dd 4688 lloc = &lst;
a61f4e0c 4689 while (!scm_is_null (SCM_CDR (*lloc))) /* Perhaps should be
c96d76b8
NJ
4690 SCM_NULL_OR_NIL_P, but not
4691 needed in 99.99% of cases,
4692 and it could seriously hurt
4693 performance. - Neil */
a23afe53 4694 lloc = SCM_CDRLOC (*lloc);
1bbd0b84 4695 SCM_ASSERT (scm_ilength (SCM_CAR (*lloc)) >= 0, lst, SCM_ARG1, FUNC_NAME);
0f2d19dd
JB
4696 *lloc = SCM_CAR (*lloc);
4697 return lst;
4698}
1bbd0b84 4699#undef FUNC_NAME
0f2d19dd
JB
4700
4701#endif /* !DEVAL */
4702
6dbd0af5
MD
4703
4704/* SECTION: When DEVAL is defined this code yields scm_dapply.
4705 * It is compiled twice.
4706 */
4707
0f2d19dd 4708#if 0
0f2d19dd 4709SCM
6e8d25a6 4710scm_apply (SCM proc, SCM arg1, SCM args)
0f2d19dd
JB
4711{}
4712#endif
4713
4714#if 0
0f2d19dd 4715SCM
6e8d25a6 4716scm_dapply (SCM proc, SCM arg1, SCM args)
d0b07b5d 4717{}
0f2d19dd
JB
4718#endif
4719
1cc91f1b 4720
82a2622a
JB
4721/* Apply a function to a list of arguments.
4722
4723 This function is exported to the Scheme level as taking two
4724 required arguments and a tail argument, as if it were:
4725 (lambda (proc arg1 . args) ...)
4726 Thus, if you just have a list of arguments to pass to a procedure,
4727 pass the list as ARG1, and '() for ARGS. If you have some fixed
4728 args, pass the first as ARG1, then cons any remaining fixed args
4729 onto the front of your argument list, and pass that as ARGS. */
4730
0f2d19dd 4731SCM
1bbd0b84 4732SCM_APPLY (SCM proc, SCM arg1, SCM args)
0f2d19dd 4733{
0f2d19dd 4734#ifdef DEVAL
92c2555f
MV
4735 scm_t_debug_frame debug;
4736 scm_t_debug_info debug_vect_body;
1646d37b 4737 debug.prev = scm_last_debug_frame;
b7ff98dd 4738 debug.status = SCM_APPLYFRAME;
c0ab1b8d 4739 debug.vect = &debug_vect_body;
6dbd0af5
MD
4740 debug.vect[0].a.proc = proc;
4741 debug.vect[0].a.args = SCM_EOL;
1646d37b 4742 scm_last_debug_frame = &debug;
0f2d19dd 4743#else
434f2f7a 4744 if (scm_debug_mode_p)
0f2d19dd 4745 return scm_dapply (proc, arg1, args);
0f2d19dd
JB
4746#endif
4747
4748 SCM_ASRTGO (SCM_NIMP (proc), badproc);
82a2622a
JB
4749
4750 /* If ARGS is the empty list, then we're calling apply with only two
4751 arguments --- ARG1 is the list of arguments for PROC. Whatever
4752 the case, futz with things so that ARG1 is the first argument to
4753 give to PROC (or SCM_UNDEFINED if no args), and ARGS contains the
30000774
JB
4754 rest.
4755
4756 Setting the debug apply frame args this way is pretty messy.
4757 Perhaps we should store arg1 and args directly in the frame as
4758 received, and let scm_frame_arguments unpack them, because that's
4759 a relatively rare operation. This works for now; if the Guile
4760 developer archives are still around, see Mikael's post of
4761 11-Apr-97. */
a61f4e0c 4762 if (scm_is_null (args))
0f2d19dd 4763 {
a61f4e0c 4764 if (scm_is_null (arg1))
30000774
JB
4765 {
4766 arg1 = SCM_UNDEFINED;
4767#ifdef DEVAL
4768 debug.vect[0].a.args = SCM_EOL;
4769#endif
4770 }
0f2d19dd
JB
4771 else
4772 {
30000774
JB
4773#ifdef DEVAL
4774 debug.vect[0].a.args = arg1;
4775#endif
0f2d19dd
JB
4776 args = SCM_CDR (arg1);
4777 arg1 = SCM_CAR (arg1);
4778 }
4779 }
4780 else
4781 {
0f2d19dd 4782 args = scm_nconc2last (args);
30000774
JB
4783#ifdef DEVAL
4784 debug.vect[0].a.args = scm_cons (arg1, args);
4785#endif
0f2d19dd 4786 }
0f2d19dd 4787#ifdef DEVAL
b6d75948 4788 if (SCM_ENTER_FRAME_P && SCM_TRAPS_P)
6dbd0af5
MD
4789 {
4790 SCM tmp;
b7ff98dd 4791 if (SCM_CHEAPTRAPS_P)
c0ab1b8d 4792 tmp = scm_make_debugobj (&debug);
6dbd0af5
MD
4793 else
4794 {
5f144b10
GH
4795 int first;
4796
4797 tmp = scm_make_continuation (&first);
4798 if (!first)
6dbd0af5
MD
4799 goto entap;
4800 }
d95c0b76
NJ
4801 SCM_TRAPS_P = 0;
4802 scm_call_2 (SCM_ENTER_FRAME_HDLR, scm_sym_enter_frame, tmp);
4803 SCM_TRAPS_P = 1;
6dbd0af5
MD
4804 }
4805entap:
4806 ENTER_APPLY;
4807#endif
6dbd0af5 4808tail:
0f2d19dd
JB
4809 switch (SCM_TYP7 (proc))
4810 {
4811 case scm_tc7_subr_2o:
a61f4e0c 4812 args = scm_is_null (args) ? SCM_UNDEFINED : SCM_CAR (args);
ddea3325 4813 RETURN (SCM_SUBRF (proc) (arg1, args));
0f2d19dd 4814 case scm_tc7_subr_2:
a61f4e0c 4815 if (scm_is_null (args) || !scm_is_null (SCM_CDR (args)))
ab1f1094 4816 scm_wrong_num_args (proc);
0f2d19dd 4817 args = SCM_CAR (args);
ddea3325 4818 RETURN (SCM_SUBRF (proc) (arg1, args));
0f2d19dd 4819 case scm_tc7_subr_0:
ab1f1094
DH
4820 if (!SCM_UNBNDP (arg1))
4821 scm_wrong_num_args (proc);
4822 else
4823 RETURN (SCM_SUBRF (proc) ());
0f2d19dd 4824 case scm_tc7_subr_1:
ab1f1094
DH
4825 if (SCM_UNBNDP (arg1))
4826 scm_wrong_num_args (proc);
0f2d19dd 4827 case scm_tc7_subr_1o:
a61f4e0c 4828 if (!scm_is_null (args))
ab1f1094
DH
4829 scm_wrong_num_args (proc);
4830 else
4831 RETURN (SCM_SUBRF (proc) (arg1));
14b18ed6 4832 case scm_tc7_dsubr:
a61f4e0c 4833 if (SCM_UNBNDP (arg1) || !scm_is_null (args))
14b18ed6 4834 scm_wrong_num_args (proc);
e11e83f3 4835 if (SCM_I_INUMP (arg1))
14b18ed6 4836 {
d9a67fc4 4837 RETURN (scm_from_double (SCM_DSUBRF (proc) ((double) SCM_I_INUM (arg1))));
14b18ed6
DH
4838 }
4839 else if (SCM_REALP (arg1))
4840 {
d9a67fc4 4841 RETURN (scm_from_double (SCM_DSUBRF (proc) (SCM_REAL_VALUE (arg1))));
14b18ed6
DH
4842 }
4843 else if (SCM_BIGP (arg1))
f92e85f7 4844 {
d9a67fc4 4845 RETURN (scm_from_double (SCM_DSUBRF (proc) (scm_i_big2dbl (arg1))));
f92e85f7
MV
4846 }
4847 else if (SCM_FRACTIONP (arg1))
4848 {
d9a67fc4 4849 RETURN (scm_from_double (SCM_DSUBRF (proc) (scm_i_fraction2double (arg1))));
f92e85f7 4850 }
14b18ed6 4851 SCM_WTA_DISPATCH_1 (*SCM_SUBR_GENERIC (proc), arg1,
cc95e00a 4852 SCM_ARG1, scm_i_symbol_chars (SCM_SNAME (proc)));
0f2d19dd 4853 case scm_tc7_cxr:
a61f4e0c 4854 if (SCM_UNBNDP (arg1) || !scm_is_null (args))
ab1f1094 4855 scm_wrong_num_args (proc);
a61f4e0c 4856 RETURN (scm_i_chase_pairs (arg1, (scm_t_bits) SCM_SUBRF (proc)));
0f2d19dd 4857 case scm_tc7_subr_3:
a61f4e0c
MV
4858 if (scm_is_null (args)
4859 || scm_is_null (SCM_CDR (args))
4860 || !scm_is_null (SCM_CDDR (args)))
ab1f1094
DH
4861 scm_wrong_num_args (proc);
4862 else
4863 RETURN (SCM_SUBRF (proc) (arg1, SCM_CAR (args), SCM_CADR (args)));
0f2d19dd
JB
4864 case scm_tc7_lsubr:
4865#ifdef DEVAL
ddea3325 4866 RETURN (SCM_SUBRF (proc) (SCM_UNBNDP (arg1) ? SCM_EOL : debug.vect[0].a.args));
0f2d19dd 4867#else
ddea3325 4868 RETURN (SCM_SUBRF (proc) (SCM_UNBNDP (arg1) ? SCM_EOL : scm_cons (arg1, args)));
0f2d19dd
JB
4869#endif
4870 case scm_tc7_lsubr_2:
a61f4e0c 4871 if (!scm_is_pair (args))
ab1f1094
DH
4872 scm_wrong_num_args (proc);
4873 else
4874 RETURN (SCM_SUBRF (proc) (arg1, SCM_CAR (args), SCM_CDR (args)));
0f2d19dd 4875 case scm_tc7_asubr:
a61f4e0c 4876 if (scm_is_null (args))
ddea3325 4877 RETURN (SCM_SUBRF (proc) (arg1, SCM_UNDEFINED));
0f2d19dd
JB
4878 while (SCM_NIMP (args))
4879 {
a61f4e0c 4880 SCM_ASSERT (scm_is_pair (args), args, SCM_ARG2, "apply");
0f2d19dd
JB
4881 arg1 = SCM_SUBRF (proc) (arg1, SCM_CAR (args));
4882 args = SCM_CDR (args);
4883 }
4884 RETURN (arg1);
4885 case scm_tc7_rpsubr:
a61f4e0c 4886 if (scm_is_null (args))
0f2d19dd
JB
4887 RETURN (SCM_BOOL_T);
4888 while (SCM_NIMP (args))
4889 {
a61f4e0c 4890 SCM_ASSERT (scm_is_pair (args), args, SCM_ARG2, "apply");
7888309b 4891 if (scm_is_false (SCM_SUBRF (proc) (arg1, SCM_CAR (args))))
0f2d19dd
JB
4892 RETURN (SCM_BOOL_F);
4893 arg1 = SCM_CAR (args);
4894 args = SCM_CDR (args);
4895 }
4896 RETURN (SCM_BOOL_T);
4897 case scm_tcs_closures:
4898#ifdef DEVAL
6dbd0af5 4899 arg1 = (SCM_UNBNDP (arg1) ? SCM_EOL : debug.vect[0].a.args);
0f2d19dd
JB
4900#else
4901 arg1 = (SCM_UNBNDP (arg1) ? SCM_EOL : scm_cons (arg1, args));
4902#endif
726d810a 4903 if (scm_badargsp (SCM_CLOSURE_FORMALS (proc), arg1))
ab1f1094 4904 scm_wrong_num_args (proc);
1609038c
MD
4905
4906 /* Copy argument list */
4907 if (SCM_IMP (arg1))
4908 args = arg1;
4909 else
4910 {
4911 SCM tl = args = scm_cons (SCM_CAR (arg1), SCM_UNSPECIFIED);
a61f4e0c 4912 for (arg1 = SCM_CDR (arg1); scm_is_pair (arg1); arg1 = SCM_CDR (arg1))
1609038c 4913 {
05b15362 4914 SCM_SETCDR (tl, scm_cons (SCM_CAR (arg1), SCM_UNSPECIFIED));
1609038c
MD
4915 tl = SCM_CDR (tl);
4916 }
4917 SCM_SETCDR (tl, arg1);
4918 }
4919
821f18a4
DH
4920 args = SCM_EXTEND_ENV (SCM_CLOSURE_FORMALS (proc),
4921 args,
4922 SCM_ENV (proc));
f9450cdb 4923 proc = SCM_CLOSURE_BODY (proc);
e791c18f 4924 again:
05b15362 4925 arg1 = SCM_CDR (proc);
a61f4e0c 4926 while (!scm_is_null (arg1))
2ddb0920
MD
4927 {
4928 if (SCM_IMP (SCM_CAR (proc)))
4929 {
4930 if (SCM_ISYMP (SCM_CAR (proc)))
4931 {
76da80e7 4932 scm_rec_mutex_lock (&source_mutex);
9bc4701c
MD
4933 /* check for race condition */
4934 if (SCM_ISYMP (SCM_CAR (proc)))
9d4bf6d3 4935 m_expand_body (proc, args);
76da80e7 4936 scm_rec_mutex_unlock (&source_mutex);
e791c18f 4937 goto again;
2ddb0920 4938 }
5280aaca 4939 else
17fa3fcf 4940 SCM_VALIDATE_NON_EMPTY_COMBINATION (SCM_CAR (proc));
2ddb0920
MD
4941 }
4942 else
b1cb24ff 4943 (void) EVAL (SCM_CAR (proc), args);
e791c18f 4944 proc = arg1;
05b15362 4945 arg1 = SCM_CDR (proc);
2ddb0920 4946 }
e791c18f 4947 RETURN (EVALCAR (proc, args));
0717dfd8 4948 case scm_tc7_smob:
68b06924 4949 if (!SCM_SMOB_APPLICABLE_P (proc))
0717dfd8 4950 goto badproc;
afa38f6e 4951 if (SCM_UNBNDP (arg1))
ddea3325 4952 RETURN (SCM_SMOB_APPLY_0 (proc));
a61f4e0c 4953 else if (scm_is_null (args))
ddea3325 4954 RETURN (SCM_SMOB_APPLY_1 (proc, arg1));
a61f4e0c 4955 else if (scm_is_null (SCM_CDR (args)))
ddea3325 4956 RETURN (SCM_SMOB_APPLY_2 (proc, arg1, SCM_CAR (args)));
0717dfd8 4957 else
68b06924 4958 RETURN (SCM_SMOB_APPLY_3 (proc, arg1, SCM_CAR (args), SCM_CDR (args)));
0f2d19dd
JB
4959 case scm_tc7_cclo:
4960#ifdef DEVAL
6dbd0af5
MD
4961 args = (SCM_UNBNDP(arg1) ? SCM_EOL : debug.vect[0].a.args);
4962 arg1 = proc;
4963 proc = SCM_CCLO_SUBR (proc);
4964 debug.vect[0].a.proc = proc;
4965 debug.vect[0].a.args = scm_cons (arg1, args);
0f2d19dd
JB
4966#else
4967 args = (SCM_UNBNDP(arg1) ? SCM_EOL : scm_cons (arg1, args));
0f2d19dd
JB
4968 arg1 = proc;
4969 proc = SCM_CCLO_SUBR (proc);
6dbd0af5 4970#endif
0f2d19dd 4971 goto tail;
89efbff4
MD
4972 case scm_tc7_pws:
4973 proc = SCM_PROCEDURE (proc);
4974#ifdef DEVAL
4975 debug.vect[0].a.proc = proc;
4976#endif
4977 goto tail;
904a077d 4978 case scm_tcs_struct:
f3d2630a
MD
4979 if (SCM_OBJ_CLASS_FLAGS (proc) & SCM_CLASSF_PURE_GENERIC)
4980 {
4981#ifdef DEVAL
4982 args = (SCM_UNBNDP(arg1) ? SCM_EOL : debug.vect[0].a.args);
4983#else
4984 args = (SCM_UNBNDP(arg1) ? SCM_EOL : scm_cons (arg1, args));
4985#endif
195847fa 4986 RETURN (scm_apply_generic (proc, args));
f3d2630a 4987 }
2ca0d207 4988 else if (SCM_I_OPERATORP (proc))
da7f71d7 4989 {
504d99c5 4990 /* operator */
da7f71d7
MD
4991#ifdef DEVAL
4992 args = (SCM_UNBNDP(arg1) ? SCM_EOL : debug.vect[0].a.args);
4993#else
4994 args = (SCM_UNBNDP(arg1) ? SCM_EOL : scm_cons (arg1, args));
4995#endif
4996 arg1 = proc;
195847fa
MD
4997 proc = (SCM_I_ENTITYP (proc)
4998 ? SCM_ENTITY_PROCEDURE (proc)
4999 : SCM_OPERATOR_PROCEDURE (proc));
da7f71d7
MD
5000#ifdef DEVAL
5001 debug.vect[0].a.proc = proc;
5002 debug.vect[0].a.args = scm_cons (arg1, args);
5003#endif
195847fa
MD
5004 if (SCM_NIMP (proc))
5005 goto tail;
5006 else
5007 goto badproc;
da7f71d7 5008 }
2ca0d207
DH
5009 else
5010 goto badproc;
0f2d19dd
JB
5011 default:
5012 badproc:
db4b4ca6 5013 scm_wrong_type_arg ("apply", SCM_ARG1, proc);
0f2d19dd
JB
5014 }
5015#ifdef DEVAL
6dbd0af5 5016exit:
5132eef0 5017 if (scm_check_exit_p && SCM_TRAPS_P)
b7ff98dd 5018 if (SCM_EXIT_FRAME_P || (SCM_TRACE_P && SCM_TRACED_FRAME_P (debug)))
6dbd0af5 5019 {
b7ff98dd
MD
5020 SCM_CLEAR_TRACED_FRAME (debug);
5021 if (SCM_CHEAPTRAPS_P)
c0ab1b8d 5022 arg1 = scm_make_debugobj (&debug);
6dbd0af5
MD
5023 else
5024 {
5f144b10
GH
5025 int first;
5026 SCM val = scm_make_continuation (&first);
5027
5028 if (first)
5029 arg1 = val;
5030 else
6dbd0af5 5031 {
5f144b10 5032 proc = val;
6dbd0af5
MD
5033 goto ret;
5034 }
5035 }
d95c0b76
NJ
5036 SCM_TRAPS_P = 0;
5037 scm_call_3 (SCM_EXIT_FRAME_HDLR, scm_sym_exit_frame, arg1, proc);
5038 SCM_TRAPS_P = 1;
6dbd0af5
MD
5039 }
5040ret:
1646d37b 5041 scm_last_debug_frame = debug.prev;
0f2d19dd
JB
5042 return proc;
5043#endif
5044}
5045
6dbd0af5
MD
5046
5047/* SECTION: The rest of this file is only read once.
5048 */
5049
0f2d19dd
JB
5050#ifndef DEVAL
5051
504d99c5
MD
5052/* Trampolines
5053 *
5054 * Trampolines make it possible to move procedure application dispatch
5055 * outside inner loops. The motivation was clean implementation of
5056 * efficient replacements of R5RS primitives in SRFI-1.
5057 *
5058 * The semantics is clear: scm_trampoline_N returns an optimized
5059 * version of scm_call_N (or NULL if the procedure isn't applicable
5060 * on N args).
5061 *
5062 * Applying the optimization to map and for-each increased efficiency
5063 * noticeably. For example, (map abs ls) is now 8 times faster than
5064 * before.
5065 */
5066
756414cf
MD
5067static SCM
5068call_subr0_0 (SCM proc)
5069{
5070 return SCM_SUBRF (proc) ();
5071}
5072
5073static SCM
5074call_subr1o_0 (SCM proc)
5075{
5076 return SCM_SUBRF (proc) (SCM_UNDEFINED);
5077}
5078
5079static SCM
5080call_lsubr_0 (SCM proc)
5081{
5082 return SCM_SUBRF (proc) (SCM_EOL);
5083}
5084
5085SCM
5086scm_i_call_closure_0 (SCM proc)
5087{
6a3f13f0
DH
5088 const SCM env = SCM_EXTEND_ENV (SCM_CLOSURE_FORMALS (proc),
5089 SCM_EOL,
5090 SCM_ENV (proc));
5091 const SCM result = scm_eval_body (SCM_CLOSURE_BODY (proc), env);
d0b07b5d 5092 return result;
756414cf
MD
5093}
5094
5095scm_t_trampoline_0
5096scm_trampoline_0 (SCM proc)
5097{
2510c810
DH
5098 scm_t_trampoline_0 trampoline;
5099
756414cf 5100 if (SCM_IMP (proc))
d0b07b5d 5101 return NULL;
2510c810 5102
756414cf
MD
5103 switch (SCM_TYP7 (proc))
5104 {
5105 case scm_tc7_subr_0:
2510c810
DH
5106 trampoline = call_subr0_0;
5107 break;
756414cf 5108 case scm_tc7_subr_1o:
2510c810
DH
5109 trampoline = call_subr1o_0;
5110 break;
756414cf 5111 case scm_tc7_lsubr:
2510c810
DH
5112 trampoline = call_lsubr_0;
5113 break;
756414cf
MD
5114 case scm_tcs_closures:
5115 {
5116 SCM formals = SCM_CLOSURE_FORMALS (proc);
a61f4e0c 5117 if (scm_is_null (formals) || !scm_is_pair (formals))
2510c810 5118 trampoline = scm_i_call_closure_0;
756414cf 5119 else
d0b07b5d 5120 return NULL;
2510c810 5121 break;
756414cf
MD
5122 }
5123 case scm_tcs_struct:
5124 if (SCM_OBJ_CLASS_FLAGS (proc) & SCM_CLASSF_PURE_GENERIC)
2510c810 5125 trampoline = scm_call_generic_0;
2ca0d207 5126 else if (SCM_I_OPERATORP (proc))
2510c810
DH
5127 trampoline = scm_call_0;
5128 else
5129 return NULL;
5130 break;
756414cf
MD
5131 case scm_tc7_smob:
5132 if (SCM_SMOB_APPLICABLE_P (proc))
2510c810 5133 trampoline = SCM_SMOB_DESCRIPTOR (proc).apply_0;
756414cf 5134 else
d0b07b5d 5135 return NULL;
2510c810 5136 break;
756414cf
MD
5137 case scm_tc7_asubr:
5138 case scm_tc7_rpsubr:
5139 case scm_tc7_cclo:
5140 case scm_tc7_pws:
2510c810
DH
5141 trampoline = scm_call_0;
5142 break;
756414cf 5143 default:
2510c810 5144 return NULL; /* not applicable on zero arguments */
756414cf 5145 }
2510c810
DH
5146 /* We only reach this point if a valid trampoline was determined. */
5147
5148 /* If debugging is enabled, we want to see all calls to proc on the stack.
5149 * Thus, we replace the trampoline shortcut with scm_call_0. */
434f2f7a 5150 if (scm_debug_mode_p)
2510c810
DH
5151 return scm_call_0;
5152 else
5153 return trampoline;
756414cf
MD
5154}
5155
504d99c5
MD
5156static SCM
5157call_subr1_1 (SCM proc, SCM arg1)
5158{
5159 return SCM_SUBRF (proc) (arg1);
5160}
5161
9ed24633
MD
5162static SCM
5163call_subr2o_1 (SCM proc, SCM arg1)
5164{
5165 return SCM_SUBRF (proc) (arg1, SCM_UNDEFINED);
5166}
5167
504d99c5
MD
5168static SCM
5169call_lsubr_1 (SCM proc, SCM arg1)
5170{
5171 return SCM_SUBRF (proc) (scm_list_1 (arg1));
5172}
5173
5174static SCM
5175call_dsubr_1 (SCM proc, SCM arg1)
5176{
e11e83f3 5177 if (SCM_I_INUMP (arg1))
504d99c5 5178 {
d9a67fc4 5179 RETURN (scm_from_double (SCM_DSUBRF (proc) ((double) SCM_I_INUM (arg1))));
504d99c5
MD
5180 }
5181 else if (SCM_REALP (arg1))
5182 {
d9a67fc4 5183 RETURN (scm_from_double (SCM_DSUBRF (proc) (SCM_REAL_VALUE (arg1))));
504d99c5 5184 }
504d99c5 5185 else if (SCM_BIGP (arg1))
f92e85f7 5186 {
d9a67fc4 5187 RETURN (scm_from_double (SCM_DSUBRF (proc) (scm_i_big2dbl (arg1))));
f92e85f7
MV
5188 }
5189 else if (SCM_FRACTIONP (arg1))
5190 {
d9a67fc4 5191 RETURN (scm_from_double (SCM_DSUBRF (proc) (scm_i_fraction2double (arg1))));
f92e85f7 5192 }
504d99c5 5193 SCM_WTA_DISPATCH_1 (*SCM_SUBR_GENERIC (proc), arg1,
cc95e00a 5194 SCM_ARG1, scm_i_symbol_chars (SCM_SNAME (proc)));
504d99c5
MD
5195}
5196
5197static SCM
5198call_cxr_1 (SCM proc, SCM arg1)
5199{
a61f4e0c 5200 return scm_i_chase_pairs (arg1, (scm_t_bits) SCM_SUBRF (proc));
504d99c5
MD
5201}
5202
5203static SCM
5204call_closure_1 (SCM proc, SCM arg1)
5205{
6a3f13f0
DH
5206 const SCM env = SCM_EXTEND_ENV (SCM_CLOSURE_FORMALS (proc),
5207 scm_list_1 (arg1),
5208 SCM_ENV (proc));
5209 const SCM result = scm_eval_body (SCM_CLOSURE_BODY (proc), env);
d0b07b5d 5210 return result;
504d99c5
MD
5211}
5212
5213scm_t_trampoline_1
5214scm_trampoline_1 (SCM proc)
5215{
2510c810
DH
5216 scm_t_trampoline_1 trampoline;
5217
504d99c5 5218 if (SCM_IMP (proc))
d0b07b5d 5219 return NULL;
2510c810 5220
504d99c5
MD
5221 switch (SCM_TYP7 (proc))
5222 {
5223 case scm_tc7_subr_1:
5224 case scm_tc7_subr_1o:
2510c810
DH
5225 trampoline = call_subr1_1;
5226 break;
9ed24633 5227 case scm_tc7_subr_2o:
2510c810
DH
5228 trampoline = call_subr2o_1;
5229 break;
504d99c5 5230 case scm_tc7_lsubr:
2510c810
DH
5231 trampoline = call_lsubr_1;
5232 break;
14b18ed6 5233 case scm_tc7_dsubr:
2510c810
DH
5234 trampoline = call_dsubr_1;
5235 break;
504d99c5 5236 case scm_tc7_cxr:
2510c810
DH
5237 trampoline = call_cxr_1;
5238 break;
504d99c5
MD
5239 case scm_tcs_closures:
5240 {
5241 SCM formals = SCM_CLOSURE_FORMALS (proc);
a61f4e0c
MV
5242 if (!scm_is_null (formals)
5243 && (!scm_is_pair (formals) || !scm_is_pair (SCM_CDR (formals))))
2510c810 5244 trampoline = call_closure_1;
504d99c5 5245 else
d0b07b5d 5246 return NULL;
2510c810 5247 break;
504d99c5
MD
5248 }
5249 case scm_tcs_struct:
5250 if (SCM_OBJ_CLASS_FLAGS (proc) & SCM_CLASSF_PURE_GENERIC)
2510c810 5251 trampoline = scm_call_generic_1;
2ca0d207 5252 else if (SCM_I_OPERATORP (proc))
2510c810
DH
5253 trampoline = scm_call_1;
5254 else
5255 return NULL;
5256 break;
504d99c5
MD
5257 case scm_tc7_smob:
5258 if (SCM_SMOB_APPLICABLE_P (proc))
2510c810 5259 trampoline = SCM_SMOB_DESCRIPTOR (proc).apply_1;
504d99c5 5260 else
d0b07b5d 5261 return NULL;
2510c810 5262 break;
504d99c5
MD
5263 case scm_tc7_asubr:
5264 case scm_tc7_rpsubr:
5265 case scm_tc7_cclo:
5266 case scm_tc7_pws:
2510c810
DH
5267 trampoline = scm_call_1;
5268 break;
504d99c5 5269 default:
d0b07b5d 5270 return NULL; /* not applicable on one arg */
504d99c5 5271 }
2510c810
DH
5272 /* We only reach this point if a valid trampoline was determined. */
5273
5274 /* If debugging is enabled, we want to see all calls to proc on the stack.
5275 * Thus, we replace the trampoline shortcut with scm_call_1. */
434f2f7a 5276 if (scm_debug_mode_p)
2510c810
DH
5277 return scm_call_1;
5278 else
5279 return trampoline;
504d99c5
MD
5280}
5281
5282static SCM
5283call_subr2_2 (SCM proc, SCM arg1, SCM arg2)
5284{
5285 return SCM_SUBRF (proc) (arg1, arg2);
5286}
5287
9ed24633
MD
5288static SCM
5289call_lsubr2_2 (SCM proc, SCM arg1, SCM arg2)
5290{
5291 return SCM_SUBRF (proc) (arg1, arg2, SCM_EOL);
5292}
5293
504d99c5
MD
5294static SCM
5295call_lsubr_2 (SCM proc, SCM arg1, SCM arg2)
5296{
5297 return SCM_SUBRF (proc) (scm_list_2 (arg1, arg2));
5298}
5299
5300static SCM
5301call_closure_2 (SCM proc, SCM arg1, SCM arg2)
5302{
6a3f13f0
DH
5303 const SCM env = SCM_EXTEND_ENV (SCM_CLOSURE_FORMALS (proc),
5304 scm_list_2 (arg1, arg2),
5305 SCM_ENV (proc));
5306 const SCM result = scm_eval_body (SCM_CLOSURE_BODY (proc), env);
d0b07b5d 5307 return result;
504d99c5
MD
5308}
5309
5310scm_t_trampoline_2
5311scm_trampoline_2 (SCM proc)
5312{
2510c810
DH
5313 scm_t_trampoline_2 trampoline;
5314
504d99c5 5315 if (SCM_IMP (proc))
d0b07b5d 5316 return NULL;
2510c810 5317
504d99c5
MD
5318 switch (SCM_TYP7 (proc))
5319 {
5320 case scm_tc7_subr_2:
5321 case scm_tc7_subr_2o:
5322 case scm_tc7_rpsubr:
5323 case scm_tc7_asubr:
2510c810
DH
5324 trampoline = call_subr2_2;
5325 break;
9ed24633 5326 case scm_tc7_lsubr_2:
2510c810
DH
5327 trampoline = call_lsubr2_2;
5328 break;
504d99c5 5329 case scm_tc7_lsubr:
2510c810
DH
5330 trampoline = call_lsubr_2;
5331 break;
504d99c5
MD
5332 case scm_tcs_closures:
5333 {
5334 SCM formals = SCM_CLOSURE_FORMALS (proc);
a61f4e0c
MV
5335 if (!scm_is_null (formals)
5336 && (!scm_is_pair (formals)
5337 || (!scm_is_null (SCM_CDR (formals))
5338 && (!scm_is_pair (SCM_CDR (formals))
5339 || !scm_is_pair (SCM_CDDR (formals))))))
2510c810 5340 trampoline = call_closure_2;
504d99c5 5341 else
d0b07b5d 5342 return NULL;
2510c810 5343 break;
504d99c5
MD
5344 }
5345 case scm_tcs_struct:
5346 if (SCM_OBJ_CLASS_FLAGS (proc) & SCM_CLASSF_PURE_GENERIC)
2510c810 5347 trampoline = scm_call_generic_2;
2ca0d207 5348 else if (SCM_I_OPERATORP (proc))
2510c810
DH
5349 trampoline = scm_call_2;
5350 else
5351 return NULL;
5352 break;
504d99c5
MD
5353 case scm_tc7_smob:
5354 if (SCM_SMOB_APPLICABLE_P (proc))
2510c810 5355 trampoline = SCM_SMOB_DESCRIPTOR (proc).apply_2;
504d99c5 5356 else
d0b07b5d 5357 return NULL;
2510c810 5358 break;
504d99c5
MD
5359 case scm_tc7_cclo:
5360 case scm_tc7_pws:
2510c810
DH
5361 trampoline = scm_call_2;
5362 break;
504d99c5 5363 default:
d0b07b5d 5364 return NULL; /* not applicable on two args */
504d99c5 5365 }
2510c810
DH
5366 /* We only reach this point if a valid trampoline was determined. */
5367
5368 /* If debugging is enabled, we want to see all calls to proc on the stack.
5369 * Thus, we replace the trampoline shortcut with scm_call_2. */
434f2f7a 5370 if (scm_debug_mode_p)
2510c810
DH
5371 return scm_call_2;
5372 else
5373 return trampoline;
504d99c5
MD
5374}
5375
d9c393f5
JB
5376/* Typechecking for multi-argument MAP and FOR-EACH.
5377
47c3f06d 5378 Verify that each element of the vector ARGV, except for the first,
d9c393f5 5379 is a proper list whose length is LEN. Attribute errors to WHO,
47c3f06d 5380 and claim that the i'th element of ARGV is WHO's i+2'th argument. */
d9c393f5 5381static inline void
47c3f06d 5382check_map_args (SCM argv,
c014a02e 5383 long len,
47c3f06d
MD
5384 SCM gf,
5385 SCM proc,
5386 SCM args,
5387 const char *who)
d9c393f5 5388{
c014a02e 5389 long i;
d9c393f5 5390
4057a3e0 5391 for (i = SCM_SIMPLE_VECTOR_LENGTH (argv) - 1; i >= 1; i--)
d9c393f5 5392 {
4057a3e0
MV
5393 SCM elt = SCM_SIMPLE_VECTOR_REF (argv, i);
5394 long elt_len = scm_ilength (elt);
d9c393f5
JB
5395
5396 if (elt_len < 0)
47c3f06d
MD
5397 {
5398 if (gf)
5399 scm_apply_generic (gf, scm_cons (proc, args));
5400 else
4057a3e0 5401 scm_wrong_type_arg (who, i + 2, elt);
47c3f06d 5402 }
d9c393f5
JB
5403
5404 if (elt_len != len)
4057a3e0 5405 scm_out_of_range_pos (who, elt, scm_from_long (i + 2));
d9c393f5 5406 }
d9c393f5
JB
5407}
5408
5409
47c3f06d 5410SCM_GPROC (s_map, "map", 2, 0, 1, scm_map, g_map);
1cc91f1b 5411
368bf056
MD
5412/* Note: Currently, scm_map applies PROC to the argument list(s)
5413 sequentially, starting with the first element(s). This is used in
8878f040 5414 evalext.c where the Scheme procedure `map-in-order', which guarantees
368bf056 5415 sequential behaviour, is implemented using scm_map. If the
8878f040 5416 behaviour changes, we need to update `map-in-order'.
368bf056
MD
5417*/
5418
0f2d19dd 5419SCM
1bbd0b84 5420scm_map (SCM proc, SCM arg1, SCM args)
af45e3b0 5421#define FUNC_NAME s_map
0f2d19dd 5422{
c014a02e 5423 long i, len;
0f2d19dd
JB
5424 SCM res = SCM_EOL;
5425 SCM *pres = &res;
0f2d19dd 5426
d9c393f5 5427 len = scm_ilength (arg1);
47c3f06d
MD
5428 SCM_GASSERTn (len >= 0,
5429 g_map, scm_cons2 (proc, arg1, args), SCM_ARG2, s_map);
af45e3b0 5430 SCM_VALIDATE_REST_ARGUMENT (args);
a61f4e0c 5431 if (scm_is_null (args))
0f2d19dd 5432 {
504d99c5
MD
5433 scm_t_trampoline_1 call = scm_trampoline_1 (proc);
5434 SCM_GASSERT2 (call, g_map, proc, arg1, SCM_ARG1, s_map);
5435 while (SCM_NIMP (arg1))
5436 {
5437 *pres = scm_list_1 (call (proc, SCM_CAR (arg1)));
5438 pres = SCM_CDRLOC (*pres);
5439 arg1 = SCM_CDR (arg1);
5440 }
5441 return res;
5442 }
a61f4e0c 5443 if (scm_is_null (SCM_CDR (args)))
504d99c5
MD
5444 {
5445 SCM arg2 = SCM_CAR (args);
5446 int len2 = scm_ilength (arg2);
5447 scm_t_trampoline_2 call = scm_trampoline_2 (proc);
5448 SCM_GASSERTn (call,
5449 g_map, scm_cons2 (proc, arg1, args), SCM_ARG1, s_map);
5450 SCM_GASSERTn (len2 >= 0,
5451 g_map, scm_cons2 (proc, arg1, args), SCM_ARG3, s_map);
5452 if (len2 != len)
5453 SCM_OUT_OF_RANGE (3, arg2);
0f2d19dd
JB
5454 while (SCM_NIMP (arg1))
5455 {
504d99c5 5456 *pres = scm_list_1 (call (proc, SCM_CAR (arg1), SCM_CAR (arg2)));
a23afe53 5457 pres = SCM_CDRLOC (*pres);
0f2d19dd 5458 arg1 = SCM_CDR (arg1);
504d99c5 5459 arg2 = SCM_CDR (arg2);
0f2d19dd
JB
5460 }
5461 return res;
5462 }
05b15362
DH
5463 arg1 = scm_cons (arg1, args);
5464 args = scm_vector (arg1);
47c3f06d 5465 check_map_args (args, len, g_map, proc, arg1, s_map);
0f2d19dd
JB
5466 while (1)
5467 {
5468 arg1 = SCM_EOL;
4057a3e0 5469 for (i = SCM_SIMPLE_VECTOR_LENGTH (args) - 1; i >= 0; i--)
0f2d19dd 5470 {
4057a3e0
MV
5471 SCM elt = SCM_SIMPLE_VECTOR_REF (args, i);
5472 if (SCM_IMP (elt))
d9c393f5 5473 return res;
4057a3e0
MV
5474 arg1 = scm_cons (SCM_CAR (elt), arg1);
5475 SCM_SIMPLE_VECTOR_SET (args, i, SCM_CDR (elt));
0f2d19dd 5476 }
8ea46249 5477 *pres = scm_list_1 (scm_apply (proc, arg1, SCM_EOL));
a23afe53 5478 pres = SCM_CDRLOC (*pres);
0f2d19dd
JB
5479 }
5480}
af45e3b0 5481#undef FUNC_NAME
0f2d19dd
JB
5482
5483
47c3f06d 5484SCM_GPROC (s_for_each, "for-each", 2, 0, 1, scm_for_each, g_for_each);
1cc91f1b 5485
0f2d19dd 5486SCM
1bbd0b84 5487scm_for_each (SCM proc, SCM arg1, SCM args)
af45e3b0 5488#define FUNC_NAME s_for_each
0f2d19dd 5489{
c014a02e 5490 long i, len;
d9c393f5 5491 len = scm_ilength (arg1);
47c3f06d
MD
5492 SCM_GASSERTn (len >= 0, g_for_each, scm_cons2 (proc, arg1, args),
5493 SCM_ARG2, s_for_each);
af45e3b0 5494 SCM_VALIDATE_REST_ARGUMENT (args);
a61f4e0c 5495 if (scm_is_null (args))
0f2d19dd 5496 {
504d99c5
MD
5497 scm_t_trampoline_1 call = scm_trampoline_1 (proc);
5498 SCM_GASSERT2 (call, g_for_each, proc, arg1, SCM_ARG1, s_for_each);
5499 while (SCM_NIMP (arg1))
5500 {
5501 call (proc, SCM_CAR (arg1));
5502 arg1 = SCM_CDR (arg1);
5503 }
5504 return SCM_UNSPECIFIED;
5505 }
a61f4e0c 5506 if (scm_is_null (SCM_CDR (args)))
504d99c5
MD
5507 {
5508 SCM arg2 = SCM_CAR (args);
5509 int len2 = scm_ilength (arg2);
5510 scm_t_trampoline_2 call = scm_trampoline_2 (proc);
5511 SCM_GASSERTn (call, g_for_each,
5512 scm_cons2 (proc, arg1, args), SCM_ARG1, s_for_each);
5513 SCM_GASSERTn (len2 >= 0, g_for_each,
5514 scm_cons2 (proc, arg1, args), SCM_ARG3, s_for_each);
5515 if (len2 != len)
5516 SCM_OUT_OF_RANGE (3, arg2);
c96d76b8 5517 while (SCM_NIMP (arg1))
0f2d19dd 5518 {
504d99c5 5519 call (proc, SCM_CAR (arg1), SCM_CAR (arg2));
0f2d19dd 5520 arg1 = SCM_CDR (arg1);
504d99c5 5521 arg2 = SCM_CDR (arg2);
0f2d19dd
JB
5522 }
5523 return SCM_UNSPECIFIED;
5524 }
05b15362
DH
5525 arg1 = scm_cons (arg1, args);
5526 args = scm_vector (arg1);
47c3f06d 5527 check_map_args (args, len, g_for_each, proc, arg1, s_for_each);
0f2d19dd
JB
5528 while (1)
5529 {
5530 arg1 = SCM_EOL;
4057a3e0 5531 for (i = SCM_SIMPLE_VECTOR_LENGTH (args) - 1; i >= 0; i--)
0f2d19dd 5532 {
4057a3e0
MV
5533 SCM elt = SCM_SIMPLE_VECTOR_REF (args, i);
5534 if (SCM_IMP (elt))
c96d76b8 5535 return SCM_UNSPECIFIED;
4057a3e0
MV
5536 arg1 = scm_cons (SCM_CAR (elt), arg1);
5537 SCM_SIMPLE_VECTOR_SET (args, i, SCM_CDR (elt));
0f2d19dd
JB
5538 }
5539 scm_apply (proc, arg1, SCM_EOL);
5540 }
5541}
af45e3b0 5542#undef FUNC_NAME
0f2d19dd 5543
1cc91f1b 5544
0f2d19dd 5545SCM
6e8d25a6 5546scm_closure (SCM code, SCM env)
0f2d19dd 5547{
16d4699b
MV
5548 SCM z;
5549 SCM closcar = scm_cons (code, SCM_EOL);
228a24ef 5550 z = scm_cell (SCM_UNPACK (closcar) + scm_tc3_closure, (scm_t_bits) env);
16d4699b 5551 scm_remember_upto_here (closcar);
0f2d19dd
JB
5552 return z;
5553}
5554
5555
92c2555f 5556scm_t_bits scm_tc16_promise;
1cc91f1b 5557
0f2d19dd 5558SCM
6e8d25a6 5559scm_makprom (SCM code)
0f2d19dd 5560{
28d52ebb
MD
5561 SCM_RETURN_NEWSMOB2 (scm_tc16_promise,
5562 SCM_UNPACK (code),
76da80e7 5563 scm_make_rec_mutex ());
0f2d19dd
JB
5564}
5565
28d52ebb
MD
5566static size_t
5567promise_free (SCM promise)
5568{
76da80e7 5569 scm_rec_mutex_free (SCM_PROMISE_MUTEX (promise));
28d52ebb
MD
5570 return 0;
5571}
1cc91f1b 5572
0f2d19dd 5573static int
e841c3e0 5574promise_print (SCM exp, SCM port, scm_print_state *pstate)
0f2d19dd 5575{
19402679 5576 int writingp = SCM_WRITINGP (pstate);
b7f3516f 5577 scm_puts ("#<promise ", port);
19402679 5578 SCM_SET_WRITINGP (pstate, 1);
28d52ebb 5579 scm_iprin1 (SCM_PROMISE_DATA (exp), port, pstate);
19402679 5580 SCM_SET_WRITINGP (pstate, writingp);
b7f3516f 5581 scm_putc ('>', port);
0f2d19dd
JB
5582 return !0;
5583}
5584
3b3b36dd 5585SCM_DEFINE (scm_force, "force", 1, 0, 0,
28d52ebb 5586 (SCM promise),
67e8151b
MG
5587 "If the promise @var{x} has not been computed yet, compute and\n"
5588 "return @var{x}, otherwise just return the previously computed\n"
5589 "value.")
1bbd0b84 5590#define FUNC_NAME s_scm_force
0f2d19dd 5591{
28d52ebb 5592 SCM_VALIDATE_SMOB (1, promise, promise);
76da80e7 5593 scm_rec_mutex_lock (SCM_PROMISE_MUTEX (promise));
28d52ebb 5594 if (!SCM_PROMISE_COMPUTED_P (promise))
0f2d19dd 5595 {
28d52ebb
MD
5596 SCM ans = scm_call_0 (SCM_PROMISE_DATA (promise));
5597 if (!SCM_PROMISE_COMPUTED_P (promise))
0f2d19dd 5598 {
28d52ebb
MD
5599 SCM_SET_PROMISE_DATA (promise, ans);
5600 SCM_SET_PROMISE_COMPUTED (promise);
0f2d19dd
JB
5601 }
5602 }
76da80e7 5603 scm_rec_mutex_unlock (SCM_PROMISE_MUTEX (promise));
28d52ebb 5604 return SCM_PROMISE_DATA (promise);
0f2d19dd 5605}
1bbd0b84 5606#undef FUNC_NAME
0f2d19dd 5607
445f675c 5608
a1ec6916 5609SCM_DEFINE (scm_promise_p, "promise?", 1, 0, 0,
67e8151b 5610 (SCM obj),
b380b885 5611 "Return true if @var{obj} is a promise, i.e. a delayed computation\n"
7a095584 5612 "(@pxref{Delayed evaluation,,,r5rs.info,The Revised^5 Report on Scheme}).")
1bbd0b84 5613#define FUNC_NAME s_scm_promise_p
0f2d19dd 5614{
7888309b 5615 return scm_from_bool (SCM_TYP16_PREDICATE (scm_tc16_promise, obj));
0f2d19dd 5616}
1bbd0b84 5617#undef FUNC_NAME
0f2d19dd 5618
445f675c 5619
a1ec6916 5620SCM_DEFINE (scm_cons_source, "cons-source", 3, 0, 0,
1bbd0b84 5621 (SCM xorig, SCM x, SCM y),
11768c04
NJ
5622 "Create and return a new pair whose car and cdr are @var{x} and @var{y}.\n"
5623 "Any source properties associated with @var{xorig} are also associated\n"
5624 "with the new pair.")
1bbd0b84 5625#define FUNC_NAME s_scm_cons_source
26d5b9b4
MD
5626{
5627 SCM p, z;
16d4699b 5628 z = scm_cons (x, y);
26d5b9b4
MD
5629 /* Copy source properties possibly associated with xorig. */
5630 p = scm_whash_lookup (scm_source_whash, xorig);
7888309b 5631 if (scm_is_true (p))
26d5b9b4
MD
5632 scm_whash_insert (scm_source_whash, z, p);
5633 return z;
5634}
1bbd0b84 5635#undef FUNC_NAME
26d5b9b4 5636
445f675c 5637
62360b89
DH
5638/* The function scm_copy_tree is used to copy an expression tree to allow the
5639 * memoizer to modify the expression during memoization. scm_copy_tree
5640 * creates deep copies of pairs and vectors, but not of any other data types,
5641 * since only pairs and vectors will be parsed by the memoizer.
5642 *
5643 * To avoid infinite recursion due to cyclic structures, the hare-and-tortoise
5644 * pattern is used to detect cycles. In fact, the pattern is used in two
5645 * dimensions, vertical (indicated in the code by the variable names 'hare'
5646 * and 'tortoise') and horizontal ('rabbit' and 'turtle'). In both
5647 * dimensions, the hare/rabbit will take two steps when the tortoise/turtle
5648 * takes one.
5649 *
5650 * The vertical dimension corresponds to recursive calls to function
5651 * copy_tree: This happens when descending into vector elements, into cars of
5652 * lists and into the cdr of an improper list. In this dimension, the
5653 * tortoise follows the hare by using the processor stack: Every stack frame
5654 * will hold an instance of struct t_trace. These instances are connected in
5655 * a way that represents the trace of the hare, which thus can be followed by
5656 * the tortoise. The tortoise will always point to struct t_trace instances
5657 * relating to SCM objects that have already been copied. Thus, a cycle is
5658 * detected if the tortoise and the hare point to the same object,
5659 *
5660 * The horizontal dimension is within one execution of copy_tree, when the
5661 * function cdr's along the pairs of a list. This is the standard
5662 * hare-and-tortoise implementation, found several times in guile. */
5663
5664struct t_trace {
5665 struct t_trace *trace; // These pointers form a trace along the stack.
5666 SCM obj; // The object handled at the respective stack frame.
5667};
5668
5669static SCM
5670copy_tree (
5671 struct t_trace *const hare,
5672 struct t_trace *tortoise,
5673 unsigned int tortoise_delay )
5674{
4057a3e0 5675 if (!scm_is_pair (hare->obj) && !scm_is_simple_vector (hare->obj))
62360b89
DH
5676 {
5677 return hare->obj;
5678 }
5679 else
5680 {
5681 /* Prepare the trace along the stack. */
5682 struct t_trace new_hare;
5683 hare->trace = &new_hare;
5684
5685 /* The tortoise will make its step after the delay has elapsed. Note
5686 * that in contrast to the typical hare-and-tortoise pattern, the step
5687 * of the tortoise happens before the hare takes its steps. This is, in
5688 * principle, no problem, except for the start of the algorithm: Then,
5fb64383 5689 * it has to be made sure that the hare actually gets its advantage of
62360b89
DH
5690 * two steps. */
5691 if (tortoise_delay == 0)
5692 {
5693 tortoise_delay = 1;
5694 tortoise = tortoise->trace;
bc36d050 5695 ASSERT_SYNTAX (!scm_is_eq (hare->obj, tortoise->obj),
62360b89
DH
5696 s_bad_expression, hare->obj);
5697 }
5698 else
5699 {
5700 --tortoise_delay;
5701 }
5702
4057a3e0 5703 if (scm_is_simple_vector (hare->obj))
62360b89 5704 {
4057a3e0
MV
5705 size_t length = SCM_SIMPLE_VECTOR_LENGTH (hare->obj);
5706 SCM new_vector = scm_c_make_vector (length, SCM_UNSPECIFIED);
62360b89
DH
5707
5708 /* Each vector element is copied by recursing into copy_tree, having
5709 * the tortoise follow the hare into the depths of the stack. */
5710 unsigned long int i;
5711 for (i = 0; i < length; ++i)
5712 {
5713 SCM new_element;
4057a3e0 5714 new_hare.obj = SCM_SIMPLE_VECTOR_REF (hare->obj, i);
62360b89 5715 new_element = copy_tree (&new_hare, tortoise, tortoise_delay);
4057a3e0 5716 SCM_SIMPLE_VECTOR_SET (new_vector, i, new_element);
62360b89
DH
5717 }
5718
5719 return new_vector;
5720 }
a61f4e0c 5721 else // scm_is_pair (hare->obj)
62360b89
DH
5722 {
5723 SCM result;
5724 SCM tail;
5725
5726 SCM rabbit = hare->obj;
5727 SCM turtle = hare->obj;
5728
5729 SCM copy;
5730
5731 /* The first pair of the list is treated specially, in order to
5732 * preserve a potential source code position. */
5733 result = tail = scm_cons_source (rabbit, SCM_EOL, SCM_EOL);
5734 new_hare.obj = SCM_CAR (rabbit);
5735 copy = copy_tree (&new_hare, tortoise, tortoise_delay);
5736 SCM_SETCAR (tail, copy);
5737
5738 /* The remaining pairs of the list are copied by, horizontally,
5739 * having the turtle follow the rabbit, and, vertically, having the
5740 * tortoise follow the hare into the depths of the stack. */
5741 rabbit = SCM_CDR (rabbit);
a61f4e0c 5742 while (scm_is_pair (rabbit))
62360b89
DH
5743 {
5744 new_hare.obj = SCM_CAR (rabbit);
5745 copy = copy_tree (&new_hare, tortoise, tortoise_delay);
5746 SCM_SETCDR (tail, scm_cons (copy, SCM_UNDEFINED));
5747 tail = SCM_CDR (tail);
5748
5749 rabbit = SCM_CDR (rabbit);
a61f4e0c 5750 if (scm_is_pair (rabbit))
62360b89
DH
5751 {
5752 new_hare.obj = SCM_CAR (rabbit);
5753 copy = copy_tree (&new_hare, tortoise, tortoise_delay);
5754 SCM_SETCDR (tail, scm_cons (copy, SCM_UNDEFINED));
5755 tail = SCM_CDR (tail);
5756 rabbit = SCM_CDR (rabbit);
5757
5758 turtle = SCM_CDR (turtle);
bc36d050 5759 ASSERT_SYNTAX (!scm_is_eq (rabbit, turtle),
62360b89
DH
5760 s_bad_expression, rabbit);
5761 }
5762 }
5763
5764 /* We have to recurse into copy_tree again for the last cdr, in
5765 * order to handle the situation that it holds a vector. */
5766 new_hare.obj = rabbit;
5767 copy = copy_tree (&new_hare, tortoise, tortoise_delay);
5768 SCM_SETCDR (tail, copy);
5769
5770 return result;
5771 }
5772 }
5773}
5774
a1ec6916 5775SCM_DEFINE (scm_copy_tree, "copy-tree", 1, 0, 0,
1bbd0b84 5776 (SCM obj),
b380b885 5777 "Recursively copy the data tree that is bound to @var{obj}, and return a\n"
bfefbf18 5778 "the new data structure. @code{copy-tree} recurses down the\n"
b380b885
MD
5779 "contents of both pairs and vectors (since both cons cells and vector\n"
5780 "cells may point to arbitrary objects), and stops recursing when it hits\n"
5781 "any other object.")
1bbd0b84 5782#define FUNC_NAME s_scm_copy_tree
0f2d19dd 5783{
62360b89
DH
5784 /* Prepare the trace along the stack. */
5785 struct t_trace trace;
5786 trace.obj = obj;
5787
5788 /* In function copy_tree, if the tortoise makes its step, it will do this
5789 * before the hare has the chance to move. Thus, we have to make sure that
5790 * the very first step of the tortoise will not happen after the hare has
5791 * really made two steps. This is achieved by passing '2' as the initial
5792 * delay for the tortoise. NOTE: Since cycles are unlikely, giving the hare
5793 * a bigger advantage may improve performance slightly. */
5794 return copy_tree (&trace, &trace, 2);
0f2d19dd 5795}
1bbd0b84 5796#undef FUNC_NAME
0f2d19dd 5797
1cc91f1b 5798
4163eb72
MV
5799/* We have three levels of EVAL here:
5800
5801 - scm_i_eval (exp, env)
5802
5803 evaluates EXP in environment ENV. ENV is a lexical environment
5804 structure as used by the actual tree code evaluator. When ENV is
5805 a top-level environment, then changes to the current module are
a513ead3 5806 tracked by updating ENV so that it continues to be in sync with
4163eb72
MV
5807 the current module.
5808
5809 - scm_primitive_eval (exp)
5810
5811 evaluates EXP in the top-level environment as determined by the
5812 current module. This is done by constructing a suitable
5813 environment and calling scm_i_eval. Thus, changes to the
5814 top-level module are tracked normally.
5815
5816 - scm_eval (exp, mod)
5817
a513ead3 5818 evaluates EXP while MOD is the current module. This is done by
4163eb72
MV
5819 setting the current module to MOD, invoking scm_primitive_eval on
5820 EXP, and then restoring the current module to the value it had
5821 previously. That is, while EXP is evaluated, changes to the
5822 current module are tracked, but these changes do not persist when
5823 scm_eval returns.
5824
5825 For each level of evals, there are two variants, distinguished by a
5826 _x suffix: the ordinary variant does not modify EXP while the _x
5827 variant can destructively modify EXP into something completely
5828 unintelligible. A Scheme data structure passed as EXP to one of the
5829 _x variants should not ever be used again for anything. So when in
5830 doubt, use the ordinary variant.
5831
5832*/
5833
0f2d19dd 5834SCM
68d8be66 5835scm_i_eval_x (SCM exp, SCM env)
0f2d19dd 5836{
cc95e00a 5837 if (scm_is_symbol (exp))
434f2f7a
DH
5838 return *scm_lookupcar (scm_cons (exp, SCM_UNDEFINED), env, 1);
5839 else
385609b9 5840 return SCM_I_XEVAL (exp, env);
0f2d19dd
JB
5841}
5842
68d8be66
MD
5843SCM
5844scm_i_eval (SCM exp, SCM env)
5845{
26fb6390 5846 exp = scm_copy_tree (exp);
cc95e00a 5847 if (scm_is_symbol (exp))
434f2f7a
DH
5848 return *scm_lookupcar (scm_cons (exp, SCM_UNDEFINED), env, 1);
5849 else
385609b9 5850 return SCM_I_XEVAL (exp, env);
68d8be66
MD
5851}
5852
5853SCM
4163eb72 5854scm_primitive_eval_x (SCM exp)
0f2d19dd 5855{
a513ead3 5856 SCM env;
bcdab802 5857 SCM transformer = scm_current_module_transformer ();
a513ead3 5858 if (SCM_NIMP (transformer))
fdc28395 5859 exp = scm_call_1 (transformer, exp);
a513ead3 5860 env = scm_top_level_env (scm_current_module_lookup_closure ());
4163eb72 5861 return scm_i_eval_x (exp, env);
0f2d19dd
JB
5862}
5863
4163eb72
MV
5864SCM_DEFINE (scm_primitive_eval, "primitive-eval", 1, 0, 0,
5865 (SCM exp),
2069af38 5866 "Evaluate @var{exp} in the top-level environment specified by\n"
4163eb72
MV
5867 "the current module.")
5868#define FUNC_NAME s_scm_primitive_eval
5869{
a513ead3 5870 SCM env;
bcdab802 5871 SCM transformer = scm_current_module_transformer ();
7888309b 5872 if (scm_is_true (transformer))
fdc28395 5873 exp = scm_call_1 (transformer, exp);
a513ead3 5874 env = scm_top_level_env (scm_current_module_lookup_closure ());
4163eb72
MV
5875 return scm_i_eval (exp, env);
5876}
5877#undef FUNC_NAME
5878
6bff1368 5879
68d8be66
MD
5880/* Eval does not take the second arg optionally. This is intentional
5881 * in order to be R5RS compatible, and to prepare for the new module
5882 * system, where we would like to make the choice of evaluation
4163eb72 5883 * environment explicit. */
549e6ec6 5884
09074dbf
DH
5885static void
5886change_environment (void *data)
5887{
5888 SCM pair = SCM_PACK (data);
5889 SCM new_module = SCM_CAR (pair);
aa767bc5 5890 SCM old_module = scm_current_module ();
09074dbf 5891 SCM_SETCDR (pair, old_module);
aa767bc5 5892 scm_set_current_module (new_module);
09074dbf
DH
5893}
5894
09074dbf
DH
5895static void
5896restore_environment (void *data)
5897{
5898 SCM pair = SCM_PACK (data);
5899 SCM old_module = SCM_CDR (pair);
aa767bc5 5900 SCM new_module = scm_current_module ();
2e9c835d 5901 SCM_SETCAR (pair, new_module);
aa767bc5 5902 scm_set_current_module (old_module);
09074dbf
DH
5903}
5904
4163eb72
MV
5905static SCM
5906inner_eval_x (void *data)
5907{
5908 return scm_primitive_eval_x (SCM_PACK(data));
5909}
5910
5911SCM
5912scm_eval_x (SCM exp, SCM module)
5913#define FUNC_NAME "eval!"
5914{
5915 SCM_VALIDATE_MODULE (2, module);
5916
5917 return scm_internal_dynamic_wind
5918 (change_environment, inner_eval_x, restore_environment,
5919 (void *) SCM_UNPACK (exp),
5920 (void *) SCM_UNPACK (scm_cons (module, SCM_BOOL_F)));
5921}
5922#undef FUNC_NAME
5923
5924static SCM
5925inner_eval (void *data)
5926{
5927 return scm_primitive_eval (SCM_PACK(data));
5928}
09074dbf 5929
68d8be66 5930SCM_DEFINE (scm_eval, "eval", 2, 0, 0,
4163eb72
MV
5931 (SCM exp, SCM module),
5932 "Evaluate @var{exp}, a list representing a Scheme expression,\n"
5933 "in the top-level environment specified by @var{module}.\n"
8f85c0c6 5934 "While @var{exp} is evaluated (using @code{primitive-eval}),\n"
4163eb72 5935 "@var{module} is made the current module. The current module\n"
6be1fab9
MV
5936 "is reset to its previous value when @var{eval} returns.\n"
5937 "Example: (eval '(+ 1 2) (interaction-environment))")
1bbd0b84 5938#define FUNC_NAME s_scm_eval
0f2d19dd 5939{
4163eb72 5940 SCM_VALIDATE_MODULE (2, module);
09074dbf
DH
5941
5942 return scm_internal_dynamic_wind
5943 (change_environment, inner_eval, restore_environment,
4163eb72
MV
5944 (void *) SCM_UNPACK (exp),
5945 (void *) SCM_UNPACK (scm_cons (module, SCM_BOOL_F)));
0f2d19dd 5946}
1bbd0b84 5947#undef FUNC_NAME
0f2d19dd 5948
6dbd0af5 5949
434f2f7a 5950/* At this point, deval and scm_dapply are generated.
6dbd0af5
MD
5951 */
5952
a44a9715
DH
5953#define DEVAL
5954#include "eval.c"
0f2d19dd 5955
1cc91f1b 5956
434f2f7a
DH
5957#if (SCM_ENABLE_DEPRECATED == 1)
5958
5959/* Deprecated in guile 1.7.0 on 2004-03-29. */
5960SCM scm_ceval (SCM x, SCM env)
5961{
a61f4e0c 5962 if (scm_is_pair (x))
434f2f7a 5963 return ceval (x, env);
cc95e00a 5964 else if (scm_is_symbol (x))
434f2f7a
DH
5965 return *scm_lookupcar (scm_cons (x, SCM_UNDEFINED), env, 1);
5966 else
385609b9 5967 return SCM_I_XEVAL (x, env);
434f2f7a
DH
5968}
5969
5970/* Deprecated in guile 1.7.0 on 2004-03-29. */
5971SCM scm_deval (SCM x, SCM env)
5972{
a61f4e0c 5973 if (scm_is_pair (x))
434f2f7a 5974 return deval (x, env);
cc95e00a 5975 else if (scm_is_symbol (x))
434f2f7a
DH
5976 return *scm_lookupcar (scm_cons (x, SCM_UNDEFINED), env, 1);
5977 else
385609b9 5978 return SCM_I_XEVAL (x, env);
434f2f7a
DH
5979}
5980
5981static SCM
5982dispatching_eval (SCM x, SCM env)
5983{
5984 if (scm_debug_mode_p)
5985 return scm_deval (x, env);
5986 else
5987 return scm_ceval (x, env);
5988}
5989
5990/* Deprecated in guile 1.7.0 on 2004-03-29. */
5991SCM (*scm_ceval_ptr) (SCM x, SCM env) = dispatching_eval;
5992
5993#endif
5994
5995
0f2d19dd
JB
5996void
5997scm_init_eval ()
0f2d19dd 5998{
33b97402
MD
5999 scm_init_opts (scm_evaluator_traps,
6000 scm_evaluator_trap_table,
6001 SCM_N_EVALUATOR_TRAPS);
6002 scm_init_opts (scm_eval_options_interface,
6003 scm_eval_opts,
6004 SCM_N_EVAL_OPTIONS);
6005
f99c9c28 6006 scm_tc16_promise = scm_make_smob_type ("promise", 0);
76da80e7 6007 scm_set_smob_mark (scm_tc16_promise, scm_markcdr);
28d52ebb 6008 scm_set_smob_free (scm_tc16_promise, promise_free);
e841c3e0 6009 scm_set_smob_print (scm_tc16_promise, promise_print);
b8229a3b 6010
a44a9715
DH
6011 undefineds = scm_list_1 (SCM_UNDEFINED);
6012 SCM_SETCDR (undefineds, undefineds);
6013 scm_permanent_object (undefineds);
7c33806a 6014
a44a9715 6015 scm_listofnull = scm_list_1 (SCM_EOL);
0f2d19dd 6016
a44a9715
DH
6017 f_apply = scm_c_define_subr ("apply", scm_tc7_lsubr_2, scm_apply);
6018 scm_permanent_object (f_apply);
86d31dfe 6019
a0599745 6020#include "libguile/eval.x"
60a49842 6021
25eaf21a 6022 scm_add_feature ("delay");
0f2d19dd 6023}
0f2d19dd 6024
6dbd0af5 6025#endif /* !DEVAL */
89e00824
ML
6026
6027/*
6028 Local Variables:
6029 c-file-style: "gnu"
6030 End:
6031*/