a87dc3398122bf3ddc3ff9516c0d01fd674ca7a3
[sbcl.git] / BUGS
1 REPORTING BUGS
2
3 Bugs can be reported on the help mailing list
4   sbcl-help@lists.sourceforge.net
5 or on the development mailing list
6   sbcl-devel@lists.sourceforge.net
7
8 Please include enough information in a bug report that someone reading
9 it can reproduce the problem, i.e. don't write
10      Subject: apparent bug in PRINT-OBJECT (or *PRINT-LENGTH*?)
11      PRINT-OBJECT doesn't seem to work with *PRINT-LENGTH*. Is this a bug?
12 but instead
13      Subject: apparent bug in PRINT-OBJECT (or *PRINT-LENGTH*?)
14      In sbcl-1.2.3 running under OpenBSD 4.5 on my Alpha box, when
15      I compile and load the file
16        (DEFSTRUCT (FOO (:PRINT-OBJECT (LAMBDA (X Y)
17                                         (LET ((*PRINT-LENGTH* 4))
18                                           (PRINT X Y)))))
19          X Y)
20      then at the command line type
21        (MAKE-FOO)
22      the program loops endlessly instead of printing the object.
23
24
25 NOTES:
26
27 There is also some information on bugs in the manual page and
28 in the TODO file. Eventually more such information may move here.
29
30 The gaps in the number sequence belong to old bug descriptions which
31 have gone away (typically because they were fixed, but sometimes for
32 other reasons, e.g. because they were moved elsewhere).
33
34
35 KNOWN BUGS OF NO SPECIAL CLASS:
36
37 2:
38   DEFSTRUCT almost certainly should overwrite the old LAYOUT information
39   instead of just punting when a contradictory structure definition
40   is loaded. As it is, if you redefine DEFSTRUCTs in a way which 
41   changes their layout, you probably have to rebuild your entire
42   program, even if you know or guess enough about the internals of
43   SBCL to wager that this (undefined in ANSI) operation would be safe.
44
45 3:
46   ANSI specifies that a type mismatch in a structure slot
47   initialization value should not cause a warning.
48 WORKAROUND:
49   This one might not be fixed for a while because while we're big
50   believers in ANSI compatibility and all, (1) there's no obvious
51   simple way to do it (short of disabling all warnings for type
52   mismatches everywhere), and (2) there's a good portable
53   workaround. ANSI justifies this specification by saying 
54     The restriction against issuing a warning for type mismatches
55     between a slot-initform and the corresponding slot's :TYPE
56     option is necessary because a slot-initform must be specified
57     in order to specify slot options; in some cases, no suitable
58     default may exist.
59   In SBCL, as in CMU CL (or, for that matter, any compiler which
60   really understands Common Lisp types) a suitable default does
61   exist, in all cases, because the compiler understands the concept
62   of functions which never return (i.e. has return type NIL, e.g.
63   ERROR). Thus, as a portable workaround, you can use a call to
64   some known-never-to-return function as the default. E.g.
65     (DEFSTRUCT FOO
66       (BAR (ERROR "missing :BAR argument")
67            :TYPE SOME-TYPE-TOO-HAIRY-TO-CONSTRUCT-AN-INSTANCE-OF))
68   or 
69     (DECLAIM (FTYPE () NIL) MISSING-ARG) 
70     (DEFUN REQUIRED-ARG () ; workaround for SBCL non-ANSI slot init typing
71       (ERROR "missing required argument")) 
72     (DEFSTRUCT FOO
73       (BAR (REQUIRED-ARG) :TYPE TRICKY-TYPE-OF-SOME-SORT)
74       (BLETCH (REQUIRED-ARG) :TYPE TRICKY-TYPE-OF-SOME-SORT)
75       (N-REFS-SO-FAR 0 :TYPE (INTEGER 0)))
76   Such code will compile without complaint and work correctly either
77   on SBCL or on a completely compliant Common Lisp system.
78
79 6:
80   bogus warnings about undefined functions for magic functions like
81   SB!C::%%DEFUN and SB!C::%DEFCONSTANT when cross-compiling files
82   like src/code/float.lisp. Fixing this will probably require
83   straightening out enough bootstrap consistency issues that
84   the cross-compiler can run with *TYPE-SYSTEM-INITIALIZED*.
85   Instead, the cross-compiler runs in a slightly flaky state
86   which is sane enough to compile SBCL itself, but which is
87   also unstable in several ways, including its inability
88   to really grok function declarations.
89
90 7:
91   The "byte compiling top-level form:" output ought to be condensed.
92   Perhaps any number of such consecutive lines ought to turn into a
93   single "byte compiling top-level forms:" line.
94
95 9:
96   The handling of IGNORE declarations on lambda list arguments of
97   DEFMETHOD is at least weird, and in fact seems broken and useless.
98   I should fix up another layer of binding, declared IGNORABLE, for
99   typed lambda list arguments.
100
101 10:
102   The way that the compiler munges types with arguments together
103   with types with no arguments (in e.g. TYPE-EXPAND) leads to
104   weirdness visible to the user:
105         (DEFTYPE FOO () 'FIXNUM)
106         (TYPEP 11 'FOO) => T
107         (TYPEP 11 '(FOO)) => T, which seems weird
108         (TYPEP 11 'FIXNUM) => T
109         (TYPEP 11 '(FIXNUM)) signals an error, as it should
110   The situation is complicated by the presence of Common Lisp types
111   like UNSIGNED-BYTE (which can either be used in list form or alone)
112   so I'm not 100% sure that the behavior above is actually illegal.
113   But I'm 90+% sure, and someday perhaps I'll be motivated to look it up..
114
115 11:
116   It would be nice if the
117         caught ERROR:
118           (during macroexpansion)
119   said what macroexpansion was at fault, e.g.
120         caught ERROR:
121           (during macroexpansion of IN-PACKAGE,
122           during macroexpansion of DEFFOO)
123
124 12:
125   The type system doesn't understand the KEYWORD type very well:
126         (SUBTYPEP 'KEYWORD 'SYMBOL) => NIL, NIL
127   It might be possible to fix this by changing the definition of
128   KEYWORD to (AND SYMBOL (SATISFIES KEYWORDP)), but the type system
129   would need to be a bit smarter about AND types, too:
130         (SUBTYPEP '(AND SYMBOL KEYWORD) 'SYMBOL) => NIL, NIL
131   (The type system does know something about AND types already,
132         (SUBTYPEP '(AND INTEGER FLOAT) 'NUMBER) => T, T
133         (SUBTYPEP '(AND INTEGER FIXNUM) 'NUMBER) =>T, T
134   so likely this is a small patch.)
135
136 13:
137   Floating point infinities are screwed up. [When I was converting CMU CL
138   to SBCL, I was looking for complexity to delete, and I thought it was safe
139   to just delete support for floating point infinities. It wasn't: they're
140   generated by the floating point hardware even when we remove support
141   for them in software. -- WHN] Support for them should be restored.
142
143 14:
144   The ANSI syntax for non-STANDARD method combination types in CLOS is
145         (DEFGENERIC FOO (X) (:METHOD-COMBINATION PROGN))
146         (DEFMETHOD FOO PROGN ((X BAR)) (PRINT 'NUMBER))
147   If you mess this up, omitting the PROGN qualifier in in DEFMETHOD,
148         (DEFGENERIC FOO (X) (:METHOD-COMBINATION PROGN))
149         (DEFMETHOD FOO ((X BAR)) (PRINT 'NUMBER))
150   the error mesage is not easy to understand:
151            INVALID-METHOD-ERROR was called outside the dynamic scope
152         of a method combination function (inside the body of
153         DEFINE-METHOD-COMBINATION or a method on the generic
154         function COMPUTE-EFFECTIVE-METHOD).
155   It would be better if it were more informative, a la
156            The method combination type for this method (STANDARD) does
157         not match the method combination type for the generic function
158         (PROGN).
159   Also, after you make the mistake of omitting the PROGN qualifier
160   on a DEFMETHOD, doing a new DEFMETHOD with the correct qualifier
161   no longer works:
162         (DEFMETHOD FOO PROGN ((X BAR)) (PRINT 'NUMBER))
163   gives
164            INVALID-METHOD-ERROR was called outside the dynamic scope
165         of a method combination function (inside the body of
166         DEFINE-METHOD-COMBINATION or a method on the generic
167         function COMPUTE-EFFECTIVE-METHOD).
168   This is not very helpful..
169
170 15:
171   (SUBTYPEP '(FUNCTION (T BOOLEAN) NIL)
172             '(FUNCTION (FIXNUM FIXNUM) NIL)) => T, T
173   (Also, when this is fixed, we can enable the code in PROCLAIM which 
174   checks for incompatible FTYPE redeclarations.)
175
176 16:
177   The ANSI spec says that CONS can be a compound type spec, e.g.
178   (CONS FIXNUM REAL). SBCL doesn't support this.
179
180 18:
181   from DTC on the CMU CL mailing list 25 Feb 2000:
182 ;;; Compiler fails when this file is compiled.
183 ;;;
184 ;;; Problem shows up in delete-block within ir1util.lisp. The assertion
185 ;;; (assert (member (functional-kind lambda) '(:let :mv-let :assignment)))
186 ;;; fails within bind node branch.
187 ;;;
188 ;;; Note that if c::*check-consistency* is enabled then an un-reached
189 ;;; entry is also reported.
190 ;;;
191 (defun foo (val)
192   (declare (values nil))
193   nil)
194 (defun bug (val)
195   (multiple-value-call
196       #'(lambda (res)
197           (block nil
198             (tagbody
199              loop
200                (when res
201                  (return nil))
202                (go loop))))
203     (foo val))
204   (catch 'ccc1
205     (throw 'ccc1
206       (block bbbb
207         (tagbody
208
209            (let ((ttt #'(lambda () (go cccc))))
210              (declare (special ttt))
211              (return-from bbbb nil))
212
213          cccc
214            (return-from bbbb nil))))))
215
216 19:
217   (I *think* this is a bug. It certainly seems like strange behavior. But
218   the ANSI spec is scary, dark, and deep..)
219     (FORMAT NIL  "~,1G" 1.4) => "1.    "
220     (FORMAT NIL "~3,1G" 1.4) => "1.    "
221
222 20:
223   from Marco Antoniotti on cmucl-imp mailing list 1 Mar 2000:
224         (defclass ccc () ())
225         (setf (find-class 'ccc1) (find-class 'ccc))
226         (defmethod zut ((c ccc1)) 123)
227   DTC's recommended workaround from the mailing list 3 Mar 2000:
228         (setf (pcl::find-class 'ccc1) (pcl::find-class 'ccc))
229
230 22:
231   The ANSI spec, in section "22.3.5.2 Tilde Less-Than-Sign: Logical Block",
232   says that an error is signalled if ~W, ~_, ~<...~:>, ~I, or ~:T is used
233   inside "~<..~>" (without the colon modifier on the closing syntax).
234   However, SBCL doesn't do this:
235         * (FORMAT T "~<munge~wegnum~>" 12)
236         munge12egnum
237         NIL
238
239 23:
240   When too many files are opened, OPEN will fail with an
241   uninformative error message 
242         error in function OPEN: error opening #P"/tmp/foo.lisp": NIL
243   instead of saying that too many files are open.
244
245 24:
246   Right now, when COMPILE-FILE has a read error, it actually pops
247   you into the debugger before giving up on the file. It should
248   instead handle the error, perhaps issuing (and handling)
249   a secondary error "caught ERROR: unrecoverable error during compilation"
250   and then return with FAILURE-P true,
251
252 25:
253   from CMU CL mailing list 01 May 2000 
254
255 I realize I can take care of this by doing (proclaim (ignore pcl::.slots1.))
256 but seeing as .slots0. is not-exported, shouldn't it be ignored within the
257 +expansion
258 when not used?
259  
260 In: DEFMETHOD FOO-BAR-BAZ (RESOURCE-TYPE)
261   (DEFMETHOD FOO-BAR-BAZ
262              ((SELF RESOURCE-TYPE))
263              (SETF (SLOT-VALUE SELF 'NAME) 3))
264 --> BLOCK MACROLET PCL::FAST-LEXICAL-METHOD-FUNCTIONS
265 --> PCL::BIND-FAST-LEXICAL-METHOD-MACROS MACROLET
266 --> PCL::BIND-LEXICAL-METHOD-FUNCTIONS LET PCL::BIND-ARGS LET* PCL::PV-BINDING
267 --> PCL::PV-BINDING1 PCL::PV-ENV LET
268 ==>
269   (LET ((PCL::.SLOTS0. #))
270     (PROGN SELF)
271     (BLOCK FOO-BAR-BAZ
272       (LET #
273         #)))
274 Warning: Variable PCL::.SLOTS0. defined but never used.
275  
276 Compilation unit finished.
277   1 warning
278
279 #<Standard-Method FOO-BAR-BAZ (RESOURCE-TYPE) {480918FD}>
280
281 26:
282   reported by Sam Steingold on the cmucl-imp mailing list 12 May 2000:
283
284 Also, there is another bug: `array-displacement' should return an array
285 or nil as first value (as per ANSI CL), while CMUCL declares it as
286 returning an array as first value always.
287
288 27:
289   Sometimes (SB-EXT:QUIT) fails with 
290         Argh! maximum interrupt nesting depth (4096) exceeded, exiting
291         Process inferior-lisp exited abnormally with code 1
292   I haven't noticed a repeatable case of this yet.
293
294 29:
295   some sort of bug in inlining and RETURN-FROM in sbcl-0.6.5: Compiling
296     (DEFUN BAR? (X)
297       (OR (NAR? X)
298           (BLOCK USED-BY-SOME-Y?
299             (FLET ((FROB (STK)
300                      (DOLIST (Y STK)
301                        (UNLESS (REJECTED? Y)
302                          (RETURN-FROM USED-BY-SOME-Y? T)))))
303               (DECLARE (INLINE FROB))
304               (FROB (RSTK X))
305               (FROB (MRSTK X)))
306             NIL)))
307   gives
308    error in function SB-KERNEL:ASSERT-ERROR:
309    The assertion (EQ (SB-C::CONTINUATION-KIND SB-C::CONT) :BLOCK-START) failed.
310   This is still present in sbcl-0.6.8.
311
312 30:
313   The CMU CL reader code takes liberties in binding the standard read table
314   when reading the names of characters. Tim Moore posted a patch to the 
315   CMU CL mailing list Mon, 22 May 2000 21:30:41 -0700.
316
317 31:
318   In some cases the compiler believes type declarations on array
319   elements without checking them, e.g.
320         (DECLAIM (OPTIMIZE (SAFETY 3) (SPEED 1) (SPACE 1)))
321         (DEFSTRUCT FOO A B)
322         (DEFUN BAR (X)
323           (DECLARE (TYPE (SIMPLE-ARRAY CONS 1) X))
324           (WHEN (CONSP (AREF X 0))
325             (PRINT (AREF X 0))))
326         (BAR (VECTOR (MAKE-FOO :A 11 :B 12)))
327   prints
328         #S(FOO :A 11 :B 12) 
329   in SBCL 0.6.5 (and also in CMU CL 18b). This does not happen for
330   all cases, e.g. the type assumption *is* checked if the array
331   elements are declared to be of some structure type instead of CONS.
332
333 32:
334   The printer doesn't report closures very well. This is true in 
335   CMU CL 18b as well:
336     (PRINT #'CLASS-NAME)
337   gives
338     #<Closure Over Function "DEFUN STRUCTURE-SLOT-ACCESSOR" {134D1A1}>
339   It would be nice to make closures have a settable name slot,
340   and make things like DEFSTRUCT and FLET, which create closures,
341   set helpful values into this slot.
342
343 33:
344   And as long as we're wishing, it would be awfully nice if INSPECT could
345   also report on closures, telling about the values of the bound variables.
346
347 34:
348   as reported by Robert Strandh on the CMU CL mailing list 12 Jun 2000:
349     $ cat xx.lisp
350     (defconstant +a-constant+ (make-instance 'a-class))
351     (defconstant +another-constant+ (vector +a-constant+))
352     $ lisp
353     CMU Common Lisp release x86-linux 2.4.19  8 February 2000 build 456,
354     running on
355     bobby
356     Send bug reports and questions to your local CMU CL maintainer,
357     or to pvaneynd@debian.org
358     or to cmucl-help@cons.org. (prefered)
359     type (help) for help, (quit) to exit, and (demo) to see the demos
360     Loaded subsystems:
361       Python 1.0, target Intel x86
362       CLOS based on PCL version:  September 16 92 PCL (f)
363     * (defclass a-class () ())
364     #<STANDARD-CLASS A-CLASS {48027BD5}>
365     * (compile-file "xx.lisp")
366     Python version 1.0, VM version Intel x86 on 12 JUN 00 08:12:55 am.
367     Compiling:
368     /home/strandh/Research/Functional/Common-Lisp/CLIM/Development/McCLIM
369     /xx.lisp 12 JUN 00 07:47:14 am
370     Compiling Load Time Value of (PCL::GET-MAKE-INSTANCE-FUNCTION-SYMBOL
371     '(A-CLASS NIL NIL)):
372     Byte Compiling Top-Level Form:
373     Error in function C::DUMP-STRUCTURE:  Attempt to dump invalid
374     structure:
375       #<A-CLASS {4803A5B5}>
376     How did this happen?
377
378 35:
379   The compiler assumes that any time a function of declared FTYPE
380   doesn't signal an error, its arguments were of the declared type.
381   E.g. compiling and loading
382     (DECLAIM (OPTIMIZE (SAFETY 3)))
383     (DEFUN FACTORIAL (X) (GAMMA (1+ X)))
384     (DECLAIM (FTYPE (FUNCTION (UNSIGNED-BYTE) FACTORIAL)))
385     (DEFUN FOO (X)
386       (COND ((> (FACTORIAL X) 1.0E6)
387              (FORMAT T "too big~%"))
388             ((INTEGERP X)
389              (FORMAT T "exactly ~S~%" (FACTORIAL X)))
390             (T
391              (FORMAT T "approximately ~S~%" (FACTORIAL X)))))
392   then executing
393     (FOO 1.5)
394   will cause the INTEGERP case to be selected, giving bogus output a la
395     exactly 1.33..
396   This violates the "declarations are assertions" principle.
397   According to the ANSI spec, in the section "System Class FUNCTION",
398   this is a case of "lying to the compiler", but the lying is done
399   by the code which calls FACTORIAL with non-UNSIGNED-BYTE arguments,
400   not by the unexpectedly general definition of FACTORIAL. In any case,
401   "declarations are assertions" means that lying to the compiler should
402   cause an error to be signalled, and should not cause a bogus
403   result to be returned. Thus, the compiler should not assume
404   that arbitrary functions check their argument types. (It might
405   make sense to add another flag (CHECKED?) to DEFKNOWN to 
406   identify functions which *do* check their argument types.)
407
408 38:
409   DEFMETHOD doesn't check the syntax of &REST argument lists properly,
410   accepting &REST even when it's not followed by an argument name:
411         (DEFMETHOD FOO ((X T) &REST) NIL)
412
413 39:
414   On the CMU CL mailing list 26 June 2000, Douglas Crosher wrote
415
416   Hannu Rummukainen wrote:
417   ...
418   > There's something weird going on with the compilation of the attached
419   > code.  Compiling and loading the file in a fresh lisp, then invoking
420   > (test-it) gives
421   Thanks for the bug report, nice to have this one fixed. It was a bug
422   in the x86 backend, the < VOP. A fix has been committed to the main
423   source, see the file compiler/x86/float.lisp.
424
425   Probably the same bug exists in SBCL.
426
427 40:
428   TYPEP treats the result of UPGRADED-ARRAY-ELEMENT-TYPE as gospel,
429   so that (TYPEP (MAKE-ARRAY 3) '(VECTOR SOMETHING-NOT-DEFINED-YET))
430   returns (VALUES T T). Probably it should be an error instead,
431   complaining that the type SOMETHING-NOT-DEFINED-YET is not defined.
432
433 41:
434   TYPEP of VALUES types is sometimes implemented very inefficiently, e.g. in 
435         (DEFTYPE INDEXOID () '(INTEGER 0 1000))
436         (DEFUN FOO (X)
437           (DECLARE (TYPE INDEXOID X))
438           (THE (VALUES INDEXOID)
439             (VALUES X)))
440   where the implementation of the type check in function FOO 
441   includes a full call to %TYPEP. There are also some fundamental problems
442   with the interpretation of VALUES types (inherited from CMU CL, and
443   from the ANSI CL standard) as discussed on the cmucl-imp@cons.org
444   mailing list, e.g. in Robert Maclachlan's post of 21 Jun 2000.
445
446 42:
447   The definitions of SIGCONTEXT-FLOAT-REGISTER and
448   %SET-SIGCONTEXT-FLOAT-REGISTER in x86-vm.lisp say they're not
449   supported on FreeBSD because the floating point state is not saved,
450   but at least as of FreeBSD 4.0, the floating point state *is* saved,
451   so they could be supported after all. Very likely 
452   SIGCONTEXT-FLOATING-POINT-MODES could now be supported, too.
453
454 43:
455   (as discussed by Douglas Crosher on the cmucl-imp mailing list ca. 
456   Aug. 10, 2000): CMUCL currently interprets 'member as '(member); same
457   issue with 'union, 'and, 'or etc. So even though according to the
458   ANSI spec, bare 'MEMBER, 'AND, and 'OR are not legal types, CMUCL
459   (and now SBCL) interpret them as legal types.
460
461 44:
462   ANSI specifies DEFINE-SYMBOL-MACRO, but it's not defined in SBCL.
463   CMU CL added it ca. Aug 13, 2000, after some discussion on the mailing
464   list, and it is probably possible to use substantially the same 
465   patches to add it to SBCL.
466
467 45:
468   a slew of floating-point-related errors reported by Peter Van Eynde
469   on July 25, 2000:
470         a: (SQRT -9.0) fails, because SB-KERNEL::COMPLEX-SQRT is undefined.
471            Similarly, COMPLEX-ASIN, COMPLEX-ACOS, COMPLEX-ACOSH, and others
472            aren't found.
473         b: SBCL's value for LEAST-POSITIVE-SHORT-FLOAT is bogus, and 
474            should probably be 1.4012985e-45. In SBCL,
475            (/ LEAST-POSITIVE-SHORT-FLOAT 2) returns a number smaller
476            than LEAST-POSITIVE-SHORT-FLOAT. Similar problems 
477            exist for LEAST-NEGATIVE-SHORT-FLOAT, LEAST-POSITIVE-LONG-FLOAT,
478            and LEAST-NEGATIVE-LONG-FLOAT.
479         c: Many expressions generate floating infinity:
480                 (/ 1 0.0)
481                 (/ 1 0.0d0)
482                 (EXPT 10.0 1000)
483                 (EXPT 10.0d0 1000)
484            PVE's regression tests want them to raise errors. SBCL
485            generates the infinities instead, which may or may not be
486            conforming behavior, but then blow it by being unable to
487            output the infinities, since support for infinities is generally
488            broken, and in particular SB-IMPL::OUTPUT-FLOAT-INFINITY is
489            undefined.
490         d: (in section12.erg) various forms a la 
491                 (FLOAT 1 DOUBLE-FLOAT-EPSILON)
492            don't give the right behavior.
493
494 46:
495   type safety errors reported by Peter Van Eynde July 25, 2000:
496         a: (COERCE (QUOTE (A B C)) (QUOTE (VECTOR * 4)))
497            => #(A B C)
498            In general lengths of array type specifications aren't
499            checked by COERCE, so it fails when the spec is
500            (VECTOR 4), (STRING 2), (SIMPLE-BIT-VECTOR 3), or whatever.
501         b: CONCATENATE has the same problem of not checking the length
502            of specified output array types. MAKE-SEQUENCE and MAP and
503            MERGE also have the same problem.
504         c: (COERCE 'AND 'FUNCTION) returns something related to
505            (MACRO-FUNCTION 'AND), but ANSI says it should raise an error.
506         d: ELT signals SIMPLE-ERROR if its index argument
507            isn't a valid index for its sequence argument, but should 
508            signal TYPE-ERROR instead.
509         e: FILE-LENGTH is supposed to signal a type error when its
510            argument is not a stream associated with a file, but doesn't.
511         f: (FLOAT-RADIX 2/3) should signal an error instead of 
512            returning 2.
513         g: (LOAD "*.lsp") should signal FILE-ERROR.
514         h: (MAKE-CONCATENATED-STREAM (MAKE-STRING-OUTPUT-STREAM))
515            should signal TYPE-ERROR.
516         i: MAKE-TWO-WAY-STREAM doesn't check that its arguments can
517            be used for input and output as needed. It should fail with
518            TYPE-ERROR when handed e.g. the results of
519            MAKE-STRING-INPUT-STREAM or MAKE-STRING-OUTPUT-STREAM in
520            the inappropriate positions, but doesn't.
521         j: (PARSE-NAMESTRING (COERCE (LIST #\f #\o #\o (CODE-CHAR 0) #\4 #\8)
522                             (QUOTE STRING)))
523            should probably signal an error instead of making a pathname with
524            a null byte in it.
525         k: READ-BYTE is supposed to signal TYPE-ERROR when its argument is 
526            not a binary input stream, but instead cheerfully reads from
527            character streams, e.g. (MAKE-STRING-INPUT-STREAM "abc").
528
529 47:
530   DEFCLASS bugs reported by Peter Van Eynde July 25, 2000:
531         a: (DEFCLASS FOO () (A B A)) should signal a PROGRAM-ERROR, and
532            doesn't.
533         b: (DEFCLASS FOO () (A B A) (:DEFAULT-INITARGS X A X B)) should
534            signal a PROGRAM-ERROR, and doesn't.
535         c: (DEFCLASS FOO07 NIL ((A :ALLOCATION :CLASS :ALLOCATION :CLASS))),
536            and other DEFCLASS forms with duplicate specifications in their
537            slots, should signal a PROGRAM-ERROR, and doesn't.
538         d: (DEFGENERIC IF (X)) should signal a PROGRAM-ERROR, but instead
539            causes a COMPILER-ERROR.
540
541 48:
542   SYMBOL-MACROLET bugs reported by Peter Van Eynde July 25, 2000:
543         a: (SYMBOL-MACROLET ((T TRUE)) ..) should probably signal
544            PROGRAM-ERROR, but SBCL accepts it instead.
545         b: SYMBOL-MACROLET should refuse to bind something which is
546            declared as a global variable, signalling PROGRAM-ERROR.
547         c: SYMBOL-MACROLET should signal PROGRAM-ERROR if something
548            it binds is declared SPECIAL inside.
549
550 49:
551   LOOP bugs reported by Peter Van Eynde July 25, 2000:
552         a: (LOOP WITH (A B) DO (PRINT 1)) is a syntax error according to
553            the definition of WITH clauses given in the ANSI spec, but
554            compiles and runs happily in SBCL.
555         b: a messy one involving package iteration:
556 interpreted Form: (LET ((PACKAGE (MAKE-PACKAGE "LOOP-TEST"))) (INTERN "blah" PACKAGE) (LET ((BLAH2 (INTERN "blah2" PACKAGE))) (EXPORT BLAH2 PACKAGE)) (LIST (SORT (LOOP FOR SYM BEING EACH PRESENT-SYMBOL OF PACKAGE FOR SYM-NAME = (SYMBOL-NAME SYM) COLLECT SYM-NAME) (FUNCTION STRING<)) (SORT (LOOP FOR SYM BEING EACH EXTERNAL-SYMBOL OF PACKAGE FOR SYM-NAME = (SYMBOL-NAME SYM) COLLECT SYM-NAME) (FUNCTION STRING<))))
557 Should be: (("blah" "blah2") ("blah2"))
558 SBCL: (("blah") ("blah2"))
559         * (LET ((X 1)) (LOOP FOR I BY (INCF X) FROM X TO 10 COLLECT I))
560           doesn't work -- SBCL's LOOP says BY isn't allowed in a FOR clause.
561
562 50:
563   type system errors reported by Peter Van Eynde July 25, 2000:
564         a: (SUBTYPEP 'BIGNUM 'INTEGER) => NIL, NIL
565            but should be (VALUES T T) instead.
566         b: (SUBTYPEP 'EXTENDED-CHAR 'CHARACTER) => NIL, NIL
567            but should be (VALUES T T) instead.
568         c: (SUBTYPEP '(INTEGER (0) (0)) 'NIL) dies with nested errors.
569         d: In general, the system doesn't like '(INTEGER (0) (0)) -- it
570            blows up at the level of SPECIFIER-TYPE with
571            "Lower bound (0) is greater than upper bound (0)." Probably
572            SPECIFIER-TYPE should return NIL instead.
573         e: (TYPEP 0 '(COMPLEX (EQL 0)) fails with
574            "Component type for Complex is not numeric: (EQL 0)."
575            This might be easy to fix; the type system already knows
576            that (SUBTYPEP '(EQL 0) 'NUMBER) is true.
577         f: The type system doesn't know about the condition system,
578            so that e.g. (TYPEP 'SIMPLE-ERROR 'ERROR)=>NIL.
579         g: The type system isn't all that smart about relationships
580            between hairy types, as shown in the type.erg test results,
581            e.g. (SUBTYPEP 'CONS '(NOT ATOM)) => NIL, NIL.
582
583 51:
584   miscellaneous errors reported by Peter Van Eynde July 25, 2000:
585         a: (PROGN
586             (DEFGENERIC FOO02 (X))
587             (DEFMETHOD FOO02 ((X NUMBER)) T)
588             (LET ((M (FIND-METHOD (FUNCTION FOO02)
589                                   NIL
590                                   (LIST (FIND-CLASS (QUOTE NUMBER))))))
591               (REMOVE-METHOD (FUNCTION FOO02) M)
592               (DEFGENERIC FOO03 (X))
593               (ADD-METHOD (FUNCTION FOO03) M)))
594            should give an error, but SBCL allows it.
595         b: READ should probably return READER-ERROR, not the bare 
596            arithmetic error, when input a la "1/0" or "1e1000" causes
597            an arithmetic error.
598
599 52:
600   It has been reported (e.g. by Peter Van Eynde) that there are 
601   several metaobject protocol "errors". (In order to fix them, we might
602   need to document exactly what metaobject protocol specification
603   we're following -- the current code is just inherited from PCL.)
604
605 53:
606   another error from Peter Van Eynde 5 September 2000:
607   (FORMAT NIL "~F" "FOO") should work, but instead reports an error.
608   PVE submitted a patch to deal with this bug, but it exposes other
609   comparably serious bugs, so I didn't apply it. It looks as though
610   the FORMAT code needs a fair amount of rewriting in order to comply
611   with the various details of the ANSI spec.
612
613 54:
614   The implementation of #'+ returns its single argument without
615   type checking, e.g. (+ "illegal") => "illegal".
616
617 55:
618   In sbcl-0.6.7, there is no doc string for CL:PUSH, probably 
619   because it's defined with the DEFMACRO-MUNDANELY macro and something
620   is wrong with doc string setting in that macro.
621
622 56:
623   Attempting to use COMPILE on something defined by DEFMACRO fails:
624         (DEFMACRO FOO (X) (CONS X X))
625         (COMPILE 'FOO)
626 Error in function C::GET-LAMBDA-TO-COMPILE:
627    #<Closure Over Function "DEFUN (SETF MACRO-FUNCTION)" {480E21B1}> was defined in a non-null environment.
628
629 58:
630   (SUBTYPEP '(AND ZILCH INTEGER) 'ZILCH)
631   => NIL, NIL
632
633 59:
634   CL:*DEFAULT-PATHNAME-DEFAULTS* doesn't behave as ANSI suggests (reflecting
635   current working directory). And there's no supported way to update
636   or query the current working directory (a la Unix "chdir" and "pwd"),
637   which is functionality that ILISP needs (and currently gets with low-level
638   hacks).
639
640 60:
641   The debugger LIST-LOCATIONS command doesn't work properly.
642
643 61:
644   Compiling and loading
645     (DEFUN FAIL (X) (THROW 'FAIL-TAG X))
646     (FAIL 12)
647   then requesting a BACKTRACE at the debugger prompt gives no information
648   about where in the user program the problem occurred.
649
650 62:
651   The compiler is supposed to do type inference well enough that 
652   the declaration in
653     (TYPECASE X
654       ((SIMPLE-ARRAY SINGLE-FLOAT)
655        (LOCALLY
656          (DECLARE (TYPE (SIMPLE-ARRAY SINGLE-FLOAT) X))
657          ..))
658       ..)
659   is redundant. However, as reported by Juan Jose Garcia Ripoll for
660   CMU CL, it sometimes doesn't. Adding declarations is a pretty good
661   workaround for the problem for now, but can't be done by the TYPECASE
662   macros themselves, since it's too hard for the macro to detect
663   assignments to the variable within the clause. 
664     Note: The compiler *is* smart enough to do the type inference in
665   many cases. This case, derived from a couple of MACROEXPAND-1
666   calls on Ripoll's original test case,
667     (DEFUN NEGMAT (A)
668       (DECLARE (OPTIMIZE SPEED (SAFETY 0)))
669       (COND ((TYPEP A '(SIMPLE-ARRAY SINGLE-FLOAT)) NIL
670              (LET ((LENGTH (ARRAY-TOTAL-SIZE A)))
671                (LET ((I 0) (G2554 LENGTH))
672                  (DECLARE (TYPE REAL G2554) (TYPE REAL I))
673                  (TAGBODY
674                   SB-LOOP::NEXT-LOOP
675                   (WHEN (>= I G2554) (GO SB-LOOP::END-LOOP))
676                   (SETF (ROW-MAJOR-AREF A I) (- (ROW-MAJOR-AREF A I)))
677                   (GO SB-LOOP::NEXT-LOOP)
678                   SB-LOOP::END-LOOP))))))
679   demonstrates the problem; but the problem goes away if the TAGBODY
680   and GO forms are removed (leaving the SETF in ordinary, non-looping
681   code), or if the TAGBODY and GO forms are retained, but the 
682   assigned value becomes 0.0 instead of (- (ROW-MAJOR-AREF A I)).
683
684 63:
685   Paul Werkowski wrote on cmucl-imp@cons.org 2000-11-15
686     I am looking into this problem that showed up on the cmucl-help
687     list. It seems to me that the "implementation specific environment
688     hacking functions" found in pcl/walker.lisp are completely messed
689     up. The good thing is that they appear to be barely used within
690     PCL and the munged environment object is passed to cmucl only
691     in calls to macroexpand-1, which is probably why this case fails.
692   SBCL uses essentially the same code, so if the environment hacking
693   is screwed up, it affects us too.
694
695 64:
696   Using the pretty-printer from the command prompt gives funny
697   results, apparently because the pretty-printer doesn't know
698   about user's command input, including the user's carriage return
699   that the user, and therefore the pretty-printer thinks that
700   the new output block should start indented 2 or more characters
701   rightward of the correct location.
702
703 65:
704   (probably related to bug #70)
705   As reported by Carl Witty on submit@bugs.debian.org 1999-05-08,
706   compiling this file
707 (in-package "CL-USER")
708 (defun equal-terms (termx termy)
709   (labels
710     ((alpha-equal-bound-term-lists (listx listy)
711        (or (and (null listx) (null listy))
712            (and listx listy
713                 (let ((bindings-x (bindings-of-bound-term (car listx)))
714                       (bindings-y (bindings-of-bound-term (car listy))))
715                   (if (and (null bindings-x) (null bindings-y))
716                       (alpha-equal-terms (term-of-bound-term (car listx))
717                                          (term-of-bound-term (car listy)))
718                       (and (= (length bindings-x) (length bindings-y))
719                            (prog2
720                                (enter-binding-pairs (bindings-of-bound-term (car listx))
721                                                     (bindings-of-bound-term (car listy)))
722                                (alpha-equal-terms (term-of-bound-term (car listx))
723                                                   (term-of-bound-term (car listy)))
724                              (exit-binding-pairs (bindings-of-bound-term (car listx))
725                                                  (bindings-of-bound-term (car listy)))))))
726                 (alpha-equal-bound-term-lists (cdr listx) (cdr listy)))))
727
728      (alpha-equal-terms (termx termy)
729        (if (and (variable-p termx)
730                 (variable-p termy))
731            (equal-bindings (id-of-variable-term termx)
732                            (id-of-variable-term termy))
733            (and (equal-operators-p (operator-of-term termx) (operator-of-term termy))
734                 (alpha-equal-bound-term-lists (bound-terms-of-term termx)
735                                               (bound-terms-of-term termy))))))
736
737     (or (eq termx termy)
738         (and termx termy
739              (with-variable-invocation (alpha-equal-terms termx termy))))))
740   causes an assertion failure
741     The assertion (EQ (C::LAMBDA-TAIL-SET C::CALLER)
742                       (C::LAMBDA-TAIL-SET (C::LAMBDA-HOME C::CALLEE))) failed.
743
744   Bob Rogers reports (1999-07-28 on cmucl-imp@cons.org) a smaller test
745   case with the same problem:
746 (defun parse-fssp-alignment ()
747   ;; Given an FSSP alignment file named by the argument . . .
748   (labels ((get-fssp-char ()
749              (get-fssp-char))
750            (read-fssp-char ()
751              (get-fssp-char)))
752     ;; Stub body, enough to tickle the bug.
753     (list (read-fssp-char)
754           (read-fssp-char))))
755
756 66:
757   ANSI specifies that the RESULT-TYPE argument of CONCATENATE must be
758   a subtype of SEQUENCE, but CONCATENATE doesn't check this properly:
759     (CONCATENATE 'SIMPLE-ARRAY #(1 2) '(3)) => #(1 2 3)
760   This also leads to funny behavior when derived type specifiers
761   are used, as originally reported by Milan Zamazal for CMU CL (on the
762   Debian bugs mailing list (?) 2000-02-27), then reported by Martin
763   Atzmueller for SBCL (2000-10-01 on sbcl-devel@lists.sourceforge.net):
764     (DEFTYPE FOO () 'SIMPLE-ARRAY)
765     (CONCATENATE 'FOO #(1 2) '(3)) 
766       => #<ARRAY-TYPE SIMPLE-ARRAY> is a bad type specifier for
767            sequence functions.
768   The derived type specifier FOO should act the same way as the 
769   built-in type SIMPLE-ARRAY here, but it doesn't. That problem
770   doesn't seem to exist for sequence types:
771     (DEFTYPE BAR () 'SIMPLE-VECTOR)
772     (CONCATENATE 'BAR #(1 2) '(3)) => #(1 2 3)
773
774 67:
775   As reported by Winton Davies on a CMU CL mailing list 2000-01-10,
776   and reported for SBCL by Martin Atzmueller 2000-10-20: (TRACE GETHASH)
777   crashes SBCL. In general tracing anything which is used in the 
778   implementation of TRACE is likely to have the same problem.
779
780 68: 
781   As reported by Daniel Solaz on cmucl-help@cons.org 2000-11-23,
782   SXHASH returns the same value for all non-STRUCTURE-OBJECT instances,
783   notably including all PCL instances. There's a limit to how much
784   SXHASH can do to return unique values for instances, but at least
785   it should probably look at the class name, the way that it does
786   for STRUCTURE-OBJECTs.
787
788 69:
789   As reported by Martin Atzmueller on the sbcl-devel list 2000-11-22,
790   > There remains one issue, that is a bug in SBCL:
791   > According to my interpretation of the spec, the ":" and "@" modifiers
792   > should appear _after_ the comma-seperated arguments.
793   > Well, SBCL (and CMUCL for that matter) accept 
794   > (ASSERT (STRING= (FORMAT NIL "~:8D" 1) "   1"))
795   > where the correct way (IMHO) should be
796   > (ASSERT (STRING= (FORMAT NIL "~8:D" 1) "   1"))
797   Probably SBCL should stop accepting the "~:8D"-style format arguments,
798   or at least issue a warning.
799
800 70:
801   (probably related to bug #65)
802   The compiler doesn't like &OPTIONAL arguments in LABELS and FLET
803   forms. E.g.
804     (DEFUN FIND-BEFORE (ITEM SEQUENCE &KEY (TEST #'EQL))
805       (LABELS ((FIND-ITEM (OBJ SEQ TEST &OPTIONAL (VAL NIL))
806                  (LET ((ITEM (FIRST SEQ)))
807                    (COND ((NULL SEQ)
808                           (VALUES NIL NIL))
809                          ((FUNCALL TEST OBJ ITEM)
810                           (VALUES VAL SEQ))
811                          (T     
812                           (FIND-ITEM OBJ (REST SEQ) TEST (NCONC VAL `(,ITEM))))))))
813       (FIND-ITEM ITEM SEQUENCE TEST)))
814   from David Young's bug report on cmucl-help@cons.org 30 Nov 2000
815   causes sbcl-0.6.9 to fail with
816     error in function SB-KERNEL:ASSERT-ERROR:
817        The assertion (EQ (SB-C::LAMBDA-TAIL-SET SB-C::CALLER)
818                          (SB-C::LAMBDA-TAIL-SET
819                           (SB-C::LAMBDA-HOME SB-C::CALLEE))) failed.
820
821 71: 
822   (DECLAIM (OPTIMIZE ..)) doesn't work. E.g. even after 
823   (DECLAIM (OPTIMIZE (SPEED 3))), things are still optimized with
824   the previous SPEED policy. This bug will probably get fixed in
825   0.6.9.x in a general cleanup of optimization policy.
826
827 72:
828   (DECLAIM (OPTIMIZE ..)) doesn't work properly inside LOCALLY forms.
829
830 74:
831   As noted in the ANSI specification for COERCE, (COERCE 3 'COMPLEX)
832   gives a result which isn't COMPLEX. The result type optimizer
833   for COERCE doesn't know this, perhaps because it was written before
834   ANSI threw this curveball: the optimizer thinks that COERCE always
835   returns a result of the specified type. Thus while the interpreted
836   function
837      (DEFUN TRICKY (X) (TYPEP (COERCE X 'COMPLEX) 'COMPLEX))
838   returns the correct result,
839      (TRICKY 3) => NIL
840   the compiled function
841      (COMPILE 'TRICKY)
842   does not:
843      (TRICKY 3) => T
844
845 75:
846   As reported by Martin Atzmueller on sbcl-devel 26 Dec 2000,
847   ANSI says that WITH-OUTPUT-TO-STRING should have a keyword
848   :ELEMENT-TYPE, but in sbcl-0.6.9 this is not defined for
849   WITH-OUTPUT-TO-STRING.
850
851
852 KNOWN BUGS RELATED TO THE IR1 INTERPRETER
853
854 (Note: At some point, the pure interpreter (actually a semi-pure
855 interpreter aka "the IR1 interpreter") will probably go away, replaced
856 by constructs like
857   (DEFUN EVAL (X) (FUNCALL (COMPILE NIL (LAMBDA ..)))))
858 and at that time these bugs should either go away automatically or
859 become more tractable to fix. Until then, they'll probably remain,
860 since some of them aren't considered urgent, and the rest are too hard
861 to fix as long as so many special cases remain. After the IR1
862 interpreter goes away is also the preferred time to start
863 systematically exterminating cases where debugging functionality
864 (backtrace, breakpoint, etc.) breaks down, since getting rid of the
865 IR1 interpreter will reduce the number of special cases we need to
866 support.)
867
868 IR1-1:
869   The FUNCTION special operator doesn't check properly whether its
870   argument is a function name. E.g. (FUNCTION (X Y)) returns a value
871   instead of failing with an error. (Later attempting to funcall the
872   value does cause an error.) 
873
874 IR1-2:
875   COMPILED-FUNCTION-P bogusly reports T for interpreted functions:
876         * (DEFUN FOO (X) (- 12 X))
877         FOO
878         * (COMPILED-FUNCTION-P #'FOO)
879         T
880
881 IR1-3:
882   Executing 
883     (DEFVAR *SUPPRESS-P* T)
884     (EVAL '(UNLESS *SUPPRESS-P*
885              (EVAL-WHEN (:COMPILE-TOPLEVEL :LOAD-TOPLEVEL :EXECUTE)
886                (FORMAT T "surprise!"))))
887   prints "surprise!". Probably the entire EVAL-WHEN mechanism ought to be
888   rewritten from scratch to conform to the ANSI definition, abandoning
889   the *ALREADY-EVALED-THIS* hack which is used in sbcl-0.6.8.9 (and
890   in the original CMU CL source, too). This should be easier to do --
891   though still nontrivial -- once the various IR1 interpreter special
892   cases are gone.
893
894 IR1-3a:
895   EVAL-WHEN's idea of what's a toplevel form is even more screwed up 
896   than the example in IR1-3 would suggest, since COMPILE-FILE and
897   COMPILE both print both "right now!" messages when compiling the
898   following code,
899     (LAMBDA (X)
900       (COND (X
901              (EVAL-WHEN (:COMPILE-TOPLEVEL :LOAD-TOPLEVEL :EXECUTE)
902                (PRINT "yes! right now!"))
903              "yes!")
904             (T
905              (EVAL-WHEN (:COMPILE-TOPLEVEL :LOAD-TOPLEVEL :EXECUTE)
906                (PRINT "no! right now!"))
907              "no!")))
908   and while EVAL doesn't print the "right now!" messages, the first
909   FUNCALL on the value returned by EVAL causes both of them to be printed.
910
911 IR1-4:
912   The system accepts DECLAIM in most places where DECLARE would be 
913   accepted, without even issuing a warning. ANSI allows this, but since
914   it's fairly easy to mistype DECLAIM instead of DECLARE, and the
915   meaning is rather different, and it's unlikely that the user
916   has a good reason for doing DECLAIM not at top level, it would be 
917   good to issue a STYLE-WARNING when this happens. A possible
918   fix would be to issue STYLE-WARNINGs for DECLAIMs not at top level,
919   or perhaps to issue STYLE-WARNINGs for any EVAL-WHEN not at top level.
920   [This is considered an IR1-interpreter-related bug because until
921   EVAL-WHEN is rewritten, which won't happen until after the IR1
922   interpreter is gone, the system's notion of what's a top-level form
923   and what's not will remain too confused to fix this problem.]