[libcxx-commits] [libcxx] [libc++] Add std::fpclassify overloads for floating-point. (PR #67913)
Anatolii Malibroda via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Oct 3 11:56:32 PDT 2023
https://github.com/antl-m updated https://github.com/llvm/llvm-project/pull/67913
>From b0f915b0b3184729ed47ab86655c90207f04f941 Mon Sep 17 00:00:00 2001
From: Anatolii Malibroda <tolikmalibroda at gmail.com>
Date: Sun, 1 Oct 2023 14:54:42 +0200
Subject: [PATCH 1/3] [libc++] Add std::fpclassify overloads for
floating-point.
Standard says that implementation of math functions that have floating-point-type parameter should provide an "overload for each cv-unqualified floating-point type".
---
libcxx/include/math.h | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/libcxx/include/math.h b/libcxx/include/math.h
index fdf3231c2978cee..59787fb8408b167 100644
--- a/libcxx/include/math.h
+++ b/libcxx/include/math.h
@@ -387,8 +387,16 @@ namespace __math {
// fpclassify
-template <class _A1, std::__enable_if_t<std::is_floating_point<_A1>::value, int> = 0>
-_LIBCPP_NODISCARD_EXT inline _LIBCPP_HIDE_FROM_ABI int fpclassify(_A1 __x) _NOEXCEPT {
+_LIBCPP_NODISCARD_EXT inline _LIBCPP_HIDE_FROM_ABI int fpclassify(float __x) _NOEXCEPT {
+ return __builtin_fpclassify(FP_NAN, FP_INFINITE, FP_NORMAL, FP_SUBNORMAL, FP_ZERO, __x);
+}
+
+template <class = int>
+_LIBCPP_NODISCARD_EXT inline _LIBCPP_HIDE_FROM_ABI int fpclassify(double __x) _NOEXCEPT {
+ return __builtin_fpclassify(FP_NAN, FP_INFINITE, FP_NORMAL, FP_SUBNORMAL, FP_ZERO, __x);
+}
+
+_LIBCPP_NODISCARD_EXT inline _LIBCPP_HIDE_FROM_ABI int fpclassify(long double __x) _NOEXCEPT {
return __builtin_fpclassify(FP_NAN, FP_INFINITE, FP_NORMAL, FP_SUBNORMAL, FP_ZERO, __x);
}
>From f302d12d91d68ccfa1c1387c88044b9126f1470a Mon Sep 17 00:00:00 2001
From: Anatolii Malibroda <tolikmalibroda at gmail.com>
Date: Mon, 2 Oct 2023 22:05:03 +0200
Subject: [PATCH 2/3] Code review adjustments: added required tests.
---
libcxx/test/std/numerics/c.math/cmath.pass.cpp | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/libcxx/test/std/numerics/c.math/cmath.pass.cpp b/libcxx/test/std/numerics/c.math/cmath.pass.cpp
index e2062cc7ecfd911..fe5e5aa0360c85e 100644
--- a/libcxx/test/std/numerics/c.math/cmath.pass.cpp
+++ b/libcxx/test/std/numerics/c.math/cmath.pass.cpp
@@ -603,12 +603,20 @@ void test_fpclassify()
static_assert((std::is_same<decltype(std::fpclassify(0)), int>::value), "");
static_assert((std::is_same<decltype(std::fpclassify((long double)0)), int>::value), "");
static_assert((std::is_same<decltype(fpclassify(Ambiguous())), Ambiguous>::value), "");
+ static_assert((std::is_same<decltype(fpclassify(Value<float>())), int>::value), "");
+ static_assert((std::is_same<decltype(fpclassify(Value<double>())), int>::value), "");
+ static_assert((std::is_same<decltype(fpclassify(Value<long double>())), int>::value), "");
+ static_assert(noexcept(std::fpclassify((float)0)), "");
+ static_assert(noexcept(std::fpclassify((double)0)), "");
+ static_assert(noexcept(std::fpclassify((long double)0)), "");
+ static_assert(noexcept(std::fpclassify(0)), "");
assert(std::fpclassify(-1.0) == FP_NORMAL);
assert(std::fpclassify(0) == FP_ZERO);
assert(std::fpclassify(1) == FP_NORMAL);
assert(std::fpclassify(-1) == FP_NORMAL);
assert(std::fpclassify(std::numeric_limits<int>::max()) == FP_NORMAL);
assert(std::fpclassify(std::numeric_limits<int>::min()) == FP_NORMAL);
+ assert(std::fpclassify(Value<double, 1>()) == FP_NORMAL);
}
void test_isfinite()
>From a9a5c2a6fd158a77c34d14fb0671e8dfbbe7ffa2 Mon Sep 17 00:00:00 2001
From: Anatolii Malibroda <tolikmalibroda at gmail.com>
Date: Tue, 3 Oct 2023 20:55:06 +0200
Subject: [PATCH 3/3] Fixed failing noexcept tests on C++03.
---
libcxx/test/std/numerics/c.math/cmath.pass.cpp | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/libcxx/test/std/numerics/c.math/cmath.pass.cpp b/libcxx/test/std/numerics/c.math/cmath.pass.cpp
index fe5e5aa0360c85e..11a3de748cb7a69 100644
--- a/libcxx/test/std/numerics/c.math/cmath.pass.cpp
+++ b/libcxx/test/std/numerics/c.math/cmath.pass.cpp
@@ -606,10 +606,10 @@ void test_fpclassify()
static_assert((std::is_same<decltype(fpclassify(Value<float>())), int>::value), "");
static_assert((std::is_same<decltype(fpclassify(Value<double>())), int>::value), "");
static_assert((std::is_same<decltype(fpclassify(Value<long double>())), int>::value), "");
- static_assert(noexcept(std::fpclassify((float)0)), "");
- static_assert(noexcept(std::fpclassify((double)0)), "");
- static_assert(noexcept(std::fpclassify((long double)0)), "");
- static_assert(noexcept(std::fpclassify(0)), "");
+ ASSERT_NOEXCEPT(std::fpclassify((float)0));
+ ASSERT_NOEXCEPT(std::fpclassify((double)0));
+ ASSERT_NOEXCEPT(std::fpclassify((long double)0));
+ ASSERT_NOEXCEPT(std::fpclassify(0));
assert(std::fpclassify(-1.0) == FP_NORMAL);
assert(std::fpclassify(0) == FP_ZERO);
assert(std::fpclassify(1) == FP_NORMAL);
More information about the libcxx-commits
mailing list