Thou shalt not MAKE-OTHER-IMMEDIATE-TYPE.
[sbcl.git] / src / compiler / sparc / system.lisp
1 ;;;; Sparc VM definitions of various system hacking operations
2
3 ;;;; This software is part of the SBCL system. See the README file for
4 ;;;; more information.
5 ;;;;
6 ;;;; This software is derived from the CMU CL system, which was
7 ;;;; written at Carnegie Mellon University and released into the
8 ;;;; public domain. The software is in the public domain and is
9 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
10 ;;;; files for more information.
11
12 (in-package "SB!VM")
13 \f
14 ;;;; type frobbing VOPs
15
16 (define-vop (lowtag-of)
17   (:translate lowtag-of)
18   (:policy :fast-safe)
19   (:args (object :scs (any-reg descriptor-reg)))
20   (:results (result :scs (unsigned-reg)))
21   (:result-types positive-fixnum)
22   (:generator 1
23     (inst and result object lowtag-mask)))
24
25 (define-vop (widetag-of)
26   (:translate widetag-of)
27   (:policy :fast-safe)
28   (:args (object :scs (descriptor-reg) :to (:eval 1)))
29   (:results (result :scs (unsigned-reg) :from (:eval 0)))
30   (:result-types positive-fixnum)
31   (:generator 6
32     ;; Grab the lowtag.
33     (inst andcc result object lowtag-mask)
34     ;; Check for various pointer types.
35     (inst cmp result list-pointer-lowtag)
36     (inst b :eq done)
37     (inst cmp result other-pointer-lowtag)
38     (inst b :eq other-pointer)
39     (inst cmp result fun-pointer-lowtag)
40     (inst b :eq function-pointer)
41     (inst cmp result instance-pointer-lowtag)
42     (inst b :eq done)
43     ;; Okay, it is an immediate.  If fixnum, we want zero.  Otherwise,
44     ;; we want the low 8 bits.
45     (inst andcc zero-tn object fixnum-tag-mask)
46     (inst b :eq done)
47     (inst li result 0)
48     ;; It wasn't a fixnum, so get the low 8 bits.
49     (inst b done)
50     (inst and result object widetag-mask)
51
52     FUNCTION-POINTER
53     (inst b done)
54     (load-type result object (- fun-pointer-lowtag))
55
56     OTHER-POINTER
57     (load-type result object (- other-pointer-lowtag))
58
59     DONE))
60
61
62 (define-vop (fun-subtype)
63   (:translate fun-subtype)
64   (:policy :fast-safe)
65   (:args (function :scs (descriptor-reg)))
66   (:results (result :scs (unsigned-reg)))
67   (:result-types positive-fixnum)
68   (:generator 6
69     (load-type result function (- fun-pointer-lowtag))))
70
71 ;;; Is this VOP dead? I can't see anywhere that it is used... -- CSR,
72 ;;; 2002-06-21
73 (define-vop (set-fun-subtype)
74   (:translate (setf fun-subtype))
75   (:policy :fast-safe)
76   (:args (type :scs (unsigned-reg) :target result)
77          (function :scs (descriptor-reg)))
78   (:arg-types positive-fixnum *)
79   (:results (result :scs (unsigned-reg)))
80   (:result-types positive-fixnum)
81   (:generator 6
82     ;; FIXME: I don't understand what this hardcoded 3 is doing
83     ;; here. -- CSR, 2002-02-08
84     (inst stb type function (- 3 fun-pointer-lowtag))
85     (move result type)))
86
87 (define-vop (get-header-data)
88   (:translate get-header-data)
89   (:policy :fast-safe)
90   (:args (x :scs (descriptor-reg)))
91   (:results (res :scs (unsigned-reg)))
92   (:result-types positive-fixnum)
93   (:generator 6
94     (loadw res x 0 other-pointer-lowtag)
95     (inst srl res res n-widetag-bits)))
96
97 (define-vop (get-closure-length)
98   (:translate get-closure-length)
99   (:policy :fast-safe)
100   (:args (x :scs (descriptor-reg)))
101   (:results (res :scs (unsigned-reg)))
102   (:result-types positive-fixnum)
103   (:generator 6
104     (loadw res x 0 fun-pointer-lowtag)
105     (inst srl res res n-widetag-bits)))
106
107 (define-vop (set-header-data)
108   (:translate set-header-data)
109   (:policy :fast-safe)
110   (:args (x :scs (descriptor-reg) :target res)
111          (data :scs (any-reg immediate zero)))
112   (:arg-types * positive-fixnum)
113   (:results (res :scs (descriptor-reg)))
114   (:temporary (:scs (non-descriptor-reg)) t1 t2)
115   (:generator 6
116     (loadw t1 x 0 other-pointer-lowtag)
117     (inst and t1 widetag-mask)
118     (sc-case data
119       (any-reg
120        (inst sll t2 data (- n-widetag-bits n-fixnum-tag-bits))
121        (inst or t1 t2))
122       (immediate
123        (inst or t1 (ash (tn-value data) n-widetag-bits)))
124       (zero))
125     (storew t1 x 0 other-pointer-lowtag)
126     (move res x)))
127
128
129 (define-vop (pointer-hash)
130   (:translate pointer-hash)
131   (:args (ptr :scs (any-reg descriptor-reg)))
132   (:results (res :scs (any-reg descriptor-reg)))
133   (:policy :fast-safe)
134   (:generator 1
135     ;; FIXME: It would be better if this would mask the lowtag,
136     ;; and shift the result into a positive fixnum like on x86.
137     (inst sll res ptr 3)
138     (inst srl res res 1)))
139
140 \f
141 ;;;; allocation
142
143 (define-vop (dynamic-space-free-pointer)
144   (:results (int :scs (sap-reg)))
145   (:result-types system-area-pointer)
146   (:translate dynamic-space-free-pointer)
147   (:policy :fast-safe)
148   (:generator 1
149     (move int alloc-tn)))
150
151 (define-vop (binding-stack-pointer-sap)
152   (:results (int :scs (sap-reg)))
153   (:result-types system-area-pointer)
154   (:translate binding-stack-pointer-sap)
155   (:policy :fast-safe)
156   (:generator 1
157     (move int bsp-tn)))
158
159 (define-vop (control-stack-pointer-sap)
160   (:results (int :scs (sap-reg)))
161   (:result-types system-area-pointer)
162   (:translate control-stack-pointer-sap)
163   (:policy :fast-safe)
164   (:generator 1
165     (move int csp-tn)))
166
167 \f
168 ;;;; code object frobbing.
169
170 (define-vop (code-instructions)
171   (:translate code-instructions)
172   (:policy :fast-safe)
173   (:args (code :scs (descriptor-reg)))
174   (:temporary (:scs (non-descriptor-reg)) ndescr)
175   (:results (sap :scs (sap-reg)))
176   (:result-types system-area-pointer)
177   (:generator 10
178     (loadw ndescr code 0 other-pointer-lowtag)
179     (inst srl ndescr n-widetag-bits)
180     (inst sll ndescr word-shift)
181     (inst sub ndescr other-pointer-lowtag)
182     (inst add sap code ndescr)))
183
184 (define-vop (compute-fun)
185   (:args (code :scs (descriptor-reg))
186          (offset :scs (signed-reg unsigned-reg)))
187   (:arg-types * positive-fixnum)
188   (:results (func :scs (descriptor-reg)))
189   (:temporary (:scs (non-descriptor-reg)) ndescr)
190   (:generator 10
191     (loadw ndescr code 0 other-pointer-lowtag)
192     (inst srl ndescr n-widetag-bits)
193     (inst sll ndescr word-shift)
194     (inst add ndescr offset)
195     (inst add ndescr (- fun-pointer-lowtag other-pointer-lowtag))
196     (inst add func code ndescr)))
197
198
199 \f
200 ;;;; other random VOPs.
201
202
203 (defknown sb!unix::receive-pending-interrupt () (values))
204 (define-vop (sb!unix::receive-pending-interrupt)
205   (:policy :fast-safe)
206   (:translate sb!unix::receive-pending-interrupt)
207   (:generator 1
208     (inst unimp pending-interrupt-trap)))
209
210 #!+sb-thread
211 (error "write a VOP for CURRENT-THREAD-OFFSET-SAP")
212
213 (define-vop (halt)
214   (:generator 1
215     (inst unimp halt-trap)))
216
217
218 \f
219 ;;;; dynamic VOP count collection support
220
221 (define-vop (count-me)
222   (:args (count-vector :scs (descriptor-reg)))
223   (:info index)
224   (:temporary (:scs (non-descriptor-reg)) count)
225   (:generator 1
226     (let ((offset
227            (- (* (+ index vector-data-offset) n-word-bytes)
228               other-pointer-lowtag)))
229       (aver (typep offset '(signed-byte 13)))
230       (inst ld count count-vector offset)
231       (inst add count 1)
232       (inst st count count-vector offset))))
233
234 ;;;; Dummy definition for a spin-loop hint VOP
235 (define-vop (spin-loop-hint)
236   (:translate spin-loop-hint)
237   (:policy :fast-safe)
238   (:generator 0))