1.0.3.6: Make sb-bsd-sockets use getaddrinfo/getnameinfo where available
[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 27:
88   Sometimes (SB-EXT:QUIT) fails with 
89         Argh! maximum interrupt nesting depth (4096) exceeded, exiting
90         Process inferior-lisp exited abnormally with code 1
91   I haven't noticed a repeatable case of this yet.
92
93 33:
94   And as long as we're wishing, it would be awfully nice if INSPECT could
95   also report on closures, telling about the values of the bound variables.
96
97   Currently INSPECT and DESCRIBE do show the values, but showing the
98   names of the bindings would be even nicer.
99
100 35:
101   The compiler assumes that any time a function of declared FTYPE
102   doesn't signal an error, its arguments were of the declared type.
103   E.g. compiling and loading
104     (DECLAIM (OPTIMIZE (SAFETY 3)))
105     (DEFUN FACTORIAL (X) (GAMMA (1+ X)))
106     (DEFUN GAMMA (X) X)
107     (DECLAIM (FTYPE (FUNCTION (UNSIGNED-BYTE)) FACTORIAL))
108     (DEFUN FOO (X)
109       (COND ((> (FACTORIAL X) 1.0E6)
110              (FORMAT T "too big~%"))
111             ((INTEGERP X)
112              (FORMAT T "exactly ~S~%" (FACTORIAL X)))
113             (T
114              (FORMAT T "approximately ~S~%" (FACTORIAL X)))))
115   then executing
116     (FOO 1.5)
117   will cause the INTEGERP case to be selected, giving bogus output a la
118     exactly 2.5
119   This violates the "declarations are assertions" principle.
120   According to the ANSI spec, in the section "System Class FUNCTION",
121   this is a case of "lying to the compiler", but the lying is done
122   by the code which calls FACTORIAL with non-UNSIGNED-BYTE arguments,
123   not by the unexpectedly general definition of FACTORIAL. In any case,
124   "declarations are assertions" means that lying to the compiler should
125   cause an error to be signalled, and should not cause a bogus
126   result to be returned. Thus, the compiler should not assume
127   that arbitrary functions check their argument types. (It might
128   make sense to add another flag (CHECKED?) to DEFKNOWN to 
129   identify functions which *do* check their argument types.)
130   (Also, verify that the compiler handles declared function
131   return types as assertions.)
132
133 42:
134   The definitions of SIGCONTEXT-FLOAT-REGISTER and
135   %SET-SIGCONTEXT-FLOAT-REGISTER in x86-vm.lisp say they're not
136   supported on FreeBSD because the floating point state is not saved,
137   but at least as of FreeBSD 4.0, the floating point state *is* saved,
138   so they could be supported after all. Very likely 
139   SIGCONTEXT-FLOATING-POINT-MODES could now be supported, too.
140
141 61:
142   Compiling and loading
143     (DEFUN FAIL (X) (THROW 'FAIL-TAG X))
144     (FAIL 12)
145   then requesting a BACKTRACE at the debugger prompt gives no information
146   about where in the user program the problem occurred.
147
148   (this is apparently mostly fixed on the SPARC, PPC, and x86 architectures:
149   while giving the backtrace the non-x86 systems complains about "unknown
150   source location: using block start", but apart from that the
151   backtrace seems reasonable. On x86 this is masked by bug 353. See
152   tests/debug.impure.lisp for a test case)
153
154 64:
155   Using the pretty-printer from the command prompt gives funny
156   results, apparently because the pretty-printer doesn't know
157   about user's command input, including the user's carriage return
158   that the user, and therefore the pretty-printer thinks that
159   the new output block should start indented 2 or more characters
160   rightward of the correct location.
161
162 67:
163   As reported by Winton Davies on a CMU CL mailing list 2000-01-10,
164   and reported for SBCL by Martin Atzmueller 2000-10-20: (TRACE GETHASH)
165   crashes SBCL. In general tracing anything which is used in the 
166   implementation of TRACE is likely to have the same problem.
167
168 78:
169   ANSI says in one place that type declarations can be abbreviated even
170   when the type name is not a symbol, e.g.
171     (DECLAIM ((VECTOR T) *FOOVECTOR*))
172   SBCL doesn't support this. But ANSI says in another place that this
173   isn't allowed. So it's not clear this is a bug after all. (See the
174   e-mail on cmucl-help@cons.org on 2001-01-16 and 2001-01-17 from WHN
175   and Pierre Mai.)
176
177 83:
178   RANDOM-INTEGER-EXTRA-BITS=10 may not be large enough for the RANDOM
179   RNG to be high quality near RANDOM-FIXNUM-MAX; it looks as though
180   the mean of the distribution can be systematically O(0.1%) wrong.
181   Just increasing R-I-E-B is probably not a good solution, since
182   it would decrease efficiency more than is probably necessary. Perhaps
183   using some sort of accept/reject method would be better.
184
185 85:
186   Internally the compiler sometimes evaluates
187     (sb-kernel:type/= (specifier-type '*) (specifier-type t))
188   (I stumbled across this when I added an
189     (assert (not (eq type1 *wild-type*)))
190   in the NAMED :SIMPLE-= type method.) '* isn't really a type, and
191   in a type context should probably be translated to T, and so it's
192   probably wrong to ask whether it's equal to the T type and then (using
193   the EQ type comparison in the NAMED :SIMPLE-= type method) return NIL.
194   (I haven't tried to investigate this bug enough to guess whether
195   there might be any user-level symptoms.)
196
197   In fact, the type system is likely to depend on this inequality not
198   holding... * is not equivalent to T in many cases, such as 
199     (VECTOR *) /= (VECTOR T).
200
201 98:
202   In sbcl-0.6.11.41 (and in all earlier SBCL, and in CMU
203   CL), out-of-line structure slot setters are horribly inefficient
204   whenever the type of the slot is declared, because out-of-line
205   structure slot setters are implemented as closures to save space,
206   so the compiler doesn't compile the type test into code, but
207   instead just saves the type in a lexical closure and interprets it
208   at runtime.
209     To exercise the problem, compile and load
210       (cl:in-package :cl-user)
211       (defstruct foo
212         (bar (error "missing") :type bar))
213       (defvar *foo*)
214       (defun wastrel1 (x)
215         (loop (setf (foo-bar *foo*) x)))
216       (defstruct bar)
217       (defvar *bar* (make-bar))
218       (defvar *foo* (make-foo :bar *bar*))
219       (defvar *setf-foo-bar* #'(setf foo-bar))
220       (defun wastrel2 (x)
221         (loop (funcall *setf-foo-bar* x *foo*)))
222   then run (WASTREL1 *BAR*) or (WASTREL2 *BAR*), hit Ctrl-C, and
223   use BACKTRACE, to see it's spending all essentially all its time
224   in %TYPEP and VALUES-SPECIFIER-TYPE and so forth.
225     One possible solution would be simply to give up on 
226   representing structure slot accessors as functions, and represent
227   them as macroexpansions instead. This can be inconvenient for users,
228   but it's not clear that it's worse than trying to help by expanding
229   into a horribly inefficient implementation.
230     As a workaround for the problem, #'(SETF FOO) expressions
231   can be replaced with (EFFICIENT-SETF-FUNCTION FOO), where
232 (defmacro efficient-setf-function (place-function-name)
233   (or #+sbcl (and (sb-int:info :function :accessor-for place-function-name)
234                   ;; a workaround for the problem, encouraging the
235                   ;; inline expansion of the structure accessor, so
236                   ;; that the compiler can optimize its type test
237                   (let ((new-value (gensym "NEW-VALUE-"))
238                         (structure-value (gensym "STRUCTURE-VALUE-")))
239                     `(lambda (,new-value ,structure-value)
240                        (setf (,place-function-name ,structure-value)
241                              ,new-value))))
242       ;; no problem, can just use the ordinary expansion
243       `(function (setf ,place-function-name))))
244
245 100:
246   There's apparently a bug in CEILING optimization which caused 
247   Douglas Crosher to patch the CMU CL version. Martin Atzmueller
248   applied the patches to SBCL and they didn't seem to cause problems
249   (as reported sbcl-devel 2001-05-04). However, since the patches
250   modify nontrivial code which was apparently written incorrectly
251   the first time around, until regression tests are written I'm not 
252   comfortable merging the patches in the CVS version of SBCL.
253
254 108:
255   (TIME (ROOM T)) reports more than 200 Mbytes consed even for
256   a clean, just-started SBCL system. And it seems to be right:
257   (ROOM T) can bring a small computer to its knees for a *long*
258   time trying to GC afterwards. Surely there's some more economical
259   way to implement (ROOM T).
260
261   Daniel Barlow doesn't know what fixed this, but observes that it 
262   doesn't seem to be the case in 0.8.7.3 any more.  Instead, (ROOM T)
263   in a fresh SBCL causes
264
265     debugger invoked on a SB-INT:BUG in thread 5911:
266         failed AVER: "(SAP= CURRENT END)"
267
268   unless a GC has happened beforehand.
269
270 117:
271   When the compiler inline expands functions, it may be that different
272   kinds of return values are generated from different code branches.
273   E.g. an inline expansion of POSITION generates integer results 
274   from one branch, and NIL results from another. When that inline
275   expansion is used in a context where only one of those results
276   is acceptable, e.g.
277     (defun foo (x)
278       (aref *a1* (position x *a2*)))
279   and the compiler can't prove that the unacceptable branch is 
280   never taken, then bogus type mismatch warnings can be generated.
281   If you need to suppress the type mismatch warnings, you can
282   suppress the inline expansion,
283     (defun foo (x)
284       #+sbcl (declare (notinline position)) ; to suppress bug 117 bogowarnings
285       (aref *a1* (position x *a2*)))
286   or, sometimes, suppress them by declaring the result to be of an
287   appropriate type,
288     (defun foo (x)
289       (aref *a1* (the integer (position x *a2*))))
290
291   This is not a new compiler problem in 0.7.0, but the new compiler
292   transforms for FIND, POSITION, FIND-IF, and POSITION-IF make it 
293   more conspicuous. If you don't need performance from these functions,
294   and the bogus warnings are a nuisance for you, you can return to
295   your pre-0.7.0 state of grace with
296     #+sbcl (declaim (notinline find position find-if position-if)) ; bug 117..
297
298   (see also bug 279)
299
300 124:
301    As of version 0.pre7.14, SBCL's implementation of MACROLET makes
302    the entire lexical environment at the point of MACROLET available
303    in the bodies of the macroexpander functions. In particular, it
304    allows the function bodies (which run at compile time) to try to
305    access lexical variables (which are only defined at runtime).
306    It doesn't even issue a warning, which is bad.
307
308    The SBCL behavior arguably conforms to the ANSI spec (since the
309    spec says that the behavior is undefined, ergo anything conforms).
310    However, it would be better to issue a compile-time error.
311    Unfortunately I (WHN) don't see any simple way to detect this
312    condition in order to issue such an error, so for the meantime
313    SBCL just does this weird broken "conforming" thing.
314
315    The ANSI standard says, in the definition of the special operator
316    MACROLET,
317        The macro-expansion functions defined by MACROLET are defined
318        in the lexical environment in which the MACROLET form appears.
319        Declarations and MACROLET and SYMBOL-MACROLET definitions affect
320        the local macro definitions in a MACROLET, but the consequences
321        are undefined if the local macro definitions reference any
322        local variable or function bindings that are visible in that
323        lexical environment.
324    Then it seems to contradict itself by giving the example
325         (defun foo (x flag)
326            (macrolet ((fudge (z)
327                          ;The parameters x and flag are not accessible
328                          ; at this point; a reference to flag would be to
329                          ; the global variable of that name.
330                          ` (if flag (* ,z ,z) ,z)))
331             ;The parameters x and flag are accessible here.
332              (+ x
333                 (fudge x)
334                 (fudge (+ x 1)))))
335    The comment "a reference to flag would be to the global variable
336    of the same name" sounds like good behavior for the system to have.
337    but actual specification quoted above says that the actual behavior
338    is undefined.
339
340    (Since 0.7.8.23 macroexpanders are defined in a restricted version
341    of the lexical environment, containing no lexical variables and
342    functions, which seems to conform to ANSI and CLtL2, but signalling
343    a STYLE-WARNING for references to variables similar to locals might
344    be a good thing.)
345
346 135:
347   Ideally, uninterning a symbol would allow it, and its associated
348   FDEFINITION and PROCLAIM data, to be reclaimed by the GC. However,
349   at least as of sbcl-0.7.0, this isn't the case. Information about
350   FDEFINITIONs and PROCLAIMed properties is stored in globaldb.lisp
351   essentially in ordinary (non-weak) hash tables keyed by symbols.
352   Thus, once a system has an entry in this system, it tends to live
353   forever, even when it is uninterned and all other references to it
354   are lost.
355
356 143:
357   (reported by Jesse Bouwman 2001-10-24 through the unfortunately
358   prominent SourceForge web/db bug tracking system, which is 
359   unfortunately not a reliable way to get a timely response from
360   the SBCL maintainers)
361       In the course of trying to build a test case for an 
362     application error, I encountered this behavior: 
363       If you start up sbcl, and then lay on CTRL-C for a 
364     minute or two, the lisp process will eventually say: 
365          %PRIMITIVE HALT called; the party is over. 
366     and throw you into the monitor. If I start up lisp, 
367     attach to the process with strace, and then do the same 
368     (abusive) thing, I get instead: 
369          access failure in heap page not marked as write-protected 
370     and the monitor again. I don't know enough to have the 
371     faintest idea of what is going on here. 
372       This is with sbcl 6.12, uname -a reports: 
373          Linux prep 2.2.19 #4 SMP Tue Apr 24 13:59:52 CDT 2001 i686 unknown 
374   I (WHN) have verified that the same thing occurs on sbcl-0.pre7.141
375   under OpenBSD 2.9 on my X86 laptop. Do be patient when you try it:
376   it took more than two minutes (but less than five) for me.
377
378 145:
379   a.
380   ANSI allows types `(COMPLEX ,FOO) to use very hairy values for
381   FOO, e.g. (COMPLEX (AND REAL (SATISFIES ODDP))). The old CMU CL
382   COMPLEX implementation didn't deal with this, and hasn't been
383   upgraded to do so. (This doesn't seem to be a high priority
384   conformance problem, since seems hard to construct useful code
385   where it matters.)
386
387   [ partially fixed by CSR in 0.8.17.17 because of a PFD ansi-tests
388     report that (COMPLEX RATIO) was failing; still failing on types of
389     the form (AND NUMBER (SATISFIES REALP) (SATISFIES ZEROP)). ]
390
391   b. (fixed in 0.8.3.43)
392
393 146:
394   Floating point errors are reported poorly. E.g. on x86 OpenBSD
395   with sbcl-0.7.1, 
396         * (expt 2.0 12777)
397         debugger invoked on condition of type SB-KERNEL:FLOATING-POINT-EXCEPTION:
398           An arithmetic error SB-KERNEL:FLOATING-POINT-EXCEPTION was signalled.
399         No traps are enabled? How can this be?
400   It should be possible to be much more specific (overflow, division
401   by zero, etc.) and of course the "How can this be?" should be fixable.
402
403   See also bugs #45.c and #183
404
405 162:
406   (reported by Robert E. Brown 2002-04-16) 
407   When a function is called with too few arguments, causing the
408   debugger to be entered, the uninitialized slots in the bad call frame 
409   seem to cause GCish problems, being interpreted as tagged data even
410   though they're not. In particular, executing ROOM in the
411   debugger at that point causes AVER failures:
412     * (machine-type)
413     "X86"
414     * (lisp-implementation-version)
415     "0.7.2.12"
416     * (typep 10)
417     ...
418     0] (room)
419     ...
420     failed AVER: "(SAP= CURRENT END)"
421   (Christophe Rhodes reports that this doesn't occur on the SPARC, which
422   isn't too surprising since there are many differences in stack
423   implementation and GC conservatism between the X86 and other ports.)
424
425   This is probably the same bug as 216
426
427 173:
428   The compiler sometimes tries to constant-fold expressions before
429   it checks to see whether they can be reached. This can lead to 
430   bogus warnings about errors in the constant folding, e.g. in code
431   like 
432     (WHEN X
433       (WRITE-STRING (> X 0) "+" "0"))
434   compiled in a context where the compiler can prove that X is NIL,
435   and the compiler complains that (> X 0) causes a type error because
436   NIL isn't a valid argument to #'>. Until sbcl-0.7.4.10 or so this
437   caused a full WARNING, which made the bug really annoying because then 
438   COMPILE and COMPILE-FILE returned FAILURE-P=T for perfectly legal
439   code. Since then the warning has been downgraded to STYLE-WARNING, 
440   so it's still a bug but at least it's a little less annoying.
441
442 183: "IEEE floating point issues"
443   Even where floating point handling is being dealt with relatively
444   well (as of sbcl-0.7.5, on sparc/sunos and alpha; see bug #146), the
445   accrued-exceptions and current-exceptions part of the fp control
446   word don't seem to bear much relation to reality. E.g. on
447   SPARC/SunOS:
448   * (/ 1.0 0.0)
449
450   debugger invoked on condition of type DIVISION-BY-ZERO:
451     arithmetic error DIVISION-BY-ZERO signalled
452   0] (sb-vm::get-floating-point-modes)
453
454   (:TRAPS (:OVERFLOW :INVALID :DIVIDE-BY-ZERO)
455           :ROUNDING-MODE :NEAREST
456           :CURRENT-EXCEPTIONS NIL
457           :ACCRUED-EXCEPTIONS (:INEXACT)
458           :FAST-MODE NIL)
459   0] abort
460   * (sb-vm::get-floating-point-modes)
461   (:TRAPS (:OVERFLOW :INVALID :DIVIDE-BY-ZERO)
462           :ROUNDING-MODE :NEAREST
463           :CURRENT-EXCEPTIONS (:INEXACT)
464           :ACCRUED-EXCEPTIONS (:INEXACT)
465           :FAST-MODE NIL)
466
467 188: "compiler performance fiasco involving type inference and UNION-TYPE"
468     (time (compile
469            nil
470            '(lambda ()
471              (declare (optimize (safety 3)))
472              (declare (optimize (compilation-speed 2)))
473              (declare (optimize (speed 1) (debug 1) (space 1)))
474              (let ((start 4))
475                (declare (type (integer 0) start))
476                (print (incf start 22))
477                (print (incf start 26))
478                (print (incf start 28)))
479              (let ((start 6))
480                (declare (type (integer 0) start))
481                (print (incf start 22))
482                (print (incf start 26)))
483              (let ((start 10))
484                (declare (type (integer 0) start))
485                (print (incf start 22))
486                (print (incf start 26))))))
487
488   This example could be solved with clever enough constraint
489   propagation or with SSA, but consider
490
491     (let ((x 0))
492       (loop (incf x 2)))
493
494   The careful type of X is {2k} :-(. Is it really important to be
495   able to work with unions of many intervals?
496
497 191: "Miscellaneous PCL deficiencies"
498   (reported by Alexey Dejneka sbcl-devel 2002-08-04)
499   a. DEFCLASS does not inform the compiler about generated
500      functions. Compiling a file with
501        (DEFCLASS A-CLASS ()
502          ((A-CLASS-X)))
503        (DEFUN A-CLASS-X (A)
504          (WITH-SLOTS (A-CLASS-X) A
505            A-CLASS-X))
506      results in a STYLE-WARNING:
507        undefined-function 
508          SB-SLOT-ACCESSOR-NAME::|COMMON-LISP-USER A-CLASS-X slot READER|
509
510      APD's fix for this was checked in to sbcl-0.7.6.20, but Pierre
511      Mai points out that the declamation of functions is in fact
512      incorrect in some cases (most notably for structure
513      classes).  This means that at present erroneous attempts to use
514      WITH-SLOTS and the like on classes with metaclass STRUCTURE-CLASS
515      won't get the corresponding STYLE-WARNING.
516
517      [much later, in 2006-08] in fact it's no longer erroneous to use
518      WITH-SLOTS on structure-classes.  However, including :METACLASS
519      STRUCTURE-CLASS in the class definition gives a whole bunch of
520      function redefinition warnings, so we're still not good to close
521      this bug...
522
523   c. (fixed in 0.8.4.23)
524
525 201: "Incautious type inference from compound types"
526   a. (reported by APD sbcl-devel 2002-09-17)
527     (DEFUN FOO (X)
528       (LET ((Y (CAR (THE (CONS INTEGER *) X))))
529         (SETF (CAR X) NIL)
530         (FORMAT NIL "~S IS ~S, Y = ~S"
531                 (CAR X)
532                 (TYPECASE (CAR X)
533                   (INTEGER 'INTEGER)
534                   (T '(NOT INTEGER)))
535                 Y)))
536
537     (FOO ' (1 . 2)) => "NIL IS INTEGER, Y = 1"
538
539   b.
540     * (defun foo (x)
541         (declare (type (array * (4 4)) x))
542         (let ((y x))
543           (setq x (make-array '(4 4)))
544           (adjust-array y '(3 5))
545           (= (array-dimension y 0) (eval `(array-dimension ,y 0)))))
546     FOO
547     * (foo (make-array '(4 4) :adjustable t))
548     NIL
549
550 205: "environment issues in cross compiler"
551   (These bugs have no impact on user code, but should be fixed or
552   documented.)
553   a. Macroexpanders introduced with MACROLET are defined in the null
554      lexical environment.
555   b. The body of (EVAL-WHEN (:COMPILE-TOPLEVEL) ...) is evaluated in
556      the null lexical environment.
557   c. The cross-compiler cannot inline functions defined in a non-null
558      lexical environment.
559
560 206: ":SB-FLUID feature broken"
561   (reported by Antonio Martinez-Shotton sbcl-devel 2002-10-07)
562   Enabling :SB-FLUID in the target-features list in sbcl-0.7.8 breaks
563   the build.
564
565 207: "poorly distributed SXHASH results for compound data"
566   SBCL's SXHASH could probably try a little harder. ANSI: "the
567   intent is that an implementation should make a good-faith
568   effort to produce hash-codes that are well distributed
569   within the range of non-negative fixnums". But
570         (let ((hits (make-hash-table)))
571           (dotimes (i 16)
572             (dotimes (j 16)
573               (let* ((ij (cons i j))
574                      (newlist (push ij (gethash (sxhash ij) hits))))
575                 (when (cdr newlist)
576                   (format t "~&collision: ~S~%" newlist))))))
577   reports lots of collisions in sbcl-0.7.8. A stronger MIX function
578   would be an obvious way of fix. Maybe it would be acceptably efficient
579   to redo MIX using a lookup into a 256-entry s-box containing
580   29-bit pseudorandom numbers?
581
582 211: "keywords processing"
583   a. :ALLOW-OTHER-KEYS T should allow a function to receive an odd
584      number of keyword arguments.
585
586 212: "Sequence functions and circular arguments"
587   COERCE, MERGE and CONCATENATE go into an infinite loop when given
588   circular arguments; it would be good for the user if they could be
589   given an error instead (ANSI 17.1.1 allows this behaviour on the part
590   of the implementation, as conforming code cannot give non-proper
591   sequences to these functions.  MAP also has this problem (and
592   solution), though arguably the convenience of being able to do
593     (MAP 'LIST '+ FOO '#1=(1 . #1#))
594   might be classed as more important (though signalling an error when
595   all of the arguments are circular is probably desireable).
596
597 213: "Sequence functions and type checking"
598   b. MAP, when given a type argument that is SUBTYPEP LIST, does not
599      check that it will return a sequence of the given type.  Fixing
600      it along the same lines as the others (cf. work done around
601      sbcl-0.7.8.45) is possible, but doing so efficiently didn't look
602      entirely straightforward.
603   c. All of these functions will silently accept a type of the form
604        (CONS INTEGER *)
605      whether or not the return value is of this type.  This is
606      probably permitted by ANSI (see "Exceptional Situations" under
607      ANSI MAKE-SEQUENCE), but the DERIVE-TYPE mechanism does not
608      know about this escape clause, so code of the form
609        (INTEGERP (CAR (MAKE-SEQUENCE '(CONS INTEGER *) 2)))
610      can erroneously return T.
611
612 215: ":TEST-NOT handling by functions"
613   a. FIND and POSITION currently signal errors when given non-NIL for
614      both their :TEST and (deprecated) :TEST-NOT arguments, but by
615      ANSI 17.2 "the consequences are unspecified", which by ANSI 1.4.2
616      means that the effect is "unpredictable but harmless".  It's not
617      clear what that actually means; it may preclude conforming
618      implementations from signalling errors.
619   b. COUNT, REMOVE and the like give priority to a :TEST-NOT argument
620      when conflict occurs.  As a quality of implementation issue, it
621      might be preferable to treat :TEST and :TEST-NOT as being in some
622      sense the same &KEY, and effectively take the first test function in
623      the argument list.
624   c. Again, a quality of implementation issue: it would be good to issue a
625      STYLE-WARNING at compile-time for calls with :TEST-NOT, and a
626      WARNING for calls with both :TEST and :TEST-NOT; possibly this
627      latter should be WARNed about at execute-time too.
628
629 216: "debugger confused by frames with invalid number of arguments"
630   In sbcl-0.7.8.51, executing e.g. (VECTOR-PUSH-EXTEND T), BACKTRACE, Q
631   leaves the system confused, enough so that (QUIT) no longer works.
632   It's as though the process of working with the uninitialized slot in
633   the bad VECTOR-PUSH-EXTEND frame causes GC problems, though that may
634   not be the actual problem. (CMU CL 18c doesn't have problems with this.)
635
636   This is probably the same bug as 162
637
638 235: "type system and inline expansion"
639   a.
640   (declaim (ftype (function (cons) number) acc))
641   (declaim (inline acc))
642   (defun acc (c)
643     (the number (car c)))
644
645   (defun foo (x y)
646     (values (locally (declare (optimize (safety 0)))
647               (acc x))
648             (locally (declare (optimize (safety 3)))
649               (acc y))))
650
651   (foo '(nil) '(t)) => NIL, T.
652
653   As of 0.9.15.41 this seems to be due to ACC being inlined only once
654   inside FOO, which results in the second call reusing the FUNCTIONAL
655   resulting from the first -- which doesn't check the type.
656
657 237: "Environment arguments to type functions"
658   a. Functions SUBTYPEP, TYPEP, UPGRADED-ARRAY-ELEMENT-TYPE, and 
659      UPGRADED-COMPLEX-PART-TYPE now have an optional environment
660      argument, but they ignore it completely.  This is almost 
661      certainly not correct.
662   b. Also, the compiler's optimizers for TYPEP have not been informed
663      about the new argument; consequently, they will not transform
664      calls of the form (TYPEP 1 'INTEGER NIL), even though this is
665      just as optimizeable as (TYPEP 1 'INTEGER).
666
667 238: "REPL compiler overenthusiasm for CLOS code"
668   From the REPL,
669     * (defclass foo () ())
670     * (defmethod bar ((x foo) (foo foo)) (call-next-method))
671   causes approximately 100 lines of code deletion notes.  Some
672   discussion on this issue happened under the title 'Three "interesting"
673   bugs in PCL', resulting in a fix for this oververbosity from the
674   compiler proper; however, the problem persists in the interactor
675   because the notion of original source is not preserved: for the
676   compiler, the original source of the above expression is (DEFMETHOD
677   BAR ((X FOO) (FOO FOO)) (CALL-NEXT-METHOD)), while by the time the
678   compiler gets its hands on the code needing compilation from the REPL,
679   it has been macroexpanded several times.
680
681   A symptom of the same underlying problem, reported by Tony Martinez:
682     * (handler-case
683         (with-input-from-string (*query-io* "    no")
684           (yes-or-no-p))
685       (simple-type-error () 'error))
686     ; in: LAMBDA NIL
687     ;     (SB-KERNEL:FLOAT-WAIT)
688     ; 
689     ; note: deleting unreachable code
690     ; compilation unit finished
691     ;   printed 1 note
692
693 242: "WRITE-SEQUENCE suboptimality"
694   (observed from clx performance)
695   In sbcl-0.7.13, WRITE-SEQUENCE of a sequence of type 
696   (SIMPLE-ARRAY (UNSIGNED-BYTE 8) (*)) on a stream with element-type
697   (UNSIGNED-BYTE 8) will write to the stream one byte at a time,
698   rather than writing the sequence in one go, leading to severe
699   performance degradation.
700   As of sbcl-0.9.0.36, this is solved for fd-streams, so is less of a
701   problem in practice.  (Fully fixing this would require adding a
702   ansi-stream-n-bout slot and associated methods to write a byte
703   sequence to ansi-stream, similar to the existing ansi-stream-sout
704   slot/functions.)
705
706 243: "STYLE-WARNING overenthusiasm for unused variables"
707   (observed from clx compilation)
708   In sbcl-0.7.14, in the presence of the macros
709     (DEFMACRO FOO (X) `(BAR ,X))
710     (DEFMACRO BAR (X) (DECLARE (IGNORABLE X)) 'NIL)
711   somewhat surprising style warnings are emitted for
712     (COMPILE NIL '(LAMBDA (Y) (FOO Y))):
713   ; in: LAMBDA (Y)
714   ;     (LAMBDA (Y) (FOO Y))
715   ; 
716   ; caught STYLE-WARNING:
717   ;   The variable Y is defined but never used.
718
719 245: bugs in disassembler
720   b. On X86 operand size prefix is not recognized.
721
722 251:
723   (defun foo (&key (a :x))
724     (declare (fixnum a))
725     a)
726
727   does not cause a warning. (BTW: old SBCL issued a warning, but for a
728   function, which was never called!)
729
730 256:
731   Compiler does not emit warnings for
732
733   a. (lambda () (svref (make-array 8 :adjustable t) 1))
734
735   b. (lambda (x)
736        (list (let ((y (the real x)))
737                (unless (floatp y) (error ""))
738                y)
739              (integer-length x)))
740
741   c. (lambda (x)
742        (declare (optimize (debug 0)))
743        (declare (type vector x))
744        (list (fill-pointer x)
745              (svref x 1)))
746
747 257:
748   Complex array type does not have corresponding type specifier.
749
750   This is a problem because the compiler emits optimization notes when
751   you use a non-simple array, and without a type specifier for hairy
752   array types, there's no good way to tell it you're doing it
753   intentionally so that it should shut up and just compile the code.
754
755   Another problem is confusing error message "asserted type ARRAY
756   conflicts with derived type (VALUES SIMPLE-VECTOR &OPTIONAL)" during
757   compiling (LAMBDA (V) (VALUES (SVREF V 0) (VECTOR-POP V))).
758
759   The last problem is that when type assertions are converted to type
760   checks, types are represented with type specifiers, so we could lose
761   complex attribute. (Now this is probably not important, because
762   currently checks for complex arrays seem to be performed by
763   callees.)
764
765 259:
766   (compile nil '(lambda () (aref (make-array 0) 0))) compiles without
767   warning.  Analogous cases with the index and length being equal and
768   greater than 0 are warned for; the problem here seems to be that the
769   type required for an array reference of this type is (INTEGER 0 (0))
770   which is canonicalized to NIL.
771
772 260:
773   a.
774   (let* ((s (gensym))
775          (t1 (specifier-type s)))
776     (eval `(defstruct ,s))
777     (type= t1 (specifier-type s)))
778   => NIL, NIL
779
780   (fixed in 0.8.1.24)
781
782   b. The same for CSUBTYPEP.
783
784 262: "yet another bug in inline expansion of local functions"
785   During inline expansion of a local function Python can try to
786   reference optimized away objects (functions, variables, CTRANs from
787   tags and blocks), which later may lead to problems. Some of the
788   cases are worked around by forbidding expansion in such cases, but
789   the better way would be to reimplement inline expansion by copying
790   IR1 structures.
791
792 266:
793   David Lichteblau provided (sbcl-devel 2003-06-01) a patch to fix
794   behaviour of streams with element-type (SIGNED-BYTE 8).  The patch
795   looks reasonable, if not obviously correct; however, it caused the
796   PPC/Linux port to segfault during warm-init while loading
797   src/pcl/std-class.fasl.  A workaround patch was made, but it would
798   be nice to understand why the first patch caused problems, and to
799   fix the cause if possible.
800
801 268: "wrong free declaration scope"
802   The following code must signal type error:
803
804     (locally (declare (optimize (safety 3)))
805       (flet ((foo (x &optional (y (car x)))
806                (declare (optimize (safety 0)))
807                (list x y)))
808         (funcall (eval #'foo) 1)))
809
810 270:
811   In the following function constraint propagator optimizes nothing:
812
813     (defun foo (x)
814       (declare (integer x))
815       (declare (optimize speed))
816       (typecase x
817         (fixnum "hala")
818         (fixnum "buba")
819         (bignum "hip")
820         (t "zuz")))
821
822 273:
823   Compilation of the following two forms causes "X is unbound" error:
824
825     (symbol-macrolet ((x pi))
826       (macrolet ((foo (y) (+ x y)))
827         (declaim (inline bar))
828         (defun bar (z)
829           (* z (foo 4)))))
830     (defun quux (z)
831       (bar z))
832
833   (See (COERCE (CDR X) 'FUNCTION) in IR1-CONVERT-INLINE-LAMBDA.)
834
835 274:
836   CLHS says that type declaration of a symbol macro should not affect
837   its expansion, but in SBCL it does. (If you like magic and want to
838   fix it, don't forget to change all uses of MACROEXPAND to
839   MACROEXPAND*.)
840
841 275:
842   The following code (taken from CLOCC) takes a lot of time to compile:
843
844     (defun foo (n)
845       (declare (type (integer 0 #.large-constant) n))
846       (expt 1/10 n))
847
848   (fixed in 0.8.2.51, but a test case would be good)
849
850 276:
851   b. The same as in a., but using MULTIPLE-VALUE-SETQ instead of SETQ.
852   c. (defvar *faa*)
853      (defmethod faa ((*faa* double-float))
854            (set '*faa* (when (< *faa* 0) (- *faa*)))
855            (1+ *faa*))
856      (faa 1d0) => type error
857
858 279: type propagation error -- correctly inferred type goes astray?
859   In sbcl-0.8.3 and sbcl-0.8.1.47, the warning
860        The binding of ABS-FOO is a (VALUES (INTEGER 0 0)
861        &OPTIONAL), not a (INTEGER 1 536870911)
862   is emitted when compiling this file:
863     (declaim (ftype (function ((integer 0 #.most-positive-fixnum))
864                               (integer #.most-negative-fixnum 0))
865                     foo))
866     (defun foo (x)
867       (- x))
868     (defun bar (x)
869       (let* (;; Uncomment this for a type mismatch warning indicating 
870              ;; that the type of (FOO X) is correctly understood.
871              #+nil (fs-foo (float-sign (foo x)))
872                    ;; Uncomment this for a type mismatch warning 
873                    ;; indicating that the type of (ABS (FOO X)) is
874                    ;; correctly understood.
875              #+nil (fs-abs-foo (float-sign (abs (foo x))))
876              ;; something wrong with this one though
877              (abs-foo (abs (foo x))))
878         (declare (type (integer 1 100) abs-foo))
879         (print abs-foo)))
880
881  (see also bug 117)
882
883 283: Thread safety: libc functions
884   There are places that we call unsafe-for-threading libc functions
885   that we should find alternatives for, or put locks around.  Known or
886   strongly suspected problems, as of 0.8.3.10: please update this
887   bug instead of creating new ones
888
889     gethostbyaddr in sb-bsd-sockets
890
891 284: Thread safety: special variables
892   There are lots of special variables in SBCL, and I feel sure that at
893   least some of them are indicative of potentially thread-unsafe 
894   parts of the system.  See doc/internals/notes/threading-specials
895
896 286: "recursive known functions"
897   Self-call recognition conflicts with known function
898   recognition. Currently cross compiler and target COMPILE do not
899   recognize recursion, and in target compiler it can be disabled. We
900   can always disable it for known functions with RECURSIVE attribute,
901   but there remains a possibility of a function with a
902   (tail)-recursive simplification pass and transforms/VOPs for base
903   cases.
904
905 288: fundamental cross-compilation issues (from old UGLINESS file)
906   Using host floating point numbers to represent target floating point
907   numbers, or host characters to represent target characters, is
908   theoretically shaky. (The characters are OK as long as the characters
909   are in the ANSI-guaranteed character set, though, so they aren't a
910   real problem as long as the sources don't need anything but that;
911   the floats are a real problem.)
912
913 289: "type checking and source-transforms"
914   a.
915     (block nil (let () (funcall #'+ (eval 'nil) (eval '1) (return :good))))
916   signals type error.
917
918   Our policy is to check argument types at the moment of a call. It
919   disagrees with ANSI, which says that type assertions are put
920   immediately onto argument expressions, but is easier to implement in
921   IR1 and is more compatible to type inference, inline expansion,
922   etc. IR1-transforms automatically keep this policy, but source
923   transforms for associative functions (such as +), being applied
924   during IR1-convertion, do not. It may be tolerable for direct calls
925   (+ x y z), but for (FUNCALL #'+ x y z) it is non-conformant.
926
927   b. Another aspect of this problem is efficiency. [x y + z +]
928   requires less registers than [x y z + +]. This transformation is
929   currently performed with source transforms, but it would be good to
930   also perform it in IR1 optimization phase.
931
932 290: Alpha floating point and denormalized traps
933   In SBCL 0.8.3.6x on the alpha, we work around what appears to be a
934   hardware or kernel deficiency: the status of the enable/disable
935   denormalized-float traps bit seems to be ambiguous; by the time we
936   get to os_restore_fp_control after a trap, denormalized traps seem
937   to be enabled.  Since we don't want a trap every time someone uses a
938   denormalized float, in general, we mask out that bit when we restore
939   the control word; however, this clobbers any change the user might
940   have made.
941
942 297:
943   LOOP with non-constant arithmetic step clauses suffers from overzealous
944   type constraint: code of the form 
945     (loop for d of-type double-float from 0d0 to 10d0 by x collect d)
946   compiles to a type restriction on X of (AND DOUBLE-FLOAT (REAL
947   (0))).  However, an integral value of X should be legal, because
948   successive adds of integers to double-floats produces double-floats,
949   so none of the type restrictions in the code is violated.
950
951 300: (reported by Peter Graves) Function PEEK-CHAR checks PEEK-TYPE
952   argument type only after having read a character. This is caused
953   with EXPLICIT-CHECK attribute in DEFKNOWN. The similar problem
954   exists with =, /=, <, >, <=, >=. They were fixed, but it is probably
955   less error prone to have EXPLICIT-CHECK be a local declaration,
956   being put into the definition, instead of an attribute being kept in
957   a separate file; maybe also put it into SB-EXT?
958
959 301: ARRAY-SIMPLE-=-TYPE-METHOD breaks on corner cases which can arise
960      in NOTE-ASSUMED-TYPES
961   In sbcl-0.8.7.32, compiling the file
962         (defun foo (x y)
963           (declare (type integer x))
964           (declare (type (vector (or hash-table bit)) y))
965           (bletch 2 y))
966         (defun bar (x y)
967           (declare (type integer x))
968           (declare (type (simple-array base (2)) y))
969           (bletch 1 y))
970   gives the error
971     failed AVER: "(NOT (AND (NOT EQUALP) CERTAINP))"
972
973 303: "nonlinear LVARs" (aka MISC.293)
974     (defun buu (x)
975       (multiple-value-call #'list
976         (block foo
977           (multiple-value-prog1
978               (eval '(values :a :b :c))
979             (catch 'bar
980               (if (> x 0)
981                   (return-from foo
982                     (eval `(if (> ,x 1)
983                                1
984                                (throw 'bar (values 3 4)))))))))))
985
986   (BUU 1) returns garbage.
987
988   The problem is that both EVALs sequentially write to the same LVAR.
989
990 306: "Imprecise unions of array types"
991
992   a. fixed in SBCL 0.9.15.48
993
994   b.(subtypep 
995      'array
996      `(or
997        ,@(loop for x across sb-vm:*specialized-array-element-type-properties*
998                collect `(array ,(sb-vm:saetp-specifier x)))))
999     => NIL, T (when it should be T, T)
1000
1001 309: "Dubious values for implementation limits"
1002     (reported by Bruno Haible sbcl-devel "Incorrect value of
1003     multiple-values-limit" 2004-04-19)
1004   (values-list (make-list 1000000)), on x86/linux, signals a stack
1005   exhaustion condition, despite MULTIPLE-VALUES-LIMIT being
1006   significantly larger than 1000000.  There are probably similar
1007   dubious values for CALL-ARGUMENTS-LIMIT (see cmucl-help/cmucl-imp
1008   around the same time regarding a call to LIST on sparc with 1000
1009   arguments) and other implementation limit constants.
1010
1011 314: "LOOP :INITIALLY clauses and scope of initializers"
1012   reported by Bruno Haible sbcl-devel "various SBCL bugs" from CLISP
1013   test suite, originally by Thomas F. Burdick.
1014     ;; <http://www.lisp.org/HyperSpec/Body/sec_6-1-7-2.html>
1015     ;; According to the HyperSpec 6.1.2.1.4, in for-as-equals-then, var is
1016     ;; initialized to the result of evaluating form1.  6.1.7.2 says that
1017     ;; initially clauses are evaluated in the loop prologue, which precedes all
1018     ;; loop code except for the initial settings provided by with, for, or as.
1019     (loop :for x = 0 :then (1+ x) 
1020           :for y = (1+ x) :then (ash y 1)
1021           :for z :across #(1 3 9 27 81 243) 
1022           :for w = (+ x y z)
1023           :initially (assert (zerop x)) :initially (assert (= 2 w))
1024           :until (>= w 100) :collect w)
1025     Expected: (2 6 15 38)
1026     Got:      ERROR
1027
1028 318: "stack overflow in compiler warning with redefined class"
1029   reported by Bruno Haible sbcl-devel "various SBCL bugs" from CLISP
1030   test suite.
1031     (defstruct foo a)
1032     (setf (find-class 'foo) nil)
1033     (defstruct foo slot-1)
1034   This used to give a stack overflow from within the printer, which has
1035   been fixed as of 0.8.16.11. Current result:
1036     ; caught ERROR:
1037     ;   can't compile TYPEP of anonymous or undefined class:
1038     ;     #<SB-KERNEL:STRUCTURE-CLASSOID FOO>
1039     ...
1040     debugger invoked on a TYPE-ERROR in thread 19973:
1041       The value NIL is not of type FUNCTION.
1042
1043   CSR notes: it's not really clear what it should give: is (SETF FIND-CLASS)
1044     meant to be enough to delete structure classes from the system?
1045
1046 319: "backquote with comma inside array"
1047   reported by Bruno Haible sbcl-devel "various SBCL bugs" from CLISP
1048   test suite.
1049     (read-from-string "`#1A(1 2 ,(+ 2 2) 4)") 
1050   gives
1051     #(1 2 ((SB-IMPL::|,|) + 2 2) 4)
1052   which probably isn't intentional.
1053
1054 324: "STREAMs and :ELEMENT-TYPE with large bytesize"
1055   In theory, (open foo :element-type '(unsigned-byte <x>)) should work
1056   for all positive integral <x>.  At present, it only works for <x> up
1057   to about 1024 (and similarly for signed-byte), so
1058     (open "/dev/zero" :element-type '(unsigned-byte 1025))
1059   gives an error in sbcl-0.8.10.
1060
1061 325: "CLOSE :ABORT T on supeseding streams"
1062   Closing a stream opened with :IF-EXISTS :SUPERSEDE with :ABORT T leaves no
1063   file on disk, even if one existed before opening.
1064
1065   The illegality of this is not crystal clear, as the ANSI dictionary
1066   entry for CLOSE says that when :ABORT is T superseded files are not
1067   superseded (ie. the original should be restored), whereas the OPEN
1068   entry says about :IF-EXISTS :SUPERSEDE "If possible, the
1069   implementation should not destroy the old file until the new stream
1070   is closed." -- implying that even though undesirable, early deletion
1071   is legal. Restoring the original would none the less be the polite
1072   thing to do.
1073
1074 326: "*PRINT-CIRCLE* crosstalk between streams"
1075   In sbcl-0.8.10.48 it's possible for *PRINT-CIRCLE* references to be
1076   mixed between streams when output operations are intermingled closely
1077   enough (as by doing output on S2 from within (PRINT-OBJECT X S1) in the
1078   test case below), so that e.g. the references #2# appears on a stream
1079   with no preceding #2= on that stream to define it (because the #2= was
1080   sent to another stream).
1081     (cl:in-package :cl-user)
1082     (defstruct foo index)
1083     (defparameter *foo* (make-foo :index 4))
1084     (defstruct bar)
1085     (defparameter *bar* (make-bar))
1086     (defparameter *tangle* (list *foo* *bar* *foo*))
1087     (defmethod print-object ((foo foo) stream)
1088       (let ((index (foo-index foo)))
1089         (format *trace-output*
1090             "~&-$- emitting FOO ~D, ambient *BAR*=~S~%"
1091             index *bar*)
1092         (format stream "[FOO ~D]" index))
1093       foo)
1094     (let ((tsos (make-string-output-stream))
1095           (ssos (make-string-output-stream)))
1096       (let ((*print-circle* t)
1097             (*trace-output* tsos)
1098             (*standard-output* ssos))
1099         (prin1 *tangle* *standard-output*))
1100       (let ((string (get-output-stream-string ssos)))
1101         (unless (string= string "(#1=[FOO 4] #S(BAR) #1#)")
1102           ;; In sbcl-0.8.10.48 STRING was "(#1=[FOO 4] #2# #1#)".:-(
1103           (error "oops: ~S" string)))))
1104   It might be straightforward to fix this by turning the
1105   *CIRCULARITY-HASH-TABLE* and *CIRCULARITY-COUNTER* variables into
1106   per-stream slots, but (1) it would probably be sort of messy faking
1107   up the special variable binding semantics using UNWIND-PROTECT and
1108   (2) it might be sort of a pain to test that no other bugs had been
1109   introduced. 
1110
1111 328: "Profiling generic functions", transplanted from #241
1112   (from tonyms on #lisp IRC 2003-02-25)
1113   In sbcl-0.7.12.55, typing
1114     (defclass foo () ((bar :accessor foo-bar)))
1115     (profile foo-bar)
1116     (unintern 'foo-bar)
1117     (defclass foo () ((bar :accessor foo-bar)))
1118   gives the error message
1119     "#:FOO-BAR already names an ordinary function or a macro."
1120
1121   Problem: when a generic function is profiled, it appears as an ordinary
1122   function to PCL. (Remembering the uninterned accessor is OK, as the
1123   redefinition must be able to remove old accessors from their generic
1124   functions.)
1125
1126 329: "Sequential class redefinition"
1127   reported by Bruno Haible:
1128    (defclass reactor () ((max-temp :initform 10000000)))
1129    (defvar *r1* (make-instance 'reactor))
1130    (defvar *r2* (make-instance 'reactor))
1131    (slot-value *r1* 'max-temp)
1132    (slot-value *r2* 'max-temp)
1133    (defclass reactor () ((uptime :initform 0)))
1134    (slot-value *r1* 'uptime)
1135    (defclass reactor () ((uptime :initform 0) (max-temp :initform 10000)))
1136    (slot-value *r1* 'max-temp) ; => 10000
1137    (slot-value *r2* 'max-temp) ; => 10000000 oops...
1138
1139   Possible solution: 
1140    The method effective when the wrapper is obsoleted can be saved
1141      in the wrapper, and then to update the instance just run through
1142      all the old wrappers in order from oldest to newest.
1143
1144 332: "fasl stack inconsistency in structure redefinition"
1145   (reported by Tim Daly Jr sbcl-devel 2004-05-06)
1146   Even though structure redefinition is undefined by the standard, the
1147   following behaviour is suboptimal: running
1148     (defun stimulate-sbcl ()
1149       (let ((filename (format nil "/tmp/~A.lisp" (gensym))))
1150         ;;create a file which redefines a structure incompatibly
1151         (with-open-file (f filename :direction :output :if-exists :supersede)
1152           (print '(defstruct astruct foo) f)
1153           (print '(defstruct astruct foo bar) f))
1154         ;;compile and load the file, then invoke the continue restart on
1155         ;;the structure redefinition error
1156         (handler-bind ((error (lambda (c) (continue c))))
1157           (load (compile-file filename)))))
1158     (stimulate-sbcl)
1159   and choosing the CONTINUE restart yields the message
1160     debugger invoked on a SB-INT:BUG in thread 27726:
1161       fasl stack not empty when it should be
1162
1163 336: "slot-definitions must retain the generic functions of accessors"
1164   reported by Tony Martinez:
1165     (defclass foo () ((bar :reader foo-bar)))
1166     (defun foo-bar (x) x)
1167     (defclass foo () ((bar :reader get-bar))) ; => error, should work
1168
1169   Note: just punting the accessor removal if the fdefinition
1170   is not a generic function is not enough:
1171
1172    (defclass foo () ((bar :reader foo-bar)))
1173    (defvar *reader* #'foo-bar)
1174    (defun foo-bar (x) x)
1175    (defclass foo () ((bar :initform 'ok :reader get-bar)))
1176    (funcall *reader* (make-instance 'foo)) ; should be an error, since
1177                                            ; the method must be removed
1178                                            ; by the class redefinition
1179
1180   Fixing this should also fix a subset of #328 -- update the
1181   description with a new test-case then.
1182
1183 339: "DEFINE-METHOD-COMBINATION bugs"
1184   (reported by Bruno Haible via the clisp test suite)
1185
1186   a. Syntax checking laxity (should produce errors):
1187      i. (define-method-combination foo :documentation :operator)
1188     ii. (define-method-combination foo :documentation nil)
1189    iii. (define-method-combination foo nil)
1190     iv. (define-method-combination foo nil nil
1191          (:arguments order &aux &key))
1192      v. (define-method-combination foo nil nil (:arguments &whole))
1193     vi. (define-method-combination foo nil nil (:generic-function))
1194    vii. (define-method-combination foo nil nil (:generic-function bar baz))
1195   viii. (define-method-combination foo nil nil (:generic-function (bar)))
1196     ix. (define-method-combination foo nil ((3)))
1197      x. (define-method-combination foo nil ((a)))
1198
1199   b. define-method-combination arguments lambda list badness
1200      i. &aux args are currently unsupported;
1201     ii. default values of &optional and &key arguments are ignored;
1202    iii. supplied-p variables for &optional and &key arguments are not
1203         bound.
1204
1205   c. (fixed in sbcl-0.9.15.15)
1206
1207 344: more (?) ROOM T problems (possibly part of bug 108)
1208   In sbcl-0.8.12.51, and off and on leading up to it, the
1209   SB!VM:MEMORY-USAGE operations in ROOM T caused 
1210         unhandled condition (of type SB-INT:BUG):
1211             failed AVER: "(SAP= CURRENT END)"
1212   Several clever people have taken a shot at this without fixing
1213   it; this time around (before sbcl-0.8.13 release) I (WHN) just
1214   commented out the SB!VM:MEMORY-USAGE calls until someone figures
1215   out how to make them work reliably with the rest of the GC.
1216
1217   (Note: there's at least one dubious thing in room.lisp: see the
1218   comment in VALID-OBJ)
1219
1220 346: alpha backtrace
1221   In sbcl-0.8.13, all backtraces from errors caused by internal errors
1222   on the alpha seem to have a "bogus stack frame".
1223
1224 349: PPRINT-INDENT rounding implementation decisions
1225   At present, pprint-indent (and indeed the whole pretty printer)
1226   more-or-less assumes that it's using a monospace font.  That's
1227   probably not too silly an assumption, but one piece of information
1228   the current implementation loses is from requests to indent by a
1229   non-integral amount.  As of sbcl-0.8.15.9, the system silently
1230   truncates the indentation to an integer at the point of request, but
1231   maybe the non-integral value should be propagated through the
1232   pprinter and only truncated at output?  (So that indenting by 1/2
1233   then 3/2 would indent by two spaces, not one?)
1234
1235 352: forward-referenced-class trouble
1236  reported by Bruno Haible on sbcl-devel
1237    (defclass c (a) ())
1238    (setf (class-name (find-class 'a)) 'b)
1239    (defclass a () (x))
1240    (defclass b () (y))
1241    (make-instance 'c)
1242  Expected: an instance of c, with a slot named x
1243  Got: debugger invoked on a SIMPLE-ERROR in thread 78906:
1244         While computing the class precedence list of the class named C.
1245         The class named B is a forward referenced class.
1246         The class named B is a direct superclass of the class named C.
1247
1248   [ Is this actually a bug?  DEFCLASS only replaces an existing class
1249     when the class name is the proper name of that class, and in the
1250     above code the class found by (FIND-CLASS 'A) does not have a
1251     proper name.  CSR, 2006-08-07 ]
1252
1253 353: debugger suboptimalities on x86
1254  On x86 backtraces for undefined functions start with a bogus stack
1255  frame, and  backtraces for throws to unknown catch tags with a "no 
1256  debug information" frame. These are both due to CODE-COMPONENT-FROM-BITS
1257  (used on non-x86 platforms) being a more complete solution then what
1258  is done on x86.
1259
1260  On x86/linux large portions of tests/debug.impure.lisp have been commented
1261  out as failures. The probable culprit for these problems is in x86-call-context
1262  (things work fine on x86/freebsd).
1263
1264  More generally, the debugger internals suffer from excessive x86/non-x86
1265  conditionalization and OAOOMization: refactoring the common parts would
1266  be good.
1267
1268 354: XEPs in backtraces
1269  Under default compilation policy
1270    (defun test ()
1271      (throw :unknown t))
1272    (test)
1273  Has the XEP for TEST in the backtrace, not the TEST frame itself.
1274  (sparc and x86 at least)
1275
1276  Since SBCL 0.8.20.1 this is hidden unless *SHOW-ENTRY-POINT-DETAILS*
1277  is true (instead there appear two TEST frames at least on ppc). The
1278  underlying cause seems to be that SB-C::TAIL-ANNOTATE will not merge
1279  the tail-call for the XEP, since Python has by that time proved that
1280  the function can never return; same happens if the function holds an
1281  unconditional call to ERROR.
1282
1283 356: PCL corruption
1284     (reported by Bruno Haible)
1285   After the "layout depth conflict" error, the CLOS is left in a state where
1286   it's not possible to define new standard-class subclasses any more.
1287   Test case:
1288   (defclass prioritized-dispatcher ()
1289     ((dependents :type list :initform nil)))
1290   (defmethod sb-pcl:validate-superclass ((c1 sb-pcl:funcallable-standard-class) 
1291                                          (c2 (eql (find-class 'prioritized-dispatcher))))
1292     t)
1293   (defclass prioritized-generic-function (prioritized-dispatcher standard-generic-function)
1294     ()
1295     (:metaclass sb-pcl:funcallable-standard-class))
1296   ;; ERROR, Quit the debugger with ABORT
1297   (defclass typechecking-reader-class (standard-class)
1298     ())
1299   Expected: #<STANDARD-CLASS TYPECHECKING-READER-CLASS>
1300   Got:      ERROR "The assertion SB-PCL::WRAPPERS failed."
1301
1302   [ This test case does not cause the error any more.  However,
1303     similar problems can be observed with 
1304
1305     (defclass foo (standard-class) ()
1306       (:metaclass sb-mop:funcallable-standard-class))
1307     (sb-mop:finalize-inheritance (find-class 'foo))
1308     ;; ERROR, ABORT
1309     (defclass bar (standard-class) ())
1310     (make-instance 'bar)
1311   ]
1312
1313 357: defstruct inheritance of initforms
1314     (reported by Bruno Haible)
1315   When defstruct and defclass (with :metaclass structure-class) are mixed,
1316   1. some slot initforms are ignored by the DEFSTRUCT generated constructor
1317      function, and 
1318   2. all slot initforms are ignored by MAKE-INSTANCE. (This can be arguably
1319      OK for initforms that were given in a DEFSTRUCT form, but for those
1320      given in a DEFCLASS form, I think it qualifies as a bug.)
1321   Test case:
1322   (defstruct structure02a
1323     slot1
1324     (slot2 t)
1325     (slot3 (floor pi)))
1326   (defclass structure02b (structure02a)
1327     ((slot4 :initform -44)
1328      (slot5)
1329      (slot6 :initform t)
1330      (slot7 :initform (floor (* pi pi)))
1331      (slot8 :initform 88))
1332     (:metaclass structure-class))
1333   (defstruct (structure02c (:include structure02b (slot8 -88)))
1334     slot9 
1335     (slot10 t)
1336     (slot11 (floor (exp 3))))
1337   ;; 1. Form:
1338   (let ((a (make-structure02c)))
1339     (list (structure02c-slot4 a)
1340           (structure02c-slot5 a)
1341           (structure02c-slot6 a)
1342           (structure02c-slot7 a)))
1343   Expected: (-44 nil t 9)
1344   Got: (SB-PCL::..SLOT-UNBOUND.. SB-PCL::..SLOT-UNBOUND..
1345         SB-PCL::..SLOT-UNBOUND.. SB-PCL::..SLOT-UNBOUND..)
1346   ;; 2. Form:
1347   (let ((b (make-instance 'structure02c)))
1348     (list (structure02c-slot2 b)
1349           (structure02c-slot3 b)
1350           (structure02c-slot4 b)
1351           (structure02c-slot6 b)
1352           (structure02c-slot7 b)
1353           (structure02c-slot8 b)
1354           (structure02c-slot10 b)
1355           (structure02c-slot11 b)))
1356   Expected: (t 3 -44 t 9 -88 t 20)
1357   Got: (0 0 0 0 0 0 0 0)
1358
1359 359: wrong default value for ensure-generic-function's :generic-function-class argument
1360     (reported by Bruno Haible)
1361   ANSI CL is silent on this, but the MOP's specification of ENSURE-GENERIC-FUNCTION says:
1362    "The remaining arguments are the complete set of keyword arguments
1363     received by ENSURE-GENERIC-FUNCTION."
1364   and the spec of ENSURE-GENERIC-FUNCTION-USING-CLASS:
1365    ":GENERIC-FUNCTION-CLASS - a class metaobject or a class name. If it is not
1366     supplied, it defaults to the class named STANDARD-GENERIC-FUNCTION."
1367   This is not the case in SBCL. Test case:
1368    (defclass my-generic-function (standard-generic-function)
1369      ()
1370      (:metaclass sb-pcl:funcallable-standard-class))
1371    (setf (fdefinition 'foo1)
1372          (make-instance 'my-generic-function :name 'foo1))
1373    (ensure-generic-function 'foo1
1374      :generic-function-class (find-class 'standard-generic-function))
1375    (class-of #'foo1)
1376    ; => #<SB-MOP:FUNCALLABLE-STANDARD-CLASS STANDARD-GENERIC-FUNCTION>
1377    (setf (fdefinition 'foo2)
1378          (make-instance 'my-generic-function :name 'foo2))
1379    (ensure-generic-function 'foo2)
1380    (class-of #'foo2)
1381   Expected: #<SB-MOP:FUNCALLABLE-STANDARD-CLASS STANDARD-GENERIC-FUNCTION>
1382   Got:      #<SB-MOP:FUNCALLABLE-STANDARD-CLASS MY-GENERIC-FUNCTION>
1383
1384 362: missing error when a slot-definition is created without a name
1385     (reported by Bruno Haible)
1386   The MOP says about slot-definition initialization:
1387   "The :NAME argument is a slot name. An ERROR is SIGNALled if this argument
1388    is not a symbol which can be used as a variable name. An ERROR is SIGNALled
1389    if this argument is not supplied."
1390   Test case:
1391    (make-instance (find-class 'sb-pcl:standard-direct-slot-definition))
1392   Expected: ERROR
1393   Got: #<SB-MOP:STANDARD-DIRECT-SLOT-DEFINITION NIL>
1394
1395 363: missing error when a slot-definition is created with a wrong documentation object
1396     (reported by Bruno Haible)
1397   The MOP says about slot-definition initialization:
1398   "The :DOCUMENTATION argument is a STRING or NIL. An ERROR is SIGNALled
1399    if it is not. This argument default to NIL during initialization."
1400   Test case:
1401    (make-instance (find-class 'sb-pcl:standard-direct-slot-definition)
1402                   :name 'foo
1403                   :documentation 'not-a-string)
1404   Expected: ERROR
1405   Got: #<SB-MOP:STANDARD-DIRECT-SLOT-DEFINITION FOO>
1406
1407 369: unlike-an-intersection behavior of VALUES-TYPE-INTERSECTION
1408   In sbcl-0.8.18.2, the identity $(x \cap y \cap y)=(x \cap y)$ 
1409   does not hold for VALUES-TYPE-INTERSECTION, even for types which
1410   can be intersected exactly, so that ASSERTs fail in this test case:
1411     (in-package :cl-user)
1412     (let ((types (mapcar #'sb-c::values-specifier-type 
1413                          '((values (vector package) &optional)
1414                            (values (vector package) &rest t)
1415                            (values (vector hash-table) &rest t)
1416                            (values (vector hash-table) &optional)
1417                            (values t &optional)
1418                            (values t &rest t)
1419                            (values nil &optional)
1420                            (values nil &rest t)
1421                            (values sequence &optional)
1422                            (values sequence &rest t)
1423                            (values list &optional)
1424                            (values list &rest t)))))
1425        (dolist (x types)
1426          (dolist (y types)
1427            (let ((i (sb-c::values-type-intersection x y)))
1428              (assert (sb-c::type= i (sb-c::values-type-intersection i x)))
1429              (assert (sb-c::type= i (sb-c::values-type-intersection i y)))))))
1430
1431 370: reader misbehaviour on large-exponent floats
1432     (read-from-string "1.0s1000000000000000000000000000000000000000")
1433   causes the reader to attempt to create a very large bignum (which it
1434   will then attempt to coerce to a rational).  While this isn't
1435   completely wrong, it is probably not ideal -- checking the floating
1436   point control word state and then returning the relevant float
1437   (most-positive-short-float or short-float-infinity) or signalling an
1438   error immediately would seem to make more sense.
1439
1440 372: floating-point overflow not signalled on ppc/darwin
1441  The following assertions in float.pure.lisp fail on ppc/darwin 
1442  (Mac OS X version 10.3.7):
1443    (assert (raises-error? (scale-float 1.0 most-positive-fixnum)
1444                           floating-point-overflow))
1445    (assert (raises-error? (scale-float 1.0d0 (1+ most-positive-fixnum))
1446                           floating-point-overflow)))
1447  as the SCALE-FLOAT just returns 
1448  #.SB-EXT:SINGLE/DOUBLE-FLOAT-POSITIVE-INFINITY. These tests have been
1449  disabled on Darwin for now.
1450
1451 377: Memory fault error reporting
1452   On those architectures where :C-STACK-IS-CONTROL-STACK is in
1453   *FEATURES*, we handle SIG_MEMORY_FAULT (SEGV or BUS) on an altstack,
1454   so we cannot handle the signal directly (as in interrupt_handle_now())
1455   in the case when the signal comes from some external agent (the user
1456   using kill(1), or a fault in some foreign code, for instance).  As
1457   of sbcl-0.8.20.20, this is fixed by calling
1458   arrange_return_to_lisp_function() to a new error-signalling
1459   function, but as a result the error reporting is poor: we cannot
1460   even tell the user at which address the fault occurred.  We should
1461   arrange such that arguments can be passed to the function called from
1462   arrange_return_to_lisp_function(), but this looked hard to do in
1463   general without suffering from memory leaks.
1464
1465 379: TRACE :ENCAPSULATE NIL broken on ppc/darwin
1466   See commented-out test-case in debug.impure.lisp.
1467
1468 380: Accessor redefinition fails because of old accessor name
1469   When redefining an accessor, SB-PCL::FIX-SLOT-ACCESSORS may try to
1470   find the generic function named by the old accessor name using
1471   ENSURE-GENERIC-FUNCTION and then remove the old accessor's method in
1472   the GF. If the old name does not name a function, or if the old name
1473   does not name a generic function, no attempt to find the GF or remove
1474   any methods is made.
1475
1476   However, if an unrelated GF with an incompatible lambda list exists,
1477   the class redefinition will fail when SB-PCL::REMOVE-READER-METHOD
1478   tries to find and remove a method with an incompatible lambda list
1479   from the unrelated generic function.
1480
1481 381: incautious calls to EQUAL in fasl dumping
1482   Compiling 
1483     (frob #(#1=(a #1#)))
1484     (frob #(#1=(b #1#)))
1485     (frob #(#1=(a #1#)))
1486   in sbcl-0.9.0 causes CONTROL-STACK-EXHAUSTED. My (WHN) impression 
1487   is that this follows from the use of (MAKE-HASH-TABLE :TEST 'EQUAL)
1488   to detect sharing, in which case fixing it might require either 
1489   getting less ambitious about detecting shared list structure, or 
1490   implementing the moral equivalent of EQUAL hash tables in a 
1491   cycle-tolerant way.
1492
1493 382: externalization unexpectedly changes array simplicity
1494   COMPILE-FILE and LOAD
1495     (defun foo ()
1496       (let ((x #.(make-array 4 :fill-pointer 0)))
1497         (values (eval `(typep ',x 'simple-array))
1498                 (typep x 'simple-array))))
1499   then (FOO) => T, NIL.
1500
1501   Similar problems exist with SIMPLE-ARRAY-P, ARRAY-HEADER accessors
1502   and all array dimension functions.
1503
1504 383: ASH'ing non-constant zeros
1505   Compiling
1506     (lambda (b)
1507       (declare (type (integer -2 14) b))
1508       (declare (ignorable b))
1509       (ash (imagpart b) 57))
1510   on PPC (and other platforms, presumably) gives an error during the
1511   emission of FASH-ASH-LEFT/FIXNUM=>FIXNUM as the assembler attempts to
1512   stuff a too-large constant into the immediate field of a PPC
1513   instruction.  Either the VOP should be fixed or the compiler should be
1514   taught how to transform this case away, paying particular attention
1515   to side-effects that might occur in the arguments to ASH.
1516
1517 384: Compiler runaway on very large character types
1518
1519   (compile nil '(lambda (x)
1520                     (declare (type (member #\a 1) x))
1521                     (the (member 1 nil) x)))
1522
1523   The types apparently normalize into a very large type, and the compiler
1524   gets lost in REMOVE-DUPLICATES.  Perhaps the latter should use
1525   a better algorithm (one based on hash tables, say) on very long lists
1526   when :TEST has its default value?
1527
1528   A simpler example:
1529
1530   (compile nil '(lambda (x) (the (not (eql #\a)) x)))
1531
1532   (partially fixed in 0.9.3.1, but a better representation for these
1533    types is needed.)
1534
1535 385:
1536   (format nil "~4,1F" 0.001) => "0.00" (should be " 0.0");
1537   (format nil "~4,1@F" 0.001) => "+.00" (should be "+0.0").
1538
1539 386: SunOS/x86 stack exhaustion handling broken
1540   According to <http://alfa.s145.xrea.com/sbcl/solaris-x86.html>, the
1541   stack exhaustion checking (implemented with a write-protected guard
1542   page) does not work on SunOS/x86.
1543
1544 388:
1545   (found by Dmitry Bogomolov)
1546
1547     (defclass foo () ((x :type (unsigned-byte 8))))
1548     (defclass bar () ((x :type symbol)))
1549     (defclass baz (foo bar) ())
1550
1551   causes error
1552
1553     SB-PCL::SPECIALIZER-APPLICABLE-USING-TYPE-P cannot handle the second argument
1554     (UNSIGNED-BYTE 8).
1555
1556   [ Can't trigger this any more, as of 2006-08-07 ]
1557
1558 389:
1559   (reported several times on sbcl-devel, by Rick Taube, Brian Rowe and
1560   others)
1561
1562   ROUND-NUMERIC-BOUND assumes that float types always have a FORMAT
1563   specifying whether they're SINGLE or DOUBLE.  This is true for types
1564   computed by the type system itself, but the compiler type derivation
1565   short-circuits this and constructs non-canonical types.  A temporary
1566   fix was made to ROUND-NUMERIC-BOUND for the sbcl-0.9.6 release, but
1567   the right fix is to remove the abstraction violation in the
1568   compiler's type deriver.
1569
1570 393: Wrong error from methodless generic function
1571     (DEFGENERIC FOO (X))
1572     (FOO 1 2)
1573   gives NO-APPLICABLE-METHOD rather than an argument count error.
1574
1575 395: Unicode and streams
1576   One of the remaining problems in SBCL's Unicode support is the lack
1577   of generality in certain streams.
1578   a. FILL-POINTER-STREAMs: SBCL refuses to write (e.g. using FORMAT)
1579      to streams made from strings that aren't character strings with
1580      fill-pointers:
1581        (let ((v (make-array 5 :fill-pointer 0 :element-type 'standard-char)))
1582          (format v "foo")
1583          v)
1584      should return a non-simple base string containing "foo" but
1585      instead errors.
1586
1587      (reported on sbcl-help by "tichy")
1588
1589 396: block-compilation bug
1590     (let ((x 1))
1591       (dotimes (y 10)
1592         (let ((y y))
1593           (when (funcall (eval #'(lambda (x) (eql x 2))) y)
1594             (defun foo (z)
1595               (incf x (incf y z))))))
1596       (defun bar (z)
1597         (foo z)
1598         (values x)))
1599   (bar 1) => 11, should be 4.
1600
1601 397: SLEEP accuracy
1602   The more interrupts arrive the less accurate SLEEP's timing gets.
1603     (time (sb-thread:terminate-thread
1604             (prog1 (sb-thread:make-thread (lambda ()
1605                                             (loop
1606                                              (princ #\!)
1607                                              (force-output)
1608                                              (sb-ext:gc))))
1609               (sleep 1))))
1610
1611 398: GC-unsafe SB-ALIEN string deporting
1612   Translating a Lisp string to an alien string by taking a SAP to it
1613   as done by the :DEPORT-GEN methods for C-STRING and UTF8-STRING
1614   is not safe, since the Lisp string can move. For example the
1615   following code will fail quickly on both cheneygc and pre-0.9.8.19
1616   GENCGC: 
1617
1618   (setf (bytes-consed-between-gcs) 4096)
1619   (define-alien-routine "strcmp" int (s1 c-string) (s2 c-string))
1620      
1621   (loop
1622     (let ((string "hello, world"))
1623        (assert (zerop (strcmp string string)))))
1624      
1625   (This will appear to work on post-0.9.8.19 GENCGC, since
1626    the GC no longer zeroes memory immediately after releasing
1627    it after a minor GC. Either enabling the READ_PROTECT_FREE_PAGES
1628    #define in gencgc.c or modifying the example so that a major
1629    GC will occasionally be triggered would unmask the bug.)
1630
1631   On cheneygc the only solution would seem to be allocating some alien
1632   memory, copying the data over, and arranging that it's freed once we
1633   return. For GENCGC we could instead try to arrange that the string
1634   from which the SAP is taken is always pinned.
1635
1636   For some more details see comments for (define-alien-type-method
1637   (c-string :deport-gen) ...)  in host-c-call.lisp.
1638
1639 402: "DECLAIM DECLARATION does not inform the PCL code-walker"
1640   reported by Vincent Arkesteijn:
1641
1642   (declaim (declaration foo))
1643   (defgeneric bar (x))
1644   (defmethod bar (x)
1645     (declare (foo x))
1646     x)
1647
1648   ==> WARNING: The declaration FOO is not understood by
1649       SB-PCL::SPLIT-DECLARATIONS.
1650       Please put FOO on one of the lists SB-PCL::*NON-VAR-DECLARATIONS*,
1651       SB-PCL::*VAR-DECLARATIONS-WITH-ARG*, or
1652       SB-PCL::*VAR-DECLARATIONS-WITHOUT-ARG*.
1653       (Assuming it is a variable declaration without argument).
1654
1655 403: FORMAT/PPRINT-LOGICAL-BLOCK of CONDITIONs ignoring *PRINT-CIRCLE*
1656   In sbcl-0.9.13.34,
1657     (defparameter *c*
1658       (make-condition 'simple-error
1659                       :format-control "ow... ~S"
1660                       :format-arguments '(#1=(#1#))))
1661     (setf *print-circle* t *print-level* 4)
1662     (format nil "~@<~A~:@>" *c*)
1663   gives
1664     "ow... (((#)))"
1665   where I (WHN) believe the correct result is "ow... #1=(#1#)",
1666   like the result from (PRINC-TO-STRING *C*). The question of 
1667   what the correct result is is complicated by the hairy text in 
1668   the Hyperspec "22.3.5.2 Tilde Less-Than-Sign: Logical Block",
1669     Other than the difference in its argument, ~@<...~:> is 
1670     exactly the same as ~<...~:> except that circularity detection 
1671     is not applied if ~@<...~:> is encountered at top level in a 
1672     format string.
1673   But because the odd behavior happens even without the at-sign, 
1674     (format nil "~<~A~:@>" (list *c*)) ; => "ow... (((#)))"
1675   and because something seemingly similar can happen even in 
1676   PPRINT-LOGICAL-BLOCK invoked directly without FORMAT, 
1677     (pprint-logical-block (*standard-output* '(some nonempty list))
1678       (format *standard-output* "~A" '#1=(#1#)))
1679   (which prints "(((#)))" to *STANDARD-OUTPUT*), I don't think 
1680   that the 22.3.5.2 trickiness is fundamental to the problem.
1681
1682   My guess is that the problem is related to the logic around the MODE
1683   argument to CHECK-FOR-CIRCULARITY, but I haven't reverse-engineered
1684   enough of the intended meaning of the different MODE values to be
1685   confident of this.
1686
1687 404: nonstandard DWIMness in LOOP with unportably-ordered clauses
1688   In sbcl-0.9.13, the code
1689     (loop with stack = (make-array 2 :fill-pointer 2 :initial-element t)
1690           for length = (length stack)
1691           while (plusp length)
1692           for element = (vector-pop stack)
1693           collect element)
1694   compiles without error or warning and returns (T T). Unfortunately, 
1695   it is inconsistent with the ANSI definition of the LOOP macro, 
1696   because it mixes up VARIABLE-CLAUSEs with MAIN-CLAUSEs. Furthermore,
1697   SBCL's interpretation of the intended meaning is only one possible,
1698   unportable interpretation of the noncompliant code; in CLISP 2.33.2, 
1699   the code compiles with a warning
1700     LOOP: FOR clauses should occur before the loop's main body
1701   and then fails at runtime with 
1702     VECTOR-POP: #() has length zero
1703   perhaps because CLISP has shuffled the clauses into an 
1704   ANSI-compliant order before proceeding.
1705
1706 405: a TYPE-ERROR in MERGE-LETS exercised at DEBUG 3
1707   In sbcl-0.9.16.21 on linux/86, compiling 
1708     (declaim (optimize (debug 3)))
1709     (defstruct foo bar)
1710     (let ()
1711       (flet ((i (x) (frob x (foo-bar foo))))
1712         (i :five)))
1713   causes a TYPE-ERROR 
1714     The value NIL is not of type SB-C::PHYSENV.
1715   in MERGE-LETS.
1716
1717 406: functional has external references -- failed aver
1718  Given the following food in a single file
1719   (eval-when (:compile-toplevel :load-toplevel :execute)
1720     (defstruct foo3))
1721   (defstruct bar
1722     (foo #.(make-foo3)))
1723  as of 0.9.18.11 the file compiler breaks on it:
1724   failed AVER: "(NOT (FUNCTIONAL-HAS-EXTERNAL-REFERENCES-P CLAMBDA))"
1725  Defining the missing MAKE-LOAD-FORM method makes the error go away.
1726
1727 407: misoptimization of loop, COERCE 'FLOAT, and HANDLER-CASE for bignums
1728   (reported by Ariel Badichi on sbcl-devel 2007-01-09)
1729   407a: In sbcl-1.0.1 on Linux x86, 
1730                 (defun foo ()
1731                   (loop for n from (expt 2 1024) do
1732                         (handler-case
1733                             (coerce n 'single-float)
1734                           (simple-type-error ()
1735                             (format t "Got here.~%")
1736                             (return-from foo)))))
1737                 (foo)
1738         causes an infinite loop, where handling the error would be expected.
1739   407b: In sbcl-1.0.1 on Linux x86, 
1740                 (defun bar ()
1741                   (loop for n from (expt 2 1024) do
1742                         (handler-case
1743                             (format t "~E~%" (coerce n 'single-float))
1744                           (simple-type-error ()
1745                             (format t "Got here.~%")
1746                             (return-from bar)))))
1747         fails to compile, with
1748                 Too large to be represented as a SINGLE-FLOAT: ...
1749         from
1750                 0: ((LABELS SB-BIGNUM::CHECK-EXPONENT) ...)
1751                 1: ((LABELS SB-BIGNUM::FLOAT-FROM-BITS) ...)
1752                 2: (SB-KERNEL:%SINGLE-FLOAT ...)
1753                 3: (SB-C::BOUND-FUNC ...)
1754                 4: (SB-C::%SINGLE-FLOAT-DERIVE-TYPE-AUX ...)
1755
1756 408: SUBTYPEP confusion re. OR of SATISFIES of not-yet-defined predicate
1757         As reported by Levente M\'{e}sz\'{a}ros sbcl-devel 2006-02-20,
1758                 (aver (equal (multiple-value-list
1759                               (subtypep '(or (satisfies x) string)
1760                                         '(or (satisfies x) integer)))
1761                              '(nil nil)))
1762         fails. Also, beneath that failure lurks another failure,
1763                 (aver (equal (multiple-value-list
1764                               (subtypep 'string
1765                                         '(or (satisfies x) integer)))
1766                              '(nil nil)))
1767         Having looked at this for an hour or so in sbcl-1.0.2, and
1768         specifically having looked at the output from
1769           laptop$ sbcl
1770           * (let ((x 'string)
1771                   (y '(or (satisfies x) integer)))
1772               (trace sb-kernel::union-complex-subtypep-arg2
1773                      sb-kernel::invoke-complex-subtypep-arg1-method
1774                      sb-kernel::type-union
1775                      sb-kernel::type-intersection
1776                      sb-kernel::type=)
1777               (subtypep x y))
1778         my (WHN) impression is that the problem is that the semantics of TYPE=
1779         are wrong for what the UNION-COMPLEX-SUBTYPEP-ARG2 code is trying
1780         to use it for. The comments on the definition of TYPE= probably
1781         date back to CMU CL and seem to define it as a confusing thing:
1782         its primary value is something like "certainly equal," and its
1783         secondary value is something like "certain about that certainty."
1784         I'm left uncertain how to fix UNION-COMPLEX-SUBTYPEP-ARG2 without
1785         reducing its generality by removing the TYPE= cleverness. Possibly
1786         the tempting TYPE/= relative defined next to it might be a
1787         suitable replacement for the purpose. Probably, though, it would
1788         be best to start by reverse engineering exactly what TYPE= and
1789         TYPE/= do, and writing an explanation which is so clear that one
1790         can see immediately what it's supposed to mean in odd cases like
1791         (TYPE= '(SATISFIES X) 'INTEGER) when X isn't defined yet.
1792
1793 409: MORE TYPE SYSTEM PROBLEMS
1794   Found while investigating an optimization failure for extended
1795   sequences. The extended sequence type implementation was altered to
1796   work around the problem, but the fundamental problem remains, to wit:
1797     (sb-kernel:type= (sb-kernel:specifier-type '(or float ratio))
1798                      (sb-kernel:specifier-type 'single-float))
1799   returns NIL, NIL on sbcl-1.0.3.
1800   (probably related to bug #408)
1801
1802 410: read circularities and type declarations
1803   Consider the definition
1804     (defstruct foo (a 0 :type (not symbol)))
1805   followed by
1806     (setf *print-circle* t) ; just in case
1807     (read-from-string "#1=#s(foo :a #1#)")
1808   This gives a type error (#:G1 is not a (NOT SYMBOL)) because of the
1809   implementation of read circularity, using a symbol as a marker for
1810   the previously-referenced object.