0.9.3.32:
[sbcl.git] / src / compiler / sparc / alloc.lisp
1 ;;;; allocation VOPs for the Sparc port
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 ;;;; LIST and LIST*
15 (defoptimizer (list stack-allocate-result) ((&rest args))
16   (not (null args)))
17 (defoptimizer (list* stack-allocate-result) ((&rest args))
18   (not (null (rest args))))
19
20 (define-vop (list-or-list*)
21   (:args (things :more t))
22   (:temporary (:scs (descriptor-reg) :type list) ptr)
23   (:temporary (:scs (descriptor-reg)) temp)
24   (:temporary (:scs (descriptor-reg) :type list :to (:result 0) :target result)
25               res)
26   (:info num)
27   (:results (result :scs (descriptor-reg)))
28   (:variant-vars star)
29   (:policy :safe)
30   (:node-var node)
31   (:generator 0
32     (cond ((zerop num)
33            (move result null-tn))
34           ((and star (= num 1))
35            (move result (tn-ref-tn things)))
36           (t
37            (macrolet
38                ((maybe-load (tn)
39                   (once-only ((tn tn))
40                     `(sc-case ,tn
41                        ((any-reg descriptor-reg zero null)
42                         ,tn)
43                        (control-stack
44                         (load-stack-tn temp ,tn)
45                         temp)))))
46              (let* ((dx-p (node-stack-allocate-p node))
47                     (cons-cells (if star (1- num) num))
48                     (alloc (* (pad-data-block cons-size) cons-cells)))
49                (pseudo-atomic (:extra (if dx-p 0 alloc))
50                  (let ((allocation-area-tn (if dx-p csp-tn alloc-tn)))
51                    (when dx-p
52                      (align-csp res))
53                    (inst andn res allocation-area-tn lowtag-mask)
54                    (inst or res list-pointer-lowtag)
55                    (when dx-p
56                      (inst add csp-tn csp-tn alloc)))
57                  (move ptr res)
58                  (dotimes (i (1- cons-cells))
59                    (storew (maybe-load (tn-ref-tn things)) ptr
60                            cons-car-slot list-pointer-lowtag)
61                    (setf things (tn-ref-across things))
62                    (inst add ptr ptr (pad-data-block cons-size))
63                    (storew ptr ptr
64                            (- cons-cdr-slot cons-size)
65                            list-pointer-lowtag))
66                  (storew (maybe-load (tn-ref-tn things)) ptr
67                          cons-car-slot list-pointer-lowtag)
68                  (storew (if star
69                              (maybe-load (tn-ref-tn (tn-ref-across things)))
70                              null-tn)
71                          ptr cons-cdr-slot list-pointer-lowtag))
72                (move result res)))))))
73
74 (define-vop (list list-or-list*)
75   (:variant nil))
76
77 (define-vop (list* list-or-list*)
78   (:variant t))
79
80 \f
81 ;;;; Special purpose inline allocators.
82
83 (define-vop (allocate-code-object)
84   (:args (boxed-arg :scs (any-reg))
85          (unboxed-arg :scs (any-reg)))
86   (:results (result :scs (descriptor-reg)))
87   (:temporary (:scs (non-descriptor-reg)) ndescr)
88   (:temporary (:scs (any-reg) :from (:argument 0)) boxed)
89   (:temporary (:scs (non-descriptor-reg) :from (:argument 1)) unboxed)
90   (:generator 100
91     (inst add boxed boxed-arg (fixnumize (1+ code-trace-table-offset-slot)))
92     (inst and boxed (lognot lowtag-mask))
93     (inst srl unboxed unboxed-arg word-shift)
94     (inst add unboxed lowtag-mask)
95     (inst and unboxed (lognot lowtag-mask))
96     (pseudo-atomic ()
97       ;; CMUCL Comment:
98       ;; Note: we don't have to subtract off the 4 that was added by
99       ;; pseudo-atomic, because oring in other-pointer-lowtag just adds
100       ;; it right back.
101       ;;
102       ;; This looks like another dreadful type pun. CSR - 2002-02-06
103       (inst or result alloc-tn other-pointer-lowtag)
104       (inst add alloc-tn boxed)
105       (inst add alloc-tn unboxed)
106       (inst sll ndescr boxed (- n-widetag-bits word-shift))
107       (inst or ndescr code-header-widetag)
108       (storew ndescr result 0 other-pointer-lowtag)
109       (storew unboxed result code-code-size-slot other-pointer-lowtag)
110       (storew null-tn result code-entry-points-slot other-pointer-lowtag)
111       (storew null-tn result code-debug-info-slot other-pointer-lowtag))))
112
113 (define-vop (make-fdefn)
114   (:args (name :scs (descriptor-reg) :to :eval))
115   (:temporary (:scs (non-descriptor-reg)) temp)
116   (:results (result :scs (descriptor-reg) :from :argument))
117   (:policy :fast-safe)
118   (:translate make-fdefn)
119   (:generator 37
120     (with-fixed-allocation (result temp fdefn-widetag fdefn-size)
121       (inst li temp (make-fixup "undefined_tramp" :foreign))
122       (storew name result fdefn-name-slot other-pointer-lowtag)
123       (storew null-tn result fdefn-fun-slot other-pointer-lowtag)
124       (storew temp result fdefn-raw-addr-slot other-pointer-lowtag))))
125
126
127 (define-vop (make-closure)
128   (:args (function :to :save :scs (descriptor-reg)))
129   (:info length stack-allocate-p)
130   (:temporary (:scs (non-descriptor-reg)) temp)
131   (:results (result :scs (descriptor-reg)))
132   (:generator 10
133     (let* ((size (+ length closure-info-offset))
134            (alloc-size (pad-data-block size)))
135       (pseudo-atomic (:extra (if stack-allocate-p 0 alloc-size))
136         (cond (stack-allocate-p
137                (align-csp temp)
138                (inst andn result csp-tn lowtag-mask)
139                (inst or result fun-pointer-lowtag)
140                (inst add csp-tn alloc-size))
141               (t
142                (inst andn result alloc-tn lowtag-mask)
143                (inst or result fun-pointer-lowtag)))
144         (inst li temp (logior (ash (1- size) n-widetag-bits) closure-header-widetag))
145         (storew temp result 0 fun-pointer-lowtag))
146       (storew result result closure-self-slot fun-pointer-lowtag)
147       (storew function result closure-fun-slot fun-pointer-lowtag))))
148
149 ;;; The compiler likes to be able to directly make value cells.
150 (define-vop (make-value-cell)
151   (:args (value :to :save :scs (descriptor-reg any-reg)))
152   (:temporary (:scs (non-descriptor-reg)) temp)
153   (:results (result :scs (descriptor-reg)))
154   (:generator 10
155     (with-fixed-allocation
156         (result temp value-cell-header-widetag value-cell-size)
157       (storew value result value-cell-value-slot other-pointer-lowtag))))
158 \f
159 ;;;; Automatic allocators for primitive objects.
160
161 (define-vop (make-unbound-marker)
162   (:args)
163   (:results (result :scs (any-reg)))
164   (:generator 1
165     (inst li result unbound-marker-widetag)))
166
167 (define-vop (fixed-alloc)
168   (:args)
169   (:info name words type lowtag)
170   (:ignore name)
171   (:results (result :scs (descriptor-reg)))
172   (:temporary (:scs (non-descriptor-reg)) temp)
173   (:generator 4
174     (pseudo-atomic (:extra (pad-data-block words))
175       (cond ((logbitp (1- n-lowtag-bits) lowtag)
176              (inst or result alloc-tn lowtag))
177             (t
178              (inst andn result alloc-tn lowtag-mask)
179              (inst or result lowtag)))
180       (when type
181         (inst li temp (logior (ash (1- words) n-widetag-bits) type))
182         (storew temp result 0 lowtag)))))
183
184 (define-vop (var-alloc)
185   (:args (extra :scs (any-reg)))
186   (:arg-types positive-fixnum)
187   (:info name words type lowtag)
188   (:ignore name)
189   (:results (result :scs (descriptor-reg)))
190   (:temporary (:scs (any-reg)) bytes)
191   (:temporary (:scs (non-descriptor-reg)) header)
192   (:generator 6
193     (inst add bytes extra (* (1+ words) n-word-bytes))
194     (inst sll header bytes (- n-widetag-bits 2))
195     (inst add header header (+ (ash -2 n-widetag-bits) type))
196     (inst and bytes (lognot lowtag-mask))
197     (pseudo-atomic ()
198       ;; Need to be careful if the lowtag and the pseudo-atomic flag
199       ;; are not compatible.
200       (cond ((logbitp (1- n-lowtag-bits) lowtag)
201              (inst or result alloc-tn lowtag))
202             (t
203              (inst andn result alloc-tn lowtag-mask)
204              (inst or result lowtag)))
205       (storew header result 0 lowtag)
206       (inst add alloc-tn alloc-tn bytes))))