blob: 7b5608b8a7844dc7f9b09381dec1a2ab1baa3665 [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
Jose Fonseca497a22a2015-08-09 11:55:28 +010027#include "c99_compat.h" // inline
28
Matt Turnerdd0d3a22015-03-10 17:55:21 -070029#include <math.h>
Matt Turner680de242015-06-29 09:38:34 -070030#include <limits.h>
Jose Fonseca1eaa29c2015-08-09 22:36:37 +010031#include <stdint.h>
Matt Turner680de242015-06-29 09:38:34 -070032
33#ifdef __x86_64__
34#include <xmmintrin.h>
35#include <emmintrin.h>
36#endif
Matt Turnerdd0d3a22015-03-10 17:55:21 -070037
Matt Turner036e3472015-03-18 14:23:41 -070038#ifdef __SSE4_1__
39#include <smmintrin.h>
40#endif
41
Matt Turnerdd0d3a22015-03-10 17:55:21 -070042/* The C standard library has functions round()/rint()/nearbyint() that round
43 * their arguments according to the rounding mode set in the floating-point
44 * control register. While there are trunc()/ceil()/floor() functions that do
45 * a specific operation without modifying the rounding mode, there is no
46 * roundeven() in any version of C.
47 *
48 * Technical Specification 18661 (ISO/IEC TS 18661-1:2014) adds roundeven(),
49 * but it's unfortunately not implemented by glibc.
50 *
51 * This implementation differs in that it does not raise the inexact exception.
52 *
53 * We use rint() to implement these functions, with the assumption that the
54 * floating-point rounding mode has not been changed from the default Round
55 * to Nearest.
56 */
57
58/**
59 * \brief Rounds \c x to the nearest integer, with ties to the even integer.
60 */
61static inline float
62_mesa_roundevenf(float x)
63{
Matt Turner036e3472015-03-18 14:23:41 -070064#ifdef __SSE4_1__
65 float ret;
66 __m128 m = _mm_load_ss(&x);
67 m = _mm_round_ss(m, m, _MM_FROUND_CUR_DIRECTION | _MM_FROUND_NO_EXC);
68 _mm_store_ss(&ret, m);
69 return ret;
70#else
Matt Turnerdd0d3a22015-03-10 17:55:21 -070071 return rintf(x);
Matt Turner036e3472015-03-18 14:23:41 -070072#endif
Matt Turnerdd0d3a22015-03-10 17:55:21 -070073}
74
75/**
76 * \brief Rounds \c x to the nearest integer, with ties to the even integer.
77 */
78static inline double
79_mesa_roundeven(double x)
80{
Matt Turner036e3472015-03-18 14:23:41 -070081#ifdef __SSE4_1__
82 double ret;
83 __m128d m = _mm_load_sd(&x);
84 m = _mm_round_sd(m, m, _MM_FROUND_CUR_DIRECTION | _MM_FROUND_NO_EXC);
85 _mm_store_sd(&ret, m);
86 return ret;
87#else
Matt Turnerdd0d3a22015-03-10 17:55:21 -070088 return rint(x);
Matt Turner036e3472015-03-18 14:23:41 -070089#endif
Matt Turnerdd0d3a22015-03-10 17:55:21 -070090}
Matt Turner594fc0f2015-06-25 16:47:52 -070091
92/**
93 * \brief Rounds \c x to the nearest integer, with ties to the even integer,
94 * and returns the value as a long int.
95 */
96static inline long
97_mesa_lroundevenf(float x)
98{
Matt Turner680de242015-06-29 09:38:34 -070099#ifdef __x86_64__
Jose Fonseca1eaa29c2015-08-09 22:36:37 +0100100#if LONG_MAX == INT64_MAX
Matt Turner680de242015-06-29 09:38:34 -0700101 return _mm_cvtss_si64(_mm_load_ss(&x));
Jose Fonseca1eaa29c2015-08-09 22:36:37 +0100102#elif LONG_MAX == INT32_MAX
Matt Turner680de242015-06-29 09:38:34 -0700103 return _mm_cvtss_si32(_mm_load_ss(&x));
Jose Fonseca21ccdbd2015-08-09 11:25:41 +0100104#else
Jose Fonseca1eaa29c2015-08-09 22:36:37 +0100105#error "Unsupported long size"
Matt Turner680de242015-06-29 09:38:34 -0700106#endif
107#else
Matt Turner594fc0f2015-06-25 16:47:52 -0700108 return lrintf(x);
Matt Turner680de242015-06-29 09:38:34 -0700109#endif
Matt Turner594fc0f2015-06-25 16:47:52 -0700110}
111
112/**
113 * \brief Rounds \c x to the nearest integer, with ties to the even integer,
114 * and returns the value as a long int.
115 */
116static inline long
117_mesa_lroundeven(double x)
118{
Matt Turner680de242015-06-29 09:38:34 -0700119#ifdef __x86_64__
Jose Fonseca1eaa29c2015-08-09 22:36:37 +0100120#if LONG_MAX == INT64_MAX
Matt Turner680de242015-06-29 09:38:34 -0700121 return _mm_cvtsd_si64(_mm_load_sd(&x));
Jose Fonseca1eaa29c2015-08-09 22:36:37 +0100122#elif LONG_MAX == INT32_MAX
Matt Turner680de242015-06-29 09:38:34 -0700123 return _mm_cvtsd_si32(_mm_load_sd(&x));
Jose Fonseca21ccdbd2015-08-09 11:25:41 +0100124#else
Jose Fonseca1eaa29c2015-08-09 22:36:37 +0100125#error "Unsupported long size"
Matt Turner680de242015-06-29 09:38:34 -0700126#endif
127#else
Matt Turner594fc0f2015-06-25 16:47:52 -0700128 return lrint(x);
Matt Turner680de242015-06-29 09:38:34 -0700129#endif
Matt Turner594fc0f2015-06-25 16:47:52 -0700130}
131
132#endif