summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2015-10-28 22:58:29 +0000
committerJoseph Myers <joseph@codesourcery.com>2015-10-28 22:58:29 +0000
commit2145f97cee01140d5369a8c67dc92eacfe8e4417 (patch)
treeb9f7ed5057d12a140dc8664d98efe75ae96d2c3e /NEWS
parent5878dd9d53a00fa28800236d79e38e55f85fc98d (diff)
Handle more state in i386/x86_64 fesetenv (bug 16068).
fenv_t should include architecture-specific floating-point modes and status flags. i386 and x86_64 fesetenv limit which bits they use from the x87 status and control words, when using saved state, and limit which parts of the state they set to fixed values, when using FE_DFL_ENV / FE_NOMASK_ENV. The following should be included but are excluded in at least some cases: status and masking for the "denormal operand" exception (which isn't part of FE_ALL_EXCEPT); precision control (explicitly mentioned in Annex F as something that counts as part of the floating-point environment); MXCSR FZ and DAZ bits (for FE_DFL_ENV and FE_NOMASK_ENV). This patch arranges for this extra state to be handled by fesetenv (and thereby by feupdateenv, which calls fesetenv). (Note that glibc functions using floating point are not generally expected to work correctly with non-default values of this state, especially precision control, but it is still logically part of the floating-point environment and should be handled as such by fesetenv. Changes to the state relating to subnormals ought generally to work with libm functions when the arguments aren't subnormal and neither are the expected results; that's a consequence of functions avoiding spurious internal underflows.) A question arising from this is whether FE_NOMASK_ENV should or should not mask the "denormal operand" exception. I decided it should mask that exception. This is the status quo - previously that exception could only be unmasked by direct manipulation of control registers (possibly via <fpu_control.h>). In addition, it means that use of FE_NOMASK_ENV leaves a floating-point environment the same as could be obtained by fesetenv (FE_DFL_ENV); feenableexcept (FE_ALL_EXCEPT);, rather than an environment in which an exception is unmasked that could only be masked again by using fesetenv with FE_DFL_ENV (or a previously saved environment) - this exception not being usable with other <fenv.h> functions because it's outside FE_ALL_EXCEPT. Tested for x86_64 and x86. [BZ #16068] * sysdeps/i386/fpu/fesetenv.c: Include <fpu_control.h>. (FE_ALL_EXCEPT_X86): New macro. (__fesetenv): Use FE_ALL_EXCEPT_X86 in most places instead of FE_ALL_EXCEPT. Ensure precision control is included in floating-point state. Ensure that FE_DFL_ENV and FE_NOMASK_ENV handle "denormal operand exception" and clear FZ and DAZ bits. * sysdeps/x86_64/fpu/fesetenv.c: Include <fpu_control.h>. (FE_ALL_EXCEPT_X86): New macro. (__fesetenv): Use FE_ALL_EXCEPT_X86 in most places instead of FE_ALL_EXCEPT. Ensure precision control is included in floating-point state. Ensure that FE_DFL_ENV and FE_NOMASK_ENV handle "denormal operand exception" and clear FZ and DAZ bits. * sysdeps/x86/fpu/test-fenv-sse-2.c: New file. * sysdeps/x86/fpu/test-fenv-x87.c: Likewise. * sysdeps/x86/fpu/Makefile [$(subdir) = math] (tests): Add test-fenv-x87 and test-fenv-sse-2. [$(subdir) = math] (CFLAGS-test-fenv-sse-2.c): New variable.
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS24
1 files changed, 12 insertions, 12 deletions
diff --git a/NEWS b/NEWS
index 9b343917f5..0831d35881 100644
--- a/NEWS
+++ b/NEWS
@@ -10,18 +10,18 @@ Version 2.23
* The following bugs are resolved with this release:
887, 2542, 2543, 2558, 2898, 4404, 6803, 10432, 14341, 14912, 15367,
- 15384, 15470, 15491, 15786, 15918, 16141, 16296, 16347, 16399, 16415,
- 16422, 16517, 16519, 16520, 16521, 16620, 16734, 16973, 16985, 17118,
- 17243, 17244, 17250, 17404, 17441, 17787, 17886, 17887, 17905, 18084,
- 18086, 18240, 18265, 18370, 18421, 18480, 18525, 18595, 18589, 18610,
- 18611, 18618, 18647, 18661, 18674, 18675, 18681, 18699, 18724, 18743,
- 18757, 18778, 18781, 18787, 18789, 18790, 18795, 18796, 18803, 18820,
- 18823, 18824, 18825, 18857, 18863, 18870, 18872, 18873, 18875, 18887,
- 18918, 18921, 18928, 18951, 18952, 18953, 18956, 18961, 18966, 18967,
- 18969, 18970, 18977, 18980, 18981, 18982, 18985, 19003, 19007, 19012,
- 19016, 19018, 19032, 19046, 19048, 19049, 19050, 19059, 19071, 19074,
- 19076, 19077, 19078, 19079, 19085, 19086, 19088, 19094, 19095, 19124,
- 19125, 19129, 19134, 19137, 19156, 19174, 19181.
+ 15384, 15470, 15491, 15786, 15918, 16068, 16141, 16296, 16347, 16399,
+ 16415, 16422, 16517, 16519, 16520, 16521, 16620, 16734, 16973, 16985,
+ 17118, 17243, 17244, 17250, 17404, 17441, 17787, 17886, 17887, 17905,
+ 18084, 18086, 18240, 18265, 18370, 18421, 18480, 18525, 18595, 18589,
+ 18610, 18611, 18618, 18647, 18661, 18674, 18675, 18681, 18699, 18724,
+ 18743, 18757, 18778, 18781, 18787, 18789, 18790, 18795, 18796, 18803,
+ 18820, 18823, 18824, 18825, 18857, 18863, 18870, 18872, 18873, 18875,
+ 18887, 18918, 18921, 18928, 18951, 18952, 18953, 18956, 18961, 18966,
+ 18967, 18969, 18970, 18977, 18980, 18981, 18982, 18985, 19003, 19007,
+ 19012, 19016, 19018, 19032, 19046, 19048, 19049, 19050, 19059, 19071,
+ 19074, 19076, 19077, 19078, 19079, 19085, 19086, 19088, 19094, 19095,
+ 19124, 19125, 19129, 19134, 19137, 19156, 19174, 19181.
* A defect in the malloc implementation, present since glibc 2.15 (2012) or
glibc 2.10 via --enable-experimental-malloc (2009), could result in the