Patch by Denis Yaroshevskiy (denis.yaroshevskij@gmail.com) The rational and measurements can be found in the bug description: https://bugs.llvm.org/show_bug.cgi?id=39129 Reviewed as https://reviews.llvm.org/D52697 git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@345525 91177308-0d34-0410-b5e6-96231b3b80d8
60 lines
1.6 KiB
C++
60 lines
1.6 KiB
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
// Source Licenses. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// <algorithm>
|
|
|
|
// template <typename _Tp> _Tp __half_positive(const _Tp&);
|
|
|
|
// __half_positive divide integer number by 2 as unsigned number
|
|
// if it's safe to do so. It can be an important optimization for lower bound,
|
|
// for example.
|
|
|
|
#include <algorithm>
|
|
#include <cassert>
|
|
#include <limits>
|
|
#include <type_traits>
|
|
|
|
#include "test_macros.h"
|
|
#include "user_defined_integral.hpp"
|
|
|
|
namespace {
|
|
|
|
template <class IntType, class UnderlyingType = IntType>
|
|
TEST_CONSTEXPR bool test(IntType max_v = IntType(std::numeric_limits<UnderlyingType>::max())) {
|
|
return std::__half_positive(max_v) == max_v / 2;
|
|
}
|
|
|
|
} // namespace
|
|
|
|
int main()
|
|
{
|
|
{
|
|
assert(test<char>());
|
|
assert(test<int>());
|
|
assert(test<long>());
|
|
assert((test<UserDefinedIntegral<int>, int>()));
|
|
assert(test<size_t>());
|
|
#if !defined(_LIBCPP_HAS_NO_INT128)
|
|
assert(test<__int128_t>());
|
|
#endif // !defined(_LIBCPP_HAS_NO_INT128)
|
|
}
|
|
|
|
#if TEST_STD_VER >= 11
|
|
{
|
|
static_assert(test<char>(), "");
|
|
static_assert(test<int>(), "");
|
|
static_assert(test<long>(), "");
|
|
static_assert(test<size_t>(), "");
|
|
#if !defined(_LIBCPP_HAS_NO_INT128)
|
|
static_assert(test<__int128_t>(), "");
|
|
#endif // !defined(_LIBCPP_HAS_NO_INT128)
|
|
}
|
|
#endif // TEST_STD_VER >= 11
|
|
}
|