Subversion Repositories Kolibri OS

Rev

Rev 4872 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4349 Serge 1
/*
2
 * ====================================================
3
 * x87 FP implementation contributed to Newlib by
4
 * Dave Korn, November 2007.  This file is placed in the
5
 * public domain.  Permission to use, copy, modify, and
6
 * distribute this software is freely granted.
7
 * ====================================================
8
 */
9
 
10
#if defined(__GNUC__) && !defined(_SOFT_FLOAT)
11
 
12
#include 
13
 
14
/*
15
FUNCTION
16
<>, <>, <>---round and convert to long integer
17
INDEX
18
	lrint
19
INDEX
20
	lrintf
21
INDEX
22
	lrintl
23
 
24
ANSI_SYNOPSIS
25
	#include 
26
	long int lrint(double x);
27
        long int lrintf(float x);
28
        long int lrintl(long double x);
29
 
30
TRAD_SYNOPSIS
31
	ANSI-only.
32
 
33
DESCRIPTION
34
The <>, <> and <> functions round <[x]> to the nearest integer value,
35
according to the current rounding direction. If the rounded value is outside the
36
range of the return type, the numeric result is unspecified. A range error may
37
occur if the magnitude of <[x]> is too large.
38
 
39
RETURNS
40
These functions return the rounded integer value of <[x]>.
41
<>, <> and <> return the result as a long integer.
42
 
43
PORTABILITY
44
<>, <>, and <> are ANSI.
45
<> and <> are available on all platforms.
46
<> is only available on i386 platforms when hardware
47
floating point support is available and when compiling with GCC.
48
 
49
*/
50
 
51
/*
52
 * Fast math version of lrint(x)
53
 * Return x rounded to integral value according to the prevailing
54
 * rounding mode.
55
 * Method:
56
 *	Using inline x87 asms.
57
 * Exception:
58
 *	Governed by x87 FPCR.
59
 */
60
 
61
long int _f_lrint (double x)
62
{
63
  long int _result;
64
  asm ("fistpl %0" : "=m" (_result) : "t" (x) : "st");
65
  return _result;
66
}
67
 
68
#endif  /* !__GNUC__ || _SOFT_FLOAT */
69