- May 13, 2016
-
-
Raymond Toy authored
The deftransform for converting an (unsigned-byte 32) to a double-float was using the wrong type of float constant. It should have been a double instead of single. This fix allows sparc to cross-compile itself now.
-
- Aug 27, 2014
-
-
Raymond Toy authored
int.
-
- Jan 07, 2014
-
-
Raymond Toy authored
Under some conditions (see trac.65 in tests/trac.lisp) r is packed into the same location as either x or y, and we were overwriting x (or y) with the result before we had finished with the values in x (or y). With this, trac.65 passes on sparc now.
-
- Nov 04, 2011
-
-
Raymond Toy authored
-
- Sep 25, 2011
-
-
Raymond Toy authored
entries with just the file path, removing the revision number, date, author and state. The actual information is now computed during compilation and stored in the fasl itself. (See ticket:48.)
-
- Nov 11, 2010
-
-
rtoy authored
part of the result was the real, and the imaginary part of the result was garbage.
-
- Mar 19, 2010
-
-
rtoy authored
boot-2010-02-1 as the bootstrap file. You should probably also use the new -P option for build.sh to generate and update the po files while building.
-
- Jun 15, 2009
-
-
rtoy authored
o Sparc has a vop for complex conjugate, so we can disable the deftransform. o Both sparc and x86 have a vop to do float - complex, so disable that transform too. compiler/sparc/float.lisp: o Fix the float-complex vop to do the right thing wrt contagion. o Remove some old commented out vop for complex*complex and complex/complex.
-
rtoy authored
and complex-real didn't compute the imaginary part correctly; we need to add (or subtract) 0 to get the correct signed zero. (+ #c(1d0 -0d0) 1d0) -> #c(2d0 0d0), not #c(2d0 -0d0) code/sparc-svr4-vm.lisp: o Define *FP-CONSTANT-0F0* and *FP-CONSTANT-0D0*, floating point zeroes. compiler/generic/new-genesis.lisp: o Initialize *FP-CONSTANT-0F0* and *FP-CONSTANT-0D0* during genesis. compiler/sparc/parms.lisp: o Add *FP-CONSTANT-0F0* and *FP-CONSTANT-0D0* to the static symbols so vops can access them easily. For bootstrapping purposes, we steal the spare-9 and sparc-8 symbols. compiler/sparc/float.lisp: o Update vops for complex + float and complex - float. Need to add (or subtract) 0 to the imaginary part to get the correct signed zero. o Update vop for float+complex as above.
-
- Jun 11, 2009
-
-
rtoy authored
unicode-utf16-extfmt-2009-06-11.
-
- Nov 12, 2008
-
-
rtoy authored
sse2-packed-2008-11-12).
-
- Jul 10, 2008
-
-
rtoy authored
(defun zot (x) (declare (type (INTEGER -536871936 536871934) x) (optimize (speed 3))) (kernel::%double-float x)) produces a compiler note being unable to optimize due to type uncertainty x. This is confusing because the vop does get used, and we get a nice single intruction. This is caused by the unsigned-byte 32 deftransform for %single-float/%double-float Work around the issue by o adding new deftransform to convert %single-float/%double-float to %%single-float/%%double-float, o adjusting the deftransform for unsigned 32-bit to call %%foo, o adding a deftransform to always convert %foo to %%foo for signed 32-bit arg, o changing the vop translation to %%foo instead of %foo.
-
- Jun 24, 2008
-
-
rtoy authored
(unsigned-byte 32) numbers to floats using a handful of instructions. The single-float deftransform was tested for all possible values 32-bit values and produces the correct result in all cases. This could easily be extended to numbers as large as 62 bits long for double floats (46 for single). Should we?
-
- Apr 22, 2008
-
-
rtoy authored
code/sparc-svr4-vm.lisp, which is probably where it all belonged originally. This gets rid of some errors (about the alien struct FPQ being undefined) during sparc cross-compiles.
-
- May 29, 2007
-
-
rtoy authored
-
- Apr 19, 2007
-
-
rtoy authored
COMPLEX-DOUBLE-FLOAT-VALUE vops. This reduces the number of moves needed. o Fix typo.
-
- 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.
-
- Mar 27, 2007
- Mar 26, 2007
-
-
rtoy authored
MAKE/DOUBLE-DOUBLE-FLOAT, so turn it off. Turn it off for MAKE-COMPLEX-DOUBLE-DOUBLE-FLOAT and COMPLEX-DOUBLE-DOUBLE-FLOAT-VALUE too, just in case.
-
- Mar 20, 2007
-
-
rtoy authored
exception. This was happening when the faulting FP instruction was in the delay slot of a branch. The PC was incremented to the branch target, and hence had the wrong information. The FPQ structure has the right information. code/sparc-svr4-vm.lisp: o Add FPQ structure so we can access the information about the faulting FP instruction. compiler/sparc/float.lisp: o Extract the correct information about the faulting FP instruction instead of from the PC.
-
- Nov 16, 2006
-
-
rtoy authored
-
- Jul 01, 2006
-
-
rtoy authored
forgot to tell the compiler to use is it as the move-argument function.
-
- 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).
-
- Mar 29, 2004
-
-
rtoy authored
consistent in which argument is selected. Previously, they were inconsistent which causes problems when the argument types are equal, but of different types. (Based on a patch Alexey Dejneka did for SBCL for the same issue.)
-
- Oct 27, 2003
-
-
toy authored
result. (May have missed some cases.)
-
- Oct 20, 2003
-
-
toy authored
instructions, when possible. Also convert some shift instructions to signx or clruw synthetic instructions.
-
- 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.
-
- Jul 09, 2003
-
-
toy authored
the hi part of a double from the double-stack.
-
- 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 01, 2003
-
-
toy authored
floating-point instruction from a sigcontext.
-
- Nov 26, 2002
- Oct 07, 2002
-
-
toy authored
o max/min should check that a real number is given, even for the single-arg case instead of just returning the arg.
-
- 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.
-
- Sep 24, 2001
-
-
toy authored
causing unexpected NaN, infinities, and loss of precision. o Get rid of the temp TN by recycling a register.
-
- May 10, 2001
-
-
toy authored
in the wrong spot.
-
- Jan 23, 2001
-
-
dtc authored
o Add defun's for sparc::%min and sparc::%max which are needed for byte-compiled code. (Problem noted by Eric Marsden). o Remove some junk code.
-
- Sep 26, 2000
-
-
dtc authored
-