bcf3483a7b3072f3b3b89dc3dc964b469ca8062c
[sbcl.git] / src / compiler / x86 / alloc.lisp
1 ;;;; allocation VOPs for the x86
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 (:sc unsigned-reg) ptr temp)
23   (:temporary (:sc unsigned-reg :to (:result 0) :target result) res)
24   (:info num)
25   (:results (result :scs (descriptor-reg)))
26   (:variant-vars star)
27   (:policy :safe)
28   (:node-var node)
29   (:generator 0
30     (cond ((zerop num)
31            ;; (move result nil-value)
32            (inst mov result nil-value))
33           ((and star (= num 1))
34            (move result (tn-ref-tn things)))
35           (t
36            (macrolet
37                ((store-car (tn list &optional (slot cons-car-slot))
38                   `(let ((reg
39                           (sc-case ,tn
40                             ((any-reg descriptor-reg) ,tn)
41                             ((control-stack)
42                              (move temp ,tn)
43                              temp))))
44                      (storew reg ,list ,slot list-pointer-lowtag))))
45              (let ((cons-cells (if star (1- num) num)))
46                (pseudo-atomic
47                 (allocation res (* (pad-data-block cons-size) cons-cells) node
48                             (awhen (sb!c::node-lvar node) (sb!c::lvar-dynamic-extent it)))
49                 (inst lea res
50                       (make-ea :byte :base res :disp list-pointer-lowtag))
51                 (move ptr res)
52                 (dotimes (i (1- cons-cells))
53                   (store-car (tn-ref-tn things) ptr)
54                   (setf things (tn-ref-across things))
55                   (inst add ptr (pad-data-block cons-size))
56                   (storew ptr ptr (- cons-cdr-slot cons-size)
57                           list-pointer-lowtag))
58                 (store-car (tn-ref-tn things) ptr)
59                 (cond (star
60                        (setf things (tn-ref-across things))
61                        (store-car (tn-ref-tn things) ptr cons-cdr-slot))
62                       (t
63                        (storew nil-value ptr cons-cdr-slot
64                                list-pointer-lowtag)))
65                 (aver (null (tn-ref-across things)))))
66              (move result res))))))
67
68 (define-vop (list list-or-list*)
69   (:variant nil))
70
71 (define-vop (list* list-or-list*)
72   (:variant t))
73 \f
74 ;;;; special-purpose inline allocators
75
76 (define-vop (allocate-code-object)
77   (:args (boxed-arg :scs (any-reg) :target boxed)
78          (unboxed-arg :scs (any-reg) :target unboxed))
79   (:results (result :scs (descriptor-reg) :from :eval))
80   (:temporary (:sc unsigned-reg :from (:argument 0)) boxed)
81   (:temporary (:sc unsigned-reg :from (:argument 1)) unboxed)
82   (:node-var node)
83   (:generator 100
84     (move boxed boxed-arg)
85     (inst add boxed (fixnumize (1+ code-trace-table-offset-slot)))
86     (inst and boxed (lognot lowtag-mask))
87     (move unboxed unboxed-arg)
88     (inst shr unboxed word-shift)
89     (inst add unboxed lowtag-mask)
90     (inst and unboxed (lognot lowtag-mask))
91     (inst mov result boxed)
92     (inst add result unboxed)
93     (pseudo-atomic
94      (allocation result result node)
95      (inst lea result (make-ea :byte :base result :disp other-pointer-lowtag))
96      (inst shl boxed (- n-widetag-bits word-shift))
97      (inst or boxed code-header-widetag)
98      (storew boxed result 0 other-pointer-lowtag)
99      (storew unboxed result code-code-size-slot other-pointer-lowtag)
100      (storew nil-value result code-entry-points-slot other-pointer-lowtag))
101     (storew nil-value result code-debug-info-slot other-pointer-lowtag)))
102 \f
103 (define-vop (make-fdefn)
104   (:policy :fast-safe)
105   (:translate make-fdefn)
106   (:args (name :scs (descriptor-reg) :to :eval))
107   (:results (result :scs (descriptor-reg) :from :argument))
108   (:node-var node)
109   (:generator 37
110     (with-fixed-allocation (result fdefn-widetag fdefn-size node)
111       (storew name result fdefn-name-slot other-pointer-lowtag)
112       (storew nil-value result fdefn-fun-slot other-pointer-lowtag)
113       (storew (make-fixup (extern-alien-name "undefined_tramp") :foreign)
114               result fdefn-raw-addr-slot other-pointer-lowtag))))
115
116 (define-vop (make-closure)
117   (:args (function :to :save :scs (descriptor-reg)))
118   (:info length stack-allocate-p)
119   (:temporary (:sc any-reg) temp)
120   (:results (result :scs (descriptor-reg)))
121   (:node-var node)
122   (:generator 10
123    (maybe-pseudo-atomic stack-allocate-p
124      (let ((size (+ length closure-info-offset)))
125        (allocation result (pad-data-block size) node
126                    stack-allocate-p)
127        (inst lea result
128              (make-ea :byte :base result :disp fun-pointer-lowtag))
129        (storew (logior (ash (1- size) n-widetag-bits) closure-header-widetag)
130                result 0 fun-pointer-lowtag))
131     (loadw temp function closure-fun-slot fun-pointer-lowtag)
132     (storew temp result closure-fun-slot fun-pointer-lowtag))))
133
134 ;;; The compiler likes to be able to directly make value cells.
135 (define-vop (make-value-cell)
136   (:args (value :scs (descriptor-reg any-reg) :to :result))
137   (:results (result :scs (descriptor-reg) :from :eval))
138   (:node-var node)
139   (:generator 10
140     (with-fixed-allocation
141         (result value-cell-header-widetag value-cell-size node))
142     (storew value result value-cell-value-slot other-pointer-lowtag)))
143 \f
144 ;;;; automatic allocators for primitive objects
145
146 (define-vop (make-unbound-marker)
147   (:args)
148   (:results (result :scs (any-reg)))
149   (:generator 1
150     (inst mov result unbound-marker-widetag)))
151
152 (define-vop (fixed-alloc)
153   (:args)
154   (:info name words type lowtag)
155   (:ignore name)
156   (:results (result :scs (descriptor-reg)))
157   (:node-var node)
158   (:generator 50
159     (pseudo-atomic
160      (allocation result (pad-data-block words) node)
161      (inst lea result (make-ea :byte :base result :disp lowtag))
162      (when type
163        (storew (logior (ash (1- words) n-widetag-bits) type)
164                result
165                0
166                lowtag)))))
167
168 (define-vop (var-alloc)
169   (:args (extra :scs (any-reg)))
170   (:arg-types positive-fixnum)
171   (:info name words type lowtag)
172   (:ignore name)
173   (:results (result :scs (descriptor-reg) :from (:eval 1)))
174   (:temporary (:sc any-reg :from :eval :to (:eval 1)) bytes)
175   (:temporary (:sc any-reg :from :eval :to :result) header)
176   (:node-var node)
177   (:generator 50
178     (inst lea bytes
179           (make-ea :dword :base extra :disp (* (1+ words) n-word-bytes)))
180     (inst mov header bytes)
181     (inst shl header (- n-widetag-bits 2)) ; w+1 to length field
182     (inst lea header                    ; (w-1 << 8) | type
183           (make-ea :dword :base header :disp (+ (ash -2 n-widetag-bits) type)))
184     (inst and bytes (lognot lowtag-mask))
185     (pseudo-atomic
186      (allocation result bytes node)
187      (inst lea result (make-ea :byte :base result :disp lowtag))
188      (storew header result 0 lowtag))))
189
190