1 ;;;; This file implements the constraint propagation phase of the
2 ;;;; compiler, which uses global flow analysis to obtain dynamic type
5 ;;;; This software is part of the SBCL system. See the README file for
8 ;;;; This software is derived from the CMU CL system, which was
9 ;;;; written at Carnegie Mellon University and released into the
10 ;;;; public domain. The software is in the public domain and is
11 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
12 ;;;; files for more information.
18 ;;; -- MV-BIND, :ASSIGNMENT
20 ;;; Note: The functions in this file that accept constraint sets are
21 ;;; actually receiving the constraint sets associated with nodes,
22 ;;; blocks, and lambda-vars. It might be make CP easier to understand
23 ;;; and work on if these functions traded in nodes, blocks, and
24 ;;; lambda-vars directly.
28 ;;; -- Constraint propagation badly interacts with bottom-up type
29 ;;; inference. Consider
31 ;;; (defun foo (n &aux (i 42))
32 ;;; (declare (optimize speed))
33 ;;; (declare (fixnum n)
34 ;;; #+nil (type (integer 0) i))
38 ;;; (when (>= i n) (go :exit))
43 ;;; In this case CP cannot even infer that I is of class INTEGER.
45 ;;; -- In the above example if we place the check after SETQ, CP will
46 ;;; fail to infer (< I FIXNUM): it does not understand that this
47 ;;; constraint follows from (TYPEP I (INTEGER 0 0)).
51 ;;; *CONSTRAINT-UNIVERSE* gets bound in IR1-PHASES to a fresh,
52 ;;; zero-length, non-zero-total-size vector-with-fill-pointer.
53 (declaim (type (and vector (not simple-vector)) *constraint-universe*))
54 (defvar *constraint-universe*)
56 (deftype constraint-y () '(or ctype lvar lambda-var constant))
58 (defstruct (constraint
59 (:include sset-element)
60 (:constructor make-constraint (number kind x y not-p))
62 ;; the kind of constraint we have:
65 ;; X is a LAMBDA-VAR and Y is a CTYPE. The value of X is
66 ;; constrained to be of type Y.
69 ;; X is a lambda-var and Y is a CTYPE. The relation holds
70 ;; between X and some object of type Y.
73 ;; X is a LAMBDA-VAR and Y is a LVAR, a LAMBDA-VAR or a CONSTANT.
74 ;; The relation is asserted to hold.
75 (kind nil :type (member typep < > eql))
76 ;; The operands to the relation.
77 (x nil :type lambda-var)
78 (y nil :type constraint-y)
79 ;; If true, negates the sense of the constraint, so the relation
81 (not-p nil :type boolean))
83 ;;; Historically, CMUCL and SBCL have used a sparse set implementation
84 ;;; for which most operations are O(n) (see sset.lisp), but at the
85 ;;; cost of at least a full word of pointer for each constraint set
86 ;;; element. Using bit-vectors instead of pointer structures saves a
87 ;;; lot of space and thus GC time (particularly on 64-bit machines),
88 ;;; and saves time on copy, union, intersection, and difference
89 ;;; operations; but makes iteration slower. Circa September 2008,
90 ;;; switching to bit-vectors gave a modest (5-10%) improvement in real
91 ;;; compile time for most Lisp systems, and as much as 20-30% for some
92 ;;; particularly CP-dependent systems.
94 ;;; It's bad to leave commented code in files, but if some clever
95 ;;; person comes along and makes SSETs better than bit-vectors as sets
96 ;;; for constraint propagation, or if bit-vectors on some XC host
97 ;;; really lose compared to SSETs, here's the conset API as a wrapper
101 (deftype conset () 'sset)
102 (declaim (ftype (sfunction (conset) boolean) conset-empty))
103 (declaim (ftype (sfunction (conset) conset) copy-conset))
104 (declaim (ftype (sfunction (constraint conset) boolean) conset-member))
105 (declaim (ftype (sfunction (constraint conset) boolean) conset-adjoin))
106 (declaim (ftype (sfunction (conset conset) boolean) conset=))
107 (declaim (ftype (sfunction (conset conset) (values)) conset-union))
108 (declaim (ftype (sfunction (conset conset) (values)) conset-intersection))
109 (declaim (ftype (sfunction (conset conset) (values)) conset-difference))
110 (defun make-conset () (make-sset))
111 (defmacro do-conset-elements ((constraint conset &optional result) &body body)
112 `(do-sset-elements (,constraint ,conset ,result) ,@body))
113 (defmacro do-conset-intersection
114 ((constraint conset1 conset2 &optional result) &body body)
115 `(do-conset-elements (,constraint ,conset1 ,result)
116 (when (conset-member ,constraint ,conset2)
118 (defun conset-empty (conset) (sset-empty conset))
119 (defun copy-conset (conset) (copy-sset conset))
120 (defun conset-member (constraint conset) (sset-member constraint conset))
121 (defun conset-adjoin (constraint conset) (sset-adjoin constraint conset))
122 (defun conset= (conset1 conset2) (sset= conset1 conset2))
123 ;; Note: CP doesn't ever care whether union, intersection, and
124 ;; difference change the first set. (This is an important degree of
125 ;; freedom, since some ways of implementing sets lose a great deal
126 ;; when these operations are required to track changes.)
127 (defun conset-union (conset1 conset2)
128 (sset-union conset1 conset2) (values))
129 (defun conset-intersection (conset1 conset2)
130 (sset-intersection conset1 conset2) (values))
131 (defun conset-difference (conset1 conset2)
132 (sset-difference conset1 conset2) (values)))
135 ;; This is performance critical for the compiler, and benefits
136 ;; from the following declarations. Probably you'll want to
137 ;; disable these declarations when debugging consets.
138 (declare #-sb-xc-host (optimize (speed 3) (safety 0) (space 0)))
139 (declaim (inline %constraint-number))
140 (defun %constraint-number (constraint)
141 (sset-element-number constraint))
143 (:constructor make-conset ())
144 (:copier %copy-conset))
146 ;; FIXME: make POWER-OF-TWO-CEILING available earlier?
147 (ash 1 (integer-length (1- (length *constraint-universe*))))
148 :element-type 'bit :initial-element 0)
149 :type simple-bit-vector)
150 ;; Bit-vectors win over lightweight hashes for copy, union,
151 ;; intersection, difference, but lose for iteration if you iterate
152 ;; over the whole vector. Tracking extrema helps a bit.
154 (max 0 :type fixnum))
156 (defun conset-empty (conset)
157 (or (= (conset-min conset) (conset-max conset))
158 ;; TODO: I bet FIND on bit-vectors can be optimized, if it
160 (not (find 1 (conset-vector conset)
161 :start (conset-min conset)
162 ;; By inspection, supplying :END here breaks the
163 ;; build with a "full call to
164 ;; DATA-VECTOR-REF-WITH-OFFSET" in the
165 ;; cross-compiler. If that should change, add
166 ;; :end (conset-max conset)
169 (defun copy-conset (conset)
170 (let ((ret (%copy-conset conset)))
171 (setf (conset-vector ret) (copy-seq (conset-vector conset)))
174 (defun %conset-grow (conset new-size)
175 (declare (type index new-size))
176 (setf (conset-vector conset)
177 (replace (the simple-bit-vector
179 (ash 1 (integer-length (1- new-size)))
182 (the simple-bit-vector
183 (conset-vector conset)))))
185 (declaim (inline conset-grow))
186 (defun conset-grow (conset new-size)
187 (declare (type index new-size))
188 (when (< (length (conset-vector conset)) new-size)
189 (%conset-grow conset new-size))
192 (defun conset-member (constraint conset)
193 (let ((number (%constraint-number constraint))
194 (vector (conset-vector conset)))
195 (when (< number (length vector))
196 (plusp (sbit vector number)))))
198 (defun conset-adjoin (constraint conset)
199 (let ((number (%constraint-number constraint)))
200 (conset-grow conset (1+ number))
201 (setf (sbit (conset-vector conset) number) 1)
202 (setf (conset-min conset) (min number (conset-min conset)))
203 (when (>= number (conset-max conset))
204 (setf (conset-max conset) (1+ number))))
207 (defun conset= (conset1 conset2)
208 (let* ((vector1 (conset-vector conset1))
209 (vector2 (conset-vector conset2))
210 (length1 (length vector1))
211 (length2 (length vector2)))
212 (if (= length1 length2)
213 ;; When the lengths are the same, we can rely on EQUAL being
214 ;; nicely optimized on bit-vectors.
215 (equal vector1 vector2)
216 (multiple-value-bind (shorter longer)
217 (if (< length1 length2)
218 (values vector1 vector2)
219 (values vector2 vector1))
220 ;; FIXME: make MISMATCH fast on bit-vectors.
221 (dotimes (index (length shorter))
222 (when (/= (sbit vector1 index) (sbit vector2 index))
223 (return-from conset= nil)))
224 (if (find 1 longer :start (length shorter))
229 ((defconsetop (name bit-op)
230 `(defun ,name (conset-1 conset-2)
231 (declare (optimize (speed 3) (safety 0)))
232 (let* ((size-1 (length (conset-vector conset-1)))
233 (size-2 (length (conset-vector conset-2)))
234 (new-size (max size-1 size-2)))
235 (conset-grow conset-1 new-size)
236 (conset-grow conset-2 new-size))
237 (let ((vector1 (conset-vector conset-1))
238 (vector2 (conset-vector conset-2)))
239 (declare (simple-bit-vector vector1 vector2))
240 (setf (conset-vector conset-1) (,bit-op vector1 vector2 t))
241 ;; Update the extrema.
244 `(setf (conset-min conset-1)
245 (min (conset-min conset-1)
246 (conset-min conset-2))
247 (conset-max conset-1)
248 (max (conset-max conset-1)
249 (conset-max conset-2))))
250 ((conset-intersection)
251 `(let ((start (max (conset-min conset-1)
252 (conset-min conset-2)))
253 (end (min (conset-max conset-1)
254 (conset-max conset-2))))
255 (setf (conset-min conset-1)
258 (or (position 1 (conset-vector conset-1)
259 :start start :end end)
261 (conset-max conset-1)
266 1 (conset-vector conset-1)
267 :start start :end end :from-end t)))
272 `(setf (conset-min conset-1)
273 (or (position 1 (conset-vector conset-1)
274 :start (conset-min conset-1)
275 :end (conset-max conset-1))
277 (conset-max conset-1)
280 1 (conset-vector conset-1)
281 :start (conset-min conset-1)
282 :end (conset-max conset-1)
288 (defconsetop conset-union bit-ior)
289 (defconsetop conset-intersection bit-and)
290 (defconsetop conset-difference bit-andc2)))
292 ;;; Constraints are hash-consed. Unfortunately, types aren't, so we have
293 ;;; to over-approximate and then linear search through the potential hits.
294 ;;; LVARs can only be found in EQL (not-p = NIL) constraints, while constant
295 ;;; and lambda-vars can only be found in EQL constraints.
296 (defun find-constraint (kind x y not-p)
297 (declare (type lambda-var x) (type constraint-y y) (type boolean not-p))
300 (awhen (lambda-var-ctype-constraints x)
301 (dolist (con (gethash (sb!kernel::type-class-info y) it) nil)
302 (when (and (eq (constraint-kind con) kind)
303 (eq (constraint-not-p con) not-p)
304 (type= (constraint-y con) y))
305 (return-from find-constraint con)))
308 (awhen (lambda-var-eq-constraints x)
310 ((or constant lambda-var)
311 (awhen (lambda-var-eq-constraints x)
312 (let ((cache (gethash y it)))
313 (declare (type list cache))
314 (if not-p (cdr cache) (car cache)))))))
316 ;;; The most common operations on consets are iterating through the constraints
317 ;;; that are related to a certain variable in a given conset. Storing the
318 ;;; constraints related to each variable in vectors allows us to easily iterate
319 ;;; through the intersection of such constraints and the constraints in a conset.
321 ;;; EQL-var constraints assert that two lambda-vars are EQL.
322 ;;; Private constraints assert that a lambda-var is EQL or not EQL to a constant.
323 ;;; Inheritable constraints are constraints that may be propagated to EQL
324 ;;; lambda-vars (along with EQL-var constraints).
326 ;;; Lambda-var -- lvar EQL constraints only serve one purpose: remember whether
327 ;;; an lvar is (only) written to by a ref to that lambda-var, and aren't ever
330 ;;; Finally, the lambda-var conset is only used to track the whole set of
331 ;;; constraints associated with a given lambda-var, and thus easily delete
332 ;;; such constraints from a conset.
333 (defun register-constraint (x con y)
334 (declare (type lambda-var x) (type constraint con) (type constraint-y y))
335 (conset-adjoin con (lambda-var-constraints x))
336 (macrolet ((ensuref (place default)
337 `(or ,place (setf ,place ,default)))
339 `(ensuref ,place (make-hash-table)))
341 `(ensuref ,place (make-array 8 :adjustable t :fill-pointer 0))))
344 (let ((index (ensure-hash (lambda-var-ctype-constraints x)))
345 (vec (ensure-vec (lambda-var-inheritable-constraints x))))
346 (push con (gethash (sb!kernel::type-class-info y) index))
347 (vector-push-extend con vec)))
349 (let ((index (ensure-hash (lambda-var-eq-constraints x))))
350 (setf (gethash y index) con)))
351 ((or constant lambda-var)
352 (let* ((index (ensure-hash (lambda-var-eq-constraints x)))
353 (cons (ensuref (gethash y index) (list nil))))
354 (if (constraint-not-p con)
355 (setf (cdr cons) con)
356 (setf (car cons) con)))
359 (let ((vec (ensure-vec (lambda-var-private-constraints x))))
360 (vector-push-extend con vec)))
362 (let ((vec (if (constraint-not-p con)
363 (ensure-vec (lambda-var-inheritable-constraints x))
364 (ensure-vec (lambda-var-eql-var-constraints x)))))
365 (vector-push-extend con vec)))))))
368 ;;; Return a constraint for the specified arguments. We only create a
369 ;;; new constraint if there isn't already an equivalent old one,
370 ;;; guaranteeing that all equivalent constraints are EQ. This
371 ;;; shouldn't be called on LAMBDA-VARs with no CONSTRAINTS set.
372 (defun find-or-create-constraint (kind x y not-p)
373 (declare (type lambda-var x) (type constraint-y y) (type boolean not-p))
374 (or (find-constraint kind x y not-p)
375 (let ((new (make-constraint (length *constraint-universe*)
377 (vector-push-extend new *constraint-universe*
378 (1+ (length *constraint-universe*)))
379 (register-constraint x new y)
380 (when (lambda-var-p y)
381 (register-constraint y new x))
384 ;;; Actual conset interface
386 ;;; Constraint propagation needs to iterate over the set of lambda-vars known to
387 ;;; be EQL to a given variable (including itself), via DO-EQL-VARS.
389 ;;; It also has to iterate through constraints that are inherited by EQL variables
390 ;;; (DO-INHERITABLE-CONSTRAINTS), and through constraints used by
391 ;;; CONSTRAIN-REF-TYPE (to derive the type of a REF to a lambda-var).
393 ;;; Consets must keep track of which lvars are EQL to a given lambda-var (result
394 ;;; from a REF to the lambda-var): CONSET-LVAR-LAMBDA-VAR-EQL-P and
395 ;;; CONSET-ADD-LVAR-LAMBDA-VAR-EQL. This, as all other constraints, must of
396 ;;; course be cleared when a lambda-var's constraints are dropped because of
399 ;;; Consets must be able to add constraints to a given lambda-var
400 ;;; (CONSET-ADD-CONSTRAINT), and to the set of variables EQL to a given
401 ;;; lambda-var (CONSET-ADD-CONSTRAINT-TO-EQL).
403 ;;; When a lambda-var is assigned to, all the constraints involving that variable
404 ;;; must be dropped: constraint propagation is flow-sensitive, so the constraints
405 ;;; relate to the variable at a given range of program point. In such cases,
406 ;;; constraint propagation calls CONSET-CLEAR-LAMBDA-VAR.
408 ;;; Finally, one of the main strengths of constraint propagation in SBCL is the
409 ;;; tracking of EQL variables to help constraint propagation. When two variables
410 ;;; are known to be EQL (e.g. after a branch), ADD-EQL-VAR-VAR-CONSTRAINT is
411 ;;; called to add the EQL constraint, but also have each equality class inherit
412 ;;; the other's (inheritable) constraints.
414 ;;; On top of that, we have the usual bulk set operations: intersection, copy,
415 ;;; equality or emptiness testing. There's also union, but that's only an
416 ;;; optimisation to avoid useless copies in ADD-TEST-CONSTRAINTS and
417 ;;; FIND-BLOCK-TYPE-CONSTRAINTS.
418 (defmacro do-conset-constraints-intersection ((symbol (conset constraints) &optional result)
420 (let ((min (gensym "MIN"))
421 (max (gensym "MAX")))
422 (once-only ((conset conset)
423 (constraints constraints))
424 `(flet ((body (,symbol)
425 (declare (type constraint ,symbol))
428 (let ((,min (conset-min ,conset))
429 (,max (conset-max ,conset)))
430 (declare (optimize speed))
431 (map nil (lambda (constraint)
432 (declare (type constraint constraint))
433 (let ((number (constraint-number constraint)))
434 (when (and (<= ,min number)
436 (conset-member constraint ,conset))
441 (defmacro do-eql-vars ((symbol (var constraints) &optional result) &body body)
442 (once-only ((var var)
443 (constraints constraints))
444 `(flet ((body-fun (,symbol)
447 (do-conset-constraints-intersection
448 (con (,constraints (lambda-var-eql-var-constraints ,var)) ,result)
449 (let ((x (constraint-x con))
450 (y (constraint-y con)))
451 (body-fun (if (eq ,var x) y x)))))))
453 (defmacro do-inheritable-constraints ((symbol (conset variable) &optional result)
455 (once-only ((conset conset)
458 (flet ((body-fun (,symbol)
460 (do-conset-constraints-intersection
461 (con (,conset (lambda-var-inheritable-constraints ,variable)))
463 (do-conset-constraints-intersection
464 (con (,conset (lambda-var-eql-var-constraints ,variable)) ,result)
467 (defmacro do-propagatable-constraints ((symbol (conset variable) &optional result)
469 (once-only ((conset conset)
472 (flet ((body-fun (,symbol)
474 (do-conset-constraints-intersection
475 (con (,conset (lambda-var-private-constraints ,variable)))
477 (do-conset-constraints-intersection
478 (con (,conset (lambda-var-eql-var-constraints ,variable)))
480 (do-conset-constraints-intersection
481 (con (,conset (lambda-var-inheritable-constraints ,variable)) ,result)
484 (declaim (inline conset-lvar-lambda-var-eql-p conset-add-lvar-lambda-var-eql))
485 (defun conset-lvar-lambda-var-eql-p (conset lvar lambda-var)
486 (let ((constraint (find-constraint 'eql lambda-var lvar nil)))
488 (conset-member constraint conset))))
490 (defun conset-add-lvar-lambda-var-eql (conset lvar lambda-var)
491 (let ((constraint (find-or-create-constraint 'eql lambda-var lvar nil)))
492 (conset-adjoin constraint conset)))
494 (declaim (inline conset-add-constraint conset-add-constraint-to-eql))
495 (defun conset-add-constraint (conset kind x y not-p)
496 (declare (type conset conset)
498 (conset-adjoin (find-or-create-constraint kind x y not-p)
501 (defun conset-add-constraint-to-eql (conset kind x y not-p &optional (target conset))
502 (declare (type conset target conset)
504 (do-eql-vars (x (x conset))
505 (conset-add-constraint target kind x y not-p)))
507 (declaim (inline conset-clear-lambda-var))
508 (defun conset-clear-lambda-var (conset var)
509 (conset-difference conset (lambda-var-constraints var)))
511 ;;; Copy all CONSTRAINTS involving FROM-VAR - except the (EQL VAR
512 ;;; LVAR) ones - to all of the variables in the VARS list.
513 (defun inherit-constraints (vars from-var constraints target)
514 (do-inheritable-constraints (con (constraints from-var))
515 (let ((eq-x (eq from-var (constraint-x con)))
516 (eq-y (eq from-var (constraint-y con))))
518 (conset-add-constraint target
519 (constraint-kind con)
520 (if eq-x var (constraint-x con))
521 (if eq-y var (constraint-y con))
522 (constraint-not-p con))))))
524 ;; Add an (EQL LAMBDA-VAR LAMBDA-VAR) constraint on VAR1 and VAR2 and
525 ;; inherit each other's constraints.
526 (defun add-eql-var-var-constraint (var1 var2 constraints
527 &optional (target constraints))
528 (let ((constraint (find-or-create-constraint 'eql var1 var2 nil)))
529 (unless (conset-member constraint target)
530 (conset-adjoin constraint target)
531 (collect ((eql1) (eql2))
532 (do-eql-vars (var1 (var1 constraints))
534 (do-eql-vars (var2 (var2 constraints))
536 (inherit-constraints (eql1) var2 constraints target)
537 (inherit-constraints (eql2) var1 constraints target))
540 ;;; If REF is to a LAMBDA-VAR with CONSTRAINTs (i.e. we can do flow
541 ;;; analysis on it), then return the LAMBDA-VAR, otherwise NIL.
542 #!-sb-fluid (declaim (inline ok-ref-lambda-var))
543 (defun ok-ref-lambda-var (ref)
544 (declare (type ref ref))
545 (let ((leaf (ref-leaf ref)))
546 (when (and (lambda-var-p leaf)
547 (lambda-var-constraints leaf))
550 ;;; See if LVAR's single USE is a REF to a LAMBDA-VAR and they are EQL
551 ;;; according to CONSTRAINTS. Return LAMBDA-VAR if so.
552 (defun ok-lvar-lambda-var (lvar constraints)
553 (declare (type lvar lvar))
554 (let ((use (lvar-uses lvar)))
556 (let ((lambda-var (ok-ref-lambda-var use)))
558 (conset-lvar-lambda-var-eql-p constraints lvar lambda-var)
561 (ok-lvar-lambda-var (cast-value use) constraints)))))
562 ;;;; Searching constraints
564 ;;; Add the indicated test constraint to BLOCK. We don't add the
565 ;;; constraint if the block has multiple predecessors, since it only
566 ;;; holds on this particular path.
567 (defun precise-add-test-constraint (fun x y not-p constraints target)
568 (if (and (eq 'eql fun) (lambda-var-p y) (not not-p))
569 (add-eql-var-var-constraint x y constraints target)
570 (conset-add-constraint-to-eql constraints fun x y not-p target))
573 (defun add-test-constraint (quick-p fun x y not-p constraints target)
575 (conset-add-constraint target fun x y not-p))
577 (precise-add-test-constraint fun x y not-p constraints target))))
578 ;;; Add complementary constraints to the consequent and alternative
579 ;;; blocks of IF. We do nothing if X is NIL.
580 (declaim (inline precise-add-test-constraint quick-add-complement-constraints))
581 (defun precise-add-complement-constraints (fun x y not-p constraints
582 consequent-constraints
583 alternative-constraints)
585 (precise-add-test-constraint fun x y not-p constraints
586 consequent-constraints)
587 (precise-add-test-constraint fun x y (not not-p) constraints
588 alternative-constraints))
591 (defun quick-add-complement-constraints (fun x y not-p
592 consequent-constraints
593 alternative-constraints)
595 (conset-add-constraint consequent-constraints fun x y not-p)
596 (conset-add-constraint alternative-constraints fun x y (not not-p)))
599 (defun add-complement-constraints (quick-p fun x y not-p constraints
600 consequent-constraints
601 alternative-constraints)
603 (quick-add-complement-constraints fun x y not-p
604 consequent-constraints
605 alternative-constraints)
606 (precise-add-complement-constraints fun x y not-p constraints
607 consequent-constraints
608 alternative-constraints)))
610 ;;; Add test constraints to the consequent and alternative blocks of
611 ;;; the test represented by USE.
612 (defun add-test-constraints (use if constraints)
613 (declare (type node use) (type cif if))
614 ;; Note: Even if we do (IF test exp exp) => (PROGN test exp)
615 ;; optimization, the *MAX-OPTIMIZE-ITERATIONS* cutoff means that we
616 ;; can't guarantee that the optimization will be done, so we still
617 ;; need to avoid barfing on this case.
618 (unless (eq (if-consequent if) (if-alternative if))
619 (let ((consequent-constraints (make-conset))
620 (alternative-constraints (make-conset))
621 (quick-p (policy if (> compilation-speed speed))))
622 (macrolet ((add (fun x y not-p)
623 `(add-complement-constraints quick-p
626 consequent-constraints
627 alternative-constraints)))
630 (add 'typep (ok-lvar-lambda-var (ref-lvar use) constraints)
631 (specifier-type 'null) t))
633 (unless (eq (combination-kind use)
635 (let ((name (lvar-fun-name
636 (basic-combination-fun use)))
637 (args (basic-combination-args use)))
639 ((%typep %instance-typep)
640 (let ((type (second args)))
641 (when (constant-lvar-p type)
642 (let ((val (lvar-value type)))
644 (ok-lvar-lambda-var (first args) constraints)
647 (let ((*compiler-error-context* use))
648 (specifier-type val)))
651 (let* ((arg1 (first args))
652 (var1 (ok-lvar-lambda-var arg1 constraints))
654 (var2 (ok-lvar-lambda-var arg2 constraints)))
655 ;; The code below assumes that the constant is the
656 ;; second argument in case of variable to constant
657 ;; comparision which is sometimes true (see source
658 ;; transformations for EQ, EQL and CHAR=). Fixing
659 ;; that would result in more constant substitutions
660 ;; which is not a universally good thing, thus the
661 ;; unnatural asymmetry of the tests.
664 (add-test-constraint quick-p
665 'typep var2 (lvar-type arg1)
667 consequent-constraints)))
669 (add 'eql var1 var2 nil))
670 ((constant-lvar-p arg2)
672 (find-constant (lvar-value arg2))
675 (add-test-constraint quick-p
676 'typep var1 (lvar-type arg2)
678 consequent-constraints)))))
680 (let* ((arg1 (first args))
681 (var1 (ok-lvar-lambda-var arg1 constraints))
683 (var2 (ok-lvar-lambda-var arg2 constraints)))
685 (add name var1 (lvar-type arg2) nil))
687 (add (if (eq name '<) '> '<) var2 (lvar-type arg1) nil))))
689 (let ((ptype (gethash name *backend-predicate-types*)))
691 (add 'typep (ok-lvar-lambda-var (first args) constraints)
693 (values consequent-constraints alternative-constraints))))
695 ;;;; Applying constraints
697 ;;; Return true if X is an integer NUMERIC-TYPE.
698 (defun integer-type-p (x)
699 (declare (type ctype x))
700 (and (numeric-type-p x)
701 (eq (numeric-type-class x) 'integer)
702 (eq (numeric-type-complexp x) :real)))
704 ;;; Given that an inequality holds on values of type X and Y, return a
705 ;;; new type for X. If GREATER is true, then X was greater than Y,
706 ;;; otherwise less. If OR-EQUAL is true, then the inequality was
707 ;;; inclusive, i.e. >=.
709 ;;; If GREATER (or not), then we max (or min) in Y's lower (or upper)
710 ;;; bound into X and return that result. If not OR-EQUAL, we can go
711 ;;; one greater (less) than Y's bound.
712 (defun constrain-integer-type (x y greater or-equal)
713 (declare (type numeric-type x y))
720 (if greater (numeric-type-low x) (numeric-type-high x))))
721 (let* ((x-bound (bound x))
722 (y-bound (exclude (bound y)))
723 (new-bound (cond ((not x-bound) y-bound)
724 ((not y-bound) x-bound)
725 (greater (max x-bound y-bound))
726 (t (min x-bound y-bound)))))
728 (modified-numeric-type x :low new-bound)
729 (modified-numeric-type x :high new-bound)))))
731 ;;; Return true if X is a float NUMERIC-TYPE.
732 (defun float-type-p (x)
733 (declare (type ctype x))
734 (and (numeric-type-p x)
735 (eq (numeric-type-class x) 'float)
736 (eq (numeric-type-complexp x) :real)))
738 ;;; Exactly the same as CONSTRAIN-INTEGER-TYPE, but for float numbers.
740 ;;; In contrast to the integer version, here the input types can have
741 ;;; open bounds in addition to closed ones and we don't increment or
742 ;;; decrement a bound to honor OR-EQUAL being NIL but put an open bound
743 ;;; into the result instead, if appropriate.
744 (defun constrain-float-type (x y greater or-equal)
745 (declare (type numeric-type x y))
746 (declare (ignorable x y greater or-equal)) ; for CROSS-FLOAT-INFINITY-KLUDGE
748 (aver (eql (numeric-type-class x) 'float))
749 (aver (eql (numeric-type-class y) 'float))
750 #+sb-xc-host ; (See CROSS-FLOAT-INFINITY-KLUDGE.)
752 #-sb-xc-host ; (See CROSS-FLOAT-INFINITY-KLUDGE.)
753 (labels ((exclude (x)
761 (if greater (numeric-type-low x) (numeric-type-high x)))
765 ((= (type-bound-number x) (type-bound-number ref))
766 ;; X is tighter if X is an open bound and REF is not
767 (and (consp x) (not (consp ref))))
769 (< (type-bound-number ref) (type-bound-number x)))
771 (> (type-bound-number ref) (type-bound-number x))))))
772 (let* ((x-bound (bound x))
773 (y-bound (exclude (bound y)))
774 (new-bound (cond ((not x-bound)
778 ((tighter-p y-bound x-bound)
783 (modified-numeric-type x :low new-bound)
784 (modified-numeric-type x :high new-bound)))))
786 ;;; Return true if LEAF is "visible" from NODE.
787 (defun leaf-visible-from-node-p (leaf node)
790 ;; A LAMBDA-VAR is visible iif it is homed in a CLAMBDA that is an
791 ;; ancestor for NODE.
792 (let ((leaf-lambda (lambda-var-home leaf)))
793 (loop for lambda = (node-home-lambda node)
794 then (lambda-parent lambda)
796 when (eq lambda leaf-lambda)
798 ;; FIXME: Check on FUNCTIONALs (CLAMBDAs and OPTIONAL-DISPATCHes),
799 ;; not just LAMBDA-VARs.
801 ;; Assume everything else is globally visible.
804 ;;; Given the set of CONSTRAINTS for a variable and the current set of
805 ;;; restrictions from flow analysis IN, set the type for REF
807 (defun constrain-ref-type (ref in)
808 (declare (type ref ref) (type conset in))
809 ;; KLUDGE: The NOT-SET and NOT-FPZ here are so that we don't need to
810 ;; cons up endless union types when propagating large number of EQL
811 ;; constraints -- eg. from large CASE forms -- instead we just
812 ;; directly accumulate one XSET, and a set of fp zeroes, which we at
813 ;; the end turn into a MEMBER-TYPE.
815 ;; Since massive symbol cases are an especially atrocious pattern
816 ;; and the (NOT (MEMBER ...ton of symbols...)) will never turn into
817 ;; a more useful type, don't propagate their negation except for NIL
818 ;; unless SPEED > COMPILATION-SPEED.
819 (let ((res (single-value-type (node-derived-type ref)))
820 (constrain-symbols (policy ref (> speed compilation-speed)))
821 (not-set (alloc-xset))
823 (not-res *empty-type*)
824 (leaf (ref-leaf ref)))
825 (declare (type lambda-var leaf))
829 (when (or constrain-symbols (null x) (not (symbolp x)))
830 (add-to-xset x not-set)))))
831 (do-propagatable-constraints (con (in leaf))
832 (let* ((x (constraint-x con))
833 (y (constraint-y con))
834 (not-p (constraint-not-p con))
835 (other (if (eq x leaf) y x))
836 (kind (constraint-kind con)))
840 (if (member-type-p other)
841 (mapc-member-type-members #'note-not other)
842 (setq not-res (type-union not-res other)))
843 (setq res (type-approx-intersection2 res other))))
845 (let ((other-type (leaf-type other)))
847 (when (and (constant-p other)
848 (member-type-p other-type))
849 (note-not (constant-value other)))
850 (let ((leaf-type (leaf-type leaf)))
852 ((or (constant-p other)
853 (and (leaf-refs other) ; protect from
855 (csubtypep other-type leaf-type)
856 (not (type= other-type leaf-type))
857 ;; Don't change to a LEAF not visible here.
858 (leaf-visible-from-node-p other ref)))
859 (change-ref-leaf ref other)
860 (when (constant-p other) (return)))
862 (setq res (type-approx-intersection2
863 res other-type))))))))
866 ((and (integer-type-p res) (integer-type-p y))
867 (let ((greater (eq kind '>)))
868 (let ((greater (if not-p (not greater) greater)))
870 (constrain-integer-type res y greater not-p)))))
871 ((and (float-type-p res) (float-type-p y))
872 (let ((greater (eq kind '>)))
873 (let ((greater (if not-p (not greater) greater)))
875 (constrain-float-type res y greater not-p)))))))))))
876 (cond ((and (if-p (node-dest ref))
877 (or (xset-member-p nil not-set)
878 (csubtypep (specifier-type 'null) not-res)))
879 (setf (node-derived-type ref) *wild-type*)
880 (change-ref-leaf ref (find-constant t)))
883 (type-union not-res (make-member-type :xset not-set :fp-zeroes not-fpz)))
884 (derive-node-type ref
885 (make-single-value-type
886 (or (type-difference res not-res)
888 (maybe-terminate-block ref nil))))
893 (defun maybe-add-eql-var-lvar-constraint (ref gen)
894 (let ((lvar (ref-lvar ref))
895 (leaf (ref-leaf ref)))
896 (when (and (lambda-var-p leaf) lvar)
897 (conset-add-lvar-lambda-var-eql gen lvar leaf))))
899 ;; Add an (EQL LAMBDA-VAR LAMBDA-VAR) constraint on VAR and LVAR's
900 ;; LAMBDA-VAR if possible.
901 (defun maybe-add-eql-var-var-constraint (var lvar constraints
902 &optional (target constraints))
903 (declare (type lambda-var var) (type lvar lvar))
904 (let ((lambda-var (ok-lvar-lambda-var lvar constraints)))
906 (add-eql-var-var-constraint var lambda-var constraints target))))
908 ;;; Local propagation
909 ;;; -- [TODO: For any LAMBDA-VAR ref with a type check, add that
911 ;;; -- For any LAMBDA-VAR set, delete all constraints on that var; add
912 ;;; a type constraint based on the new value type.
913 (declaim (ftype (function (cblock conset boolean)
915 constraint-propagate-in-block))
916 (defun constraint-propagate-in-block (block gen preprocess-refs-p)
917 (do-nodes (node lvar block)
920 (let ((fun (bind-lambda node)))
921 (when (eq (functional-kind fun) :let)
922 (loop with call = (lvar-dest (node-lvar (first (lambda-refs fun))))
923 for var in (lambda-vars fun)
924 and val in (combination-args call)
925 when (and val (lambda-var-constraints var))
926 do (let ((type (lvar-type val)))
927 (unless (eq type *universal-type*)
928 (conset-add-constraint gen 'typep var type nil)))
929 (maybe-add-eql-var-var-constraint var val gen)))))
931 (when (ok-ref-lambda-var node)
932 (maybe-add-eql-var-lvar-constraint node gen)
933 (when preprocess-refs-p
934 (constrain-ref-type node gen))))
936 (let ((lvar (cast-value node)))
937 (let ((var (ok-lvar-lambda-var lvar gen)))
939 (let ((atype (single-value-type (cast-derived-type node)))) ;FIXME
940 (unless (eq atype *universal-type*)
941 (conset-add-constraint-to-eql gen 'typep var atype nil)))))))
943 (binding* ((var (set-var node))
944 (nil (lambda-var-p var) :exit-if-null)
945 (nil (lambda-var-constraints var) :exit-if-null))
946 (when (policy node (and (= speed 3) (> speed compilation-speed)))
947 (let ((type (lambda-var-type var)))
948 (unless (eql *universal-type* type)
949 (do-eql-vars (other (var gen))
950 (unless (eql other var)
951 (conset-add-constraint gen 'typep other type nil))))))
952 (conset-clear-lambda-var gen var)
953 (let ((type (single-value-type (node-derived-type node))))
954 (unless (eq type *universal-type*)
955 (conset-add-constraint gen 'typep var type nil)))
956 (unless (policy node (> compilation-speed speed))
957 (maybe-add-eql-var-var-constraint var (set-value node) gen))))))
960 (defun constraint-propagate-if (block gen)
961 (let ((node (block-last block)))
963 (let ((use (lvar-uses (if-test node))))
965 (add-test-constraints use node gen))))))
967 ;;; Starting from IN compute OUT and (consequent/alternative
968 ;;; constraints if the block ends with and IF). Return the list of
969 ;;; successors that may need to be recomputed.
970 (defun find-block-type-constraints (block final-pass-p)
971 (declare (type cblock block))
972 (let ((gen (constraint-propagate-in-block
976 (copy-conset (block-in block)))
978 (setf (block-gen block) gen)
979 (multiple-value-bind (consequent-constraints alternative-constraints)
980 (constraint-propagate-if block gen)
981 (if consequent-constraints
982 (let* ((node (block-last block))
983 (old-consequent-constraints (if-consequent-constraints node))
984 (old-alternative-constraints (if-alternative-constraints node))
986 ;; Add the consequent and alternative constraints to GEN.
987 (cond ((conset-empty consequent-constraints)
988 (setf (if-consequent-constraints node) gen)
989 (setf (if-alternative-constraints node) gen))
991 (setf (if-consequent-constraints node) (copy-conset gen))
992 (conset-union (if-consequent-constraints node)
993 consequent-constraints)
994 (setf (if-alternative-constraints node) gen)
995 (conset-union (if-alternative-constraints node)
996 alternative-constraints)))
997 ;; Has the consequent been changed?
998 (unless (and old-consequent-constraints
999 (conset= (if-consequent-constraints node)
1000 old-consequent-constraints))
1001 (push (if-consequent node) succ))
1002 ;; Has the alternative been changed?
1003 (unless (and old-alternative-constraints
1004 (conset= (if-alternative-constraints node)
1005 old-alternative-constraints))
1006 (push (if-alternative node) succ))
1009 (unless (and (block-out block)
1010 (conset= gen (block-out block)))
1011 (setf (block-out block) gen)
1012 (block-succ block))))))
1014 ;;; Deliver the results of constraint propagation to REFs in BLOCK.
1015 ;;; During this pass, we also do local constraint propagation by
1016 ;;; adding in constraints as we see them during the pass through the
1018 (defun use-result-constraints (block)
1019 (declare (type cblock block))
1020 (constraint-propagate-in-block block (block-in block) t))
1022 ;;; Give an empty constraints set to any var that doesn't have one and
1023 ;;; isn't a set closure var. Since a var that we previously rejected
1024 ;;; looks identical to one that is new, so we optimistically keep
1025 ;;; hoping that vars stop being closed over or lose their sets.
1026 (defun init-var-constraints (component)
1027 (declare (type component component))
1028 (dolist (fun (component-lambdas component))
1030 (dolist (var (lambda-vars x))
1031 (unless (lambda-var-constraints var)
1032 (when (or (null (lambda-var-sets var))
1033 (not (closure-var-p var)))
1034 (setf (lambda-var-constraints var) (make-conset)))))))
1036 (dolist (let (lambda-lets fun))
1039 ;;; Return the constraints that flow from PRED to SUCC. This is
1040 ;;; BLOCK-OUT unless PRED ends with an IF and test constraints were
1042 (defun block-out-for-successor (pred succ)
1043 (declare (type cblock pred succ))
1044 (let ((last (block-last pred)))
1045 (or (when (if-p last)
1046 (cond ((eq succ (if-consequent last))
1047 (if-consequent-constraints last))
1048 ((eq succ (if-alternative last))
1049 (if-alternative-constraints last))))
1052 (defun compute-block-in (block)
1054 (dolist (pred (block-pred block))
1055 ;; If OUT has not been calculated, assume it to be the universal
1057 (let ((out (block-out-for-successor pred block)))
1060 (conset-intersection in out)
1061 (setq in (copy-conset out))))))
1062 (or in (make-conset))))
1064 (defun update-block-in (block)
1065 (let ((in (compute-block-in block)))
1066 (cond ((and (block-in block) (conset= in (block-in block)))
1069 (setf (block-in block) in)))))
1071 ;;; Return two lists: one of blocks that precede all loops and
1072 ;;; therefore require only one constraint propagation pass and the
1073 ;;; rest. This implementation does not find all such blocks.
1075 ;;; A more complete implementation would be:
1077 ;;; (do-blocks (block component)
1078 ;;; (if (every #'(lambda (pred)
1079 ;;; (or (member pred leading-blocks)
1080 ;;; (eq pred head)))
1081 ;;; (block-pred block))
1082 ;;; (push block leading-blocks)
1083 ;;; (push block rest-of-blocks)))
1085 ;;; Trailing blocks that succeed all loops could be found and handled
1086 ;;; similarly. In practice though, these more complex solutions are
1087 ;;; slightly worse performancewise.
1088 (defun leading-component-blocks (component)
1089 (declare (type component component))
1090 (flet ((loopy-p (block)
1091 (let ((n (block-number block)))
1092 (dolist (pred (block-pred block))
1093 (unless (< n (block-number pred))
1095 (let ((leading-blocks ())
1098 (do-blocks (block component)
1099 (when (and (not seen-loop-p) (loopy-p block))
1100 (setq seen-loop-p t))
1102 (push block rest-of-blocks)
1103 (push block leading-blocks)))
1104 (values (nreverse leading-blocks) (nreverse rest-of-blocks)))))
1106 ;;; Append OBJ to the end of LIST as if by NCONC but only if it is not
1107 ;;; a member already.
1108 (defun nconc-new (obj list)
1109 (do ((x list (cdr x))
1113 (setf (cdr prev) (list obj))
1116 (when (eql (car x) obj)
1117 (return-from nconc-new list))))
1119 (defun find-and-propagate-constraints (component)
1120 (let ((blocks-to-process ()))
1121 (flet ((enqueue (blocks)
1122 (dolist (block blocks)
1123 (setq blocks-to-process (nconc-new block blocks-to-process)))))
1124 (multiple-value-bind (leading-blocks rest-of-blocks)
1125 (leading-component-blocks component)
1126 ;; Update every block once to account for changes in the
1127 ;; IR1. The constraints of the lead blocks cannot be changed
1128 ;; after the first pass so we might as well use them and skip
1129 ;; USE-RESULT-CONSTRAINTS later.
1130 (dolist (block leading-blocks)
1131 (setf (block-in block) (compute-block-in block))
1132 (find-block-type-constraints block t))
1133 (setq blocks-to-process (copy-list rest-of-blocks))
1134 ;; The rest of the blocks.
1135 (dolist (block rest-of-blocks)
1136 (aver (eq block (pop blocks-to-process)))
1137 (setf (block-in block) (compute-block-in block))
1138 (enqueue (find-block-type-constraints block nil)))
1139 ;; Propagate constraints
1140 (loop for block = (pop blocks-to-process)
1142 (unless (eq block (component-tail component))
1143 (when (update-block-in block)
1144 (enqueue (find-block-type-constraints block nil)))))
1147 (defun constraint-propagate (component)
1148 (declare (type component component))
1149 (init-var-constraints component)
1151 (unless (block-out (component-head component))
1152 (setf (block-out (component-head component)) (make-conset)))
1154 (dolist (block (find-and-propagate-constraints component))
1155 (unless (block-delete-p block)
1156 (use-result-constraints block)))