17#ifndef LLVM_ADT_STLEXTRAS_H
18#define LLVM_ADT_STLEXTRAS_H
26#include "llvm/Config/abi-breaking.h"
34#include <initializer_list>
44#ifdef EXPENSIVE_CHECKS
55 using type = std::add_pointer_t<std::add_const_t<T>>;
59 using type = std::add_lvalue_reference_t<std::add_const_t<T>>;
66template <typename T, bool isClass = std::is_class<T>::value>
70template <
typename ClassType,
typename ReturnType,
typename... Args>
79 template <
size_t Index>
80 using arg_t = std::tuple_element_t<Index, std::tuple<Args...>>;
83template <
typename ClassType,
typename ReturnType,
typename... Args>
87template <
typename ReturnType,
typename... Args>
97 using arg_t = std::tuple_element_t<i, std::tuple<Args...>>;
99template <
typename ReturnType,
typename... Args>
103template <
typename ReturnType,
typename... Args>
109template <
typename T,
typename... Ts>
110using is_one_of = std::disjunction<std::is_same<T, Ts>...>;
114template <
typename T,
typename... Ts>
119template <
typename T = void,
typename... Ts>
121template <
typename T = void,
typename... Ts>
133template <
typename T,
typename... Us>
135 : std::conjunction<std::negation<is_one_of<T, Us...>>,
136 TypesAreDistinct<Us...>> {};
149template <
typename T,
typename U,
typename... Us>
151 : std::integral_constant<size_t, 1 + FirstIndexOfType<T, Us...>::value> {};
152template <
typename T,
typename... Us>
158template <
size_t I,
typename... Ts>
163template <
typename EnumTy1,
typename EnumTy2,
164 typename = std::enable_if_t<std::is_enum_v<EnumTy1> &&
165 std::is_enum_v<EnumTy2>>>
187 bool = std::is_function_v<std::remove_pointer_t<remove_cvref_t<T>>>>
189 using value_type = std::remove_reference_t<T>;
190 using reference = value_type &;
191 using const_reference = value_type
const &;
193 std::optional<value_type> Obj;
195 static_assert(!std::is_pointer_v<value_type>,
196 "Pointers to non-functions are not callable.");
208 Obj.emplace(*
Other.Obj);
215 Obj.emplace(std::move(*
Other.Obj));
219 template <
typename... Pn,
220 std::enable_if_t<std::is_invocable_v<
T, Pn...>,
int> = 0>
221 decltype(
auto)
operator()(Pn &&...Params) {
222 return (*Obj)(std::forward<Pn>(Params)...);
225 template <
typename... Pn,
226 std::enable_if_t<std::is_invocable_v<
T const, Pn...>,
int> = 0>
227 decltype(
auto)
operator()(Pn &&...Params)
const {
228 return (*Obj)(std::forward<Pn>(Params)...);
231 bool valid()
const {
return Obj != std::nullopt; }
232 bool reset() {
return Obj = std::nullopt; }
234 operator reference() {
return *Obj; }
235 operator const_reference()
const {
return *Obj; }
241 static constexpr bool IsPtr = std::is_pointer_v<remove_cvref_t<T>>;
243 using StorageT = std::conditional_t<IsPtr, T, std::remove_reference_t<T> *>;
244 using CastT = std::conditional_t<IsPtr, T, T &>;
247 StorageT Func =
nullptr;
250 template <
typename In>
static constexpr auto convertIn(In &&
I) {
251 if constexpr (IsPtr) {
270 !std::is_same_v<remove_cvref_t<FnPtrOrRef>,
Callable>,
int
275 template <
typename... Pn,
276 std::enable_if_t<std::is_invocable_v<
T, Pn...>,
int> = 0>
278 return Func(std::forward<Pn>(Params)...);
281 bool valid()
const {
return Func !=
nullptr; }
284 operator T const &()
const {
285 if constexpr (IsPtr) {
289 static_assert(std::is_reference_v<T>,
290 "Expected a reference to a function.");
303 return B !=
E && std::next(
B) ==
E;
308template <
typename ContainerTy>
316template <
typename T>
auto drop_begin(
T &&RangeOrContainer,
size_t N = 1) {
323template <
typename T>
auto drop_end(
T &&RangeOrContainer,
size_t N = 1) {
325 std::prev(
adl_end(RangeOrContainer),
N));
331template <
typename ItTy,
typename FuncTy,
332 typename ReferenceTy =
333 decltype(std::declval<FuncTy>()(*std::declval<ItTy>()))>
336 mapped_iterator<ItTy, FuncTy>, ItTy,
337 typename std::iterator_traits<ItTy>::iterator_category,
338 std::remove_reference_t<ReferenceTy>,
339 typename std::iterator_traits<ItTy>::difference_type,
340 std::remove_reference_t<ReferenceTy> *, ReferenceTy> {
358template <
class ItTy,
class FuncTy>
363template <
class ContainerTy,
class FuncTy>
373template <
typename DerivedT,
typename ItTy,
typename ReferenceTy>
377 typename std::iterator_traits<ItTy>::iterator_category,
378 std::remove_reference_t<ReferenceTy>,
379 typename std::iterator_traits<ItTy>::difference_type,
380 std::remove_reference_t<ReferenceTy> *, ReferenceTy> {
390 return static_cast<const DerivedT &
>(*this).mapElement(*this->I);
395template <
typename Range>
397 decltype(
adl_rbegin(std::declval<Range &>()));
399template <
typename Range>
406template <
typename ContainerTy> [[nodiscard]]
auto reverse(ContainerTy &&
C) {
430template <
typename WrappedIteratorT,
typename PredicateT,
typename IterTag>
433 filter_iterator_base<WrappedIteratorT, PredicateT, IterTag>,
435 std::common_type_t<IterTag,
436 typename std::iterator_traits<
437 WrappedIteratorT>::iterator_category>> {
445 while (this->I !=
End && !
Pred(*this->I))
461 using BaseT::operator++;
469 decltype(
auto)
operator*()
const {
470 assert(BaseT::wrapped() !=
End &&
"Cannot dereference end iterator!");
471 return BaseT::operator*();
474 decltype(
auto) operator->()
const {
475 assert(BaseT::wrapped() !=
End &&
"Cannot dereference end iterator!");
476 return BaseT::operator->();
482 typename IterTag = std::forward_iterator_tag>
494template <
typename WrappedIteratorT,
typename PredicateT>
496 std::bidirectional_iterator_tag>
498 std::bidirectional_iterator_tag> {
501 void findPrevValid() {
502 while (!this->
Pred(*this->I))
507 using BaseT::operator--;
526template <
typename IterT>
528 std::is_base_of_v<std::bidirectional_iterator_tag,
529 typename std::iterator_traits<IterT>::iterator_category>,
530 std::bidirectional_iterator_tag, std::forward_iterator_tag>;
536template <
typename WrappedIteratorT,
typename PredicateT>
548template <
typename RangeT,
typename PredicateT>
551 using FilterIteratorT =
555 return make_range(FilterIteratorT(
B,
E, Pred), FilterIteratorT(
E,
E, Pred));
575template <
typename WrappedIteratorT>
578 WrappedIteratorT, std::input_iterator_tag> {
581 using PointerT =
typename std::iterator_traits<WrappedIteratorT>::pointer;
584#if LLVM_ENABLE_ABI_BREAKING_CHECKS
585 bool IsEarlyIncremented =
false;
591 using BaseT::operator*;
592 decltype(*std::declval<WrappedIteratorT>())
operator*() {
593#if LLVM_ENABLE_ABI_BREAKING_CHECKS
594 assert(!IsEarlyIncremented &&
"Cannot dereference twice!");
595 IsEarlyIncremented =
true;
600 using BaseT::operator++;
602#if LLVM_ENABLE_ABI_BREAKING_CHECKS
603 assert(IsEarlyIncremented &&
"Cannot increment before dereferencing!");
604 IsEarlyIncremented =
false;
611#if LLVM_ENABLE_ABI_BREAKING_CHECKS
612 assert(!
LHS.IsEarlyIncremented &&
"Cannot compare after dereferencing!");
614 return (
const BaseT &)
LHS == (
const BaseT &)
RHS;
630template <
typename RangeT>
633 using EarlyIncIteratorT =
640template <
typename R,
typename UnaryPredicate>
641bool all_of(R &&range, UnaryPredicate
P);
643template <
typename R,
typename UnaryPredicate>
644bool any_of(R &&range, UnaryPredicate
P);
646template <
typename T>
bool all_equal(std::initializer_list<T> Values);
657 using type = std::tuple<decltype(*declval<Iters>())...>;
660template <
typename ZipType,
typename ReferenceTupleType,
typename... Iters>
664 std::bidirectional_iterator_tag,
665 typename std::iterator_traits<Iters>::iterator_category...>,
668 typename std::iterator_traits<
669 std::tuple_element_t<0, std::tuple<Iters...>>>::difference_type,
674 ReferenceTupleType *, ReferenceTupleType>;
676template <
typename ZipType,
typename ReferenceTupleType,
typename... Iters>
689 template <
size_t... Ns>
void tup_inc(std::index_sequence<Ns...>) {
693 template <
size_t... Ns>
void tup_dec(std::index_sequence<Ns...>) {
697 template <
size_t... Ns>
699 std::index_sequence<Ns...>)
const {
711 return static_cast<ZipType &
>(*this);
716 "All inner iterators must be at least bidirectional.");
718 return static_cast<ZipType &
>(*this);
727template <
typename... Iters>
729 typename ZipTupleType<Iters...>::type, Iters...> {
738template <
typename... Iters>
740 :
zip_common<zip_shortest<Iters...>, typename ZipTupleType<Iters...>::type,
746 return any_iterator_equals(other, std::index_sequence_for<Iters...>{});
750 template <
size_t... Ns>
752 std::index_sequence<Ns...>)
const {
759template <
template <
typename...>
class ItType,
typename TupleStorageType,
760 typename IndexSequence>
764template <
template <
typename...>
class ItType,
typename... Args,
767 std::index_sequence<Ns...>> {
769 std::get<Ns>(declval<std::tuple<Args...> &>())))...>;
773template <
template <
typename...>
class ItType,
typename... Args,
776 std::index_sequence<Ns...>> {
778 std::get<Ns>(declval<
const std::tuple<Args...> &>())))...>;
781template <
template <
typename...>
class ItType,
typename... Args>
class zippy {
783 std::tuple<Args...> storage;
784 using IndexSequence = std::index_sequence_for<Args...>;
788 IndexSequence>::type;
791 IndexSequence>::type;
807 template <
size_t... Ns>
811 template <
size_t... Ns>
iterator begin_impl(std::index_sequence<Ns...>) {
815 template <
size_t... Ns>
819 template <
size_t... Ns>
iterator end_impl(std::index_sequence<Ns...>) {
828template <
typename T,
typename U,
typename...
Args>
832 std::forward<T>(t), std::forward<U>(u), std::forward<Args>(
args)...);
838template <
typename T,
typename U,
typename... Args>
842 "Iteratees do not have equal length");
844 std::forward<T>(t), std::forward<U>(u), std::forward<Args>(
args)...);
851template <
typename T,
typename U,
typename... Args>
855 "First iteratee is not the shortest");
858 std::forward<T>(t), std::forward<U>(u), std::forward<Args>(
args)...);
862template <
typename Iter>
869template <
typename Iter>
871 std::remove_const_t<std::remove_reference_t<
decltype(*I)>>> {
878 using type = std::optional<std::remove_const_t<
879 std::remove_reference_t<decltype(*std::declval<Iter>())>>>;
883 using type = std::tuple<typename ZipLongestItemType<Iters>::type...>;
886template <
typename... Iters>
889 zip_longest_iterator<Iters...>,
891 std::forward_iterator_tag,
892 typename std::iterator_traits<Iters>::iterator_category...>,
893 typename ZipLongestTupleType<Iters...>::type,
894 typename std::iterator_traits<
895 std::tuple_element_t<0, std::tuple<Iters...>>>::difference_type,
896 typename ZipLongestTupleType<Iters...>::type *,
897 typename ZipLongestTupleType<Iters...>::type> {
902 std::tuple<Iters...> iterators;
903 std::tuple<Iters...> end_iterators;
905 template <
size_t... Ns>
907 std::index_sequence<Ns...>)
const {
908 return ((std::get<Ns>(this->iterators) != std::get<Ns>(other.iterators)) ||
912 template <
size_t... Ns> value_type
deref(std::index_sequence<Ns...>)
const {
914 deref_or_none(std::get<Ns>(iterators), std::get<Ns>(end_iterators))...);
917 template <
size_t... Ns>
918 decltype(iterators) tup_inc(std::index_sequence<Ns...>)
const {
919 return std::tuple<Iters...>(
920 next_or_end(std::get<Ns>(iterators), std::get<Ns>(end_iterators))...);
925 : iterators(
std::forward<Iters>(ts.first)...),
926 end_iterators(
std::forward<Iters>(ts.second)...) {}
929 return deref(std::index_sequence_for<Iters...>{});
933 iterators = tup_inc(std::index_sequence_for<Iters...>{});
938 return !
test(other, std::index_sequence_for<Iters...>{});
953 std::tuple<Args...> ts;
955 template <
size_t... Ns>
956 iterator begin_impl(std::index_sequence<Ns...>)
const {
958 adl_end(std::get<Ns>(ts)))...);
961 template <
size_t... Ns>
iterator end_impl(std::index_sequence<Ns...>)
const {
963 adl_end(std::get<Ns>(ts)))...);
970 return begin_impl(std::index_sequence_for<Args...>{});
972 iterator end()
const {
return end_impl(std::index_sequence_for<Args...>{}); }
979template <
typename T,
typename U,
typename... Args>
983 std::forward<T>(t), std::forward<U>(u), std::forward<Args>(
args)...);
996template <
typename ValueT,
typename... IterTs>
999 std::forward_iterator_tag, ValueT> {
1000 using BaseT =
typename concat_iterator::iterator_facade_base;
1002 static constexpr bool ReturnsByValue =
1003 !(std::is_reference_v<decltype(*std::declval<IterTs>())> && ...);
1004 static constexpr bool ReturnsConvertibleType =
1006 std::remove_cv_t<ValueT>,
1008 (std::is_convertible_v<
decltype(*std::declval<IterTs>()), ValueT> && ...);
1012 using reference_type =
1013 std::conditional_t<ReturnsByValue || ReturnsConvertibleType, ValueT,
1022 std::tuple<IterTs...> Begins;
1023 std::tuple<IterTs...> Ends;
1027 template <
size_t Index,
size_t... Others>
void incrementImpl() {
1028 auto &Begin = std::get<Index>(Begins);
1029 auto &End = std::get<Index>(Ends);
1031 if constexpr (
sizeof...(Others) != 0)
1032 return incrementImpl<Others...>();
1041 template <
size_t... Ns>
void increment(std::index_sequence<Ns...>) {
1042 incrementImpl<Ns...>();
1047 template <
size_t Index,
size_t... Others> reference_type getImpl()
const {
1048 auto &Begin = std::get<Index>(Begins);
1049 auto &End = std::get<Index>(Ends);
1051 if constexpr (
sizeof...(Others) != 0)
1052 return getImpl<Others...>();
1054 "Attempted to get a pointer from an end concat iterator!");
1063 template <
size_t... Ns> reference_type get(std::index_sequence<Ns...>)
const {
1064 return getImpl<Ns...>();
1072 template <
typename... RangeTs>
1076 using BaseT::operator++;
1079 increment(std::index_sequence_for<IterTs...>());
1084 return get(std::index_sequence_for<IterTs...>());
1088 return Begins ==
RHS.Begins && Ends ==
RHS.Ends;
1103 decltype(
adl_begin(std::declval<RangeTs &>()))...>;
1106 std::tuple<RangeTs...> Ranges;
1108 template <
size_t... Ns>
iterator begin_impl(std::index_sequence<Ns...>) {
1109 return iterator(std::get<Ns>(Ranges)...);
1111 template <
size_t... Ns>
1112 iterator begin_impl(std::index_sequence<Ns...>)
const {
1113 return iterator(std::get<Ns>(Ranges)...);
1115 template <
size_t... Ns>
iterator end_impl(std::index_sequence<Ns...>) {
1117 adl_end(std::get<Ns>(Ranges)))...);
1119 template <
size_t... Ns> iterator end_impl(std::index_sequence<Ns...>)
const {
1121 adl_end(std::get<Ns>(Ranges)))...);
1126 : Ranges(
std::forward<RangeTs>(Ranges)...) {}
1129 return begin_impl(std::index_sequence_for<RangeTs...>{});
1132 return begin_impl(std::index_sequence_for<RangeTs...>{});
1135 return end_impl(std::index_sequence_for<RangeTs...>{});
1138 return end_impl(std::index_sequence_for<RangeTs...>{});
1148template <
typename ValueT,
typename... RangeTs>
1149[[nodiscard]] detail::concat_range<ValueT, RangeTs...>
1151 static_assert(
sizeof...(RangeTs) > 1,
1152 "Need more than one range to concatenate!");
1154 std::forward<RangeTs>(Ranges)...);
1159template <
typename DerivedT,
typename BaseT,
typename T,
1160 typename PointerT =
T *,
typename ReferenceT =
T &>
1163 std::random_access_iterator_tag, T,
1164 std::ptrdiff_t, PointerT, ReferenceT> {
1180 this->
index += offset;
1181 return static_cast<DerivedT &
>(*this);
1184 this->
index -= offset;
1185 return static_cast<DerivedT &
>(*this);
1212template <
typename DerivedT,
typename BaseT,
typename T,
1213 typename PointerT =
T *,
typename ReferenceT =
T &>
1220 PointerT, ReferenceT> {
1224 return DerivedT::dereference_iterator(this->
getBase(), this->
getIndex());
1247 assert(Index <
size() &&
"invalid index for value range");
1248 return DerivedT::dereference_iterator(
base,
static_cast<ptrdiff_t>(Index));
1256 return (*
this)[
size() - 1];
1266 DerivedT
slice(
size_t n,
size_t m)
const {
1267 assert(n + m <=
size() &&
"invalid size specifiers");
1268 return DerivedT(offset_base(
base, n), m);
1273 assert(
size() >= n &&
"Dropping more elements than exist");
1278 assert(
size() >= n &&
"Dropping more elements than exist");
1285 :
static_cast<const DerivedT &
>(*this);
1291 :
static_cast<const DerivedT &
>(*this);
1295 template <
typename RangeT,
typename = std::enable_if_t<std::is_constructible<
1297 operator RangeT()
const {
1306 static BaseT offset_base(
const BaseT &
base,
size_t n) {
1307 return n == 0 ?
base : DerivedT::offset_base(
base, n);
1323template <
typename OtherT,
typename DerivedT,
typename BaseT,
typename T,
1324 typename PointerT,
typename ReferenceT>
1327 const OtherT &rhs) {
1328 return std::equal(lhs.begin(), lhs.end(), rhs.begin(), rhs.end());
1331template <
typename OtherT,
typename DerivedT,
typename BaseT,
typename T,
1332 typename PointerT,
typename ReferenceT>
1335 const OtherT &rhs) {
1336 return !(lhs == rhs);
1347template <
typename DerivedT,
typename BaseT,
typename T,
1348 typename PointerT =
T *,
typename ReferenceT =
T &>
1351 DerivedT, std::pair<BaseT, ptrdiff_t>, T, PointerT, ReferenceT> {
1355 DerivedT,
std::pair<BaseT,
ptrdiff_t>,
T, PointerT, ReferenceT>(
1358 DerivedT, std::pair<BaseT, ptrdiff_t>,
T, PointerT,
1368 static std::pair<BaseT, ptrdiff_t>
1372 return {
base.first,
base.second + index};
1378 return DerivedT::dereference(
base.first,
base.second + index);
1391 using type = std::conditional_t<std::is_reference<EltTy>::value, FirstTy,
1392 std::remove_reference_t<FirstTy>>;
1401 EltTy,
decltype((elt.first))>::type {
1410 std::forward<ContainerTy>(c),
1413 decltype((elt.second))>::type {
1427 return std::less<>()(std::get<0>(lhs), std::get<0>(rhs));
1436 return std::less<>()(std::get<1>(lhs), std::get<1>(rhs));
1442template<
typename FuncTy>
1446 template <
typename T>
1447 decltype(
auto)
operator()(
const T &lhs,
const T &rhs)
const {
1448 return func(lhs.first, rhs.first);
1460template <
typename HeadT,
typename... TailTs>
1466 using Visitor<TailTs...>::operator();
1504template <
typename... CallableTs>
1506 return detail::Visitor<CallableTs...>(std::forward<CallableTs>(Callables)...);
1515template <
class Iterator,
class RNG>
1520 typename std::iterator_traits<Iterator>::difference_type difference_type;
1521 for (
auto size = last - first;
size > 1; ++first, (void)--
size) {
1522 difference_type offset =
g() %
size;
1525 if (offset != difference_type(0))
1526 std::iter_swap(first, first + offset);
1533 if (std::less<T>()(*
reinterpret_cast<const T*
>(P1),
1534 *
reinterpret_cast<const T*
>(P2)))
1536 if (std::less<T>()(*
reinterpret_cast<const T*
>(P2),
1537 *
reinterpret_cast<const T*
>(P1)))
1546 (
const void*,
const void*) {
1550#ifdef EXPENSIVE_CHECKS
1553inline unsigned presortShuffleEntropy() {
1554 static unsigned Result(std::random_device{}());
1558template <
class IteratorTy>
1559inline void presortShuffle(IteratorTy Start, IteratorTy End) {
1560 std::mt19937 Generator(presortShuffleEntropy());
1581template<
class IteratorTy>
1585 auto NElts = End - Start;
1586 if (NElts <= 1)
return;
1587#ifdef EXPENSIVE_CHECKS
1588 detail::presortShuffle<IteratorTy>(Start, End);
1593template <
class IteratorTy>
1595 IteratorTy Start, IteratorTy End,
1597 const typename std::iterator_traits<IteratorTy>::value_type *,
1598 const typename std::iterator_traits<IteratorTy>::value_type *)) {
1601 auto NElts = End - Start;
1602 if (NElts <= 1)
return;
1603#ifdef EXPENSIVE_CHECKS
1604 detail::presortShuffle<IteratorTy>(Start, End);
1606 qsort(&*Start, NElts,
sizeof(*Start),
1607 reinterpret_cast<int (*)(
const void *,
const void *)
>(Compare));
1611template <
typename T>
1616 std::is_trivially_copyable<typename std::iterator_traits<T>::value_type>>;
1621template <
typename IteratorTy>
1622inline void sort(IteratorTy Start, IteratorTy End) {
1628#ifdef EXPENSIVE_CHECKS
1629 detail::presortShuffle<IteratorTy>(Start, End);
1631 std::sort(Start, End);
1635template <
typename Container>
inline void sort(Container &&
C) {
1639template <
typename IteratorTy,
typename Compare>
1640inline void sort(IteratorTy Start, IteratorTy End, Compare Comp) {
1641#ifdef EXPENSIVE_CHECKS
1642 detail::presortShuffle<IteratorTy>(Start, End);
1644 std::sort(Start, End, Comp);
1647template <
typename Container,
typename Compare>
1648inline void sort(Container &&
C, Compare Comp) {
1654template <
typename R>
1657 std::is_base_of<std::random_access_iterator_tag,
1658 typename std::iterator_traits<
decltype(
1659 Range.begin())>::iterator_category>::value,
1660 void> * =
nullptr) {
1661 return std::distance(
Range.begin(),
Range.end());
1665template <
typename Range>
1667 decltype(
adl_size(std::declval<Range &>()));
1669template <
typename Range>
1690 std::forward<E>(
Init));
1694template <
typename R,
typename E,
typename BinaryOp>
1697 std::forward<E>(
Init), std::forward<BinaryOp>(
Op));
1702template <
typename R,
typename E = detail::ValueOfRange<R>>
1709template <
typename R,
typename E = detail::ValueOfRange<R>>
1712 std::multiplies<>{});
1717template <
typename R,
typename UnaryFunction>
1724template <
typename R,
typename UnaryPredicate>
1731template <
typename R,
typename UnaryPredicate>
1738template <
typename R,
typename UnaryPredicate>
1751template <
typename R,
typename T>
auto find(R &&
Range,
const T &Val) {
1757template <
typename R,
typename UnaryPredicate>
1762template <
typename R,
typename UnaryPredicate>
1769template <
typename R,
typename UnaryPredicate>
1776template <
typename R,
typename OutputIt,
typename UnaryPredicate>
1786template <
typename T,
typename R,
typename Predicate>
1790 if (
T *PRC =
P(
A, AllowRepeats)) {
1792 if (!AllowRepeats || PRC != RC)
1811template <
typename T,
typename R,
typename Predicate>
1813 bool AllowRepeats =
false) {
1816 std::pair<T *, bool> PRC =
P(
A, AllowRepeats);
1818 assert(PRC.first ==
nullptr &&
1819 "Inconsistent return values in find_singleton_nested.");
1824 if (!AllowRepeats || PRC.first != RC)
1825 return {
nullptr,
true};
1834template <
typename R,
typename OutputIt>
1841template <
typename R,
typename OutputIt,
typename UnaryPredicate,
typename T>
1843 const T &NewValue) {
1850template <
typename R,
typename OutputIt,
typename T>
1852 const T &NewValue) {
1859template <
typename R,
typename T>
1866template <
typename R,
typename OutputIt>
1872template <
typename Range,
typename Element>
1874 decltype(std::declval<Range &>().contains(std::declval<const Element &>()));
1876template <
typename Range,
typename Element>
1880template <
typename Range,
typename Element>
1882 decltype(std::declval<Range &>().find(std::declval<const Element &>()) !=
1883 std::declval<Range &>().end());
1885template <
typename Range,
typename Element>
1896template <
typename R,
typename E>
1899 return Range.contains(Element);
1909template <
typename T,
typename E>
1912 for (
const T &V : Set)
1934template <
typename R1,
typename R2>
bool includes(R1 &&Range1,
R2 &&Range2) {
1935 assert(
is_sorted(Range1) &&
"Range1 must be sorted in non-descending order");
1936 assert(
is_sorted(Range2) &&
"Range2 must be sorted in non-descending order");
1944template <
typename R1,
typename R2,
typename Compare>
1949 adl_end(Range2), std::forward<Compare>(
C));
1954template <
typename R,
typename E>
auto count(R &&
Range,
const E &Element) {
1960template <
typename R,
typename UnaryPredicate>
1967template <
typename R,
typename OutputIt,
typename UnaryFunction>
1974template <
typename R,
typename UnaryPredicate>
1983 std::forward<T>(
Value));
1986template <
typename R,
typename T,
typename Compare>
1989 std::forward<T>(
Value),
C);
1996 std::forward<T>(
Value));
1999template <
typename R,
typename T,
typename Compare>
2002 std::forward<T>(
Value),
C);
2009 std::forward<T>(
Value));
2012template <
typename R,
typename T,
typename Compare>
2015 std::forward<T>(
Value),
C);
2047template <
typename R1,
typename R2>
auto mismatch(R1 &&Range1,
R2 &&Range2) {
2052template <
typename R,
typename IterTy>
2057template <
typename R>
2062template <
typename R,
typename Compare>
2069template <
typename R,
typename Predicate,
2070 typename Val =
decltype(*
adl_begin(std::declval<R>()))>
2075template<
typename Range,
typename Predicate>
2088template <
typename L,
typename R>
bool equal(L &&LRange, R &&RRange) {
2093template <
typename L,
typename R,
typename BinaryPredicate>
2094bool equal(L &&LRange, R &&RRange, BinaryPredicate
P) {
2103 return Begin == End || std::equal(std::next(Begin), End, Begin);
2108template <
typename T>
bool all_equal(std::initializer_list<T> Values) {
2119template <
typename Container,
typename UnaryPredicate>
2127template <
typename Container,
typename ValueType>
2129 C.erase(std::remove(
C.begin(),
C.end(), V),
C.end());
2135template <
typename Container,
typename Range>
2141template <
typename Container,
typename... Args>
2145 ((void)
C.insert(
C.end(), std::forward<Args>(Values)), ...);
2150template <
typename Container,
typename RandomAccessIterator>
2151void replace(Container &Cont,
typename Container::iterator ContIt,
2152 typename Container::iterator ContEnd, RandomAccessIterator ValIt,
2153 RandomAccessIterator ValEnd) {
2155 if (ValIt == ValEnd) {
2156 Cont.erase(ContIt, ContEnd);
2159 if (ContIt == ContEnd) {
2160 Cont.insert(ContIt, ValIt, ValEnd);
2171template <
typename Container,
typename Range = std::initializer_list<
2172 typename Container::value_type>>
2173void replace(Container &Cont,
typename Container::iterator ContIt,
2174 typename Container::iterator ContEnd,
Range &&R) {
2188template <
typename ForwardIterator,
typename UnaryFunctor,
2189 typename NullaryFunctor,
2190 typename = std::enable_if_t<
2191 !std::is_constructible<StringRef, UnaryFunctor>::value &&
2192 !std::is_constructible<StringRef, NullaryFunctor>::value>>
2193inline void interleave(ForwardIterator begin, ForwardIterator end,
2194 UnaryFunctor each_fn, NullaryFunctor between_fn) {
2199 for (; begin != end; ++begin) {
2205template <
typename Container,
typename UnaryFunctor,
typename NullaryFunctor,
2206 typename = std::enable_if_t<
2207 !std::is_constructible<StringRef, UnaryFunctor>::value &&
2208 !std::is_constructible<StringRef, NullaryFunctor>::value>>
2210 NullaryFunctor between_fn) {
2215template <
typename Container,
typename UnaryFunctor,
typename StreamT,
2217inline void interleave(
const Container &c, StreamT &os, UnaryFunctor each_fn,
2221template <
typename Container,
typename StreamT,
2226 c, os, [&](
const T &a) { os << a; }, separator);
2229template <
typename Container,
typename UnaryFunctor,
typename StreamT,
2232 UnaryFunctor each_fn) {
2235template <
typename Container,
typename StreamT,
2251template<
typename First,
typename Second>
2254 return std::hash<First>()(
P.first) * 31 + std::hash<Second>()(
P.second);
2269 return func(*lhs, *rhs);
2278template <
typename... Iters>
2292template <
typename... Iters>
2294 EnumeratorTupleType<Iters...>, Iters...> {
2295 static_assert(
sizeof...(Iters) >= 2,
"Expected at least two iteratees");
2300 return std::get<1>(this->
iterators) == std::get<1>(
Other.iterators);
2305 static constexpr std::size_t
NumRefs =
sizeof...(Refs);
2317 : Idx(Index), Storage(
std::forward<Refs>(Rs)...) {}
2321 std::size_t
index()
const {
return Idx; }
2327 return std::get<0>(Storage);
2333 template <std::
size_t I,
typename = std::enable_if_t<I == 0>>
2340 template <std::
size_t I,
typename = std::enable_if_t<I != 0>>
2345 return std::get<
I - 1>(Result.Storage);
2348 template <
typename... Ts>
2350 const std::tuple<std::size_t, Ts...> &
Other) {
2351 static_assert(
NumRefs ==
sizeof...(Ts),
"Size mismatch");
2352 if (Result.Idx != std::get<0>(
Other))
2354 return Result.is_value_equal(
Other, std::make_index_sequence<NumRefs>{});
2358 template <
typename Tuple, std::size_t... Idx>
2359 bool is_value_equal(
const Tuple &
Other, std::index_sequence<Idx...>)
const {
2360 return ((std::get<Idx>(Storage) == std::get<Idx + 1>(
Other)) && ...);
2371 mutable range_reference_tuple Storage;
2376 std::random_access_iterator_tag, std::size_t> {
2390 return Index - R.Index;
2401 return Lhs.Index == Rhs.Index;
2405 return Lhs.Index < Rhs.Index;
2430 index_range(std::size_t Begin, std::size_t End) : Begin(Begin), End(End) {}
2471template <
typename FirstRange,
typename... RestRanges>
2473 if constexpr (
sizeof...(Rest) != 0) {
2482 FirstRange, RestRanges...>;
2484 std::forward<RestRanges>(Rest)...);
2489template <
typename Predicate,
typename... Args>
2492 auto it = z.begin();
2495 if (!std::apply([&](
auto &&...
args) {
return P(
args...); }, *it))
2499 return it.all_equals(end);
2504template <
typename... ArgsThenPredicate,
size_t... InputIndexes>
2506 std::tuple<ArgsThenPredicate...> argsThenPredicate,
2507 std::index_sequence<InputIndexes...>) {
2508 auto constexpr OutputIndex =
2509 std::tuple_size<
decltype(argsThenPredicate)>
::value - 1;
2511 std::get<InputIndexes>(argsThenPredicate)...);
2519template <
typename... ArgsAndPredicate>
2522 std::forward_as_tuple(argsAndPredicate...),
2523 std::make_index_sequence<
sizeof...(argsAndPredicate) - 1>{});
2529template <
typename IterTy,
2530 typename Pred =
bool (*)(
const decltype(*std::declval<IterTy>()) &)>
2532 IterTy &&Begin, IterTy &&End,
unsigned N,
2533 Pred &&ShouldBeCounted =
2534 [](
const decltype(*std::declval<IterTy>()) &) {
return true; },
2536 !std::is_base_of<std::random_access_iterator_tag,
2537 typename std::iterator_traits<std::remove_reference_t<
2538 decltype(Begin)>>::iterator_category>::value,
2539 void> * =
nullptr) {
2540 for (;
N; ++Begin) {
2543 N -= ShouldBeCounted(*Begin);
2545 for (; Begin != End; ++Begin)
2546 if (ShouldBeCounted(*Begin))
2554template <
typename IterTy,
2555 typename Pred = bool (*)(
const decltype(*std::declval<IterTy>()) &)>
2557 IterTy &&Begin, IterTy &&End,
unsigned N,
2558 Pred &&ShouldBeCounted =
2559 [](
const decltype(*std::declval<IterTy>()) &) {
return true; },
2561 !std::is_base_of<std::random_access_iterator_tag,
2562 typename std::iterator_traits<std::remove_reference_t<
2563 decltype(Begin)>>::iterator_category>::value,
2564 void> * =
nullptr) {
2565 for (;
N; ++Begin) {
2568 N -= ShouldBeCounted(*Begin);
2575template <
typename IterTy,
2576 typename Pred = bool (*)(
const decltype(*std::declval<IterTy>()) &)>
2578 IterTy &&Begin, IterTy &&End,
unsigned N,
2579 Pred &&ShouldBeCounted = [](
const decltype(*std::declval<IterTy>()) &) {
2582 assert(
N != std::numeric_limits<unsigned>::max());
2587template <
typename ContainerTy>
bool hasNItems(ContainerTy &&
C,
unsigned N) {
2592template <
typename ContainerTy>
2598template <
typename ContainerTy>
2620template <
typename T>
2626template <
typename... Refs>
2627struct tuple_size<
llvm::detail::enumerator_result<Refs...>>
2628 : std::integral_constant<std::size_t, sizeof...(Refs)> {};
2630template <std::size_t
I,
typename... Refs>
2631struct tuple_element<
I,
llvm::detail::enumerator_result<Refs...>>
2632 : std::tuple_element<I, std::tuple<Refs...>> {};
2634template <std::size_t
I,
typename... Refs>
2635struct tuple_element<
I,
const llvm::detail::enumerator_result<Refs...>>
2636 : std::tuple_element<I, std::tuple<Refs...>> {};
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
This file contains library features backported from future STL versions.
INLINE void g(uint32_t *state, size_t a, size_t b, size_t c, size_t d, uint32_t x, uint32_t y)
StringRef - Represent a constant reference to a string, i.e.
LLVM Value Representation.
decltype(auto) operator()(Pn &&...Params) const
Templated storage wrapper for a callable.
Callable & operator=(Callable &&Other)
Callable(Callable const &Other)=default
Callable & operator=(Callable const &Other)
Callable(Callable &&Other)=default
Iterator wrapper that concatenates sequences together.
concat_iterator & operator++()
bool operator==(const concat_iterator &RHS) const
reference_type operator*() const
concat_iterator(RangeTs &&...Ranges)
Constructs an iterator from a sequence of ranges.
Helper to store a sequence of ranges being concatenated and access them.
concat_range(RangeTs &&... Ranges)
concat_iterator< ValueT, decltype(adl_begin(std::declval< RangeTs & >()))... > iterator
Return a reference to the first or second member of a reference.
std::conditional_t< std::is_reference< EltTy >::value, FirstTy, std::remove_reference_t< FirstTy > > type
An iterator element of this range.
ReferenceT operator*() const
The class represents the base of a range of indexed_accessor_iterators.
DerivedT slice(size_t n, size_t m) const
Drop the first N elements, and keep M elements.
size_t size() const
Return the size of this range.
bool empty() const
Return if the range is empty.
indexed_accessor_range_base & operator=(const indexed_accessor_range_base &)=default
DerivedT take_front(size_t n=1) const
Take the first n elements.
ReferenceT operator[](size_t Index) const
DerivedT drop_back(size_t n=1) const
Drop the last n elements.
indexed_accessor_range_base RangeBaseT
DerivedT take_back(size_t n=1) const
Take the last n elements.
DerivedT drop_front(size_t n=1) const
Drop the first n elements.
indexed_accessor_range_base(const indexed_accessor_range_base &)=default
indexed_accessor_range_base(BaseT base, ptrdiff_t count)
indexed_accessor_range_base(indexed_accessor_range_base &&)=default
indexed_accessor_range_base(iterator begin, iterator end)
ptrdiff_t count
The size from the owning range.
BaseT base
The base that owns the provided range of values.
indexed_accessor_range_base(const iterator_range< iterator > &range)
const BaseT & getBase() const
Returns the base of this range.
zip_longest_iterator(std::pair< Iters &&, Iters && >... ts)
value_type operator*() const
bool operator==(const zip_longest_iterator< Iters... > &other) const
zip_longest_iterator< Iters... > & operator++()
typename ZipLongestTupleType< Iters... >::type value_type
typename iterator::iterator_category iterator_category
typename iterator::pointer pointer
typename iterator::difference_type difference_type
zip_longest_iterator< decltype(adl_begin(std::declval< Args >()))... > iterator
typename iterator::reference reference
zip_longest_range(Args &&... ts_)
typename iterator::value_type value_type
typename ZippyIteratorTuple< ItType, decltype(storage), IndexSequence >::type iterator
typename iterator::value_type value_type
typename iterator::difference_type difference_type
typename iterator::reference reference
typename iterator::pointer pointer
typename ZippyIteratorTuple< ItType, const decltype(storage), IndexSequence >::type const_iterator
typename const_iterator::reference const_reference
const_iterator begin() const
typename iterator::iterator_category iterator_category
const_iterator end() const
A pseudo-iterator adaptor that is designed to implement "early increment" style loops.
friend bool operator==(const early_inc_iterator_impl &LHS, const early_inc_iterator_impl &RHS)
early_inc_iterator_impl(WrappedIteratorT I)
early_inc_iterator_impl & operator++()
decltype(*std::declval< WrappedIteratorT >()) operator*()
An iterator adaptor that filters the elements of given inner iterators.
filter_iterator_base & operator++()
filter_iterator_base()=default
filter_iterator_base(WrappedIteratorT Begin, WrappedIteratorT End, PredicateT Pred)
filter_iterator_impl()=default
filter_iterator_impl(WrappedIteratorT Begin, WrappedIteratorT End, PredicateT Pred)
filter_iterator_impl & operator--()
Specialization of filter_iterator_base for forward iteration only.
filter_iterator_impl(WrappedIteratorT Begin, WrappedIteratorT End, PredicateT Pred)
filter_iterator_impl()=default
index_range(std::size_t Begin, std::size_t End)
detail::index_iterator begin() const
detail::index_iterator end() const
A utility class used to implement an iterator that contains some base object and an index.
DerivedT & operator+=(ptrdiff_t offset)
const BaseT & getBase() const
Returns the current base of the iterator.
bool operator==(const indexed_accessor_iterator &rhs) const
indexed_accessor_iterator(BaseT base, ptrdiff_t index)
DerivedT & operator-=(ptrdiff_t offset)
ptrdiff_t operator-(const indexed_accessor_iterator &rhs) const
bool operator<(const indexed_accessor_iterator &rhs) const
ptrdiff_t getIndex() const
Returns the current index of the iterator.
indexed_accessor_range(BaseT base, ptrdiff_t startIndex, ptrdiff_t count)
const BaseT & getBase() const
Returns the current base of the range.
ptrdiff_t getStartIndex() const
Returns the current start index of the range.
static ReferenceT dereference_iterator(const std::pair< BaseT, ptrdiff_t > &base, ptrdiff_t index)
See detail::indexed_accessor_range_base for details.
static std::pair< BaseT, ptrdiff_t > offset_base(const std::pair< BaseT, ptrdiff_t > &base, ptrdiff_t index)
See detail::indexed_accessor_range_base for details.
iterator_adaptor_base()=default
CRTP base class which implements the entire standard iterator facade in terms of a minimal subset of ...
std::common_type_t< std::forward_iterator_tag, std::iterator_traits< Iters >::iterator_category... > iterator_category
std::iterator_traits< std::tuple_element_t< 0, std::tuple< Iters... > > >::difference_type difference_type
ZipLongestTupleType< Iters... >::type reference
ZipLongestTupleType< Iters... >::type * pointer
A range adaptor for a pair of iterators.
mapped_iterator_base BaseT
mapped_iterator_base(ItTy U)
ReferenceTy operator*() const
mapped_iterator()=default
const FuncTy & getFunction() const
mapped_iterator(ItTy U, FuncTy F)
ReferenceTy operator*() const
This provides a very simple, boring adaptor for a begin and end iterator into a range type.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
constexpr char Args[]
Key for Kernel::Metadata::mArgs.
@ Tail
Attemps to make calls as fast as possible while guaranteeing that tail call optimization can always b...
@ C
The default llvm calling convention, compatible with C.
decltype(adl_rbegin(std::declval< Range & >())) check_has_free_function_rbegin
auto deref_or_none(const Iter &I, const Iter &End) -> std::optional< std::remove_const_t< std::remove_reference_t< decltype(*I)> > >
enumerator_result< decltype(*declval< Iters >())... > EnumeratorTupleType
bool all_of_zip_predicate_first(Predicate &&P, Args &&...args)
const char unit< Period >::value[]
static constexpr bool HasMemberFind
static constexpr bool HasFreeFunctionRBegin
decltype(adl_size(std::declval< Range & >())) check_has_free_function_size
bool operator!=(const DenseSetImpl< ValueT, MapTy, ValueInfoT > &LHS, const DenseSetImpl< ValueT, MapTy, ValueInfoT > &RHS)
Inequality comparison for DenseSet.
static constexpr bool HasMemberContains
std::conditional_t< std::is_base_of_v< std::bidirectional_iterator_tag, typename std::iterator_traits< IterT >::iterator_category >, std::bidirectional_iterator_tag, std::forward_iterator_tag > fwd_or_bidi_tag
A type alias which is std::bidirectional_iterator_tag if the category of IterT derives from it,...
bool all_of_zip_predicate_last(std::tuple< ArgsThenPredicate... > argsThenPredicate, std::index_sequence< InputIndexes... >)
decltype(std::declval< Range & >().contains(std::declval< const Element & >())) check_has_member_contains_t
decltype(sizeof(T)) has_sizeof
decltype(std::declval< Range & >().find(std::declval< const Element & >()) != std::declval< Range & >().end()) check_has_member_find_t
Iter next_or_end(const Iter &I, const Iter &End)
iterator_facade_base< ZipType, std::common_type_t< std::bidirectional_iterator_tag, typename std::iterator_traits< Iters >::iterator_category... >, ReferenceTupleType, typename std::iterator_traits< std::tuple_element_t< 0, std::tuple< Iters... > > >::difference_type, ReferenceTupleType *, ReferenceTupleType > zip_traits
static constexpr bool HasFreeFunctionSize
bool operator==(const DenseSetImpl< ValueT, MapTy, ValueInfoT > &LHS, const DenseSetImpl< ValueT, MapTy, ValueInfoT > &RHS)
Equality comparison for DenseSet.
std::remove_reference_t< decltype(*adl_begin(std::declval< RangeT & >()))> ValueOfRange
std::conjunction< std::is_pointer< T >, std::is_trivially_copyable< typename std::iterator_traits< T >::value_type > > sort_trivially_copyable
This is an optimization pass for GlobalISel generic memory operations.
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
detail::zippy< detail::zip_shortest, T, U, Args... > zip(T &&t, U &&u, Args &&...args)
zip iterator for two or more iteratable types.
void stable_sort(R &&Range)
auto find(R &&Range, const T &Val)
Provide wrappers to std::find which take ranges instead of having to pass begin/end explicitly.
void fill(R &&Range, T &&Value)
Provide wrappers to std::fill which take ranges instead of having to pass begin/end explicitly.
bool includes(R1 &&Range1, R2 &&Range2)
Provide wrappers to std::includes which take ranges instead of having to pass begin/end explicitly.
auto min_element(R &&Range)
Provide wrappers to std::min_element which take ranges instead of having to pass begin/end explicitly...
UnaryFunction for_each(R &&Range, UnaryFunction F)
Provide wrappers to std::for_each which take ranges instead of having to pass begin/end explicitly.
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
detail::zip_longest_range< T, U, Args... > zip_longest(T &&t, U &&u, Args &&... args)
Iterate over two or more iterators at the same time.
auto size(R &&Range, std::enable_if_t< std::is_base_of< std::random_access_iterator_tag, typename std::iterator_traits< decltype(Range.begin())>::iterator_category >::value, void > *=nullptr)
Get the size of a range.
int(*)(const void *, const void *) get_array_pod_sort_comparator(const T &)
get_array_pod_sort_comparator - This is an internal helper function used to get type deduction of T r...
constexpr bool is_incomplete_v
Detects when type T is incomplete.
detail::zippy< detail::zip_first, T, U, Args... > zip_equal(T &&t, U &&u, Args &&...args)
zip iterator that assumes that all iteratees have the same length.
constexpr auto adl_begin(RangeT &&range) -> decltype(adl_detail::begin_impl(std::forward< RangeT >(range)))
Returns the begin iterator to range using std::begin and function found through Argument-Dependent Lo...
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
void interleave(ForwardIterator begin, ForwardIterator end, UnaryFunctor each_fn, NullaryFunctor between_fn)
An STL-style algorithm similar to std::for_each that applies a second functor between every pair of e...
constexpr bool all_types_equal_v
auto accumulate(R &&Range, E &&Init)
Wrapper for std::accumulate.
auto partition_point(R &&Range, Predicate P)
Binary search for the first iterator in a range where a predicate is false.
int array_pod_sort_comparator(const void *P1, const void *P2)
Adapt std::less<T> for array_pod_sort.
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
mapped_iterator< ItTy, FuncTy > map_iterator(ItTy I, FuncTy F)
decltype(auto) getSingleElement(ContainerTy &&C)
Asserts that the given container has a single element and returns that element.
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
bool hasNItemsOrLess(IterTy &&Begin, IterTy &&End, unsigned N, Pred &&ShouldBeCounted=[](const decltype(*std::declval< IterTy >()) &) { return true;})
Returns true if the sequence [Begin, End) has N or less items.
void interleaveComma(const Container &c, StreamT &os, UnaryFunctor each_fn)
iterator_range< early_inc_iterator_impl< detail::IterOfRange< RangeT > > > make_early_inc_range(RangeT &&Range)
Make a range that does early increment to allow mutation of the underlying range without disrupting i...
void shuffle(Iterator first, Iterator last, RNG &&g)
constexpr auto adl_end(RangeT &&range) -> decltype(adl_detail::end_impl(std::forward< RangeT >(range)))
Returns the end iterator to range using std::end and functions found through Argument-Dependent Looku...
auto uninitialized_copy(R &&Src, IterTy Dst)
auto unique(Range &&R, Predicate P)
auto binary_search(R &&Range, T &&Value)
Provide wrappers to std::binary_search which take ranges instead of having to pass begin/end explicit...
auto upper_bound(R &&Range, T &&Value)
Provide wrappers to std::upper_bound which take ranges instead of having to pass begin/end explicitly...
OutputIt copy_if(R &&Range, OutputIt Out, UnaryPredicate P)
Provide wrappers to std::copy_if which take ranges instead of having to pass begin/end explicitly.
auto map_range(ContainerTy &&C, FuncTy F)
detail::concat_range< ValueT, RangeTs... > concat(RangeTs &&...Ranges)
Returns a concatenated range across two or more ranges.
constexpr auto adl_rbegin(RangeT &&range) -> decltype(adl_detail::rbegin_impl(std::forward< RangeT >(range)))
Returns the reverse-begin iterator to range using std::rbegin and function found through Argument-Dep...
bool hasNItemsOrMore(IterTy &&Begin, IterTy &&End, unsigned N, Pred &&ShouldBeCounted=[](const decltype(*std::declval< IterTy >()) &) { return true;}, std::enable_if_t< !std::is_base_of< std::random_access_iterator_tag, typename std::iterator_traits< std::remove_reference_t< decltype(Begin)> >::iterator_category >::value, void > *=nullptr)
Return true if the sequence [Begin, End) has N or more items.
void erase(Container &C, ValueType V)
Wrapper function to remove a value from a container:
OutputIt transform(R &&Range, OutputIt d_first, UnaryFunction F)
Wrapper function around std::transform to apply a function to a range and store the result elsewhere.
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
auto mismatch(R1 &&Range1, R2 &&Range2)
Provide wrappers to std::mismatch which take ranges instead of having to pass begin/end explicitly.
auto reverse(ContainerTy &&C)
constexpr size_t range_size(R &&Range)
Returns the size of the Range, i.e., the number of elements.
detail::zippy< detail::zip_first, T, U, Args... > zip_first(T &&t, U &&u, Args &&...args)
zip iterator that, for the sake of efficiency, assumes the first iteratee to be the shortest.
void sort(IteratorTy Start, IteratorTy End)
bool hasNItems(IterTy &&Begin, IterTy &&End, unsigned N, Pred &&ShouldBeCounted=[](const decltype(*std::declval< IterTy >()) &) { return true;}, std::enable_if_t< !std::is_base_of< std::random_access_iterator_tag, typename std::iterator_traits< std::remove_reference_t< decltype(Begin)> >::iterator_category >::value, void > *=nullptr)
Return true if the sequence [Begin, End) has exactly N items.
auto find_if_not(R &&Range, UnaryPredicate P)
bool none_of(R &&Range, UnaryPredicate P)
Provide wrappers to std::none_of which take ranges instead of having to pass begin/end explicitly.
auto make_first_range(ContainerTy &&c)
Given a container of pairs, return a range over the first elements.
constexpr auto adl_size(RangeT &&range) -> decltype(adl_detail::size_impl(std::forward< RangeT >(range)))
Returns the size of range using std::size and functions found through Argument-Dependent Lookup (ADL)...
constexpr std::underlying_type_t< Enum > to_underlying(Enum E)
Returns underlying integer value of an enum.
bool is_sorted(R &&Range, Compare C)
Wrapper function around std::is_sorted to check if elements in a range R are sorted with respect to a...
bool hasSingleElement(ContainerTy &&C)
Returns true if the given container only contains a single element.
iterator_range< filter_iterator< detail::IterOfRange< RangeT >, PredicateT > > make_filter_range(RangeT &&Range, PredicateT Pred)
Convenience function that takes a range of elements and a predicate, and return a new filter_iterator...
std::pair< T *, bool > find_singleton_nested(R &&Range, Predicate P, bool AllowRepeats=false)
Return a pair consisting of the single value in Range that satisfies P(<member of Range> ,...
std::conjunction< std::is_same< T, Ts >... > all_types_equal
traits class for checking whether type T is same as all other types in Ts.
T * find_singleton(R &&Range, Predicate P, bool AllowRepeats=false)
Return the single value in Range that satisfies P(<member of Range> *, AllowRepeats)->T * returning n...
iterator_range(Container &&) -> iterator_range< llvm::detail::IterOfRange< Container > >
auto drop_end(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the last N elements excluded.
@ First
Helpers to iterate all locations in the MemoryEffectsBase class.
auto remove_if(R &&Range, UnaryPredicate P)
Provide wrappers to std::remove_if which take ranges instead of having to pass begin/end explicitly.
std::disjunction< std::is_same< T, Ts >... > is_one_of
traits class for checking whether type T is one of any of the given types in the variadic list.
constexpr auto addEnumValues(EnumTy1 LHS, EnumTy2 RHS)
Helper which adds two underlying types of enumeration type.
auto lower_bound(R &&Range, T &&Value)
Provide wrappers to std::lower_bound which take ranges instead of having to pass begin/end explicitly...
void replace(R &&Range, const T &OldValue, const T &NewValue)
Provide wrappers to std::replace which take ranges instead of having to pass begin/end explicitly.
auto product_of(R &&Range, E Init=E{1})
Returns the product of all values in Range with Init initial value.
auto count(R &&Range, const E &Element)
Wrapper function around std::count to count the number of times an element Element occurs in the give...
DWARFExpression::Operation Op
auto max_element(R &&Range)
Provide wrappers to std::max_element which take ranges instead of having to pass begin/end explicitly...
OutputIt replace_copy_if(R &&Range, OutputIt Out, UnaryPredicate P, const T &NewValue)
Provide wrappers to std::replace_copy_if which take ranges instead of having to pass begin/end explic...
auto to_address(const Ptr &P)
Returns a raw pointer that represents the same address as the argument.
OutputIt copy(R &&Range, OutputIt Out)
auto partition(R &&Range, UnaryPredicate P)
Provide wrappers to std::partition which take ranges instead of having to pass begin/end explicitly.
auto make_second_range(ContainerTy &&c)
Given a container of pairs, return a range over the second elements.
auto sum_of(R &&Range, E Init=E{0})
Returns the sum of all values in Range with Init initial value.
typename detail::detector< void, Op, Args... >::value_t is_detected
Detects if a given trait holds for some set of arguments 'Args'.
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
OutputIt replace_copy(R &&Range, OutputIt Out, const T &OldValue, const T &NewValue)
Provide wrappers to std::replace_copy which take ranges instead of having to pass begin/end explicitl...
auto count_if(R &&Range, UnaryPredicate P)
Wrapper function around std::count_if to count the number of times an element satisfying a given pred...
std::tuple_element_t< I, std::tuple< Ts... > > TypeAtIndex
Find the type at a given index in a list of types.
auto find_if(R &&Range, UnaryPredicate P)
Provide wrappers to std::find_if which take ranges instead of having to pass begin/end explicitly.
void erase_if(Container &C, UnaryPredicate P)
Provide a container algorithm similar to C++ Library Fundamentals v2's erase_if which is equivalent t...
constexpr auto adl_rend(RangeT &&range) -> decltype(adl_detail::rend_impl(std::forward< RangeT >(range)))
Returns the reverse-end iterator to range using std::rend and functions found through Argument-Depend...
void append_values(Container &C, Args &&...Values)
Appends all Values to container C.
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
PointerUnion< const Value *, const PseudoSourceValue * > ValueType
bool all_equal(std::initializer_list< T > Values)
Returns true if all Values in the initializer lists are equal or the list.
void array_pod_sort(IteratorTy Start, IteratorTy End)
array_pod_sort - This sorts an array with the specified start and end extent.
constexpr decltype(auto) makeVisitor(CallableTs &&...Callables)
Returns an opaquely-typed Callable object whose operator() overload set is the sum of the operator() ...
filter_iterator_impl< WrappedIteratorT, PredicateT, detail::fwd_or_bidi_tag< WrappedIteratorT > > filter_iterator
Defines filter_iterator to a suitable specialization of filter_iterator_impl, based on the underlying...
bool equal(L &&LRange, R &&RRange)
Wrapper function around std::equal to detect if pair-wise elements between two ranges are the same.
std::conjunction< std::is_base_of< T, Ts >... > are_base_of
traits class for checking whether type T is a base class for all the given types in the variadic list...
bool all_of_zip(ArgsAndPredicate &&...argsAndPredicate)
Compare two zipped ranges using the provided predicate (as last argument).
Implement std::hash so that hash_code can be used in STL containers.
Find the first index where a type appears in a list of types.
Determine if all types in Ts are distinct.
Binary functor that adapts to any other binary functor after dereferencing operands.
auto operator()(A &lhs, B &rhs) const
constexpr Visitor(HeadT &&Head, TailTs &&...Tail)
constexpr Visitor(HeadT &&Head)
std::optional< std::remove_const_t< std::remove_reference_t< decltype(*std::declval< Iter >())> > > type
std::tuple< typename ZipLongestItemType< Iters >::type... > type
std::tuple< decltype(*declval< Iters >())... > type
ItType< decltype(adl_begin( std::get< Ns >(declval< const std::tuple< Args... > & >())))... > type
ItType< decltype(adl_begin( std::get< Ns >(declval< std::tuple< Args... > & >())))... > type
Helper to obtain the iterator types for the tuple storage within zippy.
std::tuple< Refs... > range_reference_tuple
decltype(auto) value() const
Returns the value(s) for the current iterator.
static constexpr std::size_t NumValues
friend decltype(auto) get(const enumerator_result &Result)
Returns the value at index I.
static constexpr std::size_t NumRefs
std::tuple< std::size_t, Refs... > value_reference_tuple
friend bool operator==(const enumerator_result &Result, const std::tuple< std::size_t, Ts... > &Other)
std::size_t index() const
Returns the 0-based index of the current position within the original input range(s).
friend std::size_t get(const enumerator_result &Result)
Returns the value at index I. This case covers the index.
enumerator_result(std::size_t Index, Refs &&...Rs)
Tuple-like type for zip_enumerator dereference.
friend bool operator==(const index_iterator &Lhs, const index_iterator &Rhs)
std::ptrdiff_t operator-(const index_iterator &R) const
std::size_t operator*() const
friend bool operator<(const index_iterator &Lhs, const index_iterator &Rhs)
index_iterator & operator-=(std::ptrdiff_t N)
index_iterator & operator+=(std::ptrdiff_t N)
index_iterator(std::size_t Index)
Infinite stream of increasing 0-based size_t indices.
index_iterator begin() const
index_iterator end() const
zip_traits< ZipType, ReferenceTupleType, Iters... > Base
std::index_sequence_for< Iters... > IndexSequence
void tup_inc(std::index_sequence< Ns... >)
zip_common(Iters &&... ts)
bool test_all_equals(const zip_common &other, std::index_sequence< Ns... >) const
std::tuple< Iters... > iterators
value_type operator*() const
typename Base::value_type value_type
bool all_equals(zip_common &other)
Return true if all the iterator are matching other's iterators.
void tup_dec(std::index_sequence< Ns... >)
value_type deref(std::index_sequence< Ns... >) const
Zippy iterator that uses the second iterator for comparisons.
bool operator==(const zip_enumerator &Other) const
bool operator==(const zip_first &other) const
bool operator==(const zip_shortest &other) const
std::tuple_element_t< Index, std::tuple< Args... > > arg_t
The type of an argument to this function.
ReturnType result_t
The result type of this function.
std::tuple_element_t< i, std::tuple< Args... > > arg_t
The type of an argument to this function.
ReturnType result_t
The result type of this function.
This class provides various trait information about a callable object.
Function object to check whether the first component of a container supported by std::get (like std::...
bool operator()(const T &lhs, const T &rhs) const
Function object to check whether the second component of a container supported by std::get (like std:...
bool operator()(const T &lhs, const T &rhs) const
std::add_pointer_t< std::add_const_t< T > > type
std::add_lvalue_reference_t< std::add_const_t< T > > type
Function object to apply a binary function to the first component of a std::pair.
size_t operator()(const std::pair< First, Second > &P) const
Utility type to build an inheritance chain that makes it easy to rank overload candidates.