ralloc: remove memset from ralloc_size
[mesa.git] / src / util / rounding.h
index b0c9918fd6e69500682b97b98dba97189988a2b5..dfc691eaf1369f21c0375059a5da0ba8e299afc2 100644 (file)
 #ifndef _ROUNDING_H
 #define _ROUNDING_H
 
-#include <math.h>
+#include "c99_math.h"
+
 #include <limits.h>
+#include <stdint.h>
 
-#ifdef __x86_64__
+#if defined(__SSE__) || defined(_MSC_VER)
+/* MSVC always has SSE nowadays */
 #include <xmmintrin.h>
 #include <emmintrin.h>
 #endif
@@ -93,11 +96,13 @@ _mesa_roundeven(double x)
 static inline long
 _mesa_lroundevenf(float x)
 {
-#ifdef __x86_64__
-#if LONG_BIT == 64
+#if defined(__SSE__) || defined(_MSC_VER)
+#if LONG_MAX == INT64_MAX
    return _mm_cvtss_si64(_mm_load_ss(&x));
-#elif LONG_BIT == 32
+#elif LONG_MAX == INT32_MAX
    return _mm_cvtss_si32(_mm_load_ss(&x));
+#else
+#error "Unsupported long size"
 #endif
 #else
    return lrintf(x);
@@ -111,11 +116,13 @@ _mesa_lroundevenf(float x)
 static inline long
 _mesa_lroundeven(double x)
 {
-#ifdef __x86_64__
-#if LONG_BIT == 64
+#if defined(__SSE__) || defined(_MSC_VER)
+#if LONG_MAX == INT64_MAX
    return _mm_cvtsd_si64(_mm_load_sd(&x));
-#elif LONG_BIT == 32
+#elif LONG_MAX == INT32_MAX
    return _mm_cvtsd_si32(_mm_load_sd(&x));
+#else
+#error "Unsupported long size"
 #endif
 #else
    return lrint(x);