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 (let ((use (principal-lvar-use arg2)))
675 (find-constant (lvar-value arg2))))
678 (add-test-constraint quick-p
679 'typep var1 (lvar-type arg2)
681 consequent-constraints)))))
683 (let* ((arg1 (first args))
684 (var1 (ok-lvar-lambda-var arg1 constraints))
686 (var2 (ok-lvar-lambda-var arg2 constraints)))
688 (add name var1 (lvar-type arg2) nil))
690 (add (if (eq name '<) '> '<) var2 (lvar-type arg1) nil))))
692 (let ((ptype (gethash name *backend-predicate-types*)))
694 (add 'typep (ok-lvar-lambda-var (first args) constraints)
696 (values consequent-constraints alternative-constraints))))
698 ;;;; Applying constraints
700 ;;; Return true if X is an integer NUMERIC-TYPE.
701 (defun integer-type-p (x)
702 (declare (type ctype x))
703 (and (numeric-type-p x)
704 (eq (numeric-type-class x) 'integer)
705 (eq (numeric-type-complexp x) :real)))
707 ;;; Given that an inequality holds on values of type X and Y, return a
708 ;;; new type for X. If GREATER is true, then X was greater than Y,
709 ;;; otherwise less. If OR-EQUAL is true, then the inequality was
710 ;;; inclusive, i.e. >=.
712 ;;; If GREATER (or not), then we max (or min) in Y's lower (or upper)
713 ;;; bound into X and return that result. If not OR-EQUAL, we can go
714 ;;; one greater (less) than Y's bound.
715 (defun constrain-integer-type (x y greater or-equal)
716 (declare (type numeric-type x y))
723 (if greater (numeric-type-low x) (numeric-type-high x))))
724 (let* ((x-bound (bound x))
725 (y-bound (exclude (bound y)))
726 (new-bound (cond ((not x-bound) y-bound)
727 ((not y-bound) x-bound)
728 (greater (max x-bound y-bound))
729 (t (min x-bound y-bound)))))
731 (modified-numeric-type x :low new-bound)
732 (modified-numeric-type x :high new-bound)))))
734 ;;; Return true if X is a float NUMERIC-TYPE.
735 (defun float-type-p (x)
736 (declare (type ctype x))
737 (and (numeric-type-p x)
738 (eq (numeric-type-class x) 'float)
739 (eq (numeric-type-complexp x) :real)))
741 ;;; Exactly the same as CONSTRAIN-INTEGER-TYPE, but for float numbers.
742 (defun constrain-float-type (x y greater or-equal)
743 (declare (type numeric-type x y))
744 (declare (ignorable x y greater or-equal)) ; for CROSS-FLOAT-INFINITY-KLUDGE
746 (aver (eql (numeric-type-class x) 'float))
747 (aver (eql (numeric-type-class y) 'float))
748 #+sb-xc-host ; (See CROSS-FLOAT-INFINITY-KLUDGE.)
750 #-sb-xc-host ; (See CROSS-FLOAT-INFINITY-KLUDGE.)
751 (labels ((exclude (x)
759 (if greater (numeric-type-low x) (numeric-type-high x)))
764 (= (type-bound-number x) (type-bound-number ref)))
765 ;; X is tighter if REF is not an open bound and X is
766 (and (not (consp ref)) (consp x)))
768 (< (type-bound-number ref) (type-bound-number x)))
770 (> (type-bound-number ref) (type-bound-number x))))))
771 (let* ((x-bound (bound x))
772 (y-bound (exclude (bound y)))
773 (new-bound (cond ((not x-bound)
777 ((tighter-p y-bound x-bound)
782 (modified-numeric-type x :low new-bound)
783 (modified-numeric-type x :high new-bound)))))
785 ;;; Return true if LEAF is "visible" from NODE.
786 (defun leaf-visible-from-node-p (leaf node)
789 ;; A LAMBDA-VAR is visible iif it is homed in a CLAMBDA that is an
790 ;; ancestor for NODE.
791 (let ((leaf-lambda (lambda-var-home leaf)))
792 (loop for lambda = (node-home-lambda node)
793 then (lambda-parent lambda)
795 when (eq lambda leaf-lambda)
797 ;; FIXME: Check on FUNCTIONALs (CLAMBDAs and OPTIONAL-DISPATCHes),
798 ;; not just LAMBDA-VARs.
800 ;; Assume everything else is globally visible.
803 ;;; Given the set of CONSTRAINTS for a variable and the current set of
804 ;;; restrictions from flow analysis IN, set the type for REF
806 (defun constrain-ref-type (ref in)
807 (declare (type ref ref) (type conset in))
808 ;; KLUDGE: The NOT-SET and NOT-FPZ here are so that we don't need to
809 ;; cons up endless union types when propagating large number of EQL
810 ;; constraints -- eg. from large CASE forms -- instead we just
811 ;; directly accumulate one XSET, and a set of fp zeroes, which we at
812 ;; the end turn into a MEMBER-TYPE.
814 ;; Since massive symbol cases are an especially atrocious pattern
815 ;; and the (NOT (MEMBER ...ton of symbols...)) will never turn into
816 ;; a more useful type, don't propagate their negation except for NIL
817 ;; unless SPEED > COMPILATION-SPEED.
818 (let ((res (single-value-type (node-derived-type ref)))
819 (constrain-symbols (policy ref (> speed compilation-speed)))
820 (not-set (alloc-xset))
822 (not-res *empty-type*)
823 (leaf (ref-leaf ref)))
824 (declare (type lambda-var leaf))
828 (when (or constrain-symbols (null x) (not (symbolp x)))
829 (add-to-xset x not-set)))))
830 (do-propagatable-constraints (con (in leaf))
831 (let* ((x (constraint-x con))
832 (y (constraint-y con))
833 (not-p (constraint-not-p con))
834 (other (if (eq x leaf) y x))
835 (kind (constraint-kind con)))
839 (if (member-type-p other)
840 (mapc-member-type-members #'note-not other)
841 (setq not-res (type-union not-res other)))
842 (setq res (type-approx-intersection2 res other))))
844 (let ((other-type (leaf-type other)))
846 (when (and (constant-p other)
847 (member-type-p other-type))
848 (note-not (constant-value other)))
849 (let ((leaf-type (leaf-type leaf)))
851 ((or (constant-p other)
852 (and (leaf-refs other) ; protect from
854 (csubtypep other-type leaf-type)
855 (not (type= other-type leaf-type))
856 ;; Don't change to a LEAF not visible here.
857 (leaf-visible-from-node-p other ref)))
858 (change-ref-leaf ref other)
859 (when (constant-p other) (return)))
861 (setq res (type-approx-intersection2
862 res other-type))))))))
865 ((and (integer-type-p res) (integer-type-p y))
866 (let ((greater (eq kind '>)))
867 (let ((greater (if not-p (not greater) greater)))
869 (constrain-integer-type res y greater not-p)))))
870 ((and (float-type-p res) (float-type-p y))
871 (let ((greater (eq kind '>)))
872 (let ((greater (if not-p (not greater) greater)))
874 (constrain-float-type res y greater not-p)))))))))))
875 (cond ((and (if-p (node-dest ref))
876 (or (xset-member-p nil not-set)
877 (csubtypep (specifier-type 'null) not-res)))
878 (setf (node-derived-type ref) *wild-type*)
879 (change-ref-leaf ref (find-constant t)))
882 (type-union not-res (make-member-type :xset not-set :fp-zeroes not-fpz)))
883 (derive-node-type ref
884 (make-single-value-type
885 (or (type-difference res not-res)
887 (maybe-terminate-block ref nil))))
892 (defun maybe-add-eql-var-lvar-constraint (ref gen)
893 (let ((lvar (ref-lvar ref))
894 (leaf (ref-leaf ref)))
895 (when (and (lambda-var-p leaf) lvar)
896 (conset-add-lvar-lambda-var-eql gen lvar leaf))))
898 ;; Add an (EQL LAMBDA-VAR LAMBDA-VAR) constraint on VAR and LVAR's
899 ;; LAMBDA-VAR if possible.
900 (defun maybe-add-eql-var-var-constraint (var lvar constraints
901 &optional (target constraints))
902 (declare (type lambda-var var) (type lvar lvar))
903 (let ((lambda-var (ok-lvar-lambda-var lvar constraints)))
905 (add-eql-var-var-constraint var lambda-var constraints target))))
907 ;;; Local propagation
908 ;;; -- [TODO: For any LAMBDA-VAR ref with a type check, add that
910 ;;; -- For any LAMBDA-VAR set, delete all constraints on that var; add
911 ;;; a type constraint based on the new value type.
912 (declaim (ftype (function (cblock conset boolean)
914 constraint-propagate-in-block))
915 (defun constraint-propagate-in-block (block gen preprocess-refs-p)
916 (do-nodes (node lvar block)
919 (let ((fun (bind-lambda node)))
920 (when (eq (functional-kind fun) :let)
921 (loop with call = (lvar-dest (node-lvar (first (lambda-refs fun))))
922 for var in (lambda-vars fun)
923 and val in (combination-args call)
924 when (and val (lambda-var-constraints var))
925 do (let ((type (lvar-type val)))
926 (unless (eq type *universal-type*)
927 (conset-add-constraint gen 'typep var type nil)))
928 (maybe-add-eql-var-var-constraint var val gen)))))
930 (when (ok-ref-lambda-var node)
931 (maybe-add-eql-var-lvar-constraint node gen)
932 (when preprocess-refs-p
933 (constrain-ref-type node gen))))
935 (let ((lvar (cast-value node)))
936 (let ((var (ok-lvar-lambda-var lvar gen)))
938 (let ((atype (single-value-type (cast-derived-type node)))) ;FIXME
939 (unless (eq atype *universal-type*)
940 (conset-add-constraint-to-eql gen 'typep var atype nil)))))))
942 (binding* ((var (set-var node))
943 (nil (lambda-var-p var) :exit-if-null)
944 (nil (lambda-var-constraints var) :exit-if-null))
945 (when (policy node (and (= speed 3) (> speed compilation-speed)))
946 (let ((type (lambda-var-type var)))
947 (unless (eql *universal-type* type)
948 (do-eql-vars (other (var gen))
949 (unless (eql other var)
950 (conset-add-constraint gen 'typep other type nil))))))
951 (conset-clear-lambda-var gen var)
952 (let ((type (single-value-type (node-derived-type node))))
953 (unless (eq type *universal-type*)
954 (conset-add-constraint gen 'typep var type nil)))
955 (unless (policy node (> compilation-speed speed))
956 (maybe-add-eql-var-var-constraint var (set-value node) gen))))))
959 (defun constraint-propagate-if (block gen)
960 (let ((node (block-last block)))
962 (let ((use (lvar-uses (if-test node))))
964 (add-test-constraints use node gen))))))
966 ;;; Starting from IN compute OUT and (consequent/alternative
967 ;;; constraints if the block ends with and IF). Return the list of
968 ;;; successors that may need to be recomputed.
969 (defun find-block-type-constraints (block final-pass-p)
970 (declare (type cblock block))
971 (let ((gen (constraint-propagate-in-block
975 (copy-conset (block-in block)))
977 (setf (block-gen block) gen)
978 (multiple-value-bind (consequent-constraints alternative-constraints)
979 (constraint-propagate-if block gen)
980 (if consequent-constraints
981 (let* ((node (block-last block))
982 (old-consequent-constraints (if-consequent-constraints node))
983 (old-alternative-constraints (if-alternative-constraints node))
985 ;; Add the consequent and alternative constraints to GEN.
986 (cond ((conset-empty consequent-constraints)
987 (setf (if-consequent-constraints node) gen)
988 (setf (if-alternative-constraints node) gen))
990 (setf (if-consequent-constraints node) (copy-conset gen))
991 (conset-union (if-consequent-constraints node)
992 consequent-constraints)
993 (setf (if-alternative-constraints node) gen)
994 (conset-union (if-alternative-constraints node)
995 alternative-constraints)))
996 ;; Has the consequent been changed?
997 (unless (and old-consequent-constraints
998 (conset= (if-consequent-constraints node)
999 old-consequent-constraints))
1000 (push (if-consequent node) succ))
1001 ;; Has the alternative been changed?
1002 (unless (and old-alternative-constraints
1003 (conset= (if-alternative-constraints node)
1004 old-alternative-constraints))
1005 (push (if-alternative node) succ))
1008 (unless (and (block-out block)
1009 (conset= gen (block-out block)))
1010 (setf (block-out block) gen)
1011 (block-succ block))))))
1013 ;;; Deliver the results of constraint propagation to REFs in BLOCK.
1014 ;;; During this pass, we also do local constraint propagation by
1015 ;;; adding in constraints as we see them during the pass through the
1017 (defun use-result-constraints (block)
1018 (declare (type cblock block))
1019 (constraint-propagate-in-block block (block-in block) t))
1021 ;;; Give an empty constraints set to any var that doesn't have one and
1022 ;;; isn't a set closure var. Since a var that we previously rejected
1023 ;;; looks identical to one that is new, so we optimistically keep
1024 ;;; hoping that vars stop being closed over or lose their sets.
1025 (defun init-var-constraints (component)
1026 (declare (type component component))
1027 (dolist (fun (component-lambdas component))
1029 (dolist (var (lambda-vars x))
1030 (unless (lambda-var-constraints var)
1031 (when (or (null (lambda-var-sets var))
1032 (not (closure-var-p var)))
1033 (setf (lambda-var-constraints var) (make-conset)))))))
1035 (dolist (let (lambda-lets fun))
1038 ;;; Return the constraints that flow from PRED to SUCC. This is
1039 ;;; BLOCK-OUT unless PRED ends with an IF and test constraints were
1041 (defun block-out-for-successor (pred succ)
1042 (declare (type cblock pred succ))
1043 (let ((last (block-last pred)))
1044 (or (when (if-p last)
1045 (cond ((eq succ (if-consequent last))
1046 (if-consequent-constraints last))
1047 ((eq succ (if-alternative last))
1048 (if-alternative-constraints last))))
1051 (defun compute-block-in (block)
1053 (dolist (pred (block-pred block))
1054 ;; If OUT has not been calculated, assume it to be the universal
1056 (let ((out (block-out-for-successor pred block)))
1059 (conset-intersection in out)
1060 (setq in (copy-conset out))))))
1061 (or in (make-conset))))
1063 (defun update-block-in (block)
1064 (let ((in (compute-block-in block)))
1065 (cond ((and (block-in block) (conset= in (block-in block)))
1068 (setf (block-in block) in)))))
1070 ;;; Return two lists: one of blocks that precede all loops and
1071 ;;; therefore require only one constraint propagation pass and the
1072 ;;; rest. This implementation does not find all such blocks.
1074 ;;; A more complete implementation would be:
1076 ;;; (do-blocks (block component)
1077 ;;; (if (every #'(lambda (pred)
1078 ;;; (or (member pred leading-blocks)
1079 ;;; (eq pred head)))
1080 ;;; (block-pred block))
1081 ;;; (push block leading-blocks)
1082 ;;; (push block rest-of-blocks)))
1084 ;;; Trailing blocks that succeed all loops could be found and handled
1085 ;;; similarly. In practice though, these more complex solutions are
1086 ;;; slightly worse performancewise.
1087 (defun leading-component-blocks (component)
1088 (declare (type component component))
1089 (flet ((loopy-p (block)
1090 (let ((n (block-number block)))
1091 (dolist (pred (block-pred block))
1092 (unless (< n (block-number pred))
1094 (let ((leading-blocks ())
1097 (do-blocks (block component)
1098 (when (and (not seen-loop-p) (loopy-p block))
1099 (setq seen-loop-p t))
1101 (push block rest-of-blocks)
1102 (push block leading-blocks)))
1103 (values (nreverse leading-blocks) (nreverse rest-of-blocks)))))
1105 ;;; Append OBJ to the end of LIST as if by NCONC but only if it is not
1106 ;;; a member already.
1107 (defun nconc-new (obj list)
1108 (do ((x list (cdr x))
1112 (setf (cdr prev) (list obj))
1115 (when (eql (car x) obj)
1116 (return-from nconc-new list))))
1118 (defun find-and-propagate-constraints (component)
1119 (let ((blocks-to-process ()))
1120 (flet ((enqueue (blocks)
1121 (dolist (block blocks)
1122 (setq blocks-to-process (nconc-new block blocks-to-process)))))
1123 (multiple-value-bind (leading-blocks rest-of-blocks)
1124 (leading-component-blocks component)
1125 ;; Update every block once to account for changes in the
1126 ;; IR1. The constraints of the lead blocks cannot be changed
1127 ;; after the first pass so we might as well use them and skip
1128 ;; USE-RESULT-CONSTRAINTS later.
1129 (dolist (block leading-blocks)
1130 (setf (block-in block) (compute-block-in block))
1131 (find-block-type-constraints block t))
1132 (setq blocks-to-process (copy-list rest-of-blocks))
1133 ;; The rest of the blocks.
1134 (dolist (block rest-of-blocks)
1135 (aver (eq block (pop blocks-to-process)))
1136 (setf (block-in block) (compute-block-in block))
1137 (enqueue (find-block-type-constraints block nil)))
1138 ;; Propagate constraints
1139 (loop for block = (pop blocks-to-process)
1141 (unless (eq block (component-tail component))
1142 (when (update-block-in block)
1143 (enqueue (find-block-type-constraints block nil)))))
1146 (defun constraint-propagate (component)
1147 (declare (type component component))
1148 (init-var-constraints component)
1150 (unless (block-out (component-head component))
1151 (setf (block-out (component-head component)) (make-conset)))
1153 (dolist (block (find-and-propagate-constraints component))
1154 (unless (block-delete-p block)
1155 (use-result-constraints block)))