606b0872105d0dbe548df265932c88c2de183b65
[sbcl.git] / src / compiler / generic / early-vm.lisp
1 ;;;; This software is part of the SBCL system. See the README file for
2 ;;;; more information.
3 ;;;;
4 ;;;; This software is derived from the CMU CL system, which was
5 ;;;; written at Carnegie Mellon University and released into the
6 ;;;; public domain. The software is in the public domain and is
7 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
8 ;;;; files for more information.
9
10 (in-package "SB!VM")
11
12 ;;; the number of bits at the low end of a pointer used for type
13 ;;; information
14 (defconstant n-lowtag-bits 3)
15 ;;; a mask to extract the low tag bits from a pointer
16 (defconstant lowtag-mask (1- (ash 1 n-lowtag-bits)))
17 ;;; the exclusive upper bound on the value of the low tag bits from a
18 ;;; pointer
19 (defconstant lowtag-limit (ash 1 n-lowtag-bits))
20
21 ;;; the number of bits used in the header word of a data block to store
22 ;;; the type
23 (defconstant n-widetag-bits 8)
24 ;;; a mask to extract the type from a data block header word
25 (defconstant widetag-mask (1- (ash 1 n-widetag-bits)))
26
27 (defconstant sb!xc:most-positive-fixnum (1- (ash 1 29))
28   #!+sb-doc
29   "the fixnum closest in value to positive infinity")
30 (defconstant sb!xc:most-negative-fixnum (ash -1 29)
31   #!+sb-doc
32   "the fixnum closest in value to negative infinity")