10b57cec5SDimitry Andric// -*- C++ -*- 2349cc55cSDimitry Andric//===----------------------------------------------------------------------===// 30b57cec5SDimitry Andric// 40b57cec5SDimitry Andric// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 50b57cec5SDimitry Andric// See https://llvm.org/LICENSE.txt for license information. 60b57cec5SDimitry Andric// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 70b57cec5SDimitry Andric// 80b57cec5SDimitry Andric//===----------------------------------------------------------------------===// 90b57cec5SDimitry Andric 100b57cec5SDimitry Andric#ifndef _LIBCPP_CSTDDEF 110b57cec5SDimitry Andric#define _LIBCPP_CSTDDEF 120b57cec5SDimitry Andric 130b57cec5SDimitry Andric/* 140b57cec5SDimitry Andric cstddef synopsis 150b57cec5SDimitry Andric 160b57cec5SDimitry AndricMacros: 170b57cec5SDimitry Andric 180b57cec5SDimitry Andric offsetof(type,member-designator) 190b57cec5SDimitry Andric NULL 200b57cec5SDimitry Andric 210b57cec5SDimitry Andricnamespace std 220b57cec5SDimitry Andric{ 230b57cec5SDimitry Andric 240b57cec5SDimitry AndricTypes: 250b57cec5SDimitry Andric 260b57cec5SDimitry Andric ptrdiff_t 270b57cec5SDimitry Andric size_t 285ffd83dbSDimitry Andric max_align_t // C++11 290b57cec5SDimitry Andric nullptr_t 300b57cec5SDimitry Andric byte // C++17 310b57cec5SDimitry Andric 320b57cec5SDimitry Andric} // std 330b57cec5SDimitry Andric 340b57cec5SDimitry Andric*/ 350b57cec5SDimitry Andric 360b57cec5SDimitry Andric#include <__config> 3781ad6265SDimitry Andric#include <__type_traits/enable_if.h> 3881ad6265SDimitry Andric#include <__type_traits/integral_constant.h> 3981ad6265SDimitry Andric#include <__type_traits/is_integral.h> 400b57cec5SDimitry Andric#include <version> 410b57cec5SDimitry Andric 42bdd1243dSDimitry Andric#include <stddef.h> 43bdd1243dSDimitry Andric 44bdd1243dSDimitry Andric#ifndef _LIBCPP_STDDEF_H 45bdd1243dSDimitry Andric# error <cstddef> tried including <stddef.h> but didn't find libc++'s <stddef.h> header. \ 46bdd1243dSDimitry Andric This usually means that your header search paths are not configured properly. \ 47bdd1243dSDimitry Andric The header search paths should contain the C++ Standard Library headers before \ 48bdd1243dSDimitry Andric any C Standard Library, and you are probably using compiler flags that make that \ 49bdd1243dSDimitry Andric not be the case. 50bdd1243dSDimitry Andric#endif 51bdd1243dSDimitry Andric 520b57cec5SDimitry Andric#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) 530b57cec5SDimitry Andric# pragma GCC system_header 540b57cec5SDimitry Andric#endif 550b57cec5SDimitry Andric 560b57cec5SDimitry Andric_LIBCPP_BEGIN_NAMESPACE_STD 570b57cec5SDimitry Andric 5881ad6265SDimitry Andricusing ::nullptr_t; 59fe6060f1SDimitry Andricusing ::ptrdiff_t _LIBCPP_USING_IF_EXISTS; 60fe6060f1SDimitry Andricusing ::size_t _LIBCPP_USING_IF_EXISTS; 610b57cec5SDimitry Andric 625ffd83dbSDimitry Andric#if !defined(_LIBCPP_CXX03_LANG) 63fe6060f1SDimitry Andricusing ::max_align_t _LIBCPP_USING_IF_EXISTS; 645ffd83dbSDimitry Andric#endif 655ffd83dbSDimitry Andric 660b57cec5SDimitry Andric_LIBCPP_END_NAMESPACE_STD 670b57cec5SDimitry Andric 6806c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 17 690b57cec5SDimitry Andricnamespace std // purposefully not versioned 700b57cec5SDimitry Andric{ 710b57cec5SDimitry Andricenum class byte : unsigned char {}; 720b57cec5SDimitry Andric 73cb14a3feSDimitry Andric_LIBCPP_HIDE_FROM_ABI inline constexpr byte operator|(byte __lhs, byte __rhs) noexcept { 740b57cec5SDimitry Andric return static_cast<byte>( 75cb14a3feSDimitry Andric static_cast<unsigned char>(static_cast<unsigned int>(__lhs) | static_cast<unsigned int>(__rhs))); 760b57cec5SDimitry Andric} 770b57cec5SDimitry Andric 78cb14a3feSDimitry Andric_LIBCPP_HIDE_FROM_ABI inline constexpr byte& operator|=(byte& __lhs, byte __rhs) noexcept { 79cb14a3feSDimitry Andric return __lhs = __lhs | __rhs; 800b57cec5SDimitry Andric} 810b57cec5SDimitry Andric 82cb14a3feSDimitry Andric_LIBCPP_HIDE_FROM_ABI inline constexpr byte operator&(byte __lhs, byte __rhs) noexcept { 830b57cec5SDimitry Andric return static_cast<byte>( 84cb14a3feSDimitry Andric static_cast<unsigned char>(static_cast<unsigned int>(__lhs) & static_cast<unsigned int>(__rhs))); 850b57cec5SDimitry Andric} 860b57cec5SDimitry Andric 87cb14a3feSDimitry Andric_LIBCPP_HIDE_FROM_ABI inline constexpr byte& operator&=(byte& __lhs, byte __rhs) noexcept { 88cb14a3feSDimitry Andric return __lhs = __lhs & __rhs; 89cb14a3feSDimitry Andric} 900b57cec5SDimitry Andric 91cb14a3feSDimitry Andric_LIBCPP_HIDE_FROM_ABI inline constexpr byte operator^(byte __lhs, byte __rhs) noexcept { 920b57cec5SDimitry Andric return static_cast<byte>( 93cb14a3feSDimitry Andric static_cast<unsigned char>(static_cast<unsigned int>(__lhs) ^ static_cast<unsigned int>(__rhs))); 94cb14a3feSDimitry Andric} 95cb14a3feSDimitry Andric 96cb14a3feSDimitry Andric_LIBCPP_HIDE_FROM_ABI inline constexpr byte& operator^=(byte& __lhs, byte __rhs) noexcept { 97cb14a3feSDimitry Andric return __lhs = __lhs ^ __rhs; 98cb14a3feSDimitry Andric} 99cb14a3feSDimitry Andric 100cb14a3feSDimitry Andric_LIBCPP_HIDE_FROM_ABI inline constexpr byte operator~(byte __b) noexcept { 101cb14a3feSDimitry Andric return static_cast<byte>(static_cast<unsigned char>(~static_cast<unsigned int>(__b))); 1020b57cec5SDimitry Andric} 10381ad6265SDimitry Andric 1045f757f3fSDimitry Andrictemplate <class _Integer, __enable_if_t<is_integral<_Integer>::value, int> = 0> 1055f757f3fSDimitry Andric_LIBCPP_HIDE_FROM_ABI constexpr byte& operator<<=(byte& __lhs, _Integer __shift) noexcept { 1065f757f3fSDimitry Andric return __lhs = __lhs << __shift; 1075f757f3fSDimitry Andric} 10881ad6265SDimitry Andric 1095f757f3fSDimitry Andrictemplate <class _Integer, __enable_if_t<is_integral<_Integer>::value, int> = 0> 1105f757f3fSDimitry Andric_LIBCPP_HIDE_FROM_ABI constexpr byte operator<<(byte __lhs, _Integer __shift) noexcept { 1115f757f3fSDimitry Andric return static_cast<byte>(static_cast<unsigned char>(static_cast<unsigned int>(__lhs) << __shift)); 1125f757f3fSDimitry Andric} 1130b57cec5SDimitry Andric 1145f757f3fSDimitry Andrictemplate <class _Integer, __enable_if_t<is_integral<_Integer>::value, int> = 0> 1155f757f3fSDimitry Andric_LIBCPP_HIDE_FROM_ABI constexpr byte& operator>>=(byte& __lhs, _Integer __shift) noexcept { 1165f757f3fSDimitry Andric return __lhs = __lhs >> __shift; 1175f757f3fSDimitry Andric} 1185ffd83dbSDimitry Andric 1195f757f3fSDimitry Andrictemplate <class _Integer, __enable_if_t<is_integral<_Integer>::value, int> = 0> 1205f757f3fSDimitry Andric_LIBCPP_HIDE_FROM_ABI constexpr byte operator>>(byte __lhs, _Integer __shift) noexcept { 1215f757f3fSDimitry Andric return static_cast<byte>(static_cast<unsigned char>(static_cast<unsigned int>(__lhs) >> __shift)); 1225f757f3fSDimitry Andric} 1235ffd83dbSDimitry Andric 1245f757f3fSDimitry Andrictemplate <class _Integer, __enable_if_t<is_integral<_Integer>::value, int> = 0> 125*0fca6ea1SDimitry Andric[[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr _Integer to_integer(byte __b) noexcept { 1265f757f3fSDimitry Andric return static_cast<_Integer>(__b); 1275f757f3fSDimitry Andric} 1281fd87a68SDimitry Andric 1291fd87a68SDimitry Andric} // namespace std 1300b57cec5SDimitry Andric 1310b57cec5SDimitry Andric#endif 1320b57cec5SDimitry Andric 1330b57cec5SDimitry Andric#endif // _LIBCPP_CSTDDEF 134