sbcl.git
19 years ago0.8.19.34:
Alexey Dejneka [Sun, 20 Feb 2005 18:53:13 +0000 (18:53 +0000)]
0.8.19.34:
        * Fix MISC.527: DEFTRANSFORM for BIT-AND and similar for
          vectors use (ARRAY-DIMENSION v 0) instead if LENGTH to get
          the full vector size.

19 years ago0.8.19.33: fix inspection of specialized arrays
Nikodemus Siivola [Sun, 20 Feb 2005 12:04:44 +0000 (12:04 +0000)]
0.8.19.33: fix inspection of specialized arrays

           Patch by Simon Alexander on sbcl-devel 2005-02-19.

           Note to self: it seems that we don't currently have
           _any_ tests for the inspector. Make it not so, someday
           soon for preference.

19 years ago0.8.19.32:
Christophe Rhodes [Fri, 18 Feb 2005 08:22:23 +0000 (08:22 +0000)]
0.8.19.32:
In response to a question on #lisp IRC...
... make the style-warning for #S(FOO #\A 1) include a reference
to the relevant section in CLtS.

19 years ago0.8.19.31:
Juho Snellman [Thu, 17 Feb 2005 21:59:01 +0000 (21:59 +0000)]
0.8.19.31:
x86-64 floating point improvements:
        * Optimization: fewer moves on floating point add/sub/mul/div.
          Only use a temporary xmm register if absolutely needed.
* Optimization: When restoring xmm15 to zero after a c-call,
          use xorpd instead of a temporary register and movq.
        * Replace broken x87 FLOATING-POINT-MODES and SET-FLOATING-POINT-MODES
          with SSE code that uses the mxcsr control register.
        * Fix movd / movq from a xmm register to a gp register.
        * Add new instructions: ldmxcsr, stmxcsr

19 years ago0.8.19.30: less COMPILE-FILE verbosity
Nikodemus Siivola [Thu, 17 Feb 2005 14:30:38 +0000 (14:30 +0000)]
0.8.19.30: less COMPILE-FILE verbosity

           First stab at fixing bug #7. To get output approximately as
           verbose as the old behaviour use :TOP-LEVEL-FORMS as the
           value of the :PRINT option to COMPILE-FILE.

           Note: Giving users control over the way things are printed
           via *COMPILER-PRINT-VARIABLE-ALIST* is OTOH a good thing,
           but it also seems to be used for ratheer diverse things,
           and people could reasonably want to customize them
           separately. Gah.

           Also list x86/FreeBSD4 as "expected to pass tests" in
           make.sh output, as that seems to be the case.

19 years ago0.8.19.29:
Christophe Rhodes [Thu, 17 Feb 2005 11:26:07 +0000 (11:26 +0000)]
0.8.19.29:
Add (untested, so sue me) getenv and putenv to sb-posix

19 years ago0.8.19.28: fix loading of multiply forward-refrenced layouts
Nikodemus Siivola [Wed, 16 Feb 2005 06:02:04 +0000 (06:02 +0000)]
0.8.19.28: fix loading of multiply forward-refrenced layouts

           Bug orginally reported and fix provided by Cheuksan Wang,
           basis for test-case provided by Jason Dagit.

19 years ago0.8.19.26: fix bignum printing:
Nikodemus Siivola [Sun, 13 Feb 2005 14:33:51 +0000 (14:33 +0000)]
0.8.19.26: fix bignum printing:
            * algorithm by Harald Hanche-Olsen.
            * good: less memory-intensive, faster for smallish
               bignums.
            * bad: more CPU-intensive for large eg. 2^1000000)
               bignums, around order of 2^10000000 becoming essentially
               unprintable.

           lazy alien resolution improvement:
            * resolve undefined functions to the address of
               undefined_alien_function instead of the guard
               page to work around the bus error on ppc/darwin.
            * also buys us discrimination between undefined alien
               variables and functions (on all platforms).

           note ppc/darwin problems revealed by tests/ in BUGS, and disable
           those tests:
            * floating-point overflow not signalled
            * type-error from sb-profile:report
            * bit-and with huge bit-vectors fails with a lost
               gc-invariant (maybe a general cheney-gc problem?)

            => All tests now pass on ppc/darwin, note this in the message
               at the end of make.sh, marking x86/Linux and ppc/Darwin
               as platforms where all tests are supposed to pass.

19 years agomessage
Nikodemus Siivola [Sun, 13 Feb 2005 14:27:01 +0000 (14:27 +0000)]
message

19 years ago0.8.19.25:
William Harold Newman [Fri, 11 Feb 2005 21:49:36 +0000 (21:49 +0000)]
0.8.19.25:
Protect condition printers from errors which might be
signalled by FILE-POSITION.

19 years ago0.8.19.24:
Juho Snellman [Fri, 11 Feb 2005 12:09:44 +0000 (12:09 +0000)]
0.8.19.24:
        Fix ansi-test failures related to pretty-printing backquoted forms
        when *PRINT-CIRCLE* is true. Print the ",@" and ",." tokens with
        WRITE-STRING instead of PRINC to prevent circularity detection
        from applying to them.

