;;;; tests that dynamic-extent functionality works. ;;;; This software is part of the SBCL system. See the README file for ;;;; more information. ;;;; ;;;; While most of SBCL is derived from the CMU CL system, the test ;;;; files (like this one) were written from scratch after the fork ;;;; from CMU CL. ;;;; ;;;; This software is in the public domain and is provided with ;;;; absolutely no warranty. See the COPYING and CREDITS files for ;;;; more information. (setq sb-c::*check-consistency* t) (defmacro defun-with-dx (name arglist &body body) `(locally (declare (optimize sb-c::stack-allocate-dynamic-extent)) (defun ,name ,arglist ,@body))) (declaim (notinline opaque-identity)) (defun opaque-identity (x) x) ;;; &REST lists (defun-with-dx dxlength (&rest rest) (declare (dynamic-extent rest)) (length rest)) (assert (= (dxlength 1 2 3) 3)) (assert (= (dxlength t t t t t t) 6)) (assert (= (dxlength) 0)) (defun callee (list) (destructuring-bind (a b c d e f &rest g) list (+ a b c d e f (length g)))) (defun-with-dx dxcaller (&rest rest) (declare (dynamic-extent rest)) (callee rest)) (assert (= (dxcaller 1 2 3 4 5 6 7) 22)) ;;; %NIP-VALUES (defun-with-dx test-nip-values () (flet ((bar (x &rest y) (declare (dynamic-extent y)) (if (> x 0) (values x (length y)) (values (car y))))) (multiple-value-call #'values (bar 1 2 3 4 5 6) (bar -1 'a 'b)))) (assert (equal (multiple-value-list (test-nip-values)) '(1 5 a))) ;;; LET-variable substitution (defun-with-dx test-let-var-subst1 (x) (let ((y (list x (1- x)))) (opaque-identity :foo) (let ((z (the list y))) (declare (dynamic-extent z)) (length z)))) (assert (eql (test-let-var-subst1 17) 2)) (defun-with-dx test-let-var-subst2 (x) (let ((y (list x (1- x)))) (declare (dynamic-extent y)) (opaque-identity :foo) (let ((z (the list y))) (length z)))) (assert (eql (test-let-var-subst2 17) 2)) ;;; DX propagation through LET-return. (defun-with-dx test-lvar-subst (x) (let ((y (list x (1- x)))) (declare (dynamic-extent y)) (second (let ((z (the list y))) (opaque-identity :foo) z)))) (assert (eql (test-lvar-subst 11) 10)) ;;; this code is incorrect, but the compiler should not fail (defun-with-dx test-let-var-subst-incorrect (x) (let ((y (list x (1- x)))) (opaque-identity :foo) (let ((z (the list y))) (declare (dynamic-extent z)) (opaque-identity :bar) z))) (defmacro assert-no-consing (form &optional times) `(%assert-no-consing (lambda () ,form ,times))) (defun %assert-no-consing (thunk &optional times) (let ((before (get-bytes-consed)) (times (or times 10000))) (declare (type (integer 1 *) times)) (dotimes (i times) (funcall thunk)) (assert (< (- (get-bytes-consed) before) times)))) #+x86 (progn (assert-no-consing (dxlength 1 2 3)) (assert-no-consing (dxlength t t t t t t)) (assert-no-consing (dxlength)) (assert-no-consing (dxcaller 1 2 3 4 5 6 7)) (assert-no-consing (test-nip-values)) (assert-no-consing (test-let-var-subst1 17)) (assert-no-consing (test-let-var-subst2 17)) (assert-no-consing (test-lvar-subst 11)) ) (sb-ext:quit :unix-status 104)