mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-01 22:58:50 -04:00
cpu: use intrinsics to modify status register
For better portability. Also only use the code when we can compile with SSE is available.
This commit is contained in:
parent
027dd25980
commit
14fd5425af
2 changed files with 17 additions and 2 deletions
|
|
@ -177,14 +177,22 @@ x86_init(struct impl *impl)
|
|||
return 0;
|
||||
}
|
||||
|
||||
#if defined(HAVE_SSE)
|
||||
#include <xmmintrin.h>
|
||||
#endif
|
||||
|
||||
static int x86_zero_denormals(void *object, bool enable)
|
||||
{
|
||||
#if defined(HAVE_SSE)
|
||||
unsigned int mxcsr;
|
||||
mxcsr = __builtin_ia32_stmxcsr();
|
||||
mxcsr = _mm_getcsr();
|
||||
if (enable)
|
||||
mxcsr |= 0x8040;
|
||||
else
|
||||
mxcsr &= ~0x8040;
|
||||
__builtin_ia32_ldmxcsr(mxcsr);
|
||||
_mm_setcsr(mxcsr);
|
||||
return 0;
|
||||
#else
|
||||
return -ENOTSUP;
|
||||
#endif
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue