Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / libcxx / include / __utility / convert_to_integral.h
blobadead18e05ee5d6f2b4caaff08a47d19624c3d36
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef _LIBCPP___UTILITY_CONVERT_TO_INTEGRAL_H
10 #define _LIBCPP___UTILITY_CONVERT_TO_INTEGRAL_H
12 #include <__config>
13 #include <__type_traits/enable_if.h>
14 #include <__type_traits/is_enum.h>
15 #include <__type_traits/is_floating_point.h>
16 #include <__type_traits/underlying_type.h>
18 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
19 # pragma GCC system_header
20 #endif
22 _LIBCPP_BEGIN_NAMESPACE_STD
24 inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
25 int __convert_to_integral(int __val) { return __val; }
27 inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
28 unsigned __convert_to_integral(unsigned __val) { return __val; }
30 inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
31 long __convert_to_integral(long __val) { return __val; }
33 inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
34 unsigned long __convert_to_integral(unsigned long __val) { return __val; }
36 inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
37 long long __convert_to_integral(long long __val) { return __val; }
39 inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
40 unsigned long long __convert_to_integral(unsigned long long __val) {return __val; }
42 template<typename _Fp, __enable_if_t<is_floating_point<_Fp>::value, int> = 0>
43 inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
44 long long
45 __convert_to_integral(_Fp __val) { return __val; }
47 #ifndef _LIBCPP_HAS_NO_INT128
48 inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
49 __int128_t __convert_to_integral(__int128_t __val) { return __val; }
51 inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
52 __uint128_t __convert_to_integral(__uint128_t __val) { return __val; }
53 #endif
55 template <class _Tp, bool = is_enum<_Tp>::value>
56 struct __sfinae_underlying_type
58 typedef typename underlying_type<_Tp>::type type;
59 typedef decltype(((type)1) + 0) __promoted_type;
62 template <class _Tp>
63 struct __sfinae_underlying_type<_Tp, false> {};
65 template <class _Tp>
66 inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
67 typename __sfinae_underlying_type<_Tp>::__promoted_type
68 __convert_to_integral(_Tp __val) { return __val; }
70 _LIBCPP_END_NAMESPACE_STD
72 #endif // _LIBCPP___UTILITY_CONVERT_TO_INTEGRAL_H