// xstddef internal header (core) // Copyright (c) Microsoft Corporation. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception #pragma once #ifndef _XSTDDEF_ #define _XSTDDEF_ #include #if _STL_COMPILER_PREPROCESSOR #include #include #include #include #pragma pack(push, _CRT_PACKING) #pragma warning(push, _STL_WARNING_LEVEL) #pragma warning(disable : _STL_DISABLED_WARNINGS) _STL_DISABLE_CLANG_WARNINGS #pragma push_macro("new") #undef new _STD_BEGIN template // false value attached to a dependent name (for static_assert) _INLINE_VAR constexpr bool _Always_false = false; // stuff from #if _HAS_AUTO_PTR_ETC template struct unary_function { // base class for unary functions using argument_type = _Arg; using result_type = _Result; }; template struct binary_function { // base class for binary functions using first_argument_type = _Arg1; using second_argument_type = _Arg2; using result_type = _Result; }; #endif // _HAS_AUTO_PTR_ETC template struct plus { _CXX17_DEPRECATE_ADAPTOR_TYPEDEFS typedef _Ty _FIRST_ARGUMENT_TYPE_NAME; _CXX17_DEPRECATE_ADAPTOR_TYPEDEFS typedef _Ty _SECOND_ARGUMENT_TYPE_NAME; _CXX17_DEPRECATE_ADAPTOR_TYPEDEFS typedef _Ty _RESULT_TYPE_NAME; _NODISCARD constexpr _Ty operator()(const _Ty& _Left, const _Ty& _Right) const { return _Left + _Right; } }; template struct minus { _CXX17_DEPRECATE_ADAPTOR_TYPEDEFS typedef _Ty _FIRST_ARGUMENT_TYPE_NAME; _CXX17_DEPRECATE_ADAPTOR_TYPEDEFS typedef _Ty _SECOND_ARGUMENT_TYPE_NAME; _CXX17_DEPRECATE_ADAPTOR_TYPEDEFS typedef _Ty _RESULT_TYPE_NAME; _NODISCARD constexpr _Ty operator()(const _Ty& _Left, const _Ty& _Right) const { return _Left - _Right; } }; template struct multiplies { _CXX17_DEPRECATE_ADAPTOR_TYPEDEFS typedef _Ty _FIRST_ARGUMENT_TYPE_NAME; _CXX17_DEPRECATE_ADAPTOR_TYPEDEFS typedef _Ty _SECOND_ARGUMENT_TYPE_NAME; _CXX17_DEPRECATE_ADAPTOR_TYPEDEFS typedef _Ty _RESULT_TYPE_NAME; _NODISCARD constexpr _Ty operator()(const _Ty& _Left, const _Ty& _Right) const { return _Left * _Right; } }; template struct equal_to { _CXX17_DEPRECATE_ADAPTOR_TYPEDEFS typedef _Ty _FIRST_ARGUMENT_TYPE_NAME; _CXX17_DEPRECATE_ADAPTOR_TYPEDEFS typedef _Ty _SECOND_ARGUMENT_TYPE_NAME; _CXX17_DEPRECATE_ADAPTOR_TYPEDEFS typedef bool _RESULT_TYPE_NAME; _NODISCARD constexpr bool operator()(const _Ty& _Left, const _Ty& _Right) const { return _Left == _Right; } }; template struct not_equal_to { _CXX17_DEPRECATE_ADAPTOR_TYPEDEFS typedef _Ty _FIRST_ARGUMENT_TYPE_NAME; _CXX17_DEPRECATE_ADAPTOR_TYPEDEFS typedef _Ty _SECOND_ARGUMENT_TYPE_NAME; _CXX17_DEPRECATE_ADAPTOR_TYPEDEFS typedef bool _RESULT_TYPE_NAME; _NODISCARD constexpr bool operator()(const _Ty& _Left, const _Ty& _Right) const { return _Left != _Right; } }; template struct greater { _CXX17_DEPRECATE_ADAPTOR_TYPEDEFS typedef _Ty _FIRST_ARGUMENT_TYPE_NAME; _CXX17_DEPRECATE_ADAPTOR_TYPEDEFS typedef _Ty _SECOND_ARGUMENT_TYPE_NAME; _CXX17_DEPRECATE_ADAPTOR_TYPEDEFS typedef bool _RESULT_TYPE_NAME; _NODISCARD constexpr bool operator()(const _Ty& _Left, const _Ty& _Right) const { return _Left > _Right; } }; template struct less { _CXX17_DEPRECATE_ADAPTOR_TYPEDEFS typedef _Ty _FIRST_ARGUMENT_TYPE_NAME; _CXX17_DEPRECATE_ADAPTOR_TYPEDEFS typedef _Ty _SECOND_ARGUMENT_TYPE_NAME; _CXX17_DEPRECATE_ADAPTOR_TYPEDEFS typedef bool _RESULT_TYPE_NAME; _NODISCARD constexpr bool operator()(const _Ty& _Left, const _Ty& _Right) const { return _Left < _Right; } }; template struct greater_equal { _CXX17_DEPRECATE_ADAPTOR_TYPEDEFS typedef _Ty _FIRST_ARGUMENT_TYPE_NAME; _CXX17_DEPRECATE_ADAPTOR_TYPEDEFS typedef _Ty _SECOND_ARGUMENT_TYPE_NAME; _CXX17_DEPRECATE_ADAPTOR_TYPEDEFS typedef bool _RESULT_TYPE_NAME; _NODISCARD constexpr bool operator()(const _Ty& _Left, const _Ty& _Right) const { return _Left >= _Right; } }; template struct less_equal { _CXX17_DEPRECATE_ADAPTOR_TYPEDEFS typedef _Ty _FIRST_ARGUMENT_TYPE_NAME; _CXX17_DEPRECATE_ADAPTOR_TYPEDEFS typedef _Ty _SECOND_ARGUMENT_TYPE_NAME; _CXX17_DEPRECATE_ADAPTOR_TYPEDEFS typedef bool _RESULT_TYPE_NAME; _NODISCARD constexpr bool operator()(const _Ty& _Left, const _Ty& _Right) const { return _Left <= _Right; } }; template <> struct plus { template _NODISCARD constexpr auto operator()(_Ty1&& _Left, _Ty2&& _Right) const noexcept(noexcept(static_cast<_Ty1&&>(_Left) + static_cast<_Ty2&&>(_Right))) // strengthened -> decltype(static_cast<_Ty1&&>(_Left) + static_cast<_Ty2&&>(_Right)) { return static_cast<_Ty1&&>(_Left) + static_cast<_Ty2&&>(_Right); } using is_transparent = int; }; template <> struct minus { template _NODISCARD constexpr auto operator()(_Ty1&& _Left, _Ty2&& _Right) const noexcept(noexcept(static_cast<_Ty1&&>(_Left) - static_cast<_Ty2&&>(_Right))) // strengthened -> decltype(static_cast<_Ty1&&>(_Left) - static_cast<_Ty2&&>(_Right)) { return static_cast<_Ty1&&>(_Left) - static_cast<_Ty2&&>(_Right); } using is_transparent = int; }; template <> struct multiplies { template _NODISCARD constexpr auto operator()(_Ty1&& _Left, _Ty2&& _Right) const noexcept(noexcept(static_cast<_Ty1&&>(_Left) * static_cast<_Ty2&&>(_Right))) // strengthened -> decltype(static_cast<_Ty1&&>(_Left) * static_cast<_Ty2&&>(_Right)) { return static_cast<_Ty1&&>(_Left) * static_cast<_Ty2&&>(_Right); } using is_transparent = int; }; template <> struct equal_to { template _NODISCARD constexpr auto operator()(_Ty1&& _Left, _Ty2&& _Right) const noexcept(noexcept(static_cast<_Ty1&&>(_Left) == static_cast<_Ty2&&>(_Right))) // strengthened -> decltype(static_cast<_Ty1&&>(_Left) == static_cast<_Ty2&&>(_Right)) { return static_cast<_Ty1&&>(_Left) == static_cast<_Ty2&&>(_Right); } using is_transparent = int; }; template <> struct not_equal_to { template _NODISCARD constexpr auto operator()(_Ty1&& _Left, _Ty2&& _Right) const noexcept(noexcept(static_cast<_Ty1&&>(_Left) != static_cast<_Ty2&&>(_Right))) // strengthened -> decltype(static_cast<_Ty1&&>(_Left) != static_cast<_Ty2&&>(_Right)) { return static_cast<_Ty1&&>(_Left) != static_cast<_Ty2&&>(_Right); } using is_transparent = int; }; template <> struct greater { template _NODISCARD constexpr auto operator()(_Ty1&& _Left, _Ty2&& _Right) const noexcept(noexcept(static_cast<_Ty1&&>(_Left) > static_cast<_Ty2&&>(_Right))) // strengthened -> decltype(static_cast<_Ty1&&>(_Left) > static_cast<_Ty2&&>(_Right)) { return static_cast<_Ty1&&>(_Left) > static_cast<_Ty2&&>(_Right); } using is_transparent = int; }; template <> struct less { template _NODISCARD constexpr auto operator()(_Ty1&& _Left, _Ty2&& _Right) const noexcept(noexcept(static_cast<_Ty1&&>(_Left) < static_cast<_Ty2&&>(_Right))) // strengthened -> decltype(static_cast<_Ty1&&>(_Left) < static_cast<_Ty2&&>(_Right)) { return static_cast<_Ty1&&>(_Left) < static_cast<_Ty2&&>(_Right); } using is_transparent = int; }; template <> struct greater_equal { template _NODISCARD constexpr auto operator()(_Ty1&& _Left, _Ty2&& _Right) const noexcept(noexcept(static_cast<_Ty1&&>(_Left) >= static_cast<_Ty2&&>(_Right))) // strengthened -> decltype(static_cast<_Ty1&&>(_Left) >= static_cast<_Ty2&&>(_Right)) { return static_cast<_Ty1&&>(_Left) >= static_cast<_Ty2&&>(_Right); } using is_transparent = int; }; template <> struct less_equal { template _NODISCARD constexpr auto operator()(_Ty1&& _Left, _Ty2&& _Right) const noexcept(noexcept(static_cast<_Ty1&&>(_Left) <= static_cast<_Ty2&&>(_Right))) // strengthened -> decltype(static_cast<_Ty1&&>(_Left) <= static_cast<_Ty2&&>(_Right)) { return static_cast<_Ty1&&>(_Left) <= static_cast<_Ty2&&>(_Right); } using is_transparent = int; }; template _NODISCARD constexpr _Ty* addressof(_Ty& _Val) noexcept { return __builtin_addressof(_Val); } template const _Ty* addressof(const _Ty&&) = delete; template _NODISCARD constexpr auto _Unfancy(_Ptrty _Ptr) noexcept { // converts from a fancy pointer to a plain pointer return _STD addressof(*_Ptr); } template _NODISCARD constexpr _Ty* _Unfancy(_Ty* _Ptr) noexcept { // do nothing for plain pointers return _Ptr; } _STD_END #define _EMIT_CDECL(FUNC, OPT1, OPT2, OPT3) FUNC(__cdecl, OPT1, OPT2, OPT3) #ifdef _M_CEE #define _EMIT_CLRCALL(FUNC, OPT1, OPT2, OPT3) FUNC(__clrcall, OPT1, OPT2, OPT3) #else // _M_CEE #define _EMIT_CLRCALL(FUNC, OPT1, OPT2, OPT3) #endif // _M_CEE #if defined(_M_IX86) && !defined(_M_CEE) #define _EMIT_FASTCALL(FUNC, OPT1, OPT2, OPT3) FUNC(__fastcall, OPT1, OPT2, OPT3) #else // defined(_M_IX86) && !defined(_M_CEE) #define _EMIT_FASTCALL(FUNC, OPT1, OPT2, OPT3) #endif // defined(_M_IX86) && !defined(_M_CEE) #ifdef _M_IX86 #define _EMIT_STDCALL(FUNC, OPT1, OPT2, OPT3) FUNC(__stdcall, OPT1, OPT2, OPT3) #define _EMIT_THISCALL(FUNC, OPT1, OPT2, OPT3) FUNC(__thiscall, OPT1, OPT2, OPT3) #else // _M_IX86 #define _EMIT_STDCALL(FUNC, OPT1, OPT2, OPT3) #define _EMIT_THISCALL(FUNC, OPT1, OPT2, OPT3) #endif // _M_IX86 #if ((defined(_M_IX86) && _M_IX86_FP >= 2) || defined(_M_X64)) && !defined(_M_CEE) #define _EMIT_VECTORCALL(FUNC, OPT1, OPT2, OPT3) FUNC(__vectorcall, OPT1, OPT2, OPT3) #else // defined(_M_IX86) && _M_IX86_FP >= 2 etc. #define _EMIT_VECTORCALL(FUNC, OPT1, OPT2, OPT3) #endif // defined(_M_IX86) && _M_IX86_FP >= 2 etc. #define _NON_MEMBER_CALL(FUNC, CV_OPT, REF_OPT, NOEXCEPT_OPT) \ _EMIT_CDECL(FUNC, CV_OPT, REF_OPT, NOEXCEPT_OPT) \ _EMIT_CLRCALL(FUNC, CV_OPT, REF_OPT, NOEXCEPT_OPT) \ _EMIT_FASTCALL(FUNC, CV_OPT, REF_OPT, NOEXCEPT_OPT) \ _EMIT_STDCALL(FUNC, CV_OPT, REF_OPT, NOEXCEPT_OPT) \ _EMIT_VECTORCALL(FUNC, CV_OPT, REF_OPT, NOEXCEPT_OPT) #define _NON_MEMBER_CALL_CV(FUNC, REF_OPT, NOEXCEPT_OPT) \ _NON_MEMBER_CALL(FUNC, , REF_OPT, NOEXCEPT_OPT) \ _NON_MEMBER_CALL(FUNC, const, REF_OPT, NOEXCEPT_OPT) \ _NON_MEMBER_CALL(FUNC, volatile, REF_OPT, NOEXCEPT_OPT) \ _NON_MEMBER_CALL(FUNC, const volatile, REF_OPT, NOEXCEPT_OPT) #define _NON_MEMBER_CALL_CV_REF(FUNC, NOEXCEPT_OPT) \ _NON_MEMBER_CALL_CV(FUNC, , NOEXCEPT_OPT) \ _NON_MEMBER_CALL_CV(FUNC, &, NOEXCEPT_OPT) \ _NON_MEMBER_CALL_CV(FUNC, &&, NOEXCEPT_OPT) #ifdef __cpp_noexcept_function_type #define _NON_MEMBER_CALL_CV_REF_NOEXCEPT(FUNC) \ _NON_MEMBER_CALL_CV_REF(FUNC, ) \ _NON_MEMBER_CALL_CV_REF(FUNC, noexcept) #else // __cpp_noexcept_function_type #define _NON_MEMBER_CALL_CV_REF_NOEXCEPT(FUNC) _NON_MEMBER_CALL_CV_REF(FUNC, ) #endif // __cpp_noexcept_function_type #define _MEMBER_CALL(FUNC, CV_OPT, REF_OPT, NOEXCEPT_OPT) \ _EMIT_CDECL(FUNC, CV_OPT, REF_OPT, NOEXCEPT_OPT) \ _EMIT_CLRCALL(FUNC, CV_OPT, REF_OPT, NOEXCEPT_OPT) \ _EMIT_FASTCALL(FUNC, CV_OPT, REF_OPT, NOEXCEPT_OPT) \ _EMIT_STDCALL(FUNC, CV_OPT, REF_OPT, NOEXCEPT_OPT) \ _EMIT_THISCALL(FUNC, CV_OPT, REF_OPT, NOEXCEPT_OPT) \ _EMIT_VECTORCALL(FUNC, CV_OPT, REF_OPT, NOEXCEPT_OPT) #define _MEMBER_CALL_CV(FUNC, REF_OPT, NOEXCEPT_OPT) \ _MEMBER_CALL(FUNC, , REF_OPT, NOEXCEPT_OPT) \ _MEMBER_CALL(FUNC, const, REF_OPT, NOEXCEPT_OPT) \ _MEMBER_CALL(FUNC, volatile, REF_OPT, NOEXCEPT_OPT) \ _MEMBER_CALL(FUNC, const volatile, REF_OPT, NOEXCEPT_OPT) #define _MEMBER_CALL_CV_REF(FUNC, NOEXCEPT_OPT) \ _MEMBER_CALL_CV(FUNC, , NOEXCEPT_OPT) \ _MEMBER_CALL_CV(FUNC, &, NOEXCEPT_OPT) \ _MEMBER_CALL_CV(FUNC, &&, NOEXCEPT_OPT) #ifdef __cpp_noexcept_function_type #define _MEMBER_CALL_CV_REF_NOEXCEPT(FUNC) \ _MEMBER_CALL_CV_REF(FUNC, ) \ _MEMBER_CALL_CV_REF(FUNC, noexcept) #else // __cpp_noexcept_function_type #define _MEMBER_CALL_CV_REF_NOEXCEPT(FUNC) _MEMBER_CALL_CV_REF(FUNC, ) #endif // __cpp_noexcept_function_type #ifdef __cpp_noexcept_function_type #define _CLASS_DEFINE_CV_REF_NOEXCEPT(CLASS) \ CLASS(_EMPTY_ARGUMENT) \ CLASS(const) \ CLASS(volatile) \ CLASS(const volatile) \ CLASS(&) \ CLASS(const&) \ CLASS(volatile&) \ CLASS(const volatile&) \ CLASS(&&) \ CLASS(const&&) \ CLASS(volatile&&) \ CLASS(const volatile&&) \ CLASS(noexcept) \ CLASS(const noexcept) \ CLASS(volatile noexcept) \ CLASS(const volatile noexcept) \ CLASS(&noexcept) \ CLASS(const& noexcept) \ CLASS(volatile& noexcept) \ CLASS(const volatile& noexcept) \ CLASS(&&noexcept) \ CLASS(const&& noexcept) \ CLASS(volatile&& noexcept) \ CLASS(const volatile&& noexcept) #else // __cpp_noexcept_function_type #define _CLASS_DEFINE_CV_REF_NOEXCEPT(CLASS) \ CLASS(_EMPTY_ARGUMENT) \ CLASS(const) \ CLASS(volatile) \ CLASS(const volatile) \ CLASS(&) \ CLASS(const&) \ CLASS(volatile&) \ CLASS(const volatile&) \ CLASS(&&) \ CLASS(const&&) \ CLASS(volatile&&) \ CLASS(const volatile&&) #endif // __cpp_noexcept_function_type #pragma pop_macro("new") _STL_RESTORE_CLANG_WARNINGS #pragma warning(pop) #pragma pack(pop) #endif // _STL_COMPILER_PREPROCESSOR #endif // _XSTDDEF_