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