-
- Downloads
* Change the way the x87 precision control is managed. While in Lisp,
the precision control will always be set to double precision. For the duration of calls into C, the precision control will be set to the ABI default. On Linux and Darwin this is double extended precision. On all other platforms the precision control is left as double precision. The specious FLOAT-ACCURACY declaration has been eliminated. * Shorten the precision control field to 24-bits by disposing of the unexamined high order eight bits of the status word. This compacts the code generated around floating point mode changes and reduces consing. * Eliminate unnecessary uses of FLDENV and FSTENV. We can substitute a use of FSTENV with FSTSW in FLOATING-POINT-MODES. This reduces the number of cycles to access the relevant mode bits by a factor of thirty. We cannot eliminate FLDENV in SET-FLOATING-POINT-MODES, but the common case does not require an update to the status word. A fast path has been added to the VOP that improves the execution time by at least a factor of fifteen. * Remove the precision control option to SET-FLOATING-POINT-MODES. It is the responsibility of the compiler to generating code that yields correctly rounded results in double and single precision.
Showing
- bootfiles/19d/boot-2007-11-2.lisp 8 additions, 0 deletionsbootfiles/19d/boot-2007-11-2.lisp
- code/env-access.lisp 3 additions, 5 deletionscode/env-access.lisp
- code/float-trap.lisp 3 additions, 32 deletionscode/float-trap.lisp
- code/lispinit.lisp 2 additions, 3 deletionscode/lispinit.lisp
- code/unix-glibc2.lisp 11 additions, 15 deletionscode/unix-glibc2.lisp
- compiler/macros.lisp 2 additions, 2 deletionscompiler/macros.lisp
- compiler/proclaim.lisp 4 additions, 16 deletionscompiler/proclaim.lisp
- compiler/x86/c-call.lisp 10 additions, 38 deletionscompiler/x86/c-call.lisp
- compiler/x86/float.lisp 28 additions, 39 deletionscompiler/x86/float.lisp
- compiler/x86/parms.lisp 1 addition, 7 deletionscompiler/x86/parms.lisp
Loading
Please register or sign in to comment