tags.h 26 KB

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