- Jul 07, 2006
-
-
rtoy authored
double-double-floats if the arg is non-negative.
-
- Jun 30, 2006
-
-
rtoy authored
The merge is from the tag "double-double-irrat-end". The double-double branch is now obsolete. The code should build without double-double support (tested on sparc) as well as build with double-double support (tested also on sparc).
-
- Jun 26, 2005
-
-
rtoy authored
mrg32k3a test in cl-bench.
-
- Jun 19, 2005
-
-
rtoy authored
micro-optimization.
-
- Apr 29, 2005
-
-
rtoy authored
replace with a single scale-float optimizer. This enables type derivation for scale-float on x86, which wasn't transforming scale-float to scale-single-float/scale-double-float.
-
- Apr 24, 2005
-
-
rtoy authored
negative and the scale-factor caused underflow during computation of the bounds. Fix that. This fixes misc.567 test from ansi-tests, and perhaps others.
-
- Sep 23, 2004
-
-
rtoy authored
if the range of the arg were too large to fit in a float. Silently return unbounded value instead of signaling an error during compilation.
-
- Sep 03, 2004
-
-
rtoy authored
be a union type.
-
- Jun 18, 2004
-
-
rtoy authored
o Update %unary-ftruncate and the corresponding deftransform because it was not properly returning the correct sign for signed zeroes. If the number was in a good range, we used truncate, which loses the sign of zero. (Should we have leave it in and add an explicit check for a zero result and adjust the sign appropriately? That would allow us to use the fast builtin instructions at the expense of a test for zero and a fix.)
-
- Jan 10, 2004
-
-
toy authored
we don't have to call abs at all.
-
- Jan 09, 2004
-
-
toy authored
(expt <rational> <rational>). The result can be a rational, a float, or a complex single-float.
-
- Sep 12, 2003
-
-
gerd authored
is an invalid type specifier. * src/compiler/float-tran.lisp (float): Make three optimizers, one for no prototype, one for single-float prototype, and one for double-float prototype.
-
- Sep 07, 2003
-
-
gerd authored
(compile 'foo) (foo 0d0) => 0d0 Found by Paul Dietz with sqrt on complex numbers. * src/compiler/float-tran.lisp (float) <deftransform>: Test with single-float-p instead of floatp.
-
- Sep 05, 2003
-
-
toy authored
o Oops. We should subtract from 0, not 0d0 o Add the deftransform for - to the complex-fp-vops part too, because the vop gets that wrong. compiler/sparc/float.lisp: o Remove the vop for a real - complex because we get the sign of the imaginary part wrong.
-
toy authored
imaginary part instead of subtracting from 0. This is needed to get the correct sign if the imaginary part was 0. (From a bug in Paul Dietz's ansi tests.)
-
- Sep 02, 2003
-
-
toy authored
calling %SINGLE-FLOAT which converts everything to a single-float. (Noted by Christophe Rhodes on #lisp.)
-
- Jul 03, 2003
-
-
toy authored
which we weren't handling. Use bound-value to get the value. This probably still needs some work.
-
- Jul 02, 2003
-
-
toy authored
of a double-float in multiple-values. This is better than calling double-float-high/low-bits which causes 2 stores to the stack to be done.
-
- Apr 23, 2003
-
-
toy authored
decode-double-float more accurately. (Do we need defoptimizers for these? Might be useful to get at least the exponent range accurately.)
-
- Mar 14, 2002
-
-
toy authored
DEFKNOWN for it.
-
- Mar 08, 2002
-
-
toy authored
%unary-truncate has many redundant stack moves even when it's know the result will fit in a (signed-byte 32), so create vops to do the conversion directly in the floating-point registers. Also, sparc-v9 can do 64-bit integer conversions, so make the range up to 64-bits for sparc-v9.
-
- Feb 25, 2002
-
-
toy authored
instead of calling the generic TRUNCATE. Make FFLOOR, FCEILING, and FROUND use FTRUNCATE so they benefit too.
-
- Sep 24, 2001
-
-
toy authored
operation for the denominator). o Add corresponding deftransform for real/complex.
-
- Apr 12, 2001
-
-
pw authored
Here is the patch that makes the propagate-float-type, propagate-fun-type, and constrain-float-type features the default. All old code is removed. If you recompile, you should probably remove these features, just to be sure (caught a few mistakes that way).
-
- Jul 06, 2000
-
-
dtc authored
(complex float) types even when passed a (complex rational) or (complex integer).
-
- Apr 02, 2000
-
-
dtc authored
o Add support for complex FP vops, enabled by the feature :complex-fp-vop which should work for all Sparcs.
-
- Sep 06, 1999
-
-
dtc authored
making use of the deftransform :policy feature. Further just use generic division if the transform fails rather than adding specialised complex float division functions which shouldn't have been defined here anyway.
-
- Jul 13, 1999
-
-
pw authored
Changes: o Change deftransform truncate to handle the two arg case. Add similar deftranform for floor and ceiling. o Only inline complex single/double-float division if speed > space. Otherwise, call the division routines.
-
- Jan 23, 1999
-
-
dtc authored
-
- Oct 01, 1998
-
-
dtc authored
functions, from Raymond Toy.
-
- Sep 29, 1998
-
-
dtc authored
numeric-type to a high and low bound for which negative and positive zero being distinct as for the :negative-zero-not-zero feature. This fixes some problems that occurred when not compiled with the :negative-zero-not-zero feature.
-
- Sep 20, 1998
- Aug 23, 1998
-
-
dtc authored
-
- Aug 22, 1998
- Jul 24, 1998
-
-
dtc authored
remove unnecessary conditionals.
-
- Apr 15, 1998
-
-
dtc authored
-
- Mar 30, 1998