;;;; miscellaneous compiler tests with side-effects (e.g. DEFUN ;;;; changing FDEFINITIONs and globaldb stuff) ;;;; 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. (cl:in-package :cl-user) (declaim (optimize (debug 3) (speed 2) (space 1))) ;;; Until version 0.6.9 or so, SBCL's version of Python couldn't this ;;; correctly, due to the bug patched by Rob MacLachlan on the ;;; cmucl-imp list 2000-06-21, and apply to SBCL by Martin Atzmueller. ;;; (The effectiveness of the test also depends on the implicit ;;; function typing of Python (where DEFUN is like DECLAIM FTYPE), ;;; which violates the ANSI spec, and should be fixed. Once that ;;; unrelated bug is fixed, this code will no longer test the type ;;; inference behavior it's intended to test.) (defun emptyvalues (&rest rest) (declare (ignore rest)) (values)) (defstruct foo x y) (defun bar () (let ((res (emptyvalues))) (unless (typep res 'foo) 'expected-value))) (assert (eq (bar) 'expected-value)) (declaim (ftype (function (real) (values integer single-float)) valuesify)) (defun valuesify (x) (values (round x) (coerce x 'single-float))) (defun exercise-valuesify (x) (multiple-value-bind (i f) (valuesify x) (declare (type integer i)) (declare (type single-float f)) (+ i f))) (assert (= (exercise-valuesify 1.25) 2.25)) ;;; Don Geddis reported this test case 25 December 1999 on a CMU CL ;;; mailing list: dumping circular lists caused an infinite loop. ;;; Douglas Crosher reported a patch 27 Dec 1999. The patch was tested ;;; on SBCL by Martin Atzmueller 2 Nov 2000, and merged in ;;; sbcl-0.6.8.11. (defun q1 () (dolist (x '#1=("A" "B" . #1#)) x)) (defun q2 () (dolist (x '#1=("C" "D" . #1#)) x)) (defun q3 () (dolist (x '#1=("E" "F" . #1#)) x)) (defun q4 () (dolist (x '#1=("C" "D" . #1#)) x)) (defun never5 ()) (defun useful (keys) (declare (type list keys)) (loop for c in '#1=("Red" "Blue" . #1#) for key in keys )) (sb-ext:quit :unix-status 104) ; success