2010-05-12 03:42:16 +08:00
|
|
|
// -*- C++ -*-
|
2021-11-18 05:25:01 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2010-05-12 03:42:16 +08:00
|
|
|
//
|
2019-01-19 18:56:40 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2010-05-12 03:42:16 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef _LIBCPP_TYPEINDEX
|
|
|
|
#define _LIBCPP_TYPEINDEX
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
typeindex synopsis
|
|
|
|
|
|
|
|
namespace std
|
|
|
|
{
|
|
|
|
|
|
|
|
class type_index
|
|
|
|
{
|
|
|
|
public:
|
2011-05-29 02:57:24 +08:00
|
|
|
type_index(const type_info& rhs) noexcept;
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2011-05-29 02:57:24 +08:00
|
|
|
bool operator==(const type_index& rhs) const noexcept;
|
|
|
|
bool operator!=(const type_index& rhs) const noexcept;
|
|
|
|
bool operator< (const type_index& rhs) const noexcept;
|
|
|
|
bool operator<=(const type_index& rhs) const noexcept;
|
|
|
|
bool operator> (const type_index& rhs) const noexcept;
|
|
|
|
bool operator>=(const type_index& rhs) const noexcept;
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2011-05-29 02:57:24 +08:00
|
|
|
size_t hash_code() const noexcept;
|
|
|
|
const char* name() const noexcept;
|
2010-05-12 03:42:16 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct hash<type_index>
|
|
|
|
: public unary_function<type_index, size_t>
|
|
|
|
{
|
2011-05-29 02:57:24 +08:00
|
|
|
size_t operator()(type_index index) const noexcept;
|
2010-05-12 03:42:16 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // std
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2022-03-26 00:55:36 +08:00
|
|
|
#include <__assert> // all public C++ headers provide the assertion handler
|
2010-05-12 03:42:16 +08:00
|
|
|
#include <__config>
|
2021-07-01 21:25:35 +08:00
|
|
|
#include <__functional/unary_function.h>
|
2021-05-19 23:57:04 +08:00
|
|
|
#include <typeinfo>
|
2021-12-23 01:14:14 +08:00
|
|
|
#include <version>
|
2010-05-12 03:42:16 +08:00
|
|
|
|
[libc++] Re-add transitive includes that had been removed since LLVM 14
This commit re-adds transitive includes that had been removed by
4cd04d1687f1, c36870c8e79c, a83f4b9cda57, 1458458b558d, 2e2f3158c604,
and 489637e66dd3. This should cover almost all the includes that had
been removed since LLVM 14 and that would contribute to breaking user
code when releasing LLVM 15.
It is possible to disable the inclusion of these headers by defining
_LIBCPP_REMOVE_TRANSITIVE_INCLUDES. The intent is that vendors will
enable that macro and start fixing downstream issues immediately. We
can then remove the macro (and the transitive includes) by default in
a future release. That way, we will break users only once by removing
transitive includes in bulk instead of doing it bit by bit a every
release, which is more disruptive for users.
Note 1: The set of headers to re-add was found by re-generating the
transitive include test on a checkout of release/14.x, which
provided the list of all transitive includes we used to provide.
Note 2: Several includes of <vector>, <optional>, <array> and <unordered_map>
have been added in this commit. These transitive inclusions were
added when we implemented boyer_moore_searcher in <functional>.
Note 3: This is a best effort patch to try and resolve downstream breakage
caused since branching LLVM 14. I wasn't able to perfectly mirror
transitive includes in LLVM 14 for a few headers, so I added a
release note explaining it. To summarize, adding boyer_moore_searcher
created a bunch of circular dependencies, so we have to break
backwards compatibility in a few cases.
Differential Revision: https://reviews.llvm.org/D128661
2022-06-28 03:53:41 +08:00
|
|
|
#ifndef _LIBCPP_REMOVE_TRANSITIVE_INCLUDES
|
|
|
|
# include <iosfwd>
|
|
|
|
# include <new>
|
|
|
|
# include <utility>
|
|
|
|
#endif
|
|
|
|
|
2022-06-17 04:43:46 +08:00
|
|
|
// standard-mandated includes
|
|
|
|
#include <compare>
|
|
|
|
|
2011-10-18 04:05:10 +08:00
|
|
|
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
2022-02-02 09:16:40 +08:00
|
|
|
# pragma GCC system_header
|
2011-10-18 04:05:10 +08:00
|
|
|
#endif
|
2010-05-12 03:42:16 +08:00
|
|
|
|
|
|
|
_LIBCPP_BEGIN_NAMESPACE_STD
|
|
|
|
|
2017-01-05 07:56:00 +08:00
|
|
|
class _LIBCPP_TEMPLATE_VIS type_index
|
2010-05-12 03:42:16 +08:00
|
|
|
{
|
|
|
|
const type_info* __t_;
|
|
|
|
public:
|
2010-09-24 02:58:28 +08:00
|
|
|
_LIBCPP_INLINE_VISIBILITY
|
2011-05-29 02:57:24 +08:00
|
|
|
type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2010-09-24 02:58:28 +08:00
|
|
|
_LIBCPP_INLINE_VISIBILITY
|
2011-05-29 02:57:24 +08:00
|
|
|
bool operator==(const type_index& __y) const _NOEXCEPT
|
|
|
|
{return *__t_ == *__y.__t_;}
|
2010-09-24 02:58:28 +08:00
|
|
|
_LIBCPP_INLINE_VISIBILITY
|
2011-05-29 02:57:24 +08:00
|
|
|
bool operator!=(const type_index& __y) const _NOEXCEPT
|
|
|
|
{return *__t_ != *__y.__t_;}
|
2010-09-24 02:58:28 +08:00
|
|
|
_LIBCPP_INLINE_VISIBILITY
|
2011-05-29 02:57:24 +08:00
|
|
|
bool operator< (const type_index& __y) const _NOEXCEPT
|
|
|
|
{return __t_->before(*__y.__t_);}
|
2010-09-24 02:58:28 +08:00
|
|
|
_LIBCPP_INLINE_VISIBILITY
|
2011-05-29 02:57:24 +08:00
|
|
|
bool operator<=(const type_index& __y) const _NOEXCEPT
|
|
|
|
{return !__y.__t_->before(*__t_);}
|
2010-09-24 02:58:28 +08:00
|
|
|
_LIBCPP_INLINE_VISIBILITY
|
2011-05-29 02:57:24 +08:00
|
|
|
bool operator> (const type_index& __y) const _NOEXCEPT
|
|
|
|
{return __y.__t_->before(*__t_);}
|
2010-09-24 02:58:28 +08:00
|
|
|
_LIBCPP_INLINE_VISIBILITY
|
2011-05-29 02:57:24 +08:00
|
|
|
bool operator>=(const type_index& __y) const _NOEXCEPT
|
|
|
|
{return !__t_->before(*__y.__t_);}
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2010-09-24 02:58:28 +08:00
|
|
|
_LIBCPP_INLINE_VISIBILITY
|
2011-05-29 02:57:24 +08:00
|
|
|
size_t hash_code() const _NOEXCEPT {return __t_->hash_code();}
|
2010-09-24 02:58:28 +08:00
|
|
|
_LIBCPP_INLINE_VISIBILITY
|
2011-05-29 02:57:24 +08:00
|
|
|
const char* name() const _NOEXCEPT {return __t_->name();}
|
2010-05-12 03:42:16 +08:00
|
|
|
};
|
|
|
|
|
2017-01-05 07:56:00 +08:00
|
|
|
template <class _Tp> struct _LIBCPP_TEMPLATE_VIS hash;
|
2010-05-12 03:42:16 +08:00
|
|
|
|
|
|
|
template <>
|
2017-01-05 07:56:00 +08:00
|
|
|
struct _LIBCPP_TEMPLATE_VIS hash<type_index>
|
2022-06-22 16:11:14 +08:00
|
|
|
: public __unary_function<type_index, size_t>
|
2010-05-12 03:42:16 +08:00
|
|
|
{
|
2010-09-24 02:58:28 +08:00
|
|
|
_LIBCPP_INLINE_VISIBILITY
|
2011-05-29 02:57:24 +08:00
|
|
|
size_t operator()(type_index __index) const _NOEXCEPT
|
|
|
|
{return __index.hash_code();}
|
2010-05-12 03:42:16 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
_LIBCPP_END_NAMESPACE_STD
|
|
|
|
|
2021-04-21 00:03:32 +08:00
|
|
|
#endif // _LIBCPP_TYPEINDEX
|