glibc/sysdeps/i386/fpu/math-tests-trap-force.h
Adhemerval Zanella 47a9eeb9ba i686: Do not raise exception traps on fesetexcept (BZ 30989)
According to ISO C23 (7.6.4.4), fesetexcept is supposed to set
floating-point exception flags without raising a trap (unlike
feraiseexcept, which is supposed to raise a trap if feenableexcept
was called with the appropriate argument).

The flags can be set in the 387 unit or in the SSE unit.  To set
a flag, it is sufficient to do it in the SSE unit, because that is
guaranteed to not trap.  However, on i386 CPUs that have only a
387 unit, set the flags in the 387, as long as this cannot trap.

Checked on i686-linux-gnu.

Reviewed-by: Carlos O'Donell <carlos@redhat.com>
2023-12-19 15:12:38 -03:00

30 lines
1.2 KiB
C

/* Configuration for math tests: support for setting exception flags
without causing enabled traps. i686 version.
Copyright (C) 2023 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
<https://www.gnu.org/licenses/>. */
#ifndef I386_FPU_MATH_TESTS_TRAP_FORCE_H
#define I386_FPU_MATH_TESTS_TRAP_FORCE_H 1
#include <cpu-features.h>
/* Setting exception flags in FPU Status Register results in enabled traps for
those exceptions being taken. */
#define EXCEPTION_SET_FORCES_TRAP !CPU_FEATURE_USABLE (SSE)
#endif /* math-tests-trap-force.h. */