mailing list of musl libc
 help / color / mirror / code / Atom feed
* [PATCH] riscv64: fenv.S: Fix fesetenv(FE_DFL_ENV) failure
@ 2019-12-02 11:06 Ruinland ChuanTzu Tsai
  2019-12-02 16:46 ` Szabolcs Nagy
  2019-12-07 18:00 ` Rich Felker
  0 siblings, 2 replies; 3+ messages in thread
From: Ruinland ChuanTzu Tsai @ 2019-12-02 11:06 UTC (permalink / raw)
  To: musl; +Cc: alankao

Hi all, 
during testing libc-test on RV64,
I happended to encounter a segfault on math/fenv.exe .

When FE_DFL_ENV is passed to fesetenv(),
the very first instruction : lw t1, 0(a0) 
will fail since a0 is -1 .

Here's quick hack - -

git diff -- src/fenv/riscv64/fenv.S
diff --git a/src/fenv/riscv64/fenv.S b/src/fenv/riscv64/fenv.S
index 97f74dd6..06215954 100644
--- a/src/fenv/riscv64/fenv.S
+++ b/src/fenv/riscv64/fenv.S
@@ -45,8 +45,12 @@ fegetenv:
 .global fesetenv
 .type fesetenv, %function
 fesetenv:
+        li t2, -1
+        li t1, 0
+        beq a0, t2, setfpcsr
         lw t1, 0(a0)
-        fscsr t0, t1
+setfpcsr:
+        fscsr t1
         li a0, 0
         ret

And the test case will pass.

Sincerely,
Ruinland Chuan-Tzu Tsai


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-12-07 18:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-02 11:06 [PATCH] riscv64: fenv.S: Fix fesetenv(FE_DFL_ENV) failure Ruinland ChuanTzu Tsai
2019-12-02 16:46 ` Szabolcs Nagy
2019-12-07 18:00 ` Rich Felker

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).