0.8.9.54:
[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 2:
36   DEFSTRUCT almost certainly should overwrite the old LAYOUT information
37   instead of just punting when a contradictory structure definition
38   is loaded. As it is, if you redefine DEFSTRUCTs in a way which 
39   changes their layout, you probably have to rebuild your entire
40   program, even if you know or guess enough about the internals of
41   SBCL to wager that this (undefined in ANSI) operation would be safe.
42
43 3: "type checking of structure slots"
44   a:
45   ANSI specifies that a type mismatch in a structure slot
46   initialization value should not cause a warning.
47 WORKAROUND:
48   This one might not be fixed for a while because while we're big
49   believers in ANSI compatibility and all, (1) there's no obvious
50   simple way to do it (short of disabling all warnings for type
51   mismatches everywhere), and (2) there's a good portable
52   workaround, and (3) by their own reasoning, it looks as though
53   ANSI may have gotten it wrong. ANSI justifies this specification
54   by saying 
55     The restriction against issuing a warning for type mismatches
56     between a slot-initform and the corresponding slot's :TYPE
57     option is necessary because a slot-initform must be specified
58     in order to specify slot options; in some cases, no suitable
59     default may exist.
60   However, in SBCL (as in CMU CL or, for that matter, any compiler
61   which really understands Common Lisp types) a suitable default
62   does exist, in all cases, because the compiler understands the
63   concept of functions which never return (i.e. has return type NIL).
64   Thus, as a portable workaround, you can use a call to some
65   known-never-to-return function as the default. E.g.
66     (DEFSTRUCT FOO
67       (BAR (ERROR "missing :BAR argument")
68            :TYPE SOME-TYPE-TOO-HAIRY-TO-CONSTRUCT-AN-INSTANCE-OF))
69   or 
70     (DECLAIM (FTYPE (FUNCTION () NIL) MISSING-ARG))
71     (DEFUN REQUIRED-ARG () ; workaround for SBCL non-ANSI slot init typing
72       (ERROR "missing required argument")) 
73     (DEFSTRUCT FOO
74       (BAR (REQUIRED-ARG) :TYPE TRICKY-TYPE-OF-SOME-SORT)
75       (BLETCH (REQUIRED-ARG) :TYPE TRICKY-TYPE-OF-SOME-SORT)
76       (N-REFS-SO-FAR 0 :TYPE (INTEGER 0)))
77   Such code should compile without complaint and work correctly either
78   on SBCL or on any other completely compliant Common Lisp system.
79
80   b: &AUX argument in a boa-constructor without a default value means
81      "do not initilize this slot" and does not cause type error. But
82      an error may be signalled at read time and it would be good if
83      SBCL did it.
84
85   d: (fixed in 0.8.1.5)
86
87 7:
88   The "compiling top-level form:" output ought to be condensed.
89   Perhaps any number of such consecutive lines ought to turn into a
90   single "compiling top-level forms:" line.
91
92 11:
93   It would be nice if the
94         caught ERROR:
95           (during macroexpansion)
96   said what macroexpansion was at fault, e.g.
97         caught ERROR:
98           (during macroexpansion of IN-PACKAGE,
99           during macroexpansion of DEFFOO)
100
101 19:
102   (I *think* this is a bug. It certainly seems like strange behavior. But
103   the ANSI spec is scary, dark, and deep.. -- WHN)
104     (FORMAT NIL  "~,1G" 1.4) => "1.    "
105     (FORMAT NIL "~3,1G" 1.4) => "1.    "
106
107 27:
108   Sometimes (SB-EXT:QUIT) fails with 
109         Argh! maximum interrupt nesting depth (4096) exceeded, exiting
110         Process inferior-lisp exited abnormally with code 1
111   I haven't noticed a repeatable case of this yet.
112
113 32:
114   The printer doesn't report closures very well. This is true in 
115   CMU CL 18b as well:
116     (PRINT #'CLASS-NAME)
117   gives
118     #<Closure Over Function "DEFUN STRUCTURE-SLOT-ACCESSOR" {134D1A1}>
119   It would be nice to make closures have a settable name slot,
120   and make things like DEFSTRUCT and FLET, which create closures,
121   set helpful values into this slot.
122
123 33:
124   And as long as we're wishing, it would be awfully nice if INSPECT could
125   also report on closures, telling about the values of the bound variables.
126
127 35:
128   The compiler assumes that any time a function of declared FTYPE
129   doesn't signal an error, its arguments were of the declared type.
130   E.g. compiling and loading
131     (DECLAIM (OPTIMIZE (SAFETY 3)))
132     (DEFUN FACTORIAL (X) (GAMMA (1+ X)))
133     (DEFUN GAMMA (X) X)
134     (DECLAIM (FTYPE (FUNCTION (UNSIGNED-BYTE)) FACTORIAL))
135     (DEFUN FOO (X)
136       (COND ((> (FACTORIAL X) 1.0E6)
137              (FORMAT T "too big~%"))
138             ((INTEGERP X)
139              (FORMAT T "exactly ~S~%" (FACTORIAL X)))
140             (T
141              (FORMAT T "approximately ~S~%" (FACTORIAL X)))))
142   then executing
143     (FOO 1.5)
144   will cause the INTEGERP case to be selected, giving bogus output a la
145     exactly 2.5
146   This violates the "declarations are assertions" principle.
147   According to the ANSI spec, in the section "System Class FUNCTION",
148   this is a case of "lying to the compiler", but the lying is done
149   by the code which calls FACTORIAL with non-UNSIGNED-BYTE arguments,
150   not by the unexpectedly general definition of FACTORIAL. In any case,
151   "declarations are assertions" means that lying to the compiler should
152   cause an error to be signalled, and should not cause a bogus
153   result to be returned. Thus, the compiler should not assume
154   that arbitrary functions check their argument types. (It might
155   make sense to add another flag (CHECKED?) to DEFKNOWN to 
156   identify functions which *do* check their argument types.)
157   (Also, verify that the compiler handles declared function
158   return types as assertions.)
159
160 42:
161   The definitions of SIGCONTEXT-FLOAT-REGISTER and
162   %SET-SIGCONTEXT-FLOAT-REGISTER in x86-vm.lisp say they're not
163   supported on FreeBSD because the floating point state is not saved,
164   but at least as of FreeBSD 4.0, the floating point state *is* saved,
165   so they could be supported after all. Very likely 
166   SIGCONTEXT-FLOATING-POINT-MODES could now be supported, too.
167
168 45:
169   a slew of floating-point-related errors reported by Peter Van Eynde
170   on July 25, 2000:
171         c: Many expressions generate floating infinity on x86/Linux:
172                 (/ 1 0.0)
173                 (/ 1 0.0d0)
174                 (EXPT 10.0 1000)
175                 (EXPT 10.0d0 1000)
176            PVE's regression tests want them to raise errors. sbcl-0.7.0.5
177            on x86/Linux generates the infinities instead. That might or
178            might not be conforming behavior, but it's also inconsistent,
179            which is almost certainly wrong. (Inconsistency: (/ 1 0.0)
180            should give the same result as (/ 1.0 0.0), but instead (/ 1 0.0)
181            generates SINGLE-FLOAT-POSITIVE-INFINITY and (/ 1.0 0.0)
182            signals an error.
183         d: (in section12.erg) various forms a la 
184                 (FLOAT 1 DOUBLE-FLOAT-EPSILON)
185            don't give the right behavior.
186
187 60:
188   The debugger LIST-LOCATIONS command doesn't work properly.
189   (How should it work properly?)
190
191 61:
192   Compiling and loading
193     (DEFUN FAIL (X) (THROW 'FAIL-TAG X))
194     (FAIL 12)
195   then requesting a BACKTRACE at the debugger prompt gives no information
196   about where in the user program the problem occurred.
197
198 64:
199   Using the pretty-printer from the command prompt gives funny
200   results, apparently because the pretty-printer doesn't know
201   about user's command input, including the user's carriage return
202   that the user, and therefore the pretty-printer thinks that
203   the new output block should start indented 2 or more characters
204   rightward of the correct location.
205
206 67:
207   As reported by Winton Davies on a CMU CL mailing list 2000-01-10,
208   and reported for SBCL by Martin Atzmueller 2000-10-20: (TRACE GETHASH)
209   crashes SBCL. In general tracing anything which is used in the 
210   implementation of TRACE is likely to have the same problem.
211
212 78:
213   ANSI says in one place that type declarations can be abbreviated even
214   when the type name is not a symbol, e.g.
215     (DECLAIM ((VECTOR T) *FOOVECTOR*))
216   SBCL doesn't support this. But ANSI says in another place that this
217   isn't allowed. So it's not clear this is a bug after all. (See the
218   e-mail on cmucl-help@cons.org on 2001-01-16 and 2001-01-17 from WHN
219   and Pierre Mai.)
220
221 79:
222   as pointed out by Dan Barlow on sbcl-devel 2000-07-02:
223   The PICK-TEMPORARY-FILE-NAME utility used by LOAD-FOREIGN uses
224   an easily guessable temporary filename in a way which might open
225   applications using LOAD-FOREIGN to hijacking by malicious users
226   on the same machine. Incantations for doing this safely are
227   floating around the net in various "how to write secure programs
228   despite Unix" documents, and it would be good to (1) fix this in 
229   LOAD-FOREIGN, and (2) hunt for any other code which uses temporary
230   files and make it share the same new safe logic.
231
232   (partially alleviated in sbcl-0.7.9.32 by a fix by Matthew Danish to
233    make the temporary filename less easily guessable)
234
235 83:
236   RANDOM-INTEGER-EXTRA-BITS=10 may not be large enough for the RANDOM
237   RNG to be high quality near RANDOM-FIXNUM-MAX; it looks as though
238   the mean of the distribution can be systematically O(0.1%) wrong.
239   Just increasing R-I-E-B is probably not a good solution, since
240   it would decrease efficiency more than is probably necessary. Perhaps
241   using some sort of accept/reject method would be better.
242
243 85:
244   Internally the compiler sometimes evaluates
245     (sb-kernel:type/= (specifier-type '*) (specifier-type t))
246   (I stumbled across this when I added an
247     (assert (not (eq type1 *wild-type*)))
248   in the NAMED :SIMPLE-= type method.) '* isn't really a type, and
249   in a type context should probably be translated to T, and so it's
250   probably wrong to ask whether it's equal to the T type and then (using
251   the EQ type comparison in the NAMED :SIMPLE-= type method) return NIL.
252   (I haven't tried to investigate this bug enough to guess whether
253   there might be any user-level symptoms.)
254
255   In fact, the type system is likely to depend on this inequality not
256   holding... * is not equivalent to T in many cases, such as 
257     (VECTOR *) /= (VECTOR T).
258
259 95:
260   The facility for dumping a running Lisp image to disk gets confused
261   when run without the PURIFY option, and creates an unnecessarily large
262   core file (apparently representing memory usage up to the previous
263   high-water mark). Moreover, when the file is loaded, it confuses the
264   GC, so that thereafter memory usage can never be reduced below that
265   level.
266
267   (As of 0.8.7.3 it's likely that the latter half of this bug is fixed.
268   The interaction between gencgc and the variables used by
269   save-lisp-and-die is still nonoptimal, though, so no respite from
270   big core files yet)
271
272 98:
273   In sbcl-0.6.11.41 (and in all earlier SBCL, and in CMU
274   CL), out-of-line structure slot setters are horribly inefficient
275   whenever the type of the slot is declared, because out-of-line
276   structure slot setters are implemented as closures to save space,
277   so the compiler doesn't compile the type test into code, but
278   instead just saves the type in a lexical closure and interprets it
279   at runtime.
280     To exercise the problem, compile and load
281       (cl:in-package :cl-user)
282       (defstruct foo
283         (bar (error "missing") :type bar))
284       (defvar *foo*)
285       (defun wastrel1 (x)
286         (loop (setf (foo-bar *foo*) x)))
287       (defstruct bar)
288       (defvar *bar* (make-bar))
289       (defvar *foo* (make-foo :bar *bar*))
290       (defvar *setf-foo-bar* #'(setf foo-bar))
291       (defun wastrel2 (x)
292         (loop (funcall *setf-foo-bar* x *foo*)))
293   then run (WASTREL1 *BAR*) or (WASTREL2 *BAR*), hit Ctrl-C, and
294   use BACKTRACE, to see it's spending all essentially all its time
295   in %TYPEP and VALUES-SPECIFIER-TYPE and so forth.
296     One possible solution would be simply to give up on 
297   representing structure slot accessors as functions, and represent
298   them as macroexpansions instead. This can be inconvenient for users,
299   but it's not clear that it's worse than trying to help by expanding
300   into a horribly inefficient implementation.
301     As a workaround for the problem, #'(SETF FOO) expressions
302   can be replaced with (EFFICIENT-SETF-FUNCTION FOO), where
303 (defmacro efficient-setf-function (place-function-name)
304   (or #+sbcl (and (sb-int:info :function :accessor-for place-function-name)
305                   ;; a workaround for the problem, encouraging the
306                   ;; inline expansion of the structure accessor, so
307                   ;; that the compiler can optimize its type test
308                   (let ((new-value (gensym "NEW-VALUE-"))
309                         (structure-value (gensym "STRUCTURE-VALUE-")))
310                     `(lambda (,new-value ,structure-value)
311                        (setf (,place-function-name ,structure-value)
312                              ,new-value))))
313       ;; no problem, can just use the ordinary expansion
314       `(function (setf ,place-function-name))))
315
316 100:
317   There's apparently a bug in CEILING optimization which caused 
318   Douglas Crosher to patch the CMU CL version. Martin Atzmueller
319   applied the patches to SBCL and they didn't seem to cause problems
320   (as reported sbcl-devel 2001-05-04). However, since the patches
321   modify nontrivial code which was apparently written incorrectly
322   the first time around, until regression tests are written I'm not 
323   comfortable merging the patches in the CVS version of SBCL.
324
325 108:
326   (TIME (ROOM T)) reports more than 200 Mbytes consed even for
327   a clean, just-started SBCL system. And it seems to be right:
328   (ROOM T) can bring a small computer to its knees for a *long*
329   time trying to GC afterwards. Surely there's some more economical
330   way to implement (ROOM T).
331
332   Daniel Barlow doesn't know what fixed this, but observes that it 
333   doesn't seem to be the case in 0.8.7.3 any more.  Instead, (ROOM T)
334   in a fresh SBCL causes
335
336     debugger invoked on a SB-INT:BUG in thread 5911:
337         failed AVER: "(SAP= CURRENT END)"
338
339   unless a GC has happened beforehand.
340
341 117:
342   When the compiler inline expands functions, it may be that different
343   kinds of return values are generated from different code branches.
344   E.g. an inline expansion of POSITION generates integer results 
345   from one branch, and NIL results from another. When that inline
346   expansion is used in a context where only one of those results
347   is acceptable, e.g.
348     (defun foo (x)
349       (aref *a1* (position x *a2*)))
350   and the compiler can't prove that the unacceptable branch is 
351   never taken, then bogus type mismatch warnings can be generated.
352   If you need to suppress the type mismatch warnings, you can
353   suppress the inline expansion,
354     (defun foo (x)
355       #+sbcl (declare (notinline position)) ; to suppress bug 117 bogowarnings
356       (aref *a1* (position x *a2*)))
357   or, sometimes, suppress them by declaring the result to be of an
358   appropriate type,
359     (defun foo (x)
360       (aref *a1* (the integer (position x *a2*))))
361
362   This is not a new compiler problem in 0.7.0, but the new compiler
363   transforms for FIND, POSITION, FIND-IF, and POSITION-IF make it 
364   more conspicuous. If you don't need performance from these functions,
365   and the bogus warnings are a nuisance for you, you can return to
366   your pre-0.7.0 state of grace with
367     #+sbcl (declaim (notinline find position find-if position-if)) ; bug 117..
368
369   (see also bug 279)
370
371 118:
372    as reported by Eric Marsden on cmucl-imp@cons.org 2001-08-14:
373      (= (FLOAT 1 DOUBLE-FLOAT-EPSILON)
374         (+ (FLOAT 1 DOUBLE-FLOAT-EPSILON) DOUBLE-FLOAT-EPSILON)) => T
375    when of course it should be NIL. (He says it only fails for X86,
376    not SPARC; dunno about Alpha.)
377
378    Also, "the same problem exists for LONG-FLOAT-EPSILON,
379    DOUBLE-FLOAT-NEGATIVE-EPSILON, LONG-FLOAT-NEGATIVE-EPSILON (though
380    for the -negative- the + is replaced by a - in the test)."
381
382    Raymond Toy comments that this is tricky on the X86 since its FPU
383    uses 80-bit precision internally.
384
385 124:
386    As of version 0.pre7.14, SBCL's implementation of MACROLET makes
387    the entire lexical environment at the point of MACROLET available
388    in the bodies of the macroexpander functions. In particular, it
389    allows the function bodies (which run at compile time) to try to
390    access lexical variables (which are only defined at runtime).
391    It doesn't even issue a warning, which is bad.
392
393    The SBCL behavior arguably conforms to the ANSI spec (since the
394    spec says that the behavior is undefined, ergo anything conforms).
395    However, it would be better to issue a compile-time error.
396    Unfortunately I (WHN) don't see any simple way to detect this
397    condition in order to issue such an error, so for the meantime
398    SBCL just does this weird broken "conforming" thing.
399
400    The ANSI standard says, in the definition of the special operator
401    MACROLET,
402        The macro-expansion functions defined by MACROLET are defined
403        in the lexical environment in which the MACROLET form appears.
404        Declarations and MACROLET and SYMBOL-MACROLET definitions affect
405        the local macro definitions in a MACROLET, but the consequences
406        are undefined if the local macro definitions reference any
407        local variable or function bindings that are visible in that
408        lexical environment.
409    Then it seems to contradict itself by giving the example
410         (defun foo (x flag)
411            (macrolet ((fudge (z)
412                          ;The parameters x and flag are not accessible
413                          ; at this point; a reference to flag would be to
414                          ; the global variable of that name.
415                          ` (if flag (* ,z ,z) ,z)))
416             ;The parameters x and flag are accessible here.
417              (+ x
418                 (fudge x)
419                 (fudge (+ x 1)))))
420    The comment "a reference to flag would be to the global variable
421    of the same name" sounds like good behavior for the system to have.
422    but actual specification quoted above says that the actual behavior
423    is undefined.
424
425    (Since 0.7.8.23 macroexpanders are defined in a restricted version
426    of the lexical environment, containing no lexical variables and
427    functions, which seems to conform to ANSI and CLtL2, but signalling
428    a STYLE-WARNING for references to variables similar to locals might
429    be a good thing.)
430
431 125:
432    (as reported by Gabe Garza on cmucl-help 2001-09-21)
433         (defvar *tmp* 3)
434         (defun test-pred (x y)
435           (eq x y))
436         (defun test-case ()
437           (let* ((x *tmp*)
438                  (func (lambda () x)))
439             (print (eq func func))
440             (print (test-pred func func))
441             (delete func (list func))))
442    Now calling (TEST-CASE) gives output
443      NIL
444      NIL
445      (#<FUNCTION {500A9EF9}>)
446    Evidently Python thinks of the lambda as a code transformation so
447    much that it forgets that it's also an object.
448
449 135:
450   Ideally, uninterning a symbol would allow it, and its associated
451   FDEFINITION and PROCLAIM data, to be reclaimed by the GC. However,
452   at least as of sbcl-0.7.0, this isn't the case. Information about
453   FDEFINITIONs and PROCLAIMed properties is stored in globaldb.lisp
454   essentially in ordinary (non-weak) hash tables keyed by symbols.
455   Thus, once a system has an entry in this system, it tends to live
456   forever, even when it is uninterned and all other references to it
457   are lost.
458
459 141: "pretty printing and backquote"
460   a.
461     * '``(FOO ,@',@S)
462     ``(FOO SB-IMPL::BACKQ-COMMA-AT S)
463
464   c. (reported by Paul F. Dietz)
465      * '`(lambda ,x)
466      `(LAMBDA (SB-IMPL::BACKQ-COMMA X))
467
468 143:
469   (reported by Jesse Bouwman 2001-10-24 through the unfortunately
470   prominent SourceForge web/db bug tracking system, which is 
471   unfortunately not a reliable way to get a timely response from
472   the SBCL maintainers)
473       In the course of trying to build a test case for an 
474     application error, I encountered this behavior: 
475       If you start up sbcl, and then lay on CTRL-C for a 
476     minute or two, the lisp process will eventually say: 
477          %PRIMITIVE HALT called; the party is over. 
478     and throw you into the monitor. If I start up lisp, 
479     attach to the process with strace, and then do the same 
480     (abusive) thing, I get instead: 
481          access failure in heap page not marked as write-protected 
482     and the monitor again. I don't know enough to have the 
483     faintest idea of what is going on here. 
484       This is with sbcl 6.12, uname -a reports: 
485          Linux prep 2.2.19 #4 SMP Tue Apr 24 13:59:52 CDT 2001 i686 unknown 
486   I (WHN) have verified that the same thing occurs on sbcl-0.pre7.141
487   under OpenBSD 2.9 on my X86 laptop. Do be patient when you try it:
488   it took more than two minutes (but less than five) for me.
489
490 145:
491   a.
492   ANSI allows types `(COMPLEX ,FOO) to use very hairy values for
493   FOO, e.g. (COMPLEX (AND REAL (SATISFIES ODDP))). The old CMU CL
494   COMPLEX implementation didn't deal with this, and hasn't been
495   upgraded to do so. (This doesn't seem to be a high priority
496   conformance problem, since seems hard to construct useful code
497   where it matters.)
498
499   b. (fixed in 0.8.3.43)
500
501 146:
502   Floating point errors are reported poorly. E.g. on x86 OpenBSD
503   with sbcl-0.7.1, 
504         * (expt 2.0 12777)
505         debugger invoked on condition of type SB-KERNEL:FLOATING-POINT-EXCEPTION:
506           An arithmetic error SB-KERNEL:FLOATING-POINT-EXCEPTION was signalled.
507         No traps are enabled? How can this be?
508   It should be possible to be much more specific (overflow, division
509   by zero, etc.) and of course the "How can this be?" should be fixable.
510
511   See also bugs #45.c and #183
512
513 162:
514   (reported by Robert E. Brown 2002-04-16) 
515   When a function is called with too few arguments, causing the
516   debugger to be entered, the uninitialized slots in the bad call frame 
517   seem to cause GCish problems, being interpreted as tagged data even
518   though they're not. In particular, executing ROOM in the
519   debugger at that point causes AVER failures:
520     * (machine-type)
521     "X86"
522     * (lisp-implementation-version)
523     "0.7.2.12"
524     * (typep 10)
525     ...
526     0] (room)
527     ...
528     failed AVER: "(SAP= CURRENT END)"
529   (Christophe Rhodes reports that this doesn't occur on the SPARC, which
530   isn't too surprising since there are many differences in stack
531   implementation and GC conservatism between the X86 and other ports.)
532
533   This is probably the same bug as 216
534
535 167:
536   In sbcl-0.7.3.11, compiling the (illegal) code 
537     (in-package :cl-user)
538     (defmethod prove ((uustk uustk))
539       (zap ((frob () nil))
540         (frob)))
541   gives the (not terribly clear) error message
542     ; caught ERROR:
543     ;   (during macroexpansion of (DEFMETHOD PROVE ...))
544     ; can't get template for (FROB NIL NIL)
545   The problem seems to be that the code walker used by the DEFMETHOD
546   macro is unhappy with the illegal syntax in the method body, and
547   is giving an unclear error message.
548
549 173:
550   The compiler sometimes tries to constant-fold expressions before
551   it checks to see whether they can be reached. This can lead to 
552   bogus warnings about errors in the constant folding, e.g. in code
553   like 
554     (WHEN X
555       (WRITE-STRING (> X 0) "+" "0"))
556   compiled in a context where the compiler can prove that X is NIL,
557   and the compiler complains that (> X 0) causes a type error because
558   NIL isn't a valid argument to #'>. Until sbcl-0.7.4.10 or so this
559   caused a full WARNING, which made the bug really annoying because then 
560   COMPILE and COMPILE-FILE returned FAILURE-P=T for perfectly legal
561   code. Since then the warning has been downgraded to STYLE-WARNING, 
562   so it's still a bug but at least it's a little less annoying.
563
564 183: "IEEE floating point issues"
565   Even where floating point handling is being dealt with relatively
566   well (as of sbcl-0.7.5, on sparc/sunos and alpha; see bug #146), the
567   accrued-exceptions and current-exceptions part of the fp control
568   word don't seem to bear much relation to reality. E.g. on
569   SPARC/SunOS:
570   * (/ 1.0 0.0)
571
572   debugger invoked on condition of type DIVISION-BY-ZERO:
573     arithmetic error DIVISION-BY-ZERO signalled
574   0] (sb-vm::get-floating-point-modes)
575
576   (:TRAPS (:OVERFLOW :INVALID :DIVIDE-BY-ZERO)
577           :ROUNDING-MODE :NEAREST
578           :CURRENT-EXCEPTIONS NIL
579           :ACCRUED-EXCEPTIONS (:INEXACT)
580           :FAST-MODE NIL)
581   0] abort
582   * (sb-vm::get-floating-point-modes)
583   (:TRAPS (:OVERFLOW :INVALID :DIVIDE-BY-ZERO)
584           :ROUNDING-MODE :NEAREST
585           :CURRENT-EXCEPTIONS (:INEXACT)
586           :ACCRUED-EXCEPTIONS (:INEXACT)
587           :FAST-MODE NIL)
588
589 188: "compiler performance fiasco involving type inference and UNION-TYPE"
590     (time (compile
591            nil
592            '(lambda ()
593              (declare (optimize (safety 3)))
594              (declare (optimize (compilation-speed 2)))
595              (declare (optimize (speed 1) (debug 1) (space 1)))
596              (let ((start 4))
597                (declare (type (integer 0) start))
598                (print (incf start 22))
599                (print (incf start 26))
600                (print (incf start 28)))
601              (let ((start 6))
602                (declare (type (integer 0) start))
603                (print (incf start 22))
604                (print (incf start 26)))
605              (let ((start 10))
606                (declare (type (integer 0) start))
607                (print (incf start 22))
608                (print (incf start 26))))))
609
610   This example could be solved with clever enough constraint
611   propagation or with SSA, but consider
612
613     (let ((x 0))
614       (loop (incf x 2)))
615
616   The careful type of X is {2k} :-(. Is it really important to be
617   able to work with unions of many intervals?
618
619 191: "Miscellaneous PCL deficiencies"
620   (reported by Alexey Dejneka sbcl-devel 2002-08-04)
621   a. DEFCLASS does not inform the compiler about generated
622      functions. Compiling a file with
623        (DEFCLASS A-CLASS ()
624          ((A-CLASS-X)))
625        (DEFUN A-CLASS-X (A)
626          (WITH-SLOTS (A-CLASS-X) A
627            A-CLASS-X))
628      results in a STYLE-WARNING:
629        undefined-function 
630          SB-SLOT-ACCESSOR-NAME::|COMMON-LISP-USER A-CLASS-X slot READER|
631
632      APD's fix for this was checked in to sbcl-0.7.6.20, but Pierre
633      Mai points out that the declamation of functions is in fact
634      incorrect in some cases (most notably for structure
635      classes).  This means that at present erroneous attempts to use
636      WITH-SLOTS and the like on classes with metaclass STRUCTURE-CLASS
637      won't get the corresponding STYLE-WARNING.
638   c. (fixed in 0.8.4.23)
639
640 201: "Incautious type inference from compound types"
641   a. (reported by APD sbcl-devel 2002-09-17)
642     (DEFUN FOO (X)
643       (LET ((Y (CAR (THE (CONS INTEGER *) X))))
644         (SETF (CAR X) NIL)
645         (FORMAT NIL "~S IS ~S, Y = ~S"
646                 (CAR X)
647                 (TYPECASE (CAR X)
648                   (INTEGER 'INTEGER)
649                   (T '(NOT INTEGER)))
650                 Y)))
651
652     (FOO ' (1 . 2)) => "NIL IS INTEGER, Y = 1"
653
654   b.
655     * (defun foo (x)
656         (declare (type (array * (4 4)) x))
657         (let ((y x))
658           (setq x (make-array '(4 4)))
659           (adjust-array y '(3 5))
660           (= (array-dimension y 0) (eval `(array-dimension ,y 0)))))
661     FOO
662     * (foo (make-array '(4 4) :adjustable t))
663     NIL
664
665 205: "environment issues in cross compiler"
666   (These bugs have no impact on user code, but should be fixed or
667   documented.)
668   a. Macroexpanders introduced with MACROLET are defined in the null
669      lexical environment.
670   b. The body of (EVAL-WHEN (:COMPILE-TOPLEVEL) ...) is evaluated in
671      the null lexical environment.
672   c. The cross-compiler cannot inline functions defined in a non-null
673      lexical environment.
674
675 206: ":SB-FLUID feature broken"
676   (reported by Antonio Martinez-Shotton sbcl-devel 2002-10-07)
677   Enabling :SB-FLUID in the target-features list in sbcl-0.7.8 breaks
678   the build.
679
680 207: "poorly distributed SXHASH results for compound data"
681   SBCL's SXHASH could probably try a little harder. ANSI: "the
682   intent is that an implementation should make a good-faith
683   effort to produce hash-codes that are well distributed
684   within the range of non-negative fixnums". But
685         (let ((hits (make-hash-table)))
686           (dotimes (i 16)
687             (dotimes (j 16)
688               (let* ((ij (cons i j))
689                      (newlist (push ij (gethash (sxhash ij) hits))))
690                 (when (cdr newlist)
691                   (format t "~&collision: ~S~%" newlist))))))
692   reports lots of collisions in sbcl-0.7.8. A stronger MIX function
693   would be an obvious way of fix. Maybe it would be acceptably efficient
694   to redo MIX using a lookup into a 256-entry s-box containing
695   29-bit pseudorandom numbers?
696
697 211: "keywords processing"
698   a. :ALLOW-OTHER-KEYS T should allow a function to receive an odd
699      number of keyword arguments.
700   e. Compiling
701
702       (flet ((foo (&key y) (list y)))
703         (list (foo :y 1 :y 2)))
704
705      issues confusing message
706
707        ; in: LAMBDA NIL
708        ;     (FOO :Y 1 :Y 2)
709        ;
710        ; caught STYLE-WARNING:
711        ;   The variable #:G15 is defined but never used.
712
713 212: "Sequence functions and circular arguments"
714   COERCE, MERGE and CONCATENATE go into an infinite loop when given
715   circular arguments; it would be good for the user if they could be
716   given an error instead (ANSI 17.1.1 allows this behaviour on the part
717   of the implementation, as conforming code cannot give non-proper
718   sequences to these functions.  MAP also has this problem (and
719   solution), though arguably the convenience of being able to do
720     (MAP 'LIST '+ FOO '#1=(1 . #1#))
721   might be classed as more important (though signalling an error when
722   all of the arguments are circular is probably desireable).
723
724 213: "Sequence functions and type checking"
725   a. (fixed in 0.8.4.36)
726   b. MAP, when given a type argument that is SUBTYPEP LIST, does not
727      check that it will return a sequence of the given type.  Fixing
728      it along the same lines as the others (cf. work done around
729      sbcl-0.7.8.45) is possible, but doing so efficiently didn't look
730      entirely straightforward.
731   c. All of these functions will silently accept a type of the form
732        (CONS INTEGER *)
733      whether or not the return value is of this type.  This is
734      probably permitted by ANSI (see "Exceptional Situations" under
735      ANSI MAKE-SEQUENCE), but the DERIVE-TYPE mechanism does not
736      know about this escape clause, so code of the form
737        (INTEGERP (CAR (MAKE-SEQUENCE '(CONS INTEGER *) 2)))
738      can erroneously return T.
739
740 215: ":TEST-NOT handling by functions"
741   a. FIND and POSITION currently signal errors when given non-NIL for
742      both their :TEST and (deprecated) :TEST-NOT arguments, but by
743      ANSI 17.2 "the consequences are unspecified", which by ANSI 1.4.2
744      means that the effect is "unpredictable but harmless".  It's not
745      clear what that actually means; it may preclude conforming
746      implementations from signalling errors.
747   b. COUNT, REMOVE and the like give priority to a :TEST-NOT argument
748      when conflict occurs.  As a quality of implementation issue, it
749      might be preferable to treat :TEST and :TEST-NOT as being in some
750      sense the same &KEY, and effectively take the first test function in
751      the argument list.
752   c. Again, a quality of implementation issue: it would be good to issue a
753      STYLE-WARNING at compile-time for calls with :TEST-NOT, and a
754      WARNING for calls with both :TEST and :TEST-NOT; possibly this
755      latter should be WARNed about at execute-time too.
756
757 216: "debugger confused by frames with invalid number of arguments"
758   In sbcl-0.7.8.51, executing e.g. (VECTOR-PUSH-EXTEND T), BACKTRACE, Q
759   leaves the system confused, enough so that (QUIT) no longer works.
760   It's as though the process of working with the uninitialized slot in
761   the bad VECTOR-PUSH-EXTEND frame causes GC problems, though that may
762   not be the actual problem. (CMU CL 18c doesn't have problems with this.)
763
764   This is probably the same bug as 162
765
766 217: "Bad type operations with FUNCTION types"
767   In sbcl.0.7.7:
768
769     * (values-type-union (specifier-type '(function (base-char)))
770                          (specifier-type '(function (integer))))
771
772     #<FUN-TYPE (FUNCTION (BASE-CHAR) *)>
773
774   It causes insertion of wrong type assertions into generated
775   code. E.g.
776
777     (defun foo (x s)
778       (let ((f (etypecase x
779                  (character #'write-char)
780                  (integer #'write-byte))))
781         (funcall f x s)
782         (etypecase x
783           (character (write-char x s))
784           (integer (write-byte x s)))))
785
786    Then (FOO #\1 *STANDARD-OUTPUT*) signals type error.
787
788   (In 0.7.9.1 the result type is (FUNCTION * *), so Python does not
789   produce invalid code, but type checking is not accurate.)
790
791 233: bugs in constraint propagation
792   b.
793   (declaim (optimize (speed 2) (safety 3)))
794   (defun foo (x y)
795     (if (typep (prog1 x (setq x y)) 'double-float)
796         (+ x 1d0)
797         (+ x 2)))
798   (foo 1d0 5) => segmentation violation
799
800 235: "type system and inline expansion"
801   a.
802   (declaim (ftype (function (cons) number) acc))
803   (declaim (inline acc))
804   (defun acc (c)
805     (the number (car c)))
806
807   (defun foo (x y)
808     (values (locally (declare (optimize (safety 0)))
809               (acc x))
810             (locally (declare (optimize (safety 3)))
811               (acc y))))
812
813   (foo '(nil) '(t)) => NIL, T.
814
815 237: "Environment arguments to type functions"
816   a. Functions SUBTYPEP, TYPEP, UPGRADED-ARRAY-ELEMENT-TYPE, and 
817      UPGRADED-COMPLEX-PART-TYPE now have an optional environment
818      argument, but they ignore it completely.  This is almost 
819      certainly not correct.
820   b. Also, the compiler's optimizers for TYPEP have not been informed
821      about the new argument; consequently, they will not transform
822      calls of the form (TYPEP 1 'INTEGER NIL), even though this is
823      just as optimizeable as (TYPEP 1 'INTEGER).
824
825 238: "REPL compiler overenthusiasm for CLOS code"
826   From the REPL,
827     * (defclass foo () ())
828     * (defmethod bar ((x foo) (foo foo)) (call-next-method))
829   causes approximately 100 lines of code deletion notes.  Some
830   discussion on this issue happened under the title 'Three "interesting"
831   bugs in PCL', resulting in a fix for this oververbosity from the
832   compiler proper; however, the problem persists in the interactor
833   because the notion of original source is not preserved: for the
834   compiler, the original source of the above expression is (DEFMETHOD
835   BAR ((X FOO) (FOO FOO)) (CALL-NEXT-METHOD)), while by the time the
836   compiler gets its hands on the code needing compilation from the REPL,
837   it has been macroexpanded several times.
838
839   A symptom of the same underlying problem, reported by Tony Martinez:
840     * (handler-case
841         (with-input-from-string (*query-io* "    no")
842           (yes-or-no-p))
843       (simple-type-error () 'error))
844     ; in: LAMBDA NIL
845     ;     (SB-KERNEL:FLOAT-WAIT)
846     ; 
847     ; note: deleting unreachable code
848     ; compilation unit finished
849     ;   printed 1 note
850
851 241: "DEFCLASS mysteriously remembers uninterned accessor names."
852   (from tonyms on #lisp IRC 2003-02-25)
853   In sbcl-0.7.12.55, typing
854     (defclass foo () ((bar :accessor foo-bar)))
855     (profile foo-bar)
856     (unintern 'foo-bar)
857     (defclass foo () ((bar :accessor foo-bar)))
858   gives the error message
859     "#:FOO-BAR already names an ordinary function or a macro."
860   So it's somehow checking the uninterned old accessor name instead
861   of the new requested accessor name, which seems broken to me (WHN).
862
863 242: "WRITE-SEQUENCE suboptimality"
864   (observed from clx performance)
865   In sbcl-0.7.13, WRITE-SEQUENCE of a sequence of type 
866   (SIMPLE-ARRAY (UNSIGNED-BYTE 8) (*)) on a stream with element-type
867   (UNSIGNED-BYTE 8) will write to the stream one byte at a time,
868   rather than writing the sequence in one go, leading to severe
869   performance degradation.
870
871 243: "STYLE-WARNING overenthusiasm for unused variables"
872   (observed from clx compilation)
873   In sbcl-0.7.14, in the presence of the macros
874     (DEFMACRO FOO (X) `(BAR ,X))
875     (DEFMACRO BAR (X) (DECLARE (IGNORABLE X)) 'NIL)
876   somewhat surprising style warnings are emitted for
877     (COMPILE NIL '(LAMBDA (Y) (FOO Y))):
878   ; in: LAMBDA (Y)
879   ;     (LAMBDA (Y) (FOO Y))
880   ; 
881   ; caught STYLE-WARNING:
882   ;   The variable Y is defined but never used.
883
884 245: bugs in disassembler
885   b. On X86 operand size prefix is not recognized.
886
887 251:
888   (defun foo (&key (a :x))
889     (declare (fixnum a))
890     a)
891
892   does not cause a warning. (BTW: old SBCL issued a warning, but for a
893   function, which was never called!)
894
895 256:
896   Compiler does not emit warnings for
897
898   a. (lambda () (svref (make-array 8 :adjustable t) 1))
899
900   b. (lambda (x)
901        (list (let ((y (the real x)))
902                (unless (floatp y) (error ""))
903                y)
904              (integer-length x)))
905
906   c. (lambda (x)
907        (declare (optimize (debug 0)))
908        (declare (type vector x))
909        (list (fill-pointer x)
910              (svref x 1)))
911
912 257:
913   Complex array type does not have corresponding type specifier.
914
915   This is a problem because the compiler emits optimization notes when
916   you use a non-simple array, and without a type specifier for hairy
917   array types, there's no good way to tell it you're doing it
918   intentionally so that it should shut up and just compile the code.
919
920   Another problem is confusing error message "asserted type ARRAY
921   conflicts with derived type (VALUES SIMPLE-VECTOR &OPTIONAL)" during
922   compiling (LAMBDA (V) (VALUES (SVREF V 0) (VECTOR-POP V))).
923
924   The last problem is that when type assertions are converted to type
925   checks, types are represented with type specifiers, so we could lose
926   complex attribute. (Now this is probably not important, because
927   currently checks for complex arrays seem to be performed by
928   callees.)
929
930 259:
931   (compile nil '(lambda () (aref (make-array 0) 0))) compiles without
932   warning.  Analogous cases with the index and length being equal and
933   greater than 0 are warned for; the problem here seems to be that the
934   type required for an array reference of this type is (INTEGER 0 (0))
935   which is canonicalized to NIL.
936
937 260:
938   a.
939   (let* ((s (gensym))
940          (t1 (specifier-type s)))
941     (eval `(defstruct ,s))
942     (type= t1 (specifier-type s)))
943   => NIL, NIL
944
945   (fixed in 0.8.1.24)
946
947   b. The same for CSUBTYPEP.
948
949 262: "yet another bug in inline expansion of local functions"
950   Compiler fails on
951
952     (defun foo (x y)
953       (declare (integer x y))
954       (+ (block nil
955             (flet ((xyz (u)
956                      (declare (integer u))
957                      (if (> (1+ (the unsigned-byte u)) 0)
958                          (+ 1 u)
959                          (return (+ 38 (cos (/ u 78)))))))
960               (declare (inline xyz))
961               (return-from foo
962                 (* (funcall (eval #'xyz) x)
963                    (if (> x 30)
964                        (funcall (if (> x 5) #'xyz #'identity)
965                                 (+ x 13))
966                        38)))))
967          (sin (* x y))))
968
969   Urgh... It's time to write IR1-copier.
970
971 266:
972   David Lichteblau provided (sbcl-devel 2003-06-01) a patch to fix
973   behaviour of streams with element-type (SIGNED-BYTE 8).  The patch
974   looks reasonable, if not obviously correct; however, it caused the
975   PPC/Linux port to segfault during warm-init while loading
976   src/pcl/std-class.fasl.  A workaround patch was made, but it would
977   be nice to understand why the first patch caused problems, and to
978   fix the cause if possible.
979
980 268: "wrong free declaration scope"
981   The following code must signal type error:
982
983     (locally (declare (optimize (safety 3)))
984       (flet ((foo (x &optional (y (car x)))
985                (declare (optimize (safety 0)))
986                (list x y)))
987         (funcall (eval #'foo) 1)))
988
989 269:
990   SCALE-FLOAT should accept any integer for its second argument.
991
992 270:
993   In the following function constraint propagator optimizes nothing:
994
995     (defun foo (x)
996       (declare (integer x))
997       (declare (optimize speed))
998       (typecase x
999         (fixnum "hala")
1000         (fixnum "buba")
1001         (bignum "hip")
1002         (t "zuz")))
1003
1004 273:
1005   Compilation of the following two forms causes "X is unbound" error:
1006
1007     (symbol-macrolet ((x pi))
1008       (macrolet ((foo (y) (+ x y)))
1009         (declaim (inline bar))
1010         (defun bar (z)
1011           (* z (foo 4)))))
1012     (defun quux (z)
1013       (bar z))
1014
1015   (See (COERCE (CDR X) 'FUNCTION) in IR1-CONVERT-INLINE-LAMBDA.)
1016
1017 274:
1018   CLHS says that type declaration of a symbol macro should not affect
1019   its expansion, but in SBCL it does. (If you like magic and want to
1020   fix it, don't forget to change all uses of MACROEXPAND to
1021   MACROEXPAND*.)
1022
1023 275:
1024   The following code (taken from CLOCC) takes a lot of time to compile:
1025
1026     (defun foo (n)
1027       (declare (type (integer 0 #.large-constant) n))
1028       (expt 1/10 n))
1029
1030   (fixed in 0.8.2.51, but a test case would be good)
1031
1032 276:
1033     (defmethod fee ((x fixnum))
1034       (setq x (/ x 2))
1035       x)
1036     (fee 1) => type error
1037
1038   (taken from CLOCC)
1039
1040 278:
1041   a.
1042     (defun foo ()
1043       (declare (optimize speed))
1044       (loop for i of-type (integer 0) from 0 by 2 below 10
1045             collect i))
1046
1047   uses generic arithmetic.
1048
1049   b. (fixed in 0.8.3.6)
1050
1051 279: type propagation error -- correctly inferred type goes astray?
1052   In sbcl-0.8.3 and sbcl-0.8.1.47, the warning
1053        The binding of ABS-FOO is a (VALUES (INTEGER 0 0)
1054        &OPTIONAL), not a (INTEGER 1 536870911)
1055   is emitted when compiling this file:
1056     (declaim (ftype (function ((integer 0 #.most-positive-fixnum))
1057                               (integer #.most-negative-fixnum 0))
1058                     foo))
1059     (defun foo (x)
1060       (- x))
1061     (defun bar (x)
1062       (let* (;; Uncomment this for a type mismatch warning indicating 
1063              ;; that the type of (FOO X) is correctly understood.
1064              #+nil (fs-foo (float-sign (foo x)))
1065                    ;; Uncomment this for a type mismatch warning 
1066                    ;; indicating that the type of (ABS (FOO X)) is
1067                    ;; correctly understood.
1068              #+nil (fs-abs-foo (float-sign (abs (foo x))))
1069              ;; something wrong with this one though
1070              (abs-foo (abs (foo x))))
1071         (declare (type (integer 1 100) abs-foo))
1072         (print abs-foo)))
1073
1074  (see also bug 117)
1075
1076 280: bogus WARNING about duplicate function definition 
1077   In sbcl-0.8.3 and sbcl-0.8.1.47, if BS.MIN is defined inline,
1078   e.g. by 
1079      (declaim (inline bs.min))
1080      (defun bs.min (bases) nil)
1081   before compiling the file below, the compiler warns
1082      Duplicate definition for BS.MIN found in one static
1083      unit (usually a file).
1084   when compiling 
1085     (declaim (special *minus* *plus* *stagnant*))
1086     (defun b.*.min (&optional (x () xp) (y () yp) &rest rest)
1087       (bs.min avec))
1088     (define-compiler-macro b.*.min (&rest rest)
1089       `(bs.min ,@rest))
1090     (defun afish-d-rbd (pd)
1091       (if *stagnant* 
1092           (b.*.min (foo-d-rbd *stagnant*))
1093           (multiple-value-bind (reduce-fn initial-value)
1094               (etypecase pd
1095                 (list (values #'bs.min 0))
1096                 (vector (values #'bs.min *plus*)))
1097             (let ((cv-ks (cv (kpd.ks pd))))
1098               (funcall reduce-fn d-rbds)))))
1099     (defun bfish-d-rbd (pd)
1100       (if *stagnant* 
1101           (b.*.min (foo-d-rbd *stagnant*))
1102           (multiple-value-bind (reduce-fn initial-value)
1103               (etypecase pd
1104                 (list (values #'bs.min *minus*))
1105                 (vector (values #'bs.min 0)))
1106             (let ((cv-ks (cv (kpd.ks pd))))
1107               (funcall reduce-fn d-rbds)))))
1108
1109 281: COMPUTE-EFFECTIVE-METHOD error signalling.
1110   (slightly obscured by a non-0 default value for
1111    SB-PCL::*MAX-EMF-PRECOMPUTE-METHODS*)
1112   It would be natural for COMPUTE-EFFECTIVE-METHOD to signal errors
1113   when it finds a method with invalid qualifiers.  However, it
1114   shouldn't signal errors when any such methods are not applicable to
1115   the particular call being evaluated, and certainly it shouldn't when
1116   simply precomputing effective methods that may never be called.
1117   (setf sb-pcl::*max-emf-precompute-methods* 0)
1118   (defgeneric foo (x)
1119     (:method-combination +)
1120     (:method ((x symbol)) 1)
1121     (:method + ((x number)) x))
1122   (foo 1) -> ERROR, but should simply return 1
1123
1124   The issue seems to be that construction of a discriminating function
1125   calls COMPUTE-EFFECTIVE-METHOD with methods that are not all applicable.
1126
1127 283: Thread safety: libc functions
1128   There are places that we call unsafe-for-threading libc functions
1129   that we should find alternatives for, or put locks around.  Known or
1130   strongly suspected problems, as of 0.8.3.10: please update this
1131   bug instead of creating new ones
1132
1133     localtime() - called for timezone calculations in code/time.lisp
1134
1135 284: Thread safety: special variables
1136   There are lots of special variables in SBCL, and I feel sure that at
1137   least some of them are indicative of potentially thread-unsafe 
1138   parts of the system.  See doc/internals/notes/threading-specials
1139
1140 286: "recursive known functions"
1141   Self-call recognition conflicts with known function
1142   recognition. Currently cross compiler and target COMPILE do not
1143   recognize recursion, and in target compiler it can be disabled. We
1144   can always disable it for known functions with RECURSIVE attribute,
1145   but there remains a possibility of a function with a
1146   (tail)-recursive simplification pass and transforms/VOPs for base
1147   cases.
1148
1149 287: PPC/Linux miscompilation or corruption in first GC
1150   When the runtime is compiled with -O3 on certain PPC/Linux machines, a
1151   segmentation fault is reported at the point of first triggered GC,
1152   during the compilation of DEFSTRUCT WRAPPER.  As a temporary workaround,
1153   the runtime is no longer compiled with -O3 on PPC/Linux, but it is likely
1154   that this merely obscures, not solves, the underlying problem; as and when
1155   underlying problems are fixed, it would be worth trying again to provoke
1156   this problem.
1157
1158 288: fundamental cross-compilation issues (from old UGLINESS file)
1159   Using host floating point numbers to represent target floating point
1160   numbers, or host characters to represent target characters, is
1161   theoretically shaky. (The characters are OK as long as the characters
1162   are in the ANSI-guaranteed character set, though, so they aren't a
1163   real problem as long as the sources don't need anything but that;
1164   the floats are a real problem.)
1165
1166 289: "type checking and source-transforms"
1167   a.
1168     (block nil (let () (funcall #'+ (eval 'nil) (eval '1) (return :good))))
1169   signals type error.
1170
1171   Our policy is to check argument types at the moment of a call. It
1172   disagrees with ANSI, which says that type assertions are put
1173   immediately onto argument expressions, but is easier to implement in
1174   IR1 and is more compatible to type inference, inline expansion,
1175   etc. IR1-transforms automatically keep this policy, but source
1176   transforms for associative functions (such as +), being applied
1177   during IR1-convertion, do not. It may be tolerable for direct calls
1178   (+ x y z), but for (FUNCALL #'+ x y z) it is non-conformant.
1179
1180   b. Another aspect of this problem is efficiency. [x y + z +]
1181   requires less registers than [x y z + +]. This transformation is
1182   currently performed with source transforms, but it would be good to
1183   also perform it in IR1 optimization phase.
1184
1185 290: Alpha floating point and denormalized traps
1186   In SBCL 0.8.3.6x on the alpha, we work around what appears to be a
1187   hardware or kernel deficiency: the status of the enable/disable
1188   denormalized-float traps bit seems to be ambiguous; by the time we
1189   get to os_restore_fp_control after a trap, denormalized traps seem
1190   to be enabled.  Since we don't want a trap every time someone uses a
1191   denormalized float, in general, we mask out that bit when we restore
1192   the control word; however, this clobbers any change the user might
1193   have made.
1194
1195 296:
1196   (reported by Adam Warner, sbcl-devel 2003-09-23)
1197
1198   The --load toplevel argument does not perform any sanitization of its
1199   argument.  As a result, files with Lisp pathname pattern characters
1200   (#\* or #\?, for instance) or quotation marks can cause the system
1201   to perform arbitrary behaviour.
1202
1203 297:
1204   LOOP with non-constant arithmetic step clauses suffers from overzealous
1205   type constraint: code of the form 
1206     (loop for d of-type double-float from 0d0 to 10d0 by x collect d)
1207   compiles to a type restriction on X of (AND DOUBLE-FLOAT (REAL
1208   (0))).  However, an integral value of X should be legal, because
1209   successive adds of integers to double-floats produces double-floats,
1210   so none of the type restrictions in the code is violated.
1211
1212 298: (aka PFD MISC.183)
1213   Compiler fails on
1214
1215     (defun foo ()
1216       (multiple-value-call #'bar
1217         (ext)
1218         (catch 'tag (return-from foo (int)))))
1219
1220   This program violates "unknown values LVAR stack discipline": if INT
1221   returns, values returned by (EXT) must be removed from under that of
1222   (INT).
1223
1224 300: (reported by Peter Graves) Function PEEK-CHAR checks PEEK-TYPE
1225   argument type only after having read a character. This is caused
1226   with EXPLICIT-CHECK attribute in DEFKNOWN. The similar problem
1227   exists with =, /=, <, >, <=, >=. They were fixed, but it is probably
1228   less error prone to have EXPLICIT-CHECK be a local declaration,
1229   being put into the definition, instead of an attribute being kept in
1230   a separate file; maybe also put it into SB-EXT?
1231
1232 301: ARRAY-SIMPLE-=-TYPE-METHOD breaks on corner cases which can arise
1233      in NOTE-ASSUMED-TYPES
1234   In sbcl-0.8.7.32, compiling the file
1235         (defun foo (x y)
1236           (declare (type integer x))
1237           (declare (type (vector (or hash-table bit)) y))
1238           (bletch 2 y))
1239         (defun bar (x y)
1240           (declare (type integer x))
1241           (declare (type (simple-array base (2)) y))
1242           (bletch 1 y))
1243   gives the error
1244     failed AVER: "(NOT (AND (NOT EQUALP) CERTAINP))"
1245
1246 302: Undefined type messes up DATA-VECTOR-REF expansion.
1247   Compiling this file
1248     (defun dis (s ei x y)
1249       (declare (type (simple-array function (2)) s) (type ei ei))
1250       (funcall (aref s ei) x y))
1251   on sbcl-0.8.7.36/X86/Linux causes a BUG to be signalled:
1252     full call to SB-KERNEL:DATA-VECTOR-REF
1253
1254 303: "nonlinear LVARs" (aka MISC.293)
1255     (defun buu (x)
1256       (multiple-value-call #'list
1257         (block foo
1258           (multiple-value-prog1
1259               (eval '(values :a :b :c))
1260             (catch 'bar
1261               (if (> x 0)
1262                   (return-from foo
1263                     (eval `(if (> ,x 1)
1264                                1
1265                                (throw 'bar (values 3 4)))))))))))
1266
1267   (BUU 1) returns garbage.
1268
1269   The problem is that both EVALs sequentially write to the same LVAR.
1270
1271 305:
1272   (Reported by Dave Roberts.)
1273   Local INLINE/NOTINLINE declaration removes local FTYPE declaration:
1274
1275     (defun quux (x)
1276       (declare (ftype (function () (integer 0 10)) fee)
1277                (inline fee))
1278       (1+ (fee)))
1279
1280   uses generic arithmetic with INLINE and fixnum without.
1281
1282 306: "Imprecise unions of array types"
1283   a.(defun foo (x)
1284       (declare (optimize speed)
1285                (type (or (array cons) (array vector)) x))
1286       (elt (aref x 0) 0))
1287     (foo #((0))) => TYPE-ERROR
1288
1289   relatedly,
1290
1291   b.(subtypep 
1292      'array
1293      `(or
1294        ,@(loop for x across sb-vm:*specialized-array-element-type-properties*
1295                collect `(array ,(sb-vm:saetp-specifier x)))))
1296     => NIL, T (when it should be T, T)
1297
1298 307: "Problem in obsolete instance protocol"
1299     (reported by Bruno Haible as the fourth problem in sbcl-devel 
1300     "installing sbcl" 2004-04-15)
1301
1302   (progn
1303     (defclass foo92b (foo92a) ((s :initarg :s)))
1304     (defclass foo92a () ())
1305     (let ((x (make-instance 'foo92b :s 5)) (update-counter 0))
1306       (defclass foo92b (foo92a) ((s) (s1) (s2))) ; still subclass of foo92a
1307       (slot-value x 's)
1308       (defmethod update-instance-for-redefined-class 
1309           ((object foo92b) added-slots discarded-slots plist &rest initargs)
1310         (incf update-counter))
1311       (make-instances-obsolete 'foo92a)
1312       (slot-value x 's)
1313       update-counter))
1314   => 0 ; should be 1
1315
1316 308: "Characters without names"
1317     (reported by Bruno Haible sbcl-devel "character names are missing"
1318     2004-04-19)
1319   (graphic-char-p (code-char 255))
1320   => NIL
1321   (char-name (code-char 255))
1322   => NIL
1323
1324   SBCL is unsure of what to do about characters with codes in the
1325   range 128-255.  Currently they are treated as non-graphic, but don't
1326   have names, which is not compliant with the standard.  Various fixes
1327   are possible, such as
1328   * giving them names such as NON-ASCII-128;
1329   * reducing CHAR-CODE-LIMIT to 127 (almost certainly unpopular);
1330   * making the characters graphic (makes a certain amount of sense);
1331   * biting the bullet and implementing Unicode (probably quite hard).
1332
1333 309: "Dubious values for implementation limits"
1334     (reported by Bruno Haible sbcl-devel "Incorrect value of
1335     multiple-values-limit" 2004-04-19)
1336   (values-list (make-list 1000000)), on x86/linux, signals a stack
1337   exhaustion condition, despite MULTIPLE-VALUES-LIMIT being
1338   significantly larger than 1000000.  There are probably similar
1339   dubious values for CALL-ARGUMENTS-LIMIT (see cmucl-help/cmucl-imp
1340   around the same time regarding a call to LIST on sparc with 1000
1341   arguments) and other implementation limit constants.
1342
1343 310: "Floating point printing inaccuracy"
1344     (reported by Bruno Haible sbcl-devel "print-read consistency for 
1345     floating point numbers" 2004-04-19)
1346   (let ((x (/ -9.349640046247849d-21 -9.381494249123696d-11)))
1347     (let ((y (read-from-string (write-to-string x :readably t))))
1348       (eql x y)))
1349   should return T but, as of sbcl-0.8.9.51, returns NIL.
1350
1351   That this is a bug in the printer is demonstrated by
1352     (setq x1 (float -5496527/100000000000000000))
1353     (setq x2 (float -54965272/1000000000000000000))
1354     (integer-decode-float x1) => 15842660 -58 -1
1355     (integer-decode-float x2) => 15842661 -58 -1
1356     (prin1-to-string x1) => "-5.496527e-11"
1357     (prin1-to-string x2) => "-5.496527e-11" ; should be different!
1358
1359   Note also the following comment from src/code/print.lisp:
1360     ;;; NOTE: When a number is to be printed in exponential format, it is
1361     ;;; scaled in floating point. Since precision may be lost in this
1362     ;;; process, the guaranteed accuracy properties of FLONUM-TO-STRING
1363     ;;; are lost. The difficulty is that FLONUM-TO-STRING performs
1364     ;;; extensive computations with integers of similar magnitude to that
1365     ;;; of the number being printed. For large exponents, the bignums
1366     ;;; really get out of hand. If bignum arithmetic becomes reasonably
1367     ;;; fast and the exponent range is not too large, then it might become
1368     ;;; attractive to handle exponential notation with the same accuracy
1369     ;;; as non-exponential notation, using the method described in the
1370     ;;; Steele and White paper.
1371
1372 311: "Tokeniser not thread-safe"
1373     (see also Robert Marlow sbcl-help "Multi threaded read chucking a
1374     spak" 2004-04-19)
1375   The tokenizer's use of *read-buffer* and *read-buffer-length* causes
1376   spurious errors should two threads attempt to tokenise at the same
1377   time.