blob: c3ca64a9c01497bfd9c11d4f88b5d7cd0c5214ef [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001// -*- C++ -*-
2//===--------------------------- cstddef ----------------------------------===//
3//
Howard Hinnantf5256e12010-05-11 21:36:01 +00004// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00006// This file is dual licensed under the MIT and the University of Illinois Open
7// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00008//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_CSTDDEF
12#define _LIBCPP_CSTDDEF
13
14/*
15 cstddef synopsis
16
17Macros:
18
19 offsetof(type,member-designator)
20 NULL
Howard Hinnant324bb032010-08-22 00:02:43 +000021
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000022namespace std
23{
24
25Types:
26
27 ptrdiff_t
28 size_t
29 max_align_t
30 nullptr_t
31
32} // std
33
34*/
35
36#include <__config>
Howard Hinnanted30e072010-06-02 18:53:22 +000037
Dan Albert1d4a1ed2016-05-25 22:36:09 -070038#include <stddef.h>
39
Howard Hinnant08e17472011-10-17 20:05:10 +000040#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000041#pragma GCC system_header
Howard Hinnant08e17472011-10-17 20:05:10 +000042#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000043
44_LIBCPP_BEGIN_NAMESPACE_STD
45
46using ::ptrdiff_t;
47using ::size_t;
48
Chandler Carruthf84f6112014-02-21 08:37:30 +000049#if defined(__CLANG_MAX_ALIGN_T_DEFINED) || defined(_GCC_MAX_ALIGN_T)
50// Re-use the compiler's <stddef.h> max_align_t where possible.
51using ::max_align_t;
52#else
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000053typedef long double max_align_t;
Chandler Carruthf84f6112014-02-21 08:37:30 +000054#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000055
Dan Albert1d4a1ed2016-05-25 22:36:09 -070056#ifdef _LIBCPP_HAS_NO_NULLPTR
57
58struct _LIBCPP_TYPE_VIS_ONLY nullptr_t
59{
60 void* __lx;
61
62 struct __nat {int __for_bool_;};
63
64 _LIBCPP_ALWAYS_INLINE _LIBCPP_CONSTEXPR nullptr_t() : __lx(0) {}
65 _LIBCPP_ALWAYS_INLINE _LIBCPP_CONSTEXPR nullptr_t(int __nat::*) : __lx(0) {}
66
67 _LIBCPP_ALWAYS_INLINE _LIBCPP_CONSTEXPR operator int __nat::*() const {return 0;}
68
69 template <class _Tp>
70 _LIBCPP_ALWAYS_INLINE _LIBCPP_CONSTEXPR
71 operator _Tp* () const {return 0;}
72
73 template <class _Tp, class _Up>
74 _LIBCPP_ALWAYS_INLINE
75 operator _Tp _Up::* () const {return 0;}
76
77 friend _LIBCPP_ALWAYS_INLINE _LIBCPP_CONSTEXPR bool operator==(nullptr_t, nullptr_t) {return true;}
78 friend _LIBCPP_ALWAYS_INLINE _LIBCPP_CONSTEXPR bool operator!=(nullptr_t, nullptr_t) {return false;}
79 friend _LIBCPP_ALWAYS_INLINE _LIBCPP_CONSTEXPR bool operator<(nullptr_t, nullptr_t) {return false;}
80 friend _LIBCPP_ALWAYS_INLINE _LIBCPP_CONSTEXPR bool operator<=(nullptr_t, nullptr_t) {return true;}
81 friend _LIBCPP_ALWAYS_INLINE _LIBCPP_CONSTEXPR bool operator>(nullptr_t, nullptr_t) {return false;}
82 friend _LIBCPP_ALWAYS_INLINE _LIBCPP_CONSTEXPR bool operator>=(nullptr_t, nullptr_t) {return true;}
83};
84
85inline _LIBCPP_ALWAYS_INLINE _LIBCPP_CONSTEXPR nullptr_t __get_nullptr_t() {return nullptr_t(0);}
86
87#define nullptr _VSTD::__get_nullptr_t()
88
89#endif // _LIBCPP_HAS_NO_NULLPTR
90
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000091_LIBCPP_END_NAMESPACE_STD
92
Dan Albert1d4a1ed2016-05-25 22:36:09 -070093#ifndef _LIBCPP_HAS_NO_NULLPTR
94
95namespace std
96{
97 typedef decltype(nullptr) nullptr_t;
98}
99
100#endif // _LIBCPP_HAS_NO_NULLPTR
101
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000102#endif // _LIBCPP_CSTDDEF