|
Message-Id: <20230728061955.20156-1-zhang_fei_0403@163.com> Date: Fri, 28 Jul 2023 14:19:54 +0800 From: zhangfei <zhang_fei_0403@....com> To: musl@...ts.openwall.com Cc: dalias@...c.org, zhangfei <zhangfei@...iscas.ac.cn> Subject: [PATCH 0/1] RISC-V: Add math functions From: zhangfei <zhangfei@...iscas.ac.cn> Hi, I added 8 math function implementations for riscv64.These functions are implemented using riscv floating-point instructions instead of C implementations.There is a similar implementation in glibc: [1] https://sourceware.org/git/?p=glibc.git;a=blob;f=sysdeps/riscv/rv64/rvd/s_llrint.c;h=0fbe8e2d68977f05e2f37a2dc52e00ce005c37b8;hb=HEAD [2] https://sourceware.org/git/?p=glibc.git;a=blob;f=sysdeps/riscv/rv64/rvd/s_llround.c;h=f3c6275c9f9b81e9c4ce626be0d379c005eee986;hb=HEAD ... I used libc-test on the RISC-V SiFive U74 to do the test,and there was no error in lrint and other test items. Thanks, Zhang Fei zhangfei (1): RISC-V: Add some mathematical functions to riscv64 src/math/riscv64/llrint.c | 16 ++++++++++++++++ src/math/riscv64/llrintf.c | 16 ++++++++++++++++ src/math/riscv64/llround.c | 16 ++++++++++++++++ src/math/riscv64/llroundf.c | 16 ++++++++++++++++ src/math/riscv64/lrint.c | 16 ++++++++++++++++ src/math/riscv64/lrintf.c | 16 ++++++++++++++++ src/math/riscv64/lround.c | 16 ++++++++++++++++ src/math/riscv64/lroundf.c | 16 ++++++++++++++++ 8 files changed, 128 insertions(+) create mode 100644 src/math/riscv64/llrint.c create mode 100644 src/math/riscv64/llrintf.c create mode 100644 src/math/riscv64/llround.c create mode 100644 src/math/riscv64/llroundf.c create mode 100644 src/math/riscv64/lrint.c create mode 100644 src/math/riscv64/lrintf.c create mode 100644 src/math/riscv64/lround.c create mode 100644 src/math/riscv64/lroundf.c
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.