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