X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Ffloat-tran.lisp;h=b05138a033b8886e9846cdcb7da1be420ca6bc4e;hb=45bc305be4e269d2e1a477c8e0ae9a64df1ccd1c;hp=8a3a055cb8bf7e95c9b297ac96932b167e04578f;hpb=c2431e2d0d0222a3cf20cfdfa48201bdcc65cd76;p=sbcl.git diff --git a/src/compiler/float-tran.lisp b/src/compiler/float-tran.lisp index 8a3a055..b05138a 100644 --- a/src/compiler/float-tran.lisp +++ b/src/compiler/float-tran.lisp @@ -15,8 +15,8 @@ ;;;; coercions -(defknown %single-float (real) single-float (movable foldable flushable)) -(defknown %double-float (real) double-float (movable foldable flushable)) +(defknown %single-float (real) single-float (movable foldable)) +(defknown %double-float (real) double-float (movable foldable)) (deftransform float ((n f) (* single-float) *) '(%single-float n)) @@ -267,24 +267,33 @@ ;;; defined range. Quite useful if we want to convert some type of ;;; bounded integer into a float. (macrolet - ((frob (fun type) + ((frob (fun type most-negative most-positive) (let ((aux-name (symbolicate fun "-DERIVE-TYPE-AUX"))) `(progn - (defun ,aux-name (num) - ;; When converting a number to a float, the limits are - ;; the same. - (let* ((lo (bound-func (lambda (x) - (coerce x ',type)) - (numeric-type-low num))) - (hi (bound-func (lambda (x) - (coerce x ',type)) - (numeric-type-high num)))) - (specifier-type `(,',type ,(or lo '*) ,(or hi '*))))) - - (defoptimizer (,fun derive-type) ((num)) - (one-arg-derive-type num #',aux-name #',fun)))))) - (frob %single-float single-float) - (frob %double-float double-float)) + (defun ,aux-name (num) + ;; When converting a number to a float, the limits are + ;; the same. + (let* ((lo (bound-func (lambda (x) + (if (< x ,most-negative) + ,most-negative + (coerce x ',type))) + (numeric-type-low num))) + (hi (bound-func (lambda (x) + (if (< ,most-positive x ) + ,most-positive + (coerce x ',type))) + (numeric-type-high num)))) + (specifier-type `(,',type ,(or lo '*) ,(or hi '*))))) + + (defoptimizer (,fun derive-type) ((num)) + (handler-case + (one-arg-derive-type num #',aux-name #',fun) + (type-error () + nil))))))) + (frob %single-float single-float + most-negative-single-float most-positive-single-float) + (frob %double-float double-float + most-negative-double-float most-positive-double-float)) ) ; PROGN ;;;; float contagion