xref: /freebsd/lib/msun/src/s_roundl.c (revision 0dd5a5603e7a33d976f8e6015620bbc79839c609)
107f3bc5bSDavid Schultz /*-
2*4d846d26SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause
35e53a4f9SPedro F. Giffuni  *
407f3bc5bSDavid Schultz  * Copyright (c) 2003, Steven G. Kargl
507f3bc5bSDavid Schultz  * All rights reserved.
607f3bc5bSDavid Schultz  *
707f3bc5bSDavid Schultz  * Redistribution and use in source and binary forms, with or without
807f3bc5bSDavid Schultz  * modification, are permitted provided that the following conditions
907f3bc5bSDavid Schultz  * are met:
1007f3bc5bSDavid Schultz  * 1. Redistributions of source code must retain the above copyright
1107f3bc5bSDavid Schultz  *    notice unmodified, this list of conditions, and the following
1207f3bc5bSDavid Schultz  *    disclaimer.
1307f3bc5bSDavid Schultz  * 2. Redistributions in binary form must reproduce the above copyright
1407f3bc5bSDavid Schultz  *    notice, this list of conditions and the following disclaimer in the
1507f3bc5bSDavid Schultz  *    documentation and/or other materials provided with the distribution.
1607f3bc5bSDavid Schultz  *
1707f3bc5bSDavid Schultz  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
1807f3bc5bSDavid Schultz  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
1907f3bc5bSDavid Schultz  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
2007f3bc5bSDavid Schultz  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
2107f3bc5bSDavid Schultz  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
2207f3bc5bSDavid Schultz  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2307f3bc5bSDavid Schultz  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2407f3bc5bSDavid Schultz  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2507f3bc5bSDavid Schultz  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
2607f3bc5bSDavid Schultz  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2707f3bc5bSDavid Schultz  */
2807f3bc5bSDavid Schultz 
29db89cf8eSSteve Kargl #include <float.h>
30db89cf8eSSteve Kargl #ifdef __i386__
31db89cf8eSSteve Kargl #include <ieeefp.h>
32db89cf8eSSteve Kargl #endif
33db89cf8eSSteve Kargl 
34db89cf8eSSteve Kargl #include "fpmath.h"
35db89cf8eSSteve Kargl #include "math.h"
36db89cf8eSSteve Kargl #include "math_private.h"
3707f3bc5bSDavid Schultz 
3807f3bc5bSDavid Schultz long double
roundl(long double x)3907f3bc5bSDavid Schultz roundl(long double x)
4007f3bc5bSDavid Schultz {
4107f3bc5bSDavid Schultz 	long double t;
42db89cf8eSSteve Kargl 	uint16_t hx;
4307f3bc5bSDavid Schultz 
44db89cf8eSSteve Kargl 	GET_LDBL_EXPSIGN(hx, x);
45db89cf8eSSteve Kargl 	if ((hx & 0x7fff) == 0x7fff)
46db89cf8eSSteve Kargl 		return (x + x);
4707f3bc5bSDavid Schultz 
48db89cf8eSSteve Kargl 	ENTERI();
49db89cf8eSSteve Kargl 
50db89cf8eSSteve Kargl 	if (!(hx & 0x8000)) {
515792e54aSBruce Evans 		t = floorl(x);
52db89cf8eSSteve Kargl 		if (t - x <= -0.5L)
53db89cf8eSSteve Kargl 			t += 1;
54db89cf8eSSteve Kargl 		RETURNI(t);
5507f3bc5bSDavid Schultz 	} else {
565792e54aSBruce Evans 		t = floorl(-x);
57db89cf8eSSteve Kargl 		if (t + x <= -0.5L)
58db89cf8eSSteve Kargl 			t += 1;
59db89cf8eSSteve Kargl 		RETURNI(-t);
6007f3bc5bSDavid Schultz 	}
6107f3bc5bSDavid Schultz }
62