-
Notifications
You must be signed in to change notification settings - Fork 12.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Why Since 18th of August, the floating point comparison builtin ``__builtin_signbit`` is available in Clang as constant expression (#94118). ## What * Implement `constexpr` for `std::signbit()` as defined by [P0533R9](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2021/p0533r9.pdf) (new C++23 feature) * Restrict execution of tests to tip-of-trunk Clang as builtin is not yet available (note that builtin is available in GCC)
- Loading branch information
1 parent
eae1d61
commit 1a12647
Showing
4 changed files
with
98 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// 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 | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
// bool signbit(floating-point-type x); // constexpr since C++23 | ||
|
||
// We don't control the implementation on windows | ||
// UNSUPPORTED: windows | ||
|
||
// These compilers don't support constexpr `__builtin_signbit` yet. | ||
// UNSUPPORTED: clang-17, clang-18, clang-19, apple-clang-15, apple-clang-16 | ||
|
||
#include <cassert> | ||
#include <cmath> | ||
#include <limits> | ||
|
||
#include "test_macros.h" | ||
#include "type_algorithms.h" | ||
|
||
struct TestFloat { | ||
template <class T> | ||
static TEST_CONSTEXPR_CXX23 bool test() { | ||
assert(!std::signbit(T(0))); | ||
assert(!std::signbit(std::numeric_limits<T>::min())); | ||
assert(!std::signbit(std::numeric_limits<T>::denorm_min())); | ||
assert(!std::signbit(std::numeric_limits<T>::max())); | ||
assert(!std::signbit(std::numeric_limits<T>::infinity())); | ||
assert(!std::signbit(std::numeric_limits<T>::quiet_NaN())); | ||
assert(!std::signbit(std::numeric_limits<T>::signaling_NaN())); | ||
assert(std::signbit(-T(0))); | ||
assert(std::signbit(-std::numeric_limits<T>::infinity())); | ||
assert(std::signbit(std::numeric_limits<T>::lowest())); | ||
|
||
return true; | ||
} | ||
|
||
template <class T> | ||
TEST_CONSTEXPR_CXX23 void operator()() { | ||
test<T>(); | ||
#if TEST_STD_VER >= 23 | ||
static_assert(test<T>()); | ||
#endif | ||
} | ||
}; | ||
|
||
struct TestInt { | ||
template <class T> | ||
static TEST_CONSTEXPR_CXX23 bool test() { | ||
assert(!std::signbit(std::numeric_limits<T>::max())); | ||
assert(!std::signbit(T(0))); | ||
if (std::is_unsigned<T>::value) { | ||
assert(!std::signbit(std::numeric_limits<T>::lowest())); | ||
} else { | ||
assert(std::signbit(std::numeric_limits<T>::lowest())); | ||
} | ||
|
||
return true; | ||
} | ||
|
||
template <class T> | ||
TEST_CONSTEXPR_CXX23 void operator()() { | ||
test<T>(); | ||
#if TEST_STD_VER >= 23 | ||
static_assert(test<T>()); | ||
#endif | ||
} | ||
}; | ||
|
||
int main(int, char**) { | ||
types::for_each(types::floating_point_types(), TestFloat()); | ||
types::for_each(types::integral_types(), TestInt()); | ||
|
||
return 0; | ||
} |