- Dec 14, 2004
-
-
rtoy authored
more bugs remain. (Based on code in sbcl.)
-
- Dec 13, 2004
- Dec 09, 2004
-
-
rtoy authored
in several places to signal socket errors instead of generic errors. (For better support for trivial-sockets.)
-
- Dec 06, 2004
-
-
rtoy authored
an error. o Fix the logic error in scale in flonum-to-digits, where the test for high-ok was wrong. o Take the opportunity to eliminate some common subexpressions to reduce computation and consing of bignums.
-
- Dec 03, 2004
-
-
rtoy authored
Eller, cmucl-imp, 2004-12-03.
-
- Nov 20, 2004
-
-
cwang authored
-
- Nov 19, 2004
-
-
cwang authored
-
- Nov 17, 2004
-
-
cwang authored
-
- Nov 16, 2004
-
-
cwang authored
-
- Nov 11, 2004
-
-
rtoy authored
-
- Nov 10, 2004
-
-
rtoy authored
low or high were double-floats outside the range of single-floats. We now silently treat them as if they were * (unbounded). Fixes ansi-test real.1 and real.2 failures.
-
- Oct 24, 2004
-
-
rtoy authored
* alieneval.lisp: o The CALLBACK defstruct holds the entire alien function type o COMPATIBLE-RETURN-TYPES-P renamed to COMPATIBLE-FUNCTION-TYPES-P and and made specific to each backend. o Adjust code appropriately. ppc/c-call.lisp: o Port Thomas Burdick's callback code to ppc. sparc/c-call.lisp: x86/c-call.lisp: o Adjust code appropriately for new callback structure. o Implement COMPATIBLE-FUNCTION-TYPES-P, like original COMPATIBLE-RETURN-TYPES-P
-
- Oct 23, 2004
-
-
rtoy authored
converting the sp-fixnum and ret-addr args---a call to ash was generated. Use bignum:%ashl to get it nicely inlined.
-
- Oct 22, 2004
-
-
rtoy authored
around for the case where an invalid character is passed to LOGICAL-PATHNAME, which is supposed to signal a type-error. o Make sure the result from LOGICAL-PATHNAME is really a logical-pathname. (May not be the best solution.) This fixes ansi-test logical-pathname.error.3 and logical-pathname.error.10.
-
rtoy authored
too hairy for use to handle. This is a workaround for the ansi-test MAP.48: (map '(or (vector t 10) (vector t 5)) #'identity '(1 2 3 4 5)) This used to cause an infinite loop. Now we get an error. Need to work on this.
-
rtoy authored
o Modify PPRINT-FUNCTION-CALL to try to be a little smarter and print keyword/value pairs on one line. Note that this will be confused if the function call uses keywords as arg values. This will interpret them as a keyword arg. I left the original call in, just in case we want to revert this.
-
rtoy authored
to be T. Make it so. Bug reported by Bruno Haible, cmucl-imp, 2004-10-22.
-
- Oct 21, 2004
-
-
rtoy authored
-
rtoy authored
2004-08-20. Use boot-2004-10-2.lisp to bootstrap. o We were not putting the loop prologue code after the initializations for with, for, and as. o The step form for for-as-equals was getting optimized into the body, instead of leaving one in the prologue for other initializations. o The for-across clause was putting the length computation into the prologue, but should belong in the initialization part before the body. See comments for more info.
-
- Oct 19, 2004
-
-
cwang authored
-
cwang authored
-
cwang authored
-
rtoy authored
Bug noted by Bruno Haible, cmucl-imp, 2004-10-15: (LOOP WITH A = 0 FOR A DOWNFROM 10 TO 0 DO (PRINT A)) should signal a program-error.
-
rtoy authored
Issue noted by Bruno Haible, cmucl-imp, 2004-10-19.
-
rtoy authored
cuts on the real line incorrectly. This shows up when calling these functions with real-valued args, not complex. The problem was the computed values were not continuous with the quadrants specified by ANSI CL. Issue noted by Bruno Haible, cmucl-imp, 2004-10-11. See also some tests on cmucl-imp, 2004-10-19.
-
- Oct 18, 2004
-
-
rtoy authored
o Was not treating "foo.lisp.*" as having a version :wild, like cmucl used to. Reinstate this. o Honor *ignore-wildcards* when extracting versions. This prevents errors if there's a file named like "foo.lisp.~*~". %ENUMERATE-FILES: o Was handling the case when the version is :wild. We now search the directory for versions that match. Issue reported by Lynn Quam, cmucl-imp, 2004-10-15.
-
- Oct 16, 2004
-
-
rtoy authored
-
- Oct 14, 2004
-
-
rtoy authored
Bug noted by Bruno Haible, cmucl-imp, 2004-10-07.
-
rtoy authored
license. pprint-loop.lisp: o New file containing the loop pprinter, with XP license pprint.lisp: o Remove loop pprinter code. o Call initializer to enable the loop pprinter at the right time. worldcom.lisp: o Compile pprint-loop worldload.lisp: o Load pprint-loop at the right time.
-
rtoy authored
handle the situation of the key T when used as a normal clause. From Bruno Haible, cmucl-imp, 2004-10-13.
-
- Oct 13, 2004
-
-
rtoy authored
through assembly functions a bit smarter. DEBUG-FUNCTION-FROM-PC modified so that it recognizes assembly routines and simply returns a BOGUS-DEBUG-FUNCTION in that case.
-
rtoy authored
no debug-variable information because that prevents the user from evaluating other stuff. Leave a warning in, but maybe we should remove this as well?
-
- Oct 12, 2004
- Oct 09, 2004
-
-
rtoy authored
file associated with a stream that has no file (like broadcast streams, etc.). Fixes ANSI test logical-pathname.error.4 and friends.
-
rtoy authored
PPRINT-LOGICAL-BLOCK is NIL. Fixes ANSI test pprint-pop.9.
-
rtoy authored
Fixes ANSI test make-symbol.13 and friends.
-
rtoy authored
that seems to depend on what CPU is being used. Jon Boone says it's 64 on a G5. It's some other weird value for a G4. o Change TIME output to say "time-base cycles" instead of "CPU cycles" for PPC, so the user isn't confused when (time (sleep 1)) returns something unexpected.
-
rtoy authored
incremente once every 16 clock cycles on a 400 MHz iMac G3. We assume that's true for other ppc's.
-