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