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