19 years ago0.8.19.23:
Juho Snellman [Fri, 11 Feb 2005 07:32:33 +0000 (07:32 +0000)]
0.8.19.23:
        Optimize float/fixnum comparisons, primarily for the benefit
        of McCLIM. If the fixnum's value is in a range where it's
        guaranteed to have an exact float representation, coerce it to
        a float and do a float comparison. Otherwise fall back to the
        old behaviour of rationalizing the float.

19 years ago0.8.19.22:
Alexey Dejneka [Thu, 10 Feb 2005 04:23:08 +0000 (04:23 +0000)]
0.8.19.22:
        * Reduce consing for out-of-line AREF: declare SUBSCRIPTS
          argument for %ARRAY-ROW-MAYOR-INDEX be DYNAMIC-EXTENT.
          (reported by Baughn on #lisp)

19 years ago0.8.19.21:
Juho Snellman [Thu, 10 Feb 2005 00:05:56 +0000 (00:05 +0000)]
0.8.19.21:
x86-64 disassembler improvements.
        * Detect RIP-relative addressing in SB-VM::PREFILTER-REG/MEM.
        * Add constant notes (e.g. ; #<FDEFINITION object for OPEN>)
          for instructions that use RIP-relative addressing.

19 years ago0.8.19.20:
Juho Snellman [Wed, 9 Feb 2005 23:53:30 +0000 (23:53 +0000)]
0.8.19.20:
Declaim the type of *CHARACTER-DATABASE*. Decreases the total
        runtime of the ansi-test suite by about 3-5%.

19 years agoAdded optimization opportunity #25: improved type-based optimization
Paul F. Dietz [Wed, 9 Feb 2005 23:48:45 +0000 (23:48 +0000)]
Added optimization opportunity #25: improved type-based optimization
of EQL forms.

19 years ago0.8.19.19:
Christophe Rhodes [Mon, 7 Feb 2005 12:41:42 +0000 (12:41 +0000)]
0.8.19.19:
Fix bug in WITH-INPUT-FROM-STRING (PFD ansi-tests)
... only update INDEX on normal exit.  (Fix from Bryan O'Connor)

19 years ago0.8.19.18:
Christophe Rhodes [Mon, 7 Feb 2005 11:49:08 +0000 (11:49 +0000)]
0.8.19.18:
Fix bug from PCL depessimization -- it is possible to get :DEFINED for
:TYPE :KIND, but probably only for built-in-classes.

(Hm, actually, it might be possible to get there through some bizarre
combination of DEFTYPE and DEFCLASS.)

19 years ago0.8.19.17:
Alexey Dejneka [Mon, 7 Feb 2005 04:24:17 +0000 (04:24 +0000)]
0.8.19.17:
        * Fix bug: ANNOTATE-FIXED-VALUES-LVAR can be called on a DX
          LVAR (through CAST). (reported by Timmy Douglas).

19 years ago0.8.19.16:
Juho Snellman [Sun, 6 Feb 2005 05:58:40 +0000 (05:58 +0000)]
0.8.19.16:
Various x86-64 improvements.
        * Fix some SB-ALIEN:INT / SB-ALIEN:INTEGER confusion in tests.
          (Patch by Vincent Arkesteijn on sbcl-devel, "Re: x86-64 (aka
          AMD64, EMT-64) support" on 2005-02-05).
        * Align the stack to 16-byte boundaries for c-calls, as required
          by the ABI. (Patch by Cheuksan Edward Wang).
        * Omit unneccessary rex-prefix on indirect JMP. (Patch by Cheuksan
          Edward Wang).
        * Disassembler improvements. (Patch by Cheuksan Edward Wang).

19 years ago0.8.19.15:
Christophe Rhodes [Fri, 4 Feb 2005 17:23:03 +0000 (17:23 +0000)]
0.8.19.15:
Maybe speed up PCL a tiny bit more
... make the slot positioning a little less confusing, so that
the 'same' slot tends to be in the same location;
... this should help the clever DFUN mechanism to keep neat ones
like ONE-INDEX around;
... (also this puts slots in objects in the 'expected' order --
frob sb-aclrepl's dealing with the unexpected

19 years ago0.8.19.14:
Christophe Rhodes [Fri, 4 Feb 2005 11:46:41 +0000 (11:46 +0000)]
0.8.19.14:
Merge "PCL depessimization" as in sbcl-devel 2005-02-03

19 years ago0.8.19.13:
Christophe Rhodes [Fri, 4 Feb 2005 11:38:28 +0000 (11:38 +0000)]
0.8.19.13:
Repetitive code is the enemy of comprehension
... refactor %COERCE-CALLABLE-TO-FUN use in REDUCE and other
sequence functions into DEFINE-SEQUENCE-TRAVERSER.

19 years agoCertain Aarguments to sequence functions that can be functions or
Paul F. Dietz [Fri, 4 Feb 2005 09:28:40 +0000 (09:28 +0000)]
Certain Aarguments to sequence functions that can be functions or
function names.  Coerce them to functions once instead of each time
they are applied (similar to an earlier enhancement of REDUCE).

19 years ago0.8.19.11:
Christophe Rhodes [Tue, 1 Feb 2005 15:44:21 +0000 (15:44 +0000)]
0.8.19.11:
Maybe fix compile-file performance regression
... only bind restarts for output where there is a possibility
of an encoding error.  In particular, do not bind the
OUTPUT-NOTHING restart for binary IO.

19 years ago0.18.19.10:
Juho Snellman [Tue, 1 Feb 2005 03:00:01 +0000 (03:00 +0000)]
0.18.19.10:
Refactor sign-extension of signed c-call return values on x86-64:
        * Also sign extend short ints (fixes bug reported by Kevin Rosenberg
          on sbcl-devel, "FFI size error in sbcl-amd64").
        * Move the sign-extension to a :naturalize-gen alien-type-method.
        * Remove signed-byte-32 ptype (used only for some sign-extension
          hacks, which have now been removed).
        * Add some tests.

19 years ago0.8.19.9:
Christophe Rhodes [Mon, 31 Jan 2005 19:25:02 +0000 (19:25 +0000)]
0.8.19.9:
Merge patch (Teemu Kalvas "bad encoding skipper for comments"
sbcl-devel 2005-01-31)
... mcclim should compile out of the box now.

19 years ago0.8.19.8:
Christophe Rhodes [Mon, 31 Jan 2005 16:57:22 +0000 (16:57 +0000)]
0.8.19.8:
Fix bugs in COUNT and EQUAL on bit-vectors with round lengths
(Lutz Euler 'Bug in "count" on bit-vectors' sbcl-devel 2005-01-29)
... off by one, sigh;
... tests, but FIXME: haven't tested whether the new code is
efficient.

19 years ago0.8.19.7:
Christophe Rhodes [Mon, 31 Jan 2005 14:04:22 +0000 (14:04 +0000)]
0.8.19.7:
SET-SYNTAX-FROM-CHAR fix
... SET-SYNTAX-FROM-CHAR now copies the dispatch table if necessary.
Customizeable reader fixes (PFD SYNTAX.FOO ansi-tests)
... Better delineation between character syntax and character
constituent trait;
... rename SECONDARY-ATTRIBUTE to CONSTITUENT-TRAIT;
... renumber +char-attr-multiple-escape+ to below
+char-attr-consituent+;
... rename ESCAPE to SINGLE-ESCAPE;
... in token reader helper macros CHAR-CLASS<n>, get
CONSTITUENT-TRAIT only if the character is a constituent.

19 years ago0.8.19.6:
Christophe Rhodes [Mon, 31 Jan 2005 11:16:11 +0000 (11:16 +0000)]
0.8.19.6:
Whitespace characters should have the (shadowed) invalid
character constituent trait.
... PFD ansi-tests

19 years ago0.8.19.5:
Christophe Rhodes [Sun, 30 Jan 2005 22:05:29 +0000 (22:05 +0000)]
0.8.19.5:
LOAD / EXTERNAL-FORMAT interaction fix.

19 years ago0.8.19.4:
Christophe Rhodes [Sun, 30 Jan 2005 20:15:50 +0000 (20:15 +0000)]
0.8.19.4:
COMPILE-FILE needs to deal with :EXTERNAL-FORMAT arguments.
... pass it through to OPEN.

19 years ago0.8.19.3:
Christophe Rhodes [Fri, 28 Jan 2005 16:48:58 +0000 (16:48 +0000)]
0.8.19.3:
DELETE THE DRAGON

Implement fixed-format floating point through FLONUM-TO-DIGITS.
Essentially this means a whole heap of hairy logic in
FLONUM-TO-STRING, and the deletion of the Steele & White
Dragon algorithm.

... fixes (format nil "~@F" 1.23)
... fixes (format nil "~3F" -0.0)
... fixes (format nil "~G" 1d23)
... fixes (format nil "~E" 1d23)
... fixes bug 317
... does not fix bug 19, which I think is not a bug
... fixes all sorts of other stuff

It probably also breaks something, because test coverage of
this area is definitely patchy.

19 years ago0.8.19.2:
Christophe Rhodes [Fri, 28 Jan 2005 09:01:11 +0000 (09:01 +0000)]
0.8.19.2:
Merge David Lichteblau patches (sbcl-devel 2005-01-1x)
... docstring for INTEGER-LENGTH;
... SHLD / SHRD disassembly.

19 years ago0.8.19.1:
Christophe Rhodes [Thu, 27 Jan 2005 20:31:44 +0000 (20:31 +0000)]
0.8.19.1:
Merged fix from Teemu Kalvas for reading multibyte characters
across a buffer boundary ("probable bug in UTF-8 external-format
support" sbcl-devel 2005-01-23)

19 years ago0.8.19:
William Harold Newman [Tue, 25 Jan 2005 23:36:24 +0000 (23:36 +0000)]
0.8.19:
release, tagged as sbcl_0_8_19

19 years ago0.8.18.36:
Kevin Rosenberg [Sun, 23 Jan 2005 01:03:28 +0000 (01:03 +0000)]
0.8.18.36:
* src/compiler/x86-64/insts.lisp: Add support for disassembly of
64-bit CALL instruction.

19 years ago0.8.18.37:
Juho Snellman [Thu, 20 Jan 2005 20:02:29 +0000 (20:02 +0000)]
0.8.18.37:
Fix x86-64 GC error (reported by Kevin Rosenberg on sbcl-devel,
        "Regression error sbcl-amd64 with CLSQL test suite").

        * The alien stack was aligned on four byte boundaries, so the
          contents of *ALIEN-STACK*'s value slot could sometimes look
          like an (invalid) header word. Align to eight bytes instead.

19 years ago0.8.18.36:
Juho Snellman [Wed, 19 Jan 2005 21:11:00 +0000 (21:11 +0000)]
0.8.18.36:
x86-64 fixes:
        * Implement arrange_return_to_lisp_function to make stack
          exhaustion detection work.
        * Fix select on fds > 32 on 64-bit platforms (patch by
          Cheuksan Edward Wang).
        * Copy apd's x86 fix for DATA-VECTOR-SET-C overflow from
          0.8.18.35.
        * Use -fPIC for building shared libraries in tests/foreign.test.sh
          on x86-64.
        * Remove i586_bzero from x86-64-assem.S.

19 years ago0.8.18.35:
Alexey Dejneka [Tue, 18 Jan 2005 04:34:55 +0000 (04:34 +0000)]
0.8.18.35:
        * Fix overflow in DATA-VECTOR-SET-C VOPs for simple bit
          vectors on X86 (reported by Timmy Douglas).

19 years ago0.8.18.34:
Kevin Rosenberg [Sat, 15 Jan 2005 22:52:59 +0000 (22:52 +0000)]
0.8.18.34:
* src/compiler/target-disassem.lisp: Don't print spaces when
stream is nil (reported by Alexey Dejneka on sbcl-devel).

19 years ago0.8.18.33:
Alexey Dejneka [Sat, 15 Jan 2005 09:19:43 +0000 (09:19 +0000)]
0.8.18.33:
        * When non-local lexical exits are compiled with (SAFETY 0),
          pass the unwind block without packing it into a VALUE-CELL.
          This disables checking of tag extent, but also eliminates
          one source of heap allocation in dynamic-extent closures.
        * Disable intrumenting of more-entries (bug reported by Robert
          J. Macomber).

19 years ago0.8.18.32:
Christophe Rhodes [Fri, 14 Jan 2005 18:09:01 +0000 (18:09 +0000)]
0.8.18.32:
Fixes for Rubout and Backspace syntax (PFD ansi-tests)

19 years ago0.8.18.31:
Juho Snellman [Fri, 14 Jan 2005 06:48:38 +0000 (06:48 +0000)]
0.8.18.31:
Some number-related x86-64 fixes.
* Fix backend bug in negative counts for ASH. (Patch by Lutz Euler
          on sbcl-devel, 2005-01-09). Add some more ASH tests.
        * Cargo-cult signed modular arithmetic changes from the x86
          backend.
        * Remove optimization of constant multiplication to shifts, adds
          and leas (except for the simple cases of 2^x, 3, 5, 9) from
          the x86-64 backend. It was a lot of code that's not really
          of any use on any existing x86-64 processor.
* Fix 32-bit assumptions in deftransform of word-sized RANDOM
          integers.

19 years ago0.8.18.31:
Juho Snellman [Fri, 14 Jan 2005 06:47:31 +0000 (06:47 +0000)]
0.8.18.31:
Some number-related x86-64 fixes.
* Fix backend bug in negative counts for ASH. (Patch by Lutz Euler
          on sbcl-devel, 2005-01-09). Add some more ASH tests.
        * Cargo-cult signed modular arithmetic changes from the x86
          backend.
        * Remove optimization of constant multiplication to shifts, adds
          and leas (except for the simple cases of 2^x, 3, 5, 9) from
          the x86-64 backend. It was a lot of code that's not really
          of any use on any existing x86-64 processor.
* Fix 32-bit assumptions in deftransform of RANDOM for word-sized
          integers.

19 years ago0.8.18.30:
Christophe Rhodes [Thu, 13 Jan 2005 22:23:23 +0000 (22:23 +0000)]
0.8.18.30:
One more octets bugfix from Robert Macomber

19 years ago0.8.18.29:
Christophe Rhodes [Thu, 13 Jan 2005 11:07:23 +0000 (11:07 +0000)]
0.8.18.29:
Fix READ-FROM-STRING's second return value on displaced strings.
(PFD ansi-tests)

19 years ago0.8.18.28:
Christophe Rhodes [Thu, 13 Jan 2005 10:12:11 +0000 (10:12 +0000)]
0.8.18.28:
Method tracing (only with :encapsulate nil)
... name functions SLOW-METHOD and FAST-METHOD (so no leakage with
CL:METHOD)
... new :METHODS boolean option for TRACE; also DWIM in TRACE for
(METHOD FOO :AROUND (INTEGER))-style names

19 years ago0.8.18.27:
Christophe Rhodes [Thu, 13 Jan 2005 09:56:45 +0000 (09:56 +0000)]
0.8.18.27:
Merge "More octets<-> string stuff" (Robert J. Macomber sbcl-devel
2005-01-12)

19 years ago0.8.18.26:
Alexey Dejneka [Wed, 12 Jan 2005 17:57:14 +0000 (17:57 +0000)]
0.8.18.26:
        * Generate one NLX-INFO per pair cleanup/continuation.

19 years ago0.8.18.25:
Juho Snellman [Tue, 11 Jan 2005 00:04:07 +0000 (00:04 +0000)]
0.8.18.25:
Improvements to the statistical profiler.
        * Add support for x86-64.
        * Time spent in foreign functions was previously attributed to
          "elsewhere". Now reported individually for all of them, and
          "foreign function __open", "foreign function sin", etc.
        * Walk the call stack to a depth of 8 instead of relying only
          on the PC and RA from os-context-t (currently only on x86/x86-64).
          Thus instead of just knowing that a lot of time is being spent
          on (for example) bignum operations, we might find out where
  the bignum operations are being initiated.
        * Add a column for accrued time to the flat report.
        * Add kludgy workaround for invalid frame-pointers in the
          os-context-t structure causing segfaults.

19 years ago0.8.18.24:
Alexey Dejneka [Mon, 10 Jan 2005 08:04:19 +0000 (08:04 +0000)]
0.8.18.24:
        * BACKQ-* wrappers have dynamic-extent argument lists.
        * Dereference FUNCTION designator argument of REDUCE at the
          beginning of the function.
        * Remove some FIXNUM declarations in REDUCE.

19 years ago0.8.18.23:
Andreas Fuchs [Sun, 9 Jan 2005 12:33:31 +0000 (12:33 +0000)]
0.8.18.23:
        Manual build fixes.

        * Allow the manual to be built with an sbcl in a non-standard
          place.  This is supposed to help the autobuilder/benchmarker
          build a manual without jumping through too many hoops.
        * Add a docstring to sb-md5's md5sum-string, to make the
          manual happy again.

19 years ago0.8.18.22:
Alexey Dejneka [Sun, 9 Jan 2005 08:02:56 +0000 (08:02 +0000)]
0.8.18.22:
        Document stack allocation of closures in the manual.

19 years ago0.8.18.21:
Christophe Rhodes [Sun, 9 Jan 2005 00:11:14 +0000 (00:11 +0000)]
0.8.18.21:
Merge Robert J. Macomber's octets3.lisp (sbcl-devel 2005-01-06)
patch.
... use WITH-ARRAY-DATA for bounds checking and simple-array
extraction;
... implement ASCII external format (and MALFORMED-ASCII
condition);
... don't need CODE-RANGE type, we can use CHAR-CODE;
... make it compile in #!-SB-UNICODE;
... one or two other frobs.  I don't think this is in its final
form even now, but it's good enough, and...
Implement SB-MD5:MD5SUM-STRING, calling STRING-TO-OCTETS
... adjust md5-tests.lisp to use it;
... tests now pass.  Hooray.

19 years ago0.8.18.20:
Alexey Dejneka [Sat, 8 Jan 2005 09:41:46 +0000 (09:41 +0000)]
0.8.18.20:
        * Allocate closures at the beginning of FLET/LABELS form.
        ... fix bug 125.
        * Partial support of stack allocation of dynamic-extent
          closures on x86.

19 years ago0.8.18.19:
Juho Snellman [Sat, 8 Jan 2005 00:55:56 +0000 (00:55 +0000)]
0.8.18.19:
Fix a few AMD64 issues.
* Fix broken logic in SIGNED-BYTE-32-P for negative numbers
          when NOT-P is true. (Reported by Todd Sabin on sbcl-devel,
          2005-01-06).
* Correct incorrectly spelled type names in DUMP-I-VECTOR.
          (Patch by Cheuksan Edward Wang).
        * Sap-operations on floats were using broken x87 code. Replace
          with SSE. (Patch by Cheuksan Edward Wang).

19 years ago0.8.18.18:
Christophe Rhodes [Fri, 7 Jan 2005 18:10:50 +0000 (18:10 +0000)]
0.8.18.18:
Fix for OUTPUT-NOTHING restart
... don't advance by a character if we don't output anything

19 years ago0.8.18.17:
Christophe Rhodes [Fri, 7 Jan 2005 14:18:29 +0000 (14:18 +0000)]
0.8.18.17:
Merge Teemu Kalvas "several nice fixes to external format restarts"
sbcl-devel 2005-01-07
... not the extra exports, but some different exports instead;
... frob SIMPLE-DECODING-ERROR signature so that the octets
get reported correctly.

19 years ago0.8.18.16:
Christophe Rhodes [Fri, 7 Jan 2005 11:54:18 +0000 (11:54 +0000)]
0.8.18.16:
CLISP build fixes
... CUT-TO-WIDTH now takes three arguments;
... *LOAD-PATHNAME* and *COMPILE-FILE-PATHNAME* aren't absolute
in CLISP, sigh.  Use -TRUENAME* variants instead.
... PRINT not PRIN1 the random state after the huge bignum, otherwise
most of the time is spent in the pretty printer formatting
the random state to column 700000000000
... bit more NEWS on the x86-64 merge.

19 years ago0.8.18.15:
Juho Snellman [Thu, 6 Jan 2005 18:31:25 +0000 (18:31 +0000)]
0.8.18.15:
Fix a few problems with the AMD64 merge.
* Fix genesis of double-floats on 32-bit little-endian platforms.
        * Remove Makefile kludge for forcing shared libraries in contribs
          to use the 32-bit mode on AMD64.
        * Remove extra argument to MY-MAKE-WIRED-TN in x86-64/c-call.lisp
          (prevented using CMUCL as host, since it gives a full warning).
        * Add a NEWS entry for the new port.

19 years ago0.8.18.14:
Christophe Rhodes [Thu, 6 Jan 2005 12:47:55 +0000 (12:47 +0000)]
0.8.18.14:
Merge x86-64-again branch onto HEAD.

Many, many, many 64-bit cleanups in code/, runtime/, compiler/,
compiler/generic/

New SAP-REF-WORD and friends.

Various fixes to the x86-64 backends (and addition of assembly/
and runtime/ files necessary).  Implementation of Unicode-related
stuff by CSR.  Signed modular arithmetic has not yet been
implemented.

A number of tests fail:
... alien.impure.lisp: enum <-> integer array conversion
... exhaust.impure.lisp: "deferred gubbins"
... float.pure.lisp: float infinities
... foreign.test.sh: "deferred gubbins"

It's possible that this merge will cause alpha32 to break in an
interesting way, probably related to undefined-alien.  Needs
debugging.  Other architectures have been tested, but of course
it's possible that something has gone wrong.

Though I (CSR) am merging this, the vast majority of the work was
done by Juho Snellman (building on Dan Barlow's initial work to
get it into executing lisp code in cold-init), with guest appearances
by Cheuksan Edward Wang and Vincent Arkesteijn.

19 years ago0.8.18.13:
Christophe Rhodes [Wed, 5 Jan 2005 07:56:48 +0000 (07:56 +0000)]
0.8.18.13:
Merge patch from Teemu Kalvas for recovery from encoding errors
... not all recoveries seem to work currently.

19 years ago0.8.18.12: fix a small bug where EVAL-IN-LEXENV wasn't evaluating the value
Brian Mastenbrook [Wed, 5 Jan 2005 01:55:35 +0000 (01:55 +0000)]
0.8.18.12: fix a small bug where EVAL-IN-LEXENV wasn't evaluating the value
           of a setq assignment in any lexenv.

19 years ago0.8.18.11:
Christophe Rhodes [Sun, 2 Jan 2005 23:02:35 +0000 (23:02 +0000)]
0.8.18.11:
Maybe fix the clisp build bug (reported by Pascal Bourguignon)

19 years ago0.8.18.10:
Christophe Rhodes [Sat, 1 Jan 2005 21:34:34 +0000 (21:34 +0000)]
0.8.18.10:
Fix FORMATTER.COND.7 and similar;
... ~V[ uses only one argument to determine which clause (unless
the argument is NIL, of course)

19 years ago0.8.18.9:
Christophe Rhodes [Sat, 1 Jan 2005 21:01:27 +0000 (21:01 +0000)]
0.8.18.9:
Merge a couple of patches
... a bug in 'filesys.lisp' (Artem V. Andreev);
... (coerce #c(1 2) '(complex float)) => error (Vincent Arkesteijn)

19 years ago0.8.18.8:
Christophe Rhodes [Fri, 31 Dec 2004 15:53:50 +0000 (15:53 +0000)]
0.8.18.8:
Make METHOD and FAST-METHOD generalized function names
... some adjustments in NAMED-LAMBDAs;
... no more INTERN-FUN-NAME, yay.

19 years ago0.8.18.7:
William Harold Newman [Fri, 31 Dec 2004 13:39:08 +0000 (13:39 +0000)]
0.8.18.7:
more BUGS
misc. fiddling/tidying while trying to relearn IRn guts...
...indentation systematization
...redid printers s/#<CTRAN  #1 {97EC941}>/#<CTRAN 1 {97EC941}>/
so that they look less like *PRINT-CIRCLE* bugs

19 years ago0.8.18.5:
Christophe Rhodes [Fri, 31 Dec 2004 12:30:11 +0000 (12:30 +0000)]
0.8.18.5:
Make comments in ctor.lisp reflect the two recent fixes.

19 years ago0.8.18.4:
Christophe Rhodes [Fri, 31 Dec 2004 11:50:54 +0000 (11:50 +0000)]
0.8.18.4:
Pass defaulted initargs, not just present initargs, to methods
on SHARED-INITIALIZE and INITIALIZE-INSTANCE in ctor.lisp
... test, both for constant and variable initforms;
... I wish I could remember who reported this bug where.

19 years ago0.8.18.3:
Christophe Rhodes [Fri, 31 Dec 2004 08:25:04 +0000 (08:25 +0000)]
0.8.18.3:
Fix for invalid :default-initargs not being caught by ctor
... disable ctor if any default-initarg keys are invalid

19 years ago0.8.18.2:
William Harold Newman [Thu, 30 Dec 2004 18:55:58 +0000 (18:55 +0000)]
0.8.18.2:
logged bugs 367a and 367b

19 years ago0.8.18.1: obviously I wasn't thinking this morning. It's not 0.8.19 /yet/.
Brian Mastenbrook [Thu, 30 Dec 2004 14:18:39 +0000 (14:18 +0000)]
0.8.18.1: obviously I wasn't thinking this morning. It's not 0.8.19 /yet/.

19 years ago0.8.19.1: PowerPC linkage tables (darwin only for now)
Brian Mastenbrook [Thu, 30 Dec 2004 13:44:26 +0000 (13:44 +0000)]
0.8.19.1: PowerPC linkage tables (darwin only for now)
   * Linkage tables are now implemented on PowerPC.
     Right now I've only enabled it on Darwin; to enable it on Linux,
 the addresses used for linkage table spaces would need to be tested.
   * Lazy foreign functions do not work correctly - the code expects the signal
     that occurs when jumping to a write-protected page to be the same as the
 signal that occurs when reading from one. On Darwin the former is SIGBUS
 and the latter is SIGSEGV; this means that the fault address testing does
 not work on Darwin.

19 years ago0.8.18:
William Harold Newman [Tue, 28 Dec 2004 23:38:00 +0000 (23:38 +0000)]
0.8.18:
release, tagged as sbcl_0_8_18

19 years ago0.8.17.31: "dlerror and a tale of woe"
Brian Mastenbrook [Mon, 20 Dec 2004 13:10:38 +0000 (13:10 +0000)]
0.8.17.31: "dlerror and a tale of woe"
    Fix two bugs relating to dlerror() in the OS X dl* shim:
      * dlerror() should return NULL when there is no error
      * dlerror() should return an error when dlsym() returns NULL
    Also, fix a call to cerror with only one argument.

    Restores support for OS X 10.2 "Jaguar":
      * Use a header file with constants for the dl* shim instead of the
        OS dlfcn.h, which doesn't exist under 10.2 and does under 10.3
      * Include a fake nl_langinfo which returns a codeset of UTF-8 unless
        neither LC_CALL or LANG are set to C. OS X uses UTF-8 everywhere, so
        this is arguably the right behavior.

19 years ago0.8.17.30:
Alexey Dejneka [Sun, 19 Dec 2004 09:59:18 +0000 (09:59 +0000)]
0.8.17.30:
        * Merged patch for the bug 348 by Gabor Melis.

19 years ago0.8.17.29:
Alexey Dejneka [Sun, 19 Dec 2004 07:01:04 +0000 (07:01 +0000)]
0.8.17.29:
        * Merged sbcl-0-8-17-28-signed-modular branch.

19 years ago0.8.17.28:
Nathan Froyd [Thu, 9 Dec 2004 16:58:40 +0000 (16:58 +0000)]
0.8.17.28:
Oops.  Undo modular fixnum arithmetic changes from 0.8.17.24.

19 years ago0.8.17.27:
Christophe Rhodes [Thu, 9 Dec 2004 16:15:57 +0000 (16:15 +0000)]
0.8.17.27:
Improve ENUM support a little.  (VJA sbcl-devel 2004-12-09)
... SB-ALIEN enums not limited to symbols any more;
... SB-GROVEL enum grovelation;
... tests (which pass despite the current, erm, suboptimality
of arithmetic :)

19 years ago0.8.17.26:
Christophe Rhodes [Thu, 9 Dec 2004 15:32:51 +0000 (15:32 +0000)]
0.8.17.26:
Fix from VJA (sbcl-devel 2004-12-09) for EXPORT
continue-format-control
... actually give it the arguments it needs.
... write a test that doesn't actually test for the bug, but makes
me feel better anyway.

19 years ago0.8.17.25: Missing export & documentation updates
Nikodemus Siivola [Thu, 9 Dec 2004 11:40:58 +0000 (11:40 +0000)]
0.8.17.25: Missing export & documentation updates
            * buglet reported by Raymond Wiker
            * typo reported by Devon McCullough
            * remove text saying LOAD-SHARED-OBJECT must be called
               before loading the definitions

19 years ago0.8.17.24:
Nathan Froyd [Wed, 8 Dec 2004 16:31:41 +0000 (16:31 +0000)]
0.8.17.24:
Reinstate fixnum arithmetic when possible by defining modular
  arithmetic mechanisms for (UNSIGNED-BYTE 29)
... this feels like a big, ugly hack, since the compiler is
      (presumably) smart enough to do this when modular
      arithmetic was not present;
... move some EVAL-WHEN macros into a MACROLET while we're at it;
... builds and passes tests on x86/Linux; will probably build
      properly on other platforms, but will fail tests in
      (at least) tests/arith.pure.  These test failures seem
      harmless enough and will be fixed in another revision or
      two.

19 years ago0.8.17.23:
Christophe Rhodes [Tue, 7 Dec 2004 15:16:46 +0000 (15:16 +0000)]
0.8.17.23:
Fix for printing 1.0d+23.  Thinko in transcription, duly caught
by Raymond Toy (bug report cmucl-help 2004-12)

19 years ago0.8.17.22: minor buglets & bugreports
Nikodemus Siivola [Tue, 7 Dec 2004 13:30:40 +0000 (13:30 +0000)]
0.8.17.22: minor buglets & bugreports
            * Use %COERCE-NAME-TO-FUN, not FDEFINITION for
               evaluation of FUNCTION.
            * (SETF MACRO-DEFINITION) must accept NIL environments
               (reported by Kalle Olavi Niemitalo)
            * Also record a bunch of PCL/MOP bugs reported
               by Bruno Haible. Note: there are still more bugs
               reported by him on the mailing list.

19 years ago0.8.17.21:
Kevin Rosenberg [Sun, 5 Dec 2004 20:11:08 +0000 (20:11 +0000)]
0.8.17.21:
* contrib/sb-aclrepl/tests.lisp: Port forward changes from sbcl-amd64
to test bignums when sb-vm::n-word-bits is 64.

19 years ago0.8.17.20:
Kevin Rosenberg [Sat, 4 Dec 2004 01:33:42 +0000 (01:33 +0000)]
0.8.17.20:
* contrib/sb-aclrepl/inspect.lisp: Backport changes from sbcl-amd64
to handle inspection of objects on 64-bit implementations.

19 years ago0.8.17.19: Late resolution for foreign symbols &co
Nikodemus Siivola [Fri, 3 Dec 2004 17:50:05 +0000 (17:50 +0000)]
0.8.17.19: Late resolution for foreign symbols &co
            * If a foreign symbol is unknown, use an address on a
               protected page for it: all accesses there are trapped,
               and signal UNDEFINED-ALIEN-ERROR. (Currently the error
               doesn't reveal the name of the alien that was
               accessed.)
            * Make GET-DYNAMIC-FOREIGN-SYMBOL-ADDRESS keep track of
               both undefined aliens and dynamic foreign symbols in
               general.
            * Fix linkage-table reinitialization bug on threaded
               platforms, reported by Sean Ross.
            * Better restarts for realoding shared objects, and
               CONTINUE restarts for *save-hooks* and *init-hooks*.
            * Accurate alien warning for SAVE-LISP-AND-DIE on
               non-linkage-table platforms.

 HEALTH WARNING: Tested on x86/FreeBSD only, but "should be fine".

19 years ago0.8.17.18:
Christophe Rhodes [Fri, 3 Dec 2004 12:49:45 +0000 (12:49 +0000)]
0.8.17.18:
Fix for a couple of Unicode-related bugs.
... KLUDGE around the non-existence of proper external-format
support in GET-DESCRIPTOR-FOR / RUN-PROGRAM;
... hideous hack in asdf-install to allow downloads of binary data
through character streams.

19 years ago0.8.17.17:
Christophe Rhodes [Thu, 2 Dec 2004 19:43:31 +0000 (19:43 +0000)]
0.8.17.17:
Fix (UPGRADED-COMPLEX-PART-TYPE NIL) to return NIL
... fortunately we don't actually have to implement the
(COMPLEX NIL) type, unlike with arrays; one cannot create
a COMPLEX independent of its elements.

19 years ago0.8.17.16:
Christophe Rhodes [Thu, 2 Dec 2004 18:19:24 +0000 (18:19 +0000)]
0.8.17.16:
Plaster for the (COMPLEX RATIO) PFD flesh wound
... treat (COMPLEX (AND <numeric> <hairy>+)) as the same as
(COMPLEX <numeric>)

19 years ago0.8.17.15:
Christophe Rhodes [Thu, 2 Dec 2004 15:49:46 +0000 (15:49 +0000)]
0.8.17.15:
Fix for RANDOM compilation (report PFD sbcl-devel 2004-11-30)

19 years ago0.8.17.14:
Nathan Froyd [Wed, 1 Dec 2004 23:17:41 +0000 (23:17 +0000)]
0.8.17.14:
Fix "problem with TIME" issue, sbcl-devel 2004-09-16
... delete obviously stale FIXME while we're at it

19 years ago0.8.17.13:
Christophe Rhodes [Wed, 1 Dec 2004 16:59:14 +0000 (16:59 +0000)]
0.8.17.13:
Fix FORMATTER on ~@[X~] (PFD ansi-tests)

19 years ago0.8.17.12:
Christophe Rhodes [Wed, 1 Dec 2004 16:35:40 +0000 (16:35 +0000)]
0.8.17.12:
D'oh d'oh d'oh.  Unpatch profile.lisp which contained broken
local modifications.  Sorry.

19 years ago0.8.17.11:
Christophe Rhodes [Wed, 1 Dec 2004 16:34:01 +0000 (16:34 +0000)]
0.8.17.11:
Fix various ~{ formatter PFD ansi-tests bugs
... one failure remains, but I'm querying it with the man himself

19 years ago0.8.17.10: stricter DEFCLASS option checking
Nikodemus Siivola [Wed, 1 Dec 2004 15:58:02 +0000 (15:58 +0000)]
0.8.17.10: stricter DEFCLASS option checking
            * as reported by Bruno Haible, an error should be
              signalled if a class-option appears multiple times.

19 years ago0.8.17.9: minor rollback (problems caught by the ansi-tests)
Nikodemus Siivola [Wed, 1 Dec 2004 15:19:20 +0000 (15:19 +0000)]
0.8.17.9: minor rollback (problems caught by the ansi-tests)
           * Don't resignal errors from macroexpansion before calling
              error. Users that care should be hooking onto
              *macroexpand-hook* and handling things there.

19 years ago0.8.17.8: x86 backtraces
Nikodemus Siivola [Wed, 1 Dec 2004 14:14:23 +0000 (14:14 +0000)]
0.8.17.8: x86 backtraces
           * fixed bug #345: don't set the escaped flag to NIL on x86
              in COMPUTE-CALLING FRAME if we have no code from
              FIND-ESCAPED-FRAME. Add tag-bytes to undefined_tramp and
              closure_tramp on x86 like others.
           * partial fix for #61: instead of throwing no-debug-info
              conditions, return a "no debug information for frame"
              bogus-debug-fun from debug-fun-from-pc.
           * Two new BUGS entries about backtraces.
           * Tests. (debug.impure.lisp now passes on sparc as well,
              but only because one test now axxepts the XEP in lieu of
              the function on sparc and x86.