__scm.h 20 KB

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