Make further progress on non-x86 support

This commit is contained in:
Justine Tunney 2023-05-08 21:38:30 -07:00
parent aef9a69a60
commit 036b9a0002
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
155 changed files with 2307 additions and 653 deletions

View file

@ -27,6 +27,7 @@
*/
#include "libc/math.h"
#include "libc/tinymath/internal.h"
#include "third_party/intel/smmintrin.internal.h"
asm(".ident\t\"\\n\\n\
Musl libc (MIT License)\\n\
@ -34,12 +35,38 @@ Copyright 2005-2014 Rich Felker, et. al.\"");
asm(".include \"libc/disclaimer.inc\"");
// clang-format off
/**
* Rounds to integer, towards zero.
*/
float truncf(float x)
{
#ifdef __aarch64__
asm("frintz\t%s0,%s1" : "=w"(x) : "w"(x));
return x;
#elif defined(__powerpc64__) && defined(_ARCH_PWR5X)
asm("friz\t%0,%1" : "=f"(x) : "f"(x));
return x;
#elif defined(__s390x__) && (defined(__HTM__) || __ARCH__ >= 9)
asm("fiebra\t%0,5,%1,4" : "=f"(x) : "f"(x));
return x;
#elif defined(__x86_64__) && defined(__SSE4_1__)
asm("roundss\t%2,%1,%0"
: "=x"(x)
: "x"(x), "i"(_MM_FROUND_TO_ZERO | _MM_FROUND_NO_EXC));
return x;
#else
union {float f; uint32_t i;} u = {x};
int e = (int)(u.i >> 23 & 0xff) - 0x7f + 9;
uint32_t m;
if (e >= 23 + 9)
return x;
if (e < 9)
@ -50,4 +77,6 @@ float truncf(float x)
FORCE_EVAL(x + 0x1p120f);
u.i &= ~m;
return u.f;
#endif /* __aarch64__ */
}