Skip to content
Snippets Groups Projects
  1. Nov 26, 2014
    • Raymond Toy's avatar
      Use new log2 function in C · 0a522bd0
      Raymond Toy authored
       * code/exports.lisp:
         * Export %LOG2.
       * code/irrat.lisp:
         * Define %log2
         * Use %log2 instead of log2. (This needs work)
       * compiler/float-tran.lisp:
         * Use %log2 instead of log2 in the deftransforms.
      0a522bd0
  2. Oct 02, 2014
    • Raymond Toy's avatar
      Micro-optimize SCALE-FLOAT to use multiplication when possible. · 8f5f6abc
      Raymond Toy authored
      If the exponent (second arg of SCALE-FLOAT) is such that 2^exponent
      can be represented as a float (single or double), we can implement
      SCALE-FLOAT using a multiplication by 2^exponent, since multiplication
      by 2^exponent is exact.
      
       * src/compiler/float-tran.lisp:
         * Update deftransforms for SCALE-FLOAT to do a multiply when
           possible. 
       * tests/float-tran.lisp:
         * Add tests to make sure the deftransforms for SCALE-FLOAT are
           applied appropriately.
      8f5f6abc
  3. Sep 25, 2014
    • Raymond Toy's avatar
      Fix type derivation of the exponent for DECODE-FLOAT. · bcc8cd7d
      Raymond Toy authored
      The minimum exponent is from 0, it's from least-positive float.
      
       * src/compiler/float-tran.lisp:
         * Derive the correct minimum exponent by using the exponent from
           the least-positive float value of the appropriate type.
       * tests/float-tran.lisp:
         * Add tests for the derived exponent type for DECODE-FLOAT.
      
      Conflicts:
      	tests/float-tran.lisp
      bcc8cd7d
    • Raymond Toy's avatar
      Fix error in type derivation for the sign in DECODE-FLOAT. · b51c9978
      Raymond Toy authored
      Type derivation of the sign of (DECODE-FLOAT X) returned the incorrect
      value when x was declared to be of type (DOUBLE-FLOAT (0d0)).
      
       * src/compiler/float-tran.lisp
         * Fix type derivation
       * tests/float-tran.lisp
         * New file for tests of DECODE-FLOAT-SIGN-DERIVE-TYPE-AUX.
       * tests/float.lisp
         * New file to test that decode-float is compiled correctly.
      b51c9978
    • Raymond Toy's avatar
      Fix type derivation of the exponent for DECODE-FLOAT. · 6f288c11
      Raymond Toy authored
      The minimum exponent is from 0, it's from least-positive float.
      
       * src/compiler/float-tran.lisp:
         * Derive the correct minimum exponent by using the exponent from
           the least-positive float value of the appropriate type.
       * tests/float-tran.lisp:
         * Add tests for the derived exponent type for DECODE-FLOAT.
      6f288c11
  4. Sep 21, 2014
    • Raymond Toy's avatar
      Add deftransform to convert (log x 2) and (log x 10) to log2 and · db25e3e0
      Raymond Toy authored
      %log10. This better than using the definition (/ (log x) (log base)).
      This also allows exact answer for 2^n and 10^n for appropriate n.
      
      
       * src/compiler/float-tran.lisp:
         * Add deftransforms to convert (log x 2) and (log x 10) to
           kernel::log2 and kernel:%log10 
       * tests/float-tran.lisp:
         * Add tests to check the transforms are done, or not done, as
           appropriate.
      db25e3e0
  5. Sep 20, 2014
    • Raymond Toy's avatar
      Fix error in type derivation for the sign in DECODE-FLOAT. · d03e1784
      Raymond Toy authored
      Type derivation of the sign of (DECODE-FLOAT X) returned the incorrect
      value when x was declared to be of type (DOUBLE-FLOAT (0d0)).
      
       * src/compiler/float-tran.lisp
         * Fix type derivation
       * tests/float-tran.lisp
         * New file for tests of DECODE-FLOAT-SIGN-DERIVE-TYPE-AUX.
       * tests/float.lisp
         * New file to test that decode-float is compiled correctly.
      d03e1784
  6. Aug 27, 2014
  7. Jul 26, 2014
  8. Jul 24, 2014
  9. Mar 08, 2014
    • Raymond Toy's avatar
      Revert change for ticket 92. · 508b6594
      Raymond Toy authored
      It's incorrect. We really want log(-0) to be -inf + i*pi. It's needed
      to get the correct values on the branch cuts of the special functions
      from the definitions.  
      
      Update trac test to test for this.
      508b6594
  10. Feb 09, 2014
    • Raymond Toy's avatar
      Fix ticket:92 · 8970ad11
      Raymond Toy authored
      Type derivation for log fixed to be consistent with the actual
      returned values.
      
       * src/compiler/float-tran.lisp:
         * Update {{{LOG-DERIVE-TYPE-AUX-1}}} to compute the correct type.
      
       * tests/trac.lisp:
         * Add test for trac ticket:92
      8970ad11
  11. Jan 03, 2014
  12. Dec 21, 2013
  13. Dec 15, 2013
  14. Dec 11, 2013
  15. Dec 08, 2013
  16. Dec 07, 2013
  17. Oct 27, 2013
  18. Oct 22, 2013
    • Raymond Toy's avatar
      Enable micro-optimization of fast-unary-ftruncate and · 07e2d61f
      Raymond Toy authored
      double-float-bits for x86/sse2. This gives x86 the same
      micro-optimizations that were available for sparc and ppc.
      
      
       o code/kernel.lisp:
         o Enable fast double-float-bits using the vop instead of calling
           double-float-high-bits/double-float-low-bits. 
      
       o compiler/float-tran.lisp:
         o Make fast-unary-ftruncate known to compiler and enable optimizer
           for it. 
         o Make double-float-bits known to compiler
      
       o compiler/x86/float-sse2.lisp:
         o Implement fast-unary-ftruncate for singles and doubles.
         o Implement double-float-bits.
      07e2d61f
  19. Feb 22, 2013
    • Raymond Toy's avatar
      Clean up one- and two-arg-derive-type. · 17e30810
      Raymond Toy authored
      srctran.lisp::
       * The optional convert-type arg is always true, so remove it and
         update the local functions to convert always.
       * Clean up some comments as well.
      
      float-tran.lisp::
       * Fix up one place where we were supplying a value for the optional
         convert-type arg.
      17e30810
  20. Dec 23, 2012
  21. Aug 19, 2012
  22. Nov 04, 2011
  23. Sep 25, 2011
  24. Aug 18, 2010
  25. Aug 17, 2010
  26. Apr 20, 2010
  27. Apr 19, 2010
  28. Mar 19, 2010
  29. Feb 05, 2010
    • rtoy's avatar
      Implement a fast fround for single and double floats. This is enabled · d611150a
      rtoy authored
      everywhere except for x87 builds since there is a possible roundoff
      issue due to the 80-bit registers for x87.
      
      This is some 2-3 times faster than the existing fround function.
      
      code/float.lisp:
      o Implementations of %unary-fround/single-float,
        %unary-fround/double-float, and %unary-fround.  Declare the first
        two as inline too.
      
      compiler/float-tran.lisp:
      o Tell compiler about %unary-fround.
      o Transform fround to a call to %unary-fround.
      o Transform %unary-fround to special versions for single and double
        float arguments.
      d611150a
  30. Nov 02, 2009
    • rtoy's avatar
      Revert previous changes. They were supposed to go on · d01310f2
      rtoy authored
      amd64-dd-branch.
      d01310f2
    • rtoy's avatar
      This large checkin brings the amd64 port up-to-date with the current · 2bafb654
      rtoy authored
      sources.  No real attempt has been made to make it work, but the
      cross-compile does create a kernel.core, and the C code compiles (on
      openSuSE 10.3).  The resulting kernel.core does not yet work.
      
      Use cross-x86-amd64.lisp as the cross-compile script.  This is
      intended to be cross-compiled using the 20a release for Linux, and
      only supports x87.  The sse2 support has not be ported yet.
      
      tools/cross-scripts/cross-x86-amd64.lisp:
      o Update cross-compile with some missing constants, and frob new
        symbols.
      
      tools/clean-target.sh:
      o Remove amd64f files too.
      
      code/pred.lisp:
      o Define predicates for double-doubles for bootstrapping to work
        around recursive known function problems with these predicates.
      
      code/sap.lisp:
      o Define int-sap with (unsigned-byte 64) type declaration.  (May not
        be needed?)
      
      code/unix-glibc2.lisp:
      o Build fails defining map_failed to (int-sap -1).  Just hard-wire to
        0 for now so we can build.
      
      compiler/float-tran.lisp:
      o Add missing conditional for %complex-double-double-float.
      
      compiler/amd64/float.lisp:
      o Merge double-double support for amd64.  Not really tested yet.
      
      compiler/amd64/parms.lisp:
      o Update to match x86 build.  In particular, get the space address
        correct and update the static symbols.
      
      compiler/amd64/type-vops.lisp:
      o DYLAN-FUNCTION-HEADER-TYPE no longer exists.
      
      compiler/amd64/vm.lisp:
      o Add double-double storage classes and register definitions.
      
      lisp/Config.amd64:
      o Bring in line with Config.x86 and friends.
      
      lisp/Linux-os.c:
      o Bring amd64 code up-to-date with x86/linux code.
      
      lisp/Linux-os.h
      o Need to include sys/ucontext.h to get ucontext defined.  (Why?)
      o Also define __USE_GNU so we get the register offsets in the ucontext
        defined.  (Why?)
      
      lisp/amd64-arch.c:
      o Change struct sigcontext to os_context_t.
      o Use SC_PC instead of context->sc_pc.
      o Merge some changes in from x86 version, like SC_EFLAGS.  May need
        more work.
      
      lisp/amd64-assem.s:
      o Use rbx instead of ebx for jmp.
      
      lisp/amd64-lispregs.h:
      o Define SC_REG, SC_PC, SC_SP using the new x86 style.
      
      lisp/backtrace.c:
      o Remove inline assembly for now until I figure out what the amd64
        version should be.
      
      lisp/gencgc.c:
      o Conditionalize out weak hash table support for now.
      
      lisp/gencgc.h:
      o Set PAGE_SIZE for amd64.  (Is 4096 right?)
      
      lisp/globals.h:
      o Export current_dynamic_space_free_pointer and
        current_auto_gc_trigger like for x86.
      2bafb654
  31. Aug 11, 2009
    • rtoy's avatar
      Some symbol cleanups. · 36b8abb9
      rtoy authored
      code/exports.lisp:
      o Import STREAM:SET-SYSTEM-EXTERNAL-FORMAT into the EXT package.
      o Define and export %sin-quick, %cos-quick, and %tan-quick only for
        x87 builds.
      
      compiler/float-tran.lisp:
      o Only apply defknowns and deftransforms for %sin-quick, %cos-quick,
        and %tan-quick for x87 builds.
      36b8abb9
  32. Jun 16, 2009
    • rtoy's avatar
      compiler/x86/float-sse2.lisp: · e220506c
      rtoy authored
      o Add vop for conjugate of complex single and double floats.
      
      compiler/float-tran.lisp:
      o Disable deftransform for conjugate.  All platforms with complex fp
        vops support conjugate.
      e220506c
  33. 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
Loading