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>
#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
#ifndef _THREADPOOL_H_
#define _THREADPOOL_H_
+#include <pthread.h>
+
struct NineSwapChain9;
#define MAXTHREADS 1