mailing list of musl libc
 help / color / mirror / code / Atom feed
* [musl] [PATCH v2] math: add riscv64 llround[f]/lround[f]
@ 2024-06-13  8:30 Meng Zhuo
  0 siblings, 0 replies; only message in thread
From: Meng Zhuo @ 2024-06-13  8:30 UTC (permalink / raw)
  To: musl

---
 src/math/riscv64/llround.c  | 16 ++++++++++++++++
 src/math/riscv64/llroundf.c | 16 ++++++++++++++++
 src/math/riscv64/lround.c   | 16 ++++++++++++++++
 src/math/riscv64/lroundf.c  | 16 ++++++++++++++++
 4 files changed, 64 insertions(+)
 create mode 100644 src/math/riscv64/llround.c
 create mode 100644 src/math/riscv64/llroundf.c
 create mode 100644 src/math/riscv64/lround.c
 create mode 100644 src/math/riscv64/lroundf.c
---
v1 -> v2:
* adds lround[f]
---

diff --git a/src/math/riscv64/llround.c b/src/math/riscv64/llround.c
new file mode 100644
index 00000000..fa646b5a
--- /dev/null
+++ b/src/math/riscv64/llround.c
@@ -0,0 +1,16 @@
+#include <math.h>
+
+#if __riscv_flen >= 64
+
+long long llround(double x)
+{
+	long long n;
+	__asm__ ("fcvt.l.d %0, %1, rmm" : "=r"(n) : "f"(x));
+	return n;
+}
+
+#else
+
+#include "../llround.c"
+
+#endif
diff --git a/src/math/riscv64/llroundf.c b/src/math/riscv64/llroundf.c
new file mode 100644
index 00000000..db2d58df
--- /dev/null
+++ b/src/math/riscv64/llroundf.c
@@ -0,0 +1,16 @@
+#include <math.h>
+
+#if __riscv_flen >= 32
+
+long long llroundf(float x)
+{
+	long long n;
+	__asm__ ("fcvt.l.s %0, %1, rmm" : "=r"(n) : "f"(x));
+	return n;
+}
+
+#else
+
+#include "../llroundf.c"
+
+#endif
diff --git a/src/math/riscv64/lround.c b/src/math/riscv64/lround.c
new file mode 100644
index 00000000..4535d4b6
--- /dev/null
+++ b/src/math/riscv64/lround.c
@@ -0,0 +1,16 @@
+#include <math.h>
+
+#if __riscv_flen >= 64
+
+long lround(double x)
+{
+	long n;
+	__asm__ ("fcvt.w.d %0, %1, rmm" : "=r"(n) : "f"(x));
+	return n;
+}
+
+#else
+
+#include "../lround.c"
+
+#endif
diff --git a/src/math/riscv64/lroundf.c b/src/math/riscv64/lroundf.c
new file mode 100644
index 00000000..9779c1cd
--- /dev/null
+++ b/src/math/riscv64/lroundf.c
@@ -0,0 +1,16 @@
+#include <math.h>
+
+#if __riscv_flen >= 32
+
+long lroundf(float x)
+{
+	long n;
+	__asm__ ("fcvt.w.s %0, %1, rmm" : "=r"(n) : "f"(x));
+	return n;
+}
+
+#else
+
+#include "../lroundf.c"
+
+#endif
-- 
2.39.2


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2024-06-13  8:30 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-06-13  8:30 [musl] [PATCH v2] math: add riscv64 llround[f]/lround[f] Meng Zhuo

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).