0.9.16.38:
[sbcl.git] / src / compiler / mips / parms.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 \f
12 ;;;; Machine Architecture parameters:
13 (eval-when (:compile-toplevel :load-toplevel :execute)
14
15 ;;; number of bits per word where a word holds one lisp descriptor
16 (def!constant n-word-bits 32)
17
18 ;;; the natural width of a machine word (as seen in e.g. register width,
19 ;;; address space)
20 (def!constant n-machine-word-bits 32)
21
22 ;;; number of bits per byte where a byte is the smallest addressable
23 ;;; object
24 (def!constant n-byte-bits 8)
25
26 (def!constant float-sign-shift 31)
27
28 (def!constant single-float-bias 126)
29 (defconstant-eqx single-float-exponent-byte (byte 8 23) #'equalp)
30 (defconstant-eqx single-float-significand-byte (byte 23 0) #'equalp)
31 (def!constant single-float-normal-exponent-min 1)
32 (def!constant single-float-normal-exponent-max 254)
33 (def!constant single-float-hidden-bit (ash 1 23))
34 (def!constant single-float-trapping-nan-bit (ash 1 22))
35
36 (def!constant double-float-bias 1022)
37 (defconstant-eqx double-float-exponent-byte (byte 11 20) #'equalp)
38 (defconstant-eqx double-float-significand-byte (byte 20 0) #'equalp)
39 (def!constant double-float-normal-exponent-min 1)
40 (def!constant double-float-normal-exponent-max #x7FE)
41 (def!constant double-float-hidden-bit (ash 1 20))
42 (def!constant double-float-trapping-nan-bit (ash 1 19))
43
44 (def!constant single-float-digits
45   (+ (byte-size single-float-significand-byte) 1))
46
47 (def!constant double-float-digits
48   (+ (byte-size double-float-significand-byte) n-word-bits 1))
49
50 (def!constant float-inexact-trap-bit (ash 1 0))
51 (def!constant float-underflow-trap-bit (ash 1 1))
52 (def!constant float-overflow-trap-bit (ash 1 2))
53 (def!constant float-divide-by-zero-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)
62 (defconstant-eqx float-sticky-bits (byte 5 2) #'equalp)
63 (defconstant-eqx float-traps-byte (byte 5 7) #'equalp)
64 (defconstant-eqx float-exceptions-byte (byte 5 12) #'equalp)
65 (defconstant-eqx float-condition-bit (ash 1 23) #'equalp)
66 (def!constant float-fast-bit (ash 1 24))
67
68 ;;;; Description of the target address space.
69
70 #!+irix
71 (progn
72   ;; Where to put the different spaces.
73   ;; Old definitions, might be still relevant for an IRIX port.
74   ;;
75   (def!constant read-only-space-start #x01000000)
76   (def!constant read-only-space-end   #x05000000)
77
78   (def!constant static-space-start    #x06000000)
79   (def!constant static-space-end      #x08000000)
80
81   (def!constant dynamic-0-space-start #x08000000)
82   (def!constant dynamic-0-space-end   #x0c000000)
83   (def!constant dynamic-1-space-start #x0c000000)
84   (def!constant dynamic-1-space-end   #x10000000))
85
86 #!+linux
87 (progn
88   ;; Where to put the address spaces on Linux.
89   ;;
90   ;; C runtime executable segment starts at 0x00400000
91   (def!constant read-only-space-start #x01000000)
92   (def!constant read-only-space-end   #x07ff0000)
93
94   (def!constant static-space-start    #x08000000)
95   (def!constant static-space-end      #x0fff0000)
96   ;; C runtime read/write segment starts at 0x10000000, heap and DSOs
97   ;; start at 0x2a000000
98   (def!constant dynamic-0-space-start #x30000000)
99   (def!constant dynamic-0-space-end   #x4fff0000)
100   (def!constant dynamic-1-space-start #x50000000)
101   (def!constant dynamic-1-space-end   #x6fff0000)
102
103   (def!constant linkage-table-space-start #x70000000)
104   (def!constant linkage-table-space-end   #x71000000)
105   (def!constant linkage-table-entry-size 16)
106
107   ;; C stack grows downward from 0x80000000
108   )
109
110 ); eval-when
111
112 \f
113 ;;;; Other non-type constants.
114
115 (defenum (:suffix -flag)
116   atomic
117   interrupted)
118
119 (defenum (:suffix -trap :start 8)
120   halt
121   pending-interrupt
122   error
123   cerror
124   breakpoint
125   fun-end-breakpoint
126   after-breakpoint
127   unused
128   pseudo-atomic
129   object-not-list
130   object-not-instance
131   ;; Stepper actually not implemented on Mips, but these constants
132   ;; are still needed to avoid undefined variable warnings during sbcl
133   ;; build.
134   single-step-around
135   single-step-before)
136
137 (defenum (:prefix trace-table-)
138   normal
139   call-site
140   fun-prologue
141   fun-epilogue)
142 \f
143 ;;;; Static symbols.
144
145 ;;; Static symbols are loaded into static space directly after NIL so
146 ;;; that the system can compute their address by adding a constant
147 ;;; amount to NIL.
148 ;;;
149 ;;; The fdefn objects for the static functions are loaded into static
150 ;;; space directly after the static symbols.  That way, the raw-addr
151 ;;; can be loaded directly out of them by indirecting relative to NIL.
152 (defparameter *static-symbols*
153   (append
154    *common-static-symbols*
155    *c-callable-static-symbols*
156    '()))
157
158 (defparameter *static-funs*
159   '(sb!kernel:two-arg-+
160     sb!kernel:two-arg--
161     sb!kernel:two-arg-*
162     sb!kernel:two-arg-/
163     sb!kernel:two-arg-<
164     sb!kernel:two-arg->
165     sb!kernel:two-arg-=
166     sb!kernel:two-arg-<=
167     sb!kernel:two-arg->=
168     sb!kernel:two-arg-/=
169     eql
170     sb!kernel:%negate
171     sb!kernel:two-arg-and
172     sb!kernel:two-arg-ior
173     sb!kernel:two-arg-xor
174     length
175     sb!kernel:two-arg-gcd
176     sb!kernel:two-arg-lcm))