*** empty log message ***
[bpt/guile.git] / libguile / tags.h
CommitLineData
0f2d19dd
JB
1/* classes: h_files */
2
3#ifndef TAGSH
4#define TAGSH
e282f286 5/* Copyright (C) 1995, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
8ce94504 6 *
0f2d19dd
JB
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2, or (at your option)
10 * any later version.
8ce94504 11 *
0f2d19dd
JB
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
8ce94504 16 *
0f2d19dd
JB
17 * You should have received a copy of the GNU General Public License
18 * along with this software; see the file COPYING. If not, write to
82892bed
JB
19 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
20 * Boston, MA 02111-1307 USA
0f2d19dd
JB
21 *
22 * As a special exception, the Free Software Foundation gives permission
23 * for additional uses of the text contained in its release of GUILE.
24 *
25 * The exception is that, if you link the GUILE library with other files
26 * to produce an executable, this does not by itself cause the
27 * resulting executable to be covered by the GNU General Public License.
28 * Your use of that executable is in no way restricted on account of
29 * linking the GUILE library code into it.
30 *
31 * This exception does not however invalidate any other reasons why
32 * the executable file might be covered by the GNU General Public License.
33 *
34 * This exception applies only to the code released by the
35 * Free Software Foundation under the name GUILE. If you copy
36 * code from other Free Software Foundation releases into a copy of
37 * GUILE, as the General Public License permits, the exception does
38 * not apply to the code that you add in this way. To avoid misleading
39 * anyone as to the status of such modified files, you must delete
40 * this exception notice from them.
41 *
42 * If you write modifications of your own for GUILE, it is your choice
43 * whether to permit this exception to apply to your modifications.
82892bed 44 * If you do not wish that, delete this exception notice. */
1bbd0b84
GB
45
46/* Software engineering face-lift by Greg J. Badros, 11-Dec-1999,
47 gjb@cs.washington.edu, http://www.cs.washington.edu/homes/gjb */
48
0f2d19dd
JB
49\f
50
8ce94504 51/** This file defines the format of SCM values and cons pairs.
0f2d19dd
JB
52 ** It is here that tag bits are assigned for various purposes.
53 **/
54
55\f
56
8d3356e7
DH
57/* #define SCM_STRICT_TYPING */
58/* #define SCM_VOIDP_TEST */
c209c88e 59
0f2d19dd
JB
60/* In the beginning was the Word:
61 */
4d45e7b6 62typedef long scm_bits_t;
8d3356e7
DH
63
64/* But as external interface, we use SCM, which may, according to the desired
65 * level of type checking, be defined in several ways:
66 */
67#if defined (SCM_STRICT_TYPING)
68/* Use this for _compile time_ type checking only, since the compiled result
69 * will be quite inefficient. The right way to make use of this mode is to do
70 * a 'make clean' of your project, 'make all CFLAGS=-DSCM_STRICT_TYPING', fix
71 * your errors, and then do 'make clean; make all'.
72*/
73 typedef union { struct { scm_bits_t n; } n; } SCM;
74 static SCM scm_pack(scm_bits_t b) { SCM s; s.n.n = b; return s; }
75 #define SCM_UNPACK(x) ((x).n.n)
76 #define SCM_PACK(x) (scm_pack (x))
77#elif defined (SCM_VOIDP_TEST)
78/* This is the default, which provides an intermediate level of compile time
79 * type checking while still resulting in very efficient code.
c209c88e 80 */
8d3356e7
DH
81 typedef void * SCM;
82 #define SCM_UNPACK(x) ((scm_bits_t) (x))
83 #define SCM_PACK(x) ((SCM) (x))
c209c88e 84#else
8d3356e7
DH
85/* This should be used as a fall back solution for machines on which casting
86 * to a pointer may lead to loss of bit information, e. g. in the three least
87 * significant bits.
88 */
89 typedef scm_bits_t SCM;
90 #define SCM_UNPACK(x) (x)
91 #define SCM_PACK(x) (x)
c209c88e 92#endif
0f2d19dd 93
8d3356e7
DH
94
95/* SCM values can not be compared by using the operator ==. Use the following
96 * macro instead, which is the equivalent of the scheme predicate 'eq?'.
97 */
98#define SCM_EQ_P(x, y) (SCM_UNPACK (x) == SCM_UNPACK (y))
99
100
f1267706
MD
101/* SCM_UNPACK_CAR is a convenience for treating the CAR of X as a word */
102#define SCM_UNPACK_CAR(x) SCM_UNPACK (SCM_CAR (x))
0f2d19dd 103
0f2d19dd 104\f
2549a709 105
0f2d19dd
JB
106/* SCM variables can contain:
107 *
108 * Non-objects -- meaning that the tag-related macros don't apply to them
109 * in the usual way.
110 *
111 * Immediates -- meaning that the variable contains an entire Scheme object.
112 *
3c205827
JB
113 * Non-immediates -- meaning that the variable holds a (possibly
114 * tagged) pointer into the cons pair heap.
115 *
116 * Non-objects are distinguished from other values by careful coding
117 * only (i.e., programmers must keep track of any SCM variables they
118 * create that don't contain ordinary scheme values).
119 *
120 * All immediates and non-immediates must have a 0 in bit 0. Only
121 * non-object values can have a 1 in bit 0. In some cases, bit 0 of a
122 * word in the heap is used for the GC tag so during garbage
123 * collection, that bit might be 1 even in an immediate or
124 * non-immediate value. In other cases, bit 0 of a word in the heap
125 * is used to tag a pointer to a GLOC (VM global variable address) or
126 * the header of a struct. But whenever an SCM variable holds a
127 * normal Scheme value, bit 0 is 0.
0f2d19dd
JB
128 *
129 * Immediates and non-immediates are distinguished by bits two and four.
130 * Immediate values must have a 1 in at least one of those bits. Does
c6c790ed 131 * this (or any other detail of tagging) seem arbitrary? Try changing it!
0f2d19dd 132 * (Not always impossible but it is fair to say that many details of tags
3c205827 133 * are mutually dependent). */
0f2d19dd 134
f1267706 135#define SCM_IMP(x) (6 & SCM_UNPACK (x))
76189127 136#define SCM_NIMP(x) (!SCM_IMP (x))
0f2d19dd
JB
137
138/* Here is a summary of tagging in SCM values as they might occur in
8ce94504 139 * SCM variables or in the heap.
0f2d19dd
JB
140 *
141 * low bits meaning
142 *
8ce94504 143 *
0f2d19dd
JB
144 * 0 Most objects except...
145 * 1 ...glocs and structs (this tag valid only in a SCM_CAR or
146 * in the header of a struct's data).
147 *
148 * 00 heap addresses and many immediates (not integers)
149 * 01 glocs/structs, some tc7_ codes
150 * 10 immediate integers
151 * 11 various tc7_ codes including, tc16_ codes.
152 *
153 *
154 * 000 heap address
155 * 001 glocs/structs
156 * 010 integer
157 * 011 closure
158 * 100 immediates
159 * 101 tc7_
160 * 110 integer
161 * 111 tc7_
162 *
163 *
164 * 100 --- IMMEDIATES
165 *
166 * Looking at the seven final bits of an immediate:
8ce94504 167 *
0f2d19dd
JB
168 * 0000-100 short instruction
169 * 0001-100 short instruction
170 * 0010-100 short instruction
171 * 0011-100 short instruction
172 * 0100-100 short instruction
173 * 0101-100 short instruction
174 * 0110-100 various immediates and long instructions
175 * 0111-100 short instruction
176 * 1000-100 short instruction
177 * 1001-100 short instruction
178 * 1010-100 short instruction
179 * 1011-100 short instruction
180 * 1100-100 short instruction
181 * 1101-100 short instruction
182 * 1110-100 immediate characters
183 * 1111-100 ilocs
184 *
8ce94504 185 * Some of the 0110100 immediates are long instructions (they dispatch
0f2d19dd
JB
186 * in two steps compared to one step for a short instruction).
187 * The two steps are, (1) dispatch on 7 bits to the long instruction
188 * handler, (2) dispatch on 7 additional bits.
189 *
190 * One way to think of it is that there are 128 short instructions,
191 * with the 13 immediates above being some of the most interesting.
192 *
193 * Also noteworthy are the groups of 16 7-bit instructions implied by
194 * some of the 3-bit tags. For example, closure references consist
195 * of an 8-bit aligned address tagged with 011. There are 16 identical 7-bit
196 * instructions, all ending 011, which are invoked by evaluating closures.
197 *
198 * In other words, if you hand the evaluator a closure, the evaluator
199 * treats the closure as a graph of virtual machine instructions.
200 * A closure is a pair with a pointer to the body of the procedure
201 * in the CDR and a pointer to the environment of the closure in the CAR.
202 * The environment pointer is tagged 011 which implies that the least
203 * significant 7 bits of the environment pointer also happen to be
204 * a virtual machine instruction we could call "SELF" (for self-evaluating
205 * object).
206 *
207 * A less trivial example are the 16 instructions ending 000. If those
208 * bits tag the CAR of a pair, then evidently the pair is an ordinary
209 * cons pair and should be evaluated as a procedure application. The sixteen,
210 * 7-bit 000 instructions are all "NORMAL-APPLY" (Things get trickier.
211 * For example, if the CAR of a procedure application is a symbol, the NORMAL-APPLY
212 * instruction will, as a side effect, overwrite that CAR with a new instruction
213 * that contains a cached address for the variable named by the symbol.)
214 *
215 * Here is a summary of tags in the CAR of a non-immediate:
216 *
217 * HEAP CELL: G=gc_mark; 1 during mark, 0 other times.
218 *
219 * cons ..........SCM car..............0 ...........SCM cdr.............G
220 * gloc ..........SCM vcell..........001 ...........SCM cdr.............G
221 * struct ..........void * type........001 ...........void * data.........G
222 * closure ..........SCM code...........011 ...........SCM env.............G
c2cb2500 223 * tc7 .........long length....Gxxxx1S1 ..........void *data............
0f2d19dd
JB
224 *
225 *
226 *
227 * 101 & 111 --- tc7_ types
228 *
8ce94504
JB
229 * tc7_tags are 7 bit tags ending in 1x1. These tags
230 * occur only in the CAR of heap cells, and have the
231 * handy property that all bits of the CAR above the
232 * bottom eight can be used to store a length, thus
233 * saving a word in the body itself. Thus, we use them
234 * for strings, symbols, and vectors (among other
235 * things).
0f2d19dd
JB
236 *
237 * SCM_LENGTH returns the bits in "length" (see the diagram).
238 * SCM_CHARS returns the data cast to "char *"
239 * SCM_CDR returns the data cast to "SCM"
240 * TYP7(X) returns bits 0...6 of SCM_CAR (X)
241 *
242 * For the interpretation of SCM_LENGTH and SCM_CHARS
243 * that applies to a particular type, see the header file
244 * for that type.
245 *
8ce94504 246 * Sometimes we choose the bottom seven bits carefully,
c2cb2500
JB
247 * so that the 2-valued bit (called S bit) can be masked
248 * off to reveal a common type.
8ce94504 249 *
0f2d19dd 250 * TYP7S(X) returns TYP7, but masking out the option bit S.
0f2d19dd 251 *
c2cb2500
JB
252 * For example, all strings have 0010 in the 'xxxx' bits
253 * in the diagram above, the S bit says whether it's a
b7f3516f 254 * substring.
8ce94504 255 *
0f2d19dd 256 * for example:
b7f3516f 257 * S
8ce94504 258 * scm_tc7_string = G0010101
527da704 259 * scm_tc7_substring = G0010111
8ce94504 260 *
c2cb2500 261 * TYP7S turns both string tags into tc7_string; thus,
b7f3516f 262 * testing TYP7S against tc7_string is a quick way to
c2cb2500 263 * test for any kind of string, shared or unshared.
0f2d19dd 264 *
0f2d19dd
JB
265 * Some TC7 types are subdivided into 256 subtypes giving
266 * rise to the macros:
267 *
268 * TYP16
269 * TYP16S
270 * GCTYP16
271 *
272 * TYP16S functions similarly wrt to TYP16 as TYP7S to TYP7,
273 * but a different option bit is used (bit 2 for TYP7S,
274 * bit 8 for TYP16S).
8ce94504 275 * */
0f2d19dd
JB
276
277
278
279\f
280/* {Non-immediate values.}
281 *
282 * If X is non-immediate, it is necessary to look at SCM_CAR (X) to
c2cb2500
JB
283 * figure out Xs type. X may be a cons pair, in which case the value
284 * SCM_CAR (x) will be either an immediate or non-immediate value. X
285 * may be something other than a cons pair, in which case the value
286 * SCM_CAR (x) will be a non-object value.
287 *
288 * All immediates and non-immediates have a 0 in bit 0. We
289 * additionally preserve the invariant that all non-object values
290 * stored in the SCM_CAR of a non-immediate object have a 1 in bit 1:
0f2d19dd
JB
291 */
292
f1267706 293#define SCM_SLOPPY_NCONSP(x) (1 & SCM_UNPACK_CAR (x))
d266d03a 294#define SCM_SLOPPY_CONSP(x) (!SCM_SLOPPY_NCONSP (x))
76189127 295
d266d03a
MD
296#define SCM_NCONSP(x) (SCM_IMP (x) || SCM_SLOPPY_NCONSP (x))
297#define SCM_CONSP(x) (SCM_NIMP (x) && SCM_SLOPPY_CONSP (x))
0f2d19dd
JB
298
299
ee4274a6
MD
300/* SCM_ECONSP should be used instead of SCM_CONSP at places where GLOCS
301 * can be expected to occur.
0f2d19dd 302 */
8f9da2f9
MD
303#define SCM_ECONSP(x) \
304 (SCM_NIMP (x) \
305 && (SCM_SLOPPY_CONSP (x) \
306 || (SCM_TYP3 (x) == 1 \
307 && (SCM_CDR ((SCM) SCM_STRUCT_VTABLE_DATA (x)) \
308 != (SCM) 0))))
309#define SCM_NECONSP(x) \
310 (SCM_IMP (x) \
311 || (SCM_SLOPPY_NCONSP (x) \
312 && (SCM_TYP3 (x) != 1 \
313 || (SCM_CDR ((SCM) SCM_STRUCT_VTABLE_DATA (x)) \
314 == (SCM) 0))))
0f2d19dd
JB
315
316\f
317
76189127 318#define SCM_CELLP(x) (!SCM_NCELLP (x))
f1267706 319#define SCM_NCELLP(x) ((sizeof (scm_cell) - 1) & SCM_UNPACK (x))
0f2d19dd 320
a00c95d9
ML
321#define SCM_DOUBLE_CELLP(x) (!SCM_NDOUBLE_CELLP (x))
322#define SCM_NDOUBLE_CELLP(x) ((2 * sizeof (scm_cell) - 1) & SCM_UNPACK (x))
323
8ce94504 324/* See numbers.h for macros relating to immediate integers.
0f2d19dd
JB
325 */
326
f1267706
MD
327#define SCM_ITAG3(x) (7 & SCM_UNPACK (x))
328#define SCM_TYP3(x) (7 & SCM_UNPACK_CAR (x))
0f2d19dd
JB
329#define scm_tc3_cons 0
330#define scm_tc3_cons_gloc 1
331#define scm_tc3_int_1 2
c209c88e
GB
332#define scm_tc3_closure 3
333#define scm_tc3_imm24 4
334#define scm_tc3_tc7_1 5
335#define scm_tc3_int_2 6
336#define scm_tc3_tc7_2 7
0f2d19dd
JB
337
338
339/*
340 * Do not change the three bit tags.
341 */
342
343
f1267706
MD
344#define SCM_TYP7(x) (0x7f & SCM_UNPACK_CAR (x))
345#define SCM_TYP7S(x) ((0x7f & ~2) & SCM_UNPACK_CAR (x))
0f2d19dd
JB
346
347
f1267706
MD
348#define SCM_TYP16(x) (0xffff & SCM_UNPACK_CAR (x))
349#define SCM_TYP16S(x) (0xfeff & SCM_UNPACK_CAR (x))
350#define SCM_GCTYP16(x) (0xff7f & SCM_UNPACK_CAR (x))
0f2d19dd
JB
351
352
353
354/* Testing and Changing GC Marks in Various Standard Positions
355 */
76a369d9 356#define SCM_GCCDR(x) SCM_PACK(~1L & SCM_UNPACK (SCM_CDR (x)))
f1267706
MD
357#define SCM_GCMARKP(x) (1 & SCM_UNPACK (SCM_CDR (x)))
358#define SCM_GC8MARKP(x) (0x80 & SCM_UNPACK_CAR (x))
76189127 359#define SCM_SETGCMARK(x) SCM_SETOR_CDR (x, 1)
898a256f
MD
360#define SCM_CLRGCMARK(x) SCM_SETAND_CDR (x, ~1L)
361#define SCM_SETGC8MARK(x) SCM_SETOR_CAR (x, 0x80)
362#define SCM_CLRGC8MARK(x) SCM_SETAND_CAR (x, ~0x80L)
0f2d19dd
JB
363
364
365\f
366
367/* couple */
368#define scm_tc7_ssymbol 5
369#define scm_tc7_msymbol 7
370
371/* couple */
372#define scm_tc7_vector 13
373#define scm_tc7_wvect 15
374
8a6d7c7c 375/* couple */
0f2d19dd 376#define scm_tc7_string 21
527da704 377#define scm_tc7_substring 23
0f2d19dd
JB
378
379/* Many of the following should be turned
380 * into structs or smobs. We need back some
381 * of these 7 bit tags!
382 */
37581b11 383#define scm_tc7_pws 31
0f2d19dd 384#define scm_tc7_lvector 39
afe5177e
GH
385
386#ifdef HAVE_ARRAYS
387#define scm_tc7_llvect 29
388#define scm_tc7_uvect 37
0f2d19dd
JB
389#define scm_tc7_fvect 45
390#define scm_tc7_dvect 47
391#define scm_tc7_cvect 53
392#define scm_tc7_svect 55
0f2d19dd
JB
393#define scm_tc7_bvect 71
394#define scm_tc7_byvect 77
395#define scm_tc7_ivect 79
afe5177e
GH
396#endif
397
398#define scm_tc7_contin 61
399#define scm_tc7_cclo 63
400#define scm_tc7_rpsubr 69
0f2d19dd
JB
401#define scm_tc7_subr_0 85
402#define scm_tc7_subr_1 87
403#define scm_tc7_cxr 93
404#define scm_tc7_subr_3 95
405#define scm_tc7_subr_2 101
406#define scm_tc7_asubr 103
407#define scm_tc7_subr_1o 109
408#define scm_tc7_subr_2o 111
409#define scm_tc7_lsubr_2 117
410#define scm_tc7_lsubr 119
411
412
ee149d03 413/* There are 256 port subtypes. Here are the first few.
0f2d19dd
JB
414 * These must agree with the init function in ports.c
415 */
416#define scm_tc7_port 125
417
76189127 418#define scm_tc16_fport (scm_tc7_port + 0 * 256L)
ee149d03 419/* scm_tc16_pipe was here. */
76189127
MD
420#define scm_tc16_strport (scm_tc7_port + 2 * 256L)
421#define scm_tc16_sfport (scm_tc7_port + 3 * 256L)
0f2d19dd
JB
422
423
424/* There are 256 smob subtypes. Here are the first four.
425 */
426
427#define scm_tc7_smob 127 /* DO NOT CHANGE [**] */
428
429/* [**] If you change scm_tc7_smob, you must also change
430 * the places it is hard coded in this file and possibly others.
431 */
432
433
ab256d39
JB
434/* scm_tc_free_cell is also the 0th smob type. We place this
435 * in free cells to tell the conservative marker not to trace it.
0f2d19dd 436 */
1b88bf8a 437#define scm_tc_free_cell 0x007f
0f2d19dd 438
1b88bf8a 439/* Smob type 1 (note the dependency on the predicate SCM_NUMP)
0f2d19dd 440 */
1b88bf8a 441#define scm_tc16_big 0x017f
0f2d19dd 442
8ce94504 443/* Smob types 2 and 3:
0f2d19dd 444 */
1b88bf8a
MD
445#define scm_tc16_real 0x027f
446#define scm_tc16_complex 0x037f
0f2d19dd 447
1b88bf8a
MD
448/* The following four macros are now deprecated: */
449#define scm_tc16_flo scm_tc16_real
450#define scm_tc_flo 0x017fL
451#define scm_tc_dblr scm_tc16_real
452#define scm_tc_dblc scm_tc16_complex
453
454/* Smob type 4 allocated, but not initialized cells;
1bbd0b84
GB
455 this is required to prevent the gc from hosing your cells if
456 you have to allocate while creating the cell*/
1b88bf8a 457#define scm_tc16_allocated 0x047f
0f2d19dd
JB
458
459\f
8ce94504 460/* {Immediate Values}
0f2d19dd
JB
461 */
462
463enum scm_tags
464{
465 scm_tc8_char = 0xf4,
4816f615 466 scm_tc8_iloc = 0xfc
0f2d19dd
JB
467};
468
f1267706
MD
469#define SCM_ITAG8(X) (SCM_UNPACK (X) & 0xff)
470#define SCM_MAKE_ITAG8(X, TAG) SCM_PACK (((X) << 8) + TAG)
471#define SCM_ITAG8_DATA(X) (SCM_UNPACK (X) >> 8)
0f2d19dd
JB
472
473
474\f
475/* Immediate Symbols, Special Symbols, Flags (various constants).
476 */
477
478/* SCM_ISYMP tests for ISPCSYM and ISYM */
f1267706 479#define SCM_ISYMP(n) ((0x187 & SCM_UNPACK (n)) == 4)
0f2d19dd
JB
480
481/* SCM_IFLAGP tests for ISPCSYM, ISYM and IFLAG */
f1267706
MD
482#define SCM_IFLAGP(n) ((0x87 & SCM_UNPACK (n)) == 4)
483#define SCM_ISYMNUM(n) (SCM_UNPACK (n) >> 9)
76189127 484#define SCM_ISYMCHARS(n) (scm_isymnames[SCM_ISYMNUM (n)])
f1267706
MD
485#define SCM_MAKSPCSYM(n) SCM_PACK (((n) << 9) + ((n) << 3) + 4L)
486#define SCM_MAKISYM(n) SCM_PACK (((n) << 9) + 0x74L)
487#define SCM_MAKIFLAG(n) SCM_PACK (((n) << 9) + 0x174L)
0f2d19dd 488
29ff38c4
MD
489extern char *scm_isymnames[]; /* defined in print.c */
490
8ce94504 491/* This table must agree with the declarations
0f2d19dd
JB
492 * in repl.c: {Names of immediate symbols}.
493 *
494 * These are used only in eval but their values
495 * have to be allocated here.
496 *
497 */
498
76189127
MD
499#define SCM_IM_AND SCM_MAKSPCSYM (0)
500#define SCM_IM_BEGIN SCM_MAKSPCSYM (1)
501#define SCM_IM_CASE SCM_MAKSPCSYM (2)
502#define SCM_IM_COND SCM_MAKSPCSYM (3)
503#define SCM_IM_DO SCM_MAKSPCSYM (4)
504#define SCM_IM_IF SCM_MAKSPCSYM (5)
505#define SCM_IM_LAMBDA SCM_MAKSPCSYM (6)
506#define SCM_IM_LET SCM_MAKSPCSYM (7)
507#define SCM_IM_LETSTAR SCM_MAKSPCSYM (8)
508#define SCM_IM_LETREC SCM_MAKSPCSYM (9)
509#define SCM_IM_OR SCM_MAKSPCSYM (10)
510#define SCM_IM_QUOTE SCM_MAKSPCSYM (11)
511#define SCM_IM_SET_X SCM_MAKSPCSYM (12)
512#define SCM_IM_DEFINE SCM_MAKSPCSYM (13)
513#define SCM_IM_APPLY SCM_MAKISYM (14)
514#define SCM_IM_CONT SCM_MAKISYM (15)
515#define SCM_BOOL_F SCM_MAKIFLAG (16)
516#define SCM_BOOL_T SCM_MAKIFLAG (17)
517#define SCM_UNDEFINED SCM_MAKIFLAG (18)
518#define SCM_EOF_VAL SCM_MAKIFLAG (19)
519#define SCM_EOL SCM_MAKIFLAG (20)
520#define SCM_UNSPECIFIED SCM_MAKIFLAG (21)
521#define SCM_IM_DISPATCH SCM_MAKISYM (22)
522#define SCM_IM_SLOT_REF SCM_MAKISYM (23)
523#define SCM_IM_SLOT_SET_X SCM_MAKISYM (24)
0f2d19dd 524
159500fb
MD
525/* Multi-language support */
526
76189127
MD
527#define SCM_IM_NIL_COND SCM_MAKISYM (25)
528#define SCM_IM_NIL_IFY SCM_MAKISYM (26)
529#define SCM_IM_T_IFY SCM_MAKISYM (27)
530#define SCM_IM_0_COND SCM_MAKISYM (28)
531#define SCM_IM_0_IFY SCM_MAKISYM (29)
532#define SCM_IM_1_IFY SCM_MAKISYM (30)
533#define SCM_IM_BIND SCM_MAKISYM (31)
159500fb 534
76189127 535#define SCM_IM_DELAY SCM_MAKISYM (32)
0f2d19dd 536
5623a9b4
MD
537/* When a variable is unbound this is marked by the SCM_UNDEFINED
538 * value. The following is an unbound value which can be handled on
539 * the Scheme level, i.e., it can be stored in and retrieved from a
540 * Scheme variable. This value is only intended to mark an unbound
541 * slot in GOOPS. It is needed now, but we should probably rewrite
542 * the code which handles this value in C so that SCM_UNDEFINED can be
543 * used instead. It is not ideal to let this kind of unique and
544 * strange values loose on the Scheme level.
545 */
76189127 546#define SCM_UNBOUND SCM_MAKIFLAG (33)
5623a9b4 547
76189127 548#define SCM_UNBNDP(x) (SCM_UNDEFINED == (x))
0f2d19dd
JB
549
550\f
551
5623a9b4 552/* Dispatching aids: */
0f2d19dd
JB
553
554
8ce94504 555/* For cons pairs with immediate values in the CAR
0f2d19dd
JB
556 */
557
558#define scm_tcs_cons_imcar 2:case 4:case 6:case 10:\
559 case 12:case 14:case 18:case 20:\
560 case 22:case 26:case 28:case 30:\
561 case 34:case 36:case 38:case 42:\
562 case 44:case 46:case 50:case 52:\
563 case 54:case 58:case 60:case 62:\
564 case 66:case 68:case 70:case 74:\
565 case 76:case 78:case 82:case 84:\
566 case 86:case 90:case 92:case 94:\
567 case 98:case 100:case 102:case 106:\
568 case 108:case 110:case 114:case 116:\
569 case 118:case 122:case 124:case 126
570
571/* For cons pairs with non-immediate values in the SCM_CAR
572 */
573#define scm_tcs_cons_nimcar 0:case 8:case 16:case 24:\
574 case 32:case 40:case 48:case 56:\
575 case 64:case 72:case 80:case 88:\
576 case 96:case 104:case 112:case 120
577
578/* A CONS_GLOC occurs in code. It's CAR is a pointer to the
579 * CDR of a variable. The low order bits of the CAR are 001.
580 * The CDR of the gloc is the code continuation.
581 */
582#define scm_tcs_cons_gloc 1:case 9:case 17:case 25:\
583 case 33:case 41:case 49:case 57:\
584 case 65:case 73:case 81:case 89:\
585 case 97:case 105:case 113:case 121
586
587#define scm_tcs_closures 3:case 11:case 19:case 27:\
588 case 35:case 43:case 51:case 59:\
589 case 67:case 75:case 83:case 91:\
590 case 99:case 107:case 115:case 123
591
592#define scm_tcs_subrs scm_tc7_asubr:case scm_tc7_subr_0:case scm_tc7_subr_1:case scm_tc7_cxr:\
593 case scm_tc7_subr_3:case scm_tc7_subr_2:case scm_tc7_rpsubr:case scm_tc7_subr_1o:\
594 case scm_tc7_subr_2o:case scm_tc7_lsubr_2:case scm_tc7_lsubr
595
596#define scm_tcs_symbols scm_tc7_ssymbol:case scm_tc7_msymbol
597
0f2d19dd 598#endif /* TAGSH */
89e00824
ML
599
600/*
601 Local Variables:
602 c-file-style: "gnu"
603 End:
604*/