0.pre7.86:
[sbcl.git] / src / compiler / ir2tran.lisp
1 ;;;; This file contains the virtual-machine-independent parts of the
2 ;;;; code which does the actual translation of nodes to VOPs.
3
4 ;;;; This software is part of the SBCL system. See the README file for
5 ;;;; more information.
6 ;;;;
7 ;;;; This software is derived from the CMU CL system, which was
8 ;;;; written at Carnegie Mellon University and released into the
9 ;;;; public domain. The software is in the public domain and is
10 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
11 ;;;; files for more information.
12
13 (in-package "SB!C")
14 \f
15 ;;;; moves and type checks
16
17 ;;; Move X to Y unless they are EQ.
18 (defun emit-move (node block x y)
19   (declare (type node node) (type ir2-block block) (type tn x y))
20   (unless (eq x y)
21     (vop move node block x y))
22   (values))
23
24 ;;; If there is any CHECK-xxx template for TYPE, then return it,
25 ;;; otherwise return NIL.
26 (defun type-check-template (type)
27   (declare (type ctype type))
28   (multiple-value-bind (check-ptype exact) (primitive-type type)
29     (if exact
30         (primitive-type-check check-ptype)
31         (let ((name (hairy-type-check-template-name type)))
32           (if name
33               (template-or-lose name)
34               nil)))))
35
36 ;;; Emit code in BLOCK to check that VALUE is of the specified TYPE,
37 ;;; yielding the checked result in RESULT. VALUE and result may be of
38 ;;; any primitive type. There must be CHECK-xxx VOP for TYPE. Any
39 ;;; other type checks should have been converted to an explicit type
40 ;;; test.
41 (defun emit-type-check (node block value result type)
42   (declare (type tn value result) (type node node) (type ir2-block block)
43            (type ctype type))
44   (emit-move-template node block (type-check-template type) value result)
45   (values))
46
47 ;;; Allocate an indirect value cell. Maybe do some clever stack
48 ;;; allocation someday.
49 (defevent make-value-cell "Allocate heap value cell for lexical var.")
50 (defun do-make-value-cell (node block value res)
51   (event make-value-cell node)
52   (vop make-value-cell node block value res))
53 \f
54 ;;;; leaf reference
55
56 ;;; Return the TN that holds the value of THING in the environment ENV.
57 (defun find-in-physenv (thing physenv)
58   (declare (type (or nlx-info lambda-var) thing) (type physenv physenv)
59            (values tn))
60   (or (cdr (assoc thing (ir2-physenv-environment (physenv-info physenv))))
61       (etypecase thing
62         (lambda-var
63          ;; I think that a failure of this assertion means that we're
64          ;; trying to access a variable which was improperly closed
65          ;; over. The PHYSENV describes a physical environment. Every
66          ;; variable that a form refers to should either be in its
67          ;; physical environment directly, or grabbed from a
68          ;; surrounding physical environment when it was closed over.
69          ;; The ASSOC expression above finds closed-over variables, so
70          ;; if we fell through the ASSOC expression, it wasn't closed
71          ;; over. Therefore, it must be in our physical environment
72          ;; directly. If instead it is in some other physical
73          ;; environment, then it's bogus for us to reference it here
74          ;; without it being closed over. -- WHN 2001-09-29
75          (aver (eq physenv (lambda-physenv (lambda-var-home thing))))
76          (leaf-info thing))
77         (nlx-info
78          (aver (eq physenv (block-physenv (nlx-info-target thing))))
79          (ir2-nlx-info-home (nlx-info-info thing))))))
80
81 ;;; If LEAF already has a constant TN, return that, otherwise make a
82 ;;; TN for it.
83 (defun constant-tn (leaf)
84   (declare (type constant leaf))
85   (or (leaf-info leaf)
86       (setf (leaf-info leaf)
87             (make-constant-tn leaf))))
88
89 ;;; Return a TN that represents the value of LEAF, or NIL if LEAF
90 ;;; isn't directly represented by a TN. ENV is the environment that
91 ;;; the reference is done in.
92 (defun leaf-tn (leaf env)
93   (declare (type leaf leaf) (type physenv env))
94   (typecase leaf
95     (lambda-var
96      (unless (lambda-var-indirect leaf)
97        (find-in-physenv leaf env)))
98     (constant (constant-tn leaf))
99     (t nil)))
100
101 ;;; This is used to conveniently get a handle on a constant TN during
102 ;;; IR2 conversion. It returns a constant TN representing the Lisp
103 ;;; object VALUE.
104 (defun emit-constant (value)
105   (constant-tn (find-constant value)))
106
107 ;;; Convert a REF node. The reference must not be delayed.
108 (defun ir2-convert-ref (node block)
109   (declare (type ref node) (type ir2-block block))
110   (let* ((cont (node-cont node))
111          (leaf (ref-leaf node))
112          (name (leaf-name leaf))
113          (locs (continuation-result-tns
114                 cont (list (primitive-type (leaf-type leaf)))))
115          (res (first locs)))
116     (etypecase leaf
117       (lambda-var
118        (let ((tn (find-in-physenv leaf (node-physenv node))))
119          (if (lambda-var-indirect leaf)
120              (vop value-cell-ref node block tn res)
121              (emit-move node block tn res))))
122       (constant
123        (if (legal-immediate-constant-p leaf)
124            (emit-move node block (constant-tn leaf) res)
125            (let ((name-tn (emit-constant name)))
126              (if (policy node (zerop safety))
127                  (vop fast-symbol-value node block name-tn res)
128                  (vop symbol-value node block name-tn res)))))
129       (functional
130        (ir2-convert-closure node block leaf res))
131       (global-var
132        (let ((unsafe (policy node (zerop safety))))
133          (ecase (global-var-kind leaf)
134            ((:special :global)
135             (aver (symbolp name))
136             (let ((name-tn (emit-constant name)))
137               (if unsafe
138                   (vop fast-symbol-value node block name-tn res)
139                   (vop symbol-value node block name-tn res))))
140            (:global-function
141             (let ((fdefn-tn (make-load-time-constant-tn :fdefinition name)))
142               (if unsafe
143                   (vop fdefn-fun node block fdefn-tn res)
144                   (vop safe-fdefn-fun node block fdefn-tn res))))))))
145     (move-continuation-result node block locs cont))
146   (values))
147
148 ;;; Emit code to load a function object representing LEAF into RES.
149 ;;; This gets interesting when the referenced function is a closure:
150 ;;; we must make the closure and move the closed over values into it.
151 ;;;
152 ;;; LEAF is either a :TOPLEVEL-XEP functional or the XEP lambda for
153 ;;; the called function, since local call analysis converts all
154 ;;; closure references. If a TL-XEP, we know it is not a closure.
155 ;;;
156 ;;; If a closed-over LAMBDA-VAR has no refs (is deleted), then we
157 ;;; don't initialize that slot. This can happen with closures over
158 ;;; top level variables, where optimization of the closure deleted the
159 ;;; variable. Since we committed to the closure format when we
160 ;;; pre-analyzed the top level code, we just leave an empty slot.
161 (defun ir2-convert-closure (node block leaf res)
162   (declare (type ref node) (type ir2-block block)
163            (type functional leaf) (type tn res))
164   (unless (leaf-info leaf)
165     (setf (leaf-info leaf) (make-entry-info)))
166   (let ((entry (make-load-time-constant-tn :entry leaf))
167         (closure (etypecase leaf
168                    (clambda
169                     (physenv-closure (get-lambda-physenv leaf)))
170                    (functional
171                     (aver (eq (functional-kind leaf) :toplevel-xep))
172                     nil))))
173     (cond (closure
174            (let ((this-env (node-physenv node)))
175              (vop make-closure node block entry (length closure) res)
176              (loop for what in closure and n from 0 do
177                (unless (and (lambda-var-p what)
178                             (null (leaf-refs what)))
179                  (vop closure-init node block
180                       res
181                       (find-in-physenv what this-env)
182                       n)))))
183           (t
184            (emit-move node block entry res))))
185   (values))
186
187 ;;; Convert a SET node. If the node's CONT is annotated, then we also
188 ;;; deliver the value to that continuation. If the var is a lexical
189 ;;; variable with no refs, then we don't actually set anything, since
190 ;;; the variable has been deleted.
191 (defun ir2-convert-set (node block)
192   (declare (type cset node) (type ir2-block block))
193   (let* ((cont (node-cont node))
194          (leaf (set-var node))
195          (val (continuation-tn node block (set-value node)))
196          (locs (if (continuation-info cont)
197                    (continuation-result-tns
198                     cont (list (primitive-type (leaf-type leaf))))
199                    nil)))
200     (etypecase leaf
201       (lambda-var
202        (when (leaf-refs leaf)
203          (let ((tn (find-in-physenv leaf (node-physenv node))))
204            (if (lambda-var-indirect leaf)
205                (vop value-cell-set node block tn val)
206                (emit-move node block val tn)))))
207       (global-var
208        (ecase (global-var-kind leaf)
209          ((:special :global)
210           (aver (symbolp (leaf-name leaf)))
211           (vop set node block (emit-constant (leaf-name leaf)) val)))))
212     (when locs
213       (emit-move node block val (first locs))
214       (move-continuation-result node block locs cont)))
215   (values))
216 \f
217 ;;;; utilities for receiving fixed values
218
219 ;;; Return a TN that can be referenced to get the value of CONT. CONT
220 ;;; must be LTN-Annotated either as a delayed leaf ref or as a fixed,
221 ;;; single-value continuation. If a type check is called for, do it.
222 ;;;
223 ;;; The primitive-type of the result will always be the same as the
224 ;;; IR2-CONTINUATION-PRIMITIVE-TYPE, ensuring that VOPs are always
225 ;;; called with TNs that satisfy the operand primitive-type
226 ;;; restriction. We may have to make a temporary of the desired type
227 ;;; and move the actual continuation TN into it. This happens when we
228 ;;; delete a type check in unsafe code or when we locally know
229 ;;; something about the type of an argument variable.
230 (defun continuation-tn (node block cont)
231   (declare (type node node) (type ir2-block block) (type continuation cont))
232   (let* ((2cont (continuation-info cont))
233          (cont-tn
234           (ecase (ir2-continuation-kind 2cont)
235             (:delayed
236              (let ((ref (continuation-use cont)))
237                (leaf-tn (ref-leaf ref) (node-physenv ref))))
238             (:fixed
239              (aver (= (length (ir2-continuation-locs 2cont)) 1))
240              (first (ir2-continuation-locs 2cont)))))
241          (ptype (ir2-continuation-primitive-type 2cont)))
242
243     (cond ((and (eq (continuation-type-check cont) t)
244                 (multiple-value-bind (check types)
245                     (continuation-check-types cont)
246                   (aver (eq check :simple))
247                   ;; If the proven type is a subtype of the possibly
248                   ;; weakened type check then it's always true and is
249                   ;; flushed.
250                   (unless (values-subtypep (continuation-proven-type cont)
251                                            (first types))
252                     (let ((temp (make-normal-tn ptype)))
253                       (emit-type-check node block cont-tn temp
254                                        (first types))
255                       temp)))))
256           ((eq (tn-primitive-type cont-tn) ptype) cont-tn)
257           (t
258            (let ((temp (make-normal-tn ptype)))
259              (emit-move node block cont-tn temp)
260              temp)))))
261
262 ;;; This is similar to CONTINUATION-TN, but hacks multiple values. We
263 ;;; return continuations holding the values of CONT with PTYPES as
264 ;;; their primitive types. CONT must be annotated for the same number
265 ;;; of fixed values are there are PTYPES.
266 ;;;
267 ;;; If the continuation has a type check, check the values into temps
268 ;;; and return the temps. When we have more values than assertions, we
269 ;;; move the extra values with no check.
270 (defun continuation-tns (node block cont ptypes)
271   (declare (type node node) (type ir2-block block)
272            (type continuation cont) (list ptypes))
273   (let* ((locs (ir2-continuation-locs (continuation-info cont)))
274          (nlocs (length locs)))
275     (aver (= nlocs (length ptypes)))
276     (if (eq (continuation-type-check cont) t)
277         (multiple-value-bind (check types) (continuation-check-types cont)
278           (aver (eq check :simple))
279           (let ((ntypes (length types)))
280             (mapcar #'(lambda (from to-type assertion)
281                         (let ((temp (make-normal-tn to-type)))
282                           (if assertion
283                               (emit-type-check node block from temp assertion)
284                               (emit-move node block from temp))
285                           temp))
286                     locs ptypes
287                     (if (< ntypes nlocs)
288                         (append types (make-list (- nlocs ntypes)
289                                                  :initial-element nil))
290                         types))))
291         (mapcar #'(lambda (from to-type)
292                     (if (eq (tn-primitive-type from) to-type)
293                         from
294                         (let ((temp (make-normal-tn to-type)))
295                           (emit-move node block from temp)
296                           temp)))
297                 locs
298                 ptypes))))
299 \f
300 ;;;; utilities for delivering values to continuations
301
302 ;;; Return a list of TNs with the specifier TYPES that can be used as
303 ;;; result TNs to evaluate an expression into the continuation CONT.
304 ;;; This is used together with MOVE-CONTINUATION-RESULT to deliver
305 ;;; fixed values to a continuation.
306 ;;;
307 ;;; If the continuation isn't annotated (meaning the values are
308 ;;; discarded) or is unknown-values, the then we make temporaries for
309 ;;; each supplied value, providing a place to compute the result in
310 ;;; until we decide what to do with it (if anything.)
311 ;;;
312 ;;; If the continuation is fixed-values, and wants the same number of
313 ;;; values as the user wants to deliver, then we just return the
314 ;;; IR2-CONTINUATION-LOCS. Otherwise we make a new list padded as
315 ;;; necessary by discarded TNs. We always return a TN of the specified
316 ;;; type, using the continuation locs only when they are of the
317 ;;; correct type.
318 (defun continuation-result-tns (cont types)
319   (declare (type continuation cont) (type list types))
320   (let ((2cont (continuation-info cont)))
321     (if (not 2cont)
322         (mapcar #'make-normal-tn types)
323         (ecase (ir2-continuation-kind 2cont)
324           (:fixed
325            (let* ((locs (ir2-continuation-locs 2cont))
326                   (nlocs (length locs))
327                   (ntypes (length types)))
328              (if (and (= nlocs ntypes)
329                       (do ((loc locs (cdr loc))
330                            (type types (cdr type)))
331                           ((null loc) t)
332                         (unless (eq (tn-primitive-type (car loc)) (car type))
333                           (return nil))))
334                  locs
335                  (mapcar #'(lambda (loc type)
336                              (if (eq (tn-primitive-type loc) type)
337                                  loc
338                                  (make-normal-tn type)))
339                          (if (< nlocs ntypes)
340                              (append locs
341                                      (mapcar #'make-normal-tn
342                                              (subseq types nlocs)))
343                              locs)
344                          types))))
345           (:unknown
346            (mapcar #'make-normal-tn types))))))
347
348 ;;; Make the first N standard value TNs, returning them in a list.
349 (defun make-standard-value-tns (n)
350   (declare (type unsigned-byte n))
351   (collect ((res))
352     (dotimes (i n)
353       (res (standard-argument-location i)))
354     (res)))
355
356 ;;; Return a list of TNs wired to the standard value passing
357 ;;; conventions that can be used to receive values according to the
358 ;;; unknown-values convention. This is used with together
359 ;;; MOVE-CONTINUATION-RESULT for delivering unknown values to a fixed
360 ;;; values continuation.
361 ;;;
362 ;;; If the continuation isn't annotated, then we treat as 0-values,
363 ;;; returning an empty list of temporaries.
364 ;;;
365 ;;; If the continuation is annotated, then it must be :FIXED.
366 (defun standard-result-tns (cont)
367   (declare (type continuation cont))
368   (let ((2cont (continuation-info cont)))
369     (if 2cont
370         (ecase (ir2-continuation-kind 2cont)
371           (:fixed
372            (make-standard-value-tns (length (ir2-continuation-locs 2cont)))))
373         ())))
374
375 ;;; Just move each SRC TN into the corresponding DEST TN, defaulting
376 ;;; any unsupplied source values to NIL. We let EMIT-MOVE worry about
377 ;;; doing the appropriate coercions.
378 (defun move-results-coerced (node block src dest)
379   (declare (type node node) (type ir2-block block) (list src dest))
380   (let ((nsrc (length src))
381         (ndest (length dest)))
382     (mapc #'(lambda (from to)
383               (unless (eq from to)
384                 (emit-move node block from to)))
385           (if (> ndest nsrc)
386               (append src (make-list (- ndest nsrc)
387                                      :initial-element (emit-constant nil)))
388               src)
389           dest))
390   (values))
391
392 ;;; If necessary, emit coercion code needed to deliver the Results to
393 ;;; the specified continuation. NODE and BLOCK provide context for
394 ;;; emitting code. Although usually obtained from STANDARD-RESULT-TNs
395 ;;; or CONTINUATION-RESULT-TNs, RESULTS my be a list of any type or
396 ;;; number of TNs.
397 ;;;
398 ;;; If the continuation is fixed values, then move the results into
399 ;;; the continuation locations. If the continuation is unknown values,
400 ;;; then do the moves into the standard value locations, and use
401 ;;; PUSH-VALUES to put the values on the stack.
402 (defun move-continuation-result (node block results cont)
403   (declare (type node node) (type ir2-block block)
404            (list results) (type continuation cont))
405   (let* ((2cont (continuation-info cont)))
406     (when 2cont
407       (ecase (ir2-continuation-kind 2cont)
408         (:fixed
409          (let ((locs (ir2-continuation-locs 2cont)))
410            (unless (eq locs results)
411              (move-results-coerced node block results locs))))
412         (:unknown
413          (let* ((nvals (length results))
414                 (locs (make-standard-value-tns nvals)))
415            (move-results-coerced node block results locs)
416            (vop* push-values node block
417                  ((reference-tn-list locs nil))
418                  ((reference-tn-list (ir2-continuation-locs 2cont) t))
419                  nvals))))))
420   (values))
421 \f
422 ;;;; template conversion
423
424 ;;; Build a TN-Refs list that represents access to the values of the
425 ;;; specified list of continuations ARGS for TEMPLATE. Any :CONSTANT
426 ;;; arguments are returned in the second value as a list rather than
427 ;;; being accessed as a normal argument. NODE and BLOCK provide the
428 ;;; context for emitting any necessary type-checking code.
429 (defun reference-arguments (node block args template)
430   (declare (type node node) (type ir2-block block) (list args)
431            (type template template))
432   (collect ((info-args))
433     (let ((last nil)
434           (first nil))
435       (do ((args args (cdr args))
436            (types (template-arg-types template) (cdr types)))
437           ((null args))
438         (let ((type (first types))
439               (arg (first args)))
440           (if (and (consp type) (eq (car type) ':constant))
441               (info-args (continuation-value arg))
442               (let ((ref (reference-tn (continuation-tn node block arg) nil)))
443                 (if last
444                     (setf (tn-ref-across last) ref)
445                     (setf first ref))
446                 (setq last ref)))))
447
448       (values (the (or tn-ref null) first) (info-args)))))
449
450 ;;; Convert a conditional template. We try to exploit any
451 ;;; drop-through, but emit an unconditional branch afterward if we
452 ;;; fail. NOT-P is true if the sense of the TEMPLATE's test should be
453 ;;; negated.
454 (defun ir2-convert-conditional (node block template args info-args if not-p)
455   (declare (type node node) (type ir2-block block)
456            (type template template) (type (or tn-ref null) args)
457            (list info-args) (type cif if) (type boolean not-p))
458   (aver (= (template-info-arg-count template) (+ (length info-args) 2)))
459   (let ((consequent (if-consequent if))
460         (alternative (if-alternative if)))
461     (cond ((drop-thru-p if consequent)
462            (emit-template node block template args nil
463                           (list* (block-label alternative) (not not-p)
464                                  info-args)))
465           (t
466            (emit-template node block template args nil
467                           (list* (block-label consequent) not-p info-args))
468            (unless (drop-thru-p if alternative)
469              (vop branch node block (block-label alternative)))))))
470
471 ;;; Convert an IF that isn't the DEST of a conditional template.
472 (defun ir2-convert-if (node block)
473   (declare (type ir2-block block) (type cif node))
474   (let* ((test (if-test node))
475          (test-ref (reference-tn (continuation-tn node block test) nil))
476          (nil-ref (reference-tn (emit-constant nil) nil)))
477     (setf (tn-ref-across test-ref) nil-ref)
478     (ir2-convert-conditional node block (template-or-lose 'if-eq)
479                              test-ref () node t)))
480
481 ;;; Return a list of primitive-types that we can pass to
482 ;;; CONTINUATION-RESULT-TNS describing the result types we want for a
483 ;;; template call. We duplicate here the determination of output type
484 ;;; that was done in initially selecting the template, so we know that
485 ;;; the types we find are allowed by the template output type
486 ;;; restrictions.
487 (defun find-template-result-types (call cont template rtypes)
488   (declare (type combination call) (type continuation cont)
489            (type template template) (list rtypes))
490   (let* ((dtype (node-derived-type call))
491          (type (if (and (or (eq (template-ltn-policy template) :safe)
492                             (policy call (= safety 0)))
493                         (continuation-type-check cont))
494                    (values-type-intersection
495                     dtype
496                     (continuation-asserted-type cont))
497                    dtype))
498          (types (mapcar #'primitive-type
499                         (if (values-type-p type)
500                             (append (values-type-required type)
501                                     (values-type-optional type))
502                             (list type)))))
503     (let ((nvals (length rtypes))
504           (ntypes (length types)))
505       (cond ((< ntypes nvals)
506              (append types
507                      (make-list (- nvals ntypes)
508                                 :initial-element *backend-t-primitive-type*)))
509             ((> ntypes nvals)
510              (subseq types 0 nvals))
511             (t
512              types)))))
513
514 ;;; Return a list of TNs usable in a CALL to TEMPLATE delivering
515 ;;; values to CONT. As an efficiency hack, we pick off the common case
516 ;;; where the continuation is fixed values and has locations that
517 ;;; satisfy the result restrictions. This can fail when there is a
518 ;;; type check or a values count mismatch.
519 (defun make-template-result-tns (call cont template rtypes)
520   (declare (type combination call) (type continuation cont)
521            (type template template) (list rtypes))
522   (let ((2cont (continuation-info cont)))
523     (if (and 2cont (eq (ir2-continuation-kind 2cont) :fixed))
524         (let ((locs (ir2-continuation-locs 2cont)))
525           (if (and (= (length rtypes) (length locs))
526                    (do ((loc locs (cdr loc))
527                         (rtype rtypes (cdr rtype)))
528                        ((null loc) t)
529                      (unless (operand-restriction-ok
530                               (car rtype)
531                               (tn-primitive-type (car loc))
532                               :t-ok nil)
533                        (return nil))))
534               locs
535               (continuation-result-tns
536                cont
537                (find-template-result-types call cont template rtypes))))
538         (continuation-result-tns
539          cont
540          (find-template-result-types call cont template rtypes)))))
541
542 ;;; Get the operands into TNs, make TN-Refs for them, and then call
543 ;;; the template emit function.
544 (defun ir2-convert-template (call block)
545   (declare (type combination call) (type ir2-block block))
546   (let* ((template (combination-info call))
547          (cont (node-cont call))
548          (rtypes (template-result-types template)))
549     (multiple-value-bind (args info-args)
550         (reference-arguments call block (combination-args call) template)
551       (aver (not (template-more-results-type template)))
552       (if (eq rtypes :conditional)
553           (ir2-convert-conditional call block template args info-args
554                                    (continuation-dest cont) nil)
555           (let* ((results (make-template-result-tns call cont template rtypes))
556                  (r-refs (reference-tn-list results t)))
557             (aver (= (length info-args)
558                      (template-info-arg-count template)))
559             (if info-args
560                 (emit-template call block template args r-refs info-args)
561                 (emit-template call block template args r-refs))
562             (move-continuation-result call block results cont)))))
563   (values))
564
565 ;;; We don't have to do much because operand count checking is done by
566 ;;; IR1 conversion. The only difference between this and the function
567 ;;; case of IR2-CONVERT-TEMPLATE is that there can be codegen-info
568 ;;; arguments.
569 (defoptimizer (%%primitive ir2-convert) ((template info &rest args) call block)
570   (let* ((template (continuation-value template))
571          (info (continuation-value info))
572          (cont (node-cont call))
573          (rtypes (template-result-types template))
574          (results (make-template-result-tns call cont template rtypes))
575          (r-refs (reference-tn-list results t)))
576     (multiple-value-bind (args info-args)
577         (reference-arguments call block (cddr (combination-args call))
578                              template)
579       (aver (not (template-more-results-type template)))
580       (aver (not (eq rtypes :conditional)))
581       (aver (null info-args))
582
583       (if info
584           (emit-template call block template args r-refs info)
585           (emit-template call block template args r-refs))
586
587       (move-continuation-result call block results cont)))
588   (values))
589 \f
590 ;;;; local call
591
592 ;;; Convert a LET by moving the argument values into the variables.
593 ;;; Since a LET doesn't have any passing locations, we move the
594 ;;; arguments directly into the variables. We must also allocate any
595 ;;; indirect value cells, since there is no function prologue to do
596 ;;; this.
597 (defun ir2-convert-let (node block fun)
598   (declare (type combination node) (type ir2-block block) (type clambda fun))
599   (mapc #'(lambda (var arg)
600             (when arg
601               (let ((src (continuation-tn node block arg))
602                     (dest (leaf-info var)))
603                 (if (lambda-var-indirect var)
604                     (do-make-value-cell node block src dest)
605                     (emit-move node block src dest)))))
606         (lambda-vars fun) (basic-combination-args node))
607   (values))
608
609 ;;; Emit any necessary moves into assignment temps for a local call to
610 ;;; FUN. We return two lists of TNs: TNs holding the actual argument
611 ;;; values, and (possibly EQ) TNs that are the actual destination of
612 ;;; the arguments. When necessary, we allocate temporaries for
613 ;;; arguments to preserve parallel assignment semantics. These lists
614 ;;; exclude unused arguments and include implicit environment
615 ;;; arguments, i.e. they exactly correspond to the arguments passed.
616 ;;;
617 ;;; OLD-FP is the TN currently holding the value we want to pass as
618 ;;; OLD-FP. If null, then the call is to the same environment (an
619 ;;; :ASSIGNMENT), so we only move the arguments, and leave the
620 ;;; environment alone.
621 (defun emit-psetq-moves (node block fun old-fp)
622   (declare (type combination node) (type ir2-block block) (type clambda fun)
623            (type (or tn null) old-fp))
624   (let* ((called-env (physenv-info (lambda-physenv fun)))
625          (this-1env (node-physenv node))
626          (actuals (mapcar #'(lambda (x)
627                              (when x
628                                (continuation-tn node block x)))
629                          (combination-args node))))
630     (collect ((temps)
631               (locs))
632       (dolist (var (lambda-vars fun))
633         (let ((actual (pop actuals))
634               (loc (leaf-info var)))
635           (when actual
636             (cond
637              ((lambda-var-indirect var)
638               (let ((temp
639                      (make-normal-tn *backend-t-primitive-type*)))
640                 (do-make-value-cell node block actual temp)
641                 (temps temp)))
642              ((member actual (locs))
643               (let ((temp (make-normal-tn (tn-primitive-type loc))))
644                 (emit-move node block actual temp)
645                 (temps temp)))
646              (t
647               (temps actual)))
648             (locs loc))))
649
650       (when old-fp
651         (dolist (thing (ir2-physenv-environment called-env))
652           (temps (find-in-physenv (car thing) this-1env))
653           (locs (cdr thing)))
654         
655         (temps old-fp)
656         (locs (ir2-physenv-old-fp called-env)))
657
658       (values (temps) (locs)))))
659
660 ;;; A tail-recursive local call is done by emitting moves of stuff
661 ;;; into the appropriate passing locations. After setting up the args
662 ;;; and environment, we just move our return-pc into the called
663 ;;; function's passing location.
664 (defun ir2-convert-tail-local-call (node block fun)
665   (declare (type combination node) (type ir2-block block) (type clambda fun))
666   (let ((this-env (physenv-info (node-physenv node))))
667     (multiple-value-bind (temps locs)
668         (emit-psetq-moves node block fun (ir2-physenv-old-fp this-env))
669
670       (mapc #'(lambda (temp loc)
671                 (emit-move node block temp loc))
672             temps locs))
673
674     (emit-move node block
675                (ir2-physenv-return-pc this-env)
676                (ir2-physenv-return-pc-pass
677                 (physenv-info
678                  (lambda-physenv fun)))))
679
680   (values))
681
682 ;;; Convert an :ASSIGNMENT call. This is just like a tail local call,
683 ;;; except that the caller and callee environment are the same, so we
684 ;;; don't need to mess with the environment locations, return PC, etc.
685 (defun ir2-convert-assignment (node block fun)
686   (declare (type combination node) (type ir2-block block) (type clambda fun))
687     (multiple-value-bind (temps locs) (emit-psetq-moves node block fun nil)
688
689       (mapc #'(lambda (temp loc)
690                 (emit-move node block temp loc))
691             temps locs))
692   (values))
693
694 ;;; Do stuff to set up the arguments to a non-tail local call
695 ;;; (including implicit environment args.) We allocate a frame
696 ;;; (returning the FP and NFP), and also compute the TN-REFS list for
697 ;;; the values to pass and the list of passing location TNs.
698 (defun ir2-convert-local-call-args (node block fun)
699   (declare (type combination node) (type ir2-block block) (type clambda fun))
700   (let ((fp (make-stack-pointer-tn))
701         (nfp (make-number-stack-pointer-tn))
702         (old-fp (make-stack-pointer-tn)))
703     (multiple-value-bind (temps locs)
704         (emit-psetq-moves node block fun old-fp)
705       (vop current-fp node block old-fp)
706       (vop allocate-frame node block
707            (physenv-info (lambda-physenv fun))
708            fp nfp)
709       (values fp nfp temps (mapcar #'make-alias-tn locs)))))
710
711 ;;; Handle a non-TR known-values local call. We emit the call, then
712 ;;; move the results to the continuation's destination.
713 (defun ir2-convert-local-known-call (node block fun returns cont start)
714   (declare (type node node) (type ir2-block block) (type clambda fun)
715            (type return-info returns) (type continuation cont)
716            (type label start))
717   (multiple-value-bind (fp nfp temps arg-locs)
718       (ir2-convert-local-call-args node block fun)
719     (let ((locs (return-info-locations returns)))
720       (vop* known-call-local node block
721             (fp nfp (reference-tn-list temps nil))
722             ((reference-tn-list locs t))
723             arg-locs (physenv-info (lambda-physenv fun)) start)
724       (move-continuation-result node block locs cont)))
725   (values))
726
727 ;;; Handle a non-TR unknown-values local call. We do different things
728 ;;; depending on what kind of values the continuation wants.
729 ;;;
730 ;;; If CONT is :UNKNOWN, then we use the "multiple-" variant, directly
731 ;;; specifying the continuation's LOCS as the VOP results so that we
732 ;;; don't have to do anything after the call.
733 ;;;
734 ;;; Otherwise, we use STANDARD-RESULT-TNS to get wired result TNs, and
735 ;;; then call MOVE-CONTINUATION-RESULT to do any necessary type checks
736 ;;; or coercions.
737 (defun ir2-convert-local-unknown-call (node block fun cont start)
738   (declare (type node node) (type ir2-block block) (type clambda fun)
739            (type continuation cont) (type label start))
740   (multiple-value-bind (fp nfp temps arg-locs)
741       (ir2-convert-local-call-args node block fun)
742     (let ((2cont (continuation-info cont))
743           (env (physenv-info (lambda-physenv fun)))
744           (temp-refs (reference-tn-list temps nil)))
745       (if (and 2cont (eq (ir2-continuation-kind 2cont) :unknown))
746           (vop* multiple-call-local node block (fp nfp temp-refs)
747                 ((reference-tn-list (ir2-continuation-locs 2cont) t))
748                 arg-locs env start)
749           (let ((locs (standard-result-tns cont)))
750             (vop* call-local node block
751                   (fp nfp temp-refs)
752                   ((reference-tn-list locs t))
753                   arg-locs env start (length locs))
754             (move-continuation-result node block locs cont)))))
755   (values))
756
757 ;;; Dispatch to the appropriate function, depending on whether we have
758 ;;; a let, tail or normal call. If the function doesn't return, call
759 ;;; it using the unknown-value convention. We could compile it as a
760 ;;; tail call, but that might seem confusing in the debugger.
761 (defun ir2-convert-local-call (node block)
762   (declare (type combination node) (type ir2-block block))
763   (let* ((fun (ref-leaf (continuation-use (basic-combination-fun node))))
764          (kind (functional-kind fun)))
765     (cond ((eq kind :let)
766            (ir2-convert-let node block fun))
767           ((eq kind :assignment)
768            (ir2-convert-assignment node block fun))
769           ((node-tail-p node)
770            (ir2-convert-tail-local-call node block fun))
771           (t
772            (let ((start (block-label (node-block (lambda-bind fun))))
773                  (returns (tail-set-info (lambda-tail-set fun)))
774                  (cont (node-cont node)))
775              (ecase (if returns
776                         (return-info-kind returns)
777                         :unknown)
778                (:unknown
779                 (ir2-convert-local-unknown-call node block fun cont start))
780                (:fixed
781                 (ir2-convert-local-known-call node block fun returns
782                                               cont start)))))))
783   (values))
784 \f
785 ;;;; full call
786
787 ;;; Given a function continuation FUN, return as values a TN holding
788 ;;; the thing that we call and true if the thing is named (false if it
789 ;;; is a function). There are two interesting non-named cases:
790 ;;;   -- Known to be a function, no check needed: return the
791 ;;;      continuation loc.
792 ;;;   -- Not known what it is.
793 (defun function-continuation-tn (node block cont)
794   (declare (type continuation cont))
795   (let ((2cont (continuation-info cont)))
796     (if (eq (ir2-continuation-kind 2cont) :delayed)
797         (let ((name (continuation-fun-name cont t)))
798           (aver name)
799           (values (make-load-time-constant-tn :fdefinition name) t))
800         (let* ((locs (ir2-continuation-locs 2cont))
801                (loc (first locs))
802                (check (continuation-type-check cont))
803                (function-ptype (primitive-type-or-lose 'function)))
804           (aver (and (eq (ir2-continuation-kind 2cont) :fixed)
805                      (= (length locs) 1)))
806           (cond ((eq (tn-primitive-type loc) function-ptype)
807                  (aver (not (eq check t)))
808                  (values loc nil))
809                 (t
810                  (let ((temp (make-normal-tn function-ptype)))
811                    (aver (and (eq (ir2-continuation-primitive-type 2cont)
812                                   function-ptype)
813                               (eq check t)))
814                    (emit-type-check node block loc temp
815                                     (specifier-type 'function))
816                    (values temp nil))))))))
817
818 ;;; Set up the args to Node in the current frame, and return a tn-ref
819 ;;; list for the passing locations.
820 (defun move-tail-full-call-args (node block)
821   (declare (type combination node) (type ir2-block block))
822   (let ((args (basic-combination-args node))
823         (last nil)
824         (first nil))
825     (dotimes (num (length args))
826       (let ((loc (standard-argument-location num)))
827         (emit-move node block (continuation-tn node block (elt args num)) loc)
828         (let ((ref (reference-tn loc nil)))
829           (if last
830               (setf (tn-ref-across last) ref)
831               (setf first ref))
832           (setq last ref))))
833       first))
834
835 ;;; Move the arguments into the passing locations and do a (possibly
836 ;;; named) tail call.
837 (defun ir2-convert-tail-full-call (node block)
838   (declare (type combination node) (type ir2-block block))
839   (let* ((env (physenv-info (node-physenv node)))
840          (args (basic-combination-args node))
841          (nargs (length args))
842          (pass-refs (move-tail-full-call-args node block))
843          (old-fp (ir2-physenv-old-fp env))
844          (return-pc (ir2-physenv-return-pc env)))
845
846     (multiple-value-bind (fun-tn named)
847         (function-continuation-tn node block (basic-combination-fun node))
848       (if named
849           (vop* tail-call-named node block
850                 (fun-tn old-fp return-pc pass-refs)
851                 (nil)
852                 nargs)
853           (vop* tail-call node block
854                 (fun-tn old-fp return-pc pass-refs)
855                 (nil)
856                 nargs))))
857
858   (values))
859
860 ;;; like IR2-CONVERT-LOCAL-CALL-ARGS, only different
861 (defun ir2-convert-full-call-args (node block)
862   (declare (type combination node) (type ir2-block block))
863   (let* ((args (basic-combination-args node))
864          (fp (make-stack-pointer-tn))
865          (nargs (length args)))
866     (vop allocate-full-call-frame node block nargs fp)
867     (collect ((locs))
868       (let ((last nil)
869             (first nil))
870         (dotimes (num nargs)
871           (locs (standard-argument-location num))
872           (let ((ref (reference-tn (continuation-tn node block (elt args num))
873                                    nil)))
874             (if last
875                 (setf (tn-ref-across last) ref)
876                 (setf first ref))
877             (setq last ref)))
878         
879         (values fp first (locs) nargs)))))
880
881 ;;; Do full call when a fixed number of values are desired. We make
882 ;;; STANDARD-RESULT-TNS for our continuation, then deliver the result
883 ;;; using MOVE-CONTINUATION-RESULT. We do named or normal call, as
884 ;;; appropriate.
885 (defun ir2-convert-fixed-full-call (node block)
886   (declare (type combination node) (type ir2-block block))
887   (multiple-value-bind (fp args arg-locs nargs)
888       (ir2-convert-full-call-args node block)
889     (let* ((cont (node-cont node))
890            (locs (standard-result-tns cont))
891            (loc-refs (reference-tn-list locs t))
892            (nvals (length locs)))
893       (multiple-value-bind (fun-tn named)
894           (function-continuation-tn node block (basic-combination-fun node))
895         (if named
896             (vop* call-named node block (fp fun-tn args) (loc-refs)
897                   arg-locs nargs nvals)
898             (vop* call node block (fp fun-tn args) (loc-refs)
899                   arg-locs nargs nvals))
900         (move-continuation-result node block locs cont))))
901   (values))
902
903 ;;; Do full call when unknown values are desired.
904 (defun ir2-convert-multiple-full-call (node block)
905   (declare (type combination node) (type ir2-block block))
906   (multiple-value-bind (fp args arg-locs nargs)
907       (ir2-convert-full-call-args node block)
908     (let* ((cont (node-cont node))
909            (locs (ir2-continuation-locs (continuation-info cont)))
910            (loc-refs (reference-tn-list locs t)))
911       (multiple-value-bind (fun-tn named)
912           (function-continuation-tn node block (basic-combination-fun node))
913         (if named
914             (vop* multiple-call-named node block (fp fun-tn args) (loc-refs)
915                   arg-locs nargs)
916             (vop* multiple-call node block (fp fun-tn args) (loc-refs)
917                   arg-locs nargs)))))
918   (values))
919
920 ;;; stuff to check in CHECK-FULL-CALL
921 ;;;
922 ;;; There are some things which are intended always to be optimized
923 ;;; away by DEFTRANSFORMs and such, and so never compiled into full
924 ;;; calls. This has been a source of bugs so many times that it seems
925 ;;; worth listing some of them here so that we can check the list
926 ;;; whenever we compile a full call.
927 ;;;
928 ;;; FIXME: It might be better to represent this property by setting a
929 ;;; flag in DEFKNOWN, instead of representing it by membership in this
930 ;;; list.
931 (defvar *always-optimized-away*
932   '(;; This should always be DEFTRANSFORMed away, but wasn't in a bug
933     ;; reported to cmucl-imp@cons.org 2000-06-20.
934     %instance-ref
935     ;; These should always turn into VOPs, but wasn't in a bug which
936     ;; appeared when LTN-POLICY stuff was being tweaked in
937     ;; sbcl-0.6.9.16. in sbcl-0.6.0
938     data-vector-set
939     data-vector-ref))
940
941 ;;; more stuff to check in CHECK-FULL-CALL
942 ;;;
943 ;;; These came in handy when troubleshooting cold boot after making
944 ;;; major changes in the package structure: various transforms and
945 ;;; VOPs and stuff got attached to the wrong symbol, so that
946 ;;; references to the right symbol were bogusly translated as full
947 ;;; calls instead of primitives, sending the system off into infinite
948 ;;; space. Having a report on all full calls generated makes it easier
949 ;;; to figure out what form caused the problem this time.
950 #!+sb-show (defvar *show-full-called-fnames-p* nil)
951 #!+sb-show (defvar *full-called-fnames* (make-hash-table :test 'equal))
952
953 ;;; Do some checks on a full call:
954 ;;;   * Is this a full call to something we have reason to know should
955 ;;;     never be full called?
956 ;;;   * Is this a full call to (SETF FOO) which might conflict with
957 ;;;     a DEFSETF or some such thing elsewhere in the program?
958 (defun check-full-call (node)
959   (let* ((cont (basic-combination-fun node))
960          (fname (continuation-fun-name cont t)))
961     (declare (type (or symbol cons) fname))
962
963     #!+sb-show (unless (gethash fname *full-called-fnames*)
964                  (setf (gethash fname *full-called-fnames*) t))
965     #!+sb-show (when *show-full-called-fnames-p*
966                  (/show "converting full call to named function" fname)
967                  (/show (basic-combination-args node))
968                  (/show (policy node speed) (policy node safety))
969                  (/show (policy node compilation-speed))
970                  (let ((arg-types (mapcar (lambda (maybe-continuation)
971                                             (when maybe-continuation
972                                               (type-specifier
973                                                (continuation-type
974                                                 maybe-continuation))))
975                                           (basic-combination-args node))))
976                    (/show arg-types)))
977
978     (when (memq fname *always-optimized-away*)
979       (/show (policy node speed) (policy node safety))
980       (/show (policy node compilation-speed))
981       (error "internal error: full call to ~S" fname))
982
983     (when (consp fname)
984       (destructuring-bind (setf stem) fname
985         (aver (eq setf 'setf))
986         (setf (gethash stem *setf-assumed-fboundp*) t)))))
987
988 ;;; If the call is in a tail recursive position and the return
989 ;;; convention is standard, then do a tail full call. If one or fewer
990 ;;; values are desired, then use a single-value call, otherwise use a
991 ;;; multiple-values call.
992 (defun ir2-convert-full-call (node block)
993   (declare (type combination node) (type ir2-block block))
994   (check-full-call node)
995   (let ((2cont (continuation-info (node-cont node))))
996     (cond ((node-tail-p node)
997            (ir2-convert-tail-full-call node block))
998           ((and 2cont
999                 (eq (ir2-continuation-kind 2cont) :unknown))
1000            (ir2-convert-multiple-full-call node block))
1001           (t
1002            (ir2-convert-fixed-full-call node block))))
1003   (values))
1004 \f
1005 ;;;; entering functions
1006
1007 ;;; Do all the stuff that needs to be done on XEP entry:
1008 ;;; -- Create frame.
1009 ;;; -- Copy any more arg.
1010 ;;; -- Set up the environment, accessing any closure variables.
1011 ;;; -- Move args from the standard passing locations to their internal
1012 ;;;    locations.
1013 (defun init-xep-environment (node block fun)
1014   (declare (type bind node) (type ir2-block block) (type clambda fun))
1015   (let ((start-label (entry-info-offset (leaf-info fun)))
1016         (env (physenv-info (node-physenv node))))
1017     (let ((ef (functional-entry-function fun)))
1018       (cond ((and (optional-dispatch-p ef) (optional-dispatch-more-entry ef))
1019              ;; Special case the xep-allocate-frame + copy-more-arg case.
1020              (vop xep-allocate-frame node block start-label t)
1021              (vop copy-more-arg node block (optional-dispatch-max-args ef)))
1022             (t
1023              ;; No more args, so normal entry.
1024              (vop xep-allocate-frame node block start-label nil)))
1025       (if (ir2-physenv-environment env)
1026           (let ((closure (make-normal-tn *backend-t-primitive-type*)))
1027             (vop setup-closure-environment node block start-label closure)
1028             (when (getf (functional-plist ef) :fin-function)
1029               (vop funcallable-instance-lexenv node block closure closure))
1030             (let ((n -1))
1031               (dolist (loc (ir2-physenv-environment env))
1032                 (vop closure-ref node block closure (incf n) (cdr loc)))))
1033           (vop setup-environment node block start-label)))
1034
1035     (unless (eq (functional-kind fun) :toplevel)
1036       (let ((vars (lambda-vars fun))
1037             (n 0))
1038         (when (leaf-refs (first vars))
1039           (emit-move node block (make-argument-count-location)
1040                      (leaf-info (first vars))))
1041         (dolist (arg (rest vars))
1042           (when (leaf-refs arg)
1043             (let ((pass (standard-argument-location n))
1044                   (home (leaf-info arg)))
1045               (if (lambda-var-indirect arg)
1046                   (do-make-value-cell node block pass home)
1047                   (emit-move node block pass home))))
1048           (incf n))))
1049
1050     (emit-move node block (make-old-fp-passing-location t)
1051                (ir2-physenv-old-fp env)))
1052
1053   (values))
1054
1055 ;;; Emit function prolog code. This is only called on bind nodes for
1056 ;;; functions that allocate environments. All semantics of let calls
1057 ;;; are handled by IR2-CONVERT-LET.
1058 ;;;
1059 ;;; If not an XEP, all we do is move the return PC from its passing
1060 ;;; location, since in a local call, the caller allocates the frame
1061 ;;; and sets up the arguments.
1062 (defun ir2-convert-bind (node block)
1063   (declare (type bind node) (type ir2-block block))
1064   (let* ((fun (bind-lambda node))
1065          (env (physenv-info (lambda-physenv fun))))
1066     (aver (member (functional-kind fun)
1067                   '(nil :external :optional :toplevel :cleanup)))
1068
1069     (when (external-entry-point-p fun)
1070       (init-xep-environment node block fun)
1071       #!+sb-dyncount
1072       (when *collect-dynamic-statistics*
1073         (vop count-me node block *dynamic-counts-tn*
1074              (block-number (ir2-block-block block)))))
1075
1076     (emit-move node
1077                block
1078                (ir2-physenv-return-pc-pass env)
1079                (ir2-physenv-return-pc env))
1080
1081     (let ((lab (gen-label)))
1082       (setf (ir2-physenv-environment-start env) lab)
1083       (vop note-environment-start node block lab)))
1084
1085   (values))
1086 \f
1087 ;;;; function return
1088
1089 ;;; Do stuff to return from a function with the specified values and
1090 ;;; convention. If the return convention is :FIXED and we aren't
1091 ;;; returning from an XEP, then we do a known return (letting
1092 ;;; representation selection insert the correct move-arg VOPs.)
1093 ;;; Otherwise, we use the unknown-values convention. If there is a
1094 ;;; fixed number of return values, then use RETURN, otherwise use
1095 ;;; RETURN-MULTIPLE.
1096 (defun ir2-convert-return (node block)
1097   (declare (type creturn node) (type ir2-block block))
1098   (let* ((cont (return-result node))
1099          (2cont (continuation-info cont))
1100          (cont-kind (ir2-continuation-kind 2cont))
1101          (fun (return-lambda node))
1102          (env (physenv-info (lambda-physenv fun)))
1103          (old-fp (ir2-physenv-old-fp env))
1104          (return-pc (ir2-physenv-return-pc env))
1105          (returns (tail-set-info (lambda-tail-set fun))))
1106     (cond
1107      ((and (eq (return-info-kind returns) :fixed)
1108            (not (external-entry-point-p fun)))
1109       (let ((locs (continuation-tns node block cont
1110                                     (return-info-types returns))))
1111         (vop* known-return node block
1112               (old-fp return-pc (reference-tn-list locs nil))
1113               (nil)
1114               (return-info-locations returns))))
1115      ((eq cont-kind :fixed)
1116       (let* ((types (mapcar #'tn-primitive-type (ir2-continuation-locs 2cont)))
1117              (cont-locs (continuation-tns node block cont types))
1118              (nvals (length cont-locs))
1119              (locs (make-standard-value-tns nvals)))
1120         (mapc #'(lambda (val loc)
1121                   (emit-move node block val loc))
1122               cont-locs
1123               locs)
1124         (if (= nvals 1)
1125             (vop return-single node block old-fp return-pc (car locs))
1126             (vop* return node block
1127                   (old-fp return-pc (reference-tn-list locs nil))
1128                   (nil)
1129                   nvals))))
1130      (t
1131       (aver (eq cont-kind :unknown))
1132       (vop* return-multiple node block
1133             (old-fp return-pc
1134                     (reference-tn-list (ir2-continuation-locs 2cont) nil))
1135             (nil)))))
1136
1137   (values))
1138 \f
1139 ;;;; debugger hooks
1140
1141 ;;; This is used by the debugger to find the top function on the
1142 ;;; stack. It returns the OLD-FP and RETURN-PC for the current
1143 ;;; function as multiple values.
1144 (defoptimizer (sb!kernel:%caller-frame-and-pc ir2-convert) (() node block)
1145   (let ((env (physenv-info (node-physenv node))))
1146     (move-continuation-result node block
1147                               (list (ir2-physenv-old-fp env)
1148                                     (ir2-physenv-return-pc env))
1149                               (node-cont node))))
1150 \f
1151 ;;;; multiple values
1152
1153 ;;; This is almost identical to IR2-Convert-Let. Since LTN annotates
1154 ;;; the continuation for the correct number of values (with the
1155 ;;; continuation user responsible for defaulting), we can just pick
1156 ;;; them up from the continuation.
1157 (defun ir2-convert-mv-bind (node block)
1158   (declare (type mv-combination node) (type ir2-block block))
1159   (let* ((cont (first (basic-combination-args node)))
1160          (fun (ref-leaf (continuation-use (basic-combination-fun node))))
1161          (vars (lambda-vars fun)))
1162     (aver (eq (functional-kind fun) :mv-let))
1163     (mapc #'(lambda (src var)
1164               (when (leaf-refs var)
1165                 (let ((dest (leaf-info var)))
1166                   (if (lambda-var-indirect var)
1167                       (do-make-value-cell node block src dest)
1168                       (emit-move node block src dest)))))
1169           (continuation-tns node block cont
1170                             (mapcar #'(lambda (x)
1171                                         (primitive-type (leaf-type x)))
1172                                     vars))
1173           vars))
1174   (values))
1175
1176 ;;; Emit the appropriate fixed value, unknown value or tail variant of
1177 ;;; CALL-VARIABLE. Note that we only need to pass the values start for
1178 ;;; the first argument: all the other argument continuation TNs are
1179 ;;; ignored. This is because we require all of the values globs to be
1180 ;;; contiguous and on stack top.
1181 (defun ir2-convert-mv-call (node block)
1182   (declare (type mv-combination node) (type ir2-block block))
1183   (aver (basic-combination-args node))
1184   (let* ((start-cont (continuation-info (first (basic-combination-args node))))
1185          (start (first (ir2-continuation-locs start-cont)))
1186          (tails (and (node-tail-p node)
1187                      (lambda-tail-set (node-home-lambda node))))
1188          (cont (node-cont node))
1189          (2cont (continuation-info cont)))
1190     (multiple-value-bind (fun named)
1191         (function-continuation-tn node block (basic-combination-fun node))
1192       (aver (and (not named)
1193                  (eq (ir2-continuation-kind start-cont) :unknown)))
1194       (cond
1195        (tails
1196         (let ((env (physenv-info (node-physenv node))))
1197           (vop tail-call-variable node block start fun
1198                (ir2-physenv-old-fp env)
1199                (ir2-physenv-return-pc env))))
1200        ((and 2cont
1201              (eq (ir2-continuation-kind 2cont) :unknown))
1202         (vop* multiple-call-variable node block (start fun nil)
1203               ((reference-tn-list (ir2-continuation-locs 2cont) t))))
1204        (t
1205         (let ((locs (standard-result-tns cont)))
1206           (vop* call-variable node block (start fun nil)
1207                 ((reference-tn-list locs t)) (length locs))
1208           (move-continuation-result node block locs cont)))))))
1209
1210 ;;; Reset the stack pointer to the start of the specified
1211 ;;; unknown-values continuation (discarding it and all values globs on
1212 ;;; top of it.)
1213 (defoptimizer (%pop-values ir2-convert) ((continuation) node block)
1214   (let ((2cont (continuation-info (continuation-value continuation))))
1215     (aver (eq (ir2-continuation-kind 2cont) :unknown))
1216     (vop reset-stack-pointer node block
1217          (first (ir2-continuation-locs 2cont)))))
1218
1219 ;;; Deliver the values TNs to CONT using MOVE-CONTINUATION-RESULT.
1220 (defoptimizer (values ir2-convert) ((&rest values) node block)
1221   (let ((tns (mapcar #'(lambda (x)
1222                          (continuation-tn node block x))
1223                      values)))
1224     (move-continuation-result node block tns (node-cont node))))
1225
1226 ;;; In the normal case where unknown values are desired, we use the
1227 ;;; VALUES-LIST VOP. In the relatively unimportant case of VALUES-LIST
1228 ;;; for a fixed number of values, we punt by doing a full call to the
1229 ;;; VALUES-LIST function. This gets the full call VOP to deal with
1230 ;;; defaulting any unsupplied values. It seems unworthwhile to
1231 ;;; optimize this case.
1232 (defoptimizer (values-list ir2-convert) ((list) node block)
1233   (let* ((cont (node-cont node))
1234          (2cont (continuation-info cont)))
1235     (when 2cont
1236       (ecase (ir2-continuation-kind 2cont)
1237         (:fixed (ir2-convert-full-call node block))
1238         (:unknown
1239          (let ((locs (ir2-continuation-locs 2cont)))
1240            (vop* values-list node block
1241                  ((continuation-tn node block list) nil)
1242                  ((reference-tn-list locs t)))))))))
1243
1244 (defoptimizer (%more-arg-values ir2-convert) ((context start count) node block)
1245   (let* ((cont (node-cont node))
1246          (2cont (continuation-info cont)))
1247     (when 2cont
1248       (ecase (ir2-continuation-kind 2cont)
1249         (:fixed (ir2-convert-full-call node block))
1250         (:unknown
1251          (let ((locs (ir2-continuation-locs 2cont)))
1252            (vop* %more-arg-values node block
1253                  ((continuation-tn node block context)
1254                   (continuation-tn node block start)
1255                   (continuation-tn node block count)
1256                   nil)
1257                  ((reference-tn-list locs t)))))))))
1258 \f
1259 ;;;; special binding
1260
1261 ;;; This is trivial, given our assumption of a shallow-binding
1262 ;;; implementation.
1263 (defoptimizer (%special-bind ir2-convert) ((var value) node block)
1264   (let ((name (leaf-name (continuation-value var))))
1265     (vop bind node block (continuation-tn node block value)
1266          (emit-constant name))))
1267 (defoptimizer (%special-unbind ir2-convert) ((var) node block)
1268   (vop unbind node block))
1269
1270 ;;; ### It's not clear that this really belongs in this file, or
1271 ;;; should really be done this way, but this is the least violation of
1272 ;;; abstraction in the current setup. We don't want to wire
1273 ;;; shallow-binding assumptions into IR1tran.
1274 (def-ir1-translator progv ((vars vals &body body) start cont)
1275   (ir1-convert
1276    start cont
1277    (once-only ((n-save-bs '(%primitive current-binding-pointer)))
1278      `(unwind-protect
1279           (progn
1280             (mapc #'(lambda (var val)
1281                       (%primitive bind val var))
1282                   ,vars
1283                   ,vals)
1284             ,@body)
1285         (%primitive unbind-to-here ,n-save-bs)))))
1286 \f
1287 ;;;; non-local exit
1288
1289 ;;; Convert a non-local lexical exit. First find the NLX-Info in our
1290 ;;; environment. Note that this is never called on the escape exits
1291 ;;; for CATCH and UNWIND-PROTECT, since the escape functions aren't
1292 ;;; IR2 converted.
1293 (defun ir2-convert-exit (node block)
1294   (declare (type exit node) (type ir2-block block))
1295   (let ((loc (find-in-physenv (find-nlx-info (exit-entry node)
1296                                              (node-cont node))
1297                               (node-physenv node)))
1298         (temp (make-stack-pointer-tn))
1299         (value (exit-value node)))
1300     (vop value-cell-ref node block loc temp)
1301     (if value
1302         (let ((locs (ir2-continuation-locs (continuation-info value))))
1303           (vop unwind node block temp (first locs) (second locs)))
1304         (let ((0-tn (emit-constant 0)))
1305           (vop unwind node block temp 0-tn 0-tn))))
1306
1307   (values))
1308
1309 ;;; %CLEANUP-POINT doesn't do anything except prevent the body from
1310 ;;; being entirely deleted.
1311 (defoptimizer (%cleanup-point ir2-convert) (() node block) node block)
1312
1313 ;;; This function invalidates a lexical exit on exiting from the
1314 ;;; dynamic extent. This is done by storing 0 into the indirect value
1315 ;;; cell that holds the closed unwind block.
1316 (defoptimizer (%lexical-exit-breakup ir2-convert) ((info) node block)
1317   (vop value-cell-set node block
1318        (find-in-physenv (continuation-value info) (node-physenv node))
1319        (emit-constant 0)))
1320
1321 ;;; We have to do a spurious move of no values to the result
1322 ;;; continuation so that lifetime analysis won't get confused.
1323 (defun ir2-convert-throw (node block)
1324   (declare (type mv-combination node) (type ir2-block block))
1325   (let ((args (basic-combination-args node)))
1326     (vop* throw node block
1327           ((continuation-tn node block (first args))
1328            (reference-tn-list
1329             (ir2-continuation-locs (continuation-info (second args)))
1330             nil))
1331           (nil)))
1332
1333   (move-continuation-result node block () (node-cont node))
1334   (values))
1335
1336 ;;; Emit code to set up a non-local exit. INFO is the NLX-Info for the
1337 ;;; exit, and TAG is the continuation for the catch tag (if any.) We
1338 ;;; get at the target PC by passing in the label to the vop. The vop
1339 ;;; is responsible for building a return-PC object.
1340 (defun emit-nlx-start (node block info tag)
1341   (declare (type node node) (type ir2-block block) (type nlx-info info)
1342            (type (or continuation null) tag))
1343   (let* ((2info (nlx-info-info info))
1344          (kind (cleanup-kind (nlx-info-cleanup info)))
1345          (block-tn (physenv-live-tn
1346                     (make-normal-tn (primitive-type-or-lose 'catch-block))
1347                     (node-physenv node)))
1348          (res (make-stack-pointer-tn))
1349          (target-label (ir2-nlx-info-target 2info)))
1350
1351     (vop current-binding-pointer node block
1352          (car (ir2-nlx-info-dynamic-state 2info)))
1353     (vop* save-dynamic-state node block
1354           (nil)
1355           ((reference-tn-list (cdr (ir2-nlx-info-dynamic-state 2info)) t)))
1356     (vop current-stack-pointer node block (ir2-nlx-info-save-sp 2info))
1357
1358     (ecase kind
1359       (:catch
1360        (vop make-catch-block node block block-tn
1361             (continuation-tn node block tag) target-label res))
1362       ((:unwind-protect :block :tagbody)
1363        (vop make-unwind-block node block block-tn target-label res)))
1364
1365     (ecase kind
1366       ((:block :tagbody)
1367        (do-make-value-cell node block res (ir2-nlx-info-home 2info)))
1368       (:unwind-protect
1369        (vop set-unwind-protect node block block-tn))
1370       (:catch)))
1371
1372   (values))
1373
1374 ;;; Scan each of ENTRY's exits, setting up the exit for each lexical exit.
1375 (defun ir2-convert-entry (node block)
1376   (declare (type entry node) (type ir2-block block))
1377   (dolist (exit (entry-exits node))
1378     (let ((info (find-nlx-info node (node-cont exit))))
1379       (when (and info
1380                  (member (cleanup-kind (nlx-info-cleanup info))
1381                          '(:block :tagbody)))
1382         (emit-nlx-start node block info nil))))
1383   (values))
1384
1385 ;;; Set up the unwind block for these guys.
1386 (defoptimizer (%catch ir2-convert) ((info-cont tag) node block)
1387   (emit-nlx-start node block (continuation-value info-cont) tag))
1388 (defoptimizer (%unwind-protect ir2-convert) ((info-cont cleanup) node block)
1389   (emit-nlx-start node block (continuation-value info-cont) nil))
1390
1391 ;;; Emit the entry code for a non-local exit. We receive values and
1392 ;;; restore dynamic state.
1393 ;;;
1394 ;;; In the case of a lexical exit or CATCH, we look at the exit
1395 ;;; continuation's kind to determine which flavor of entry VOP to
1396 ;;; emit. If unknown values, emit the xxx-MULTIPLE variant to the
1397 ;;; continuation locs. If fixed values, make the appropriate number of
1398 ;;; temps in the standard values locations and use the other variant,
1399 ;;; delivering the temps to the continuation using
1400 ;;; MOVE-CONTINUATION-RESULT.
1401 ;;;
1402 ;;; In the UNWIND-PROTECT case, we deliver the first register
1403 ;;; argument, the argument count and the argument pointer to our
1404 ;;; continuation as multiple values. These values are the block exited
1405 ;;; to and the values start and count.
1406 ;;;
1407 ;;; After receiving values, we restore dynamic state. Except in the
1408 ;;; UNWIND-PROTECT case, the values receiving restores the stack
1409 ;;; pointer. In an UNWIND-PROTECT cleanup, we want to leave the stack
1410 ;;; pointer alone, since the thrown values are still out there.
1411 (defoptimizer (%nlx-entry ir2-convert) ((info-cont) node block)
1412   (let* ((info (continuation-value info-cont))
1413          (cont (nlx-info-continuation info))
1414          (2cont (continuation-info cont))
1415          (2info (nlx-info-info info))
1416          (top-loc (ir2-nlx-info-save-sp 2info))
1417          (start-loc (make-nlx-entry-argument-start-location))
1418          (count-loc (make-argument-count-location))
1419          (target (ir2-nlx-info-target 2info)))
1420
1421     (ecase (cleanup-kind (nlx-info-cleanup info))
1422       ((:catch :block :tagbody)
1423        (if (and 2cont (eq (ir2-continuation-kind 2cont) :unknown))
1424            (vop* nlx-entry-multiple node block
1425                  (top-loc start-loc count-loc nil)
1426                  ((reference-tn-list (ir2-continuation-locs 2cont) t))
1427                  target)
1428            (let ((locs (standard-result-tns cont)))
1429              (vop* nlx-entry node block
1430                    (top-loc start-loc count-loc nil)
1431                    ((reference-tn-list locs t))
1432                    target
1433                    (length locs))
1434              (move-continuation-result node block locs cont))))
1435       (:unwind-protect
1436        (let ((block-loc (standard-argument-location 0)))
1437          (vop uwp-entry node block target block-loc start-loc count-loc)
1438          (move-continuation-result
1439           node block
1440           (list block-loc start-loc count-loc)
1441           cont))))
1442
1443     #!+sb-dyncount
1444     (when *collect-dynamic-statistics*
1445       (vop count-me node block *dynamic-counts-tn*
1446            (block-number (ir2-block-block block))))
1447
1448     (vop* restore-dynamic-state node block
1449           ((reference-tn-list (cdr (ir2-nlx-info-dynamic-state 2info)) nil))
1450           (nil))
1451     (vop unbind-to-here node block
1452          (car (ir2-nlx-info-dynamic-state 2info)))))
1453 \f
1454 ;;;; n-argument functions
1455
1456 (macrolet ((def-frob (name)
1457              `(defoptimizer (,name ir2-convert) ((&rest args) node block)
1458                 (let* ((refs (move-tail-full-call-args node block))
1459                        (cont (node-cont node))
1460                        (res (continuation-result-tns
1461                              cont
1462                              (list (primitive-type (specifier-type 'list))))))
1463                   (vop* ,name node block (refs) ((first res) nil)
1464                         (length args))
1465                   (move-continuation-result node block res cont)))))
1466   (def-frob list)
1467   (def-frob list*))
1468 \f
1469 ;;;; structure accessors
1470 ;;;;
1471 ;;;; These guys have to bizarrely determine the slot offset by looking
1472 ;;;; at the called function.
1473
1474 (defoptimizer (%slot-accessor ir2-convert) ((str) node block)
1475   (let* ((cont (node-cont node))
1476          (res (continuation-result-tns cont
1477                                        (list *backend-t-primitive-type*))))
1478     (vop instance-ref node block
1479          (continuation-tn node block str)
1480          (dsd-index
1481           (slot-accessor-slot
1482            (ref-leaf
1483             (continuation-use
1484              (combination-fun node)))))
1485          (first res))
1486     (move-continuation-result node block res cont)))
1487
1488 (defoptimizer (%slot-setter ir2-convert) ((value str) node block)
1489   (let ((val (continuation-tn node block value)))
1490     (vop instance-set node block
1491          (continuation-tn node block str)
1492          val
1493          (dsd-index
1494           (slot-accessor-slot
1495            (ref-leaf
1496             (continuation-use
1497              (combination-fun node))))))
1498
1499     (move-continuation-result node block (list val) (node-cont node))))
1500 \f
1501 ;;; Convert the code in a component into VOPs.
1502 (defun ir2-convert (component)
1503   (declare (type component component))
1504   (let (#!+sb-dyncount
1505         (*dynamic-counts-tn*
1506          (when *collect-dynamic-statistics*
1507            (let* ((blocks
1508                    (block-number (block-next (component-head component))))
1509                   (counts (make-array blocks
1510                                       :element-type '(unsigned-byte 32)
1511                                       :initial-element 0))
1512                   (info (make-dyncount-info
1513                          :for (component-name component)
1514                          :costs (make-array blocks
1515                                             :element-type '(unsigned-byte 32)
1516                                             :initial-element 0)
1517                          :counts counts)))
1518              (setf (ir2-component-dyncount-info (component-info component))
1519                    info)
1520              (emit-constant info)
1521              (emit-constant counts)))))
1522     (let ((num 0))
1523       (declare (type index num))
1524       (do-ir2-blocks (2block component)
1525         (let ((block (ir2-block-block 2block)))
1526           (when (block-start block)
1527             (setf (block-number block) num)
1528             #!+sb-dyncount
1529             (when *collect-dynamic-statistics*
1530               (let ((first-node (continuation-next (block-start block))))
1531                 (unless (or (and (bind-p first-node)
1532                                  (external-entry-point-p
1533                                   (bind-lambda first-node)))
1534                             (eq (continuation-fun-name
1535                                  (node-cont first-node))
1536                                 '%nlx-entry))
1537                   (vop count-me
1538                        first-node
1539                        2block
1540                        #!+sb-dyncount *dynamic-counts-tn* #!-sb-dyncount nil
1541                        num))))
1542             (ir2-convert-block block)
1543             (incf num))))))
1544   (values))
1545
1546 ;;; If necessary, emit a terminal unconditional branch to go to the
1547 ;;; successor block. If the successor is the component tail, then
1548 ;;; there isn't really any successor, but if the end is an unknown,
1549 ;;; non-tail call, then we emit an error trap just in case the
1550 ;;; function really does return.
1551 (defun finish-ir2-block (block)
1552   (declare (type cblock block))
1553   (let* ((2block (block-info block))
1554          (last (block-last block))
1555          (succ (block-succ block)))
1556     (unless (if-p last)
1557       (aver (and succ (null (rest succ))))
1558       (let ((target (first succ)))
1559         (cond ((eq target (component-tail (block-component block)))
1560                (when (and (basic-combination-p last)
1561                           (eq (basic-combination-kind last) :full))
1562                  (let* ((fun (basic-combination-fun last))
1563                         (use (continuation-use fun))
1564                         (name (and (ref-p use) (leaf-name (ref-leaf use)))))
1565                    (unless (or (node-tail-p last)
1566                                (info :function :info name)
1567                                (policy last (zerop safety)))
1568                      (vop nil-function-returned-error last 2block
1569                           (if name
1570                               (emit-constant name)
1571                               (multiple-value-bind (tn named)
1572                                   (function-continuation-tn last 2block fun)
1573                                 (aver (not named))
1574                                 tn)))))))
1575               ((not (eq (ir2-block-next 2block) (block-info target)))
1576                (vop branch last 2block (block-label target)))))))
1577
1578   (values))
1579
1580 ;;; Convert the code in a block into VOPs.
1581 (defun ir2-convert-block (block)
1582   (declare (type cblock block))
1583   (let ((2block (block-info block)))
1584     (do-nodes (node cont block)
1585       (etypecase node
1586         (ref
1587          (let ((2cont (continuation-info cont)))
1588            (when (and 2cont
1589                       (not (eq (ir2-continuation-kind 2cont) :delayed)))
1590              (ir2-convert-ref node 2block))))
1591         (combination
1592          (let ((kind (basic-combination-kind node)))
1593            (case kind
1594              (:local
1595               (ir2-convert-local-call node 2block))
1596              (:full
1597               (ir2-convert-full-call node 2block))
1598              (t
1599               (let ((fun (function-info-ir2-convert kind)))
1600                 (cond (fun
1601                        (funcall fun node 2block))
1602                       ((eq (basic-combination-info node) :full)
1603                        (ir2-convert-full-call node 2block))
1604                       (t
1605                        (ir2-convert-template node 2block))))))))
1606         (cif
1607          (when (continuation-info (if-test node))
1608            (ir2-convert-if node 2block)))
1609         (bind
1610          (let ((fun (bind-lambda node)))
1611            (when (eq (lambda-home fun) fun)
1612              (ir2-convert-bind node 2block))))
1613         (creturn
1614          (ir2-convert-return node 2block))
1615         (cset
1616          (ir2-convert-set node 2block))
1617         (mv-combination
1618          (cond
1619           ((eq (basic-combination-kind node) :local)
1620            (ir2-convert-mv-bind node 2block))
1621           ((eq (continuation-fun-name (basic-combination-fun node))
1622                '%throw)
1623            (ir2-convert-throw node 2block))
1624           (t
1625            (ir2-convert-mv-call node 2block))))
1626         (exit
1627          (when (exit-entry node)
1628            (ir2-convert-exit node 2block)))
1629         (entry
1630          (ir2-convert-entry node 2block)))))
1631
1632   (finish-ir2-block block)
1633
1634   (values))