1. 19 10月, 2012 1 次提交
  2. 18 3月, 2012 4 次提交
  3. 17 3月, 2012 1 次提交
    • N
      fix i386 fegetround and make fesetround faster · 88cfaf8a
      nsz 提交于
      Note that the new fesetround has slightly different semantics:
      
      Storing the floating-point environment with fnstenv makes the
      next fldenv (or fldcw) "non-signaling", so unmasked and pending
      exceptions does not invoke the exception handler.
      (These are rare since exceptions are handled immediately and by
      default all exceptions are masked anyway. But if one manually
      unmasks an exception in the control word then either sets the
      corresponding exception flag in the status word or the execution
      of an exception raising floating-point operation gets interrupted
      then it may happen).
      So the old implementation did not trap in some rare cases
      where the new implementation traps.
      
      However POSIX does not specify anything like the x87 exception
      handling traps and the fnstenv/fldenv pair is significantly slower
      than the fnstcw/fldcw pair (new code is about 5x faster here and
      it's dominated by the function call overhead).
      88cfaf8a
  4. 29 6月, 2011 1 次提交
  5. 14 6月, 2011 2 次提交
  6. 13 6月, 2011 1 次提交
    • R
      floating point environment, untested · b09b7890
      Rich Felker 提交于
      at present the i386 code does not support sse floating point, which is
      not part of the standard i386 abi. while it may be desirable to
      support it later, doing so will reduce performance and require some
      tricks to probe if sse support is present.
      
      this first commit is i386-only, but it should be trivial to port the
      asm to x86_64.
      b09b7890