2022-10-11 00:52:41 +00:00
|
|
|
/*-*- mode:unix-assembly; indent-tabs-mode:t; tab-width:8; coding:utf-8 -*-│
|
2023-12-13 07:28:11 +00:00
|
|
|
│ vi: set noet ft=asm ts=8 sw=8 fenc=utf-8 :vi │
|
2022-10-11 00:52:41 +00:00
|
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
|
|
│ │
|
|
|
|
│ Musl Libc │
|
|
|
|
│ Copyright © 2005-2014 Rich Felker, et al. │
|
|
|
|
│ │
|
|
|
|
│ Permission is hereby granted, free of charge, to any person obtaining │
|
|
|
|
│ a copy of this software and associated documentation files (the │
|
|
|
|
│ "Software"), to deal in the Software without restriction, including │
|
|
|
|
│ without limitation the rights to use, copy, modify, merge, publish, │
|
|
|
|
│ distribute, sublicense, and/or sell copies of the Software, and to │
|
|
|
|
│ permit persons to whom the Software is furnished to do so, subject to │
|
|
|
|
│ the following conditions: │
|
|
|
|
│ │
|
|
|
|
│ The above copyright notice and this permission notice shall be │
|
|
|
|
│ included in all copies or substantial portions of the Software. │
|
|
|
|
│ │
|
|
|
|
│ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, │
|
|
|
|
│ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF │
|
|
|
|
│ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. │
|
|
|
|
│ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY │
|
|
|
|
│ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, │
|
|
|
|
│ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE │
|
|
|
|
│ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. │
|
|
|
|
│ │
|
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
2024-08-04 19:52:25 +00:00
|
|
|
#include "libc/macros.h"
|
2022-10-11 00:52:41 +00:00
|
|
|
|
2023-06-03 15:12:13 +00:00
|
|
|
// Clears floating point exception status, e.g.
|
|
|
|
//
|
|
|
|
// feclearexcept(FE_ALL_EXCEPT);
|
|
|
|
//
|
|
|
|
// @param excepts may bitwise-or the following:
|
|
|
|
// - `FE_INVALID`
|
|
|
|
// - `FE_DIVBYZERO`
|
|
|
|
// - `FE_OVERFLOW`
|
|
|
|
// - `FE_UNDERFLOW`
|
|
|
|
// - `FE_INEXACT`
|
|
|
|
// - `FE_ALL_EXCEPT` (all of the above)
|
|
|
|
// @return 0 on success, or nonzero on error
|
2023-06-06 10:30:37 +00:00
|
|
|
.ftrace1
|
2022-10-11 00:52:41 +00:00
|
|
|
feclearexcept:
|
2023-06-06 10:30:37 +00:00
|
|
|
.ftrace2
|
2023-05-03 01:35:25 +00:00
|
|
|
#ifdef __x86_64__
|
2023-05-09 09:35:05 +00:00
|
|
|
// maintain exceptions in the sse mxcsr, clear x87 exceptions
|
2022-10-11 00:52:41 +00:00
|
|
|
mov %edi,%ecx
|
|
|
|
and $0x3f,%ecx
|
2023-06-15 20:50:42 +00:00
|
|
|
#ifndef NOX87
|
2022-10-11 00:52:41 +00:00
|
|
|
fnstsw %ax
|
|
|
|
test %eax,%ecx
|
|
|
|
jz 1f
|
|
|
|
fnclex
|
2023-06-15 20:50:42 +00:00
|
|
|
1:
|
|
|
|
#endif
|
|
|
|
stmxcsr -8(%rsp)
|
2022-10-11 00:52:41 +00:00
|
|
|
and $0x3f,%eax
|
|
|
|
or %eax,-8(%rsp)
|
|
|
|
test %ecx,-8(%rsp)
|
|
|
|
jz 1f
|
|
|
|
not %ecx
|
|
|
|
and %ecx,-8(%rsp)
|
|
|
|
ldmxcsr -8(%rsp)
|
|
|
|
1: xor %eax,%eax
|
|
|
|
ret
|
2023-05-03 01:35:25 +00:00
|
|
|
#elif defined(__aarch64__)
|
|
|
|
and w0,w0,#0x1f
|
|
|
|
mrs x1,fpsr
|
|
|
|
bic w1,w1,w0
|
|
|
|
msr fpsr,x1
|
|
|
|
mov w0,#0
|
|
|
|
ret
|
2023-06-03 15:12:13 +00:00
|
|
|
#else
|
|
|
|
#error "unsupported architecture"
|
2023-05-03 01:35:25 +00:00
|
|
|
#endif
|
2022-10-11 00:52:41 +00:00
|
|
|
.endfn feclearexcept,globl
|
|
|
|
|
2023-06-03 15:12:13 +00:00
|
|
|
// Checks for floating point exception.
|
|
|
|
//
|
|
|
|
// This function may be used to check the thread-local
|
|
|
|
// floating-point exception status bits, e.g.
|
|
|
|
//
|
|
|
|
// feclearexcept(FE_ALL_EXCEPT);
|
|
|
|
// volatile double x = 0, y = 1 / x;
|
|
|
|
// assert(fetestexcept(FE_ALL_EXCEPT) == FE_DIVBYZERO);
|
|
|
|
//
|
2023-06-06 10:30:37 +00:00
|
|
|
.ftrace1
|
2023-06-03 15:12:13 +00:00
|
|
|
// @param excepts may bitwise-or the following:
|
|
|
|
// - `FE_INVALID`
|
|
|
|
// - `FE_DIVBYZERO`
|
|
|
|
// - `FE_OVERFLOW`
|
|
|
|
// - `FE_UNDERFLOW`
|
|
|
|
// - `FE_INEXACT`
|
|
|
|
// - `FE_ALL_EXCEPT` (all of the above)
|
|
|
|
// @return mask of which exception status codes are currently set,
|
|
|
|
// or zero if there aren't any floating point exceptions
|
2023-06-06 10:30:37 +00:00
|
|
|
.ftrace1
|
2023-06-03 15:12:13 +00:00
|
|
|
fetestexcept:
|
2023-06-06 10:30:37 +00:00
|
|
|
.ftrace2
|
2023-06-03 15:12:13 +00:00
|
|
|
#ifdef __x86_64__
|
|
|
|
and $0x3f,%edi
|
2023-06-15 20:50:42 +00:00
|
|
|
push $0
|
2023-06-03 15:12:13 +00:00
|
|
|
stmxcsr (%rsp)
|
2023-06-15 20:50:42 +00:00
|
|
|
#ifdef NOX87
|
|
|
|
pop %rax
|
|
|
|
#else
|
2023-06-03 15:12:13 +00:00
|
|
|
pop %rsi
|
|
|
|
fnstsw %ax
|
|
|
|
or %esi,%eax
|
|
|
|
and %edi,%eax
|
2023-06-15 20:50:42 +00:00
|
|
|
#endif
|
2023-06-03 15:12:13 +00:00
|
|
|
ret
|
|
|
|
#elif defined(__aarch64__)
|
|
|
|
and w0,w0,#0x1f
|
|
|
|
mrs x1,fpsr
|
|
|
|
and w0,w0,w1
|
|
|
|
ret
|
|
|
|
#endif
|
|
|
|
.endfn fetestexcept,globl
|
|
|
|
|
2023-06-06 10:30:37 +00:00
|
|
|
.ftrace1
|
2022-10-11 00:52:41 +00:00
|
|
|
feraiseexcept:
|
2023-06-06 10:30:37 +00:00
|
|
|
.ftrace2
|
2023-05-03 01:35:25 +00:00
|
|
|
#ifdef __x86_64__
|
2022-10-11 00:52:41 +00:00
|
|
|
and $0x3f,%edi
|
|
|
|
stmxcsr -8(%rsp)
|
|
|
|
or %edi,-8(%rsp)
|
|
|
|
ldmxcsr -8(%rsp)
|
|
|
|
xor %eax,%eax
|
|
|
|
ret
|
2023-05-03 01:35:25 +00:00
|
|
|
#elif defined(__aarch64__)
|
|
|
|
and w0,w0,#0x1f
|
|
|
|
mrs x1,fpsr
|
|
|
|
orr w1,w1,w0
|
|
|
|
msr fpsr,x1
|
|
|
|
mov w0,#0
|
|
|
|
ret
|
|
|
|
#endif
|
2022-10-11 00:52:41 +00:00
|
|
|
.endfn feraiseexcept,globl
|
|
|
|
|
2023-06-06 10:30:37 +00:00
|
|
|
.ftrace1
|
2022-10-11 00:52:41 +00:00
|
|
|
__fesetround:
|
2023-06-06 10:30:37 +00:00
|
|
|
.ftrace2
|
2023-05-03 01:35:25 +00:00
|
|
|
#ifdef __x86_64__
|
2022-10-11 00:52:41 +00:00
|
|
|
push %rax
|
|
|
|
xor %eax,%eax
|
|
|
|
mov %edi,%ecx
|
2023-06-15 20:50:42 +00:00
|
|
|
#ifndef NOX87
|
2022-10-11 00:52:41 +00:00
|
|
|
fnstcw (%rsp)
|
|
|
|
andb $0xf3,1(%rsp)
|
|
|
|
or %ch,1(%rsp)
|
|
|
|
fldcw (%rsp)
|
2023-06-15 20:50:42 +00:00
|
|
|
#endif
|
2022-10-11 00:52:41 +00:00
|
|
|
stmxcsr (%rsp)
|
|
|
|
shl $3,%ch
|
|
|
|
andb $0x9f,1(%rsp)
|
|
|
|
or %ch,1(%rsp)
|
|
|
|
ldmxcsr (%rsp)
|
|
|
|
pop %rcx
|
|
|
|
ret
|
2023-05-03 01:35:25 +00:00
|
|
|
#elif defined(__aarch64__)
|
|
|
|
mrs x1,fpcr
|
|
|
|
bic w1,w1,#0xc00000
|
|
|
|
orr w1,w1,w0
|
|
|
|
msr fpcr,x1
|
|
|
|
mov w0,#0
|
|
|
|
ret
|
|
|
|
#endif
|
2022-10-11 00:52:41 +00:00
|
|
|
.endfn __fesetround,globl,hidden
|
|
|
|
|
2023-06-06 10:30:37 +00:00
|
|
|
.ftrace1
|
2022-10-11 00:52:41 +00:00
|
|
|
fegetround:
|
2023-06-06 10:30:37 +00:00
|
|
|
.ftrace2
|
2023-05-03 01:35:25 +00:00
|
|
|
#ifdef __x86_64__
|
2022-10-11 00:52:41 +00:00
|
|
|
push %rax
|
|
|
|
stmxcsr (%rsp)
|
|
|
|
pop %rax
|
|
|
|
shr $3,%eax
|
|
|
|
and $0xc00,%eax
|
|
|
|
ret
|
2023-05-03 01:35:25 +00:00
|
|
|
#elif defined(__aarch64__)
|
|
|
|
mrs x0,fpcr
|
|
|
|
and w0,w0,#0xc00000
|
|
|
|
ret
|
|
|
|
#endif
|
2022-10-11 00:52:41 +00:00
|
|
|
.endfn fegetround,globl
|
|
|
|
|
2023-06-06 10:30:37 +00:00
|
|
|
.ftrace1
|
2022-10-11 00:52:41 +00:00
|
|
|
fegetenv:
|
2023-06-06 10:30:37 +00:00
|
|
|
.ftrace2
|
2023-05-03 01:35:25 +00:00
|
|
|
#ifdef __x86_64__
|
2022-10-11 00:52:41 +00:00
|
|
|
xor %eax,%eax
|
2023-06-15 20:50:42 +00:00
|
|
|
#ifndef NOX87
|
2022-10-11 00:52:41 +00:00
|
|
|
fnstenv (%rdi)
|
2023-06-15 20:50:42 +00:00
|
|
|
#endif
|
2022-10-11 00:52:41 +00:00
|
|
|
stmxcsr 28(%rdi)
|
|
|
|
ret
|
2023-05-03 01:35:25 +00:00
|
|
|
#elif defined(__aarch64__)
|
|
|
|
mrs x1,fpcr
|
|
|
|
mrs x2,fpsr
|
|
|
|
stp w1,w2,[x0]
|
|
|
|
mov w0,#0
|
|
|
|
ret
|
|
|
|
#endif
|
2022-10-11 00:52:41 +00:00
|
|
|
.endfn fegetenv,globl
|
|
|
|
|
2023-06-06 10:30:37 +00:00
|
|
|
.ftrace1
|
2022-10-11 00:52:41 +00:00
|
|
|
fesetenv:
|
2023-06-06 10:30:37 +00:00
|
|
|
.ftrace2
|
2023-05-03 01:35:25 +00:00
|
|
|
#ifdef __x86_64__
|
2022-10-11 00:52:41 +00:00
|
|
|
xor %eax,%eax
|
|
|
|
inc %rdi
|
|
|
|
jz 1f
|
2023-06-15 20:50:42 +00:00
|
|
|
#ifndef NOX87
|
2022-10-11 00:52:41 +00:00
|
|
|
fldenv -1(%rdi)
|
2023-06-15 20:50:42 +00:00
|
|
|
#endif
|
2022-10-11 00:52:41 +00:00
|
|
|
ldmxcsr 27(%rdi)
|
|
|
|
ret
|
|
|
|
1: push %rax
|
|
|
|
push %rax
|
|
|
|
pushq $0xffff
|
|
|
|
pushq $0x37f
|
2023-06-15 20:50:42 +00:00
|
|
|
#ifndef NOX87
|
2022-10-11 00:52:41 +00:00
|
|
|
fldenv (%rsp)
|
2023-06-15 20:50:42 +00:00
|
|
|
#endif
|
2022-10-11 00:52:41 +00:00
|
|
|
pushq $0x1f80
|
|
|
|
ldmxcsr (%rsp)
|
|
|
|
add $40,%rsp
|
|
|
|
ret
|
2023-05-03 01:35:25 +00:00
|
|
|
#elif defined(__aarch64__)
|
|
|
|
mov x1,#0
|
|
|
|
mov x2,#0
|
|
|
|
cmn x0,#1
|
|
|
|
b.eq 1f
|
|
|
|
ldp w1,w2,[x0]
|
|
|
|
1: msr fpcr,x1
|
|
|
|
msr fpsr,x2
|
|
|
|
mov w0,#0
|
|
|
|
ret
|
|
|
|
#endif
|
2022-10-11 00:52:41 +00:00
|
|
|
.endfn fesetenv,globl
|