[libc-commits] [PATCH] D145593: [libc] Add support for sqrt in riscv
Mikhail Ramalho via Phabricator via libc-commits
libc-commits at lists.llvm.org
Wed Mar 8 09:29:50 PST 2023
mikhail.ramalho created this revision.
mikhail.ramalho added a reviewer: sivachandra.
Herald added subscribers: libc-commits, luke, VincentWu, vkmr, frasercrmck, ecnelises, evandro, luismarques, apazos, sameer.abuasal, tschuett, s.egerton, Jim, benna, psnobl, jocewei, PkmX, the_o, brucehoult, MartinMosbeck, rogfer01, edward-jones, zzheng, jrtc27, shiva0217, kito-cheng, niosHD, sabuasal, simoncook, johnrusso, rbar, asb, arichardson.
Herald added projects: libc-project, All.
mikhail.ramalho requested review of this revision.
Herald added subscribers: pcwang-thead, eopXD.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D145593
Files:
libc/src/__support/FPUtil/riscv64/sqrt.h
libc/src/__support/FPUtil/sqrt.h
Index: libc/src/__support/FPUtil/sqrt.h
===================================================================
--- libc/src/__support/FPUtil/sqrt.h
+++ libc/src/__support/FPUtil/sqrt.h
@@ -15,6 +15,8 @@
#include "x86_64/sqrt.h"
#elif defined(LIBC_TARGET_ARCH_IS_AARCH64)
#include "aarch64/sqrt.h"
+#elif defined(LIBC_TARGET_ARCH_IS_RISCV64)
+#include "riscv64/sqrt.h"
#else
#include "generic/sqrt.h"
Index: libc/src/__support/FPUtil/riscv64/sqrt.h
===================================================================
--- /dev/null
+++ libc/src/__support/FPUtil/riscv64/sqrt.h
@@ -0,0 +1,39 @@
+//===-- Square root of IEEE 754 floating point numbers ----------*- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_LIBC_SRC_SUPPORT_FPUTIL_RISCV64_SQRT_H
+#define LLVM_LIBC_SRC_SUPPORT_FPUTIL_RISCV64_SQRT_H
+
+#include "src/__support/common.h"
+#include "src/__support/macros/properties/architectures.h"
+
+#if !defined(LIBC_TARGET_ARCH_IS_RISCV64)
+#error "Invalid include"
+#endif
+
+#include "src/__support/FPUtil/generic/sqrt.h"
+
+namespace __llvm_libc {
+namespace fputil {
+
+template <> LIBC_INLINE float sqrt<float>(float x) {
+ float result;
+ __asm__ __volatile__("fsqrt.s %0, %1\n\t" : "=f"(result) : "f"(x));
+ return result;
+}
+
+template <> LIBC_INLINE double sqrt<double>(double x) {
+ double result;
+ __asm__ __volatile__("fsqrt.d %0, %1\n\t" : "=f"(result) : "f"(x));
+ return result;
+}
+
+} // namespace fputil
+} // namespace __llvm_libc
+
+#endif // LLVM_LIBC_SRC_SUPPORT_FPUTIL_RISCV64_SQRT_H
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D145593.503411.patch
Type: text/x-patch
Size: 1797 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20230308/76cc9b27/attachment-0001.bin>
More information about the libc-commits
mailing list