Merge remote-tracking branch 'origin/stable-2.0'
[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
8c494e99 5
fc7bd367 6/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2008,2009,2010,2011
5065b40d 7 * Free Software Foundation, Inc.
8ce94504 8 *
73be1d9e 9 * This library is free software; you can redistribute it and/or
53befeb7
NJ
10 * modify it under the terms of the GNU Lesser General Public License
11 * as published by the Free Software Foundation; either version 3 of
12 * the License, or (at your option) any later version.
8ce94504 13 *
53befeb7
NJ
14 * This library is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
8ce94504 18 *
73be1d9e
MV
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
53befeb7
NJ
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22 * 02110-1301 USA
73be1d9e 23 */
1bbd0b84 24
0f2d19dd
JB
25\f
26
8ce94504 27/** This file defines the format of SCM values and cons pairs.
0f2d19dd
JB
28 ** It is here that tag bits are assigned for various purposes.
29 **/
30
353d4770
RB
31/* picks up scmconfig.h too */
32#include "libguile/__scm.h"
0f2d19dd 33
7e3b25bf
DH
34\f
35
0f2d19dd 36/* In the beginning was the Word:
7e3b25bf
DH
37 *
38 * For the representation of scheme objects and their handling, Guile provides
39 * two types: scm_t_bits and SCM.
40 *
41 * - scm_t_bits values can hold bit patterns of non-objects and objects:
42 *
43 * Non-objects -- in this case the value may not be changed into a SCM value
44 * in any way.
45 *
46 * Objects -- in this case the value may be changed into a SCM value using
47 * the SCM_PACK macro.
48 *
49 * - SCM values can hold proper scheme objects only. They can be changed into
50 * a scm_t_bits value using the SCM_UNPACK macro.
51 *
52 * When working in the domain of scm_t_bits values, programmers must keep
53 * track of any scm_t_bits value they create that is not a proper scheme
54 * object. This makes sure that in the domain of SCM values developers can
55 * rely on the fact that they are dealing with proper scheme objects only.
56 * Thus, the distinction between scm_t_bits and SCM values helps to identify
57 * those parts of the code where special care has to be taken not to create
58 * bad SCM values.
59 */
60
61/* For dealing with the bit level representation of scheme objects we define
62 * scm_t_bits:
0f2d19dd 63 */
75917d62 64
114bc68a
LC
65typedef scm_t_intptr scm_t_signed_bits;
66typedef scm_t_uintptr scm_t_bits;
23c96d9b 67
114bc68a
LC
68#define SCM_T_SIGNED_BITS_MAX SCM_T_INTPTR_MAX
69#define SCM_T_SIGNED_BITS_MIN SCM_T_INTPTR_MIN
70#define SCM_T_BITS_MAX SCM_T_UINTPTR_MAX
23c96d9b 71
353d4770 72
75917d62
AW
73/* But as external interface, we define SCM, which may, according to the
74 * desired level of type checking, be defined in several ways:
75 */
76#if (SCM_DEBUG_TYPING_STRICTNESS == 2)
25f4a880
AW
77typedef union SCM { struct { scm_t_bits n; } n; } SCM;
78# define SCM_UNPACK(x) ((x).n.n)
79# define SCM_PACK(x) ((SCM) { { (scm_t_bits) (x) } })
75917d62
AW
80#elif (SCM_DEBUG_TYPING_STRICTNESS == 1)
81/* This is the default, which provides an intermediate level of compile time
82 * type checking while still resulting in very efficient code.
c209c88e 83 */
75917d62
AW
84 typedef struct scm_unused_struct { char scm_unused_field; } *SCM;
85
86/*
87 The 0?: constructions makes sure that the code is never executed,
88 and that there is no performance hit. However, the alternative is
89 compiled, and does generate a warning when used with the wrong
90 pointer type.
91
92 The Tru64 and ia64-hp-hpux11.23 compilers fail on `case (0?0=0:x)'
93 statements, so for them type-checking is disabled. */
94#if defined __DECC || defined __HP_cc
95# define SCM_UNPACK(x) ((scm_t_bits) (x))
96#else
97# define SCM_UNPACK(x) ((scm_t_bits) (0? (*(SCM*)0=(x)): x))
98#endif
99
100/*
101 There is no typechecking on SCM_PACK, since all kinds of types
102 (unsigned long, void*) go in SCM_PACK
702551e6 103 */
75917d62
AW
104# define SCM_PACK(x) ((SCM) (x))
105
c209c88e 106#else
75917d62
AW
107/* This should be used as a fall back solution for machines on which casting
108 * to a pointer may lead to loss of bit information, e. g. in the three least
109 * significant bits.
8d3356e7 110 */
75917d62
AW
111 typedef scm_t_bits SCM;
112# define SCM_UNPACK(x) (x)
113# define SCM_PACK(x) ((SCM) (x))
c209c88e 114#endif
0f2d19dd 115
21041372
AW
116/* Packing SCM objects into and out of pointers.
117 */
118#define SCM_UNPACK_POINTER(x) ((scm_t_bits *) (SCM_UNPACK (x)))
119#define SCM_PACK_POINTER(x) (SCM_PACK ((scm_t_bits) (x)))
120
8d3356e7
DH
121
122/* SCM values can not be compared by using the operator ==. Use the following
123 * macro instead, which is the equivalent of the scheme predicate 'eq?'.
124 */
9c293a3d 125#define scm_is_eq(x, y) (SCM_UNPACK (x) == SCM_UNPACK (y))
8d3356e7 126
0f2d19dd 127\f
2549a709 128
7e3b25bf
DH
129/* Representation of scheme objects:
130 *
c2597415
AW
131 * Guile's type system is designed to work on systems where scm_t_bits
132 * and SCM variables consist of at least 32 bits. The objects that a
133 * SCM variable can represent belong to one of the following two major
134 * categories:
135 *
136 * - Immediates -- meaning that the SCM variable contains an entire
137 * Scheme object. That means, all the object's data (including the
138 * type tagging information that is required to identify the object's
139 * type) must fit into 32 bits.
140 *
141 * - Heap objects -- meaning that the SCM variable holds a pointer into
142 * the heap. On systems where a pointer needs more than 32 bits this
143 * means that scm_t_bits and SCM variables need to be large enough to
144 * hold such pointers. In contrast to immediates, the data associated
145 * with a heap object can consume arbitrary amounts of memory.
146 *
147 * The 'heap' is the memory area that is under control of Guile's
148 * garbage collector. It holds allocated memory of various sizes. The
149 * impact on the runtime type system is that Guile needs to be able to
150 * determine the type of an object given the pointer. Usually the way
151 * that Guile does this is by storing a "type tag" in the first word of
152 * the object.
153 *
154 * Some objects are common enough that they get special treatment.
155 * Since Guile guarantees that the address of a GC-allocated object on
156 * the heap is 8-byte aligned, Guile can play tricks with the lower 3
157 * bits. That is, since heap objects encode a pointer to an
158 * 8-byte-aligned pointer, the three least significant bits of a SCM can
159 * be used to store additional information. The bits are used to store
160 * information about the object's type and thus are called tc3-bits,
161 * where tc stands for type-code.
162 *
163 * For a given SCM value, the distinction whether it holds an immediate
164 * or heap object is based on the tc3-bits (see above) of its scm_t_bits
7e3b25bf 165 * equivalent: If the tc3-bits equal #b000, then the SCM value holds a
c2597415
AW
166 * heap object, and the scm_t_bits variable's value is just the pointer
167 * to the heap cell.
7e3b25bf
DH
168 *
169 * Summarized, the data of a scheme object that is represented by a SCM
c2597415
AW
170 * variable consists of a) the SCM variable itself, b) in case of heap
171 * objects memory that the SCM object points to, c) in case of heap
172 * objects potentially additional data outside of the heap (like for
173 * example malloc'ed data), and d) in case of heap objects potentially
174 * additional data inside of the heap, since data stored in b) and c)
175 * may hold references to other cells.
7e3b25bf
DH
176 *
177 *
178 * Immediates
179 *
180 * Operations on immediate objects can typically be processed faster than on
c2597415 181 * heap objects. The reason is that the object's data can be extracted
7e3b25bf
DH
182 * directly from the SCM variable (or rather a corresponding scm_t_bits
183 * variable), instead of having to perform additional memory accesses to
184 * obtain the object's data from the heap. In order to get the best possible
185 * performance frequently used data types should be realized as immediates.
186 * This is, as has been mentioned above, only possible if the objects can be
187 * represented with 32 bits (including type tagging).
188 *
189 * In Guile, the following data types and special objects are realized as
190 * immediates: booleans, characters, small integers (see below), the empty
191 * list, the end of file object, the 'unspecified' object (which is delivered
192 * as a return value by functions for which the return value is unspecified),
193 * a 'nil' object used in the elisp-compatibility mode and certain other
194 * 'special' objects which are only used internally in Guile.
195 *
196 * Integers in Guile can be arbitrarily large. On the other hand, integers
197 * are one of the most frequently used data types. Especially integers with
198 * less than 32 bits are commonly used. Thus, internally and transparently
199 * for application code guile distinguishes between small and large integers.
200 * Whether an integer is a large or a small integer depends on the number of
201 * bits needed to represent its value. Small integers are those which can be
202 * represented as immediates. Since they don't require more than a fixed
203 * number of bits for their representation, they are also known as 'fixnums'.
204 *
205 * The tc3-combinations #b010 and #b110 are used to represent small integers,
206 * which allows to use the most significant bit of the tc3-bits to be part of
207 * the integer value being represented. This means that all integers with up
208 * to 30 bits (including one bit for the sign) can be represented as
209 * immediates. On systems where SCM and scm_t_bits variables hold more than
210 * 32 bits, the amount of bits usable for small integers will even be larger.
211 * The tc3-code #b100 is shared among booleans, characters and the other
212 * special objects listed above.
213 *
214 *
c2597415
AW
215 * Heap Objects
216 *
217 * All object types not mentioned above in the list of immedate objects
218 * are represented as heap objects. The amount of memory referenced by
219 * a heap object depends on the object's type, namely on the set of
220 * attributes that have to be stored with objects of that type. Every
221 * heap object type is allowed to define its own layout and
222 * interpretation of the data stored in its cell (with some
223 * restrictions, see below).
224 *
225 * One of the design goals of guile's type system is to make it possible
226 * to store a scheme pair with as little memory usage as possible. The
227 * minimum amount of memory that is required to store two scheme objects
228 * (car and cdr of a pair) is the amount of memory required by two
229 * scm_t_bits or SCM variables. Therefore pairs in guile are stored in
230 * two words, and are tagged with a bit pattern in the SCM value, not
231 * with a type tag on the heap.
7e3b25bf
DH
232 *
233 *
234 * Garbage collection
235 *
c2597415
AW
236 * During garbage collection, unreachable objects on the heap will be
237 * freed. To determine the set of reachable objects, by default, the GC
238 * just traces all words in all heap objects. It is possible to
239 * register custom tracing ("marking") procedures.
240 *
241 * If an object is unreachable, by default, the GC just notes this fact
242 * and moves on. Later allocations will clear out the memory associated
243 * with the object, and re-use it. It is possible to register custom
244 * finalizers, however.
245 *
246 *
247 * Run-time type introspection
248 *
249 * Guile's type system is designed to make it possible to determine a
250 * the type of a heap object from the object's first scm_t_bits
251 * variable. (Given a SCM variable X holding a heap object, the macro
252 * SCM_CELL_TYPE(X) will deliver the corresponding object's first
253 * scm_t_bits variable.)
254 *
255 * If the object holds a scheme pair, then we already know that the
256 * first scm_t_bits variable of the cell will hold a scheme object with
257 * one of the following tc3-codes: #b000 (heap object), #b010 (small
258 * integer), #b110 (small integer), #b100 (non-integer immediate). All
259 * these tc3-codes have in common, that their least significant bit is
260 * #b0. This fact is used by the garbage collector to identify cells
261 * that hold pairs. The remaining tc3-codes are assigned as follows:
262 * #b001 (class instance or, more precisely, a struct, of which a class
263 * instance is a special case), #b011 (closure), #b101/#b111 (all
264 * remaining heap object types).
7e3b25bf
DH
265 *
266 *
267 * Summary of type codes of scheme objects (SCM variables)
268 *
269 * Here is a summary of tagging bits as they might occur in a scheme object.
270 * The notation is as follows: tc stands for type code as before, tc<n> with n
271 * being a number indicates a type code formed by the n least significant bits
272 * of the SCM variables corresponding scm_t_bits value.
273 *
274 * Note that (as has been explained above) tc1==1 can only occur in the first
c2597415 275 * scm_t_bits variable of a cell belonging to a heap object that is
7e3b25bf
DH
276 * not a pair. For an explanation of the tc tags with tc1==1, see the next
277 * section with the summary of the type codes on the heap.
278 *
279 * tc1:
280 * 0: For scheme objects, tc1==0 must be fulfilled.
281 * (1: This can never be the case for a scheme object.)
282 *
283 * tc2:
c2597415 284 * 00: Either a heap object or some non-integer immediate
7e3b25bf
DH
285 * (01: This can never be the case for a scheme object.)
286 * 10: Small integer
287 * (11: This can never be the case for a scheme object.)
288 *
289 * tc3:
c2597415 290 * 000: a heap object (pair, closure, class instance etc.)
7e3b25bf
DH
291 * (001: This can never be the case for a scheme object.)
292 * 010: an even small integer (least significant bit is 0).
293 * (011: This can never be the case for a scheme object.)
294 * 100: Non-integer immediate
295 * (101: This can never be the case for a scheme object.)
296 * 110: an odd small integer (least significant bit is 1).
297 * (111: This can never be the case for a scheme object.)
298 *
c2597415
AW
299 * The remaining bits of the heap objects form the pointer to the heap
300 * cell. The remaining bits of the small integers form the integer's
7e3b25bf
DH
301 * value and sign. Thus, the only scheme objects for which a further
302 * subdivision is of interest are the ones with tc3==100.
303 *
5065b40d
DH
304 * tc8 (for objects with tc3==100):
305 * 00000-100: special objects ('flags')
306 * 00001-100: characters
b7742c6b
AW
307 * 00010-100: unused
308 * 00011-100: unused
7e3b25bf
DH
309 *
310 *
311 * Summary of type codes on the heap
312 *
313 * Here is a summary of tagging in scm_t_bits values as they might occur in
314 * the first scm_t_bits variable of a heap cell.
315 *
316 * tc1:
317 * 0: the cell belongs to a pair.
318 * 1: the cell belongs to a non-pair.
319 *
320 * tc2:
321 * 00: the cell belongs to a pair with no short integer in its car.
c2597415 322 * 01: the cell belongs to a non-pair (struct or some other heap object).
7e3b25bf 323 * 10: the cell belongs to a pair with a short integer in its car.
c2597415 324 * 11: the cell belongs to a non-pair (closure or some other heap object).
7e3b25bf
DH
325 *
326 * tc3:
c2597415 327 * 000: the cell belongs to a pair with a heap object in its car.
7e3b25bf
DH
328 * 001: the cell belongs to a struct
329 * 010: the cell belongs to a pair with an even short integer in its car.
330 * 011: the cell belongs to a closure
331 * 100: the cell belongs to a pair with a non-integer immediate in its car.
c2597415 332 * 101: the cell belongs to some other heap object.
7e3b25bf 333 * 110: the cell belongs to a pair with an odd short integer in its car.
c2597415 334 * 111: the cell belongs to some other heap object.
7e3b25bf
DH
335 *
336 * tc7 (for tc3==1x1):
337 * See below for the list of types. Note the special case of scm_tc7_vector
338 * and scm_tc7_wvect: vectors and weak vectors are treated the same in many
339 * cases. Thus, their tc7-codes are chosen to only differ in one bit. This
340 * makes it possible to check an object at the same time for being a vector
341 * or a weak vector by comparing its tc7 code with that bit masked (using
534c55a9
DH
342 * the TYP7S macro). Three more special tc7-codes are of interest:
343 * numbers, ports and smobs in fact each represent collections of types,
344 * which are subdivided using tc16-codes.
7e3b25bf
DH
345 *
346 * tc16 (for tc7==scm_tc7_smob):
347 * The largest part of the space of smob types is not subdivided in a
348 * predefined way, since smobs can be added arbitrarily by user C code.
7e3b25bf 349 */
0f2d19dd 350
7e3b25bf
DH
351\f
352
c2597415 353/* Checking if a SCM variable holds an immediate or a heap object:
7e3b25bf
DH
354 * This check can either be performed by checking for tc3==000 or tc3==00x,
355 * since for a SCM variable it is known that tc1==0. */
f1267706 356#define SCM_IMP(x) (6 & SCM_UNPACK (x))
76189127 357#define SCM_NIMP(x) (!SCM_IMP (x))
8c5bb729 358#define SCM_HEAP_OBJECT_P(x) (SCM_NIMP (x))
0f2d19dd 359
7e3b25bf
DH
360/* Checking if a SCM variable holds an immediate integer: See numbers.h for
361 * the definition of the following macros: SCM_I_FIXNUM_BIT,
e11e83f3 362 * SCM_MOST_POSITIVE_FIXNUM, SCM_I_INUMP, SCM_I_MAKINUM, SCM_I_INUM. */
0f2d19dd 363
7e3b25bf
DH
364/* Checking if a SCM variable holds a pair (for historical reasons, in Guile
365 * also known as a cons-cell): This is done by first checking that the SCM
c2597415 366 * variable holds a heap object, and second, by checking that tc1==0 holds
6fcc7d48
MV
367 * for the SCM_CELL_TYPE of the SCM variable.
368*/
369
370#define SCM_I_CONSP(x) (!SCM_IMP (x) && ((1 & SCM_CELL_TYPE (x)) == 0))
0f2d19dd 371
0f2d19dd
JB
372\f
373
7e3b25bf 374/* Definitions for tc2: */
0f2d19dd 375
6375e040
DH
376#define scm_tc2_int 2
377
7e3b25bf
DH
378
379/* Definitions for tc3: */
380
904a077d
MV
381#define SCM_ITAG3(x) (7 & SCM_UNPACK (x))
382#define SCM_TYP3(x) (7 & SCM_CELL_TYPE (x))
7e3b25bf 383
904a077d
MV
384#define scm_tc3_cons 0
385#define scm_tc3_struct 1
6375e040 386#define scm_tc3_int_1 (scm_tc2_int + 0)
314b8716 387#define scm_tc3_unused 3
c209c88e
GB
388#define scm_tc3_imm24 4
389#define scm_tc3_tc7_1 5
6375e040 390#define scm_tc3_int_2 (scm_tc2_int + 4)
c209c88e 391#define scm_tc3_tc7_2 7
0f2d19dd
JB
392
393
47ed8656
AW
394/* As we have seen, heap objects have a tag in their three lowest bits.
395 If you have a heap object and want the pointer to the start of the
396 object, perhaps for GC purposes, you need to mask off the low bits,
397 which is what SCM_HEAP_OBJECT_BASE does.
398
399 Note that you can avoid this macro if you know the specific type of
400 the object (pair, struct, or other).
401 */
402#define SCM_HEAP_OBJECT_BASE(x) ((scm_t_bits*)((SCM_UNPACK (x)) & ~7))
403
404
7e3b25bf 405/* Definitions for tc7: */
0f2d19dd 406
d1ca2c64 407#define SCM_ITAG7(x) (127 & SCM_UNPACK (x))
445f675c
DH
408#define SCM_TYP7(x) (0x7f & SCM_CELL_TYPE (x))
409#define SCM_TYP7S(x) ((0x7f & ~2) & SCM_CELL_TYPE (x))
dc7da0be
AW
410#define SCM_HAS_HEAP_TYPE(x, type, tag) \
411 (SCM_NIMP (x) && type (x) == (tag))
412#define SCM_HAS_TYP7(x, tag) (SCM_HAS_HEAP_TYPE (x, SCM_TYP7, tag))
413#define SCM_HAS_TYP7S(x, tag) (SCM_HAS_HEAP_TYPE (x, SCM_TYP7S, tag))
0f2d19dd 414
28b06554 415#define scm_tc7_symbol 5
e5aca4b5 416#define scm_tc7_variable 7
0f2d19dd
JB
417
418/* couple */
419#define scm_tc7_vector 13
420#define scm_tc7_wvect 15
421
0f2d19dd 422#define scm_tc7_string 21
534c55a9 423#define scm_tc7_number 23
fddf6000 424#define scm_tc7_stringbuf 39
807e5a66 425#define scm_tc7_bytevector 77
0f2d19dd 426
5b46a8c2 427#define scm_tc7_pointer 31
c99de5aa 428#define scm_tc7_hashtable 29
9ea31741
AW
429#define scm_tc7_fluid 37
430#define scm_tc7_dynamic_state 45
431
6f3b0cc2
AW
432#define scm_tc7_frame 47
433#define scm_tc7_objcode 53
434#define scm_tc7_vm 55
435#define scm_tc7_vm_cont 71
afe5177e 436
adaf86ec 437#define scm_tc7_prompt 61
bb0229b5 438#define scm_tc7_with_fluids 63
8a1f4f98 439#define scm_tc7_unused_19 69
2fb924f6 440#define scm_tc7_program 79
26b26354 441#define scm_tc7_weak_set 85
7005c60f 442#define scm_tc7_weak_table 87
f36878ba 443#define scm_tc7_unused_20 93
df338a22
AW
444#define scm_tc7_unused_11 95
445#define scm_tc7_unused_12 101
31d845b4 446#define scm_tc7_unused_18 103
df338a22
AW
447#define scm_tc7_unused_13 109
448#define scm_tc7_unused_14 111
449#define scm_tc7_unused_15 117
450#define scm_tc7_unused_16 119
0f2d19dd 451
7e3b25bf 452/* There are 256 port subtypes. */
0f2d19dd
JB
453#define scm_tc7_port 125
454
6375e040
DH
455/* There are 256 smob subtypes. [**] If you change scm_tc7_smob, you must
456 * also change the places it is hard coded in this file and possibly others.
457 * Dirk:FIXME:: Any hard coded reference to scm_tc7_smob must be replaced by a
7e3b25bf 458 * symbolic reference. */
0f2d19dd
JB
459#define scm_tc7_smob 127 /* DO NOT CHANGE [**] */
460
0f2d19dd 461
7e3b25bf
DH
462/* Definitions for tc16: */
463#define SCM_TYP16(x) (0xffff & SCM_CELL_TYPE (x))
dc7da0be
AW
464#define SCM_HAS_TYP16(x, tag) (SCM_HAS_HEAP_TYPE (x, SCM_TYP16, tag))
465#define SCM_TYP16_PREDICATE(tag, x) (SCM_HAS_TYP16 (x, tag))
7e3b25bf 466
f03314f9 467
0f2d19dd 468\f
5065b40d 469
8ce94504 470/* {Immediate Values}
0f2d19dd
JB
471 */
472
5065b40d 473enum scm_tc8_tags
0f2d19dd 474{
5065b40d
DH
475 scm_tc8_flag = scm_tc3_imm24 + 0x00, /* special objects ('flags') */
476 scm_tc8_char = scm_tc3_imm24 + 0x08, /* characters */
b7742c6b
AW
477 scm_tc8_unused_0 = scm_tc3_imm24 + 0x10,
478 scm_tc8_unused_1 = scm_tc3_imm24 + 0x18
0f2d19dd
JB
479};
480
f1267706 481#define SCM_ITAG8(X) (SCM_UNPACK (X) & 0xff)
210c0325
AW
482#define SCM_MAKE_ITAG8_BITS(X, TAG) (((X) << 8) + TAG)
483#define SCM_MAKE_ITAG8(X, TAG) (SCM_PACK (SCM_MAKE_ITAG8_BITS (X, TAG)))
f1267706 484#define SCM_ITAG8_DATA(X) (SCM_UNPACK (X) >> 8)
0f2d19dd 485
0f2d19dd 486\f
0f2d19dd 487
5065b40d
DH
488/* Flags (special objects). The indices of the flags must agree with the
489 * declarations in print.c: iflagnames. */
490
491#define SCM_IFLAGP(n) (SCM_ITAG8 (n) == scm_tc8_flag)
210c0325 492#define SCM_MAKIFLAG_BITS(n) (SCM_MAKE_ITAG8_BITS ((n), scm_tc8_flag))
5065b40d 493#define SCM_IFLAGNUM(n) (SCM_ITAG8_DATA (n))
e17d318f 494
45f4cbdf
MW
495/*
496 * IMPORTANT NOTE regarding IFLAG numbering!!!
497 *
498 * Several macros depend upon careful IFLAG numbering of SCM_BOOL_F,
499 * SCM_BOOL_T, SCM_ELISP_NIL, SCM_EOL, and the two SCM_XXX_*_DONT_USE
500 * constants. In particular:
501 *
502 * - SCM_BOOL_F and SCM_BOOL_T must differ in exactly one bit position.
503 * (used to implement scm_is_bool_and_not_nil, aka scm_is_bool)
504 *
505 * - SCM_ELISP_NIL and SCM_BOOL_F must differ in exactly one bit position.
506 * (used to implement scm_is_false_or_nil and
507 * scm_is_true_and_not_nil)
508 *
509 * - SCM_ELISP_NIL and SCM_EOL must differ in exactly one bit position.
510 * (used to implement scm_is_null_or_nil)
511 *
512 * - SCM_ELISP_NIL, SCM_BOOL_F, SCM_EOL, SCM_XXX_ANOTHER_LISP_FALSE_DONT_USE
513 * must all be equal except for two bit positions.
514 * (used to implement scm_is_lisp_false)
515 *
f60c2c4e 516 * - SCM_ELISP_NIL, SCM_BOOL_F, SCM_BOOL_T, SCM_XXX_ANOTHER_BOOLEAN_DONT_USE_0
45f4cbdf
MW
517 * must all be equal except for two bit positions.
518 * (used to implement scm_is_bool_or_nil)
519 *
520 * These properties allow the aforementioned macros to be implemented
521 * by bitwise ANDing with a mask and then comparing with a constant,
522 * using as a common basis the macro SCM_MATCHES_BITS_IN_COMMON,
523 * defined below. The properties are checked at compile-time using
524 * `verify' macros near the top of boolean.c and pairs.c.
525 */
210c0325
AW
526#define SCM_BOOL_F_BITS SCM_MAKIFLAG_BITS (0)
527#define SCM_ELISP_NIL_BITS SCM_MAKIFLAG_BITS (1)
528
529#define SCM_BOOL_F SCM_PACK (SCM_BOOL_F_BITS)
530#define SCM_ELISP_NIL SCM_PACK (SCM_ELISP_NIL_BITS)
45f4cbdf
MW
531
532#ifdef BUILDING_LIBGUILE
210c0325 533#define SCM_XXX_ANOTHER_LISP_FALSE_DONT_USE SCM_MAKIFLAG_BITS (2)
45f4cbdf
MW
534#endif
535
210c0325
AW
536#define SCM_EOL_BITS SCM_MAKIFLAG_BITS (3)
537#define SCM_BOOL_T_BITS SCM_MAKIFLAG_BITS (4)
538
539#define SCM_EOL SCM_PACK (SCM_EOL_BITS)
540#define SCM_BOOL_T SCM_PACK (SCM_BOOL_T_BITS)
45f4cbdf
MW
541
542#ifdef BUILDING_LIBGUILE
210c0325
AW
543#define SCM_XXX_ANOTHER_BOOLEAN_DONT_USE_0 SCM_MAKIFLAG_BITS (5)
544#define SCM_XXX_ANOTHER_BOOLEAN_DONT_USE_1 SCM_MAKIFLAG_BITS (6)
545#define SCM_XXX_ANOTHER_BOOLEAN_DONT_USE_2 SCM_MAKIFLAG_BITS (7)
45f4cbdf
MW
546#endif
547
210c0325
AW
548#define SCM_UNSPECIFIED_BITS SCM_MAKIFLAG_BITS (8)
549#define SCM_UNDEFINED_BITS SCM_MAKIFLAG_BITS (9)
550#define SCM_EOF_VAL_BITS SCM_MAKIFLAG_BITS (10)
551
552#define SCM_UNSPECIFIED SCM_PACK (SCM_UNSPECIFIED_BITS)
553#define SCM_UNDEFINED SCM_PACK (SCM_UNDEFINED_BITS)
554#define SCM_EOF_VAL SCM_PACK (SCM_EOF_VAL_BITS)
e17d318f
DH
555
556/* When a variable is unbound this is marked by the SCM_UNDEFINED
557 * value. The following is an unbound value which can be handled on
558 * the Scheme level, i.e., it can be stored in and retrieved from a
559 * Scheme variable. This value is only intended to mark an unbound
560 * slot in GOOPS. It is needed now, but we should probably rewrite
561 * the code which handles this value in C so that SCM_UNDEFINED can be
562 * used instead. It is not ideal to let this kind of unique and
563 * strange values loose on the Scheme level. */
210c0325
AW
564#define SCM_UNBOUND_BITS SCM_MAKIFLAG_BITS (11)
565#define SCM_UNBOUND SCM_PACK (SCM_UNBOUND_BITS)
e17d318f 566
68fb32d2 567#define SCM_UNBNDP(x) (scm_is_eq ((x), SCM_UNDEFINED))
e17d318f 568
45f4cbdf
MW
569/*
570 * SCM_MATCHES_BITS_IN_COMMON(x,a,b) returns 1 if and only if x
571 * matches both a and b in every bit position where a and b are equal;
572 * otherwise it returns 0. Bit positions where a and b differ are
573 * ignored.
574 *
575 * This is used to efficiently compare against two values which differ
576 * in exactly one bit position, or against four values which differ in
577 * exactly two bit positions. It is the basis for the following
578 * macros:
579 *
580 * scm_is_null_or_nil,
581 * scm_is_false_or_nil,
582 * scm_is_true_and_not_nil,
583 * scm_is_lisp_false,
584 * scm_is_lisp_true,
585 * scm_is_bool_and_not_nil (aka scm_is_bool)
586 * scm_is_bool_or_nil.
587 */
588#define SCM_MATCHES_BITS_IN_COMMON(x,a,b) \
589 ((SCM_UNPACK(x) & ~(SCM_UNPACK(a) ^ SCM_UNPACK(b))) == \
590 (SCM_UNPACK(a) & SCM_UNPACK(b)))
591
592/*
593 * These macros are used for compile-time verification that the
594 * constants have the properties needed for the above macro to work
595 * properly.
596 */
597#ifdef BUILDING_LIBGUILE
598#define SCM_WITH_LEAST_SIGNIFICANT_1_BIT_CLEARED(x) ((x) & ((x)-1))
599#define SCM_HAS_EXACTLY_ONE_BIT_SET(x) \
600 ((x) != 0 && SCM_WITH_LEAST_SIGNIFICANT_1_BIT_CLEARED (x) == 0)
601#define SCM_HAS_EXACTLY_TWO_BITS_SET(x) \
602 (SCM_HAS_EXACTLY_ONE_BIT_SET (SCM_WITH_LEAST_SIGNIFICANT_1_BIT_CLEARED (x)))
603
210c0325
AW
604#define SCM_BITS_DIFFER_IN_EXACTLY_ONE_BIT_POSITION(a,b) \
605 (SCM_HAS_EXACTLY_ONE_BIT_SET ((a) ^ (b)))
606#define SCM_BITS_DIFFER_IN_EXACTLY_TWO_BIT_POSITIONS(a,b,c,d) \
607 (SCM_HAS_EXACTLY_TWO_BITS_SET (((a) ^ (b)) | \
608 ((b) ^ (c)) | \
609 ((c) ^ (d))))
45f4cbdf 610#endif /* BUILDING_LIBGUILE */
5065b40d 611\f
e17d318f 612
904a077d 613/* Dispatching aids:
0f2d19dd 614
904a077d
MV
615 When switching on SCM_TYP7 of a SCM value, use these fake case
616 labels to catch types that use fewer than 7 bits for tagging. */
0f2d19dd 617
8ce94504 618/* For cons pairs with immediate values in the CAR
0f2d19dd
JB
619 */
620
6375e040
DH
621#define scm_tcs_cons_imcar \
622 scm_tc2_int + 0: case scm_tc2_int + 4: case scm_tc3_imm24 + 0:\
623 case scm_tc2_int + 8: case scm_tc2_int + 12: case scm_tc3_imm24 + 8:\
624 case scm_tc2_int + 16: case scm_tc2_int + 20: case scm_tc3_imm24 + 16:\
625 case scm_tc2_int + 24: case scm_tc2_int + 28: case scm_tc3_imm24 + 24:\
626 case scm_tc2_int + 32: case scm_tc2_int + 36: case scm_tc3_imm24 + 32:\
627 case scm_tc2_int + 40: case scm_tc2_int + 44: case scm_tc3_imm24 + 40:\
628 case scm_tc2_int + 48: case scm_tc2_int + 52: case scm_tc3_imm24 + 48:\
629 case scm_tc2_int + 56: case scm_tc2_int + 60: case scm_tc3_imm24 + 56:\
630 case scm_tc2_int + 64: case scm_tc2_int + 68: case scm_tc3_imm24 + 64:\
631 case scm_tc2_int + 72: case scm_tc2_int + 76: case scm_tc3_imm24 + 72:\
632 case scm_tc2_int + 80: case scm_tc2_int + 84: case scm_tc3_imm24 + 80:\
633 case scm_tc2_int + 88: case scm_tc2_int + 92: case scm_tc3_imm24 + 88:\
634 case scm_tc2_int + 96: case scm_tc2_int + 100: case scm_tc3_imm24 + 96:\
635 case scm_tc2_int + 104: case scm_tc2_int + 108: case scm_tc3_imm24 + 104:\
636 case scm_tc2_int + 112: case scm_tc2_int + 116: case scm_tc3_imm24 + 112:\
637 case scm_tc2_int + 120: case scm_tc2_int + 124: case scm_tc3_imm24 + 120
0f2d19dd 638
c2597415 639/* For cons pairs with heap objects in the SCM_CAR
0f2d19dd 640 */
6375e040
DH
641#define scm_tcs_cons_nimcar \
642 scm_tc3_cons + 0:\
643 case scm_tc3_cons + 8:\
644 case scm_tc3_cons + 16:\
645 case scm_tc3_cons + 24:\
646 case scm_tc3_cons + 32:\
647 case scm_tc3_cons + 40:\
648 case scm_tc3_cons + 48:\
649 case scm_tc3_cons + 56:\
650 case scm_tc3_cons + 64:\
651 case scm_tc3_cons + 72:\
652 case scm_tc3_cons + 80:\
653 case scm_tc3_cons + 88:\
654 case scm_tc3_cons + 96:\
655 case scm_tc3_cons + 104:\
656 case scm_tc3_cons + 112:\
657 case scm_tc3_cons + 120
0f2d19dd 658
904a077d 659/* For structs
0f2d19dd 660 */
6375e040
DH
661#define scm_tcs_struct \
662 scm_tc3_struct + 0:\
663 case scm_tc3_struct + 8:\
664 case scm_tc3_struct + 16:\
665 case scm_tc3_struct + 24:\
666 case scm_tc3_struct + 32:\
667 case scm_tc3_struct + 40:\
668 case scm_tc3_struct + 48:\
669 case scm_tc3_struct + 56:\
670 case scm_tc3_struct + 64:\
671 case scm_tc3_struct + 72:\
672 case scm_tc3_struct + 80:\
673 case scm_tc3_struct + 88:\
674 case scm_tc3_struct + 96:\
675 case scm_tc3_struct + 104:\
676 case scm_tc3_struct + 112:\
677 case scm_tc3_struct + 120
0f2d19dd 678
f5f2dcff
DH
679\f
680
22a52da1 681#endif /* SCM_TAGS_H */
89e00824
ML
682
683/*
684 Local Variables:
685 c-file-style: "gnu"
686 End:
687*/