1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
//===-- A self contained equivalent of std::limits --------------*- C++ -*-===//
//
// 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
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_LIBC_SRC___SUPPORT_CPP_LIMITS_H
#define LLVM_LIBC_SRC___SUPPORT_CPP_LIMITS_H
#include "hdr/limits_macros.h" // CHAR_BIT
#include "src/__support/CPP/type_traits/is_integral.h"
#include "src/__support/CPP/type_traits/is_signed.h"
#include "src/__support/macros/attributes.h" // LIBC_INLINE
#include "src/__support/macros/config.h"
#include "src/__support/macros/properties/types.h" // LIBC_TYPES_HAS_INT128
namespace LIBC_NAMESPACE_DECL {
namespace cpp {
namespace internal {
template <typename T, T min_value, T max_value> struct integer_impl {
static_assert(cpp::is_integral_v<T>);
LIBC_INLINE static constexpr T max() { return max_value; }
LIBC_INLINE static constexpr T min() { return min_value; }
LIBC_INLINE_VAR static constexpr int digits =
CHAR_BIT * sizeof(T) - cpp::is_signed_v<T>;
};
} // namespace internal
template <class T> struct numeric_limits {};
// TODO: Add numeric_limits specializations as needed for new types.
template <>
struct numeric_limits<short>
: public internal::integer_impl<short, SHRT_MIN, SHRT_MAX> {};
template <>
struct numeric_limits<unsigned short>
: public internal::integer_impl<unsigned short, 0, USHRT_MAX> {};
template <>
struct numeric_limits<int>
: public internal::integer_impl<int, INT_MIN, INT_MAX> {};
template <>
struct numeric_limits<unsigned int>
: public internal::integer_impl<unsigned int, 0, UINT_MAX> {};
template <>
struct numeric_limits<long>
: public internal::integer_impl<long, LONG_MIN, LONG_MAX> {};
template <>
struct numeric_limits<unsigned long>
: public internal::integer_impl<unsigned long, 0, ULONG_MAX> {};
template <>
struct numeric_limits<long long>
: public internal::integer_impl<long long, LLONG_MIN, LLONG_MAX> {};
template <>
struct numeric_limits<unsigned long long>
: public internal::integer_impl<unsigned long long, 0, ULLONG_MAX> {};
template <>
struct numeric_limits<char>
: public internal::integer_impl<char, CHAR_MIN, CHAR_MAX> {};
template <>
struct numeric_limits<signed char>
: public internal::integer_impl<signed char, SCHAR_MIN, SCHAR_MAX> {};
template <>
struct numeric_limits<unsigned char>
: public internal::integer_impl<unsigned char, 0, UCHAR_MAX> {};
#ifdef LIBC_TYPES_HAS_INT128
// On platform where UInt128 resolves to __uint128_t, this specialization
// provides the limits of UInt128.
template <>
struct numeric_limits<__uint128_t>
: public internal::integer_impl<__uint128_t, 0, ~__uint128_t(0)> {};
#endif
} // namespace cpp
} // namespace LIBC_NAMESPACE_DECL
#endif // LLVM_LIBC_SRC___SUPPORT_CPP_LIMITS_H
|