blob: ec31b47264e9344e1e07c0324cee56716f6caf51 [file] [log] [blame]
Matt Turnerdd0d3a22015-03-10 17:55:21 -07001/*
2 * Copyright © 2015 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
Matt Turner594fc0f2015-06-25 16:47:52 -070024#ifndef _ROUNDING_H
25#define _ROUNDING_H
26
Matt Turnerdd0d3a22015-03-10 17:55:21 -070027#include <math.h>
Matt Turner680de242015-06-29 09:38:34 -070028#include <limits.h>
29
30#ifdef __x86_64__
31#include <xmmintrin.h>
32#include <emmintrin.h>
33#endif
Matt Turnerdd0d3a22015-03-10 17:55:21 -070034
Matt Turner036e3472015-03-18 14:23:41 -070035#ifdef __SSE4_1__
36#include <smmintrin.h>
37#endif
38
Matt Turnerdd0d3a22015-03-10 17:55:21 -070039/* The C standard library has functions round()/rint()/nearbyint() that round
40 * their arguments according to the rounding mode set in the floating-point
41 * control register. While there are trunc()/ceil()/floor() functions that do
42 * a specific operation without modifying the rounding mode, there is no
43 * roundeven() in any version of C.
44 *
45 * Technical Specification 18661 (ISO/IEC TS 18661-1:2014) adds roundeven(),
46 * but it's unfortunately not implemented by glibc.
47 *
48 * This implementation differs in that it does not raise the inexact exception.
49 *
50 * We use rint() to implement these functions, with the assumption that the
51 * floating-point rounding mode has not been changed from the default Round
52 * to Nearest.
53 */
54
55/**
56 * \brief Rounds \c x to the nearest integer, with ties to the even integer.
57 */
58static inline float
59_mesa_roundevenf(float x)
60{
Matt Turner036e3472015-03-18 14:23:41 -070061#ifdef __SSE4_1__
62 float ret;
63 __m128 m = _mm_load_ss(&x);
64 m = _mm_round_ss(m, m, _MM_FROUND_CUR_DIRECTION | _MM_FROUND_NO_EXC);
65 _mm_store_ss(&ret, m);
66 return ret;
67#else
Matt Turnerdd0d3a22015-03-10 17:55:21 -070068 return rintf(x);
Matt Turner036e3472015-03-18 14:23:41 -070069#endif
Matt Turnerdd0d3a22015-03-10 17:55:21 -070070}
71
72/**
73 * \brief Rounds \c x to the nearest integer, with ties to the even integer.
74 */
75static inline double
76_mesa_roundeven(double x)
77{
Matt Turner036e3472015-03-18 14:23:41 -070078#ifdef __SSE4_1__
79 double ret;
80 __m128d m = _mm_load_sd(&x);
81 m = _mm_round_sd(m, m, _MM_FROUND_CUR_DIRECTION | _MM_FROUND_NO_EXC);
82 _mm_store_sd(&ret, m);
83 return ret;
84#else
Matt Turnerdd0d3a22015-03-10 17:55:21 -070085 return rint(x);
Matt Turner036e3472015-03-18 14:23:41 -070086#endif
Matt Turnerdd0d3a22015-03-10 17:55:21 -070087}
Matt Turner594fc0f2015-06-25 16:47:52 -070088
89/**
90 * \brief Rounds \c x to the nearest integer, with ties to the even integer,
91 * and returns the value as a long int.
92 */
93static inline long
94_mesa_lroundevenf(float x)
95{
Matt Turner680de242015-06-29 09:38:34 -070096#ifdef __x86_64__
97#if LONG_BIT == 64
98 return _mm_cvtss_si64(_mm_load_ss(&x));
Jose Fonseca21ccdbd2015-08-09 11:25:41 +010099#elif LONG_BIT == 32 || defined(_WIN32)
Matt Turner680de242015-06-29 09:38:34 -0700100 return _mm_cvtss_si32(_mm_load_ss(&x));
Jose Fonseca21ccdbd2015-08-09 11:25:41 +0100101#else
102#error "Unsupported or undefined LONG_BIT"
Matt Turner680de242015-06-29 09:38:34 -0700103#endif
104#else
Matt Turner594fc0f2015-06-25 16:47:52 -0700105 return lrintf(x);
Matt Turner680de242015-06-29 09:38:34 -0700106#endif
Matt Turner594fc0f2015-06-25 16:47:52 -0700107}
108
109/**
110 * \brief Rounds \c x to the nearest integer, with ties to the even integer,
111 * and returns the value as a long int.
112 */
113static inline long
114_mesa_lroundeven(double x)
115{
Matt Turner680de242015-06-29 09:38:34 -0700116#ifdef __x86_64__
117#if LONG_BIT == 64
118 return _mm_cvtsd_si64(_mm_load_sd(&x));
Jose Fonseca21ccdbd2015-08-09 11:25:41 +0100119#elif LONG_BIT == 32 || defined(_WIN32)
Matt Turner680de242015-06-29 09:38:34 -0700120 return _mm_cvtsd_si32(_mm_load_sd(&x));
Jose Fonseca21ccdbd2015-08-09 11:25:41 +0100121#else
122#error "Unsupported or undefined LONG_BIT"
Matt Turner680de242015-06-29 09:38:34 -0700123#endif
124#else
Matt Turner594fc0f2015-06-25 16:47:52 -0700125 return lrint(x);
Matt Turner680de242015-06-29 09:38:34 -0700126#endif
Matt Turner594fc0f2015-06-25 16:47:52 -0700127}
128
129#endif