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_UTILITY
|
|
|
|
#define _LIBCPP_UTILITY
|
|
|
|
|
|
|
|
/*
|
|
|
|
utility synopsis
|
|
|
|
|
2018-07-06 00:16:03 +08:00
|
|
|
#include <initializer_list>
|
|
|
|
|
2010-05-12 03:42:16 +08:00
|
|
|
namespace std
|
|
|
|
{
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
void
|
|
|
|
swap(T& a, T& b);
|
|
|
|
|
|
|
|
namespace rel_ops
|
|
|
|
{
|
|
|
|
template<class T> bool operator!=(const T&, const T&);
|
|
|
|
template<class T> bool operator> (const T&, const T&);
|
|
|
|
template<class T> bool operator<=(const T&, const T&);
|
|
|
|
template<class T> bool operator>=(const T&, const T&);
|
|
|
|
}
|
|
|
|
|
2011-05-27 23:04:19 +08:00
|
|
|
template<class T>
|
|
|
|
void
|
|
|
|
swap(T& a, T& b) noexcept(is_nothrow_move_constructible<T>::value &&
|
|
|
|
is_nothrow_move_assignable<T>::value);
|
|
|
|
|
|
|
|
template <class T, size_t N>
|
|
|
|
void
|
|
|
|
swap(T (&a)[N], T (&b)[N]) noexcept(noexcept(swap(*a, *b)));
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2013-07-16 04:46:11 +08:00
|
|
|
template <class T> T&& forward(typename remove_reference<T>::type& t) noexcept; // constexpr in C++14
|
|
|
|
template <class T> T&& forward(typename remove_reference<T>::type&& t) noexcept; // constexpr in C++14
|
2011-05-27 23:04:19 +08:00
|
|
|
|
2013-07-16 04:46:11 +08:00
|
|
|
template <class T> typename remove_reference<T>::type&& move(T&&) noexcept; // constexpr in C++14
|
2010-05-12 03:42:16 +08:00
|
|
|
|
|
|
|
template <class T>
|
|
|
|
typename conditional
|
|
|
|
<
|
2010-11-20 06:17:28 +08:00
|
|
|
!is_nothrow_move_constructible<T>::value && is_copy_constructible<T>::value,
|
2010-05-12 03:42:16 +08:00
|
|
|
const T&,
|
|
|
|
T&&
|
|
|
|
>::type
|
2013-07-16 04:46:11 +08:00
|
|
|
move_if_noexcept(T& x) noexcept; // constexpr in C++14
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2018-02-12 05:51:49 +08:00
|
|
|
template <class T> constexpr add_const_t<T>& as_const(T& t) noexcept; // C++17
|
2015-11-17 08:08:08 +08:00
|
|
|
template <class T> void as_const(const T&&) = delete; // C++17
|
|
|
|
|
2010-05-12 03:42:16 +08:00
|
|
|
template <class T> typename add_rvalue_reference<T>::type declval() noexcept;
|
|
|
|
|
2021-04-20 07:18:34 +08:00
|
|
|
template<class T, class U> constexpr bool cmp_equal(T t, U u) noexcept; // C++20
|
|
|
|
template<class T, class U> constexpr bool cmp_not_equal(T t, U u) noexcept; // C++20
|
|
|
|
template<class T, class U> constexpr bool cmp_less(T t, U u) noexcept; // C++20
|
|
|
|
template<class T, class U> constexpr bool cmp_greater(T t, U u) noexcept; // C++20
|
|
|
|
template<class T, class U> constexpr bool cmp_less_equal(T t, U u) noexcept; // C++20
|
|
|
|
template<class T, class U> constexpr bool cmp_greater_equal(T t, U u) noexcept; // C++20
|
|
|
|
template<class R, class T> constexpr bool in_range(T t) noexcept; // C++20
|
|
|
|
|
2010-05-12 03:42:16 +08:00
|
|
|
template <class T1, class T2>
|
|
|
|
struct pair
|
|
|
|
{
|
|
|
|
typedef T1 first_type;
|
|
|
|
typedef T2 second_type;
|
|
|
|
|
|
|
|
T1 first;
|
|
|
|
T2 second;
|
|
|
|
|
|
|
|
pair(const pair&) = default;
|
2011-05-27 23:04:19 +08:00
|
|
|
pair(pair&&) = default;
|
2019-09-26 22:51:10 +08:00
|
|
|
explicit(see-below) constexpr pair();
|
2019-07-23 04:45:23 +08:00
|
|
|
explicit(see-below) pair(const T1& x, const T2& y); // constexpr in C++14
|
2021-09-01 06:13:33 +08:00
|
|
|
template <class U = T1, class V = T2> explicit(see-below) pair(U&&, V&&); // constexpr in C++14
|
2019-07-23 04:45:23 +08:00
|
|
|
template <class U, class V> explicit(see-below) pair(const pair<U, V>& p); // constexpr in C++14
|
|
|
|
template <class U, class V> explicit(see-below) pair(pair<U, V>&& p); // constexpr in C++14
|
2010-05-12 03:42:16 +08:00
|
|
|
template <class... Args1, class... Args2>
|
|
|
|
pair(piecewise_construct_t, tuple<Args1...> first_args,
|
2021-02-10 08:12:16 +08:00
|
|
|
tuple<Args2...> second_args); // constexpr in C++20
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2021-02-10 08:12:16 +08:00
|
|
|
template <class U, class V> pair& operator=(const pair<U, V>& p); // constexpr in C++20
|
2011-05-27 23:04:19 +08:00
|
|
|
pair& operator=(pair&& p) noexcept(is_nothrow_move_assignable<T1>::value &&
|
2021-02-10 08:12:16 +08:00
|
|
|
is_nothrow_move_assignable<T2>::value); // constexpr in C++20
|
|
|
|
template <class U, class V> pair& operator=(pair<U, V>&& p); // constexpr in C++20
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2016-04-22 07:38:59 +08:00
|
|
|
void swap(pair& p) noexcept(is_nothrow_swappable_v<T1> &&
|
2021-02-10 08:12:16 +08:00
|
|
|
is_nothrow_swappable_v<T2>); // constexpr in C++20
|
2010-05-12 03:42:16 +08:00
|
|
|
};
|
|
|
|
|
2022-02-02 04:36:50 +08:00
|
|
|
template<class T1, class T2, class U1, class U2, template<class> class TQual, template<class> class UQual>
|
|
|
|
struct basic_common_reference<pair<T1, T2>, pair<U1, U2>, TQual, UQual>; // since C++23
|
|
|
|
|
|
|
|
template<class T1, class T2, class U1, class U2>
|
|
|
|
struct common_type<pair<T1, T2>, pair<U1, U2>>; // since C++23
|
|
|
|
|
2021-10-28 15:36:19 +08:00
|
|
|
template<class T1, class T2> pair(T1, T2) -> pair<T1, T2>;
|
|
|
|
|
2013-07-17 01:45:44 +08:00
|
|
|
template <class T1, class T2> bool operator==(const pair<T1,T2>&, const pair<T1,T2>&); // constexpr in C++14
|
2021-09-23 13:36:23 +08:00
|
|
|
template <class T1, class T2> bool operator!=(const pair<T1,T2>&, const pair<T1,T2>&); // constexpr in C++14, removed in C++20
|
|
|
|
template <class T1, class T2> bool operator< (const pair<T1,T2>&, const pair<T1,T2>&); // constexpr in C++14, removed in C++20
|
|
|
|
template <class T1, class T2> bool operator> (const pair<T1,T2>&, const pair<T1,T2>&); // constexpr in C++14, removed in C++20
|
|
|
|
template <class T1, class T2> bool operator>=(const pair<T1,T2>&, const pair<T1,T2>&); // constexpr in C++14, removed in C++20
|
|
|
|
template <class T1, class T2> bool operator<=(const pair<T1,T2>&, const pair<T1,T2>&); // constexpr in C++14, removed in C++20
|
|
|
|
template <class T1, class T2>
|
|
|
|
constexpr common_comparison_type_t<synth-three-way-result<T1>,
|
|
|
|
synth-three-way-result<T2>>
|
|
|
|
operator<=>(const pair<T1,T2>&, const pair<T1,T2>&); // C++20
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2021-02-10 08:12:16 +08:00
|
|
|
template <class T1, class T2> pair<V1, V2> make_pair(T1&&, T2&&); // constexpr in C++14
|
2011-05-27 23:04:19 +08:00
|
|
|
template <class T1, class T2>
|
|
|
|
void
|
2021-02-10 08:12:16 +08:00
|
|
|
swap(pair<T1, T2>& x, pair<T1, T2>& y) noexcept(noexcept(x.swap(y))); // constexpr in C++20
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2019-09-26 22:51:10 +08:00
|
|
|
struct piecewise_construct_t { explicit piecewise_construct_t() = default; };
|
2018-01-03 01:17:01 +08:00
|
|
|
inline constexpr piecewise_construct_t piecewise_construct = piecewise_construct_t();
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2019-01-12 05:57:12 +08:00
|
|
|
template <class T> struct tuple_size;
|
2019-04-02 00:39:34 +08:00
|
|
|
template <size_t I, class T> struct tuple_element;
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2014-03-03 14:18:11 +08:00
|
|
|
template <class T1, class T2> struct tuple_size<pair<T1, T2> >;
|
|
|
|
template <class T1, class T2> struct tuple_element<0, pair<T1, T2> >;
|
|
|
|
template <class T1, class T2> struct tuple_element<1, pair<T1, T2> >;
|
2010-05-12 03:42:16 +08:00
|
|
|
|
|
|
|
template<size_t I, class T1, class T2>
|
2014-03-03 14:18:11 +08:00
|
|
|
typename tuple_element<I, pair<T1, T2> >::type&
|
|
|
|
get(pair<T1, T2>&) noexcept; // constexpr in C++14
|
2010-05-12 03:42:16 +08:00
|
|
|
|
|
|
|
template<size_t I, class T1, class T2>
|
2015-11-20 03:45:29 +08:00
|
|
|
const typename tuple_element<I, pair<T1, T2> >::type&
|
2014-03-03 14:18:11 +08:00
|
|
|
get(const pair<T1, T2>&) noexcept; // constexpr in C++14
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2010-11-18 03:52:17 +08:00
|
|
|
template<size_t I, class T1, class T2>
|
2014-03-03 14:18:11 +08:00
|
|
|
typename tuple_element<I, pair<T1, T2> >::type&&
|
|
|
|
get(pair<T1, T2>&&) noexcept; // constexpr in C++14
|
2010-11-18 03:52:17 +08:00
|
|
|
|
2015-12-18 08:36:55 +08:00
|
|
|
template<size_t I, class T1, class T2>
|
|
|
|
const typename tuple_element<I, pair<T1, T2> >::type&&
|
|
|
|
get(const pair<T1, T2>&&) noexcept; // constexpr in C++14
|
|
|
|
|
2013-07-13 10:54:05 +08:00
|
|
|
template<class T1, class T2>
|
2014-03-03 14:18:11 +08:00
|
|
|
constexpr T1& get(pair<T1, T2>&) noexcept; // C++14
|
2013-07-13 10:54:05 +08:00
|
|
|
|
2015-12-18 08:36:55 +08:00
|
|
|
template<class T1, class T2>
|
2015-11-20 03:45:29 +08:00
|
|
|
constexpr const T1& get(const pair<T1, T2>&) noexcept; // C++14
|
2013-07-13 10:54:05 +08:00
|
|
|
|
2015-12-18 08:36:55 +08:00
|
|
|
template<class T1, class T2>
|
2014-03-03 14:18:11 +08:00
|
|
|
constexpr T1&& get(pair<T1, T2>&&) noexcept; // C++14
|
2013-07-13 10:54:05 +08:00
|
|
|
|
2015-12-18 08:36:55 +08:00
|
|
|
template<class T1, class T2>
|
|
|
|
constexpr const T1&& get(const pair<T1, T2>&&) noexcept; // C++14
|
|
|
|
|
|
|
|
template<class T1, class T2>
|
|
|
|
constexpr T1& get(pair<T2, T1>&) noexcept; // C++14
|
|
|
|
|
|
|
|
template<class T1, class T2>
|
|
|
|
constexpr const T1& get(const pair<T2, T1>&) noexcept; // C++14
|
|
|
|
|
|
|
|
template<class T1, class T2>
|
|
|
|
constexpr T1&& get(pair<T2, T1>&&) noexcept; // C++14
|
|
|
|
|
|
|
|
template<class T1, class T2>
|
|
|
|
constexpr const T1&& get(const pair<T2, T1>&&) noexcept; // C++14
|
|
|
|
|
2013-07-02 00:26:55 +08:00
|
|
|
// C++14
|
|
|
|
|
|
|
|
template<class T, T... I>
|
|
|
|
struct integer_sequence
|
|
|
|
{
|
|
|
|
typedef T value_type;
|
|
|
|
|
|
|
|
static constexpr size_t size() noexcept;
|
|
|
|
};
|
|
|
|
|
|
|
|
template<size_t... I>
|
|
|
|
using index_sequence = integer_sequence<size_t, I...>;
|
|
|
|
|
|
|
|
template<class T, T N>
|
|
|
|
using make_integer_sequence = integer_sequence<T, 0, 1, ..., N-1>;
|
|
|
|
template<size_t N>
|
|
|
|
using make_index_sequence = make_integer_sequence<size_t, N>;
|
|
|
|
|
|
|
|
template<class... T>
|
|
|
|
using index_sequence_for = make_index_sequence<sizeof...(T)>;
|
|
|
|
|
2016-06-20 03:29:52 +08:00
|
|
|
template<class T, class U=T>
|
2021-10-12 02:34:37 +08:00
|
|
|
constexpr T exchange(T& obj, U&& new_value)
|
|
|
|
noexcept(is_nothrow_move_constructible<T>::value && is_nothrow_assignable<T&, U>::value); // constexpr in C++17, noexcept in C++23
|
2016-07-24 06:19:19 +08:00
|
|
|
|
|
|
|
// 20.2.7, in-place construction // C++17
|
2016-11-18 03:24:04 +08:00
|
|
|
struct in_place_t {
|
|
|
|
explicit in_place_t() = default;
|
|
|
|
};
|
|
|
|
inline constexpr in_place_t in_place{};
|
2016-07-24 06:19:19 +08:00
|
|
|
template <class T>
|
2016-11-18 03:24:04 +08:00
|
|
|
struct in_place_type_t {
|
|
|
|
explicit in_place_type_t() = default;
|
|
|
|
};
|
2016-07-24 06:19:19 +08:00
|
|
|
template <class T>
|
2016-11-18 03:24:04 +08:00
|
|
|
inline constexpr in_place_type_t<T> in_place_type{};
|
2016-07-24 06:19:19 +08:00
|
|
|
template <size_t I>
|
2016-11-18 03:24:04 +08:00
|
|
|
struct in_place_index_t {
|
|
|
|
explicit in_place_index_t() = default;
|
|
|
|
};
|
|
|
|
template <size_t I>
|
|
|
|
inline constexpr in_place_index_t<I> in_place_index{};
|
2016-07-24 06:19:19 +08:00
|
|
|
|
2021-03-05 16:19:39 +08:00
|
|
|
// [utility.underlying], to_underlying
|
|
|
|
template <class T>
|
|
|
|
constexpr underlying_type_t<T> to_underlying( T value ) noexcept; // C++2b
|
|
|
|
|
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>
|
|
|
|
#include <__tuple>
|
2021-06-10 07:10:17 +08:00
|
|
|
#include <__utility/as_const.h>
|
2021-12-14 08:21:38 +08:00
|
|
|
#include <__utility/auto_cast.h>
|
2021-06-10 07:10:17 +08:00
|
|
|
#include <__utility/cmp.h>
|
2021-06-05 10:47:47 +08:00
|
|
|
#include <__utility/declval.h>
|
2021-06-10 07:10:17 +08:00
|
|
|
#include <__utility/exchange.h>
|
2021-06-05 10:47:47 +08:00
|
|
|
#include <__utility/forward.h>
|
2021-06-10 07:10:17 +08:00
|
|
|
#include <__utility/in_place.h>
|
|
|
|
#include <__utility/integer_sequence.h>
|
2021-06-05 10:47:47 +08:00
|
|
|
#include <__utility/move.h>
|
2021-06-10 07:10:17 +08:00
|
|
|
#include <__utility/pair.h>
|
|
|
|
#include <__utility/piecewise_construct.h>
|
2021-07-29 10:04:18 +08:00
|
|
|
#include <__utility/priority_tag.h>
|
2021-06-10 07:10:17 +08:00
|
|
|
#include <__utility/rel_ops.h>
|
2021-06-05 10:47:47 +08:00
|
|
|
#include <__utility/swap.h>
|
2021-04-24 23:28:35 +08:00
|
|
|
#include <__utility/to_underlying.h>
|
2021-12-14 23:18:19 +08:00
|
|
|
#include <__utility/transaction.h>
|
2022-02-15 01:26:02 +08:00
|
|
|
#include <__utility/unreachable.h>
|
2022-06-10 16:48:39 +08:00
|
|
|
#include <type_traits>
|
2018-09-13 03:41:40 +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>
|
|
|
|
#endif
|
|
|
|
|
2022-06-17 04:43:46 +08:00
|
|
|
// standard-mandated includes
|
|
|
|
#include <compare>
|
|
|
|
#include <initializer_list>
|
|
|
|
|
2021-12-06 02:08:36 +08:00
|
|
|
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
2022-02-02 09:16:40 +08:00
|
|
|
# pragma GCC system_header
|
2021-12-06 02:08:36 +08:00
|
|
|
#endif
|
|
|
|
|
2021-04-21 00:03:32 +08:00
|
|
|
#endif // _LIBCPP_UTILITY
|