
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
114 lines
3.0 KiB
C++
114 lines
3.0 KiB
C++
// -*- C++ -*-
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef _LIBCPP_TYPEINDEX
|
|
#define _LIBCPP_TYPEINDEX
|
|
|
|
/*
|
|
|
|
typeindex synopsis
|
|
|
|
namespace std
|
|
{
|
|
|
|
class type_index
|
|
{
|
|
public:
|
|
type_index(const type_info& rhs) 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;
|
|
bool operator>=(const type_index& rhs) const noexcept;
|
|
|
|
size_t hash_code() const noexcept;
|
|
const char* name() const noexcept;
|
|
};
|
|
|
|
template <>
|
|
struct hash<type_index>
|
|
: public unary_function<type_index, size_t>
|
|
{
|
|
size_t operator()(type_index index) const noexcept;
|
|
};
|
|
|
|
} // std
|
|
|
|
*/
|
|
|
|
#include <__assert> // all public C++ headers provide the assertion handler
|
|
#include <__config>
|
|
#include <__functional/unary_function.h>
|
|
#include <typeinfo>
|
|
#include <version>
|
|
|
|
#ifndef _LIBCPP_REMOVE_TRANSITIVE_INCLUDES
|
|
# include <iosfwd>
|
|
# include <new>
|
|
# include <utility>
|
|
#endif
|
|
|
|
// standard-mandated includes
|
|
#include <compare>
|
|
|
|
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
|
# pragma GCC system_header
|
|
#endif
|
|
|
|
_LIBCPP_BEGIN_NAMESPACE_STD
|
|
|
|
class _LIBCPP_TEMPLATE_VIS type_index
|
|
{
|
|
const type_info* __t_;
|
|
public:
|
|
_LIBCPP_INLINE_VISIBILITY
|
|
type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
|
|
|
|
_LIBCPP_INLINE_VISIBILITY
|
|
bool operator==(const type_index& __y) const _NOEXCEPT
|
|
{return *__t_ == *__y.__t_;}
|
|
_LIBCPP_INLINE_VISIBILITY
|
|
bool operator!=(const type_index& __y) const _NOEXCEPT
|
|
{return *__t_ != *__y.__t_;}
|
|
_LIBCPP_INLINE_VISIBILITY
|
|
bool operator< (const type_index& __y) const _NOEXCEPT
|
|
{return __t_->before(*__y.__t_);}
|
|
_LIBCPP_INLINE_VISIBILITY
|
|
bool operator<=(const type_index& __y) const _NOEXCEPT
|
|
{return !__y.__t_->before(*__t_);}
|
|
_LIBCPP_INLINE_VISIBILITY
|
|
bool operator> (const type_index& __y) const _NOEXCEPT
|
|
{return __y.__t_->before(*__t_);}
|
|
_LIBCPP_INLINE_VISIBILITY
|
|
bool operator>=(const type_index& __y) const _NOEXCEPT
|
|
{return !__t_->before(*__y.__t_);}
|
|
|
|
_LIBCPP_INLINE_VISIBILITY
|
|
size_t hash_code() const _NOEXCEPT {return __t_->hash_code();}
|
|
_LIBCPP_INLINE_VISIBILITY
|
|
const char* name() const _NOEXCEPT {return __t_->name();}
|
|
};
|
|
|
|
template <class _Tp> struct _LIBCPP_TEMPLATE_VIS hash;
|
|
|
|
template <>
|
|
struct _LIBCPP_TEMPLATE_VIS hash<type_index>
|
|
: public __unary_function<type_index, size_t>
|
|
{
|
|
_LIBCPP_INLINE_VISIBILITY
|
|
size_t operator()(type_index __index) const _NOEXCEPT
|
|
{return __index.hash_code();}
|
|
};
|
|
|
|
_LIBCPP_END_NAMESPACE_STD
|
|
|
|
#endif // _LIBCPP_TYPEINDEX
|