X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=BUGS;h=3dd6eec87746313577b3e918006f25de09ce57ce;hb=41ebbebc360fc5b85e39d78fdaaba7d2f7577b10;hp=48ea0b3209a88b3608f9a854a5ffc1f425145cf7;hpb=6483924c30758e2393428c7fa3f63c9faf924600;p=sbcl.git diff --git a/BUGS b/BUGS index 48ea0b3..3dd6eec 100644 --- a/BUGS +++ b/BUGS @@ -1788,11 +1788,6 @@ WORKAROUND: implementation of read circularity, using a symbol as a marker for the previously-referenced object. -411: NAN issues on x86-64 - Test :NAN-COMPARISONS in float.pure.lisp fails on x86-64, and has been - disabled on those platforms. Since x86 does not exhibit any problems - the problem is probably with the new FP implementation. - 413: type-errors in ROOM (defvar *a* (make-array (expt 2 27))) @@ -1820,3 +1815,76 @@ WORKAROUND: WARNING: bogus form-number in form! The source file has probably been changed too much to cope with. + +415: Issues creating large arrays on x86-64/Linux and x86/Darwin + + (make-array (1- array-dimension-limit)) + + causes a GC invariant violation on x86-64/Linux, and + an unhandled SIGILL on x86/Darwin. + +416: backtrace confusion + + (defun foo (x) + (let ((v "foo")) + (flet ((bar (z) + (oops v z) + (oops z v))) + (bar x) + (bar v)))) + (foo 13) + + gives the correct error, but the backtrace shows + 1: (SB-KERNEL:FDEFINITION-OBJECT 13 NIL) + as the second frame. + +418: SUBSEQ on lists doesn't support bignum indexes + + LIST-SUBSEQ* now has all the works necessary to support bignum indexes, + but it needs to be verified that changing the DEFKNOWN doesn't kill + performance elsewhere. + + Other generic sequence functions have this problem as well. + +419: stack-allocated indirect closure variables are not popped + + (locally (declare (optimize speed (safety 0))) + (defun bug419 (x) + (multiple-value-call #'list + (eval '(values 1 2 3)) + (let ((x x)) + (declare (dynamic-extent x)) + (flet ((mget (y) + (+ x y)) + (mset (z) + (incf x z))) + (declare (dynamic-extent #'mget #'mset)) + ((lambda (f g) (eval `(progn ,f ,g (values 4 5 6)))) #'mget #'mset)))))) + + (ASSERT (EQUAL (BUG419) '(1 2 3 4 5 6))) => failure + +420: The MISC.556 test from gcl/ansi-tests/misc.lsp fails hard. + +In sbcl-1.0.13 on Linux/x86, executing + (FUNCALL + (COMPILE NIL + '(LAMBDA (P1 P2) + (DECLARE + (OPTIMIZE (SPEED 1) (SAFETY 0) (DEBUG 0) (SPACE 0)) + (TYPE (MEMBER 8174.8604) P1) (TYPE (MEMBER -95195347) P2)) + (FLOOR P1 P2))) + 8174.8604 -95195347) +interactively causes + SB-SYS:MEMORY-FAULT-ERROR: Unhandled memory fault at #x8. +The gcl/ansi-tests/doit.lisp program terminates prematurely shortly after +MISC.556 by falling into gdb with + fatal error encountered in SBCL pid 2827: Unhandled SIGILL +unless the MISC.556 test is commented out. + +421: READ-CHAR-NO-HANG misbehaviour on Windows Console: + + It seems that on Windows READ-CHAR-NO-HANG hangs if the user + has pressed a key, but not yet enter (ie. SYSREAD-MAY-BLOCK-P + seems to lie if the OS is buffering input for us on Console.) + + reported by Elliot Slaughter on sbcl-devel 2008/1/10.