X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcompiler%2Fconstantp.lisp;h=0e2f4af8be975a0bff9b251531695ed4d20ba97b;hb=0ca182b2e0fd9a7fc8005bef9d21000b326208fc;hp=97e27a9325437dc7284d602ec6e681a90b20dd1a;hpb=3d2165e67f9ad1443f6e7d8ad24810000b0436e8;p=sbcl.git diff --git a/src/compiler/constantp.lisp b/src/compiler/constantp.lisp index 97e27a9..0e2f4af 100644 --- a/src/compiler/constantp.lisp +++ b/src/compiler/constantp.lisp @@ -81,9 +81,16 @@ (let ((info (info :function :info name))) (and info (ir1-attributep (fun-info-attributes info) foldable))) - (every (lambda (arg) - (%constantp arg environment envp)) - (cdr form))))) + (and (every (lambda (arg) + (%constantp arg environment envp)) + (cdr form)) + ;; Even though the function may be marked as foldable + ;; the call may still signal an error -- eg: (CAR 1). + (handler-case + (progn + (constant-function-call-value form environment envp) + t) + (error () nil)))))) (defun constant-function-call-value (form environment envp) (apply (fdefinition (car form)) @@ -172,14 +179,13 @@ constantness of the FORM in ENVIRONMENT." :test (every #'constantp* (cons protected-form cleanup-forms)) :eval (constant-form-value* protected-form)) - (defconstantp the (value-type form) - :test (constantp* form) - :eval (let ((value (constant-form-value* form))) - (if (typep value value-type) - value - (error 'type-error - :datum value - :expected-type value-type)))) + (defconstantp the (type form) + :test (and (constantp* form) + (handler-case + ;; in case the type-spec is malformed! + (typep (constant-form-value* form) type) + (error () nil))) + :eval (constant-form-value* form)) (defconstantp block (name &body forms) ;; We currently fail to detect cases like