[libc-commits] [libc] a58b282 - [libc] Add hardware implementations of x86_64 sqrt functions.
Siva Chandra Reddy via libc-commits
libc-commits at lists.llvm.org
Mon Jun 14 14:35:01 PDT 2021
Author: Siva Chandra Reddy
Date: 2021-06-14T21:25:37Z
New Revision: a58b2827feceaa27193318a12e3a06893eabdcb6
URL: https://github.com/llvm/llvm-project/commit/a58b2827feceaa27193318a12e3a06893eabdcb6
DIFF: https://github.com/llvm/llvm-project/commit/a58b2827feceaa27193318a12e3a06893eabdcb6.diff
LOG: [libc] Add hardware implementations of x86_64 sqrt functions.
Added:
libc/src/math/x86_64/sqrt.cpp
libc/src/math/x86_64/sqrtf.cpp
libc/src/math/x86_64/sqrtl.cpp
Modified:
libc/src/math/x86_64/CMakeLists.txt
Removed:
################################################################################
diff --git a/libc/src/math/x86_64/CMakeLists.txt b/libc/src/math/x86_64/CMakeLists.txt
index cd129e3eefb75..d2a48231b787e 100644
--- a/libc/src/math/x86_64/CMakeLists.txt
+++ b/libc/src/math/x86_64/CMakeLists.txt
@@ -27,3 +27,33 @@ add_entrypoint_object(
COMPILE_OPTIONS
-O2
)
+
+add_entrypoint_object(
+ sqrt
+ SRCS
+ sqrt.cpp
+ HDRS
+ ../sqrt.h
+ COMPILE_OPTIONS
+ -O2
+)
+
+add_entrypoint_object(
+ sqrtf
+ SRCS
+ sqrtf.cpp
+ HDRS
+ ../sqrtf.h
+ COMPILE_OPTIONS
+ -O2
+)
+
+add_entrypoint_object(
+ sqrtl
+ SRCS
+ sqrtl.cpp
+ HDRS
+ ../sqrtl.h
+ COMPILE_OPTIONS
+ -O2
+)
diff --git a/libc/src/math/x86_64/sqrt.cpp b/libc/src/math/x86_64/sqrt.cpp
new file mode 100644
index 0000000000000..5d4e9424e6030
--- /dev/null
+++ b/libc/src/math/x86_64/sqrt.cpp
@@ -0,0 +1,20 @@
+//===-- Implementation of the sqrt function for x86_64 --------------------===//
+//
+// 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
+//
+//===----------------------------------------------------------------------===//
+
+#include "src/math/sqrt.h"
+#include "src/__support/common.h"
+
+namespace __llvm_libc {
+
+LLVM_LIBC_FUNCTION(double, sqrt, (double x)) {
+ double result;
+ __asm__ __volatile__("sqrtsd %x1, %x0" : "=x"(result) : "x"(x));
+ return result;
+}
+
+} // namespace __llvm_libc
diff --git a/libc/src/math/x86_64/sqrtf.cpp b/libc/src/math/x86_64/sqrtf.cpp
new file mode 100644
index 0000000000000..51d22dff2cbcf
--- /dev/null
+++ b/libc/src/math/x86_64/sqrtf.cpp
@@ -0,0 +1,20 @@
+//===-- Implementation of the sqrtf function for x86_64 -------------------===//
+//
+// 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
+//
+//===----------------------------------------------------------------------===//
+
+#include "src/math/sqrtf.h"
+#include "src/__support/common.h"
+
+namespace __llvm_libc {
+
+LLVM_LIBC_FUNCTION(float, sqrtf, (float x)) {
+ float result;
+ __asm__ __volatile__("sqrtss %x1, %x0" : "=x"(result) : "x"(x));
+ return result;
+}
+
+} // namespace __llvm_libc
diff --git a/libc/src/math/x86_64/sqrtl.cpp b/libc/src/math/x86_64/sqrtl.cpp
new file mode 100644
index 0000000000000..8b0c39e95fdd8
--- /dev/null
+++ b/libc/src/math/x86_64/sqrtl.cpp
@@ -0,0 +1,20 @@
+//===-- Implementation of the sqrtl function for x86_64 -------------------===//
+//
+// 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
+//
+//===----------------------------------------------------------------------===//
+
+#include "src/math/sqrtl.h"
+#include "src/__support/common.h"
+
+namespace __llvm_libc {
+
+LLVM_LIBC_FUNCTION(long double, sqrtl, (long double x)) {
+ long double result;
+ __asm__ __volatile__("fsqrt" : "=t"(result) : "t"(x));
+ return result;
+}
+
+} // namespace __llvm_libc
More information about the libc-commits
mailing list