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

round.c « math « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9d8e949e463dfff614c5fd24fb9771430243a0d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include <fenv.h>

double
round (double x) {
  double 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__ (
	"frndint;"
	: "=t" (retval)
	: "0" (x)
	); /* do the rounding */
  __asm__ (
	"fldcw %0;"
	:
	: "m" (saved_cw)
	); /* restore control word */
  return retval;
}