* __scm.h (SCM_ASYNC_CLICK): Check pending_asyncs instead of
[bpt/guile.git] / libguile / __scm.h
CommitLineData
0f2d19dd
JB
1/* classes: h_files */
2
729dbac3
DH
3#ifndef SCM___SCM_H
4#define SCM___SCM_H
8c494e99 5
bd987b8e 6/* Copyright (C) 1995,1996,1998,1999,2000,2001,2002 Free Software Foundation, Inc.
8c494e99 7 *
0f2d19dd
JB
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2, or (at your option)
11 * any later version.
8c494e99 12 *
0f2d19dd
JB
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
8c494e99 17 *
0f2d19dd
JB
18 * You should have received a copy of the GNU General Public License
19 * along with this software; see the file COPYING. If not, write to
82892bed
JB
20 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
21 * Boston, MA 02111-1307 USA
0f2d19dd
JB
22 *
23 * As a special exception, the Free Software Foundation gives permission
24 * for additional uses of the text contained in its release of GUILE.
25 *
26 * The exception is that, if you link the GUILE library with other files
27 * to produce an executable, this does not by itself cause the
28 * resulting executable to be covered by the GNU General Public License.
29 * Your use of that executable is in no way restricted on account of
30 * linking the GUILE library code into it.
31 *
32 * This exception does not however invalidate any other reasons why
33 * the executable file might be covered by the GNU General Public License.
34 *
35 * This exception applies only to the code released by the
36 * Free Software Foundation under the name GUILE. If you copy
37 * code from other Free Software Foundation releases into a copy of
38 * GUILE, as the General Public License permits, the exception does
39 * not apply to the code that you add in this way. To avoid misleading
40 * anyone as to the status of such modified files, you must delete
41 * this exception notice from them.
42 *
43 * If you write modifications of your own for GUILE, it is your choice
44 * whether to permit this exception to apply to your modifications.
82892bed 45 * If you do not wish that, delete this exception notice. */
8c494e99 46
0f2d19dd 47\f
176067df
JB
48
49/* "What's the difference between _scm.h and __scm.h?"
50
51 _scm.h is not installed; it's only visible to the libguile sources
52 themselves.
53
54 __scm.h is installed, and is #included by <libguile.h>. If both
55 the client and libguile need some piece of information, and it
56 doesn't fit well into the header file for any particular module, it
57 should go in __scm.h. */
58
59
e81d98ec
DH
60/* {Compiler hints}
61 *
62 * The following macros are used to provide additional information for the
63 * compiler, which may help to do better error checking and code
64 * optimization. A second benefit of these macros is, that they also provide
65 * additional information to the developers.
66 */
67
68/* The macro SCM_NORETURN indicates that a function will never return.
69 * Examples:
70 * 1) int foo (char arg) SCM_NORETURN;
71 */
72#ifdef __GNUC__
73#define SCM_NORETURN __attribute__ ((noreturn))
74#else
75#define SCM_NORETURN
76#endif
77
78/* The macro SCM_UNUSED indicates that a function, function argument or
79 * variable may potentially be unused.
80 * Examples:
81 * 1) static int unused_function (char arg) SCM_UNUSED;
82 * 2) int foo (char unused_argument SCM_UNUSED);
83 * 3) int unused_variable SCM_UNUSED;
84 */
85#ifdef __GNUC__
86#define SCM_UNUSED __attribute__ ((unused))
87#else
88#define SCM_UNUSED
89#endif
90
91
0f2d19dd
JB
92/* {Supported Options}
93 *
94 * These may be defined or undefined.
95 */
96
9f0e55a6
MD
97/* Old async mechanism */
98/* #define GUILE_OLD_ASYNC_CLICK */
99
16d35552 100/* #define GUILE_DEBUG_FREELIST */
70d63753 101
0f2d19dd
JB
102/* All the number support there is.
103 */
0f2d19dd
JB
104#define BIGNUMS
105
686765af
ML
106/* GC should relinquish empty cons-pair arenas. */
107/* cmm:FIXME look at this after done mangling the GC */
108/* #define GC_FREE_SEGMENTS */
0f2d19dd
JB
109
110/* Provide a scheme-accessible count-down timer that
111 * generates a pseudo-interrupt.
112 */
113#define TICKS
114
115
116/* Use engineering notation when converting numbers strings?
117 */
118#undef ENGNOT
119
0f2d19dd
JB
120\f
121/* {Unsupported Options}
122 *
3c205827 123 * These must be defined as given here.
0f2d19dd
JB
124 */
125
126
127#define CCLO
3c205827
JB
128
129/* Guile Scheme supports the #f/() distinction; Guile Lisp won't. We
130 have horrible plans for their unification. */
131#undef SICP
0f2d19dd
JB
132
133\f
134
80c78696 135/* Random options (not yet supported or in final form). */
0f2d19dd 136
80c78696
MD
137#define STACK_CHECKING
138#undef NO_CEVAL_STACK_CHECKING
0f2d19dd 139
43ff3170 140\f
3a9809df 141
1174045c
MV
142/* SCM_API is a macro prepended to all function and data definitions
143 which should be exported or imported in the resulting dynamic link
8f99e3f3 144 library (DLL) in the Win32 port. */
1174045c 145
8f99e3f3 146#if defined (SCM_IMPORT)
1174045c 147# define SCM_API __declspec (dllimport) extern
8f99e3f3 148#elif defined (SCM_EXPORT) || defined (DLL_EXPORT)
1174045c
MV
149# define SCM_API __declspec (dllexport) extern
150#else
151# define SCM_API extern
152#endif
153
154\f
155
43ff3170
GH
156/* What did the configure script discover about the outside world? */
157#include "libguile/scmconfig.h"
158
3a9809df
DH
159\f
160
161/* {Debugging Options}
162 *
163 * These compile time options determine whether to include code that is only
164 * useful for debugging guile itself or C level extensions to guile. The
165 * common prefix for all option macros of this kind is "SCM_DEBUG_". It is
166 * guaranteed that a macro named SCM_DEBUG_XXX is defined to be either 0 or 1,
167 * i. e. there is no need to test for the undefined case. This allows to use
8c494e99 168 * these definitions comfortably within code, as in the following example:
3a9809df
DH
169 * #define FOO do { if (SCM_DEBUG_XXX) bar(); else baz(); } while (0)
170 * Any sane compiler will remove the unused branch without any performance
171 * penalty for the resulting code.
172 *
173 * Note: Some SCM_DEBUG_XXX options are not settable at configure time.
174 * To change the value of such options you will have to edit this header
56100716
DH
175 * file or give suitable options to make, like:
176 * make all CFLAGS="-DSCM_DEBUG_XXX=1 ..."
3a9809df
DH
177 */
178
179
c8a54c4b
DH
180/* The value of SCM_DEBUG determines the default for most of the not yet
181 * defined debugging options. This allows, for example, to enable most of the
182 * debugging options by simply defining SCM_DEBUG as 1.
183 */
184#ifndef SCM_DEBUG
185#define SCM_DEBUG 0
186#endif
187
46d53380
DH
188/* If SCM_DEBUG_CELL_ACCESSES is set to 1, cell accesses will perform
189 * exhaustive parameter checking: It will be verified that cell parameters
190 * actually point to a valid heap cell. Note: If this option is enabled,
191 * guile will run about ten times slower than normally.
192 */
193#ifndef SCM_DEBUG_CELL_ACCESSES
194#define SCM_DEBUG_CELL_ACCESSES SCM_DEBUG
195#endif
196
216eedfc
DH
197/* If SCM_DEBUG_INTERRUPTS is set to 1, with every deferring and allowing of
198 * interrupts a consistency check will be performed.
199 */
200#ifndef SCM_DEBUG_INTERRUPTS
201#define SCM_DEBUG_INTERRUPTS SCM_DEBUG
202#endif
203
e81d98ec
DH
204/* If SCM_DEBUG_PAIR_ACCESSES is set to 1, accesses to cons cells will be
205 * exhaustively checked. Note: If this option is enabled, guile will run
206 * slower than normally.
207 */
208#ifndef SCM_DEBUG_PAIR_ACCESSES
209#define SCM_DEBUG_PAIR_ACCESSES SCM_DEBUG
210#endif
211
af45e3b0
DH
212/* If SCM_DEBUG_REST_ARGUMENT is set to 1, functions that take rest arguments
213 * will check whether the rest arguments are actually passed as a proper list.
214 * Otherwise, if SCM_DEBUG_REST_ARGUMENT is 0, functions that take rest
215 * arguments will take it for granted that these are passed as a proper list.
c8a54c4b 216 */
af45e3b0
DH
217#ifndef SCM_DEBUG_REST_ARGUMENT
218#define SCM_DEBUG_REST_ARGUMENT SCM_DEBUG
3a9809df
DH
219#endif
220
56100716
DH
221/* Use this for _compile time_ type checking only, since the compiled result
222 * will be quite inefficient. The right way to make use of this option is to
223 * do a 'make clean; make CFLAGS=-DSCM_DEBUG_TYPING_STRICTNESS=1', fix your
224 * errors, and then do 'make clean; make'.
c8a54c4b 225 */
56100716 226#ifndef SCM_DEBUG_TYPING_STRICTNESS
729dbac3 227#define SCM_DEBUG_TYPING_STRICTNESS 1
56100716
DH
228#endif
229
3a9809df
DH
230\f
231
8c494e99
DH
232/* {Feature Options}
233 *
234 * These compile time options determine whether code for certain features
235 * should be compiled into guile. The common prefix for all option macros
236 * of this kind is "SCM_ENABLE_". It is guaranteed that a macro named
237 * SCM_ENABLE_XXX is defined to be either 0 or 1, i. e. there is no need to
238 * test for the undefined case. This allows to use these definitions
239 * comfortably within code, as in the following example:
240 * #define FOO do { if (SCM_ENABLE_XXX) bar(); else baz(); } while (0)
241 * Any sane compiler will remove the unused branch without any performance
242 * penalty for the resulting code.
243 *
244 * Note: Some SCM_ENABLE_XXX options are not settable at configure time.
245 * To change the value of such options you will have to edit this header
246 * file or give suitable options to make, like:
247 * make all CFLAGS="-DSCM_ENABLE_XXX=1 ..."
0f2d19dd 248 */
1be6b49c 249
8c494e99
DH
250/* If SCM_ENABLE_DEPRECATED is set to 1, deprecated code will be included in
251 * guile, as well as some functions to issue run-time warnings about uses of
252 * deprecated functions.
253 */
254#ifndef SCM_ENABLE_DEPRECATED
255#define SCM_ENABLE_DEPRECATED 0
1be6b49c 256#endif
0f2d19dd 257
b971d089 258\f
0f2d19dd 259
5c75b29f 260/* {Architecture and compiler properties}
0f2d19dd 261 *
5c75b29f
DH
262 * Guile as of today can only work on systems which fulfill at least the
263 * following requirements:
264 * - long ints have at least 32 bits.
265 * Guile's type system is based on this assumption.
266 * - long ints consist of at least four characters.
267 * It is assumed that cells, i. e. pairs of long ints, are eight character
268 * aligned, because three bits of a cell pointer are used for type data.
269 * - sizeof (void*) == sizeof (long int)
270 * Pointers are stored in SCM objects, and sometimes SCM objects are passed
271 * as void*. Thus, there has to be a one-to-one correspondence.
272 * - numbers are encoded using two's complement.
273 * The implementation of the bitwise scheme level operations is based on
274 * this assumption.
275 * - ... add more
0f2d19dd
JB
276 */
277
3dd84ef1
TTN
278#if SIZEOF_UINTPTR_T != 0 && defined(UINTPTR_MAX) \
279 && defined(INTPTR_MAX) \
280 && defined(INTPTR_MIN)
281/* Used as SCM if available, so we bundle related attributes to avoid possible
282 type incon[st][oi]n[ae]nce later. Word in tags.h. */
cd990539 283#define HAVE_UINTPTR_T 1
fdf773fa
MV
284#endif
285
286#if SIZEOF_PTRDIFF_T != 0
cd990539 287#define HAVE_PTRDIFF_T 1
fdf773fa
MV
288#endif
289
290#if SIZEOF_LONG_LONG != 0
cd990539
MV
291#define HAVE_LONG_LONGS 1
292#define HAVE_LONG_LONG 1
fdf773fa
MV
293#endif
294
38956d84
MV
295#ifndef HAVE_PTRDIFF_T
296typedef long ptrdiff_t;
297#endif
298
b971d089 299#ifdef HAVE_LIMITS_H
0f2d19dd 300# include <limits.h>
5c75b29f
DH
301#endif
302
303#ifdef CHAR_BIT
304# define SCM_CHAR_BIT CHAR_BIT
305#else
306# define SCM_CHAR_BIT 8
307#endif
308
309#ifdef LONG_BIT
310# define SCM_LONG_BIT LONG_BIT
311#else
312# define SCM_LONG_BIT (SCM_CHAR_BIT * sizeof (long) / sizeof (char))
313#endif
314
315#ifdef UCHAR_MAX
316# define SCM_CHAR_CODE_LIMIT (UCHAR_MAX + 1L)
0f2d19dd 317#else
e2806c10 318# define SCM_CHAR_CODE_LIMIT 256L
5c75b29f
DH
319#endif
320
0f2d19dd
JB
321\f
322
2a1d8241
JB
323#ifdef STDC_HEADERS
324# include <stdlib.h>
1be6b49c
ML
325# if HAVE_SYS_TYPES_H
326# include <sys/types.h>
327# endif
328# if HAVE_SYS_STDTYPES_H
329# include <sys/stdtypes.h>
330# endif
2a1d8241 331# include <stddef.h>
2a1d8241
JB
332#endif /* def STDC_HEADERS */
333
334\f
335
8f99e3f3
SJ
336/* Define some additional CPP macros on Win32 platforms. */
337#if USE_DLL_IMPORT
338# define __REGEX_IMPORT__ 1
339# define __CRYPT_IMPORT__ 1
340# define __READLINE_IMPORT__ 1
341# define QT_IMPORT 1
342#endif
343
344\f
345
2a1d8241 346#include "libguile/tags.h"
0f2d19dd
JB
347
348\f
349#ifdef vms
350# ifndef CHEAP_CONTINUATIONS
351 typedef int jmp_buf[17];
352 extern int setjump(jmp_buf env);
353 extern int longjump(jmp_buf env, int ret);
354# define setjmp setjump
355# define longjmp longjump
356# else
357# include <setjmp.h>
358# endif
359#else /* ndef vms */
360# ifdef _CRAY1
361 typedef int jmp_buf[112];
362 extern int setjump(jmp_buf env);
363 extern int longjump(jmp_buf env, int ret);
364# define setjmp setjump
365# define longjmp longjump
366# else /* ndef _CRAY1 */
367# include <setjmp.h>
368# endif /* ndef _CRAY1 */
369#endif /* ndef vms */
370
0f2d19dd
JB
371/* James Clark came up with this neat one instruction fix for
372 * continuations on the SPARC. It flushes the register windows so
3dd84ef1 373 * that all the state of the process is contained in the stack.
0f2d19dd
JB
374 */
375
376#ifdef sparc
377# define SCM_FLUSH_REGISTER_WINDOWS asm("ta 3")
378#else
379# define SCM_FLUSH_REGISTER_WINDOWS /* empty */
380#endif
381
3dd84ef1 382/* If stack is not longword aligned then
0f2d19dd
JB
383 */
384
385/* #define SHORT_ALIGN */
386#ifdef THINK_C
387# define SHORT_ALIGN
388#endif
389#ifdef MSDOS
390# define SHORT_ALIGN
391#endif
392#ifdef atarist
393# define SHORT_ALIGN
394#endif
395
396#ifdef SHORT_ALIGN
397typedef short SCM_STACKITEM;
398#else
399typedef long SCM_STACKITEM;
400#endif
401\f
402
82339094 403#ifndef USE_THREADS
3dd84ef1
TTN
404#define SCM_CRITICAL_SECTION_START
405#define SCM_CRITICAL_SECTION_END
25d3ee9d 406#define SCM_THREAD_SWITCHING_CODE
82339094
MD
407#endif
408
9f0e55a6
MD
409#define SCM_ASYNC_TICK /*fixme* should change names */ \
410do { \
1ceead47 411 if (scm_root->pending_asyncs) \
9f0e55a6
MD
412 scm_async_click (); \
413} while (0)
25d3ee9d 414
216eedfc
DH
415#if (SCM_DEBUG_INTERRUPTS == 1)
416#include <stdio.h>
0f2d19dd 417#define SCM_CHECK_NOT_DISABLED \
216eedfc
DH
418 do { \
419 if (scm_ints_disabled) \
420 fprintf(stderr, "ints already disabled (at %s:%d)\n", \
421 __FILE__, __LINE__); \
422 } while (0)
0f2d19dd
JB
423
424#define SCM_CHECK_NOT_ENABLED \
216eedfc
DH
425 do { \
426 if (!scm_ints_disabled) \
427 fprintf(stderr, "ints already enabled (at %s:%d)\n", \
428 __FILE__, __LINE__); \
429 } while (0)
0f2d19dd
JB
430
431#else
432#define SCM_CHECK_NOT_DISABLED
433#define SCM_CHECK_NOT_ENABLED
434#endif
435
436
8417b665
JB
437/* Anthony Green writes:
438 When the compiler sees...
439 DEFER_INTS;
440 [critical code here]
441 ALLOW_INTS;
442 ...it doesn't actually promise to keep the critical code within the
443 boundries of the DEFER/ALLOW_INTS instructions. It may very well
444 schedule it outside of the magic defined in those macros.
445
446 However, GCC's volatile asm feature forms a barrier over which code is
447 never moved. So if you add...
35eec738
JB
448 asm ("");
449 ...to each of the DEFER_INTS and ALLOW_INTS macros, the critical
450 code will always remain in place. asm's without inputs or outputs
451 are implicitly volatile. */
8417b665 452#ifdef __GNUC__
35eec738 453#define SCM_FENCE asm /* volatile */ ("")
8417b665
JB
454#else
455#define SCM_FENCE
456#endif
457
0f2d19dd 458#define SCM_DEFER_INTS \
bfc69694 459do { \
8417b665 460 SCM_FENCE; \
0f2d19dd 461 SCM_CHECK_NOT_DISABLED; \
216eedfc 462 SCM_CRITICAL_SECTION_START; \
8417b665 463 SCM_FENCE; \
0f2d19dd 464 scm_ints_disabled = 1; \
8417b665 465 SCM_FENCE; \
bfc69694 466} while (0)
0f2d19dd
JB
467
468
469#define SCM_ALLOW_INTS_ONLY \
bfc69694 470do { \
216eedfc 471 SCM_CRITICAL_SECTION_END; \
0f2d19dd 472 scm_ints_disabled = 0; \
bfc69694 473} while (0)
0f2d19dd
JB
474
475
476#define SCM_ALLOW_INTS \
bfc69694 477do { \
8417b665 478 SCM_FENCE; \
0f2d19dd 479 SCM_CHECK_NOT_ENABLED; \
216eedfc 480 SCM_CRITICAL_SECTION_END; \
c72cc5fb 481 SCM_FENCE; \
0f2d19dd 482 scm_ints_disabled = 0; \
8417b665 483 SCM_FENCE; \
216eedfc 484 SCM_THREAD_SWITCHING_CODE; \
8417b665 485 SCM_FENCE; \
bfc69694 486} while (0)
0f2d19dd
JB
487
488
489#define SCM_REDEFER_INTS \
bfc69694 490do { \
c72cc5fb 491 SCM_FENCE; \
216eedfc 492 SCM_CRITICAL_SECTION_START; \
0f2d19dd 493 ++scm_ints_disabled; \
c72cc5fb 494 SCM_FENCE; \
bfc69694 495} while (0)
0f2d19dd
JB
496
497
498#define SCM_REALLOW_INTS \
bfc69694 499do { \
c72cc5fb 500 SCM_FENCE; \
216eedfc 501 SCM_CRITICAL_SECTION_END; \
c72cc5fb 502 SCM_FENCE; \
0f2d19dd 503 --scm_ints_disabled; \
c72cc5fb 504 SCM_FENCE; \
bfc69694 505} while (0)
0f2d19dd
JB
506
507
c72cc5fb 508#define SCM_TICK \
bfc69694 509do { \
cd911565 510 SCM_ASYNC_TICK; \
216eedfc 511 SCM_THREAD_SWITCHING_CODE; \
bfc69694 512} while (0)
0f2d19dd
JB
513
514\f
515
f83e2737
MD
516/* Classification of critical sections
517 *
518 * When Guile moves to POSIX threads, it won't be possible to prevent
519 * context switching. In fact, the whole idea of context switching is
520 * bogus if threads are run by different processors. Therefore, we
521 * must ultimately eliminate all critical sections or enforce them by
522 * use of mutecis.
523 *
524 * All instances of SCM_DEFER_INTS and SCM_ALLOW_INTS should therefore
525 * be classified and replaced by one of the delimiters below. If you
526 * understand what this is all about, I'd like to encourage you to
527 * help with this task. The set of classes below must of course be
528 * incrementally augmented.
529 *
530 * MDJ 980419 <djurfeldt@nada.kth.se>
531 */
532
533/* A sections
534 *
535 * Allocation of a cell with type tag in the CAR.
536 *
537 * With POSIX threads, each thread will have a private pool of free
538 * cells. Therefore, this type of section can be removed. But! It
539 * is important that the CDR is initialized first (with the CAR still
540 * indicating a free cell) so that we can guarantee a consistent heap
541 * at all times.
542 */
543
216eedfc
DH
544#define SCM_ENTER_A_SECTION SCM_CRITICAL_SECTION_START
545#define SCM_EXIT_A_SECTION SCM_CRITICAL_SECTION_END
f83e2737
MD
546
547\f
548
0f2d19dd 549/** SCM_ASSERT
3dd84ef1 550 **
0f2d19dd
JB
551 **/
552
553
554#ifdef SCM_RECKLESS
555#define SCM_ASSERT(_cond, _arg, _pos, _subr)
23deee81 556#define SCM_ASSERT_TYPE(_cond, _arg, _pos, _subr, _msg)
0f2d19dd
JB
557#define SCM_ASRTGO(_cond, _label)
558#else
559#define SCM_ASSERT(_cond, _arg, _pos, _subr) \
560 if (!(_cond)) \
b3fcac34 561 scm_wrong_type_arg (_subr, _pos, _arg)
b6791b2e
GB
562#define SCM_ASSERT_TYPE(_cond, _arg, _pos, _subr, _msg) \
563 if (!(_cond)) \
564 scm_wrong_type_arg_msg(_subr, _pos, _arg, _msg)
0f2d19dd
JB
565#define SCM_ASRTGO(_cond, _label) \
566 if (!(_cond)) \
567 goto _label
568#endif
95b88819 569
9de33deb
MD
570/*
571 * SCM_WTA_DISPATCH
572 */
573
451e591c
DH
574/* Dirk:FIXME:: In all of the SCM_WTA_DISPATCH_* macros it is assumed that
575 * 'gf' is zero if uninitialized. It would be cleaner if some valid SCM value
576 * like SCM_BOOL_F or SCM_UNDEFINED was chosen.
577 */
578
1174045c 579SCM_API SCM scm_call_generic_0 (SCM gf);
b3c8a0f5 580
e68fc829 581#define SCM_WTA_DISPATCH_0(gf, subr) \
c07b3fef
MD
582 return (SCM_UNPACK (gf) \
583 ? scm_call_generic_0 ((gf)) \
e68fc829
MV
584 : (scm_error_num_args_subr ((subr)), SCM_UNSPECIFIED))
585#define SCM_GASSERT0(cond, gf, subr) \
586 if (!(cond)) SCM_WTA_DISPATCH_0((gf), (subr))
b3c8a0f5 587
1174045c 588SCM_API SCM scm_call_generic_1 (SCM gf, SCM a1);
9de33deb 589
c07b3fef
MD
590#define SCM_WTA_DISPATCH_1(gf, a1, pos, subr) \
591 return (SCM_UNPACK (gf) \
592 ? scm_call_generic_1 ((gf), (a1)) \
593 : (scm_wrong_type_arg ((subr), (pos), (a1)), SCM_UNSPECIFIED))
9de33deb
MD
594#define SCM_GASSERT1(cond, gf, a1, pos, subr) \
595 if (!(cond)) SCM_WTA_DISPATCH_1((gf), (a1), (pos), (subr))
596
1174045c 597SCM_API SCM scm_call_generic_2 (SCM gf, SCM a1, SCM a2);
9de33deb 598
c07b3fef
MD
599#define SCM_WTA_DISPATCH_2(gf, a1, a2, pos, subr) \
600 return (SCM_UNPACK (gf) \
601 ? scm_call_generic_2 ((gf), (a1), (a2)) \
602 : (scm_wrong_type_arg ((subr), (pos), \
603 (pos) == SCM_ARG1 ? (a1) : (a2)), \
604 SCM_UNSPECIFIED))
9de33deb
MD
605#define SCM_GASSERT2(cond, gf, a1, a2, pos, subr) \
606 if (!(cond)) SCM_WTA_DISPATCH_2((gf), (a1), (a2), (pos), (subr))
607
1174045c 608SCM_API SCM scm_apply_generic (SCM gf, SCM args);
89c358b1 609
c07b3fef
MD
610#define SCM_WTA_DISPATCH_n(gf, args, pos, subr) \
611 return (SCM_UNPACK (gf) \
612 ? scm_apply_generic ((gf), (args)) \
613 : (scm_wrong_type_arg ((subr), (pos), \
614 scm_list_ref ((args), \
615 SCM_MAKINUM ((pos) - 1))), \
616 SCM_UNSPECIFIED))
89c358b1
MD
617#define SCM_GASSERTn(cond, gf, args, pos, subr) \
618 if (!(cond)) SCM_WTA_DISPATCH_n((gf), (args), (pos), (subr))
619
c751e5e3
GB
620#ifndef SCM_MAGIC_SNARFER
621/* Let these macros pass through if
622 we are snarfing; thus we can tell the
623 difference between the use of an actual
624 number vs. the use of one of these macros --
f5421cfc 625 actual numbers in SCM_VALIDATE_* and SCM_ASSERT
c751e5e3
GB
626 constructs must match the formal argument name,
627 but using SCM_ARG* avoids the test */
628
0f2d19dd
JB
629#define SCM_ARGn 0
630#define SCM_ARG1 1
631#define SCM_ARG2 2
632#define SCM_ARG3 3
633#define SCM_ARG4 4
634#define SCM_ARG5 5
1146b6cd 635#define SCM_ARG6 6
3dd84ef1 636#define SCM_ARG7 7
0f2d19dd 637
c751e5e3 638#endif /* SCM_MAGIC_SNARFER */
0f2d19dd 639
0f2d19dd
JB
640\f
641
642/* SCM_EXIT_SUCCESS is the default code to return from SCM if no errors
643 * were encountered. SCM_EXIT_FAILURE is the default code to return from
644 * SCM if errors were encountered. The return code can be explicitly
645 * specified in a SCM program with (scm_quit <n>).
646 */
647
648#ifndef SCM_EXIT_SUCCESS
649#ifdef vms
650#define SCM_EXIT_SUCCESS 1
651#else
652#define SCM_EXIT_SUCCESS 0
653#endif /* def vms */
654#endif /* ndef SCM_EXIT_SUCCESS */
655#ifndef SCM_EXIT_FAILURE
656#ifdef vms
657#define SCM_EXIT_FAILURE 2
658#else
659#define SCM_EXIT_FAILURE 1
660#endif /* def vms */
661#endif /* ndef SCM_EXIT_FAILURE */
662
729dbac3 663#endif /* SCM___SCM_H */
89e00824
ML
664
665/*
666 Local Variables:
667 c-file-style: "gnu"
668 End:
669*/