2 //===----------------------------------------------------------------------===//
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
8 //===----------------------------------------------------------------------===//
10 #ifndef _LIBCPP_CSTDDEF
11 #define _LIBCPP_CSTDDEF
18 offsetof(type,member-designator)
36 #include <__assert> // all public C++ headers provide the assertion handler
38 #include <__type_traits/enable_if.h>
39 #include <__type_traits/integral_constant.h>
40 #include <__type_traits/is_integral.h>
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 \
53 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
54 # pragma GCC system_header
57 _LIBCPP_BEGIN_NAMESPACE_STD
60 using ::ptrdiff_t _LIBCPP_USING_IF_EXISTS;
61 using ::size_t _LIBCPP_USING_IF_EXISTS;
63 #if !defined(_LIBCPP_CXX03_LANG)
64 using ::max_align_t _LIBCPP_USING_IF_EXISTS;
67 _LIBCPP_END_NAMESPACE_STD
69 #if _LIBCPP_STD_VER >= 17
70 namespace std // purposefully not versioned
72 enum class byte : unsigned char {};
74 _LIBCPP_HIDE_FROM_ABI inline constexpr byte operator|(byte __lhs, byte __rhs) noexcept {
75 return static_cast<byte>(
76 static_cast<unsigned char>(static_cast<unsigned int>(__lhs) | static_cast<unsigned int>(__rhs)));
79 _LIBCPP_HIDE_FROM_ABI inline constexpr byte& operator|=(byte& __lhs, byte __rhs) noexcept {
80 return __lhs = __lhs | __rhs;
83 _LIBCPP_HIDE_FROM_ABI inline constexpr byte operator&(byte __lhs, byte __rhs) noexcept {
84 return static_cast<byte>(
85 static_cast<unsigned char>(static_cast<unsigned int>(__lhs) & static_cast<unsigned int>(__rhs)));
88 _LIBCPP_HIDE_FROM_ABI inline constexpr byte& operator&=(byte& __lhs, byte __rhs) noexcept {
89 return __lhs = __lhs & __rhs;
92 _LIBCPP_HIDE_FROM_ABI inline constexpr byte operator^(byte __lhs, byte __rhs) noexcept {
93 return static_cast<byte>(
94 static_cast<unsigned char>(static_cast<unsigned int>(__lhs) ^ static_cast<unsigned int>(__rhs)));
97 _LIBCPP_HIDE_FROM_ABI inline constexpr byte& operator^=(byte& __lhs, byte __rhs) noexcept {
98 return __lhs = __lhs ^ __rhs;
101 _LIBCPP_HIDE_FROM_ABI inline constexpr byte operator~(byte __b) noexcept {
102 return static_cast<byte>(static_cast<unsigned char>(~static_cast<unsigned int>(__b)));
105 template <class _Integer, __enable_if_t<is_integral<_Integer>::value, int> = 0>
106 _LIBCPP_HIDE_FROM_ABI constexpr byte& operator<<=(byte& __lhs, _Integer __shift) noexcept {
107 return __lhs = __lhs << __shift;
110 template <class _Integer, __enable_if_t<is_integral<_Integer>::value, int> = 0>
111 _LIBCPP_HIDE_FROM_ABI constexpr byte operator<<(byte __lhs, _Integer __shift) noexcept {
112 return static_cast<byte>(static_cast<unsigned char>(static_cast<unsigned int>(__lhs) << __shift));
115 template <class _Integer, __enable_if_t<is_integral<_Integer>::value, int> = 0>
116 _LIBCPP_HIDE_FROM_ABI constexpr byte& operator>>=(byte& __lhs, _Integer __shift) noexcept {
117 return __lhs = __lhs >> __shift;
120 template <class _Integer, __enable_if_t<is_integral<_Integer>::value, int> = 0>
121 _LIBCPP_HIDE_FROM_ABI constexpr byte operator>>(byte __lhs, _Integer __shift) noexcept {
122 return static_cast<byte>(static_cast<unsigned char>(static_cast<unsigned int>(__lhs) >> __shift));
125 template <class _Integer, __enable_if_t<is_integral<_Integer>::value, int> = 0>
126 _LIBCPP_NODISCARD_EXT _LIBCPP_HIDE_FROM_ABI constexpr _Integer to_integer(byte __b) noexcept {
127 return static_cast<_Integer>(__b);
134 #endif // _LIBCPP_CSTDDEF