0.8.2.8:
[sbcl.git] / src / compiler / ppc / parms.lisp
1 ;;;; This file contains some parameterizations of various VM
2 ;;;; attributes for the PPC.  This file is separate from other stuff so 
3 ;;;; that it can be compiled and loaded earlier. 
4
5
6 (in-package "SB!VM")
7
8 (def!constant n-word-bits 32
9   "Number of bits per word where a word holds one lisp descriptor.")
10
11 ;;; the natural width of a machine word (as seen in e.g. register width,
12 ;;; address space)
13 (def!constant n-machine-word-bits 32)
14
15 (def!constant n-byte-bits 8
16   "Number of bits per byte where a byte is the smallest addressable object.")
17
18 (def!constant word-shift (1- (integer-length (/ n-word-bits n-byte-bits)))
19   "Number of bits to shift between word addresses and byte addresses.")
20
21 (def!constant n-word-bytes (/ n-word-bits n-byte-bits)
22   "Number of bytes in a word.")
23
24
25 (def!constant float-sign-shift 31)
26
27 (def!constant single-float-bias 126)
28 (defconstant-eqx single-float-exponent-byte (byte 8 23) #'equalp)
29 (defconstant-eqx single-float-significand-byte (byte 23 0) #'equalp)
30 (def!constant single-float-normal-exponent-min 1)
31 (def!constant single-float-normal-exponent-max 254)
32 (def!constant single-float-hidden-bit (ash 1 23))
33 (def!constant single-float-trapping-nan-bit (ash 1 22))
34
35 (def!constant double-float-bias 1022)
36 (defconstant-eqx double-float-exponent-byte (byte 11 20) #'equalp)
37 (defconstant-eqx double-float-significand-byte (byte 20 0) #'equalp)
38 (def!constant double-float-normal-exponent-min 1)
39 (def!constant double-float-normal-exponent-max #x7FE)
40 (def!constant double-float-hidden-bit (ash 1 20))
41 (def!constant double-float-trapping-nan-bit (ash 1 19))
42
43 (def!constant single-float-digits
44   (+ (byte-size single-float-significand-byte) 1))
45
46 (def!constant double-float-digits
47   (+ (byte-size double-float-significand-byte) n-word-bits 1))
48
49
50 (def!constant float-inexact-trap-bit (ash 1 0))
51 (def!constant float-divide-by-zero-trap-bit (ash 1 1))
52 (def!constant float-underflow-trap-bit (ash 1 2))
53 (def!constant float-overflow-trap-bit (ash 1 3))
54 (def!constant float-invalid-trap-bit (ash 1 4))
55
56 (def!constant float-round-to-nearest 0)
57 (def!constant float-round-to-zero 1)
58 (def!constant float-round-to-positive 2)
59 (def!constant float-round-to-negative 3)
60
61 (defconstant-eqx float-rounding-mode (byte 2 0) #'equalp)         ; RD
62 ;;; FIXME I: Beware, all ye who trespass here. Despite its name,
63 ;;; FLOAT-STICKY-BITS is not the byte specifier for sticky bits in the
64 ;;; floating point control word. It is more like "accrued exceptions"
65 ;;; where FLOAT-EXCEPTIONS-BYTE is "current exceptions". Consequently,
66 ;;; on architectures where there is no "current exceptions"
67 ;;; FLOAT-EXCEPTIONS-BYTE and FLOAT-STICKY-BITS had better be the
68 ;;; same. 
69 ;;;
70 ;;; FIXME II: So, I've now documented this in comments in the PowerPC
71 ;;; tree. This may not make it easy to find for when new architectures
72 ;;; get backends written...
73 ;;;
74 ;;; CSR, 2002-06-11
75 (defconstant-eqx float-sticky-bits (byte 5 25) #'equalp)
76 (defconstant-eqx float-traps-byte (byte 5 3) #'equalp)
77 (defconstant-eqx float-exceptions-byte (byte 5 25) #'equalp)      ; cexc
78
79 (def!constant float-fast-bit 2)         ; Non-IEEE mode
80
81
82 ;;; NUMBER-STACK-DISPLACEMENT
83 ;;;
84 ;;; The number of bytes reserved above the number stack pointer.  These
85 ;;; slots are required by architecture, mostly (?) to make C backtrace
86 ;;; work. This must be a power of 2 - see BYTES-REQUIRED-FOR-NUMBER-STACK.
87 ;;; 
88 (def!constant number-stack-displacement
89   (* #!-darwin 2
90      #!+darwin 8
91      sb!vm:n-word-bytes))
92
93 \f
94
95
96 ;;; Where to put the different spaces.
97 ;;; 
98
99 (def!constant read-only-space-start #x01000000)
100 (def!constant read-only-space-end   #x04ff8000)
101
102 (def!constant static-space-start    #x08000000)
103 (def!constant static-space-end      #x097fff00)
104
105 ;;; FIXME: this is a gross violation of OAOO, done purely to support
106 ;;; the #define of DYNAMIC_SPACE_SIZE in validate.c -- CSR, 2002-02-25
107 ;;; (these numbers should match dynamic-0-*)
108 (def!constant dynamic-space-start   #x40000000)
109 (def!constant dynamic-space-end     #x47fff000)
110
111 ;;; nothing _seems_ to be using these addresses 
112 (def!constant dynamic-0-space-start #x40000000)
113 (def!constant dynamic-0-space-end   #x47fff000)
114 (def!constant dynamic-1-space-start #x48000000)
115 (def!constant dynamic-1-space-end   #x4ffff000)
116
117
118
119 \f
120 ;;;; Other random constants.
121
122 (defenum (:suffix -trap :start 8)
123   halt
124   pending-interrupt
125   error
126   cerror
127   breakpoint
128   fun-end-breakpoint
129   after-breakpoint
130   fixnum-additive-overflow)
131
132 (defenum (:prefix object-not- :suffix -trap :start 16)
133   list
134   instance)
135
136 (defenum (:prefix trace-table-)
137   normal
138   call-site
139   fun-prologue
140   fun-epilogue)
141
142 \f
143 ;;;; Static symbols.
144
145
146 ;;; These symbols are loaded into static space directly after NIL so
147 ;;; that the system can compute their address by adding a constant
148 ;;; amount to NIL.
149 ;;;
150 ;;; The fdefn objects for the static functions are loaded into static
151 ;;; space directly after the static symbols.  That way, the raw-addr
152 ;;; can be loaded directly out of them by indirecting relative to NIL.
153 ;;;
154 (defparameter *static-symbols*
155   '(t
156
157     ;; The C startup code must fill these in.
158     *posix-argv*
159
160     ;; functions that the C code needs to call
161     sb!impl::sub-gc
162     sb!kernel::internal-error
163     sb!kernel::control-stack-exhausted-error
164     sb!di::handle-breakpoint
165     sb!impl::fdefinition-object
166
167     ;; free pointers
168     *read-only-space-free-pointer*
169     *static-space-free-pointer*
170     *initial-dynamic-space-free-pointer*
171
172     ;; things needed for non-local exit
173     *current-catch-block*
174     *current-unwind-protect-block*
175
176     *binding-stack-start*
177     *control-stack-start*
178     *control-stack-end*
179
180     ;; interrupt handling
181     *free-interrupt-context-index*
182     sb!unix::*interrupts-enabled*
183     sb!unix::*interrupt-pending*
184
185
186     ))
187
188 (defparameter *static-funs*
189   '(length
190     sb!kernel:two-arg-+
191     sb!kernel:two-arg--
192     sb!kernel:two-arg-*
193     sb!kernel:two-arg-/
194     sb!kernel:two-arg-<
195     sb!kernel:two-arg->
196     sb!kernel:two-arg-=
197     sb!kernel:two-arg-<=
198     sb!kernel:two-arg->=   
199     sb!kernel:two-arg-/=
200     eql
201     sb!kernel:%negate
202     sb!kernel:two-arg-and
203     sb!kernel:two-arg-ior
204     sb!kernel:two-arg-xor
205     sb!kernel:two-arg-gcd
206     sb!kernel:two-arg-lcm))
207
208 \f
209 ;;;; Assembler parameters:
210
211 ;;; The number of bits per element in the assemblers code vector.
212 ;;;
213 (defparameter *assembly-unit-length* 8)