Skip to content
Snippets Groups Projects
  1. May 13, 2016
    • Raymond Toy's avatar
      Fix typo in value. · e50d75bc
      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.
      e50d75bc
  2. Aug 27, 2014
  3. Jan 07, 2014
    • Raymond Toy's avatar
      Fix complex multiply vop. · 7b313ca1
      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.
      7b313ca1
  4. Nov 04, 2011
  5. Sep 25, 2011
  6. Nov 11, 2010
  7. Mar 19, 2010
  8. Jun 15, 2009
    • rtoy's avatar
      compiler/float-tran.lisp: · 5a98a234
      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.
      5a98a234
    • rtoy's avatar
      Fix issue with complex contagion on sparc. The vops for complex+real · f1399c10
      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.
      f1399c10
  9. Jun 11, 2009
  10. Nov 12, 2008
  11. Jul 10, 2008
    • rtoy's avatar
      Fix minor issue: · f644ad38
      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.
      f644ad38
  12. Jun 24, 2008
    • rtoy's avatar
      Add deftransform for %single-float and %double-float so we can convert · 907b7746
      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?
      907b7746
  13. Apr 22, 2008
  14. May 29, 2007
  15. Apr 19, 2007
  16. Apr 12, 2007
  17. Mar 27, 2007
  18. Mar 26, 2007
  19. Mar 20, 2007
    • rtoy's avatar
      Was not getting the right instruction for the faulting floating-point · 9fde59c0
      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.
      9fde59c0
  20. Nov 16, 2006
  21. Jul 01, 2006
  22. Jun 30, 2006
  23. Mar 29, 2004
    • rtoy's avatar
      Make the def-source-transform and defoptimizer for max and min · 8b703e12
      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.)
      8b703e12
  24. Oct 27, 2003
  25. Oct 20, 2003
  26. Sep 05, 2003
    • toy's avatar
      compiler/float-tran.lisp: · c640d0f2
      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.
      c640d0f2
  27. Jul 09, 2003
  28. Jul 02, 2003
  29. Apr 01, 2003
  30. Nov 26, 2002
  31. Oct 07, 2002
  32. Mar 08, 2002
    • toy's avatar
      Micro optimization for Sparc. The ftruncate code using · 95f890d7
      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.
      95f890d7
  33. Sep 24, 2001
  34. May 10, 2001
  35. Jan 23, 2001
    • dtc's avatar
      From Raymond Toy: · 23ae46d5
      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.
      23ae46d5
  36. Sep 26, 2000
Loading