X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fctor.impure.lisp;h=12c1f896b0b1384db798a0b692df0082d115aa18;hb=83659744f9caa97aa83eb562d872b1c0127403c0;hp=e8fecb14ecc5241a7cb7fc8da5d9860506c4a1ea;hpb=a6bd77d792d22785860bd082d55692f4a1c65fd7;p=sbcl.git diff --git a/tests/ctor.impure.lisp b/tests/ctor.impure.lisp index e8fecb1..12c1f89 100644 --- a/tests/ctor.impure.lisp +++ b/tests/ctor.impure.lisp @@ -11,8 +11,11 @@ ;;;; absolutely no warranty. See the COPYING and CREDITS files for ;;;; more information. +(load "test-util.lisp") +(load "compiler-test-util.lisp") + (defpackage "CTOR-TEST" - (:use "CL")) + (:use "CL" "TEST-UTIL" "COMPILER-TEST-UTIL")) (in-package "CTOR-TEST") @@ -68,7 +71,7 @@ (make-instance 'one-slot-subclass :b b)) (compile 'make-one-slot-subclass) -(defmethod update-instance-for-redifined-class +(defmethod update-instance-for-redefined-class ((object one-slot-superclass) added discarded plist &rest initargs) (declare (ignore initargs)) (error "Called U-I-F-R-C on ~A" object)) @@ -83,5 +86,156 @@ (assert (= (slot-value (make-one-slot-subclass 2) 'b) 2)) (assert (= (slot-value (funcall #'(sb-pcl::ctor one-slot-subclass nil :b sb-pcl::\.p0.) 4) 'b) 4)) + +;;; Tests for CTOR optimization of non-constant class args and constant class object args +(defun find-ctor-caches (fun) + (remove-if-not (lambda (value) + (and (consp value) (eq 'sb-pcl::ctor-cache (car value)))) + (find-value-cell-values fun))) + +(let* ((cmacro (compiler-macro-function 'make-instance)) + (opt 0) + (wrapper (lambda (form env) + (let ((res (funcall cmacro form env))) + (unless (eq form res) + (incf opt)) + res)))) + (sb-ext:without-package-locks + (unwind-protect + (progn + (setf (compiler-macro-function 'make-instance) wrapper) + (with-test (:name (make-instance :non-constant-class)) + (assert (= 0 opt)) + (let ((f (compile nil `(lambda (class) + (make-instance class :b t))))) + (assert (= 1 (length (find-ctor-caches f)))) + (assert (= 1 opt)) + (assert (typep (funcall f 'one-slot-subclass) 'one-slot-subclass)))) + (with-test (:name (make-instance :constant-class-object)) + (let ((f (compile nil `(lambda () + (make-instance ,(find-class 'one-slot-subclass) :b t))))) + (assert (not (find-ctor-caches f))) + (assert (= 2 opt)) + (assert (typep (funcall f) 'one-slot-subclass)))) + (with-test (:name (make-instance :constant-non-std-class-object)) + (let ((f (compile nil `(lambda () + (make-instance ,(find-class 'structure-object)))))) + (assert (not (find-ctor-caches f))) + (assert (= 3 opt)) + (assert (typep (funcall f) 'structure-object)))) + (with-test (:name (make-instance :constant-non-std-class-name)) + (let ((f (compile nil `(lambda () + (make-instance 'structure-object))))) + (assert (not (find-ctor-caches f))) + (assert (= 4 opt)) + (assert (typep (funcall f) 'structure-object))))) + (setf (compiler-macro-function 'make-instance) cmacro)))) + +(with-test (:name (make-instance :ctor-inline-cache-resize)) + (let* ((f (compile nil `(lambda (name) (make-instance name)))) + (classes (loop repeat (* 2 sb-pcl::+ctor-table-max-size+) + collect (class-name (eval `(defclass ,(gentemp) () ()))))) + (count 0) + (caches (find-ctor-caches f)) + (cache (pop caches))) + (assert cache) + (assert (not caches)) + (assert (not (cdr cache))) + (dolist (class classes) + (assert (typep (funcall f (if (oddp count) class (find-class class))) class)) + (incf count) + (cond ((<= count sb-pcl::+ctor-list-max-size+) + (unless (consp (cdr cache)) + (error "oops, wanted list cache, got: ~S" cache)) + (unless (= count (length (cdr cache))) + (error "oops, wanted ~S elts in cache, got: ~S" count cache))) + (t + (assert (simple-vector-p (cdr cache)))))) + (dolist (class classes) + (assert (typep (funcall f (if (oddp count) class (find-class class))) class)) + (incf count)))) + +;;; Make sure we get default initargs right with on the FAST-MAKE-INSTANCE path CTORs +(defclass some-class () + ((aroundp :initform nil :reader aroundp)) + (:default-initargs :x :success1)) + +(defmethod initialize-instance :around ((some-class some-class) &key (x :fail?)) + (unless (eq x :success1) + (error "Default initarg lossage")) + (setf (slot-value some-class 'aroundp) t) + (when (next-method-p) + (call-next-method))) + +(with-test (:name (make-instance :ctor-default-initargs-1)) + (assert (aroundp (eval `(make-instance 'some-class)))) + (let ((fun (compile nil `(lambda () (make-instance 'some-class))))) + (assert (aroundp (funcall fun))) + ;; make sure we tested what we think we tested... + (let ((ctors (find-named-callees fun :type 'sb-pcl::ctor))) + (assert ctors) + (assert (not (cdr ctors))) + (assert (find-named-callees (car ctors) :name 'sb-pcl::fast-make-instance))))) + +;;; Make sure we get default initargs right with on the FAST-MAKE-INSTANCE path CTORs +;;; in more interesting cases as well... +(defparameter *some-counter* 0) +(let* ((x 'success2)) + (defclass some-class2 () + ((aroundp :initform nil :reader aroundp)) + (:default-initargs :x (progn (incf *some-counter*) x)))) + +(defmethod initialize-instance :around ((some-class some-class2) &key (x :fail2?)) + (unless (eq x 'success2) + (error "Default initarg lossage")) + (setf (slot-value some-class 'aroundp) t) + (when (next-method-p) + (call-next-method))) + +(with-test (:name (make-instance :ctor-default-initargs-2)) + (assert (= 0 *some-counter*)) + (assert (aroundp (eval `(make-instance 'some-class2)))) + (assert (= 1 *some-counter*)) + (let ((fun (compile nil `(lambda () (make-instance 'some-class2))))) + (assert (= 1 *some-counter*)) + (assert (aroundp (funcall fun))) + (assert (= 2 *some-counter*)) + ;; make sure we tested what we think we tested... + (let ((ctors (find-named-callees fun :type 'sb-pcl::ctor))) + (assert ctors) + (assert (not (cdr ctors))) + (assert (find-named-callees (car ctors) :name 'sb-pcl::fast-make-instance))))) + +;;; No compiler notes, please +(locally (declare (optimize safety)) + (defclass type-check-thing () + ((slot :type (integer 0) :initarg :slot)))) +(with-test (:name (make-instance :no-compile-note-at-runtime)) + (let ((fun (compile nil `(lambda (x) + (declare (optimize safety)) + (make-instance 'type-check-thing :slot x))))) + (handler-bind ((sb-ext:compiler-note #'error)) + (funcall fun 41) + (funcall fun 13)))) + +;;; NO-APPLICABLE-METHOD called +(defmethod no-applicable-method ((gf (eql #'make-instance)) &rest args) + (cons :no-applicable-method args)) +(with-test (:name :constant-invalid-class-arg) + (assert (equal + '(:no-applicable-method "FOO" :quux 14) + (funcall (compile nil `(lambda (x) (make-instance "FOO" :quux x))) 14))) + (assert (equal + '(:no-applicable-method 'abc zot 1 bar 2) + (funcall (compile nil `(lambda (x y) (make-instance ''abc 'zot x 'bar y))) + 1 2)))) +(with-test (:name :variable-invalid-class-arg) + (assert (equal + '(:no-applicable-method "FOO" :quux 14) + (funcall (compile nil `(lambda (c x) (make-instance c :quux x))) "FOO" 14))) + (assert (equal + '(:no-applicable-method 'abc zot 1 bar 2) + (funcall (compile nil `(lambda (c x y) (make-instance c 'zot x 'bar y))) + ''abc 1 2)))) ;;;; success