Arrange so that `SCM_I_CURRENT_THREAD' is not accessed outside of libguile.
[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
e20d7001 6/* Copyright (C) 1995,1996,1998,1999,2000,2001,2002,2003, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
8c494e99 7 *
d3cf93bc 8 * This library is free software; you can redistribute it and/or
53befeb7
NJ
9 * modify it under the terms of the GNU Lesser General Public License
10 * as published by the Free Software Foundation; either version 3 of
11 * the License, or (at your option) any later version.
8c494e99 12 *
53befeb7
NJ
13 * This library is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
d3cf93bc
NJ
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
8c494e99 17 *
d3cf93bc
NJ
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
53befeb7
NJ
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 * 02110-1301 USA
d3cf93bc 22 */
8c494e99 23
0f2d19dd 24\f
176067df 25
92e6989f
RB
26/**********************************************************************
27 This file is Guile's central public header.
28
29 When included by other files, this file should preceed any include
30 other than __scm.h.
31
32 Under *NO* circumstances should new items be added to the global
33 namespace (via adding #define, typedef, or similar to this file) with
34 generic names. This usually means that any new names should be
35 prefixed by either SCM_ or GUILE_. i.e. do *not* #define HAVE_FOO or
36 SIZEOF_BAR. See configure.in, gen-scmconfig.h.in, and
37 gen-scmconfig.c for examples of how to properly handle this issue.
38 The main documentation is in gen-scmconfig.c.
39
40 "What's the difference between _scm.h and __scm.h?"
176067df
JB
41
42 _scm.h is not installed; it's only visible to the libguile sources
92e6989f 43 themselves, and it includes config.h, the private config header.
176067df
JB
44
45 __scm.h is installed, and is #included by <libguile.h>. If both
46 the client and libguile need some piece of information, and it
47 doesn't fit well into the header file for any particular module, it
92e6989f
RB
48 should go in __scm.h. __scm.h includes scmconfig.h, the public
49 config header.
50 **********************************************************************/
51
52/* What did the configure script discover about the outside world? */
53#include "libguile/scmconfig.h"
176067df 54
92e6989f 55\f
176067df 56
e81d98ec
DH
57/* {Compiler hints}
58 *
59 * The following macros are used to provide additional information for the
60 * compiler, which may help to do better error checking and code
61 * optimization. A second benefit of these macros is, that they also provide
62 * additional information to the developers.
63 */
64
65/* The macro SCM_NORETURN indicates that a function will never return.
66 * Examples:
67 * 1) int foo (char arg) SCM_NORETURN;
68 */
69#ifdef __GNUC__
70#define SCM_NORETURN __attribute__ ((noreturn))
71#else
72#define SCM_NORETURN
73#endif
74
75/* The macro SCM_UNUSED indicates that a function, function argument or
76 * variable may potentially be unused.
77 * Examples:
78 * 1) static int unused_function (char arg) SCM_UNUSED;
79 * 2) int foo (char unused_argument SCM_UNUSED);
80 * 3) int unused_variable SCM_UNUSED;
81 */
82#ifdef __GNUC__
83#define SCM_UNUSED __attribute__ ((unused))
84#else
85#define SCM_UNUSED
86#endif
87
88
9cc37597
LC
89/* The SCM_EXPECT macros provide branch prediction hints to the compiler. To
90 * use only in places where the result of the expression under "normal"
91 * circumstances is known. */
92#if defined(__GNUC__) && (__GNUC__ >= 3)
93# define SCM_EXPECT __builtin_expect
94#else
95# define SCM_EXPECT(_expr, _value) (_expr)
96#endif
97
98#define SCM_LIKELY(_expr) SCM_EXPECT ((_expr), 1)
99#define SCM_UNLIKELY(_expr) SCM_EXPECT ((_expr), 0)
100
102dbb6f 101/* The SCM_INTERNAL macro makes it possible to explicitly declare a function
442f3f20
AW
102 * as having "internal" linkage. However our current tack on this problem is
103 * to use GCC 4's -fvisibility=hidden, making functions internal by default,
104 * and then SCM_API marks them for export. */
105#define SCM_INTERNAL extern
102dbb6f 106
743b8872
LC
107/* The SCM_DEPRECATED macro is used in declarations of deprecated functions
108 * or variables. Defining `SCM_BUILDING_DEPRECATED_CODE' allows deprecated
109 * functions to be implemented in terms of deprecated functions, and allows
110 * deprecated functions to be referred to by `scm_c_define_gsubr ()'. */
111#if !defined (SCM_BUILDING_DEPRECATED_CODE) \
112 && defined (__GNUC__) && (__GNUC__ >= 3)
113# define SCM_DEPRECATED SCM_API __attribute__ ((__deprecated__))
114#else
115# define SCM_DEPRECATED SCM_API
116#endif
117
9cc37597
LC
118
119\f
0f2d19dd
JB
120/* {Supported Options}
121 *
122 * These may be defined or undefined.
123 */
124
16d35552 125/* #define GUILE_DEBUG_FREELIST */
70d63753 126
0f2d19dd
JB
127/* All the number support there is.
128 */
0f2d19dd
JB
129#define BIGNUMS
130
686765af
ML
131/* GC should relinquish empty cons-pair arenas. */
132/* cmm:FIXME look at this after done mangling the GC */
133/* #define GC_FREE_SEGMENTS */
0f2d19dd
JB
134
135/* Provide a scheme-accessible count-down timer that
136 * generates a pseudo-interrupt.
137 */
138#define TICKS
139
140
141/* Use engineering notation when converting numbers strings?
142 */
143#undef ENGNOT
144
0f2d19dd
JB
145\f
146/* {Unsupported Options}
147 *
3c205827 148 * These must be defined as given here.
0f2d19dd
JB
149 */
150
151
3c205827
JB
152/* Guile Scheme supports the #f/() distinction; Guile Lisp won't. We
153 have horrible plans for their unification. */
154#undef SICP
0f2d19dd
JB
155
156\f
157
80c78696 158/* Random options (not yet supported or in final form). */
0f2d19dd 159
80c78696
MD
160#define STACK_CHECKING
161#undef NO_CEVAL_STACK_CHECKING
0f2d19dd 162
43ff3170 163\f
3a9809df 164
1174045c 165/* SCM_API is a macro prepended to all function and data definitions
442f3f20
AW
166 which should be exported from libguile. */
167
168#if BUILDING_LIBGUILE && HAVE_VISIBILITY
169# define SCM_API extern __attribute__((__visibility__("default")))
170#elif BUILDING_LIBGUILE && defined _MSC_VER
171# define SCM_API __declspec(dllexport) extern
172#elif defined _MSC_VER
173# define SCM_API __declspec(dllimport) extern
1174045c
MV
174#else
175# define SCM_API extern
176#endif
177
178\f
179
3a9809df
DH
180/* {Debugging Options}
181 *
182 * These compile time options determine whether to include code that is only
183 * useful for debugging guile itself or C level extensions to guile. The
184 * common prefix for all option macros of this kind is "SCM_DEBUG_". It is
fce0b22d
DH
185 * guaranteed that a macro named SCM_DEBUG_XXX is always defined (typically to
186 * either 0 or 1), i. e. there is no need to test for the undefined case.
187 * This allows to use these definitions comfortably within code, as in the
188 * following example:
3a9809df
DH
189 * #define FOO do { if (SCM_DEBUG_XXX) bar(); else baz(); } while (0)
190 * Any sane compiler will remove the unused branch without any performance
191 * penalty for the resulting code.
192 *
193 * Note: Some SCM_DEBUG_XXX options are not settable at configure time.
194 * To change the value of such options you will have to edit this header
56100716
DH
195 * file or give suitable options to make, like:
196 * make all CFLAGS="-DSCM_DEBUG_XXX=1 ..."
3a9809df
DH
197 */
198
199
c8a54c4b
DH
200/* The value of SCM_DEBUG determines the default for most of the not yet
201 * defined debugging options. This allows, for example, to enable most of the
202 * debugging options by simply defining SCM_DEBUG as 1.
203 */
204#ifndef SCM_DEBUG
205#define SCM_DEBUG 0
206#endif
207
7ddb9baf
HWN
208/* For debugging purposes: define this is to ensure nobody is using
209 * the mark bits outside of the marking phase. This is meant for
210 * debugging purposes only.
211 */
212#ifndef SCM_DEBUG_MARKING_API
213#define SCM_DEBUG_MARKING_API 0
214#endif
215
46d53380
DH
216/* If SCM_DEBUG_CELL_ACCESSES is set to 1, cell accesses will perform
217 * exhaustive parameter checking: It will be verified that cell parameters
218 * actually point to a valid heap cell. Note: If this option is enabled,
219 * guile will run about ten times slower than normally.
220 */
221#ifndef SCM_DEBUG_CELL_ACCESSES
222#define SCM_DEBUG_CELL_ACCESSES SCM_DEBUG
223#endif
224
216eedfc
DH
225/* If SCM_DEBUG_INTERRUPTS is set to 1, with every deferring and allowing of
226 * interrupts a consistency check will be performed.
227 */
228#ifndef SCM_DEBUG_INTERRUPTS
229#define SCM_DEBUG_INTERRUPTS SCM_DEBUG
230#endif
231
e81d98ec
DH
232/* If SCM_DEBUG_PAIR_ACCESSES is set to 1, accesses to cons cells will be
233 * exhaustively checked. Note: If this option is enabled, guile will run
234 * slower than normally.
235 */
236#ifndef SCM_DEBUG_PAIR_ACCESSES
237#define SCM_DEBUG_PAIR_ACCESSES SCM_DEBUG
238#endif
239
af45e3b0
DH
240/* If SCM_DEBUG_REST_ARGUMENT is set to 1, functions that take rest arguments
241 * will check whether the rest arguments are actually passed as a proper list.
242 * Otherwise, if SCM_DEBUG_REST_ARGUMENT is 0, functions that take rest
243 * arguments will take it for granted that these are passed as a proper list.
c8a54c4b 244 */
af45e3b0
DH
245#ifndef SCM_DEBUG_REST_ARGUMENT
246#define SCM_DEBUG_REST_ARGUMENT SCM_DEBUG
3a9809df
DH
247#endif
248
fce0b22d
DH
249/* The macro SCM_DEBUG_TYPING_STRICTNESS indicates what level of type checking
250 * shall be performed with respect to the use of the SCM datatype. The macro
251 * may be defined to one of the values 0, 1 and 2.
252 *
253 * A value of 0 means that there will be no compile time type checking, since
254 * the SCM datatype will be declared as an integral type. This setting should
255 * only be used on systems, where casting from integral types to pointers may
256 * lead to loss of bit information.
257 *
258 * A value of 1 means that there will an intermediate level of compile time
259 * type checking, since the SCM datatype will be declared as a pointer to an
260 * undefined struct. This setting is the default, since it does not cost
261 * anything in terms of performance or code size.
262 *
263 * A value of 2 provides a maximum level of compile time type checking since
264 * the SCM datatype will be declared as a struct. This setting should be used
265 * for _compile time_ type checking only, since the compiled result is likely
266 * to be quite inefficient. The right way to make use of this option is to do
267 * a 'make clean; make CFLAGS=-DSCM_DEBUG_TYPING_STRICTNESS=2', fix your
56100716 268 * errors, and then do 'make clean; make'.
c8a54c4b 269 */
56100716 270#ifndef SCM_DEBUG_TYPING_STRICTNESS
729dbac3 271#define SCM_DEBUG_TYPING_STRICTNESS 1
56100716
DH
272#endif
273
d0624e39
DH
274/* If SCM_DEBUG_DEBUGGING_SUPPORT is set to 1, guile will provide a set of
275 * special functions that support debugging with a debugger like gdb or
276 * debugging of guile internals on the scheme level. The behaviour of guile
277 * is not changed by this macro, only the set of functions that are available
278 * will differ. All functions that are introduced this way have the prefix
279 * 'scm_dbg_' on the C level and the prefix 'dbg-' on the scheme level. This
280 * allows to easily determine the set of support functions, given that your
281 * debugger or repl provide automatic name completion. Note that these
282 * functions are intended to be used during interactive debugging sessions
283 * only. They are not considered part of guile's official API. They may
284 * change or disappear without notice or deprecation phase.
94fb5a6e 285 */
d0624e39
DH
286#ifndef SCM_DEBUG_DEBUGGING_SUPPORT
287#define SCM_DEBUG_DEBUGGING_SUPPORT SCM_DEBUG
94fb5a6e
DH
288#endif
289
3a9809df
DH
290\f
291
8c494e99
DH
292/* {Feature Options}
293 *
294 * These compile time options determine whether code for certain features
295 * should be compiled into guile. The common prefix for all option macros
296 * of this kind is "SCM_ENABLE_". It is guaranteed that a macro named
297 * SCM_ENABLE_XXX is defined to be either 0 or 1, i. e. there is no need to
298 * test for the undefined case. This allows to use these definitions
299 * comfortably within code, as in the following example:
300 * #define FOO do { if (SCM_ENABLE_XXX) bar(); else baz(); } while (0)
301 * Any sane compiler will remove the unused branch without any performance
302 * penalty for the resulting code.
303 *
304 * Note: Some SCM_ENABLE_XXX options are not settable at configure time.
305 * To change the value of such options you will have to edit this header
306 * file or give suitable options to make, like:
307 * make all CFLAGS="-DSCM_ENABLE_XXX=1 ..."
0f2d19dd 308 */
1be6b49c 309
8c494e99
DH
310/* If SCM_ENABLE_DEPRECATED is set to 1, deprecated code will be included in
311 * guile, as well as some functions to issue run-time warnings about uses of
312 * deprecated functions.
313 */
314#ifndef SCM_ENABLE_DEPRECATED
315#define SCM_ENABLE_DEPRECATED 0
1be6b49c 316#endif
0f2d19dd 317
b971d089 318\f
0f2d19dd 319
5c75b29f 320/* {Architecture and compiler properties}
0f2d19dd 321 *
5c75b29f
DH
322 * Guile as of today can only work on systems which fulfill at least the
323 * following requirements:
59c4bb82
DH
324 *
325 * - scm_t_bits and SCM variables have at least 32 bits.
5c75b29f 326 * Guile's type system is based on this assumption.
59c4bb82
DH
327 *
328 * - sizeof (scm_t_bits) >= sizeof (void*) and sizeof (SCM) >= sizeof (void*)
329 * Guile's type system is based on this assumption, since it must be
330 * possible to store pointers to cells on the heap in scm_t_bits and SCM
331 * variables.
332 *
333 * - sizeof (scm_t_bits) >= 4 and sizeof (scm_t_bits) is a power of 2.
334 * Guile's type system is based on this assumption. In particular, it is
335 * assumed that cells, i. e. pairs of scm_t_bits variables, are eight
336 * character aligned. This is because three bits of a scm_t_bits variable
337 * that is holding a pointer to a cell on the heap must be available for
338 * storing type data.
339 *
340 * - sizeof (scm_t_bits) <= sizeof (void*) and sizeof (SCM) <= sizeof (void*)
341 * In some parts of guile, scm_t_bits and SCM variables are passed to
342 * functions as void* arguments. Together with the requirement above, this
343 * requires a one-to-one correspondence between the size of a void* and the
344 * sizes of scm_t_bits and SCM variables.
345 *
5c75b29f
DH
346 * - numbers are encoded using two's complement.
347 * The implementation of the bitwise scheme level operations is based on
348 * this assumption.
59c4bb82 349 *
5c75b29f 350 * - ... add more
0f2d19dd
JB
351 */
352
5c75b29f
DH
353#ifdef CHAR_BIT
354# define SCM_CHAR_BIT CHAR_BIT
355#else
356# define SCM_CHAR_BIT 8
357#endif
358
359#ifdef LONG_BIT
360# define SCM_LONG_BIT LONG_BIT
361#else
362# define SCM_LONG_BIT (SCM_CHAR_BIT * sizeof (long) / sizeof (char))
363#endif
364
365#ifdef UCHAR_MAX
366# define SCM_CHAR_CODE_LIMIT (UCHAR_MAX + 1L)
0f2d19dd 367#else
e2806c10 368# define SCM_CHAR_CODE_LIMIT 256L
5c75b29f
DH
369#endif
370
e88d45aa
MV
371#define SCM_I_UTYPE_MAX(type) ((type)-1)
372#define SCM_I_TYPE_MAX(type,umax) ((type)((umax)/2))
373#define SCM_I_TYPE_MIN(type,umax) (-((type)((umax)/2))-1)
374
375#define SCM_T_UINT8_MAX SCM_I_UTYPE_MAX(scm_t_uint8)
376#define SCM_T_INT8_MIN SCM_I_TYPE_MIN(scm_t_int8,SCM_T_UINT8_MAX)
377#define SCM_T_INT8_MAX SCM_I_TYPE_MAX(scm_t_int8,SCM_T_UINT8_MAX)
378
379#define SCM_T_UINT16_MAX SCM_I_UTYPE_MAX(scm_t_uint16)
380#define SCM_T_INT16_MIN SCM_I_TYPE_MIN(scm_t_int16,SCM_T_UINT16_MAX)
381#define SCM_T_INT16_MAX SCM_I_TYPE_MAX(scm_t_int16,SCM_T_UINT16_MAX)
382
383#define SCM_T_UINT32_MAX SCM_I_UTYPE_MAX(scm_t_uint32)
384#define SCM_T_INT32_MIN SCM_I_TYPE_MIN(scm_t_int32,SCM_T_UINT32_MAX)
385#define SCM_T_INT32_MAX SCM_I_TYPE_MAX(scm_t_int32,SCM_T_UINT32_MAX)
386
387#if SCM_HAVE_T_INT64
388#define SCM_T_UINT64_MAX SCM_I_UTYPE_MAX(scm_t_uint64)
389#define SCM_T_INT64_MIN SCM_I_TYPE_MIN(scm_t_int64,SCM_T_UINT64_MAX)
390#define SCM_T_INT64_MAX SCM_I_TYPE_MAX(scm_t_int64,SCM_T_UINT64_MAX)
391#endif
392
393#if SCM_SIZEOF_LONG_LONG
394#define SCM_I_ULLONG_MAX SCM_I_UTYPE_MAX(unsigned long long)
395#define SCM_I_LLONG_MIN SCM_I_TYPE_MIN(long long,SCM_I_ULLONG_MAX)
396#define SCM_I_LLONG_MAX SCM_I_TYPE_MAX(long long,SCM_I_ULLONG_MAX)
397#endif
398
399#define SCM_T_UINTMAX_MAX SCM_I_UTYPE_MAX(scm_t_uintmax)
400#define SCM_T_INTMAX_MIN SCM_I_TYPE_MIN(scm_t_intmax,SCM_T_UINTMAX_MAX)
401#define SCM_T_INTMAX_MAX SCM_I_TYPE_MAX(scm_t_intmax,SCM_T_UINTMAX_MAX)
402
403#define SCM_I_SIZE_MAX SCM_I_UTYPE_MAX(size_t)
404#define SCM_I_SSIZE_MIN SCM_I_TYPE_MIN(ssize_t,SCM_I_SIZE_MAX)
405#define SCM_I_SSIZE_MAX SCM_I_TYPE_MAX(ssize_t,SCM_I_SIZE_MAX)
406
0f2d19dd
JB
407\f
408
2a1d8241 409#include "libguile/tags.h"
0f2d19dd
JB
410
411\f
412#ifdef vms
413# ifndef CHEAP_CONTINUATIONS
414 typedef int jmp_buf[17];
415 extern int setjump(jmp_buf env);
416 extern int longjump(jmp_buf env, int ret);
417# define setjmp setjump
418# define longjmp longjump
419# else
420# include <setjmp.h>
421# endif
422#else /* ndef vms */
423# ifdef _CRAY1
424 typedef int jmp_buf[112];
425 extern int setjump(jmp_buf env);
426 extern int longjump(jmp_buf env, int ret);
427# define setjmp setjump
428# define longjmp longjump
429# else /* ndef _CRAY1 */
346e4402
NJ
430# if defined (__ia64__)
431/* For IA64, emulate the setjmp API using getcontext. */
432# include <signal.h>
433# include <ucontext.h>
434 typedef struct {
435 ucontext_t ctx;
436 int fresh;
a4dbe1ac
NJ
437 } scm_i_jmp_buf;
438# define SCM_I_SETJMP(JB) \
346e4402
NJ
439 ( (JB).fresh = 1, \
440 getcontext (&((JB).ctx)), \
441 ((JB).fresh ? ((JB).fresh = 0, 0) : 1) )
a4dbe1ac
NJ
442# define SCM_I_LONGJMP(JB,VAL) scm_ia64_longjmp (&(JB), VAL)
443 void scm_ia64_longjmp (scm_i_jmp_buf *, int);
346e4402
NJ
444# else /* ndef __ia64__ */
445# include <setjmp.h>
446# endif /* ndef __ia64__ */
0f2d19dd
JB
447# endif /* ndef _CRAY1 */
448#endif /* ndef vms */
449
a4dbe1ac
NJ
450/* For any platform where SCM_I_SETJMP hasn't been defined in some
451 special way above, map SCM_I_SETJMP, SCM_I_LONGJMP and
452 scm_i_jmp_buf to setjmp, longjmp and jmp_buf. */
453#ifndef SCM_I_SETJMP
454#define scm_i_jmp_buf jmp_buf
455#define SCM_I_SETJMP setjmp
456#define SCM_I_LONGJMP longjmp
457#endif
458
0f2d19dd
JB
459/* James Clark came up with this neat one instruction fix for
460 * continuations on the SPARC. It flushes the register windows so
3dd84ef1 461 * that all the state of the process is contained in the stack.
0f2d19dd
JB
462 */
463
7c12f0ac 464#if defined (sparc) || defined (__sparc__) || defined (__sparc)
0f2d19dd
JB
465# define SCM_FLUSH_REGISTER_WINDOWS asm("ta 3")
466#else
467# define SCM_FLUSH_REGISTER_WINDOWS /* empty */
468#endif
469
3dd84ef1 470/* If stack is not longword aligned then
0f2d19dd
JB
471 */
472
473/* #define SHORT_ALIGN */
474#ifdef THINK_C
475# define SHORT_ALIGN
476#endif
477#ifdef MSDOS
478# define SHORT_ALIGN
479#endif
480#ifdef atarist
481# define SHORT_ALIGN
482#endif
483
484#ifdef SHORT_ALIGN
485typedef short SCM_STACKITEM;
486#else
487typedef long SCM_STACKITEM;
488#endif
79f55b7c
MD
489
490/* Cast pointer through (void *) in order to avoid compiler warnings
491 when strict aliasing is enabled */
492#define SCM_STACK_PTR(ptr) ((SCM_STACKITEM *) (void *) (ptr))
0f2d19dd
JB
493\f
494
46935a1f
LC
495SCM_API void scm_async_tick (void);
496
497#ifdef BUILDING_LIBGUILE
498
499/* FIXME: should change names */
500# define SCM_ASYNC_TICK \
501 do \
502 { \
503 if (SCM_I_CURRENT_THREAD->pending_asyncs) \
504 scm_async_click (); \
505 } \
506 while (0)
507
508#else /* !BUILDING_LIBGUILE */
509
510# define SCM_ASYNC_TICK (scm_async_tick ())
511
512#endif /* !BUILDING_LIBGUILE */
25d3ee9d 513
0f2d19dd 514
8417b665
JB
515/* Anthony Green writes:
516 When the compiler sees...
517 DEFER_INTS;
518 [critical code here]
519 ALLOW_INTS;
520 ...it doesn't actually promise to keep the critical code within the
521 boundries of the DEFER/ALLOW_INTS instructions. It may very well
522 schedule it outside of the magic defined in those macros.
523
524 However, GCC's volatile asm feature forms a barrier over which code is
525 never moved. So if you add...
35eec738
JB
526 asm ("");
527 ...to each of the DEFER_INTS and ALLOW_INTS macros, the critical
528 code will always remain in place. asm's without inputs or outputs
529 are implicitly volatile. */
8417b665 530#ifdef __GNUC__
35eec738 531#define SCM_FENCE asm /* volatile */ ("")
189b66ba
MV
532#elif defined (__INTEL_COMPILER) && defined (__ia64)
533#define SCM_FENCE __memory_barrier()
8417b665
JB
534#else
535#define SCM_FENCE
536#endif
537
c72cc5fb 538#define SCM_TICK \
bfc69694 539do { \
cd911565 540 SCM_ASYNC_TICK; \
216eedfc 541 SCM_THREAD_SWITCHING_CODE; \
bfc69694 542} while (0)
0f2d19dd
JB
543
544\f
545
546/** SCM_ASSERT
3dd84ef1 547 **
0f2d19dd
JB
548 **/
549
550
551#ifdef SCM_RECKLESS
552#define SCM_ASSERT(_cond, _arg, _pos, _subr)
23deee81 553#define SCM_ASSERT_TYPE(_cond, _arg, _pos, _subr, _msg)
0f2d19dd
JB
554#define SCM_ASRTGO(_cond, _label)
555#else
9cc37597
LC
556#define SCM_ASSERT(_cond, _arg, _pos, _subr) \
557 do { if (SCM_UNLIKELY (!(_cond))) \
aeb4c2e1 558 scm_wrong_type_arg (_subr, _pos, _arg); } while (0)
9cc37597
LC
559#define SCM_ASSERT_TYPE(_cond, _arg, _pos, _subr, _msg) \
560 do { if (SCM_UNLIKELY (!(_cond))) \
aeb4c2e1 561 scm_wrong_type_arg_msg(_subr, _pos, _arg, _msg); } while (0)
9cc37597
LC
562#define SCM_ASRTGO(_cond, _label) \
563 do { if (SCM_UNLIKELY (!(_cond))) \
aeb4c2e1 564 goto _label; } while (0)
0f2d19dd 565#endif
95b88819 566
9de33deb
MD
567/*
568 * SCM_WTA_DISPATCH
569 */
570
451e591c
DH
571/* Dirk:FIXME:: In all of the SCM_WTA_DISPATCH_* macros it is assumed that
572 * 'gf' is zero if uninitialized. It would be cleaner if some valid SCM value
573 * like SCM_BOOL_F or SCM_UNDEFINED was chosen.
574 */
575
1174045c 576SCM_API SCM scm_call_generic_0 (SCM gf);
b3c8a0f5 577
e68fc829 578#define SCM_WTA_DISPATCH_0(gf, subr) \
c07b3fef
MD
579 return (SCM_UNPACK (gf) \
580 ? scm_call_generic_0 ((gf)) \
e68fc829 581 : (scm_error_num_args_subr ((subr)), SCM_UNSPECIFIED))
9cc37597
LC
582#define SCM_GASSERT0(cond, gf, subr) \
583 if (SCM_UNLIKELY(!(cond))) \
584 SCM_WTA_DISPATCH_0((gf), (subr))
b3c8a0f5 585
1174045c 586SCM_API SCM scm_call_generic_1 (SCM gf, SCM a1);
9de33deb 587
c07b3fef
MD
588#define SCM_WTA_DISPATCH_1(gf, a1, pos, subr) \
589 return (SCM_UNPACK (gf) \
590 ? scm_call_generic_1 ((gf), (a1)) \
591 : (scm_wrong_type_arg ((subr), (pos), (a1)), SCM_UNSPECIFIED))
0193377d
MG
592
593/* This form is for dispatching a subroutine. */
594#define SCM_WTA_DISPATCH_1_SUBR(subr, a1, pos) \
595 return (SCM_UNPACK ((*SCM_SUBR_GENERIC (subr))) \
596 ? scm_call_generic_1 ((*SCM_SUBR_GENERIC (subr)), (a1)) \
597 : (scm_i_wrong_type_arg_symbol (SCM_SUBR_NAME (subr), (pos), (a1)), SCM_UNSPECIFIED))
598
9cc37597
LC
599#define SCM_GASSERT1(cond, gf, a1, pos, subr) \
600 if (SCM_UNLIKELY (!(cond))) \
601 SCM_WTA_DISPATCH_1((gf), (a1), (pos), (subr))
9de33deb 602
1174045c 603SCM_API SCM scm_call_generic_2 (SCM gf, SCM a1, SCM a2);
9de33deb 604
c07b3fef
MD
605#define SCM_WTA_DISPATCH_2(gf, a1, a2, pos, subr) \
606 return (SCM_UNPACK (gf) \
607 ? scm_call_generic_2 ((gf), (a1), (a2)) \
608 : (scm_wrong_type_arg ((subr), (pos), \
609 (pos) == SCM_ARG1 ? (a1) : (a2)), \
610 SCM_UNSPECIFIED))
9cc37597
LC
611#define SCM_GASSERT2(cond, gf, a1, a2, pos, subr) \
612 if (SCM_UNLIKELY (!(cond))) \
613 SCM_WTA_DISPATCH_2((gf), (a1), (a2), (pos), (subr))
9de33deb 614
1174045c 615SCM_API SCM scm_apply_generic (SCM gf, SCM args);
89c358b1 616
c07b3fef
MD
617#define SCM_WTA_DISPATCH_n(gf, args, pos, subr) \
618 return (SCM_UNPACK (gf) \
619 ? scm_apply_generic ((gf), (args)) \
620 : (scm_wrong_type_arg ((subr), (pos), \
621 scm_list_ref ((args), \
93ccaef0 622 scm_from_int ((pos) - 1))), \
c07b3fef 623 SCM_UNSPECIFIED))
9cc37597
LC
624#define SCM_GASSERTn(cond, gf, args, pos, subr) \
625 if (SCM_UNLIKELY (!(cond))) \
626 SCM_WTA_DISPATCH_n((gf), (args), (pos), (subr))
89c358b1 627
c751e5e3
GB
628#ifndef SCM_MAGIC_SNARFER
629/* Let these macros pass through if
630 we are snarfing; thus we can tell the
631 difference between the use of an actual
632 number vs. the use of one of these macros --
f5421cfc 633 actual numbers in SCM_VALIDATE_* and SCM_ASSERT
c751e5e3
GB
634 constructs must match the formal argument name,
635 but using SCM_ARG* avoids the test */
636
0f2d19dd
JB
637#define SCM_ARGn 0
638#define SCM_ARG1 1
639#define SCM_ARG2 2
640#define SCM_ARG3 3
641#define SCM_ARG4 4
642#define SCM_ARG5 5
1146b6cd 643#define SCM_ARG6 6
3dd84ef1 644#define SCM_ARG7 7
0f2d19dd 645
c751e5e3 646#endif /* SCM_MAGIC_SNARFER */
0f2d19dd 647
0f2d19dd
JB
648\f
649
650/* SCM_EXIT_SUCCESS is the default code to return from SCM if no errors
651 * were encountered. SCM_EXIT_FAILURE is the default code to return from
652 * SCM if errors were encountered. The return code can be explicitly
653 * specified in a SCM program with (scm_quit <n>).
654 */
655
656#ifndef SCM_EXIT_SUCCESS
657#ifdef vms
658#define SCM_EXIT_SUCCESS 1
659#else
660#define SCM_EXIT_SUCCESS 0
661#endif /* def vms */
662#endif /* ndef SCM_EXIT_SUCCESS */
663#ifndef SCM_EXIT_FAILURE
664#ifdef vms
665#define SCM_EXIT_FAILURE 2
666#else
667#define SCM_EXIT_FAILURE 1
668#endif /* def vms */
669#endif /* ndef SCM_EXIT_FAILURE */
670
570b6821
MV
671/* Define SCM_C_INLINE_KEYWORD so that it can be used as a replacement
672 for the "inline" keyword, expanding to nothing when "inline" is not
673 available.
674*/
675
676#ifdef SCM_C_INLINE
677#define SCM_C_INLINE_KEYWORD SCM_C_INLINE
678#else
679#define SCM_C_INLINE_KEYWORD
680#endif
681
729dbac3 682#endif /* SCM___SCM_H */
89e00824
ML
683
684/*
685 Local Variables:
686 c-file-style: "gnu"
687 End:
688*/