st/nine: Minor change to support musl libc
authorWang He <xw897002528@gmail.com>
Tue, 10 May 2016 05:40:30 +0000 (13:40 +0800)
committerAxel Davy <axel.davy@ens.fr>
Wed, 18 May 2016 21:37:14 +0000 (23:37 +0200)
A few changes to support musl libc as well.

In particular fpu_control.h is glibc specific.
fenv.h doesn't enable to do exactly what we want either,
so instead use assembly directly.

Signed-off-by: Wang He <xw897002528@gmail.com>
Reviewed-by: Axel Davy <axel.davy@ens.fr>
src/gallium/state_trackers/nine/device9.c
src/gallium/state_trackers/nine/threadpool.h

index b29e161869ca1d8e486b10b2e0a6030ff33fe137..20a0ce064f50a091c8e0045120de0a3c90ca49b1 100644 (file)
 
 #if defined(PIPE_CC_GCC) && (defined(PIPE_ARCH_X86) || defined(PIPE_ARCH_X86_64))
 
-#include <fpu_control.h>
-
 static void nine_setup_fpu()
 {
-    fpu_control_t c;
+    uint16_t c;
+
+    __asm__ __volatile__ ("fnstcw %0" : "=m" (*&c));
 
-    _FPU_GETCW(c);
     /* clear the control word */
-    c &= _FPU_RESERVED;
+    c &= 0xF0C0;
     /* d3d9 doc/wine tests: mask all exceptions, use single-precision
      * and round to nearest */
-    c |= _FPU_MASK_IM | _FPU_MASK_DM | _FPU_MASK_ZM | _FPU_MASK_OM |
-         _FPU_MASK_UM | _FPU_MASK_PM | _FPU_SINGLE | _FPU_RC_NEAREST;
-    _FPU_SETCW(c);
+    c |= 0x003F;
+
+    __asm__ __volatile__ ("fldcw %0" : : "m" (*&c));
 }
 
 #else
index 2562c96f256402000a4fc32e2f2203ed9ff1eeb5..6f8f8c455d07d7934a9f6cdbb415ab8586bcd875 100644 (file)
@@ -24,6 +24,8 @@
 #ifndef _THREADPOOL_H_
 #define _THREADPOOL_H_
 
+#include <pthread.h>
+
 struct NineSwapChain9;
 
 #define MAXTHREADS 1