- May 30, 2007
-
-
rtoy authored
-
- May 29, 2007
-
-
rtoy authored
-
rtoy authored
o Allow microseconds in the time. We don't do anything with the microseconds; we just recognize it and through it away. o Add a check that if the day of the week is specified, it actually makes sense with the given date. Thus, "Wed May 29, 2007" signals an error since May 29, 2007, is Tuesday. o Some slight rearrange of the code for consistency.
-
rtoy authored
-
rtoy authored
-
- May 26, 2007
- May 25, 2007
-
-
rtoy authored
DD-COMPLEX-ATANH with -0w0 to get the correct value.
-
rtoy authored
from fasl files. Use %make-double-double-float instead of make-double-double-float because the latter does a renormalization, which trashes the sign. The former constructs the double-double exactly as given, which is really what we want since the fasl has the correct components.
-
rtoy authored
o Fix a typo in a docstring. o Fix DD-COMPLEX-ASIN again: - The previous fix for asin(-2) being wrong actually broke the case for asin(2). Revert that. - The issue was that in our explicitly handling of the atan(y/0) case we didn't take into account the sign y and 0. Fix that.
-
- May 24, 2007
- May 23, 2007
- May 22, 2007
-
-
rtoy authored
think this was causing PCL to think that (complex double-double-float) was not a subtype of complex.
-
- May 19, 2007
-
-
rtoy authored
For large numbers we did not check for odd-valued results that needed to be rounded to even.
-
- May 09, 2007
-
-
rtoy authored
o Add vops to do fused multiply-add and fused multiply-subtract. (Only double-float supported.) o Add defknown's for these translations. compiler/float-tran.lisp: o Used fused multiply-subtract for two-prod and two-sqr instead of the split function.
-
rtoy authored
Fix that and fix the printer.
-
- May 02, 2007
-
-
rtoy authored
undefined_tramp addresses, just in case, for sparc and ppc. o Don't make verify_space a static function.
-
rtoy authored
<. Print out an error message if the loop is exited with clean != static_free. This prevents infinite loops that were sometimes seen on x86. However, the infinite loops appear to be caused by some kind of heap corruption. This change just makes the corruption more apparent.
-
rtoy authored
o Gather all double-double-float issues into one entry.
-
rtoy authored
shared-initialize were not getting :default-initargs. Patch from Madhu, Mar 28, 2007, based on fix in sbcl. pcl/ctor.lisp: o Pass default-initargs to initialize-instance and shared-initialize. pcl/rt/ctor.lisp: o Add test for this case pcl/rt/system.lisp: o Use *load-truename* to setup paths, instead of a hard-wired one.
-
rtoy authored
month Add check for valid number of days for the given month.
-
- May 01, 2007
-
-
rtoy authored
start have changed in compiler/x86/parms.lisp.
-
- Apr 30, 2007
-
-
rtoy authored
-
- Apr 20, 2007
-
-
rtoy authored
COMPLEX-DOUBLE-FLOAT-VALUE vops. This reduces the number of moves needed.
-
- Apr 19, 2007
- Apr 14, 2007
-
-
rtoy authored
to be ok now. o Allow descriptor arg for COMPLEX-DOUBLE-DOUBLE-FLOAT-VALUE. This can significanlty reduce the number of loads from memory.
-
- Apr 12, 2007
-
-
rtoy authored
instruction instead of the STDF instruction. (How could this have worked?)
-
rtoy authored
rid of quite a few uneeded loads from memory because we'd load the whole complex double-double into registers and select just the real or imaginary part. Now we just load the two double-floats we want.
-
rtoy authored
rid of quite a few uneeded loads from memory because we'd the whole complex double-double into registers and select just the real or imaginary part. Now we just load the 2 double-floats we want.
-
rtoy authored
o Was not use the FP arg for the stack when storing the arg to the stack. o Was storing the wrong element to the stack (real-hi instead of real-lo).
-
- Apr 07, 2007
- Mar 31, 2007
-
-
rtoy authored
-
rtoy authored
o Turn off :load-if for the real arg because the generator doesn't handle the case if the real arg is on the stack. o Enable :load-if for the result because the code (already) handled it. o The wrong TN was being used for the imaginary part of the real part. o The wrong TNs were being used for the arg registers. Use the right TN values.
-
- Mar 30, 2007
-
-
rtoy authored
-