(SCM_VALIDATE_VECTOR, SCM_VALIDATE_VECTOR_OR_DVECTOR): use
[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
DH
561 }
562 else if (SCM_VECTORP (expr))
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 }
1882 else if (SCM_VECTORP (form))
c96d76b8 1883 {
9fbee57e
DH
1884 size_t i = SCM_VECTOR_LENGTH (form);
1885 SCM const *const data = SCM_VELTS (form);
1886 SCM tmp = SCM_EOL;
1887 while (i != 0)
1888 tmp = scm_cons (data[--i], tmp);
1889 scm_remember_upto_here_1 (form);
1890 return scm_vector (iqq (tmp, env, depth));
c96d76b8 1891 }
9fbee57e
DH
1892 else
1893 return form;
1894}
1895
1896SCM
21628685 1897scm_m_quasiquote (SCM expr, SCM env)
9fbee57e 1898{
21628685
DH
1899 const SCM cdr_expr = SCM_CDR (expr);
1900 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
1901 ASSERT_SYNTAX (scm_ilength (cdr_expr) == 1, s_expression, expr);
1902 return iqq (SCM_CAR (cdr_expr), env, 1);
9fbee57e
DH
1903}
1904
1905
3b88ed2a 1906SCM_SYNTAX (s_quote, "quote", scm_i_makbimacro, scm_m_quote);
9fbee57e
DH
1907SCM_GLOBAL_SYMBOL (scm_sym_quote, s_quote);
1908
1909SCM
21628685 1910scm_m_quote (SCM expr, SCM env SCM_UNUSED)
9fbee57e 1911{
21628685
DH
1912 SCM quotee;
1913
1914 const SCM cdr_expr = SCM_CDR (expr);
1915 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
1916 ASSERT_SYNTAX (scm_ilength (cdr_expr) == 1, s_expression, expr);
1917 quotee = SCM_CAR (cdr_expr);
5fb64383 1918 if (is_self_quoting_p (quotee))
21628685 1919 return quotee;
e7313a9d 1920
21628685 1921 SCM_SETCAR (expr, SCM_IM_QUOTE);
e7313a9d 1922 SCM_SETCDR (expr, quotee);
21628685 1923 return expr;
9fbee57e
DH
1924}
1925
e7313a9d
DH
1926static SCM
1927unmemoize_quote (const SCM expr, const SCM env SCM_UNUSED)
1928{
1929 return scm_list_2 (scm_sym_quote, SCM_CDR (expr));
1930}
1931
9fbee57e
DH
1932
1933/* Will go into the RnRS module when Guile is factorized.
3b88ed2a 1934SCM_SYNTAX (s_set_x, "set!", scm_i_makbimacro, scm_m_set_x); */
9fbee57e
DH
1935static const char s_set_x[] = "set!";
1936SCM_GLOBAL_SYMBOL (scm_sym_set_x, s_set_x);
1937
1938SCM
82b3e2c6 1939scm_m_set_x (SCM expr, SCM env SCM_UNUSED)
9fbee57e 1940{
82b3e2c6 1941 SCM variable;
36245b66 1942 SCM new_variable;
82b3e2c6
DH
1943
1944 const SCM cdr_expr = SCM_CDR (expr);
1945 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
1946 ASSERT_SYNTAX (scm_ilength (cdr_expr) == 2, s_expression, expr);
1947 variable = SCM_CAR (cdr_expr);
36245b66
DH
1948
1949 /* Memoize the variable form. */
cc95e00a 1950 ASSERT_SYNTAX_2 (scm_is_symbol (variable), s_bad_variable, variable, expr);
36245b66 1951 new_variable = lookup_symbol (variable, env);
36245b66
DH
1952 /* Leave the memoization of unbound symbols to lazy memoization: */
1953 if (SCM_UNBNDP (new_variable))
1954 new_variable = variable;
82b3e2c6
DH
1955
1956 SCM_SETCAR (expr, SCM_IM_SET_X);
36245b66 1957 SCM_SETCAR (cdr_expr, new_variable);
82b3e2c6 1958 return expr;
9fbee57e
DH
1959}
1960
212e58ed
DH
1961static SCM
1962unmemoize_set_x (const SCM expr, const SCM env)
1963{
1964 return scm_cons (scm_sym_set_x, unmemoize_exprs (SCM_CDR (expr), env));
1965}
1966
9fbee57e
DH
1967
1968/* Start of the memoizers for non-R5RS builtin macros. */
1969
1970
3b88ed2a 1971SCM_SYNTAX (s_atapply, "@apply", scm_i_makbimacro, scm_m_apply);
9fbee57e
DH
1972SCM_GLOBAL_SYMBOL (scm_sym_atapply, s_atapply);
1973SCM_GLOBAL_SYMBOL (scm_sym_apply, s_atapply + 1);
1974
1975SCM
82b3e2c6 1976scm_m_apply (SCM expr, SCM env SCM_UNUSED)
9fbee57e 1977{
82b3e2c6
DH
1978 const SCM cdr_expr = SCM_CDR (expr);
1979 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
1980 ASSERT_SYNTAX (scm_ilength (cdr_expr) == 2, s_missing_expression, expr);
2e171178 1981
82b3e2c6
DH
1982 SCM_SETCAR (expr, SCM_IM_APPLY);
1983 return expr;
1984}
2e171178 1985
212e58ed
DH
1986static SCM
1987unmemoize_apply (const SCM expr, const SCM env)
1988{
1989 return scm_list_2 (scm_sym_atapply, unmemoize_exprs (SCM_CDR (expr), env));
1990}
1991
2e171178 1992
3b88ed2a 1993SCM_SYNTAX (s_atbind, "@bind", scm_i_makbimacro, scm_m_atbind);
73b64342 1994
82b3e2c6
DH
1995/* FIXME: The following explanation should go into the documentation: */
1996/* (@bind ((var init) ...) body ...) will assign the values of the `init's to
1997 * the global variables named by `var's (symbols, not evaluated), creating
1998 * them if they don't exist, executes body, and then restores the previous
1999 * values of the `var's. Additionally, whenever control leaves body, the
2000 * values of the `var's are saved and restored when control returns. It is an
2001 * error when a symbol appears more than once among the `var's. All `init's
2002 * are evaluated before any `var' is set.
2003 *
2004 * Think of this as `let' for dynamic scope.
2005 */
2006
2007/* (@bind ((var1 exp1) ... (varn expn)) body ...) is memoized into
2008 * (#@bind ((varn ... var1) . (exp1 ... expn)) body ...).
2009 *
2010 * FIXME - also implement `@bind*'.
2011 */
73b64342 2012SCM
82b3e2c6 2013scm_m_atbind (SCM expr, SCM env)
73b64342 2014{
82b3e2c6
DH
2015 SCM bindings;
2016 SCM rvariables;
2017 SCM inits;
2018 SCM variable_idx;
2e171178 2019
82b3e2c6 2020 const SCM top_level = scm_env_top_level (env);
73b64342 2021
82b3e2c6
DH
2022 const SCM cdr_expr = SCM_CDR (expr);
2023 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
2024 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 2, s_missing_expression, expr);
2025 bindings = SCM_CAR (cdr_expr);
2026 check_bindings (bindings, expr);
2027 transform_bindings (bindings, expr, &rvariables, &inits);
2028
2029 for (variable_idx = rvariables;
a61f4e0c 2030 !scm_is_null (variable_idx);
82b3e2c6 2031 variable_idx = SCM_CDR (variable_idx))
73b64342 2032 {
82b3e2c6
DH
2033 /* The first call to scm_sym2var will look beyond the current module,
2034 * while the second call wont. */
2035 const SCM variable = SCM_CAR (variable_idx);
2036 SCM new_variable = scm_sym2var (variable, top_level, SCM_BOOL_F);
7888309b 2037 if (scm_is_false (new_variable))
82b3e2c6
DH
2038 new_variable = scm_sym2var (variable, top_level, SCM_BOOL_T);
2039 SCM_SETCAR (variable_idx, new_variable);
73b64342 2040 }
82b3e2c6
DH
2041
2042 SCM_SETCAR (expr, SCM_IM_BIND);
2043 SCM_SETCAR (cdr_expr, scm_cons (rvariables, inits));
2044 return expr;
73b64342 2045}
73b64342 2046
b0c5d67b 2047
3b88ed2a 2048SCM_SYNTAX(s_atcall_cc, "@call-with-current-continuation", scm_i_makbimacro, scm_m_cont);
9fbee57e
DH
2049SCM_GLOBAL_SYMBOL(scm_sym_atcall_cc, s_atcall_cc);
2050
9fbee57e 2051SCM
da48db62 2052scm_m_cont (SCM expr, SCM env SCM_UNUSED)
b0c5d67b 2053{
da48db62
DH
2054 const SCM cdr_expr = SCM_CDR (expr);
2055 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
2056 ASSERT_SYNTAX (scm_ilength (cdr_expr) == 1, s_expression, expr);
2057
2058 SCM_SETCAR (expr, SCM_IM_CONT);
2059 return expr;
b0c5d67b 2060}
b0c5d67b 2061
212e58ed
DH
2062static SCM
2063unmemoize_atcall_cc (const SCM expr, const SCM env)
2064{
2065 return scm_list_2 (scm_sym_atcall_cc, unmemoize_exprs (SCM_CDR (expr), env));
2066}
2067
b0c5d67b 2068
3b88ed2a 2069SCM_SYNTAX (s_at_call_with_values, "@call-with-values", scm_i_makbimacro, scm_m_at_call_with_values);
9fbee57e 2070SCM_GLOBAL_SYMBOL(scm_sym_at_call_with_values, s_at_call_with_values);
b0c5d67b
DH
2071
2072SCM
da48db62 2073scm_m_at_call_with_values (SCM expr, SCM env SCM_UNUSED)
b0c5d67b 2074{
da48db62
DH
2075 const SCM cdr_expr = SCM_CDR (expr);
2076 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
2077 ASSERT_SYNTAX (scm_ilength (cdr_expr) == 2, s_expression, expr);
2078
2079 SCM_SETCAR (expr, SCM_IM_CALL_WITH_VALUES);
2080 return expr;
b0c5d67b 2081}
b0c5d67b 2082
212e58ed
DH
2083static SCM
2084unmemoize_at_call_with_values (const SCM expr, const SCM env)
2085{
2086 return scm_list_2 (scm_sym_at_call_with_values,
2087 unmemoize_exprs (SCM_CDR (expr), env));
2088}
2089
b0c5d67b 2090
3b88ed2a 2091SCM_SYNTAX (s_future, "future", scm_i_makbimacro, scm_m_future);
9fbee57e 2092SCM_GLOBAL_SYMBOL (scm_sym_future, s_future);
a513ead3 2093
9fbee57e
DH
2094/* Like promises, futures are implemented as closures with an empty
2095 * parameter list. Thus, (future <expression>) is transformed into
2096 * (#@future '() <expression>), where the empty list represents the
2097 * empty parameter list. This representation allows for easy creation
2098 * of the closure during evaluation. */
a513ead3 2099SCM
8ae95199 2100scm_m_future (SCM expr, SCM env)
a513ead3 2101{
8ae95199
DH
2102 const SCM new_expr = memoize_as_thunk_prototype (expr, env);
2103 SCM_SETCAR (new_expr, SCM_IM_FUTURE);
2104 return new_expr;
a513ead3
MV
2105}
2106
212e58ed
DH
2107static SCM
2108unmemoize_future (const SCM expr, const SCM env)
2109{
2110 const SCM thunk_expr = SCM_CADDR (expr);
2111 return scm_list_2 (scm_sym_future, unmemoize_expression (thunk_expr, env));
2112}
2113
9fbee57e 2114
3b88ed2a 2115SCM_SYNTAX (s_gset_x, "set!", scm_i_makbimacro, scm_m_generalized_set_x);
9fbee57e
DH
2116SCM_SYMBOL (scm_sym_setter, "setter");
2117
2118SCM
7893dbbf 2119scm_m_generalized_set_x (SCM expr, SCM env)
9fbee57e 2120{
7893dbbf 2121 SCM target, exp_target;
da48db62
DH
2122
2123 const SCM cdr_expr = SCM_CDR (expr);
2124 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
2125 ASSERT_SYNTAX (scm_ilength (cdr_expr) == 2, s_expression, expr);
2126
2127 target = SCM_CAR (cdr_expr);
a61f4e0c 2128 if (!scm_is_pair (target))
da48db62
DH
2129 {
2130 /* R5RS usage */
2131 return scm_m_set_x (expr, env);
2132 }
9fbee57e 2133 else
da48db62
DH
2134 {
2135 /* (set! (foo bar ...) baz) becomes ((setter foo) bar ... baz) */
7893dbbf
MV
2136 /* Macroexpanding the target might return things of the form
2137 (begin <atom>). In that case, <atom> must be a symbol or a
2138 variable and we memoize to (set! <atom> ...).
2139 */
2b189e65 2140 exp_target = macroexp (target, env);
bc36d050 2141 if (scm_is_eq (SCM_CAR (exp_target), SCM_IM_BEGIN)
a61f4e0c
MV
2142 && !scm_is_null (SCM_CDR (exp_target))
2143 && scm_is_null (SCM_CDDR (exp_target)))
7893dbbf
MV
2144 {
2145 exp_target= SCM_CADR (exp_target);
cc95e00a 2146 ASSERT_SYNTAX_2 (scm_is_symbol (exp_target)
6d1a2e9f
MV
2147 || SCM_VARIABLEP (exp_target),
2148 s_bad_variable, exp_target, expr);
7893dbbf
MV
2149 return scm_cons (SCM_IM_SET_X, scm_cons (exp_target,
2150 SCM_CDR (cdr_expr)));
2151 }
2152 else
2153 {
2154 const SCM setter_proc_tail = scm_list_1 (SCM_CAR (target));
2155 const SCM setter_proc = scm_cons_source (expr, scm_sym_setter,
2156 setter_proc_tail);
da48db62 2157
7893dbbf
MV
2158 const SCM cddr_expr = SCM_CDR (cdr_expr);
2159 const SCM setter_args = scm_append_x (scm_list_2 (SCM_CDR (target),
2160 cddr_expr));
da48db62 2161
7893dbbf
MV
2162 SCM_SETCAR (expr, setter_proc);
2163 SCM_SETCDR (expr, setter_args);
2164 return expr;
2165 }
da48db62 2166 }
9fbee57e
DH
2167}
2168
2169
a4aa2134
DH
2170/* @slot-ref is bound privately in the (oop goops) module from goops.c. As
2171 * soon as the module system allows us to more freely create bindings in
2172 * arbitrary modules during the startup phase, the code from goops.c should be
2173 * moved here. */
212e58ed
DH
2174
2175SCM_SYMBOL (sym_atslot_ref, "@slot-ref");
2176
9fbee57e 2177SCM
9a848baf 2178scm_m_atslot_ref (SCM expr, SCM env SCM_UNUSED)
9fbee57e 2179{
9a848baf
DH
2180 SCM slot_nr;
2181
2182 const SCM cdr_expr = SCM_CDR (expr);
2183 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
2184 ASSERT_SYNTAX (scm_ilength (cdr_expr) == 2, s_expression, expr);
2185 slot_nr = SCM_CADR (cdr_expr);
e11e83f3 2186 ASSERT_SYNTAX_2 (SCM_I_INUMP (slot_nr), s_bad_slot_number, slot_nr, expr);
9fbee57e 2187
9a848baf 2188 SCM_SETCAR (expr, SCM_IM_SLOT_REF);
e7313a9d 2189 SCM_SETCDR (cdr_expr, slot_nr);
9a848baf
DH
2190 return expr;
2191}
9fbee57e 2192
212e58ed
DH
2193static SCM
2194unmemoize_atslot_ref (const SCM expr, const SCM env)
2195{
2196 const SCM instance = SCM_CADR (expr);
2197 const SCM um_instance = unmemoize_expression (instance, env);
2198 const SCM slot_nr = SCM_CDDR (expr);
2199 return scm_list_3 (sym_atslot_ref, um_instance, slot_nr);
2200}
2201
9fbee57e 2202
a4aa2134
DH
2203/* @slot-set! is bound privately in the (oop goops) module from goops.c. As
2204 * soon as the module system allows us to more freely create bindings in
2205 * arbitrary modules during the startup phase, the code from goops.c should be
2206 * moved here. */
212e58ed
DH
2207
2208SCM_SYMBOL (sym_atslot_set_x, "@slot-set!");
2209
9fbee57e 2210SCM
9a848baf 2211scm_m_atslot_set_x (SCM expr, SCM env SCM_UNUSED)
9fbee57e 2212{
9a848baf
DH
2213 SCM slot_nr;
2214
2215 const SCM cdr_expr = SCM_CDR (expr);
2216 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
2217 ASSERT_SYNTAX (scm_ilength (cdr_expr) == 3, s_expression, expr);
2218 slot_nr = SCM_CADR (cdr_expr);
e11e83f3 2219 ASSERT_SYNTAX_2 (SCM_I_INUMP (slot_nr), s_bad_slot_number, slot_nr, expr);
9a848baf
DH
2220
2221 SCM_SETCAR (expr, SCM_IM_SLOT_SET_X);
2222 return expr;
9fbee57e 2223}
9fbee57e 2224
212e58ed
DH
2225static SCM
2226unmemoize_atslot_set_x (const SCM expr, const SCM env)
2227{
2228 const SCM cdr_expr = SCM_CDR (expr);
2229 const SCM instance = SCM_CAR (cdr_expr);
2230 const SCM um_instance = unmemoize_expression (instance, env);
2231 const SCM cddr_expr = SCM_CDR (cdr_expr);
2232 const SCM slot_nr = SCM_CAR (cddr_expr);
2233 const SCM cdddr_expr = SCM_CDR (cddr_expr);
2234 const SCM value = SCM_CAR (cdddr_expr);
2235 const SCM um_value = unmemoize_expression (value, env);
2236 return scm_list_4 (sym_atslot_set_x, um_instance, slot_nr, um_value);
2237}
2238
9fbee57e
DH
2239
2240#if SCM_ENABLE_ELISP
2241
70c1c108
DH
2242static const char s_defun[] = "Symbol's function definition is void";
2243
3b88ed2a 2244SCM_SYNTAX (s_nil_cond, "nil-cond", scm_i_makbimacro, scm_m_nil_cond);
9fbee57e 2245
70c1c108
DH
2246/* nil-cond expressions have the form
2247 * (nil-cond COND VAL COND VAL ... ELSEVAL) */
9fbee57e 2248SCM
70c1c108 2249scm_m_nil_cond (SCM expr, SCM env SCM_UNUSED)
9fbee57e 2250{
70c1c108
DH
2251 const long length = scm_ilength (SCM_CDR (expr));
2252 ASSERT_SYNTAX (length >= 0, s_bad_expression, expr);
2253 ASSERT_SYNTAX (length >= 1 && (length % 2) == 1, s_expression, expr);
2254
2255 SCM_SETCAR (expr, SCM_IM_NIL_COND);
2256 return expr;
9fbee57e
DH
2257}
2258
2259
3b88ed2a 2260SCM_SYNTAX (s_atfop, "@fop", scm_i_makbimacro, scm_m_atfop);
9fbee57e 2261
70c1c108
DH
2262/* The @fop-macro handles procedure and macro applications for elisp. The
2263 * input expression must have the form
2264 * (@fop <var> (transformer-macro <expr> ...))
2265 * where <var> must be a symbol. The expression is transformed into the
2266 * memoized form of either
2267 * (apply <un-aliased var> (transformer-macro <expr> ...))
2268 * if the value of var (across all aliasing) is not a macro, or
2269 * (<un-aliased var> <expr> ...)
2270 * if var is a macro. */
9fbee57e 2271SCM
70c1c108 2272scm_m_atfop (SCM expr, SCM env SCM_UNUSED)
9fbee57e 2273{
70c1c108
DH
2274 SCM location;
2275 SCM symbol;
2276
2277 const SCM cdr_expr = SCM_CDR (expr);
2278 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
2279 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 1, s_missing_expression, expr);
2280
2281 symbol = SCM_CAR (cdr_expr);
cc95e00a 2282 ASSERT_SYNTAX_2 (scm_is_symbol (symbol), s_bad_variable, symbol, expr);
70c1c108
DH
2283
2284 location = scm_symbol_fref (symbol);
2285 ASSERT_SYNTAX_2 (SCM_VARIABLEP (location), s_defun, symbol, expr);
2286
2287 /* The elisp function `defalias' allows to define aliases for symbols. To
2288 * look up such definitions, the chain of symbol definitions has to be
2289 * followed up to the terminal symbol. */
cc95e00a 2290 while (scm_is_symbol (SCM_VARIABLE_REF (location)))
9fbee57e 2291 {
70c1c108
DH
2292 const SCM alias = SCM_VARIABLE_REF (location);
2293 location = scm_symbol_fref (alias);
2294 ASSERT_SYNTAX_2 (SCM_VARIABLEP (location), s_defun, symbol, expr);
9fbee57e 2295 }
70c1c108
DH
2296
2297 /* Memoize the value location belonging to the terminal symbol. */
2298 SCM_SETCAR (cdr_expr, location);
2299
2300 if (!SCM_MACROP (SCM_VARIABLE_REF (location)))
9fbee57e 2301 {
70c1c108
DH
2302 /* Since the location does not contain a macro, the form is a procedure
2303 * application. Replace `@fop' by `@apply' and transform the expression
2304 * including the `transformer-macro'. */
2305 SCM_SETCAR (expr, SCM_IM_APPLY);
2306 return expr;
2307 }
2308 else
2309 {
2310 /* Since the location contains a macro, the arguments should not be
2311 * transformed, so the `transformer-macro' is cut out. The resulting
2312 * expression starts with the memoized variable, that is at the cdr of
2313 * the input expression. */
2314 SCM_SETCDR (cdr_expr, SCM_CDADR (cdr_expr));
2315 return cdr_expr;
9fbee57e 2316 }
9fbee57e
DH
2317}
2318
2319#endif /* SCM_ENABLE_ELISP */
2320
2321
212e58ed
DH
2322static SCM
2323unmemoize_builtin_macro (const SCM expr, const SCM env)
2324{
2325 switch (ISYMNUM (SCM_CAR (expr)))
2326 {
2327 case (ISYMNUM (SCM_IM_AND)):
2328 return unmemoize_and (expr, env);
2329
2330 case (ISYMNUM (SCM_IM_BEGIN)):
2331 return unmemoize_begin (expr, env);
2332
2333 case (ISYMNUM (SCM_IM_CASE)):
2334 return unmemoize_case (expr, env);
2335
2336 case (ISYMNUM (SCM_IM_COND)):
2337 return unmemoize_cond (expr, env);
2338
2339 case (ISYMNUM (SCM_IM_DELAY)):
2340 return unmemoize_delay (expr, env);
2341
2342 case (ISYMNUM (SCM_IM_DO)):
2343 return unmemoize_do (expr, env);
2344
2345 case (ISYMNUM (SCM_IM_IF)):
2346 return unmemoize_if (expr, env);
2347
2348 case (ISYMNUM (SCM_IM_LAMBDA)):
2349 return unmemoize_lambda (expr, env);
2350
2351 case (ISYMNUM (SCM_IM_LET)):
2352 return unmemoize_let (expr, env);
2353
2354 case (ISYMNUM (SCM_IM_LETREC)):
2355 return unmemoize_letrec (expr, env);
2356
2357 case (ISYMNUM (SCM_IM_LETSTAR)):
2358 return unmemoize_letstar (expr, env);
2359
2360 case (ISYMNUM (SCM_IM_OR)):
2361 return unmemoize_or (expr, env);
2362
2363 case (ISYMNUM (SCM_IM_QUOTE)):
2364 return unmemoize_quote (expr, env);
2365
2366 case (ISYMNUM (SCM_IM_SET_X)):
2367 return unmemoize_set_x (expr, env);
2368
2369 case (ISYMNUM (SCM_IM_APPLY)):
2370 return unmemoize_apply (expr, env);
2371
2372 case (ISYMNUM (SCM_IM_BIND)):
2373 return unmemoize_exprs (expr, env); /* FIXME */
2374
2375 case (ISYMNUM (SCM_IM_CONT)):
2376 return unmemoize_atcall_cc (expr, env);
2377
2378 case (ISYMNUM (SCM_IM_CALL_WITH_VALUES)):
2379 return unmemoize_at_call_with_values (expr, env);
2380
2381 case (ISYMNUM (SCM_IM_FUTURE)):
2382 return unmemoize_future (expr, env);
2383
2384 case (ISYMNUM (SCM_IM_SLOT_REF)):
2385 return unmemoize_atslot_ref (expr, env);
2386
2387 case (ISYMNUM (SCM_IM_SLOT_SET_X)):
2388 return unmemoize_atslot_set_x (expr, env);
2389
2390 case (ISYMNUM (SCM_IM_NIL_COND)):
2391 return unmemoize_exprs (expr, env); /* FIXME */
2392
2393 default:
2394 return unmemoize_exprs (expr, env); /* FIXME */
2395 }
2396}
2397
2398
9fcf3cbb
DH
2399/* scm_i_unmemocopy_expr and scm_i_unmemocopy_body take a memoized expression
2400 * respectively a memoized body together with its environment and rewrite it
2401 * to its original form. Thus, these functions are the inversion of the
2402 * rewrite rules above. The procedure is not optimized for speed. It's used
2403 * in scm_i_unmemoize_expr, scm_procedure_source, macro_print and scm_iprin1.
212e58ed
DH
2404 *
2405 * Unmemoizing is not a reliable process. You cannot in general expect to get
2406 * the original source back.
2407 *
2408 * However, GOOPS currently relies on this for method compilation. This ought
2409 * to change. */
2410
2411SCM
9fcf3cbb
DH
2412scm_i_unmemocopy_expr (SCM expr, SCM env)
2413{
2414 const SCM source_properties = scm_whash_lookup (scm_source_whash, expr);
2415 const SCM um_expr = unmemoize_expression (expr, env);
2416
7888309b 2417 if (scm_is_true (source_properties))
9fcf3cbb
DH
2418 scm_whash_insert (scm_source_whash, um_expr, source_properties);
2419
2420 return um_expr;
2421}
2422
2423SCM
2424scm_i_unmemocopy_body (SCM forms, SCM env)
212e58ed
DH
2425{
2426 const SCM source_properties = scm_whash_lookup (scm_source_whash, forms);
2427 const SCM um_forms = unmemoize_exprs (forms, env);
2428
7888309b 2429 if (scm_is_true (source_properties))
212e58ed
DH
2430 scm_whash_insert (scm_source_whash, um_forms, source_properties);
2431
2432 return um_forms;
2433}
2434
2435
434f2f7a 2436#if (SCM_ENABLE_DEPRECATED == 1)
f58c472a 2437
434f2f7a
DH
2438/* Deprecated in guile 1.7.0 on 2003-11-09. */
2439SCM
2440scm_m_expand_body (SCM exprs, SCM env)
2441{
2442 scm_c_issue_deprecation_warning
2443 ("`scm_m_expand_body' is deprecated.");
2444 m_expand_body (exprs, env);
2445 return exprs;
2446}
f58c472a 2447
f58c472a
DH
2448
2449SCM_SYNTAX (s_undefine, "undefine", scm_makacro, scm_m_undefine);
2450
2451SCM
70c1c108 2452scm_m_undefine (SCM expr, SCM env)
f58c472a 2453{
70c1c108
DH
2454 SCM variable;
2455 SCM location;
2456
2457 const SCM cdr_expr = SCM_CDR (expr);
2458 ASSERT_SYNTAX (SCM_TOP_LEVEL (env), "Bad undefine placement in", expr);
2459 ASSERT_SYNTAX (scm_ilength (cdr_expr) >= 0, s_bad_expression, expr);
2460 ASSERT_SYNTAX (scm_ilength (cdr_expr) == 1, s_expression, expr);
2461
2b189e65
MV
2462 scm_c_issue_deprecation_warning
2463 ("`undefine' is deprecated.\n");
2464
70c1c108 2465 variable = SCM_CAR (cdr_expr);
cc95e00a 2466 ASSERT_SYNTAX_2 (scm_is_symbol (variable), s_bad_variable, variable, expr);
70c1c108 2467 location = scm_sym2var (variable, scm_env_top_level (env), SCM_BOOL_F);
7888309b 2468 ASSERT_SYNTAX_2 (scm_is_true (location)
70c1c108
DH
2469 && !SCM_UNBNDP (SCM_VARIABLE_REF (location)),
2470 "variable already unbound ", variable, expr);
2471 SCM_VARIABLE_SET (location, SCM_UNDEFINED);
f58c472a 2472 return SCM_UNSPECIFIED;
f58c472a
DH
2473}
2474
26d5b9b4
MD
2475SCM
2476scm_macroexp (SCM x, SCM env)
2477{
2b189e65
MV
2478 scm_c_issue_deprecation_warning
2479 ("`scm_macroexp' is deprecated.");
2480 return macroexp (x, env);
26d5b9b4 2481}
73b64342 2482
6f81708a
DH
2483#endif
2484
60a49842 2485
212e58ed 2486#if (SCM_ENABLE_DEPRECATED == 1)
26d5b9b4 2487
212e58ed
DH
2488SCM
2489scm_unmemocar (SCM form, SCM env)
8ea46249 2490{
212e58ed
DH
2491 scm_c_issue_deprecation_warning
2492 ("`scm_unmemocar' is deprecated.");
60a49842 2493
a61f4e0c 2494 if (!scm_is_pair (form))
60a49842
DH
2495 return form;
2496 else
2497 {
2498 SCM c = SCM_CAR (form);
2499 if (SCM_VARIABLEP (c))
2500 {
2501 SCM sym = scm_module_reverse_lookup (scm_env_module (env), c);
7888309b 2502 if (scm_is_false (sym))
60a49842
DH
2503 sym = sym_three_question_marks;
2504 SCM_SETCAR (form, sym);
2505 }
2506 else if (SCM_ILOCP (c))
2507 {
2508 unsigned long int ir;
2509
2510 for (ir = SCM_IFRAME (c); ir != 0; --ir)
2511 env = SCM_CDR (env);
2512 env = SCM_CAAR (env);
2513 for (ir = SCM_IDIST (c); ir != 0; --ir)
2514 env = SCM_CDR (env);
f62b9dff 2515
60a49842
DH
2516 SCM_SETCAR (form, SCM_ICDRP (c) ? env : SCM_CAR (env));
2517 }
2518 return form;
2519 }
2520}
2521
434f2f7a
DH
2522#endif
2523
6f81708a
DH
2524/*****************************************************************************/
2525/*****************************************************************************/
2526/* The definitions for execution start here. */
2527/*****************************************************************************/
2528/*****************************************************************************/
2529
2530SCM_GLOBAL_SYMBOL (scm_sym_enter_frame, "enter-frame");
2531SCM_GLOBAL_SYMBOL (scm_sym_apply_frame, "apply-frame");
2532SCM_GLOBAL_SYMBOL (scm_sym_exit_frame, "exit-frame");
2533SCM_GLOBAL_SYMBOL (scm_sym_trace, "trace");
2534
2535/* A function object to implement "apply" for non-closure functions. */
2536static SCM f_apply;
2537/* An endless list consisting of #<undefined> objects: */
2538static SCM undefineds;
2539
2540
2541int
6e8d25a6 2542scm_badargsp (SCM formals, SCM args)
0f2d19dd 2543{
a61f4e0c 2544 while (!scm_is_null (formals))
0f2d19dd 2545 {
a61f4e0c 2546 if (!scm_is_pair (formals))
ff467021 2547 return 0;
a61f4e0c 2548 if (scm_is_null (args))
ff467021 2549 return 1;
0f2d19dd
JB
2550 formals = SCM_CDR (formals);
2551 args = SCM_CDR (args);
2552 }
a61f4e0c 2553 return !scm_is_null (args) ? 1 : 0;
0f2d19dd 2554}
a392ee15 2555
0f2d19dd 2556\f
62360b89 2557
434f2f7a
DH
2558/* The evaluator contains a plethora of EVAL symbols. This is an attempt at
2559 * explanation.
62360b89 2560 *
434f2f7a
DH
2561 * The following macros should be used in code which is read twice (where the
2562 * choice of evaluator is hard soldered):
62360b89 2563 *
434f2f7a
DH
2564 * CEVAL is the symbol used within one evaluator to call itself.
2565 * Originally, it is defined to ceval, but is redefined to deval during the
2566 * second pass.
62360b89 2567 *
385609b9 2568 * SCM_I_EVALIM is used when it is known that the expression is an
62360b89 2569 * immediate. (This macro never calls an evaluator.)
434f2f7a
DH
2570 *
2571 * EVAL evaluates an expression that is expected to have its symbols already
2572 * memoized. Expressions that are not of the form '(<form> <form> ...)' are
2573 * evaluated inline without calling an evaluator.
2574 *
2575 * EVALCAR evaluates the car of an expression 'X:(Y:<form> <form> ...)',
2576 * potentially replacing a symbol at the position Y:<form> by its memoized
2577 * variable. If Y:<form> is not of the form '(<form> <form> ...)', the
2578 * evaluation is performed inline without calling an evaluator.
62360b89
DH
2579 *
2580 * The following macros should be used in code which is read once
2581 * (where the choice of evaluator is dynamic):
2582 *
385609b9 2583 * SCM_I_XEVAL corresponds to EVAL, but uses ceval *or* deval depending on the
434f2f7a 2584 * debugging mode.
62360b89 2585 *
385609b9 2586 * SCM_I_XEVALCAR corresponds to EVALCAR, but uses ceval *or* deval depending
434f2f7a 2587 * on the debugging mode.
62360b89
DH
2588 *
2589 * The main motivation for keeping this plethora is efficiency
2590 * together with maintainability (=> locality of code).
2591 */
2592
434f2f7a
DH
2593static SCM ceval (SCM x, SCM env);
2594static SCM deval (SCM x, SCM env);
2595#define CEVAL ceval
2596
62360b89 2597
385609b9 2598#define SCM_I_EVALIM2(x) \
bc36d050 2599 ((scm_is_eq ((x), SCM_EOL) \
62360b89
DH
2600 ? syntax_error (s_empty_combination, (x), SCM_UNDEFINED), 0 \
2601 : 0), \
2602 (x))
2603
385609b9 2604#define SCM_I_EVALIM(x, env) (SCM_ILOCP (x) \
434f2f7a 2605 ? *scm_ilookup ((x), (env)) \
385609b9 2606 : SCM_I_EVALIM2(x))
62360b89 2607
385609b9 2608#define SCM_I_XEVAL(x, env) \
434f2f7a 2609 (SCM_IMP (x) \
385609b9 2610 ? SCM_I_EVALIM2 (x) \
434f2f7a
DH
2611 : (SCM_VARIABLEP (x) \
2612 ? SCM_VARIABLE_REF (x) \
a61f4e0c 2613 : (scm_is_pair (x) \
434f2f7a
DH
2614 ? (scm_debug_mode_p \
2615 ? deval ((x), (env)) \
2616 : ceval ((x), (env))) \
2617 : (x))))
2618
385609b9 2619#define SCM_I_XEVALCAR(x, env) \
434f2f7a 2620 (SCM_IMP (SCM_CAR (x)) \
385609b9 2621 ? SCM_I_EVALIM (SCM_CAR (x), (env)) \
434f2f7a
DH
2622 : (SCM_VARIABLEP (SCM_CAR (x)) \
2623 ? SCM_VARIABLE_REF (SCM_CAR (x)) \
a61f4e0c 2624 : (scm_is_pair (SCM_CAR (x)) \
434f2f7a
DH
2625 ? (scm_debug_mode_p \
2626 ? deval (SCM_CAR (x), (env)) \
2627 : ceval (SCM_CAR (x), (env))) \
cc95e00a 2628 : (!scm_is_symbol (SCM_CAR (x)) \
434f2f7a
DH
2629 ? SCM_CAR (x) \
2630 : *scm_lookupcar ((x), (env), 1)))))
2631
2632#define EVAL(x, env) \
2633 (SCM_IMP (x) \
385609b9 2634 ? SCM_I_EVALIM ((x), (env)) \
434f2f7a
DH
2635 : (SCM_VARIABLEP (x) \
2636 ? SCM_VARIABLE_REF (x) \
a61f4e0c 2637 : (scm_is_pair (x) \
434f2f7a
DH
2638 ? CEVAL ((x), (env)) \
2639 : (x))))
2640
2641#define EVALCAR(x, env) \
2642 (SCM_IMP (SCM_CAR (x)) \
385609b9 2643 ? SCM_I_EVALIM (SCM_CAR (x), (env)) \
434f2f7a
DH
2644 : (SCM_VARIABLEP (SCM_CAR (x)) \
2645 ? SCM_VARIABLE_REF (SCM_CAR (x)) \
a61f4e0c 2646 : (scm_is_pair (SCM_CAR (x)) \
434f2f7a 2647 ? CEVAL (SCM_CAR (x), (env)) \
cc95e00a 2648 : (!scm_is_symbol (SCM_CAR (x)) \
434f2f7a
DH
2649 ? SCM_CAR (x) \
2650 : *scm_lookupcar ((x), (env), 1)))))
62360b89
DH
2651
2652SCM_REC_MUTEX (source_mutex);
2653
2654
e5156567
DH
2655/* Lookup a given local variable in an environment. The local variable is
2656 * given as an iloc, that is a triple <frame, binding, last?>, where frame
2657 * indicates the relative number of the environment frame (counting upwards
2658 * from the innermost environment frame), binding indicates the number of the
2659 * binding within the frame, and last? (which is extracted from the iloc using
2660 * the macro SCM_ICDRP) indicates whether the binding forms the binding at the
2661 * very end of the improper list of bindings. */
2662SCM *
2663scm_ilookup (SCM iloc, SCM env)
2664{
2665 unsigned int frame_nr = SCM_IFRAME (iloc);
2666 unsigned int binding_nr = SCM_IDIST (iloc);
2667 SCM frames = env;
2668 SCM bindings;
2669
2670 for (; 0 != frame_nr; --frame_nr)
2671 frames = SCM_CDR (frames);
2672
2673 bindings = SCM_CAR (frames);
2674 for (; 0 != binding_nr; --binding_nr)
2675 bindings = SCM_CDR (bindings);
2676
2677 if (SCM_ICDRP (iloc))
2678 return SCM_CDRLOC (bindings);
2679 return SCM_CARLOC (SCM_CDR (bindings));
2680}
2681
2682
2683SCM_SYMBOL (scm_unbound_variable_key, "unbound-variable");
2684
2685static void error_unbound_variable (SCM symbol) SCM_NORETURN;
2d0c133f
MV
2686static void error_defined_variable (SCM symbol) SCM_NORETURN;
2687
2688/* Call this for variables that are unfound.
2689 */
e5156567
DH
2690static void
2691error_unbound_variable (SCM symbol)
2692{
2693 scm_error (scm_unbound_variable_key, NULL,
2694 "Unbound variable: ~S",
2695 scm_list_1 (symbol), SCM_BOOL_F);
2696}
2697
2d0c133f
MV
2698/* Call this for variables that are found but contain SCM_UNDEFINED.
2699 */
2700static void
2701error_defined_variable (SCM symbol)
2702{
2703 /* We use the 'unbound-variable' key here as well, since it
2704 basically is the same kind of error, with a slight variation in
2705 the displayed message.
2706 */
2707 scm_error (scm_unbound_variable_key, NULL,
a03bad87 2708 "Variable used before given a value: ~S",
2d0c133f
MV
2709 scm_list_1 (symbol), SCM_BOOL_F);
2710}
2711
e5156567
DH
2712
2713/* The Lookup Car Race
2714 - by Eva Luator
2715
2716 Memoization of variables and special forms is done while executing
2717 the code for the first time. As long as there is only one thread
2718 everything is fine, but as soon as two threads execute the same
2719 code concurrently `for the first time' they can come into conflict.
2720
2721 This memoization includes rewriting variable references into more
2722 efficient forms and expanding macros. Furthermore, macro expansion
2723 includes `compiling' special forms like `let', `cond', etc. into
2724 tree-code instructions.
2725
2726 There shouldn't normally be a problem with memoizing local and
2727 global variable references (into ilocs and variables), because all
2728 threads will mutate the code in *exactly* the same way and (if I
2729 read the C code correctly) it is not possible to observe a half-way
2730 mutated cons cell. The lookup procedure can handle this
2731 transparently without any critical sections.
2732
2733 It is different with macro expansion, because macro expansion
2734 happens outside of the lookup procedure and can't be
2735 undone. Therefore the lookup procedure can't cope with it. It has
2736 to indicate failure when it detects a lost race and hope that the
2737 caller can handle it. Luckily, it turns out that this is the case.
2738
2739 An example to illustrate this: Suppose that the following form will
2740 be memoized concurrently by two threads
2741
2742 (let ((x 12)) x)
2743
2744 Let's first examine the lookup of X in the body. The first thread
2745 decides that it has to find the symbol "x" in the environment and
2746 starts to scan it. Then the other thread takes over and actually
2747 overtakes the first. It looks up "x" and substitutes an
2748 appropriate iloc for it. Now the first thread continues and
2749 completes its lookup. It comes to exactly the same conclusions as
2750 the second one and could - without much ado - just overwrite the
2751 iloc with the same iloc.
2752
2753 But let's see what will happen when the race occurs while looking
2754 up the symbol "let" at the start of the form. It could happen that
2755 the second thread interrupts the lookup of the first thread and not
2756 only substitutes a variable for it but goes right ahead and
2757 replaces it with the compiled form (#@let* (x 12) x). Now, when
2758 the first thread completes its lookup, it would replace the #@let*
2759 with a variable containing the "let" binding, effectively reverting
2760 the form to (let (x 12) x). This is wrong. It has to detect that
2761 it has lost the race and the evaluator has to reconsider the
2762 changed form completely.
2763
2764 This race condition could be resolved with some kind of traffic
2765 light (like mutexes) around scm_lookupcar, but I think that it is
2766 best to avoid them in this case. They would serialize memoization
2767 completely and because lookup involves calling arbitrary Scheme
2768 code (via the lookup-thunk), threads could be blocked for an
2769 arbitrary amount of time or even deadlock. But with the current
2770 solution a lot of unnecessary work is potentially done. */
2771
2772/* SCM_LOOKUPCAR1 is what SCM_LOOKUPCAR used to be but is allowed to
2773 return NULL to indicate a failed lookup due to some race conditions
2774 between threads. This only happens when VLOC is the first cell of
2775 a special form that will eventually be memoized (like `let', etc.)
2776 In that case the whole lookup is bogus and the caller has to
2777 reconsider the complete special form.
2778
2779 SCM_LOOKUPCAR is still there, of course. It just calls
2780 SCM_LOOKUPCAR1 and aborts on receiving NULL. So SCM_LOOKUPCAR
2781 should only be called when it is known that VLOC is not the first
2782 pair of a special form. Otherwise, use SCM_LOOKUPCAR1 and check
2783 for NULL. I think I've found the only places where this
2784 applies. */
2785
2786static SCM *
2787scm_lookupcar1 (SCM vloc, SCM genv, int check)
2788{
2789 SCM env = genv;
2790 register SCM *al, fl, var = SCM_CAR (vloc);
2791 register SCM iloc = SCM_ILOC00;
2792 for (; SCM_NIMP (env); env = SCM_CDR (env))
2793 {
a61f4e0c 2794 if (!scm_is_pair (SCM_CAR (env)))
e5156567
DH
2795 break;
2796 al = SCM_CARLOC (env);
2797 for (fl = SCM_CAR (*al); SCM_NIMP (fl); fl = SCM_CDR (fl))
2798 {
a61f4e0c 2799 if (!scm_is_pair (fl))
e5156567 2800 {
bc36d050 2801 if (scm_is_eq (fl, var))
e5156567 2802 {
bc36d050 2803 if (!scm_is_eq (SCM_CAR (vloc), var))
e5156567
DH
2804 goto race;
2805 SCM_SET_CELL_WORD_0 (vloc, SCM_UNPACK (iloc) + SCM_ICDR);
2806 return SCM_CDRLOC (*al);
2807 }
2808 else
2809 break;
2810 }
2811 al = SCM_CDRLOC (*al);
bc36d050 2812 if (scm_is_eq (SCM_CAR (fl), var))
e5156567
DH
2813 {
2814 if (SCM_UNBNDP (SCM_CAR (*al)))
2d0c133f 2815 error_defined_variable (var);
bc36d050 2816 if (!scm_is_eq (SCM_CAR (vloc), var))
e5156567
DH
2817 goto race;
2818 SCM_SETCAR (vloc, iloc);
2819 return SCM_CARLOC (*al);
2820 }
2821 iloc = SCM_PACK (SCM_UNPACK (iloc) + SCM_IDINC);
2822 }
2823 iloc = SCM_PACK ((~SCM_IDSTMSK) & (SCM_UNPACK(iloc) + SCM_IFRINC));
2824 }
2825 {
2826 SCM top_thunk, real_var;
2827 if (SCM_NIMP (env))
2828 {
2829 top_thunk = SCM_CAR (env); /* env now refers to a
2830 top level env thunk */
2831 env = SCM_CDR (env);
2832 }
2833 else
2834 top_thunk = SCM_BOOL_F;
2835 real_var = scm_sym2var (var, top_thunk, SCM_BOOL_F);
7888309b 2836 if (scm_is_false (real_var))
e5156567
DH
2837 goto errout;
2838
a61f4e0c 2839 if (!scm_is_null (env) || SCM_UNBNDP (SCM_VARIABLE_REF (real_var)))
e5156567
DH
2840 {
2841 errout:
2842 if (check)
2843 {
a61f4e0c 2844 if (scm_is_null (env))
e5156567
DH
2845 error_unbound_variable (var);
2846 else
2847 scm_misc_error (NULL, "Damaged environment: ~S",
2848 scm_list_1 (var));
2849 }
2850 else
2851 {
2852 /* A variable could not be found, but we shall
2853 not throw an error. */
2854 static SCM undef_object = SCM_UNDEFINED;
2855 return &undef_object;
2856 }
2857 }
2858
bc36d050 2859 if (!scm_is_eq (SCM_CAR (vloc), var))
e5156567
DH
2860 {
2861 /* Some other thread has changed the very cell we are working
2862 on. In effect, it must have done our job or messed it up
2863 completely. */
2864 race:
2865 var = SCM_CAR (vloc);
2866 if (SCM_VARIABLEP (var))
2867 return SCM_VARIABLE_LOC (var);
2868 if (SCM_ILOCP (var))
2869 return scm_ilookup (var, genv);
2870 /* We can't cope with anything else than variables and ilocs. When
2871 a special form has been memoized (i.e. `let' into `#@let') we
2872 return NULL and expect the calling function to do the right
2873 thing. For the evaluator, this means going back and redoing
2874 the dispatch on the car of the form. */
2875 return NULL;
2876 }
2877
2878 SCM_SETCAR (vloc, real_var);
2879 return SCM_VARIABLE_LOC (real_var);
2880 }
2881}
2882
2883SCM *
2884scm_lookupcar (SCM vloc, SCM genv, int check)
2885{
2886 SCM *loc = scm_lookupcar1 (vloc, genv, check);
2887 if (loc == NULL)
2888 abort ();
2889 return loc;
2890}
2891
2892
36245b66
DH
2893/* During execution, look up a symbol in the top level of the given local
2894 * environment and return the corresponding variable object. If no binding
2895 * for the symbol can be found, an 'Unbound variable' error is signalled. */
2896static SCM
2897lazy_memoize_variable (const SCM symbol, const SCM environment)
2898{
2899 const SCM top_level = scm_env_top_level (environment);
2900 const SCM variable = scm_sym2var (symbol, top_level, SCM_BOOL_F);
2901
7888309b 2902 if (scm_is_false (variable))
36245b66
DH
2903 error_unbound_variable (symbol);
2904 else
2905 return variable;
2906}
2907
2908
62360b89
DH
2909SCM
2910scm_eval_car (SCM pair, SCM env)
2911{
385609b9 2912 return SCM_I_XEVALCAR (pair, env);
62360b89
DH
2913}
2914
2915
6dbd0af5 2916SCM
6e8d25a6 2917scm_eval_args (SCM l, SCM env, SCM proc)
6dbd0af5 2918{
680ed4a8 2919 SCM results = SCM_EOL, *lloc = &results, res;
a61f4e0c 2920 while (scm_is_pair (l))
6dbd0af5 2921 {
680ed4a8 2922 res = EVALCAR (l, env);
904a077d 2923
8ea46249 2924 *lloc = scm_list_1 (res);
a23afe53 2925 lloc = SCM_CDRLOC (*lloc);
6dbd0af5
MD
2926 l = SCM_CDR (l);
2927 }
a61f4e0c 2928 if (!scm_is_null (l))
904a077d 2929 scm_wrong_num_args (proc);
680ed4a8 2930 return results;
6dbd0af5 2931}
c4ac4d88 2932
d0b07b5d 2933
9de33deb
MD
2934SCM
2935scm_eval_body (SCM code, SCM env)
2936{
2937 SCM next;
434f2f7a 2938
9de33deb 2939 again:
01f11e02 2940 next = SCM_CDR (code);
a61f4e0c 2941 while (!scm_is_null (next))
9de33deb
MD
2942 {
2943 if (SCM_IMP (SCM_CAR (code)))
2944 {
2945 if (SCM_ISYMP (SCM_CAR (code)))
2946 {
28d52ebb 2947 scm_rec_mutex_lock (&source_mutex);
9bc4701c
MD
2948 /* check for race condition */
2949 if (SCM_ISYMP (SCM_CAR (code)))
9d4bf6d3 2950 m_expand_body (code, env);
28d52ebb 2951 scm_rec_mutex_unlock (&source_mutex);
9de33deb
MD
2952 goto again;
2953 }
2954 }
2955 else
385609b9 2956 SCM_I_XEVAL (SCM_CAR (code), env);
9de33deb 2957 code = next;
01f11e02 2958 next = SCM_CDR (code);
9de33deb 2959 }
385609b9 2960 return SCM_I_XEVALCAR (code, env);
9de33deb
MD
2961}
2962
0f2d19dd
JB
2963#endif /* !DEVAL */
2964
6dbd0af5
MD
2965
2966/* SECTION: This code is specific for the debugging support. One
2967 * branch is read when DEVAL isn't defined, the other when DEVAL is
2968 * defined.
2969 */
2970
2971#ifndef DEVAL
2972
2973#define SCM_APPLY scm_apply
2974#define PREP_APPLY(proc, args)
2975#define ENTER_APPLY
ddea3325 2976#define RETURN(x) do { return x; } while (0)
b7ff98dd
MD
2977#ifdef STACK_CHECKING
2978#ifndef NO_CEVAL_STACK_CHECKING
2979#define EVAL_STACK_CHECKING
2980#endif
6dbd0af5
MD
2981#endif
2982
2983#else /* !DEVAL */
2984
434f2f7a
DH
2985#undef CEVAL
2986#define CEVAL deval /* Substitute all uses of ceval */
2987
0f2d19dd
JB
2988#undef SCM_APPLY
2989#define SCM_APPLY scm_dapply
434f2f7a 2990
6dbd0af5
MD
2991#undef PREP_APPLY
2992#define PREP_APPLY(p, l) \
2993{ ++debug.info; debug.info->a.proc = p; debug.info->a.args = l; }
434f2f7a 2994
6dbd0af5
MD
2995#undef ENTER_APPLY
2996#define ENTER_APPLY \
d3a6bc94 2997do { \
b7ff98dd 2998 SCM_SET_ARGSREADY (debug);\
5132eef0 2999 if (scm_check_apply_p && SCM_TRAPS_P)\
b7ff98dd 3000 if (SCM_APPLY_FRAME_P || (SCM_TRACE_P && PROCTRACEP (proc)))\
6dbd0af5 3001 {\
7888309b 3002 SCM tmp, tail = scm_from_bool(SCM_TRACED_FRAME_P (debug)); \
c6a4fbce 3003 SCM_SET_TRACED_FRAME (debug); \
d95c0b76 3004 SCM_TRAPS_P = 0;\
b7ff98dd 3005 if (SCM_CHEAPTRAPS_P)\
6dbd0af5 3006 {\
c0ab1b8d 3007 tmp = scm_make_debugobj (&debug);\
d95c0b76 3008 scm_call_3 (SCM_APPLY_FRAME_HDLR, scm_sym_apply_frame, tmp, tail);\
b6d75948 3009 }\
6dbd0af5
MD
3010 else\
3011 {\
5f144b10
GH
3012 int first;\
3013 tmp = scm_make_continuation (&first);\
3014 if (first)\
d95c0b76 3015 scm_call_3 (SCM_APPLY_FRAME_HDLR, scm_sym_apply_frame, tmp, tail);\
6dbd0af5 3016 }\
d95c0b76 3017 SCM_TRAPS_P = 1;\
6dbd0af5 3018 }\
d3a6bc94 3019} while (0)
434f2f7a 3020
0f2d19dd 3021#undef RETURN
ddea3325 3022#define RETURN(e) do { proc = (e); goto exit; } while (0)
434f2f7a 3023
b7ff98dd
MD
3024#ifdef STACK_CHECKING
3025#ifndef EVAL_STACK_CHECKING
3026#define EVAL_STACK_CHECKING
3027#endif
6dbd0af5
MD
3028#endif
3029
0f2d19dd 3030
434f2f7a
DH
3031/* scm_last_debug_frame contains a pointer to the last debugging information
3032 * stack frame. It is accessed very often from the debugging evaluator, so it
3033 * should probably not be indirectly addressed. Better to save and restore it
3034 * from the current root at any stack swaps.
6dbd0af5
MD
3035 */
3036
6dbd0af5
MD
3037/* scm_debug_eframe_size is the number of slots available for pseudo
3038 * stack frames at each real stack frame.
3039 */
3040
c014a02e 3041long scm_debug_eframe_size;
6dbd0af5 3042
434f2f7a
DH
3043int scm_debug_mode_p;
3044int scm_check_entry_p;
3045int scm_check_apply_p;
3046int scm_check_exit_p;
6dbd0af5 3047
c014a02e 3048long scm_eval_stack;
a74145b8 3049
92c2555f 3050scm_t_option scm_eval_opts[] = {
a74145b8 3051 { SCM_OPTION_INTEGER, "stack", 22000, "Size of thread stacks (in machine words)." }
33b97402
MD
3052};
3053
92c2555f 3054scm_t_option scm_debug_opts[] = {
b7ff98dd
MD
3055 { SCM_OPTION_BOOLEAN, "cheap", 1,
3056 "*Flyweight representation of the stack at traps." },
3057 { SCM_OPTION_BOOLEAN, "breakpoints", 0, "*Check for breakpoints." },
3058 { SCM_OPTION_BOOLEAN, "trace", 0, "*Trace mode." },
3059 { SCM_OPTION_BOOLEAN, "procnames", 1,
3060 "Record procedure names at definition." },
3061 { SCM_OPTION_BOOLEAN, "backwards", 0,
3062 "Display backtrace in anti-chronological order." },
274dc5fd 3063 { SCM_OPTION_INTEGER, "width", 79, "Maximal width of backtrace." },
4e646a03
MD
3064 { SCM_OPTION_INTEGER, "indent", 10, "Maximal indentation in backtrace." },
3065 { SCM_OPTION_INTEGER, "frames", 3,
b7ff98dd 3066 "Maximum number of tail-recursive frames in backtrace." },
4e646a03
MD
3067 { SCM_OPTION_INTEGER, "maxdepth", 1000,
3068 "Maximal number of stored backtrace frames." },
3069 { SCM_OPTION_INTEGER, "depth", 20, "Maximal length of printed backtrace." },
11f77bfc
MD
3070 { SCM_OPTION_BOOLEAN, "backtrace", 0, "Show backtrace on error." },
3071 { SCM_OPTION_BOOLEAN, "debug", 0, "Use the debugging evaluator." },
863e833b 3072 { SCM_OPTION_INTEGER, "stack", 20000, "Stack size limit (measured in words; 0 = no check)." },
d95c0b76 3073 { 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."}
6dbd0af5
MD
3074};
3075
92c2555f 3076scm_t_option scm_evaluator_trap_table[] = {
b6d75948 3077 { SCM_OPTION_BOOLEAN, "traps", 0, "Enable evaluator traps." },
b7ff98dd
MD
3078 { SCM_OPTION_BOOLEAN, "enter-frame", 0, "Trap when eval enters new frame." },
3079 { SCM_OPTION_BOOLEAN, "apply-frame", 0, "Trap when entering apply." },
d95c0b76
NJ
3080 { SCM_OPTION_BOOLEAN, "exit-frame", 0, "Trap when exiting eval or apply." },
3081 { SCM_OPTION_SCM, "enter-frame-handler", (unsigned long)SCM_BOOL_F, "Handler for enter-frame traps." },
3082 { SCM_OPTION_SCM, "apply-frame-handler", (unsigned long)SCM_BOOL_F, "Handler for apply-frame traps." },
3083 { SCM_OPTION_SCM, "exit-frame-handler", (unsigned long)SCM_BOOL_F, "Handler for exit-frame traps." }
6dbd0af5
MD
3084};
3085
a1ec6916 3086SCM_DEFINE (scm_eval_options_interface, "eval-options-interface", 0, 1, 0,
1bbd0b84 3087 (SCM setting),
b3f26b14
MG
3088 "Option interface for the evaluation options. Instead of using\n"
3089 "this procedure directly, use the procedures @code{eval-enable},\n"
3939e9df 3090 "@code{eval-disable}, @code{eval-set!} and @code{eval-options}.")
1bbd0b84 3091#define FUNC_NAME s_scm_eval_options_interface
33b97402
MD
3092{
3093 SCM ans;
3094 SCM_DEFER_INTS;
3095 ans = scm_options (setting,
3096 scm_eval_opts,
3097 SCM_N_EVAL_OPTIONS,
1bbd0b84 3098 FUNC_NAME);
a74145b8 3099 scm_eval_stack = SCM_EVAL_STACK * sizeof (void *);
33b97402
MD
3100 SCM_ALLOW_INTS;
3101 return ans;
3102}
1bbd0b84 3103#undef FUNC_NAME
33b97402 3104
d0b07b5d 3105
a1ec6916 3106SCM_DEFINE (scm_evaluator_traps, "evaluator-traps-interface", 0, 1, 0,
1bbd0b84 3107 (SCM setting),
b3f26b14 3108 "Option interface for the evaluator trap options.")
1bbd0b84 3109#define FUNC_NAME s_scm_evaluator_traps
33b97402
MD
3110{
3111 SCM ans;
3112 SCM_DEFER_INTS;
3113 ans = scm_options (setting,
3114 scm_evaluator_trap_table,
3115 SCM_N_EVALUATOR_TRAPS,
1bbd0b84 3116 FUNC_NAME);
33b97402 3117 SCM_RESET_DEBUG_MODE;
bfc69694 3118 SCM_ALLOW_INTS;
33b97402
MD
3119 return ans;
3120}
1bbd0b84 3121#undef FUNC_NAME
33b97402 3122
d0b07b5d 3123
24933780 3124static SCM
a392ee15 3125deval_args (SCM l, SCM env, SCM proc, SCM *lloc)
0f2d19dd 3126{
b1cb24ff 3127 SCM *results = lloc;
a61f4e0c 3128 while (scm_is_pair (l))
0f2d19dd 3129 {
b1cb24ff 3130 const SCM res = EVALCAR (l, env);
904a077d 3131
8ea46249 3132 *lloc = scm_list_1 (res);
a23afe53 3133 lloc = SCM_CDRLOC (*lloc);
0f2d19dd
JB
3134 l = SCM_CDR (l);
3135 }
a61f4e0c 3136 if (!scm_is_null (l))
904a077d 3137 scm_wrong_num_args (proc);
680ed4a8 3138 return *results;
0f2d19dd
JB
3139}
3140
6dbd0af5
MD
3141#endif /* !DEVAL */
3142
3143
a392ee15 3144/* SECTION: This code is compiled twice.
6dbd0af5
MD
3145 */
3146
a392ee15 3147
d9d39d76 3148/* Update the toplevel environment frame ENV so that it refers to the
a392ee15 3149 * current module. */
d9d39d76
MV
3150#define UPDATE_TOPLEVEL_ENV(env) \
3151 do { \
3152 SCM p = scm_current_module_lookup_closure (); \
d0b07b5d 3153 if (p != SCM_CAR (env)) \
d9d39d76
MV
3154 env = scm_top_level_env (p); \
3155 } while (0)
3156
6dbd0af5 3157
6f81708a 3158#define SCM_VALIDATE_NON_EMPTY_COMBINATION(x) \
bc36d050 3159 ASSERT_SYNTAX (!scm_is_eq ((x), SCM_EOL), s_empty_combination, x)
6f81708a
DH
3160
3161
a392ee15
DH
3162/* This is the evaluator. Like any real monster, it has three heads:
3163 *
434f2f7a
DH
3164 * ceval is the non-debugging evaluator, deval is the debugging version. Both
3165 * are implemented using a common code base, using the following mechanism:
3166 * CEVAL is a macro, which is either defined to ceval or deval. Thus, there
3167 * is no function CEVAL, but the code for CEVAL actually compiles to either
3168 * ceval or deval. When CEVAL is defined to ceval, it is known that the macro
3169 * DEVAL is not defined. When CEVAL is defined to deval, then the macro DEVAL
3170 * is known to be defined. Thus, in CEVAL parts for the debugging evaluator
a392ee15
DH
3171 * are enclosed within #ifdef DEVAL ... #endif.
3172 *
434f2f7a
DH
3173 * All three (ceval, deval and their common implementation CEVAL) take two
3174 * input parameters, x and env: x is a single expression to be evalutated.
3175 * env is the environment in which bindings are searched.
a392ee15 3176 *
434f2f7a
DH
3177 * x is known to be a pair. Since x is a single expression, it is necessarily
3178 * in a tail position. If x is just a call to another function like in the
3179 * expression (foo exp1 exp2 ...), the realization of that call therefore
3180 * _must_not_ increase stack usage (the evaluation of exp1, exp2 etc.,
3181 * however, may do so). This is realized by making extensive use of 'goto'
3182 * statements within the evaluator: The gotos replace recursive calls to
3183 * CEVAL, thus re-using the same stack frame that CEVAL was already using.
3184 * If, however, x represents some form that requires to evaluate a sequence of
3185 * expressions like (begin exp1 exp2 ...), then recursive calls to CEVAL are
3186 * performed for all but the last expression of that sequence. */
6dbd0af5 3187
434f2f7a
DH
3188static SCM
3189CEVAL (SCM x, SCM env)
0f2d19dd 3190{
42030fb2 3191 SCM proc, arg1;
6dbd0af5 3192#ifdef DEVAL
92c2555f
MV
3193 scm_t_debug_frame debug;
3194 scm_t_debug_info *debug_info_end;
1646d37b 3195 debug.prev = scm_last_debug_frame;
020c890c 3196 debug.status = 0;
04b6c081 3197 /*
92c2555f 3198 * The debug.vect contains twice as much scm_t_debug_info frames as the
04b6c081
MD
3199 * user has specified with (debug-set! frames <n>).
3200 *
3201 * Even frames are eval frames, odd frames are apply frames.
3202 */
92c2555f 3203 debug.vect = (scm_t_debug_info *) alloca (scm_debug_eframe_size
a392ee15 3204 * sizeof (scm_t_debug_info));
c0ab1b8d
JB
3205 debug.info = debug.vect;
3206 debug_info_end = debug.vect + scm_debug_eframe_size;
3207 scm_last_debug_frame = &debug;
6dbd0af5 3208#endif
b7ff98dd 3209#ifdef EVAL_STACK_CHECKING
79f55b7c 3210 if (scm_stack_checking_enabled_p && SCM_STACK_OVERFLOW_P (&proc))
6dbd0af5 3211 {
b7ff98dd 3212#ifdef DEVAL
6dbd0af5
MD
3213 debug.info->e.exp = x;
3214 debug.info->e.env = env;
b7ff98dd 3215#endif
6dbd0af5
MD
3216 scm_report_stack_overflow ();
3217 }
3218#endif
6a0f6ff3 3219
6dbd0af5
MD
3220#ifdef DEVAL
3221 goto start;
3222#endif
6a0f6ff3 3223
6dbd0af5
MD
3224loop:
3225#ifdef DEVAL
b7ff98dd
MD
3226 SCM_CLEAR_ARGSREADY (debug);
3227 if (SCM_OVERFLOWP (debug))
6dbd0af5 3228 --debug.info;
04b6c081
MD
3229 /*
3230 * In theory, this should be the only place where it is necessary to
3231 * check for space in debug.vect since both eval frames and
3232 * available space are even.
3233 *
3234 * For this to be the case, however, it is necessary that primitive
3235 * special forms which jump back to `loop', `begin' or some similar
680516ba 3236 * label call PREP_APPLY.
04b6c081 3237 */
c0ab1b8d 3238 else if (++debug.info >= debug_info_end)
6dbd0af5 3239 {
b7ff98dd 3240 SCM_SET_OVERFLOW (debug);
6dbd0af5
MD
3241 debug.info -= 2;
3242 }
6a0f6ff3 3243
6dbd0af5
MD
3244start:
3245 debug.info->e.exp = x;
3246 debug.info->e.env = env;
5132eef0
DH
3247 if (scm_check_entry_p && SCM_TRAPS_P)
3248 {
bc76d628
DH
3249 if (SCM_ENTER_FRAME_P
3250 || (SCM_BREAKPOINTS_P && scm_c_source_property_breakpoint_p (x)))
5132eef0 3251 {
bc76d628 3252 SCM stackrep;
7888309b 3253 SCM tail = scm_from_bool (SCM_TAILRECP (debug));
5132eef0
DH
3254 SCM_SET_TAILREC (debug);
3255 if (SCM_CHEAPTRAPS_P)
bc76d628 3256 stackrep = scm_make_debugobj (&debug);
5132eef0
DH
3257 else
3258 {
3259 int first;
3260 SCM val = scm_make_continuation (&first);
3261
3262 if (first)
bc76d628 3263 stackrep = val;
5132eef0
DH
3264 else
3265 {
3266 x = val;
3267 if (SCM_IMP (x))
3268 RETURN (x);
3269 else
3270 /* This gives the possibility for the debugger to
3271 modify the source expression before evaluation. */
3272 goto dispatch;
3273 }
3274 }
3275 SCM_TRAPS_P = 0;
3276 scm_call_4 (SCM_ENTER_FRAME_HDLR,
3277 scm_sym_enter_frame,
bc76d628 3278 stackrep,
5132eef0 3279 tail,
212e58ed 3280 unmemoize_expression (x, env));
5132eef0
DH
3281 SCM_TRAPS_P = 1;
3282 }
3283 }
6dbd0af5 3284#endif
f8769b1d 3285dispatch:
9cb5124f 3286 SCM_TICK;
dec40cd2 3287 if (SCM_ISYMP (SCM_CAR (x)))
0f2d19dd 3288 {
7e6e6b37 3289 switch (ISYMNUM (SCM_CAR (x)))
dec40cd2 3290 {
7e6e6b37 3291 case (ISYMNUM (SCM_IM_AND)):
dec40cd2 3292 x = SCM_CDR (x);
a61f4e0c 3293 while (!scm_is_null (SCM_CDR (x)))
dec40cd2
DH
3294 {
3295 SCM test_result = EVALCAR (x, env);
7888309b 3296 if (scm_is_false (test_result) || SCM_NILP (test_result))
dec40cd2
DH
3297 RETURN (SCM_BOOL_F);
3298 else
3299 x = SCM_CDR (x);
3300 }
3301 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
3302 goto carloop;
0f2d19dd 3303
7e6e6b37 3304 case (ISYMNUM (SCM_IM_BEGIN)):
dec40cd2 3305 x = SCM_CDR (x);
a61f4e0c 3306 if (scm_is_null (x))
dec40cd2 3307 RETURN (SCM_UNSPECIFIED);
b8113bc8 3308
dec40cd2 3309 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
0f2d19dd 3310
dec40cd2
DH
3311 begin:
3312 /* If we are on toplevel with a lookup closure, we need to sync
3313 with the current module. */
a61f4e0c 3314 if (scm_is_pair (env) && !scm_is_pair (SCM_CAR (env)))
dec40cd2
DH
3315 {
3316 UPDATE_TOPLEVEL_ENV (env);
a61f4e0c 3317 while (!scm_is_null (SCM_CDR (x)))
dec40cd2
DH
3318 {
3319 EVALCAR (x, env);
3320 UPDATE_TOPLEVEL_ENV (env);
3321 x = SCM_CDR (x);
3322 }
3323 goto carloop;
3324 }
3325 else
3326 goto nontoplevel_begin;
5280aaca 3327
dec40cd2 3328 nontoplevel_begin:
a61f4e0c 3329 while (!scm_is_null (SCM_CDR (x)))
dec40cd2 3330 {
b1cb24ff 3331 const SCM form = SCM_CAR (x);
dec40cd2
DH
3332 if (SCM_IMP (form))
3333 {
3334 if (SCM_ISYMP (form))
3335 {
3336 scm_rec_mutex_lock (&source_mutex);
3337 /* check for race condition */
3338 if (SCM_ISYMP (SCM_CAR (x)))
3339 m_expand_body (x, env);
3340 scm_rec_mutex_unlock (&source_mutex);
3341 goto nontoplevel_begin;
3342 }
3343 else
3344 SCM_VALIDATE_NON_EMPTY_COMBINATION (form);
3345 }
3346 else
b1cb24ff 3347 (void) EVAL (form, env);
dec40cd2
DH
3348 x = SCM_CDR (x);
3349 }
b1cb24ff 3350
dec40cd2
DH
3351 carloop:
3352 {
3353 /* scm_eval last form in list */
b1cb24ff 3354 const SCM last_form = SCM_CAR (x);
0f2d19dd 3355
a61f4e0c 3356 if (scm_is_pair (last_form))
dec40cd2
DH
3357 {
3358 /* This is by far the most frequent case. */
3359 x = last_form;
3360 goto loop; /* tail recurse */
3361 }
3362 else if (SCM_IMP (last_form))
385609b9 3363 RETURN (SCM_I_EVALIM (last_form, env));
dec40cd2
DH
3364 else if (SCM_VARIABLEP (last_form))
3365 RETURN (SCM_VARIABLE_REF (last_form));
cc95e00a 3366 else if (scm_is_symbol (last_form))
dec40cd2
DH
3367 RETURN (*scm_lookupcar (x, env, 1));
3368 else
3369 RETURN (last_form);
3370 }
0f2d19dd
JB
3371
3372
7e6e6b37 3373 case (ISYMNUM (SCM_IM_CASE)):
dec40cd2
DH
3374 x = SCM_CDR (x);
3375 {
b1cb24ff 3376 const SCM key = EVALCAR (x, env);
dec40cd2 3377 x = SCM_CDR (x);
a61f4e0c 3378 while (!scm_is_null (x))
dec40cd2 3379 {
b1cb24ff 3380 const SCM clause = SCM_CAR (x);
dec40cd2 3381 SCM labels = SCM_CAR (clause);
bc36d050 3382 if (scm_is_eq (labels, SCM_IM_ELSE))
dec40cd2
DH
3383 {
3384 x = SCM_CDR (clause);
3385 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
3386 goto begin;
3387 }
a61f4e0c 3388 while (!scm_is_null (labels))
dec40cd2 3389 {
b1cb24ff 3390 const SCM label = SCM_CAR (labels);
bc36d050 3391 if (scm_is_eq (label, key)
7888309b 3392 || scm_is_true (scm_eqv_p (label, key)))
dec40cd2
DH
3393 {
3394 x = SCM_CDR (clause);
3395 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
3396 goto begin;
3397 }
3398 labels = SCM_CDR (labels);
3399 }
3400 x = SCM_CDR (x);
3401 }
3402 }
3403 RETURN (SCM_UNSPECIFIED);
0f2d19dd
JB
3404
3405
7e6e6b37 3406 case (ISYMNUM (SCM_IM_COND)):
dec40cd2 3407 x = SCM_CDR (x);
a61f4e0c 3408 while (!scm_is_null (x))
dec40cd2 3409 {
b1cb24ff 3410 const SCM clause = SCM_CAR (x);
bc36d050 3411 if (scm_is_eq (SCM_CAR (clause), SCM_IM_ELSE))
dec40cd2
DH
3412 {
3413 x = SCM_CDR (clause);
3414 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
3415 goto begin;
3416 }
3417 else
3418 {
3419 arg1 = EVALCAR (clause, env);
7888309b 3420 if (scm_is_true (arg1) && !SCM_NILP (arg1))
dec40cd2
DH
3421 {
3422 x = SCM_CDR (clause);
a61f4e0c 3423 if (scm_is_null (x))
dec40cd2 3424 RETURN (arg1);
bc36d050 3425 else if (!scm_is_eq (SCM_CAR (x), SCM_IM_ARROW))
dec40cd2
DH
3426 {
3427 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
3428 goto begin;
3429 }
3430 else
3431 {
3432 proc = SCM_CDR (x);
3433 proc = EVALCAR (proc, env);
3434 PREP_APPLY (proc, scm_list_1 (arg1));
3435 ENTER_APPLY;
3436 goto evap1;
3437 }
3438 }
3439 x = SCM_CDR (x);
3440 }
3441 }
3442 RETURN (SCM_UNSPECIFIED);
e5cb71a0 3443
e5cb71a0 3444
7e6e6b37 3445 case (ISYMNUM (SCM_IM_DO)):
dec40cd2
DH
3446 x = SCM_CDR (x);
3447 {
3448 /* Compute the initialization values and the initial environment. */
3449 SCM init_forms = SCM_CAR (x);
3450 SCM init_values = SCM_EOL;
a61f4e0c 3451 while (!scm_is_null (init_forms))
dec40cd2
DH
3452 {
3453 init_values = scm_cons (EVALCAR (init_forms, env), init_values);
3454 init_forms = SCM_CDR (init_forms);
3455 }
3456 x = SCM_CDR (x);
3457 env = SCM_EXTEND_ENV (SCM_CAR (x), init_values, env);
3458 }
3459 x = SCM_CDR (x);
3460 {
3461 SCM test_form = SCM_CAR (x);
3462 SCM body_forms = SCM_CADR (x);
3463 SCM step_forms = SCM_CDDR (x);
e5cb71a0 3464
dec40cd2 3465 SCM test_result = EVALCAR (test_form, env);
e5cb71a0 3466
7888309b 3467 while (scm_is_false (test_result) || SCM_NILP (test_result))
dec40cd2
DH
3468 {
3469 {
3470 /* Evaluate body forms. */
3471 SCM temp_forms;
3472 for (temp_forms = body_forms;
a61f4e0c 3473 !scm_is_null (temp_forms);
dec40cd2
DH
3474 temp_forms = SCM_CDR (temp_forms))
3475 {
3476 SCM form = SCM_CAR (temp_forms);
b1cb24ff
DH
3477 /* Dirk:FIXME: We only need to eval forms that may have
3478 * a side effect here. This is only true for forms that
3479 * start with a pair. All others are just constants.
3480 * Since with the current memoizer 'form' may hold a
3481 * constant, we call EVAL here to handle the constant
3482 * cases. In the long run it would make sense to have
3483 * the macro transformer of 'do' eliminate all forms
3484 * that have no sideeffect. Then instead of EVAL we
3485 * could call CEVAL directly here. */
3486 (void) EVAL (form, env);
dec40cd2
DH
3487 }
3488 }
0f2d19dd 3489
dec40cd2
DH
3490 {
3491 /* Evaluate the step expressions. */
3492 SCM temp_forms;
3493 SCM step_values = SCM_EOL;
3494 for (temp_forms = step_forms;
a61f4e0c 3495 !scm_is_null (temp_forms);
dec40cd2
DH
3496 temp_forms = SCM_CDR (temp_forms))
3497 {
b1cb24ff 3498 const SCM value = EVALCAR (temp_forms, env);
dec40cd2
DH
3499 step_values = scm_cons (value, step_values);
3500 }
3501 env = SCM_EXTEND_ENV (SCM_CAAR (env),
3502 step_values,
3503 SCM_CDR (env));
3504 }
0f2d19dd 3505
dec40cd2
DH
3506 test_result = EVALCAR (test_form, env);
3507 }
3508 }
3509 x = SCM_CDAR (x);
a61f4e0c 3510 if (scm_is_null (x))
dec40cd2
DH
3511 RETURN (SCM_UNSPECIFIED);
3512 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
3513 goto nontoplevel_begin;
0f2d19dd
JB
3514
3515
7e6e6b37 3516 case (ISYMNUM (SCM_IM_IF)):
dec40cd2
DH
3517 x = SCM_CDR (x);
3518 {
3519 SCM test_result = EVALCAR (x, env);
3520 x = SCM_CDR (x); /* then expression */
7888309b 3521 if (scm_is_false (test_result) || SCM_NILP (test_result))
dec40cd2
DH
3522 {
3523 x = SCM_CDR (x); /* else expression */
a61f4e0c 3524 if (scm_is_null (x))
dec40cd2
DH
3525 RETURN (SCM_UNSPECIFIED);
3526 }
3527 }
3528 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
3529 goto carloop;
0f2d19dd
JB
3530
3531
7e6e6b37 3532 case (ISYMNUM (SCM_IM_LET)):
dec40cd2
DH
3533 x = SCM_CDR (x);
3534 {
3535 SCM init_forms = SCM_CADR (x);
3536 SCM init_values = SCM_EOL;
3537 do
3538 {
3539 init_values = scm_cons (EVALCAR (init_forms, env), init_values);
3540 init_forms = SCM_CDR (init_forms);
3541 }
a61f4e0c 3542 while (!scm_is_null (init_forms));
dec40cd2
DH
3543 env = SCM_EXTEND_ENV (SCM_CAR (x), init_values, env);
3544 }
3545 x = SCM_CDDR (x);
3546 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
3547 goto nontoplevel_begin;
0f2d19dd
JB
3548
3549
7e6e6b37 3550 case (ISYMNUM (SCM_IM_LETREC)):
dec40cd2
DH
3551 x = SCM_CDR (x);
3552 env = SCM_EXTEND_ENV (SCM_CAR (x), undefineds, env);
3553 x = SCM_CDR (x);
3554 {
3555 SCM init_forms = SCM_CAR (x);
3556 SCM init_values = SCM_EOL;
3557 do
3558 {
3559 init_values = scm_cons (EVALCAR (init_forms, env), init_values);
3560 init_forms = SCM_CDR (init_forms);
3561 }
a61f4e0c 3562 while (!scm_is_null (init_forms));
dec40cd2
DH
3563 SCM_SETCDR (SCM_CAR (env), init_values);
3564 }
3565 x = SCM_CDR (x);
3566 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
3567 goto nontoplevel_begin;
0f2d19dd 3568
302c12b4 3569
7e6e6b37 3570 case (ISYMNUM (SCM_IM_LETSTAR)):
dec40cd2
DH
3571 x = SCM_CDR (x);
3572 {
3573 SCM bindings = SCM_CAR (x);
a61f4e0c 3574 if (!scm_is_null (bindings))
dec40cd2
DH
3575 {
3576 do
3577 {
3578 SCM name = SCM_CAR (bindings);
3579 SCM init = SCM_CDR (bindings);
3580 env = SCM_EXTEND_ENV (name, EVALCAR (init, env), env);
3581 bindings = SCM_CDR (init);
3582 }
a61f4e0c 3583 while (!scm_is_null (bindings));
dec40cd2
DH
3584 }
3585 }
3586 x = SCM_CDR (x);
3587 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
3588 goto nontoplevel_begin;
0f2d19dd
JB
3589
3590
7e6e6b37 3591 case (ISYMNUM (SCM_IM_OR)):
dec40cd2 3592 x = SCM_CDR (x);
a61f4e0c 3593 while (!scm_is_null (SCM_CDR (x)))
dec40cd2
DH
3594 {
3595 SCM val = EVALCAR (x, env);
7888309b 3596 if (scm_is_true (val) && !SCM_NILP (val))
dec40cd2
DH
3597 RETURN (val);
3598 else
3599 x = SCM_CDR (x);
3600 }
3601 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
3602 goto carloop;
0f2d19dd
JB
3603
3604
7e6e6b37 3605 case (ISYMNUM (SCM_IM_LAMBDA)):
dec40cd2 3606 RETURN (scm_closure (SCM_CDR (x), env));
0f2d19dd
JB
3607
3608
7e6e6b37 3609 case (ISYMNUM (SCM_IM_QUOTE)):
e7313a9d 3610 RETURN (SCM_CDR (x));
0f2d19dd
JB
3611
3612
7e6e6b37 3613 case (ISYMNUM (SCM_IM_SET_X)):
dec40cd2
DH
3614 x = SCM_CDR (x);
3615 {
3616 SCM *location;
3617 SCM variable = SCM_CAR (x);
3618 if (SCM_ILOCP (variable))
3619 location = scm_ilookup (variable, env);
3620 else if (SCM_VARIABLEP (variable))
3621 location = SCM_VARIABLE_LOC (variable);
36245b66
DH
3622 else
3623 {
cc95e00a 3624 /* (scm_is_symbol (variable)) is known to be true */
36245b66
DH
3625 variable = lazy_memoize_variable (variable, env);
3626 SCM_SETCAR (x, variable);
3627 location = SCM_VARIABLE_LOC (variable);
3628 }
dec40cd2
DH
3629 x = SCM_CDR (x);
3630 *location = EVALCAR (x, env);
3631 }
3632 RETURN (SCM_UNSPECIFIED);
3f04400d
DH
3633
3634
7e6e6b37 3635 case (ISYMNUM (SCM_IM_APPLY)):
6bff1368 3636 /* Evaluate the procedure to be applied. */
e910e9d2
DH
3637 x = SCM_CDR (x);
3638 proc = EVALCAR (x, env);
3639 PREP_APPLY (proc, SCM_EOL);
6bff1368
DH
3640
3641 /* Evaluate the argument holding the list of arguments */
e910e9d2
DH
3642 x = SCM_CDR (x);
3643 arg1 = EVALCAR (x, env);
9a069bdd
DH
3644
3645 apply_proc:
3646 /* Go here to tail-apply a procedure. PROC is the procedure and
3647 * ARG1 is the list of arguments. PREP_APPLY must have been called
3648 * before jumping to apply_proc. */
0f2d19dd
JB
3649 if (SCM_CLOSUREP (proc))
3650 {
9a069bdd 3651 SCM formals = SCM_CLOSURE_FORMALS (proc);
6dbd0af5 3652#ifdef DEVAL
9a069bdd 3653 debug.info->a.args = arg1;
6dbd0af5 3654#endif
9a069bdd
DH
3655 if (scm_badargsp (formals, arg1))
3656 scm_wrong_num_args (proc);
3657 ENTER_APPLY;
3658 /* Copy argument list */
3659 if (SCM_NULL_OR_NIL_P (arg1))
3660 env = SCM_EXTEND_ENV (formals, SCM_EOL, SCM_ENV (proc));
3661 else
3662 {
3663 SCM args = scm_list_1 (SCM_CAR (arg1));
3664 SCM tail = args;
3665 arg1 = SCM_CDR (arg1);
3666 while (!SCM_NULL_OR_NIL_P (arg1))
3667 {
3668 SCM new_tail = scm_list_1 (SCM_CAR (arg1));
3669 SCM_SETCDR (tail, new_tail);
3670 tail = new_tail;
3671 arg1 = SCM_CDR (arg1);
3672 }
3673 env = SCM_EXTEND_ENV (formals, args, SCM_ENV (proc));
3674 }
3675
3676 x = SCM_CLOSURE_BODY (proc);
3677 goto nontoplevel_begin;
0f2d19dd 3678 }
3f04400d
DH
3679 else
3680 {
e910e9d2
DH
3681 ENTER_APPLY;
3682 RETURN (SCM_APPLY (proc, arg1, SCM_EOL));
3f04400d
DH
3683 }
3684
0f2d19dd 3685
7e6e6b37 3686 case (ISYMNUM (SCM_IM_CONT)):
5f144b10
GH
3687 {
3688 int first;
3689 SCM val = scm_make_continuation (&first);
3690
e050d4f8 3691 if (!first)
5f144b10 3692 RETURN (val);
e050d4f8
DH
3693 else
3694 {
3695 arg1 = val;
3696 proc = SCM_CDR (x);
6bff1368 3697 proc = EVALCAR (proc, env);
e050d4f8
DH
3698 PREP_APPLY (proc, scm_list_1 (arg1));
3699 ENTER_APPLY;
e050d4f8
DH
3700 goto evap1;
3701 }
5f144b10 3702 }
e050d4f8 3703
0f2d19dd 3704
7e6e6b37 3705 case (ISYMNUM (SCM_IM_DELAY)):
ddea3325 3706 RETURN (scm_makprom (scm_closure (SCM_CDR (x), env)));
a570e93a 3707
e050d4f8 3708
7e6e6b37 3709 case (ISYMNUM (SCM_IM_FUTURE)):
28d52ebb
MD
3710 RETURN (scm_i_make_future (scm_closure (SCM_CDR (x), env)));
3711
3712
7e6e6b37
DH
3713 /* PLACEHOLDER for case (ISYMNUM (SCM_IM_DISPATCH)): The following
3714 code (type_dispatch) is intended to be the tail of the case
3715 clause for the internal macro SCM_IM_DISPATCH. Please don't
3716 remove it from this location without discussing it with Mikael
c8e1d354
MD
3717 <djurfeldt@nada.kth.se> */
3718
f12745b6
DH
3719 /* The type dispatch code is duplicated below
3720 * (c.f. objects.c:scm_mcache_compute_cmethod) since that
3721 * cuts down execution time for type dispatch to 50%. */
dff98306 3722 type_dispatch: /* inputs: x, arg1 */
f12745b6
DH
3723 /* Type dispatch means to determine from the types of the function
3724 * arguments (i. e. the 'signature' of the call), which method from
3725 * a generic function is to be called. This process of selecting
3726 * the right method takes some time. To speed it up, guile uses
3727 * caching: Together with the macro call to dispatch the signatures
3728 * of some previous calls to that generic function from the same
3729 * place are stored (in the code!) in a cache that we call the
3730 * 'method cache'. This is done since it is likely, that
3731 * consecutive calls to dispatch from that position in the code will
3732 * have the same signature. Thus, the type dispatch works as
3733 * follows: First, determine a hash value from the signature of the
3734 * actual arguments. Second, use this hash value as an index to
3735 * find that same signature in the method cache stored at this
3736 * position in the code. If found, you have also found the
3737 * corresponding method that belongs to that signature. If the
3738 * signature is not found in the method cache, you have to perform a
3739 * full search over all signatures stored with the generic
3740 * function. */
3741 {
3742 unsigned long int specializers;
3743 unsigned long int hash_value;
3744 unsigned long int cache_end_pos;
3745 unsigned long int mask;
3746 SCM method_cache;
3747
3748 {
3749 SCM z = SCM_CDDR (x);
3750 SCM tmp = SCM_CADR (z);
e11e83f3 3751 specializers = scm_to_ulong (SCM_CAR (z));
f12745b6
DH
3752
3753 /* Compute a hash value for searching the method cache. There
3754 * are two variants for computing the hash value, a (rather)
3755 * complicated one, and a simple one. For the complicated one
3756 * explained below, tmp holds a number that is used in the
3757 * computation. */
e11e83f3
MV
3758 if (SCM_VECTORP (tmp))
3759 {
3760 /* This method of determining the hash value is much
3761 * simpler: Set the hash value to zero and just perform a
3762 * linear search through the method cache. */
3763 method_cache = tmp;
3764 mask = (unsigned long int) ((long) -1);
3765 hash_value = 0;
3766 cache_end_pos = SCM_VECTOR_LENGTH (method_cache);
3767 }
3768 else
f12745b6
DH
3769 {
3770 /* Use the signature of the actual arguments to determine
3771 * the hash value. This is done as follows: Each class has
3772 * an array of random numbers, that are determined when the
3773 * class is created. The integer 'hashset' is an index into
3774 * that array of random numbers. Now, from all classes that
3775 * are part of the signature of the actual arguments, the
3776 * random numbers at index 'hashset' are taken and summed
3777 * up, giving the hash value. The value of 'hashset' is
3778 * stored at the call to dispatch. This allows to have
3779 * different 'formulas' for calculating the hash value at
3780 * different places where dispatch is called. This allows
3781 * to optimize the hash formula at every individual place
3782 * where dispatch is called, such that hopefully the hash
3783 * value that is computed will directly point to the right
3784 * method in the method cache. */
e11e83f3 3785 unsigned long int hashset = scm_to_ulong (tmp);
f12745b6 3786 unsigned long int counter = specializers + 1;
dff98306 3787 SCM tmp_arg = arg1;
f12745b6 3788 hash_value = 0;
a61f4e0c 3789 while (!scm_is_null (tmp_arg) && counter != 0)
61364ba6 3790 {
f12745b6
DH
3791 SCM class = scm_class_of (SCM_CAR (tmp_arg));
3792 hash_value += SCM_INSTANCE_HASH (class, hashset);
3793 tmp_arg = SCM_CDR (tmp_arg);
3794 counter--;
61364ba6 3795 }
f12745b6
DH
3796 z = SCM_CDDR (z);
3797 method_cache = SCM_CADR (z);
e11e83f3 3798 mask = scm_to_ulong (SCM_CAR (z));
f12745b6
DH
3799 hash_value &= mask;
3800 cache_end_pos = hash_value;
3801 }
f12745b6 3802 }
61364ba6 3803
f12745b6
DH
3804 {
3805 /* Search the method cache for a method with a matching
3806 * signature. Start the search at position 'hash_value'. The
3807 * hashing implementation uses linear probing for conflict
3808 * resolution, that is, if the signature in question is not
3809 * found at the starting index in the hash table, the next table
3810 * entry is tried, and so on, until in the worst case the whole
3811 * cache has been searched, but still the signature has not been
3812 * found. */
3813 SCM z;
3814 do
3815 {
dff98306 3816 SCM args = arg1; /* list of arguments */
f12745b6 3817 z = SCM_VELTS (method_cache)[hash_value];
a61f4e0c 3818 while (!scm_is_null (args))
61364ba6
MD
3819 {
3820 /* More arguments than specifiers => CLASS != ENV */
f12745b6 3821 SCM class_of_arg = scm_class_of (SCM_CAR (args));
bc36d050 3822 if (!scm_is_eq (class_of_arg, SCM_CAR (z)))
61364ba6 3823 goto next_method;
f12745b6 3824 args = SCM_CDR (args);
61364ba6
MD
3825 z = SCM_CDR (z);
3826 }
f12745b6 3827 /* Fewer arguments than specifiers => CAR != ENV */
a61f4e0c 3828 if (scm_is_null (SCM_CAR (z)) || scm_is_pair (SCM_CAR (z)))
f12745b6
DH
3829 goto apply_cmethod;
3830 next_method:
3831 hash_value = (hash_value + 1) & mask;
3832 } while (hash_value != cache_end_pos);
3833
3834 /* No appropriate method was found in the cache. */
dff98306 3835 z = scm_memoize_method (x, arg1);
f12745b6 3836
dff98306 3837 apply_cmethod: /* inputs: z, arg1 */
f12745b6
DH
3838 {
3839 SCM formals = SCM_CMETHOD_FORMALS (z);
821f18a4 3840 env = SCM_EXTEND_ENV (formals, arg1, SCM_CMETHOD_ENV (z));
f12745b6
DH
3841 x = SCM_CMETHOD_BODY (z);
3842 goto nontoplevel_begin;
3843 }
3844 }
61364ba6 3845 }
73b64342 3846
1d15ecd3 3847
7e6e6b37 3848 case (ISYMNUM (SCM_IM_SLOT_REF)):
ca4be6ea 3849 x = SCM_CDR (x);
1d15ecd3
DH
3850 {
3851 SCM instance = EVALCAR (x, env);
e11e83f3 3852 unsigned long int slot = SCM_I_INUM (SCM_CDR (x));
1d15ecd3
DH
3853 RETURN (SCM_PACK (SCM_STRUCT_DATA (instance) [slot]));
3854 }
3855
3856
7e6e6b37 3857 case (ISYMNUM (SCM_IM_SLOT_SET_X)):
ca4be6ea 3858 x = SCM_CDR (x);
1d15ecd3
DH
3859 {
3860 SCM instance = EVALCAR (x, env);
e11e83f3 3861 unsigned long int slot = SCM_I_INUM (SCM_CADR (x));
1d15ecd3
DH
3862 SCM value = EVALCAR (SCM_CDDR (x), env);
3863 SCM_STRUCT_DATA (instance) [slot] = SCM_UNPACK (value);
3864 RETURN (SCM_UNSPECIFIED);
3865 }
3866
c96d76b8 3867
22721140 3868#if SCM_ENABLE_ELISP
ca4be6ea 3869
7e6e6b37 3870 case (ISYMNUM (SCM_IM_NIL_COND)):
1d15ecd3
DH
3871 {
3872 SCM test_form = SCM_CDR (x);
3873 x = SCM_CDR (test_form);
3874 while (!SCM_NULL_OR_NIL_P (x))
3875 {
3876 SCM test_result = EVALCAR (test_form, env);
7888309b 3877 if (!(scm_is_false (test_result)
1d15ecd3
DH
3878 || SCM_NULL_OR_NIL_P (test_result)))
3879 {
bc36d050 3880 if (scm_is_eq (SCM_CAR (x), SCM_UNSPECIFIED))
1d15ecd3
DH
3881 RETURN (test_result);
3882 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
3883 goto carloop;
3884 }
3885 else
3886 {
3887 test_form = SCM_CDR (x);
3888 x = SCM_CDR (test_form);
3889 }
3890 }
3891 x = test_form;
3892 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
3893 goto carloop;
3894 }
73b64342 3895
c96d76b8 3896#endif /* SCM_ENABLE_ELISP */
73b64342 3897
7e6e6b37 3898 case (ISYMNUM (SCM_IM_BIND)):
2e171178
MV
3899 {
3900 SCM vars, exps, vals;
73b64342 3901
2e171178
MV
3902 x = SCM_CDR (x);
3903 vars = SCM_CAAR (x);
3904 exps = SCM_CDAR (x);
2e171178 3905 vals = SCM_EOL;
a61f4e0c 3906 while (!scm_is_null (exps))
2e171178
MV
3907 {
3908 vals = scm_cons (EVALCAR (exps, env), vals);
3909 exps = SCM_CDR (exps);
3910 }
3911
3912 scm_swap_bindings (vars, vals);
3913 scm_dynwinds = scm_acons (vars, vals, scm_dynwinds);
1d15ecd3
DH
3914
3915 /* Ignore all but the last evaluation result. */
a61f4e0c 3916 for (x = SCM_CDR (x); !scm_is_null (SCM_CDR (x)); x = SCM_CDR (x))
2e171178 3917 {
a61f4e0c 3918 if (scm_is_pair (SCM_CAR (x)))
434f2f7a 3919 CEVAL (SCM_CAR (x), env);
2e171178
MV
3920 }
3921 proc = EVALCAR (x, env);
73b64342 3922
2e171178
MV
3923 scm_dynwinds = SCM_CDR (scm_dynwinds);
3924 scm_swap_bindings (vars, vals);
73b64342 3925
ddea3325 3926 RETURN (proc);
2e171178 3927 }
c96d76b8 3928
1d15ecd3 3929
7e6e6b37 3930 case (ISYMNUM (SCM_IM_CALL_WITH_VALUES)):
a513ead3 3931 {
9a069bdd
DH
3932 SCM producer;
3933
3934 x = SCM_CDR (x);
3935 producer = EVALCAR (x, env);
3936 x = SCM_CDR (x);
3937 proc = EVALCAR (x, env); /* proc is the consumer. */
3938 arg1 = SCM_APPLY (producer, SCM_EOL, SCM_EOL);
dff98306 3939 if (SCM_VALUESP (arg1))
82b3e2c6
DH
3940 {
3941 /* The list of arguments is not copied. Rather, it is assumed
3942 * that this has been done by the 'values' procedure. */
3943 arg1 = scm_struct_ref (arg1, SCM_INUM0);
3944 }
a513ead3 3945 else
82b3e2c6
DH
3946 {
3947 arg1 = scm_list_1 (arg1);
3948 }
9a069bdd
DH
3949 PREP_APPLY (proc, arg1);
3950 goto apply_proc;
a513ead3
MV
3951 }
3952
b7798e10 3953
0f2d19dd 3954 default:
dec40cd2 3955 break;
0f2d19dd 3956 }
dec40cd2
DH
3957 }
3958 else
3959 {
434f2f7a
DH
3960 if (SCM_VARIABLEP (SCM_CAR (x)))
3961 proc = SCM_VARIABLE_REF (SCM_CAR (x));
f9986767
DH
3962 else if (SCM_ILOCP (SCM_CAR (x)))
3963 proc = *scm_ilookup (SCM_CAR (x), env);
a61f4e0c 3964 else if (scm_is_pair (SCM_CAR (x)))
434f2f7a 3965 proc = CEVAL (SCM_CAR (x), env);
cc95e00a 3966 else if (scm_is_symbol (SCM_CAR (x)))
0f2d19dd 3967 {
e050d4f8 3968 SCM orig_sym = SCM_CAR (x);
b7798e10
DH
3969 {
3970 SCM *location = scm_lookupcar1 (x, env, 1);
3971 if (location == NULL)
3972 {
3973 /* we have lost the race, start again. */
3974 goto dispatch;
3975 }
3976 proc = *location;
3977 }
f8769b1d 3978
22a52da1 3979 if (SCM_MACROP (proc))
0f2d19dd 3980 {
86d31dfe
MV
3981 SCM_SETCAR (x, orig_sym); /* Undo memoizing effect of
3982 lookupcar */
e050d4f8 3983 handle_a_macro: /* inputs: x, env, proc */
368bf056 3984#ifdef DEVAL
7c354052
MD
3985 /* Set a flag during macro expansion so that macro
3986 application frames can be deleted from the backtrace. */
3987 SCM_SET_MACROEXP (debug);
368bf056 3988#endif
dff98306 3989 arg1 = SCM_APPLY (SCM_MACRO_CODE (proc), x,
6bff1368 3990 scm_cons (env, scm_listofnull));
7c354052
MD
3991#ifdef DEVAL
3992 SCM_CLEAR_MACROEXP (debug);
3993#endif
22a52da1 3994 switch (SCM_MACRO_TYPE (proc))
0f2d19dd 3995 {
3b88ed2a 3996 case 3:
0f2d19dd 3997 case 2:
a61f4e0c 3998 if (!scm_is_pair (arg1))
dff98306 3999 arg1 = scm_list_2 (SCM_IM_BEGIN, arg1);
e7313a9d 4000
bc36d050
MV
4001 assert (!scm_is_eq (x, SCM_CAR (arg1))
4002 && !scm_is_eq (x, SCM_CDR (arg1)));
e7313a9d 4003
6dbd0af5 4004#ifdef DEVAL
22a52da1 4005 if (!SCM_CLOSUREP (SCM_MACRO_CODE (proc)))
6dbd0af5 4006 {
6dbd0af5 4007 SCM_DEFER_INTS;
dff98306
DH
4008 SCM_SETCAR (x, SCM_CAR (arg1));
4009 SCM_SETCDR (x, SCM_CDR (arg1));
6dbd0af5
MD
4010 SCM_ALLOW_INTS;
4011 goto dispatch;
4012 }
4013 /* Prevent memoizing of debug info expression. */
6203706f
MD
4014 debug.info->e.exp = scm_cons_source (debug.info->e.exp,
4015 SCM_CAR (x),
4016 SCM_CDR (x));
6dbd0af5 4017#endif
0f2d19dd 4018 SCM_DEFER_INTS;
dff98306
DH
4019 SCM_SETCAR (x, SCM_CAR (arg1));
4020 SCM_SETCDR (x, SCM_CDR (arg1));
0f2d19dd 4021 SCM_ALLOW_INTS;
680516ba
DH
4022 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
4023 goto loop;
3063e30a 4024#if SCM_ENABLE_DEPRECATED == 1
0f2d19dd 4025 case 1:
680516ba
DH
4026 x = arg1;
4027 if (SCM_NIMP (x))
4028 {
4029 PREP_APPLY (SCM_UNDEFINED, SCM_EOL);
4030 goto loop;
4031 }
4032 else
4033 RETURN (arg1);
3063e30a 4034#endif
0f2d19dd 4035 case 0:
dff98306 4036 RETURN (arg1);
0f2d19dd
JB
4037 }
4038 }
4039 }
4040 else
434f2f7a 4041 proc = SCM_CAR (x);
bd987b8e 4042
ddd8f927 4043 if (SCM_MACROP (proc))
0f2d19dd 4044 goto handle_a_macro;
0f2d19dd
JB
4045 }
4046
4047
dec40cd2
DH
4048 /* When reaching this part of the code, the following is granted: Variable x
4049 * holds the first pair of an expression of the form (<function> arg ...).
4050 * Variable proc holds the object that resulted from the evaluation of
4051 * <function>. In the following, the arguments (if any) will be evaluated,
4052 * and proc will be applied to them. If proc does not really hold a
4053 * function object, this will be signalled as an error on the scheme
4054 * level. If the number of arguments does not match the number of arguments
4055 * that are allowed to be passed to proc, also an error on the scheme level
4056 * will be signalled. */
6dbd0af5 4057 PREP_APPLY (proc, SCM_EOL);
a61f4e0c 4058 if (scm_is_null (SCM_CDR (x))) {
6dbd0af5 4059 ENTER_APPLY;
89efbff4 4060 evap0:
ddd8f927 4061 SCM_ASRTGO (!SCM_IMP (proc), badfun);
0f2d19dd
JB
4062 switch (SCM_TYP7 (proc))
4063 { /* no arguments given */
4064 case scm_tc7_subr_0:
4065 RETURN (SCM_SUBRF (proc) ());
4066 case scm_tc7_subr_1o:
4067 RETURN (SCM_SUBRF (proc) (SCM_UNDEFINED));
4068 case scm_tc7_lsubr:
4069 RETURN (SCM_SUBRF (proc) (SCM_EOL));
4070 case scm_tc7_rpsubr:
4071 RETURN (SCM_BOOL_T);
4072 case scm_tc7_asubr:
4073 RETURN (SCM_SUBRF (proc) (SCM_UNDEFINED, SCM_UNDEFINED));
0717dfd8 4074 case scm_tc7_smob:
68b06924 4075 if (!SCM_SMOB_APPLICABLE_P (proc))
0717dfd8 4076 goto badfun;
68b06924 4077 RETURN (SCM_SMOB_APPLY_0 (proc));
0f2d19dd 4078 case scm_tc7_cclo:
dff98306 4079 arg1 = proc;
0f2d19dd 4080 proc = SCM_CCLO_SUBR (proc);
6dbd0af5
MD
4081#ifdef DEVAL
4082 debug.info->a.proc = proc;
dff98306 4083 debug.info->a.args = scm_list_1 (arg1);
6dbd0af5 4084#endif
0f2d19dd 4085 goto evap1;
89efbff4
MD
4086 case scm_tc7_pws:
4087 proc = SCM_PROCEDURE (proc);
4088#ifdef DEVAL
4089 debug.info->a.proc = proc;
4090#endif
002f1a5d
MD
4091 if (!SCM_CLOSUREP (proc))
4092 goto evap0;
ddd8f927 4093 /* fallthrough */
0f2d19dd 4094 case scm_tcs_closures:
ddd8f927
DH
4095 {
4096 const SCM formals = SCM_CLOSURE_FORMALS (proc);
a61f4e0c 4097 if (scm_is_pair (formals))
212e58ed 4098 goto wrongnumargs;
ddd8f927
DH
4099 x = SCM_CLOSURE_BODY (proc);
4100 env = SCM_EXTEND_ENV (formals, SCM_EOL, SCM_ENV (proc));
4101 goto nontoplevel_begin;
4102 }
904a077d 4103 case scm_tcs_struct:
195847fa
MD
4104 if (SCM_OBJ_CLASS_FLAGS (proc) & SCM_CLASSF_PURE_GENERIC)
4105 {
4106 x = SCM_ENTITY_PROCEDURE (proc);
dff98306 4107 arg1 = SCM_EOL;
195847fa
MD
4108 goto type_dispatch;
4109 }
2ca0d207 4110 else if (SCM_I_OPERATORP (proc))
da7f71d7 4111 {
dff98306 4112 arg1 = proc;
195847fa
MD
4113 proc = (SCM_I_ENTITYP (proc)
4114 ? SCM_ENTITY_PROCEDURE (proc)
4115 : SCM_OPERATOR_PROCEDURE (proc));
da7f71d7 4116#ifdef DEVAL
195847fa 4117 debug.info->a.proc = proc;
dff98306 4118 debug.info->a.args = scm_list_1 (arg1);
da7f71d7 4119#endif
ddd8f927 4120 goto evap1;
da7f71d7 4121 }
2ca0d207
DH
4122 else
4123 goto badfun;
0f2d19dd
JB
4124 case scm_tc7_subr_1:
4125 case scm_tc7_subr_2:
4126 case scm_tc7_subr_2o:
14b18ed6 4127 case scm_tc7_dsubr:
0f2d19dd
JB
4128 case scm_tc7_cxr:
4129 case scm_tc7_subr_3:
4130 case scm_tc7_lsubr_2:
212e58ed 4131 wrongnumargs:
f5bf2977 4132 scm_wrong_num_args (proc);
0f2d19dd 4133 default:
ddd8f927
DH
4134 badfun:
4135 scm_misc_error (NULL, "Wrong type to apply: ~S", scm_list_1 (proc));
0f2d19dd 4136 }
6dbd0af5 4137 }
0f2d19dd
JB
4138
4139 /* must handle macros by here */
4140 x = SCM_CDR (x);
a61f4e0c 4141 if (scm_is_pair (x))
dff98306 4142 arg1 = EVALCAR (x, env);
680ed4a8 4143 else
ab1f1094 4144 scm_wrong_num_args (proc);
6dbd0af5 4145#ifdef DEVAL
dff98306 4146 debug.info->a.args = scm_list_1 (arg1);
6dbd0af5 4147#endif
0f2d19dd 4148 x = SCM_CDR (x);
42030fb2
DH
4149 {
4150 SCM arg2;
a61f4e0c 4151 if (scm_is_null (x))
42030fb2
DH
4152 {
4153 ENTER_APPLY;
4154 evap1: /* inputs: proc, arg1 */
ddd8f927 4155 SCM_ASRTGO (!SCM_IMP (proc), badfun);
42030fb2
DH
4156 switch (SCM_TYP7 (proc))
4157 { /* have one argument in arg1 */
4158 case scm_tc7_subr_2o:
4159 RETURN (SCM_SUBRF (proc) (arg1, SCM_UNDEFINED));
4160 case scm_tc7_subr_1:
4161 case scm_tc7_subr_1o:
4162 RETURN (SCM_SUBRF (proc) (arg1));
14b18ed6 4163 case scm_tc7_dsubr:
e11e83f3 4164 if (SCM_I_INUMP (arg1))
14b18ed6 4165 {
d9a67fc4 4166 RETURN (scm_from_double (SCM_DSUBRF (proc) ((double) SCM_I_INUM (arg1))));
14b18ed6
DH
4167 }
4168 else if (SCM_REALP (arg1))
4169 {
d9a67fc4 4170 RETURN (scm_from_double (SCM_DSUBRF (proc) (SCM_REAL_VALUE (arg1))));
14b18ed6
DH
4171 }
4172 else if (SCM_BIGP (arg1))
4173 {
d9a67fc4 4174 RETURN (scm_from_double (SCM_DSUBRF (proc) (scm_i_big2dbl (arg1))));
14b18ed6 4175 }
f92e85f7
MV
4176 else if (SCM_FRACTIONP (arg1))
4177 {
d9a67fc4 4178 RETURN (scm_from_double (SCM_DSUBRF (proc) (scm_i_fraction2double (arg1))));
f92e85f7
MV
4179 }
4180 SCM_WTA_DISPATCH_1 (*SCM_SUBR_GENERIC (proc), arg1,
cc95e00a
MV
4181 SCM_ARG1,
4182 scm_i_symbol_chars (SCM_SNAME (proc)));
42030fb2 4183 case scm_tc7_cxr:
a61f4e0c 4184 RETURN (scm_i_chase_pairs (arg1, (scm_t_bits) SCM_SUBRF (proc)));
42030fb2
DH
4185 case scm_tc7_rpsubr:
4186 RETURN (SCM_BOOL_T);
4187 case scm_tc7_asubr:
4188 RETURN (SCM_SUBRF (proc) (arg1, SCM_UNDEFINED));
4189 case scm_tc7_lsubr:
0f2d19dd 4190#ifdef DEVAL
42030fb2 4191 RETURN (SCM_SUBRF (proc) (debug.info->a.args));
0f2d19dd 4192#else
42030fb2 4193 RETURN (SCM_SUBRF (proc) (scm_list_1 (arg1)));
0f2d19dd 4194#endif
42030fb2
DH
4195 case scm_tc7_smob:
4196 if (!SCM_SMOB_APPLICABLE_P (proc))
4197 goto badfun;
4198 RETURN (SCM_SMOB_APPLY_1 (proc, arg1));
4199 case scm_tc7_cclo:
4200 arg2 = arg1;
4201 arg1 = proc;
4202 proc = SCM_CCLO_SUBR (proc);
6dbd0af5 4203#ifdef DEVAL
42030fb2
DH
4204 debug.info->a.args = scm_cons (arg1, debug.info->a.args);
4205 debug.info->a.proc = proc;
6dbd0af5 4206#endif
42030fb2
DH
4207 goto evap2;
4208 case scm_tc7_pws:
4209 proc = SCM_PROCEDURE (proc);
89efbff4 4210#ifdef DEVAL
42030fb2 4211 debug.info->a.proc = proc;
89efbff4 4212#endif
42030fb2
DH
4213 if (!SCM_CLOSUREP (proc))
4214 goto evap1;
ddd8f927 4215 /* fallthrough */
42030fb2 4216 case scm_tcs_closures:
ddd8f927
DH
4217 {
4218 /* clos1: */
4219 const SCM formals = SCM_CLOSURE_FORMALS (proc);
a61f4e0c
MV
4220 if (scm_is_null (formals)
4221 || (scm_is_pair (formals) && scm_is_pair (SCM_CDR (formals))))
212e58ed 4222 goto wrongnumargs;
ddd8f927 4223 x = SCM_CLOSURE_BODY (proc);
0f2d19dd 4224#ifdef DEVAL
ddd8f927
DH
4225 env = SCM_EXTEND_ENV (formals,
4226 debug.info->a.args,
4227 SCM_ENV (proc));
0f2d19dd 4228#else
ddd8f927
DH
4229 env = SCM_EXTEND_ENV (formals,
4230 scm_list_1 (arg1),
4231 SCM_ENV (proc));
0f2d19dd 4232#endif
ddd8f927
DH
4233 goto nontoplevel_begin;
4234 }
42030fb2
DH
4235 case scm_tcs_struct:
4236 if (SCM_OBJ_CLASS_FLAGS (proc) & SCM_CLASSF_PURE_GENERIC)
4237 {
4238 x = SCM_ENTITY_PROCEDURE (proc);
f3d2630a 4239#ifdef DEVAL
42030fb2 4240 arg1 = debug.info->a.args;
f3d2630a 4241#else
42030fb2 4242 arg1 = scm_list_1 (arg1);
f3d2630a 4243#endif
42030fb2
DH
4244 goto type_dispatch;
4245 }
2ca0d207 4246 else if (SCM_I_OPERATORP (proc))
42030fb2
DH
4247 {
4248 arg2 = arg1;
4249 arg1 = proc;
4250 proc = (SCM_I_ENTITYP (proc)
4251 ? SCM_ENTITY_PROCEDURE (proc)
4252 : SCM_OPERATOR_PROCEDURE (proc));
0c32d76c 4253#ifdef DEVAL
42030fb2
DH
4254 debug.info->a.args = scm_cons (arg1, debug.info->a.args);
4255 debug.info->a.proc = proc;
0c32d76c 4256#endif
ddd8f927 4257 goto evap2;
42030fb2 4258 }
2ca0d207
DH
4259 else
4260 goto badfun;
42030fb2
DH
4261 case scm_tc7_subr_2:
4262 case scm_tc7_subr_0:
4263 case scm_tc7_subr_3:
4264 case scm_tc7_lsubr_2:
ab1f1094 4265 scm_wrong_num_args (proc);
42030fb2
DH
4266 default:
4267 goto badfun;
4268 }
4269 }
a61f4e0c 4270 if (scm_is_pair (x))
42030fb2
DH
4271 arg2 = EVALCAR (x, env);
4272 else
ab1f1094 4273 scm_wrong_num_args (proc);
bd987b8e 4274
42030fb2 4275 { /* have two or more arguments */
6dbd0af5 4276#ifdef DEVAL
42030fb2 4277 debug.info->a.args = scm_list_2 (arg1, arg2);
6dbd0af5 4278#endif
42030fb2 4279 x = SCM_CDR (x);
a61f4e0c 4280 if (scm_is_null (x)) {
42030fb2
DH
4281 ENTER_APPLY;
4282 evap2:
ddd8f927 4283 SCM_ASRTGO (!SCM_IMP (proc), badfun);
42030fb2
DH
4284 switch (SCM_TYP7 (proc))
4285 { /* have two arguments */
4286 case scm_tc7_subr_2:
4287 case scm_tc7_subr_2o:
4288 RETURN (SCM_SUBRF (proc) (arg1, arg2));
4289 case scm_tc7_lsubr:
0f2d19dd 4290#ifdef DEVAL
42030fb2 4291 RETURN (SCM_SUBRF (proc) (debug.info->a.args));
6dbd0af5 4292#else
42030fb2
DH
4293 RETURN (SCM_SUBRF (proc) (scm_list_2 (arg1, arg2)));
4294#endif
4295 case scm_tc7_lsubr_2:
4296 RETURN (SCM_SUBRF (proc) (arg1, arg2, SCM_EOL));
4297 case scm_tc7_rpsubr:
4298 case scm_tc7_asubr:
4299 RETURN (SCM_SUBRF (proc) (arg1, arg2));
4300 case scm_tc7_smob:
4301 if (!SCM_SMOB_APPLICABLE_P (proc))
4302 goto badfun;
4303 RETURN (SCM_SMOB_APPLY_2 (proc, arg1, arg2));
4304 cclon:
4305 case scm_tc7_cclo:
0f2d19dd 4306#ifdef DEVAL
42030fb2
DH
4307 RETURN (SCM_APPLY (SCM_CCLO_SUBR (proc),
4308 scm_cons (proc, debug.info->a.args),
4309 SCM_EOL));
0f2d19dd 4310#else
42030fb2
DH
4311 RETURN (SCM_APPLY (SCM_CCLO_SUBR (proc),
4312 scm_cons2 (proc, arg1,
4313 scm_cons (arg2,
4314 scm_eval_args (x,
4315 env,
4316 proc))),
4317 SCM_EOL));
4318#endif
4319 case scm_tcs_struct:
4320 if (SCM_OBJ_CLASS_FLAGS (proc) & SCM_CLASSF_PURE_GENERIC)
4321 {
4322 x = SCM_ENTITY_PROCEDURE (proc);
4323#ifdef DEVAL
4324 arg1 = debug.info->a.args;
4325#else
4326 arg1 = scm_list_2 (arg1, arg2);
6dbd0af5 4327#endif
42030fb2
DH
4328 goto type_dispatch;
4329 }
2ca0d207 4330 else if (SCM_I_OPERATORP (proc))
42030fb2
DH
4331 {
4332 operatorn:
f3d2630a 4333#ifdef DEVAL
42030fb2
DH
4334 RETURN (SCM_APPLY (SCM_I_ENTITYP (proc)
4335 ? SCM_ENTITY_PROCEDURE (proc)
4336 : SCM_OPERATOR_PROCEDURE (proc),
4337 scm_cons (proc, debug.info->a.args),
4338 SCM_EOL));
f3d2630a 4339#else
42030fb2
DH
4340 RETURN (SCM_APPLY (SCM_I_ENTITYP (proc)
4341 ? SCM_ENTITY_PROCEDURE (proc)
4342 : SCM_OPERATOR_PROCEDURE (proc),
4343 scm_cons2 (proc, arg1,
4344 scm_cons (arg2,
4345 scm_eval_args (x,
4346 env,
4347 proc))),
4348 SCM_EOL));
f3d2630a 4349#endif
42030fb2 4350 }
2ca0d207
DH
4351 else
4352 goto badfun;
42030fb2 4353 case scm_tc7_subr_0:
14b18ed6 4354 case scm_tc7_dsubr:
42030fb2
DH
4355 case scm_tc7_cxr:
4356 case scm_tc7_subr_1o:
4357 case scm_tc7_subr_1:
4358 case scm_tc7_subr_3:
ab1f1094 4359 scm_wrong_num_args (proc);
42030fb2 4360 default:
9b07e212 4361 goto badfun;
42030fb2
DH
4362 case scm_tc7_pws:
4363 proc = SCM_PROCEDURE (proc);
4364#ifdef DEVAL
4365 debug.info->a.proc = proc;
4366#endif
4367 if (!SCM_CLOSUREP (proc))
4368 goto evap2;
ddd8f927 4369 /* fallthrough */
42030fb2 4370 case scm_tcs_closures:
ddd8f927
DH
4371 {
4372 /* clos2: */
4373 const SCM formals = SCM_CLOSURE_FORMALS (proc);
a61f4e0c
MV
4374 if (scm_is_null (formals)
4375 || (scm_is_pair (formals)
4376 && (scm_is_null (SCM_CDR (formals))
4377 || (scm_is_pair (SCM_CDR (formals))
4378 && scm_is_pair (SCM_CDDR (formals))))))
212e58ed 4379 goto wrongnumargs;
0c32d76c 4380#ifdef DEVAL
ddd8f927
DH
4381 env = SCM_EXTEND_ENV (formals,
4382 debug.info->a.args,
4383 SCM_ENV (proc));
195847fa 4384#else
ddd8f927
DH
4385 env = SCM_EXTEND_ENV (formals,
4386 scm_list_2 (arg1, arg2),
4387 SCM_ENV (proc));
195847fa 4388#endif
ddd8f927
DH
4389 x = SCM_CLOSURE_BODY (proc);
4390 goto nontoplevel_begin;
4391 }
42030fb2
DH
4392 }
4393 }
a61f4e0c 4394 if (!scm_is_pair (x))
ab1f1094 4395 scm_wrong_num_args (proc);
42030fb2
DH
4396#ifdef DEVAL
4397 debug.info->a.args = scm_cons2 (arg1, arg2,
4398 deval_args (x, env, proc,
4399 SCM_CDRLOC (SCM_CDR (debug.info->a.args))));
4400#endif
4401 ENTER_APPLY;
4402 evap3:
ddd8f927 4403 SCM_ASRTGO (!SCM_IMP (proc), badfun);
42030fb2
DH
4404 switch (SCM_TYP7 (proc))
4405 { /* have 3 or more arguments */
4406#ifdef DEVAL
6dbd0af5 4407 case scm_tc7_subr_3:
a61f4e0c 4408 if (!scm_is_null (SCM_CDR (x)))
ab1f1094
DH
4409 scm_wrong_num_args (proc);
4410 else
4411 RETURN (SCM_SUBRF (proc) (arg1, arg2,
4412 SCM_CADDR (debug.info->a.args)));
42030fb2
DH
4413 case scm_tc7_asubr:
4414 arg1 = SCM_SUBRF(proc)(arg1, arg2);
4415 arg2 = SCM_CDDR (debug.info->a.args);
4416 do
4417 {
4418 arg1 = SCM_SUBRF(proc)(arg1, SCM_CAR (arg2));
4419 arg2 = SCM_CDR (arg2);
4420 }
4421 while (SCM_NIMP (arg2));
4422 RETURN (arg1);
4423 case scm_tc7_rpsubr:
7888309b 4424 if (scm_is_false (SCM_SUBRF (proc) (arg1, arg2)))
42030fb2
DH
4425 RETURN (SCM_BOOL_F);
4426 arg1 = SCM_CDDR (debug.info->a.args);
4427 do
4428 {
7888309b 4429 if (scm_is_false (SCM_SUBRF (proc) (arg2, SCM_CAR (arg1))))
42030fb2
DH
4430 RETURN (SCM_BOOL_F);
4431 arg2 = SCM_CAR (arg1);
4432 arg1 = SCM_CDR (arg1);
4433 }
4434 while (SCM_NIMP (arg1));
4435 RETURN (SCM_BOOL_T);
4436 case scm_tc7_lsubr_2:
4437 RETURN (SCM_SUBRF (proc) (arg1, arg2,
4438 SCM_CDDR (debug.info->a.args)));
4439 case scm_tc7_lsubr:
4440 RETURN (SCM_SUBRF (proc) (debug.info->a.args));
4441 case scm_tc7_smob:
4442 if (!SCM_SMOB_APPLICABLE_P (proc))
4443 goto badfun;
4444 RETURN (SCM_SMOB_APPLY_3 (proc, arg1, arg2,
4445 SCM_CDDR (debug.info->a.args)));
4446 case scm_tc7_cclo:
4447 goto cclon;
002f1a5d
MD
4448 case scm_tc7_pws:
4449 proc = SCM_PROCEDURE (proc);
002f1a5d 4450 debug.info->a.proc = proc;
002f1a5d 4451 if (!SCM_CLOSUREP (proc))
42030fb2 4452 goto evap3;
ddd8f927 4453 /* fallthrough */
6dbd0af5 4454 case scm_tcs_closures:
ddd8f927
DH
4455 {
4456 const SCM formals = SCM_CLOSURE_FORMALS (proc);
a61f4e0c
MV
4457 if (scm_is_null (formals)
4458 || (scm_is_pair (formals)
4459 && (scm_is_null (SCM_CDR (formals))
4460 || (scm_is_pair (SCM_CDR (formals))
ddd8f927 4461 && scm_badargsp (SCM_CDDR (formals), x)))))
212e58ed 4462 goto wrongnumargs;
ddd8f927
DH
4463 SCM_SET_ARGSREADY (debug);
4464 env = SCM_EXTEND_ENV (formals,
4465 debug.info->a.args,
4466 SCM_ENV (proc));
4467 x = SCM_CLOSURE_BODY (proc);
4468 goto nontoplevel_begin;
4469 }
6dbd0af5 4470#else /* DEVAL */
42030fb2 4471 case scm_tc7_subr_3:
a61f4e0c 4472 if (!scm_is_null (SCM_CDR (x)))
ab1f1094
DH
4473 scm_wrong_num_args (proc);
4474 else
4475 RETURN (SCM_SUBRF (proc) (arg1, arg2, EVALCAR (x, env)));
42030fb2
DH
4476 case scm_tc7_asubr:
4477 arg1 = SCM_SUBRF (proc) (arg1, arg2);
4478 do
4479 {
4480 arg1 = SCM_SUBRF(proc)(arg1, EVALCAR(x, env));
4481 x = SCM_CDR(x);
4482 }
a61f4e0c 4483 while (!scm_is_null (x));
42030fb2
DH
4484 RETURN (arg1);
4485 case scm_tc7_rpsubr:
7888309b 4486 if (scm_is_false (SCM_SUBRF (proc) (arg1, arg2)))
42030fb2
DH
4487 RETURN (SCM_BOOL_F);
4488 do
4489 {
4490 arg1 = EVALCAR (x, env);
7888309b 4491 if (scm_is_false (SCM_SUBRF (proc) (arg2, arg1)))
42030fb2
DH
4492 RETURN (SCM_BOOL_F);
4493 arg2 = arg1;
4494 x = SCM_CDR (x);
4495 }
a61f4e0c 4496 while (!scm_is_null (x));
42030fb2
DH
4497 RETURN (SCM_BOOL_T);
4498 case scm_tc7_lsubr_2:
4499 RETURN (SCM_SUBRF (proc) (arg1, arg2, scm_eval_args (x, env, proc)));
4500 case scm_tc7_lsubr:
4501 RETURN (SCM_SUBRF (proc) (scm_cons2 (arg1,
4502 arg2,
4503 scm_eval_args (x, env, proc))));
4504 case scm_tc7_smob:
4505 if (!SCM_SMOB_APPLICABLE_P (proc))
4506 goto badfun;
4507 RETURN (SCM_SMOB_APPLY_3 (proc, arg1, arg2,
4508 scm_eval_args (x, env, proc)));
4509 case scm_tc7_cclo:
4510 goto cclon;
4511 case scm_tc7_pws:
4512 proc = SCM_PROCEDURE (proc);
4513 if (!SCM_CLOSUREP (proc))
4514 goto evap3;
ddd8f927
DH
4515 /* fallthrough */
4516 case scm_tcs_closures:
da7f71d7 4517 {
ddd8f927 4518 const SCM formals = SCM_CLOSURE_FORMALS (proc);
a61f4e0c
MV
4519 if (scm_is_null (formals)
4520 || (scm_is_pair (formals)
4521 && (scm_is_null (SCM_CDR (formals))
4522 || (scm_is_pair (SCM_CDR (formals))
42030fb2 4523 && scm_badargsp (SCM_CDDR (formals), x)))))
212e58ed 4524 goto wrongnumargs;
ddd8f927
DH
4525 env = SCM_EXTEND_ENV (formals,
4526 scm_cons2 (arg1,
4527 arg2,
4528 scm_eval_args (x, env, proc)),
4529 SCM_ENV (proc));
4530 x = SCM_CLOSURE_BODY (proc);
4531 goto nontoplevel_begin;
da7f71d7 4532 }
0f2d19dd 4533#endif /* DEVAL */
42030fb2
DH
4534 case scm_tcs_struct:
4535 if (SCM_OBJ_CLASS_FLAGS (proc) & SCM_CLASSF_PURE_GENERIC)
4536 {
f3d2630a 4537#ifdef DEVAL
42030fb2 4538 arg1 = debug.info->a.args;
f3d2630a 4539#else
42030fb2 4540 arg1 = scm_cons2 (arg1, arg2, scm_eval_args (x, env, proc));
f3d2630a 4541#endif
42030fb2
DH
4542 x = SCM_ENTITY_PROCEDURE (proc);
4543 goto type_dispatch;
4544 }
2ca0d207 4545 else if (SCM_I_OPERATORP (proc))
42030fb2 4546 goto operatorn;
2ca0d207
DH
4547 else
4548 goto badfun;
42030fb2
DH
4549 case scm_tc7_subr_2:
4550 case scm_tc7_subr_1o:
4551 case scm_tc7_subr_2o:
4552 case scm_tc7_subr_0:
14b18ed6 4553 case scm_tc7_dsubr:
42030fb2
DH
4554 case scm_tc7_cxr:
4555 case scm_tc7_subr_1:
ab1f1094 4556 scm_wrong_num_args (proc);
42030fb2 4557 default:
9b07e212 4558 goto badfun;
42030fb2
DH
4559 }
4560 }
0f2d19dd
JB
4561 }
4562#ifdef DEVAL
6dbd0af5 4563exit:
5132eef0 4564 if (scm_check_exit_p && SCM_TRAPS_P)
b7ff98dd 4565 if (SCM_EXIT_FRAME_P || (SCM_TRACE_P && SCM_TRACED_FRAME_P (debug)))
6dbd0af5 4566 {
b7ff98dd
MD
4567 SCM_CLEAR_TRACED_FRAME (debug);
4568 if (SCM_CHEAPTRAPS_P)
dff98306 4569 arg1 = scm_make_debugobj (&debug);
6dbd0af5
MD
4570 else
4571 {
5f144b10
GH
4572 int first;
4573 SCM val = scm_make_continuation (&first);
e050d4f8 4574
5f144b10 4575 if (first)
dff98306 4576 arg1 = val;
5f144b10 4577 else
6dbd0af5 4578 {
5f144b10 4579 proc = val;
6dbd0af5
MD
4580 goto ret;
4581 }
4582 }
d95c0b76 4583 SCM_TRAPS_P = 0;
dff98306 4584 scm_call_3 (SCM_EXIT_FRAME_HDLR, scm_sym_exit_frame, arg1, proc);
d95c0b76 4585 SCM_TRAPS_P = 1;
6dbd0af5
MD
4586 }
4587ret:
1646d37b 4588 scm_last_debug_frame = debug.prev;
0f2d19dd
JB
4589 return proc;
4590#endif
4591}
4592
6dbd0af5
MD
4593
4594/* SECTION: This code is compiled once.
4595 */
4596
0f2d19dd
JB
4597#ifndef DEVAL
4598
fdc28395 4599\f
d0b07b5d 4600
fdc28395
KN
4601/* Simple procedure calls
4602 */
4603
4604SCM
4605scm_call_0 (SCM proc)
4606{
4607 return scm_apply (proc, SCM_EOL, SCM_EOL);
4608}
4609
4610SCM
4611scm_call_1 (SCM proc, SCM arg1)
4612{
4613 return scm_apply (proc, arg1, scm_listofnull);
4614}
4615
4616SCM
4617scm_call_2 (SCM proc, SCM arg1, SCM arg2)
4618{
4619 return scm_apply (proc, arg1, scm_cons (arg2, scm_listofnull));
4620}
4621
4622SCM
4623scm_call_3 (SCM proc, SCM arg1, SCM arg2, SCM arg3)
4624{
4625 return scm_apply (proc, arg1, scm_cons2 (arg2, arg3, scm_listofnull));
4626}
4627
d95c0b76
NJ
4628SCM
4629scm_call_4 (SCM proc, SCM arg1, SCM arg2, SCM arg3, SCM arg4)
4630{
4631 return scm_apply (proc, arg1, scm_cons2 (arg2, arg3,
4632 scm_cons (arg4, scm_listofnull)));
4633}
4634
fdc28395
KN
4635/* Simple procedure applies
4636 */
4637
4638SCM
4639scm_apply_0 (SCM proc, SCM args)
4640{
4641 return scm_apply (proc, args, SCM_EOL);
4642}
4643
4644SCM
4645scm_apply_1 (SCM proc, SCM arg1, SCM args)
4646{
4647 return scm_apply (proc, scm_cons (arg1, args), SCM_EOL);
4648}
4649
4650SCM
4651scm_apply_2 (SCM proc, SCM arg1, SCM arg2, SCM args)
4652{
4653 return scm_apply (proc, scm_cons2 (arg1, arg2, args), SCM_EOL);
4654}
4655
4656SCM
4657scm_apply_3 (SCM proc, SCM arg1, SCM arg2, SCM arg3, SCM args)
4658{
4659 return scm_apply (proc, scm_cons (arg1, scm_cons2 (arg2, arg3, args)),
4660 SCM_EOL);
4661}
4662
82a2622a 4663/* This code processes the arguments to apply:
b145c172
JB
4664
4665 (apply PROC ARG1 ... ARGS)
4666
82a2622a
JB
4667 Given a list (ARG1 ... ARGS), this function conses the ARG1
4668 ... arguments onto the front of ARGS, and returns the resulting
4669 list. Note that ARGS is a list; thus, the argument to this
4670 function is a list whose last element is a list.
4671
4672 Apply calls this function, and applies PROC to the elements of the
b145c172
JB
4673 result. apply:nconc2last takes care of building the list of
4674 arguments, given (ARG1 ... ARGS).
4675
82a2622a
JB
4676 Rather than do new consing, apply:nconc2last destroys its argument.
4677 On that topic, this code came into my care with the following
4678 beautifully cryptic comment on that topic: "This will only screw
4679 you if you do (scm_apply scm_apply '( ... ))" If you know what
4680 they're referring to, send me a patch to this comment. */
b145c172 4681
3b3b36dd 4682SCM_DEFINE (scm_nconc2last, "apply:nconc2last", 1, 0, 0,
b3f26b14
MG
4683 (SCM lst),
4684 "Given a list (@var{arg1} @dots{} @var{args}), this function\n"
4685 "conses the @var{arg1} @dots{} arguments onto the front of\n"
4686 "@var{args}, and returns the resulting list. Note that\n"
4687 "@var{args} is a list; thus, the argument to this function is\n"
4688 "a list whose last element is a list.\n"
4689 "Note: Rather than do new consing, @code{apply:nconc2last}\n"
4690 "destroys its argument, so use with care.")
1bbd0b84 4691#define FUNC_NAME s_scm_nconc2last
0f2d19dd
JB
4692{
4693 SCM *lloc;
34d19ef6 4694 SCM_VALIDATE_NONEMPTYLIST (1, lst);
0f2d19dd 4695 lloc = &lst;
a61f4e0c 4696 while (!scm_is_null (SCM_CDR (*lloc))) /* Perhaps should be
c96d76b8
NJ
4697 SCM_NULL_OR_NIL_P, but not
4698 needed in 99.99% of cases,
4699 and it could seriously hurt
4700 performance. - Neil */
a23afe53 4701 lloc = SCM_CDRLOC (*lloc);
1bbd0b84 4702 SCM_ASSERT (scm_ilength (SCM_CAR (*lloc)) >= 0, lst, SCM_ARG1, FUNC_NAME);
0f2d19dd
JB
4703 *lloc = SCM_CAR (*lloc);
4704 return lst;
4705}
1bbd0b84 4706#undef FUNC_NAME
0f2d19dd
JB
4707
4708#endif /* !DEVAL */
4709
6dbd0af5
MD
4710
4711/* SECTION: When DEVAL is defined this code yields scm_dapply.
4712 * It is compiled twice.
4713 */
4714
0f2d19dd 4715#if 0
0f2d19dd 4716SCM
6e8d25a6 4717scm_apply (SCM proc, SCM arg1, SCM args)
0f2d19dd
JB
4718{}
4719#endif
4720
4721#if 0
0f2d19dd 4722SCM
6e8d25a6 4723scm_dapply (SCM proc, SCM arg1, SCM args)
d0b07b5d 4724{}
0f2d19dd
JB
4725#endif
4726
1cc91f1b 4727
82a2622a
JB
4728/* Apply a function to a list of arguments.
4729
4730 This function is exported to the Scheme level as taking two
4731 required arguments and a tail argument, as if it were:
4732 (lambda (proc arg1 . args) ...)
4733 Thus, if you just have a list of arguments to pass to a procedure,
4734 pass the list as ARG1, and '() for ARGS. If you have some fixed
4735 args, pass the first as ARG1, then cons any remaining fixed args
4736 onto the front of your argument list, and pass that as ARGS. */
4737
0f2d19dd 4738SCM
1bbd0b84 4739SCM_APPLY (SCM proc, SCM arg1, SCM args)
0f2d19dd 4740{
0f2d19dd 4741#ifdef DEVAL
92c2555f
MV
4742 scm_t_debug_frame debug;
4743 scm_t_debug_info debug_vect_body;
1646d37b 4744 debug.prev = scm_last_debug_frame;
b7ff98dd 4745 debug.status = SCM_APPLYFRAME;
c0ab1b8d 4746 debug.vect = &debug_vect_body;
6dbd0af5
MD
4747 debug.vect[0].a.proc = proc;
4748 debug.vect[0].a.args = SCM_EOL;
1646d37b 4749 scm_last_debug_frame = &debug;
0f2d19dd 4750#else
434f2f7a 4751 if (scm_debug_mode_p)
0f2d19dd 4752 return scm_dapply (proc, arg1, args);
0f2d19dd
JB
4753#endif
4754
4755 SCM_ASRTGO (SCM_NIMP (proc), badproc);
82a2622a
JB
4756
4757 /* If ARGS is the empty list, then we're calling apply with only two
4758 arguments --- ARG1 is the list of arguments for PROC. Whatever
4759 the case, futz with things so that ARG1 is the first argument to
4760 give to PROC (or SCM_UNDEFINED if no args), and ARGS contains the
30000774
JB
4761 rest.
4762
4763 Setting the debug apply frame args this way is pretty messy.
4764 Perhaps we should store arg1 and args directly in the frame as
4765 received, and let scm_frame_arguments unpack them, because that's
4766 a relatively rare operation. This works for now; if the Guile
4767 developer archives are still around, see Mikael's post of
4768 11-Apr-97. */
a61f4e0c 4769 if (scm_is_null (args))
0f2d19dd 4770 {
a61f4e0c 4771 if (scm_is_null (arg1))
30000774
JB
4772 {
4773 arg1 = SCM_UNDEFINED;
4774#ifdef DEVAL
4775 debug.vect[0].a.args = SCM_EOL;
4776#endif
4777 }
0f2d19dd
JB
4778 else
4779 {
30000774
JB
4780#ifdef DEVAL
4781 debug.vect[0].a.args = arg1;
4782#endif
0f2d19dd
JB
4783 args = SCM_CDR (arg1);
4784 arg1 = SCM_CAR (arg1);
4785 }
4786 }
4787 else
4788 {
0f2d19dd 4789 args = scm_nconc2last (args);
30000774
JB
4790#ifdef DEVAL
4791 debug.vect[0].a.args = scm_cons (arg1, args);
4792#endif
0f2d19dd 4793 }
0f2d19dd 4794#ifdef DEVAL
b6d75948 4795 if (SCM_ENTER_FRAME_P && SCM_TRAPS_P)
6dbd0af5
MD
4796 {
4797 SCM tmp;
b7ff98dd 4798 if (SCM_CHEAPTRAPS_P)
c0ab1b8d 4799 tmp = scm_make_debugobj (&debug);
6dbd0af5
MD
4800 else
4801 {
5f144b10
GH
4802 int first;
4803
4804 tmp = scm_make_continuation (&first);
4805 if (!first)
6dbd0af5
MD
4806 goto entap;
4807 }
d95c0b76
NJ
4808 SCM_TRAPS_P = 0;
4809 scm_call_2 (SCM_ENTER_FRAME_HDLR, scm_sym_enter_frame, tmp);
4810 SCM_TRAPS_P = 1;
6dbd0af5
MD
4811 }
4812entap:
4813 ENTER_APPLY;
4814#endif
6dbd0af5 4815tail:
0f2d19dd
JB
4816 switch (SCM_TYP7 (proc))
4817 {
4818 case scm_tc7_subr_2o:
a61f4e0c 4819 args = scm_is_null (args) ? SCM_UNDEFINED : SCM_CAR (args);
ddea3325 4820 RETURN (SCM_SUBRF (proc) (arg1, args));
0f2d19dd 4821 case scm_tc7_subr_2:
a61f4e0c 4822 if (scm_is_null (args) || !scm_is_null (SCM_CDR (args)))
ab1f1094 4823 scm_wrong_num_args (proc);
0f2d19dd 4824 args = SCM_CAR (args);
ddea3325 4825 RETURN (SCM_SUBRF (proc) (arg1, args));
0f2d19dd 4826 case scm_tc7_subr_0:
ab1f1094
DH
4827 if (!SCM_UNBNDP (arg1))
4828 scm_wrong_num_args (proc);
4829 else
4830 RETURN (SCM_SUBRF (proc) ());
0f2d19dd 4831 case scm_tc7_subr_1:
ab1f1094
DH
4832 if (SCM_UNBNDP (arg1))
4833 scm_wrong_num_args (proc);
0f2d19dd 4834 case scm_tc7_subr_1o:
a61f4e0c 4835 if (!scm_is_null (args))
ab1f1094
DH
4836 scm_wrong_num_args (proc);
4837 else
4838 RETURN (SCM_SUBRF (proc) (arg1));
14b18ed6 4839 case scm_tc7_dsubr:
a61f4e0c 4840 if (SCM_UNBNDP (arg1) || !scm_is_null (args))
14b18ed6 4841 scm_wrong_num_args (proc);
e11e83f3 4842 if (SCM_I_INUMP (arg1))
14b18ed6 4843 {
d9a67fc4 4844 RETURN (scm_from_double (SCM_DSUBRF (proc) ((double) SCM_I_INUM (arg1))));
14b18ed6
DH
4845 }
4846 else if (SCM_REALP (arg1))
4847 {
d9a67fc4 4848 RETURN (scm_from_double (SCM_DSUBRF (proc) (SCM_REAL_VALUE (arg1))));
14b18ed6
DH
4849 }
4850 else if (SCM_BIGP (arg1))
f92e85f7 4851 {
d9a67fc4 4852 RETURN (scm_from_double (SCM_DSUBRF (proc) (scm_i_big2dbl (arg1))));
f92e85f7
MV
4853 }
4854 else if (SCM_FRACTIONP (arg1))
4855 {
d9a67fc4 4856 RETURN (scm_from_double (SCM_DSUBRF (proc) (scm_i_fraction2double (arg1))));
f92e85f7 4857 }
14b18ed6 4858 SCM_WTA_DISPATCH_1 (*SCM_SUBR_GENERIC (proc), arg1,
cc95e00a 4859 SCM_ARG1, scm_i_symbol_chars (SCM_SNAME (proc)));
0f2d19dd 4860 case scm_tc7_cxr:
a61f4e0c 4861 if (SCM_UNBNDP (arg1) || !scm_is_null (args))
ab1f1094 4862 scm_wrong_num_args (proc);
a61f4e0c 4863 RETURN (scm_i_chase_pairs (arg1, (scm_t_bits) SCM_SUBRF (proc)));
0f2d19dd 4864 case scm_tc7_subr_3:
a61f4e0c
MV
4865 if (scm_is_null (args)
4866 || scm_is_null (SCM_CDR (args))
4867 || !scm_is_null (SCM_CDDR (args)))
ab1f1094
DH
4868 scm_wrong_num_args (proc);
4869 else
4870 RETURN (SCM_SUBRF (proc) (arg1, SCM_CAR (args), SCM_CADR (args)));
0f2d19dd
JB
4871 case scm_tc7_lsubr:
4872#ifdef DEVAL
ddea3325 4873 RETURN (SCM_SUBRF (proc) (SCM_UNBNDP (arg1) ? SCM_EOL : debug.vect[0].a.args));
0f2d19dd 4874#else
ddea3325 4875 RETURN (SCM_SUBRF (proc) (SCM_UNBNDP (arg1) ? SCM_EOL : scm_cons (arg1, args)));
0f2d19dd
JB
4876#endif
4877 case scm_tc7_lsubr_2:
a61f4e0c 4878 if (!scm_is_pair (args))
ab1f1094
DH
4879 scm_wrong_num_args (proc);
4880 else
4881 RETURN (SCM_SUBRF (proc) (arg1, SCM_CAR (args), SCM_CDR (args)));
0f2d19dd 4882 case scm_tc7_asubr:
a61f4e0c 4883 if (scm_is_null (args))
ddea3325 4884 RETURN (SCM_SUBRF (proc) (arg1, SCM_UNDEFINED));
0f2d19dd
JB
4885 while (SCM_NIMP (args))
4886 {
a61f4e0c 4887 SCM_ASSERT (scm_is_pair (args), args, SCM_ARG2, "apply");
0f2d19dd
JB
4888 arg1 = SCM_SUBRF (proc) (arg1, SCM_CAR (args));
4889 args = SCM_CDR (args);
4890 }
4891 RETURN (arg1);
4892 case scm_tc7_rpsubr:
a61f4e0c 4893 if (scm_is_null (args))
0f2d19dd
JB
4894 RETURN (SCM_BOOL_T);
4895 while (SCM_NIMP (args))
4896 {
a61f4e0c 4897 SCM_ASSERT (scm_is_pair (args), args, SCM_ARG2, "apply");
7888309b 4898 if (scm_is_false (SCM_SUBRF (proc) (arg1, SCM_CAR (args))))
0f2d19dd
JB
4899 RETURN (SCM_BOOL_F);
4900 arg1 = SCM_CAR (args);
4901 args = SCM_CDR (args);
4902 }
4903 RETURN (SCM_BOOL_T);
4904 case scm_tcs_closures:
4905#ifdef DEVAL
6dbd0af5 4906 arg1 = (SCM_UNBNDP (arg1) ? SCM_EOL : debug.vect[0].a.args);
0f2d19dd
JB
4907#else
4908 arg1 = (SCM_UNBNDP (arg1) ? SCM_EOL : scm_cons (arg1, args));
4909#endif
726d810a 4910 if (scm_badargsp (SCM_CLOSURE_FORMALS (proc), arg1))
ab1f1094 4911 scm_wrong_num_args (proc);
1609038c
MD
4912
4913 /* Copy argument list */
4914 if (SCM_IMP (arg1))
4915 args = arg1;
4916 else
4917 {
4918 SCM tl = args = scm_cons (SCM_CAR (arg1), SCM_UNSPECIFIED);
a61f4e0c 4919 for (arg1 = SCM_CDR (arg1); scm_is_pair (arg1); arg1 = SCM_CDR (arg1))
1609038c 4920 {
05b15362 4921 SCM_SETCDR (tl, scm_cons (SCM_CAR (arg1), SCM_UNSPECIFIED));
1609038c
MD
4922 tl = SCM_CDR (tl);
4923 }
4924 SCM_SETCDR (tl, arg1);
4925 }
4926
821f18a4
DH
4927 args = SCM_EXTEND_ENV (SCM_CLOSURE_FORMALS (proc),
4928 args,
4929 SCM_ENV (proc));
f9450cdb 4930 proc = SCM_CLOSURE_BODY (proc);
e791c18f 4931 again:
05b15362 4932 arg1 = SCM_CDR (proc);
a61f4e0c 4933 while (!scm_is_null (arg1))
2ddb0920
MD
4934 {
4935 if (SCM_IMP (SCM_CAR (proc)))
4936 {
4937 if (SCM_ISYMP (SCM_CAR (proc)))
4938 {
28d52ebb 4939 scm_rec_mutex_lock (&source_mutex);
9bc4701c
MD
4940 /* check for race condition */
4941 if (SCM_ISYMP (SCM_CAR (proc)))
9d4bf6d3 4942 m_expand_body (proc, args);
28d52ebb 4943 scm_rec_mutex_unlock (&source_mutex);
e791c18f 4944 goto again;
2ddb0920 4945 }
5280aaca 4946 else
17fa3fcf 4947 SCM_VALIDATE_NON_EMPTY_COMBINATION (SCM_CAR (proc));
2ddb0920
MD
4948 }
4949 else
b1cb24ff 4950 (void) EVAL (SCM_CAR (proc), args);
e791c18f 4951 proc = arg1;
05b15362 4952 arg1 = SCM_CDR (proc);
2ddb0920 4953 }
e791c18f 4954 RETURN (EVALCAR (proc, args));
0717dfd8 4955 case scm_tc7_smob:
68b06924 4956 if (!SCM_SMOB_APPLICABLE_P (proc))
0717dfd8 4957 goto badproc;
afa38f6e 4958 if (SCM_UNBNDP (arg1))
ddea3325 4959 RETURN (SCM_SMOB_APPLY_0 (proc));
a61f4e0c 4960 else if (scm_is_null (args))
ddea3325 4961 RETURN (SCM_SMOB_APPLY_1 (proc, arg1));
a61f4e0c 4962 else if (scm_is_null (SCM_CDR (args)))
ddea3325 4963 RETURN (SCM_SMOB_APPLY_2 (proc, arg1, SCM_CAR (args)));
0717dfd8 4964 else
68b06924 4965 RETURN (SCM_SMOB_APPLY_3 (proc, arg1, SCM_CAR (args), SCM_CDR (args)));
0f2d19dd
JB
4966 case scm_tc7_cclo:
4967#ifdef DEVAL
6dbd0af5
MD
4968 args = (SCM_UNBNDP(arg1) ? SCM_EOL : debug.vect[0].a.args);
4969 arg1 = proc;
4970 proc = SCM_CCLO_SUBR (proc);
4971 debug.vect[0].a.proc = proc;
4972 debug.vect[0].a.args = scm_cons (arg1, args);
0f2d19dd
JB
4973#else
4974 args = (SCM_UNBNDP(arg1) ? SCM_EOL : scm_cons (arg1, args));
0f2d19dd
JB
4975 arg1 = proc;
4976 proc = SCM_CCLO_SUBR (proc);
6dbd0af5 4977#endif
0f2d19dd 4978 goto tail;
89efbff4
MD
4979 case scm_tc7_pws:
4980 proc = SCM_PROCEDURE (proc);
4981#ifdef DEVAL
4982 debug.vect[0].a.proc = proc;
4983#endif
4984 goto tail;
904a077d 4985 case scm_tcs_struct:
f3d2630a
MD
4986 if (SCM_OBJ_CLASS_FLAGS (proc) & SCM_CLASSF_PURE_GENERIC)
4987 {
4988#ifdef DEVAL
4989 args = (SCM_UNBNDP(arg1) ? SCM_EOL : debug.vect[0].a.args);
4990#else
4991 args = (SCM_UNBNDP(arg1) ? SCM_EOL : scm_cons (arg1, args));
4992#endif
195847fa 4993 RETURN (scm_apply_generic (proc, args));
f3d2630a 4994 }
2ca0d207 4995 else if (SCM_I_OPERATORP (proc))
da7f71d7 4996 {
504d99c5 4997 /* operator */
da7f71d7
MD
4998#ifdef DEVAL
4999 args = (SCM_UNBNDP(arg1) ? SCM_EOL : debug.vect[0].a.args);
5000#else
5001 args = (SCM_UNBNDP(arg1) ? SCM_EOL : scm_cons (arg1, args));
5002#endif
5003 arg1 = proc;
195847fa
MD
5004 proc = (SCM_I_ENTITYP (proc)
5005 ? SCM_ENTITY_PROCEDURE (proc)
5006 : SCM_OPERATOR_PROCEDURE (proc));
da7f71d7
MD
5007#ifdef DEVAL
5008 debug.vect[0].a.proc = proc;
5009 debug.vect[0].a.args = scm_cons (arg1, args);
5010#endif
195847fa
MD
5011 if (SCM_NIMP (proc))
5012 goto tail;
5013 else
5014 goto badproc;
da7f71d7 5015 }
2ca0d207
DH
5016 else
5017 goto badproc;
0f2d19dd
JB
5018 default:
5019 badproc:
db4b4ca6 5020 scm_wrong_type_arg ("apply", SCM_ARG1, proc);
0f2d19dd
JB
5021 }
5022#ifdef DEVAL
6dbd0af5 5023exit:
5132eef0 5024 if (scm_check_exit_p && SCM_TRAPS_P)
b7ff98dd 5025 if (SCM_EXIT_FRAME_P || (SCM_TRACE_P && SCM_TRACED_FRAME_P (debug)))
6dbd0af5 5026 {
b7ff98dd
MD
5027 SCM_CLEAR_TRACED_FRAME (debug);
5028 if (SCM_CHEAPTRAPS_P)
c0ab1b8d 5029 arg1 = scm_make_debugobj (&debug);
6dbd0af5
MD
5030 else
5031 {
5f144b10
GH
5032 int first;
5033 SCM val = scm_make_continuation (&first);
5034
5035 if (first)
5036 arg1 = val;
5037 else
6dbd0af5 5038 {
5f144b10 5039 proc = val;
6dbd0af5
MD
5040 goto ret;
5041 }
5042 }
d95c0b76
NJ
5043 SCM_TRAPS_P = 0;
5044 scm_call_3 (SCM_EXIT_FRAME_HDLR, scm_sym_exit_frame, arg1, proc);
5045 SCM_TRAPS_P = 1;
6dbd0af5
MD
5046 }
5047ret:
1646d37b 5048 scm_last_debug_frame = debug.prev;
0f2d19dd
JB
5049 return proc;
5050#endif
5051}
5052
6dbd0af5
MD
5053
5054/* SECTION: The rest of this file is only read once.
5055 */
5056
0f2d19dd
JB
5057#ifndef DEVAL
5058
504d99c5
MD
5059/* Trampolines
5060 *
5061 * Trampolines make it possible to move procedure application dispatch
5062 * outside inner loops. The motivation was clean implementation of
5063 * efficient replacements of R5RS primitives in SRFI-1.
5064 *
5065 * The semantics is clear: scm_trampoline_N returns an optimized
5066 * version of scm_call_N (or NULL if the procedure isn't applicable
5067 * on N args).
5068 *
5069 * Applying the optimization to map and for-each increased efficiency
5070 * noticeably. For example, (map abs ls) is now 8 times faster than
5071 * before.
5072 */
5073
756414cf
MD
5074static SCM
5075call_subr0_0 (SCM proc)
5076{
5077 return SCM_SUBRF (proc) ();
5078}
5079
5080static SCM
5081call_subr1o_0 (SCM proc)
5082{
5083 return SCM_SUBRF (proc) (SCM_UNDEFINED);
5084}
5085
5086static SCM
5087call_lsubr_0 (SCM proc)
5088{
5089 return SCM_SUBRF (proc) (SCM_EOL);
5090}
5091
5092SCM
5093scm_i_call_closure_0 (SCM proc)
5094{
6a3f13f0
DH
5095 const SCM env = SCM_EXTEND_ENV (SCM_CLOSURE_FORMALS (proc),
5096 SCM_EOL,
5097 SCM_ENV (proc));
5098 const SCM result = scm_eval_body (SCM_CLOSURE_BODY (proc), env);
d0b07b5d 5099 return result;
756414cf
MD
5100}
5101
5102scm_t_trampoline_0
5103scm_trampoline_0 (SCM proc)
5104{
2510c810
DH
5105 scm_t_trampoline_0 trampoline;
5106
756414cf 5107 if (SCM_IMP (proc))
d0b07b5d 5108 return NULL;
2510c810 5109
756414cf
MD
5110 switch (SCM_TYP7 (proc))
5111 {
5112 case scm_tc7_subr_0:
2510c810
DH
5113 trampoline = call_subr0_0;
5114 break;
756414cf 5115 case scm_tc7_subr_1o:
2510c810
DH
5116 trampoline = call_subr1o_0;
5117 break;
756414cf 5118 case scm_tc7_lsubr:
2510c810
DH
5119 trampoline = call_lsubr_0;
5120 break;
756414cf
MD
5121 case scm_tcs_closures:
5122 {
5123 SCM formals = SCM_CLOSURE_FORMALS (proc);
a61f4e0c 5124 if (scm_is_null (formals) || !scm_is_pair (formals))
2510c810 5125 trampoline = scm_i_call_closure_0;
756414cf 5126 else
d0b07b5d 5127 return NULL;
2510c810 5128 break;
756414cf
MD
5129 }
5130 case scm_tcs_struct:
5131 if (SCM_OBJ_CLASS_FLAGS (proc) & SCM_CLASSF_PURE_GENERIC)
2510c810 5132 trampoline = scm_call_generic_0;
2ca0d207 5133 else if (SCM_I_OPERATORP (proc))
2510c810
DH
5134 trampoline = scm_call_0;
5135 else
5136 return NULL;
5137 break;
756414cf
MD
5138 case scm_tc7_smob:
5139 if (SCM_SMOB_APPLICABLE_P (proc))
2510c810 5140 trampoline = SCM_SMOB_DESCRIPTOR (proc).apply_0;
756414cf 5141 else
d0b07b5d 5142 return NULL;
2510c810 5143 break;
756414cf
MD
5144 case scm_tc7_asubr:
5145 case scm_tc7_rpsubr:
5146 case scm_tc7_cclo:
5147 case scm_tc7_pws:
2510c810
DH
5148 trampoline = scm_call_0;
5149 break;
756414cf 5150 default:
2510c810 5151 return NULL; /* not applicable on zero arguments */
756414cf 5152 }
2510c810
DH
5153 /* We only reach this point if a valid trampoline was determined. */
5154
5155 /* If debugging is enabled, we want to see all calls to proc on the stack.
5156 * Thus, we replace the trampoline shortcut with scm_call_0. */
434f2f7a 5157 if (scm_debug_mode_p)
2510c810
DH
5158 return scm_call_0;
5159 else
5160 return trampoline;
756414cf
MD
5161}
5162
504d99c5
MD
5163static SCM
5164call_subr1_1 (SCM proc, SCM arg1)
5165{
5166 return SCM_SUBRF (proc) (arg1);
5167}
5168
9ed24633
MD
5169static SCM
5170call_subr2o_1 (SCM proc, SCM arg1)
5171{
5172 return SCM_SUBRF (proc) (arg1, SCM_UNDEFINED);
5173}
5174
504d99c5
MD
5175static SCM
5176call_lsubr_1 (SCM proc, SCM arg1)
5177{
5178 return SCM_SUBRF (proc) (scm_list_1 (arg1));
5179}
5180
5181static SCM
5182call_dsubr_1 (SCM proc, SCM arg1)
5183{
e11e83f3 5184 if (SCM_I_INUMP (arg1))
504d99c5 5185 {
d9a67fc4 5186 RETURN (scm_from_double (SCM_DSUBRF (proc) ((double) SCM_I_INUM (arg1))));
504d99c5
MD
5187 }
5188 else if (SCM_REALP (arg1))
5189 {
d9a67fc4 5190 RETURN (scm_from_double (SCM_DSUBRF (proc) (SCM_REAL_VALUE (arg1))));
504d99c5 5191 }
504d99c5 5192 else if (SCM_BIGP (arg1))
f92e85f7 5193 {
d9a67fc4 5194 RETURN (scm_from_double (SCM_DSUBRF (proc) (scm_i_big2dbl (arg1))));
f92e85f7
MV
5195 }
5196 else if (SCM_FRACTIONP (arg1))
5197 {
d9a67fc4 5198 RETURN (scm_from_double (SCM_DSUBRF (proc) (scm_i_fraction2double (arg1))));
f92e85f7 5199 }
504d99c5 5200 SCM_WTA_DISPATCH_1 (*SCM_SUBR_GENERIC (proc), arg1,
cc95e00a 5201 SCM_ARG1, scm_i_symbol_chars (SCM_SNAME (proc)));
504d99c5
MD
5202}
5203
5204static SCM
5205call_cxr_1 (SCM proc, SCM arg1)
5206{
a61f4e0c 5207 return scm_i_chase_pairs (arg1, (scm_t_bits) SCM_SUBRF (proc));
504d99c5
MD
5208}
5209
5210static SCM
5211call_closure_1 (SCM proc, SCM arg1)
5212{
6a3f13f0
DH
5213 const SCM env = SCM_EXTEND_ENV (SCM_CLOSURE_FORMALS (proc),
5214 scm_list_1 (arg1),
5215 SCM_ENV (proc));
5216 const SCM result = scm_eval_body (SCM_CLOSURE_BODY (proc), env);
d0b07b5d 5217 return result;
504d99c5
MD
5218}
5219
5220scm_t_trampoline_1
5221scm_trampoline_1 (SCM proc)
5222{
2510c810
DH
5223 scm_t_trampoline_1 trampoline;
5224
504d99c5 5225 if (SCM_IMP (proc))
d0b07b5d 5226 return NULL;
2510c810 5227
504d99c5
MD
5228 switch (SCM_TYP7 (proc))
5229 {
5230 case scm_tc7_subr_1:
5231 case scm_tc7_subr_1o:
2510c810
DH
5232 trampoline = call_subr1_1;
5233 break;
9ed24633 5234 case scm_tc7_subr_2o:
2510c810
DH
5235 trampoline = call_subr2o_1;
5236 break;
504d99c5 5237 case scm_tc7_lsubr:
2510c810
DH
5238 trampoline = call_lsubr_1;
5239 break;
14b18ed6 5240 case scm_tc7_dsubr:
2510c810
DH
5241 trampoline = call_dsubr_1;
5242 break;
504d99c5 5243 case scm_tc7_cxr:
2510c810
DH
5244 trampoline = call_cxr_1;
5245 break;
504d99c5
MD
5246 case scm_tcs_closures:
5247 {
5248 SCM formals = SCM_CLOSURE_FORMALS (proc);
a61f4e0c
MV
5249 if (!scm_is_null (formals)
5250 && (!scm_is_pair (formals) || !scm_is_pair (SCM_CDR (formals))))
2510c810 5251 trampoline = call_closure_1;
504d99c5 5252 else
d0b07b5d 5253 return NULL;
2510c810 5254 break;
504d99c5
MD
5255 }
5256 case scm_tcs_struct:
5257 if (SCM_OBJ_CLASS_FLAGS (proc) & SCM_CLASSF_PURE_GENERIC)
2510c810 5258 trampoline = scm_call_generic_1;
2ca0d207 5259 else if (SCM_I_OPERATORP (proc))
2510c810
DH
5260 trampoline = scm_call_1;
5261 else
5262 return NULL;
5263 break;
504d99c5
MD
5264 case scm_tc7_smob:
5265 if (SCM_SMOB_APPLICABLE_P (proc))
2510c810 5266 trampoline = SCM_SMOB_DESCRIPTOR (proc).apply_1;
504d99c5 5267 else
d0b07b5d 5268 return NULL;
2510c810 5269 break;
504d99c5
MD
5270 case scm_tc7_asubr:
5271 case scm_tc7_rpsubr:
5272 case scm_tc7_cclo:
5273 case scm_tc7_pws:
2510c810
DH
5274 trampoline = scm_call_1;
5275 break;
504d99c5 5276 default:
d0b07b5d 5277 return NULL; /* not applicable on one arg */
504d99c5 5278 }
2510c810
DH
5279 /* We only reach this point if a valid trampoline was determined. */
5280
5281 /* If debugging is enabled, we want to see all calls to proc on the stack.
5282 * Thus, we replace the trampoline shortcut with scm_call_1. */
434f2f7a 5283 if (scm_debug_mode_p)
2510c810
DH
5284 return scm_call_1;
5285 else
5286 return trampoline;
504d99c5
MD
5287}
5288
5289static SCM
5290call_subr2_2 (SCM proc, SCM arg1, SCM arg2)
5291{
5292 return SCM_SUBRF (proc) (arg1, arg2);
5293}
5294
9ed24633
MD
5295static SCM
5296call_lsubr2_2 (SCM proc, SCM arg1, SCM arg2)
5297{
5298 return SCM_SUBRF (proc) (arg1, arg2, SCM_EOL);
5299}
5300
504d99c5
MD
5301static SCM
5302call_lsubr_2 (SCM proc, SCM arg1, SCM arg2)
5303{
5304 return SCM_SUBRF (proc) (scm_list_2 (arg1, arg2));
5305}
5306
5307static SCM
5308call_closure_2 (SCM proc, SCM arg1, SCM arg2)
5309{
6a3f13f0
DH
5310 const SCM env = SCM_EXTEND_ENV (SCM_CLOSURE_FORMALS (proc),
5311 scm_list_2 (arg1, arg2),
5312 SCM_ENV (proc));
5313 const SCM result = scm_eval_body (SCM_CLOSURE_BODY (proc), env);
d0b07b5d 5314 return result;
504d99c5
MD
5315}
5316
5317scm_t_trampoline_2
5318scm_trampoline_2 (SCM proc)
5319{
2510c810
DH
5320 scm_t_trampoline_2 trampoline;
5321
504d99c5 5322 if (SCM_IMP (proc))
d0b07b5d 5323 return NULL;
2510c810 5324
504d99c5
MD
5325 switch (SCM_TYP7 (proc))
5326 {
5327 case scm_tc7_subr_2:
5328 case scm_tc7_subr_2o:
5329 case scm_tc7_rpsubr:
5330 case scm_tc7_asubr:
2510c810
DH
5331 trampoline = call_subr2_2;
5332 break;
9ed24633 5333 case scm_tc7_lsubr_2:
2510c810
DH
5334 trampoline = call_lsubr2_2;
5335 break;
504d99c5 5336 case scm_tc7_lsubr:
2510c810
DH
5337 trampoline = call_lsubr_2;
5338 break;
504d99c5
MD
5339 case scm_tcs_closures:
5340 {
5341 SCM formals = SCM_CLOSURE_FORMALS (proc);
a61f4e0c
MV
5342 if (!scm_is_null (formals)
5343 && (!scm_is_pair (formals)
5344 || (!scm_is_null (SCM_CDR (formals))
5345 && (!scm_is_pair (SCM_CDR (formals))
5346 || !scm_is_pair (SCM_CDDR (formals))))))
2510c810 5347 trampoline = call_closure_2;
504d99c5 5348 else
d0b07b5d 5349 return NULL;
2510c810 5350 break;
504d99c5
MD
5351 }
5352 case scm_tcs_struct:
5353 if (SCM_OBJ_CLASS_FLAGS (proc) & SCM_CLASSF_PURE_GENERIC)
2510c810 5354 trampoline = scm_call_generic_2;
2ca0d207 5355 else if (SCM_I_OPERATORP (proc))
2510c810
DH
5356 trampoline = scm_call_2;
5357 else
5358 return NULL;
5359 break;
504d99c5
MD
5360 case scm_tc7_smob:
5361 if (SCM_SMOB_APPLICABLE_P (proc))
2510c810 5362 trampoline = SCM_SMOB_DESCRIPTOR (proc).apply_2;
504d99c5 5363 else
d0b07b5d 5364 return NULL;
2510c810 5365 break;
504d99c5
MD
5366 case scm_tc7_cclo:
5367 case scm_tc7_pws:
2510c810
DH
5368 trampoline = scm_call_2;
5369 break;
504d99c5 5370 default:
d0b07b5d 5371 return NULL; /* not applicable on two args */
504d99c5 5372 }
2510c810
DH
5373 /* We only reach this point if a valid trampoline was determined. */
5374
5375 /* If debugging is enabled, we want to see all calls to proc on the stack.
5376 * Thus, we replace the trampoline shortcut with scm_call_2. */
434f2f7a 5377 if (scm_debug_mode_p)
2510c810
DH
5378 return scm_call_2;
5379 else
5380 return trampoline;
504d99c5
MD
5381}
5382
d9c393f5
JB
5383/* Typechecking for multi-argument MAP and FOR-EACH.
5384
47c3f06d 5385 Verify that each element of the vector ARGV, except for the first,
d9c393f5 5386 is a proper list whose length is LEN. Attribute errors to WHO,
47c3f06d 5387 and claim that the i'th element of ARGV is WHO's i+2'th argument. */
d9c393f5 5388static inline void
47c3f06d 5389check_map_args (SCM argv,
c014a02e 5390 long len,
47c3f06d
MD
5391 SCM gf,
5392 SCM proc,
5393 SCM args,
5394 const char *who)
d9c393f5 5395{
34d19ef6 5396 SCM const *ve = SCM_VELTS (argv);
c014a02e 5397 long i;
d9c393f5 5398
b5c2579a 5399 for (i = SCM_VECTOR_LENGTH (argv) - 1; i >= 1; i--)
d9c393f5 5400 {
c014a02e 5401 long elt_len = scm_ilength (ve[i]);
d9c393f5
JB
5402
5403 if (elt_len < 0)
47c3f06d
MD
5404 {
5405 if (gf)
5406 scm_apply_generic (gf, scm_cons (proc, args));
5407 else
5408 scm_wrong_type_arg (who, i + 2, ve[i]);
5409 }
d9c393f5
JB
5410
5411 if (elt_len != len)
e11e83f3 5412 scm_out_of_range_pos (who, ve[i], scm_from_long (i + 2));
d9c393f5
JB
5413 }
5414
5d2b97cd 5415 scm_remember_upto_here_1 (argv);
d9c393f5
JB
5416}
5417
5418
47c3f06d 5419SCM_GPROC (s_map, "map", 2, 0, 1, scm_map, g_map);
1cc91f1b 5420
368bf056
MD
5421/* Note: Currently, scm_map applies PROC to the argument list(s)
5422 sequentially, starting with the first element(s). This is used in
8878f040 5423 evalext.c where the Scheme procedure `map-in-order', which guarantees
368bf056 5424 sequential behaviour, is implemented using scm_map. If the
8878f040 5425 behaviour changes, we need to update `map-in-order'.
368bf056
MD
5426*/
5427
0f2d19dd 5428SCM
1bbd0b84 5429scm_map (SCM proc, SCM arg1, SCM args)
af45e3b0 5430#define FUNC_NAME s_map
0f2d19dd 5431{
c014a02e 5432 long i, len;
0f2d19dd
JB
5433 SCM res = SCM_EOL;
5434 SCM *pres = &res;
34d19ef6 5435 SCM const *ve = &args; /* Keep args from being optimized away. */
0f2d19dd 5436
d9c393f5 5437 len = scm_ilength (arg1);
47c3f06d
MD
5438 SCM_GASSERTn (len >= 0,
5439 g_map, scm_cons2 (proc, arg1, args), SCM_ARG2, s_map);
af45e3b0 5440 SCM_VALIDATE_REST_ARGUMENT (args);
a61f4e0c 5441 if (scm_is_null (args))
0f2d19dd 5442 {
504d99c5
MD
5443 scm_t_trampoline_1 call = scm_trampoline_1 (proc);
5444 SCM_GASSERT2 (call, g_map, proc, arg1, SCM_ARG1, s_map);
5445 while (SCM_NIMP (arg1))
5446 {
5447 *pres = scm_list_1 (call (proc, SCM_CAR (arg1)));
5448 pres = SCM_CDRLOC (*pres);
5449 arg1 = SCM_CDR (arg1);
5450 }
5451 return res;
5452 }
a61f4e0c 5453 if (scm_is_null (SCM_CDR (args)))
504d99c5
MD
5454 {
5455 SCM arg2 = SCM_CAR (args);
5456 int len2 = scm_ilength (arg2);
5457 scm_t_trampoline_2 call = scm_trampoline_2 (proc);
5458 SCM_GASSERTn (call,
5459 g_map, scm_cons2 (proc, arg1, args), SCM_ARG1, s_map);
5460 SCM_GASSERTn (len2 >= 0,
5461 g_map, scm_cons2 (proc, arg1, args), SCM_ARG3, s_map);
5462 if (len2 != len)
5463 SCM_OUT_OF_RANGE (3, arg2);
0f2d19dd
JB
5464 while (SCM_NIMP (arg1))
5465 {
504d99c5 5466 *pres = scm_list_1 (call (proc, SCM_CAR (arg1), SCM_CAR (arg2)));
a23afe53 5467 pres = SCM_CDRLOC (*pres);
0f2d19dd 5468 arg1 = SCM_CDR (arg1);
504d99c5 5469 arg2 = SCM_CDR (arg2);
0f2d19dd
JB
5470 }
5471 return res;
5472 }
05b15362
DH
5473 arg1 = scm_cons (arg1, args);
5474 args = scm_vector (arg1);
0f2d19dd 5475 ve = SCM_VELTS (args);
47c3f06d 5476 check_map_args (args, len, g_map, proc, arg1, s_map);
0f2d19dd
JB
5477 while (1)
5478 {
5479 arg1 = SCM_EOL;
b5c2579a 5480 for (i = SCM_VECTOR_LENGTH (args) - 1; i >= 0; i--)
0f2d19dd 5481 {
d9c393f5
JB
5482 if (SCM_IMP (ve[i]))
5483 return res;
0f2d19dd 5484 arg1 = scm_cons (SCM_CAR (ve[i]), arg1);
34d19ef6 5485 SCM_VECTOR_SET (args, i, SCM_CDR (ve[i]));
0f2d19dd 5486 }
8ea46249 5487 *pres = scm_list_1 (scm_apply (proc, arg1, SCM_EOL));
a23afe53 5488 pres = SCM_CDRLOC (*pres);
0f2d19dd
JB
5489 }
5490}
af45e3b0 5491#undef FUNC_NAME
0f2d19dd
JB
5492
5493
47c3f06d 5494SCM_GPROC (s_for_each, "for-each", 2, 0, 1, scm_for_each, g_for_each);
1cc91f1b 5495
0f2d19dd 5496SCM
1bbd0b84 5497scm_for_each (SCM proc, SCM arg1, SCM args)
af45e3b0 5498#define FUNC_NAME s_for_each
0f2d19dd 5499{
34d19ef6 5500 SCM const *ve = &args; /* Keep args from being optimized away. */
c014a02e 5501 long i, len;
d9c393f5 5502 len = scm_ilength (arg1);
47c3f06d
MD
5503 SCM_GASSERTn (len >= 0, g_for_each, scm_cons2 (proc, arg1, args),
5504 SCM_ARG2, s_for_each);
af45e3b0 5505 SCM_VALIDATE_REST_ARGUMENT (args);
a61f4e0c 5506 if (scm_is_null (args))
0f2d19dd 5507 {
504d99c5
MD
5508 scm_t_trampoline_1 call = scm_trampoline_1 (proc);
5509 SCM_GASSERT2 (call, g_for_each, proc, arg1, SCM_ARG1, s_for_each);
5510 while (SCM_NIMP (arg1))
5511 {
5512 call (proc, SCM_CAR (arg1));
5513 arg1 = SCM_CDR (arg1);
5514 }
5515 return SCM_UNSPECIFIED;
5516 }
a61f4e0c 5517 if (scm_is_null (SCM_CDR (args)))
504d99c5
MD
5518 {
5519 SCM arg2 = SCM_CAR (args);
5520 int len2 = scm_ilength (arg2);
5521 scm_t_trampoline_2 call = scm_trampoline_2 (proc);
5522 SCM_GASSERTn (call, g_for_each,
5523 scm_cons2 (proc, arg1, args), SCM_ARG1, s_for_each);
5524 SCM_GASSERTn (len2 >= 0, g_for_each,
5525 scm_cons2 (proc, arg1, args), SCM_ARG3, s_for_each);
5526 if (len2 != len)
5527 SCM_OUT_OF_RANGE (3, arg2);
c96d76b8 5528 while (SCM_NIMP (arg1))
0f2d19dd 5529 {
504d99c5 5530 call (proc, SCM_CAR (arg1), SCM_CAR (arg2));
0f2d19dd 5531 arg1 = SCM_CDR (arg1);
504d99c5 5532 arg2 = SCM_CDR (arg2);
0f2d19dd
JB
5533 }
5534 return SCM_UNSPECIFIED;
5535 }
05b15362
DH
5536 arg1 = scm_cons (arg1, args);
5537 args = scm_vector (arg1);
0f2d19dd 5538 ve = SCM_VELTS (args);
47c3f06d 5539 check_map_args (args, len, g_for_each, proc, arg1, s_for_each);
0f2d19dd
JB
5540 while (1)
5541 {
5542 arg1 = SCM_EOL;
b5c2579a 5543 for (i = SCM_VECTOR_LENGTH (args) - 1; i >= 0; i--)
0f2d19dd 5544 {
c96d76b8
NJ
5545 if (SCM_IMP (ve[i]))
5546 return SCM_UNSPECIFIED;
0f2d19dd 5547 arg1 = scm_cons (SCM_CAR (ve[i]), arg1);
34d19ef6 5548 SCM_VECTOR_SET (args, i, SCM_CDR (ve[i]));
0f2d19dd
JB
5549 }
5550 scm_apply (proc, arg1, SCM_EOL);
5551 }
5552}
af45e3b0 5553#undef FUNC_NAME
0f2d19dd 5554
1cc91f1b 5555
0f2d19dd 5556SCM
6e8d25a6 5557scm_closure (SCM code, SCM env)
0f2d19dd 5558{
16d4699b
MV
5559 SCM z;
5560 SCM closcar = scm_cons (code, SCM_EOL);
228a24ef 5561 z = scm_cell (SCM_UNPACK (closcar) + scm_tc3_closure, (scm_t_bits) env);
16d4699b 5562 scm_remember_upto_here (closcar);
0f2d19dd
JB
5563 return z;
5564}
5565
5566
92c2555f 5567scm_t_bits scm_tc16_promise;
1cc91f1b 5568
0f2d19dd 5569SCM
6e8d25a6 5570scm_makprom (SCM code)
0f2d19dd 5571{
28d52ebb
MD
5572 SCM_RETURN_NEWSMOB2 (scm_tc16_promise,
5573 SCM_UNPACK (code),
5574 scm_make_rec_mutex ());
0f2d19dd
JB
5575}
5576
28d52ebb
MD
5577static size_t
5578promise_free (SCM promise)
5579{
5580 scm_rec_mutex_free (SCM_PROMISE_MUTEX (promise));
5581 return 0;
5582}
1cc91f1b 5583
0f2d19dd 5584static int
e841c3e0 5585promise_print (SCM exp, SCM port, scm_print_state *pstate)
0f2d19dd 5586{
19402679 5587 int writingp = SCM_WRITINGP (pstate);
b7f3516f 5588 scm_puts ("#<promise ", port);
19402679 5589 SCM_SET_WRITINGP (pstate, 1);
28d52ebb 5590 scm_iprin1 (SCM_PROMISE_DATA (exp), port, pstate);
19402679 5591 SCM_SET_WRITINGP (pstate, writingp);
b7f3516f 5592 scm_putc ('>', port);
0f2d19dd
JB
5593 return !0;
5594}
5595
3b3b36dd 5596SCM_DEFINE (scm_force, "force", 1, 0, 0,
28d52ebb 5597 (SCM promise),
67e8151b
MG
5598 "If the promise @var{x} has not been computed yet, compute and\n"
5599 "return @var{x}, otherwise just return the previously computed\n"
5600 "value.")
1bbd0b84 5601#define FUNC_NAME s_scm_force
0f2d19dd 5602{
28d52ebb
MD
5603 SCM_VALIDATE_SMOB (1, promise, promise);
5604 scm_rec_mutex_lock (SCM_PROMISE_MUTEX (promise));
5605 if (!SCM_PROMISE_COMPUTED_P (promise))
0f2d19dd 5606 {
28d52ebb
MD
5607 SCM ans = scm_call_0 (SCM_PROMISE_DATA (promise));
5608 if (!SCM_PROMISE_COMPUTED_P (promise))
0f2d19dd 5609 {
28d52ebb
MD
5610 SCM_SET_PROMISE_DATA (promise, ans);
5611 SCM_SET_PROMISE_COMPUTED (promise);
0f2d19dd
JB
5612 }
5613 }
28d52ebb
MD
5614 scm_rec_mutex_unlock (SCM_PROMISE_MUTEX (promise));
5615 return SCM_PROMISE_DATA (promise);
0f2d19dd 5616}
1bbd0b84 5617#undef FUNC_NAME
0f2d19dd 5618
445f675c 5619
a1ec6916 5620SCM_DEFINE (scm_promise_p, "promise?", 1, 0, 0,
67e8151b 5621 (SCM obj),
b380b885 5622 "Return true if @var{obj} is a promise, i.e. a delayed computation\n"
7a095584 5623 "(@pxref{Delayed evaluation,,,r5rs.info,The Revised^5 Report on Scheme}).")
1bbd0b84 5624#define FUNC_NAME s_scm_promise_p
0f2d19dd 5625{
7888309b 5626 return scm_from_bool (SCM_TYP16_PREDICATE (scm_tc16_promise, obj));
0f2d19dd 5627}
1bbd0b84 5628#undef FUNC_NAME
0f2d19dd 5629
445f675c 5630
a1ec6916 5631SCM_DEFINE (scm_cons_source, "cons-source", 3, 0, 0,
1bbd0b84 5632 (SCM xorig, SCM x, SCM y),
11768c04
NJ
5633 "Create and return a new pair whose car and cdr are @var{x} and @var{y}.\n"
5634 "Any source properties associated with @var{xorig} are also associated\n"
5635 "with the new pair.")
1bbd0b84 5636#define FUNC_NAME s_scm_cons_source
26d5b9b4
MD
5637{
5638 SCM p, z;
16d4699b 5639 z = scm_cons (x, y);
26d5b9b4
MD
5640 /* Copy source properties possibly associated with xorig. */
5641 p = scm_whash_lookup (scm_source_whash, xorig);
7888309b 5642 if (scm_is_true (p))
26d5b9b4
MD
5643 scm_whash_insert (scm_source_whash, z, p);
5644 return z;
5645}
1bbd0b84 5646#undef FUNC_NAME
26d5b9b4 5647
445f675c 5648
62360b89
DH
5649/* The function scm_copy_tree is used to copy an expression tree to allow the
5650 * memoizer to modify the expression during memoization. scm_copy_tree
5651 * creates deep copies of pairs and vectors, but not of any other data types,
5652 * since only pairs and vectors will be parsed by the memoizer.
5653 *
5654 * To avoid infinite recursion due to cyclic structures, the hare-and-tortoise
5655 * pattern is used to detect cycles. In fact, the pattern is used in two
5656 * dimensions, vertical (indicated in the code by the variable names 'hare'
5657 * and 'tortoise') and horizontal ('rabbit' and 'turtle'). In both
5658 * dimensions, the hare/rabbit will take two steps when the tortoise/turtle
5659 * takes one.
5660 *
5661 * The vertical dimension corresponds to recursive calls to function
5662 * copy_tree: This happens when descending into vector elements, into cars of
5663 * lists and into the cdr of an improper list. In this dimension, the
5664 * tortoise follows the hare by using the processor stack: Every stack frame
5665 * will hold an instance of struct t_trace. These instances are connected in
5666 * a way that represents the trace of the hare, which thus can be followed by
5667 * the tortoise. The tortoise will always point to struct t_trace instances
5668 * relating to SCM objects that have already been copied. Thus, a cycle is
5669 * detected if the tortoise and the hare point to the same object,
5670 *
5671 * The horizontal dimension is within one execution of copy_tree, when the
5672 * function cdr's along the pairs of a list. This is the standard
5673 * hare-and-tortoise implementation, found several times in guile. */
5674
5675struct t_trace {
5676 struct t_trace *trace; // These pointers form a trace along the stack.
5677 SCM obj; // The object handled at the respective stack frame.
5678};
5679
5680static SCM
5681copy_tree (
5682 struct t_trace *const hare,
5683 struct t_trace *tortoise,
5684 unsigned int tortoise_delay )
5685{
a61f4e0c 5686 if (!scm_is_pair (hare->obj) && !SCM_VECTORP (hare->obj))
62360b89
DH
5687 {
5688 return hare->obj;
5689 }
5690 else
5691 {
5692 /* Prepare the trace along the stack. */
5693 struct t_trace new_hare;
5694 hare->trace = &new_hare;
5695
5696 /* The tortoise will make its step after the delay has elapsed. Note
5697 * that in contrast to the typical hare-and-tortoise pattern, the step
5698 * of the tortoise happens before the hare takes its steps. This is, in
5699 * principle, no problem, except for the start of the algorithm: Then,
5fb64383 5700 * it has to be made sure that the hare actually gets its advantage of
62360b89
DH
5701 * two steps. */
5702 if (tortoise_delay == 0)
5703 {
5704 tortoise_delay = 1;
5705 tortoise = tortoise->trace;
bc36d050 5706 ASSERT_SYNTAX (!scm_is_eq (hare->obj, tortoise->obj),
62360b89
DH
5707 s_bad_expression, hare->obj);
5708 }
5709 else
5710 {
5711 --tortoise_delay;
5712 }
5713
5714 if (SCM_VECTORP (hare->obj))
5715 {
5716 const unsigned long int length = SCM_VECTOR_LENGTH (hare->obj);
5717 const SCM new_vector = scm_c_make_vector (length, SCM_UNSPECIFIED);
5718
5719 /* Each vector element is copied by recursing into copy_tree, having
5720 * the tortoise follow the hare into the depths of the stack. */
5721 unsigned long int i;
5722 for (i = 0; i < length; ++i)
5723 {
5724 SCM new_element;
5725 new_hare.obj = SCM_VECTOR_REF (hare->obj, i);
5726 new_element = copy_tree (&new_hare, tortoise, tortoise_delay);
5727 SCM_VECTOR_SET (new_vector, i, new_element);
5728 }
5729
5730 return new_vector;
5731 }
a61f4e0c 5732 else // scm_is_pair (hare->obj)
62360b89
DH
5733 {
5734 SCM result;
5735 SCM tail;
5736
5737 SCM rabbit = hare->obj;
5738 SCM turtle = hare->obj;
5739
5740 SCM copy;
5741
5742 /* The first pair of the list is treated specially, in order to
5743 * preserve a potential source code position. */
5744 result = tail = scm_cons_source (rabbit, SCM_EOL, SCM_EOL);
5745 new_hare.obj = SCM_CAR (rabbit);
5746 copy = copy_tree (&new_hare, tortoise, tortoise_delay);
5747 SCM_SETCAR (tail, copy);
5748
5749 /* The remaining pairs of the list are copied by, horizontally,
5750 * having the turtle follow the rabbit, and, vertically, having the
5751 * tortoise follow the hare into the depths of the stack. */
5752 rabbit = SCM_CDR (rabbit);
a61f4e0c 5753 while (scm_is_pair (rabbit))
62360b89
DH
5754 {
5755 new_hare.obj = SCM_CAR (rabbit);
5756 copy = copy_tree (&new_hare, tortoise, tortoise_delay);
5757 SCM_SETCDR (tail, scm_cons (copy, SCM_UNDEFINED));
5758 tail = SCM_CDR (tail);
5759
5760 rabbit = SCM_CDR (rabbit);
a61f4e0c 5761 if (scm_is_pair (rabbit))
62360b89
DH
5762 {
5763 new_hare.obj = SCM_CAR (rabbit);
5764 copy = copy_tree (&new_hare, tortoise, tortoise_delay);
5765 SCM_SETCDR (tail, scm_cons (copy, SCM_UNDEFINED));
5766 tail = SCM_CDR (tail);
5767 rabbit = SCM_CDR (rabbit);
5768
5769 turtle = SCM_CDR (turtle);
bc36d050 5770 ASSERT_SYNTAX (!scm_is_eq (rabbit, turtle),
62360b89
DH
5771 s_bad_expression, rabbit);
5772 }
5773 }
5774
5775 /* We have to recurse into copy_tree again for the last cdr, in
5776 * order to handle the situation that it holds a vector. */
5777 new_hare.obj = rabbit;
5778 copy = copy_tree (&new_hare, tortoise, tortoise_delay);
5779 SCM_SETCDR (tail, copy);
5780
5781 return result;
5782 }
5783 }
5784}
5785
a1ec6916 5786SCM_DEFINE (scm_copy_tree, "copy-tree", 1, 0, 0,
1bbd0b84 5787 (SCM obj),
b380b885 5788 "Recursively copy the data tree that is bound to @var{obj}, and return a\n"
bfefbf18 5789 "the new data structure. @code{copy-tree} recurses down the\n"
b380b885
MD
5790 "contents of both pairs and vectors (since both cons cells and vector\n"
5791 "cells may point to arbitrary objects), and stops recursing when it hits\n"
5792 "any other object.")
1bbd0b84 5793#define FUNC_NAME s_scm_copy_tree
0f2d19dd 5794{
62360b89
DH
5795 /* Prepare the trace along the stack. */
5796 struct t_trace trace;
5797 trace.obj = obj;
5798
5799 /* In function copy_tree, if the tortoise makes its step, it will do this
5800 * before the hare has the chance to move. Thus, we have to make sure that
5801 * the very first step of the tortoise will not happen after the hare has
5802 * really made two steps. This is achieved by passing '2' as the initial
5803 * delay for the tortoise. NOTE: Since cycles are unlikely, giving the hare
5804 * a bigger advantage may improve performance slightly. */
5805 return copy_tree (&trace, &trace, 2);
0f2d19dd 5806}
1bbd0b84 5807#undef FUNC_NAME
0f2d19dd 5808
1cc91f1b 5809
4163eb72
MV
5810/* We have three levels of EVAL here:
5811
5812 - scm_i_eval (exp, env)
5813
5814 evaluates EXP in environment ENV. ENV is a lexical environment
5815 structure as used by the actual tree code evaluator. When ENV is
5816 a top-level environment, then changes to the current module are
a513ead3 5817 tracked by updating ENV so that it continues to be in sync with
4163eb72
MV
5818 the current module.
5819
5820 - scm_primitive_eval (exp)
5821
5822 evaluates EXP in the top-level environment as determined by the
5823 current module. This is done by constructing a suitable
5824 environment and calling scm_i_eval. Thus, changes to the
5825 top-level module are tracked normally.
5826
5827 - scm_eval (exp, mod)
5828
a513ead3 5829 evaluates EXP while MOD is the current module. This is done by
4163eb72
MV
5830 setting the current module to MOD, invoking scm_primitive_eval on
5831 EXP, and then restoring the current module to the value it had
5832 previously. That is, while EXP is evaluated, changes to the
5833 current module are tracked, but these changes do not persist when
5834 scm_eval returns.
5835
5836 For each level of evals, there are two variants, distinguished by a
5837 _x suffix: the ordinary variant does not modify EXP while the _x
5838 variant can destructively modify EXP into something completely
5839 unintelligible. A Scheme data structure passed as EXP to one of the
5840 _x variants should not ever be used again for anything. So when in
5841 doubt, use the ordinary variant.
5842
5843*/
5844
0f2d19dd 5845SCM
68d8be66 5846scm_i_eval_x (SCM exp, SCM env)
0f2d19dd 5847{
cc95e00a 5848 if (scm_is_symbol (exp))
434f2f7a
DH
5849 return *scm_lookupcar (scm_cons (exp, SCM_UNDEFINED), env, 1);
5850 else
385609b9 5851 return SCM_I_XEVAL (exp, env);
0f2d19dd
JB
5852}
5853
68d8be66
MD
5854SCM
5855scm_i_eval (SCM exp, SCM env)
5856{
26fb6390 5857 exp = scm_copy_tree (exp);
cc95e00a 5858 if (scm_is_symbol (exp))
434f2f7a
DH
5859 return *scm_lookupcar (scm_cons (exp, SCM_UNDEFINED), env, 1);
5860 else
385609b9 5861 return SCM_I_XEVAL (exp, env);
68d8be66
MD
5862}
5863
5864SCM
4163eb72 5865scm_primitive_eval_x (SCM exp)
0f2d19dd 5866{
a513ead3 5867 SCM env;
bcdab802 5868 SCM transformer = scm_current_module_transformer ();
a513ead3 5869 if (SCM_NIMP (transformer))
fdc28395 5870 exp = scm_call_1 (transformer, exp);
a513ead3 5871 env = scm_top_level_env (scm_current_module_lookup_closure ());
4163eb72 5872 return scm_i_eval_x (exp, env);
0f2d19dd
JB
5873}
5874
4163eb72
MV
5875SCM_DEFINE (scm_primitive_eval, "primitive-eval", 1, 0, 0,
5876 (SCM exp),
2069af38 5877 "Evaluate @var{exp} in the top-level environment specified by\n"
4163eb72
MV
5878 "the current module.")
5879#define FUNC_NAME s_scm_primitive_eval
5880{
a513ead3 5881 SCM env;
bcdab802 5882 SCM transformer = scm_current_module_transformer ();
7888309b 5883 if (scm_is_true (transformer))
fdc28395 5884 exp = scm_call_1 (transformer, exp);
a513ead3 5885 env = scm_top_level_env (scm_current_module_lookup_closure ());
4163eb72
MV
5886 return scm_i_eval (exp, env);
5887}
5888#undef FUNC_NAME
5889
6bff1368 5890
68d8be66
MD
5891/* Eval does not take the second arg optionally. This is intentional
5892 * in order to be R5RS compatible, and to prepare for the new module
5893 * system, where we would like to make the choice of evaluation
4163eb72 5894 * environment explicit. */
549e6ec6 5895
09074dbf
DH
5896static void
5897change_environment (void *data)
5898{
5899 SCM pair = SCM_PACK (data);
5900 SCM new_module = SCM_CAR (pair);
aa767bc5 5901 SCM old_module = scm_current_module ();
09074dbf 5902 SCM_SETCDR (pair, old_module);
aa767bc5 5903 scm_set_current_module (new_module);
09074dbf
DH
5904}
5905
09074dbf
DH
5906static void
5907restore_environment (void *data)
5908{
5909 SCM pair = SCM_PACK (data);
5910 SCM old_module = SCM_CDR (pair);
aa767bc5 5911 SCM new_module = scm_current_module ();
2e9c835d 5912 SCM_SETCAR (pair, new_module);
aa767bc5 5913 scm_set_current_module (old_module);
09074dbf
DH
5914}
5915
4163eb72
MV
5916static SCM
5917inner_eval_x (void *data)
5918{
5919 return scm_primitive_eval_x (SCM_PACK(data));
5920}
5921
5922SCM
5923scm_eval_x (SCM exp, SCM module)
5924#define FUNC_NAME "eval!"
5925{
5926 SCM_VALIDATE_MODULE (2, module);
5927
5928 return scm_internal_dynamic_wind
5929 (change_environment, inner_eval_x, restore_environment,
5930 (void *) SCM_UNPACK (exp),
5931 (void *) SCM_UNPACK (scm_cons (module, SCM_BOOL_F)));
5932}
5933#undef FUNC_NAME
5934
5935static SCM
5936inner_eval (void *data)
5937{
5938 return scm_primitive_eval (SCM_PACK(data));
5939}
09074dbf 5940
68d8be66 5941SCM_DEFINE (scm_eval, "eval", 2, 0, 0,
4163eb72
MV
5942 (SCM exp, SCM module),
5943 "Evaluate @var{exp}, a list representing a Scheme expression,\n"
5944 "in the top-level environment specified by @var{module}.\n"
8f85c0c6 5945 "While @var{exp} is evaluated (using @code{primitive-eval}),\n"
4163eb72
MV
5946 "@var{module} is made the current module. The current module\n"
5947 "is reset to its previous value when @var{eval} returns.")
1bbd0b84 5948#define FUNC_NAME s_scm_eval
0f2d19dd 5949{
4163eb72 5950 SCM_VALIDATE_MODULE (2, module);
09074dbf
DH
5951
5952 return scm_internal_dynamic_wind
5953 (change_environment, inner_eval, restore_environment,
4163eb72
MV
5954 (void *) SCM_UNPACK (exp),
5955 (void *) SCM_UNPACK (scm_cons (module, SCM_BOOL_F)));
0f2d19dd 5956}
1bbd0b84 5957#undef FUNC_NAME
0f2d19dd 5958
6dbd0af5 5959
434f2f7a 5960/* At this point, deval and scm_dapply are generated.
6dbd0af5
MD
5961 */
5962
a44a9715
DH
5963#define DEVAL
5964#include "eval.c"
0f2d19dd 5965
1cc91f1b 5966
434f2f7a
DH
5967#if (SCM_ENABLE_DEPRECATED == 1)
5968
5969/* Deprecated in guile 1.7.0 on 2004-03-29. */
5970SCM scm_ceval (SCM x, SCM env)
5971{
a61f4e0c 5972 if (scm_is_pair (x))
434f2f7a 5973 return ceval (x, env);
cc95e00a 5974 else if (scm_is_symbol (x))
434f2f7a
DH
5975 return *scm_lookupcar (scm_cons (x, SCM_UNDEFINED), env, 1);
5976 else
385609b9 5977 return SCM_I_XEVAL (x, env);
434f2f7a
DH
5978}
5979
5980/* Deprecated in guile 1.7.0 on 2004-03-29. */
5981SCM scm_deval (SCM x, SCM env)
5982{
a61f4e0c 5983 if (scm_is_pair (x))
434f2f7a 5984 return deval (x, env);
cc95e00a 5985 else if (scm_is_symbol (x))
434f2f7a
DH
5986 return *scm_lookupcar (scm_cons (x, SCM_UNDEFINED), env, 1);
5987 else
385609b9 5988 return SCM_I_XEVAL (x, env);
434f2f7a
DH
5989}
5990
5991static SCM
5992dispatching_eval (SCM x, SCM env)
5993{
5994 if (scm_debug_mode_p)
5995 return scm_deval (x, env);
5996 else
5997 return scm_ceval (x, env);
5998}
5999
6000/* Deprecated in guile 1.7.0 on 2004-03-29. */
6001SCM (*scm_ceval_ptr) (SCM x, SCM env) = dispatching_eval;
6002
6003#endif
6004
6005
0f2d19dd
JB
6006void
6007scm_init_eval ()
0f2d19dd 6008{
33b97402
MD
6009 scm_init_opts (scm_evaluator_traps,
6010 scm_evaluator_trap_table,
6011 SCM_N_EVALUATOR_TRAPS);
6012 scm_init_opts (scm_eval_options_interface,
6013 scm_eval_opts,
6014 SCM_N_EVAL_OPTIONS);
6015
f99c9c28
MD
6016 scm_tc16_promise = scm_make_smob_type ("promise", 0);
6017 scm_set_smob_mark (scm_tc16_promise, scm_markcdr);
28d52ebb 6018 scm_set_smob_free (scm_tc16_promise, promise_free);
e841c3e0 6019 scm_set_smob_print (scm_tc16_promise, promise_print);
b8229a3b 6020
a44a9715
DH
6021 undefineds = scm_list_1 (SCM_UNDEFINED);
6022 SCM_SETCDR (undefineds, undefineds);
6023 scm_permanent_object (undefineds);
7c33806a 6024
a44a9715 6025 scm_listofnull = scm_list_1 (SCM_EOL);
0f2d19dd 6026
a44a9715
DH
6027 f_apply = scm_c_define_subr ("apply", scm_tc7_lsubr_2, scm_apply);
6028 scm_permanent_object (f_apply);
86d31dfe 6029
a0599745 6030#include "libguile/eval.x"
60a49842 6031
25eaf21a 6032 scm_add_feature ("delay");
0f2d19dd 6033}
0f2d19dd 6034
6dbd0af5 6035#endif /* !DEVAL */
89e00824
ML
6036
6037/*
6038 Local Variables:
6039 c-file-style: "gnu"
6040 End:
6041*/