Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/mingw/mingwex/math/llroundl.c')
-rw-r--r--winsup/mingw/mingwex/math/llroundl.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/winsup/mingw/mingwex/math/llroundl.c b/winsup/mingw/mingwex/math/llroundl.c
new file mode 100644
index 000000000..ad334fb2c
--- /dev/null
+++ b/winsup/mingw/mingwex/math/llroundl.c
@@ -0,0 +1,22 @@
+#include <fenv.h>
+#include <math.h>
+
+long long
+llroundl (long double x) {
+ long long retval;
+ unsigned short saved_cw, _cw;
+ __asm__ (
+ "fnstcw %0;" : "=m" (saved_cw)
+ ); /* save control word */
+ _cw = ~(FE_TONEAREST | FE_DOWNWARD | FE_UPWARD | FE_TOWARDZERO)
+ | (x > 0.0 ? FE_UPWARD : FE_DOWNWARD); /* round away from zero */
+ __asm__ (
+ "fldcw %0;" : : "m" (_cw)
+ ); /* load the rounding control */
+ __asm__ __volatile__ (
+ "fistpll %0" : "=m" (retval) : "t" (x) : "st");
+ __asm__ (
+ "fldcw %0;" : : "m" (saved_cw)
+ ); /* restore control word */
+ return retval;
+}