diff --git a/compiler/checkgen.lisp b/compiler/checkgen.lisp index 6e5337073ebf3a61b70565fbb6bfa20a9acab098..3b461639b665162d0b9e9fe63d3eca576fe66f2d 100644 --- a/compiler/checkgen.lisp +++ b/compiler/checkgen.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/checkgen.lisp,v 1.18 1991/03/18 20:54:43 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/checkgen.lisp,v 1.19 1992/03/21 19:41:14 wlott Exp $") ;;; ;;; ********************************************************************** ;;; @@ -61,7 +61,8 @@ (or (let ((check (type-check-template type))) (if check (template-cost check) - (let ((found (cdr (assoc type *type-predicates* :test #'type=)))) + (let ((found (cdr (assoc type (backend-type-predicates *backend*) + :test #'type=)))) (if found (+ (function-cost found) (function-cost 'eq)) nil)))) @@ -108,7 +109,7 @@ (let ((min-cost (type-test-cost type)) (min-type type) (found-super nil)) - (dolist (x *type-predicates*) + (dolist (x (backend-type-predicates *backend*)) (let ((stype (car x))) (when (and (csubtypep type stype) (not (union-type-p stype))) ;Not #!% COMMON type. diff --git a/compiler/constraint.lisp b/compiler/constraint.lisp index aad2090d48fe673100b6979fdf60435a81daeb44..132f3d55dd5d19138df5c748227a4da9f2640b8f 100644 --- a/compiler/constraint.lisp +++ b/compiler/constraint.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/constraint.lisp,v 1.11 1991/12/08 17:24:51 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/constraint.lisp,v 1.12 1992/03/21 19:41:31 wlott Exp $") ;;; ;;; ********************************************************************** ;;; @@ -197,7 +197,7 @@ var2 (continuation-type arg1) nil)))) (t - (let ((ptype (gethash name *predicate-types*))) + (let ((ptype (gethash name (backend-predicate-types *backend*)))) (when ptype (add-complement-constraints if 'typep (ok-cont-lambda-var (first args)) diff --git a/compiler/typetran.lisp b/compiler/typetran.lisp index 7fe7c7ea8f7ea7d9e973d92da3230e72e4019664..c7d5d45eea63458a23152ee622b94e729720fc34 100644 --- a/compiler/typetran.lisp +++ b/compiler/typetran.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/typetran.lisp,v 1.12 1991/10/24 21:05:00 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/typetran.lisp,v 1.13 1992/03/21 19:41:34 wlott Exp $") ;;; ;;; ********************************************************************** ;;; @@ -34,18 +34,11 @@ ;;; corresponding predicates) are not maintained in this association. In this ;;; case, there need not be any predicate function unless it is required by ;;; Common Lisp. - -;;; These two variables maintain the translation between types and predicates. -;;; *Predicate-Types* is a hashtable that translates from type predicate names -;;; to CType objects. *Type-Predicates* is an alist (<type> . <predicate>) -;;; that translates from types to predicates. We can't use a hashtable, since -;;; there is no such thing as a Type= hashtable. Establishing this translation ;;; -(defvar *predicate-types* (make-hash-table :test #'eq)) -(proclaim '(hash-table *predicate-types*)) -(defvar *type-predicates* ()) -(proclaim '(list *type-predicates*)) - +;;; The mappings between predicates and type structures is stored in the +;;; backend structure, so that different backends can support different sets +;;; of predicates. +;;; ;;; Define-Type-Predicate -- Interface ;;; @@ -54,14 +47,17 @@ Establish an association between the type predicate Name and the corresponding Type. This causes the type predicate to be recognized for purposes of optimization." - `(progn - (setf (gethash ',name *predicate-types*) (specifier-type ',type)) - (setq *type-predicates* - (cons (cons (specifier-type ',type) ',name) - (remove ',name *type-predicates* :key #'cdr))) - (%deftransform ',name '(function (t) *) #'fold-type-predicate) - ',name)) - + `(%define-type-predicate ',name ',type)) +;;; +(defun %define-type-predicate (name specifier) + (let ((type (specifier-type specifier))) + (setf (gethash name (backend-predicate-types *target-backend*)) type) + (setf (backend-type-predicates *target-backend*) + (cons (cons type name) + (remove name (backend-type-predicates *target-backend*) + :key #'cdr))) + (%deftransform name '(function (t) *) #'fold-type-predicate) + name)) ;;;; IR1 transforms: @@ -114,35 +110,39 @@ (ref-leaf (continuation-use (basic-combination-fun node)))) - *predicate-types*))) + (backend-predicate-types *backend*)))) (assert ctype) (ir1-transform-type-predicate object ctype))) ;;;; Standard type predicates: -(define-type-predicate arrayp array) -; No atom. Use (not cons) deftype. -(define-type-predicate bit-vector-p bit-vector) -(define-type-predicate characterp character) -(define-type-predicate compiled-function-p compiled-function) -(define-type-predicate complexp complex) -(define-type-predicate consp cons) -(define-type-predicate floatp float) -(define-type-predicate functionp function) -(define-type-predicate integerp integer) -(define-type-predicate keywordp keyword) -(define-type-predicate listp list) -(define-type-predicate null null) -(define-type-predicate numberp number) -(define-type-predicate rationalp rational) -(define-type-predicate simple-bit-vector-p simple-bit-vector) -(define-type-predicate simple-string-p simple-string) -(define-type-predicate simple-vector-p simple-vector) -(define-type-predicate stringp string) -(define-type-predicate structurep structure) -(define-type-predicate symbolp symbol) -(define-type-predicate vectorp vector) +(defun define-standard-type-predicates () + (define-type-predicate arrayp array) + ; No atom. Use (not cons) deftype. + (define-type-predicate bit-vector-p bit-vector) + (define-type-predicate characterp character) + (define-type-predicate compiled-function-p compiled-function) + (define-type-predicate complexp complex) + (define-type-predicate consp cons) + (define-type-predicate floatp float) + (define-type-predicate functionp function) + (define-type-predicate integerp integer) + (define-type-predicate keywordp keyword) + (define-type-predicate listp list) + (define-type-predicate null null) + (define-type-predicate numberp number) + (define-type-predicate rationalp rational) + (define-type-predicate simple-bit-vector-p simple-bit-vector) + (define-type-predicate simple-string-p simple-string) + (define-type-predicate simple-vector-p simple-vector) + (define-type-predicate stringp string) + (define-type-predicate structurep structure) + (define-type-predicate symbolp symbol) + (define-type-predicate vectorp vector)) + +(define-standard-type-predicates) + ;;;; Transforms for type predicates not implemented primitively: @@ -284,7 +284,7 @@ (declare (type ctype type)) (let ((res nil) (res-type nil)) - (dolist (x *type-predicates*) + (dolist (x (backend-type-predicates *backend*)) (let ((stype (car x))) (when (and (csubtypep type stype) (or (not res-type) @@ -392,7 +392,8 @@ (def-source-transform typep (object spec) (if (and (consp spec) (eq (car spec) 'quote)) (let* ((type (specifier-type (cadr spec))) - (pred (cdr (assoc type *type-predicates* :test #'type=)))) + (pred (cdr (assoc type (backend-type-predicates *backend*) + :test #'type=)))) (if pred `(,pred ,object) (typecase type