about summary refs log tree commit diff
path: root/sysdeps/aarch64/fpu/fesetenv.c
diff options
context:
space:
mode:
authorMarcus Shawcroft <marcus.shawcroft@arm.com>2014-03-07 14:05:20 +0000
committerMarcus Shawcroft <marcus.shawcroft@arm.com>2014-03-07 14:05:20 +0000
commit302949e2940a9da3f6364a1574619e621b7e1e71 (patch)
tree584f5e0c4fe14716a318fe8745b2c79554115957 /sysdeps/aarch64/fpu/fesetenv.c
parent6f99f280b00a30b8f0a89a4be1adb2bea41e2954 (diff)
downloadglibc-302949e2940a9da3f6364a1574619e621b7e1e71.tar.gz
glibc-302949e2940a9da3f6364a1574619e621b7e1e71.tar.xz
glibc-302949e2940a9da3f6364a1574619e621b7e1e71.zip
[PATCH] [AArch64] Optional trapping exceptions support.
Trapping exceptions in AArch64 are optional.  The relevant exception
control bits in FPCR are are defined as RES0 hence the absence of
support can be detected by reading back the FPCR and comparing with
the desired value.
Diffstat (limited to 'sysdeps/aarch64/fpu/fesetenv.c')
-rw-r--r--sysdeps/aarch64/fpu/fesetenv.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/sysdeps/aarch64/fpu/fesetenv.c b/sysdeps/aarch64/fpu/fesetenv.c
index 443c705d22..a2434e37b0 100644
--- a/sysdeps/aarch64/fpu/fesetenv.c
+++ b/sysdeps/aarch64/fpu/fesetenv.c
@@ -24,6 +24,7 @@ fesetenv (const fenv_t *envp)
 {
   fpu_control_t fpcr;
   fpu_fpsr_t fpsr;
+  fpu_control_t updated_fpcr;
 
   _FPU_GETCW (fpcr);
   _FPU_GETFPSR (fpsr);
@@ -51,6 +52,15 @@ fesetenv (const fenv_t *envp)
 
   _FPU_SETCW (fpcr);
 
+  /* Trapping exceptions are optional in AArch64 the relevant enable
+     bits in FPCR are RES0 hence the absence of support can be
+     detected by reading back the FPCR and comparing with the required
+     value.  */
+
+  _FPU_GETCW (updated_fpcr);
+  if ((updated_fpcr & fpcr) != fpcr)
+    return 1;
+
   return 0;
 }