150
|
1 // -*- C++ -*-
|
236
|
2 //===----------------------------------------------------------------------===//
|
150
|
3 //
|
|
4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
5 // See https://llvm.org/LICENSE.txt for license information.
|
|
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
7 //
|
|
8 //===----------------------------------------------------------------------===//
|
|
9
|
|
10 #ifndef _LIBCPP_CSTDDEF
|
|
11 #define _LIBCPP_CSTDDEF
|
|
12
|
|
13 /*
|
|
14 cstddef synopsis
|
|
15
|
|
16 Macros:
|
|
17
|
|
18 offsetof(type,member-designator)
|
|
19 NULL
|
|
20
|
|
21 namespace std
|
|
22 {
|
|
23
|
|
24 Types:
|
|
25
|
|
26 ptrdiff_t
|
|
27 size_t
|
173
|
28 max_align_t // C++11
|
150
|
29 nullptr_t
|
|
30 byte // C++17
|
|
31
|
|
32 } // std
|
|
33
|
|
34 */
|
|
35
|
236
|
36 #include <__assert> // all public C++ headers provide the assertion handler
|
150
|
37 #include <__config>
|
236
|
38 #include <__type_traits/enable_if.h>
|
|
39 #include <__type_traits/integral_constant.h>
|
|
40 #include <__type_traits/is_integral.h>
|
150
|
41 #include <version>
|
|
42
|
236
|
43 #include <stddef.h>
|
|
44
|
|
45 #ifndef _LIBCPP_STDDEF_H
|
|
46 # error <cstddef> tried including <stddef.h> but didn't find libc++'s <stddef.h> header. \
|
|
47 This usually means that your header search paths are not configured properly. \
|
|
48 The header search paths should contain the C++ Standard Library headers before \
|
|
49 any C Standard Library, and you are probably using compiler flags that make that \
|
|
50 not be the case.
|
|
51 #endif
|
|
52
|
150
|
53 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
236
|
54 # pragma GCC system_header
|
150
|
55 #endif
|
|
56
|
|
57 _LIBCPP_BEGIN_NAMESPACE_STD
|
|
58
|
236
|
59 using ::nullptr_t;
|
221
|
60 using ::ptrdiff_t _LIBCPP_USING_IF_EXISTS;
|
|
61 using ::size_t _LIBCPP_USING_IF_EXISTS;
|
150
|
62
|
173
|
63 #if !defined(_LIBCPP_CXX03_LANG)
|
221
|
64 using ::max_align_t _LIBCPP_USING_IF_EXISTS;
|
173
|
65 #endif
|
|
66
|
150
|
67 _LIBCPP_END_NAMESPACE_STD
|
|
68
|
252
|
69 #if _LIBCPP_STD_VER >= 17
|
150
|
70 namespace std // purposefully not versioned
|
|
71 {
|
|
72 enum class byte : unsigned char {};
|
|
73
|
236
|
74 _LIBCPP_HIDE_FROM_ABI constexpr byte operator| (byte __lhs, byte __rhs) noexcept
|
150
|
75 {
|
|
76 return static_cast<byte>(
|
|
77 static_cast<unsigned char>(
|
|
78 static_cast<unsigned int>(__lhs) | static_cast<unsigned int>(__rhs)
|
|
79 ));
|
|
80 }
|
|
81
|
236
|
82 _LIBCPP_HIDE_FROM_ABI constexpr byte& operator|=(byte& __lhs, byte __rhs) noexcept
|
150
|
83 { return __lhs = __lhs | __rhs; }
|
|
84
|
236
|
85 _LIBCPP_HIDE_FROM_ABI constexpr byte operator& (byte __lhs, byte __rhs) noexcept
|
150
|
86 {
|
|
87 return static_cast<byte>(
|
|
88 static_cast<unsigned char>(
|
|
89 static_cast<unsigned int>(__lhs) & static_cast<unsigned int>(__rhs)
|
|
90 ));
|
|
91 }
|
|
92
|
236
|
93 _LIBCPP_HIDE_FROM_ABI constexpr byte& operator&=(byte& __lhs, byte __rhs) noexcept
|
150
|
94 { return __lhs = __lhs & __rhs; }
|
|
95
|
236
|
96 _LIBCPP_HIDE_FROM_ABI constexpr byte operator^ (byte __lhs, byte __rhs) noexcept
|
150
|
97 {
|
|
98 return static_cast<byte>(
|
|
99 static_cast<unsigned char>(
|
|
100 static_cast<unsigned int>(__lhs) ^ static_cast<unsigned int>(__rhs)
|
|
101 ));
|
|
102 }
|
|
103
|
236
|
104 _LIBCPP_HIDE_FROM_ABI constexpr byte& operator^=(byte& __lhs, byte __rhs) noexcept
|
150
|
105 { return __lhs = __lhs ^ __rhs; }
|
|
106
|
236
|
107 _LIBCPP_HIDE_FROM_ABI constexpr byte operator~ (byte __b) noexcept
|
150
|
108 {
|
|
109 return static_cast<byte>(
|
|
110 static_cast<unsigned char>(
|
|
111 ~static_cast<unsigned int>(__b)
|
|
112 ));
|
|
113 }
|
236
|
114
|
|
115 template <class _Tp>
|
|
116 using _EnableByteOverload = __enable_if_t<is_integral<_Tp>::value, byte>;
|
|
117
|
173
|
118 template <class _Integer>
|
236
|
119 _LIBCPP_HIDE_FROM_ABI constexpr _EnableByteOverload<_Integer> &
|
173
|
120 operator<<=(byte& __lhs, _Integer __shift) noexcept
|
|
121 { return __lhs = __lhs << __shift; }
|
150
|
122
|
173
|
123 template <class _Integer>
|
236
|
124 _LIBCPP_HIDE_FROM_ABI constexpr _EnableByteOverload<_Integer>
|
173
|
125 operator<< (byte __lhs, _Integer __shift) noexcept
|
|
126 { return static_cast<byte>(static_cast<unsigned char>(static_cast<unsigned int>(__lhs) << __shift)); }
|
|
127
|
|
128 template <class _Integer>
|
236
|
129 _LIBCPP_HIDE_FROM_ABI constexpr _EnableByteOverload<_Integer> &
|
173
|
130 operator>>=(byte& __lhs, _Integer __shift) noexcept
|
|
131 { return __lhs = __lhs >> __shift; }
|
|
132
|
|
133 template <class _Integer>
|
236
|
134 _LIBCPP_HIDE_FROM_ABI constexpr _EnableByteOverload<_Integer>
|
173
|
135 operator>> (byte __lhs, _Integer __shift) noexcept
|
|
136 { return static_cast<byte>(static_cast<unsigned char>(static_cast<unsigned int>(__lhs) >> __shift)); }
|
|
137
|
|
138 template <class _Integer, class = _EnableByteOverload<_Integer> >
|
236
|
139 _LIBCPP_NODISCARD_EXT _LIBCPP_HIDE_FROM_ABI constexpr _Integer
|
173
|
140 to_integer(byte __b) noexcept { return static_cast<_Integer>(__b); }
|
236
|
141
|
|
142 } // namespace std
|
150
|
143
|
|
144 #endif
|
|
145
|
221
|
146 #endif // _LIBCPP_CSTDDEF
|