xref: /dflybsd-src/contrib/openbsd_libm/src/s_lrintf.c (revision 4382f29d99a100bd77a81697c2f699c11f6a472a)
1*05a0b428SJohn Marino /*	$OpenBSD: s_lrintf.c,v 1.5 2011/04/20 21:32:59 martynas Exp $	*/
2*05a0b428SJohn Marino /* $NetBSD: lrintf.c,v 1.3 2004/10/13 15:18:32 drochner Exp $ */
3*05a0b428SJohn Marino 
4*05a0b428SJohn Marino /*-
5*05a0b428SJohn Marino  * Copyright (c) 2004
6*05a0b428SJohn Marino  *	Matthias Drochner. All rights reserved.
7*05a0b428SJohn Marino  *
8*05a0b428SJohn Marino  * Redistribution and use in source and binary forms, with or without
9*05a0b428SJohn Marino  * modification, are permitted provided that the following conditions
10*05a0b428SJohn Marino  * are met:
11*05a0b428SJohn Marino  * 1. Redistributions of source code must retain the above copyright
12*05a0b428SJohn Marino  *    notice, this list of conditions and the following disclaimer.
13*05a0b428SJohn Marino  * 2. Redistributions in binary form must reproduce the above copyright
14*05a0b428SJohn Marino  *    notice, this list of conditions and the following disclaimer in the
15*05a0b428SJohn Marino  *    documentation and/or other materials provided with the distribution.
16*05a0b428SJohn Marino  *
17*05a0b428SJohn Marino  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18*05a0b428SJohn Marino  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19*05a0b428SJohn Marino  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20*05a0b428SJohn Marino  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21*05a0b428SJohn Marino  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22*05a0b428SJohn Marino  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23*05a0b428SJohn Marino  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24*05a0b428SJohn Marino  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25*05a0b428SJohn Marino  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26*05a0b428SJohn Marino  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27*05a0b428SJohn Marino  * SUCH DAMAGE.
28*05a0b428SJohn Marino  */
29*05a0b428SJohn Marino 
30*05a0b428SJohn Marino #include <sys/types.h>
31*05a0b428SJohn Marino #include <sys/limits.h>
32*05a0b428SJohn Marino #include <math.h>
33*05a0b428SJohn Marino #include <ieeefp.h>
34*05a0b428SJohn Marino #include <machine/ieee.h>
35*05a0b428SJohn Marino #include "math_private.h"
36*05a0b428SJohn Marino 
37*05a0b428SJohn Marino #ifndef LRINTNAME
38*05a0b428SJohn Marino #define LRINTNAME lrintf
39*05a0b428SJohn Marino #define RESTYPE long int
40*05a0b428SJohn Marino #define RESTYPE_MIN LONG_MIN
41*05a0b428SJohn Marino #define RESTYPE_MAX LONG_MAX
42*05a0b428SJohn Marino #endif
43*05a0b428SJohn Marino 
44*05a0b428SJohn Marino #define RESTYPE_BITS (sizeof(RESTYPE) * 8)
45*05a0b428SJohn Marino 
46*05a0b428SJohn Marino static const float
47*05a0b428SJohn Marino TWO23[2]={
48*05a0b428SJohn Marino   8.3886080000e+06, /* 0x4b000000 */
49*05a0b428SJohn Marino  -8.3886080000e+06, /* 0xcb000000 */
50*05a0b428SJohn Marino };
51*05a0b428SJohn Marino 
52*05a0b428SJohn Marino RESTYPE
LRINTNAME(float x)53*05a0b428SJohn Marino LRINTNAME(float x)
54*05a0b428SJohn Marino {
55*05a0b428SJohn Marino 	u_int32_t i0;
56*05a0b428SJohn Marino 	int e, s, shift;
57*05a0b428SJohn Marino 	RESTYPE res;
58*05a0b428SJohn Marino 
59*05a0b428SJohn Marino 	GET_FLOAT_WORD(i0, x);
60*05a0b428SJohn Marino 	e = i0 >> SNG_FRACBITS;
61*05a0b428SJohn Marino 	s = e >> SNG_EXPBITS;
62*05a0b428SJohn Marino 	e = (e & 0xff) - SNG_EXP_BIAS;
63*05a0b428SJohn Marino 
64*05a0b428SJohn Marino 	/* 1.0 x 2^31 (or 2^63) is already too large */
65*05a0b428SJohn Marino 	if (e >= (int)RESTYPE_BITS - 1)
66*05a0b428SJohn Marino 		return (s ? RESTYPE_MIN : RESTYPE_MAX); /* ??? unspecified */
67*05a0b428SJohn Marino 
68*05a0b428SJohn Marino 	/* >= 2^23 is already an exact integer */
69*05a0b428SJohn Marino 	if (e < SNG_FRACBITS) {
70*05a0b428SJohn Marino 		volatile float t = x;	/* clip extra precision */
71*05a0b428SJohn Marino 		/* round, using current direction */
72*05a0b428SJohn Marino 		t += TWO23[s];
73*05a0b428SJohn Marino 		t -= TWO23[s];
74*05a0b428SJohn Marino 		x = t;
75*05a0b428SJohn Marino 	}
76*05a0b428SJohn Marino 
77*05a0b428SJohn Marino 	GET_FLOAT_WORD(i0, x);
78*05a0b428SJohn Marino 	e = ((i0 >> SNG_FRACBITS) & 0xff) - SNG_EXP_BIAS;
79*05a0b428SJohn Marino 	i0 &= 0x7fffff;
80*05a0b428SJohn Marino 	i0 |= (1 << SNG_FRACBITS);
81*05a0b428SJohn Marino 
82*05a0b428SJohn Marino 	if (e < 0)
83*05a0b428SJohn Marino 		return (0);
84*05a0b428SJohn Marino 
85*05a0b428SJohn Marino 	shift = e - SNG_FRACBITS;
86*05a0b428SJohn Marino 	if (shift >=0)
87*05a0b428SJohn Marino 		res = (shift < RESTYPE_BITS ? (RESTYPE)i0 << shift : 0);
88*05a0b428SJohn Marino 	else
89*05a0b428SJohn Marino 		res = (shift > -RESTYPE_BITS ? (RESTYPE)i0 >> -shift : 0);
90*05a0b428SJohn Marino 
91*05a0b428SJohn Marino 	return (s ? -res : res);
92*05a0b428SJohn Marino }
93