0.7.1.35:
[sbcl.git] / tests / compiler-1.impure-cload.lisp
1 ;;;; miscellaneous compiler tests with side effects (e.g. DEFUN
2 ;;;; changing FDEFINITIONs and globaldb stuff)
3
4 ;;;; This software is part of the SBCL system. See the README file for
5 ;;;; more information.
6 ;;;;
7 ;;;; While most of SBCL is derived from the CMU CL system, the test
8 ;;;; files (like this one) were written from scratch after the fork
9 ;;;; from CMU CL.
10 ;;;; 
11 ;;;; This software is in the public domain and is provided with
12 ;;;; absolutely no warranty. See the COPYING and CREDITS files for
13 ;;;; more information.
14
15 (cl:in-package :cl-user)
16
17 (declaim (optimize (debug 3) (speed 2) (space 1)))
18
19 ;;; Until version 0.6.9 or so, SBCL's version of Python couldn't do
20 ;;; this correctly, due to the bug patched by Rob MacLachlan on the
21 ;;; cmucl-imp list 2000-06-21, and applied to SBCL by Martin Atzmueller.
22 ;;; (The effectiveness of the test also depends on the implicit
23 ;;; function typing of Python (where DEFUN is like DECLAIM FTYPE),
24 ;;; which violates the ANSI spec, and should be fixed. Once that
25 ;;; unrelated bug is fixed, this code will no longer test the type
26 ;;; inference behavior it's intended to test.)
27 (defun emptyvalues (&rest rest) (declare (ignore rest)) (values))
28 (defstruct foo x y)
29 (defun bar ()
30   (let ((res (emptyvalues)))
31     (unless (typep res 'foo)
32       'expected-value)))
33 (assert (eq (bar) 'expected-value))
34
35 (declaim (ftype (function (real) (values integer single-float)) valuesify))
36 (defun valuesify (x)
37   (values (round x)
38           (coerce x 'single-float)))
39 (defun exercise-valuesify (x)
40   (multiple-value-bind (i f) (valuesify x)
41     (declare (type integer i))
42     (declare (type single-float f))
43     (+ i f)))
44 (assert (= (exercise-valuesify 1.25) 2.25))
45
46 ;;; An early version (sbcl-0.6.11.33) of code to check FTYPEs from DEFUN
47 ;;; against DECLAIMed FTYPEs blew up when an FTYPE was DECLAIMed
48 ;;; to be pure FUNCTION, because the internal representation of
49 ;;; FUNCTION itself (as opposed to subtypes of FUNCTION, such as
50 ;;; (FUNCTION () T)) is a BUILT-IN-CLASS object, not a FUN-TYPE
51 ;;; object.
52 (declaim (ftype function i-am-just-a-function))
53 (defun i-am-just-a-function (x y) (+ x y 1))
54
55 ;;; Stig E SandPHI (where PHI is some phi-like character not
56 ;;; representable in ASCII) reported in cclan-Bugs-431263 that SBCL
57 ;;; couldn't compile this. sbcl-0.6.12.26 died in CIRCULAR-LIST-P with
58 ;;; "The value \"EST\" is not of type LIST." Dan Barlow fixed it.
59 (defvar +time-zones+
60   '((5 "EDT" . "EST") (6 "CDT" . "CST") (7 "MDT" .
61 "MST") (8 "PDT" . "PST")
62     (0 "GMT" . "GDT") (-2 "MET" . "MET DST"))
63   "*The string representations of the time zones.")
64
65 ;;; The old CMU CL Python compiler assumed that it was safe to infer
66 ;;; function types (including return types) from function definitions
67 ;;; and then use them to optimize code later. This is of course bad
68 ;;; when functions are redefined. The problem was fixed in
69 ;;; sbcl-0.6.12.57.
70 (defun foo (x)
71   (if (plusp x)
72       1.0
73       0))
74 (defun bar (x)
75   (typecase (foo x)
76     (fixnum :fixnum)
77     (real :real)
78     (string :string)
79     (t :t)))
80 (assert (eql (bar 11) :real))
81 (assert (eql (bar -11) :fixnum))
82 (setf (symbol-function 'foo) #'identity)
83 (assert (eql (bar 11) :fixnum))
84 (assert (eql (bar -11.0) :real))
85 (assert (eql (bar "this is a test") :string))
86 (assert (eql (bar (make-hash-table)) :t))
87
88 ;;; bug reported by Brian Spilsbury sbcl-devel 2001-09-30, fixed by
89 ;;; Alexey Dejneka patch sbcl-devel 2001-10-02
90 (defun pixarray-element-size (pixarray)
91   (let ((eltype (array-element-type pixarray)))
92     (cond ((eq eltype 'bit) 1)
93           ((and (listp eltype)
94                 (eq (first eltype) 'unsigned-byte))
95            (second eltype))
96           (t
97            (error "Invalid pixarray: ~S." pixarray)))))
98 (assert (eql 1 (pixarray-element-size #*110)))
99
100 (sb-ext:quit :unix-status 104) ; success