mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-19 10:16:43 +00:00
[libc++][ranges] use static operator()
for C++23 ranges (#86052)
## Abstract This pull request converts the `operator()` of all CPOs and niebloids related to C++23 ranges to `static`. ## Motivation In `libc++`, CPOs and niebloids are implemented as function objects. Currently, the `operator()` for such a function object is a `const`-qualified member function. This means that even if the function object is has no data members, an extra register is used to pass in the `this` pointer when calling `operator()`, unless the compiler can inline the function call. Declaraing `operator()` as `static` would optimize away the unnecessary `this` pointer passing for stateless function objects, since there is no object instance state that needs to be accessed. ## Reference - [P1169R4: static `operator()`](https://wg21.link/P1169R4)
This commit is contained in:
parent
b621269d4a
commit
c3747883a0
@ -39,7 +39,7 @@ namespace ranges {
|
||||
namespace __ends_with {
|
||||
struct __fn {
|
||||
template <class _Iter1, class _Sent1, class _Iter2, class _Sent2, class _Pred, class _Proj1, class _Proj2>
|
||||
static _LIBCPP_HIDE_FROM_ABI constexpr bool __ends_with_fn_impl_bidirectional(
|
||||
_LIBCPP_HIDE_FROM_ABI static constexpr bool __ends_with_fn_impl_bidirectional(
|
||||
_Iter1 __first1,
|
||||
_Sent1 __last1,
|
||||
_Iter2 __first2,
|
||||
@ -56,7 +56,7 @@ struct __fn {
|
||||
}
|
||||
|
||||
template <class _Iter1, class _Sent1, class _Iter2, class _Sent2, class _Pred, class _Proj1, class _Proj2>
|
||||
static _LIBCPP_HIDE_FROM_ABI constexpr bool __ends_with_fn_impl(
|
||||
_LIBCPP_HIDE_FROM_ABI static constexpr bool __ends_with_fn_impl(
|
||||
_Iter1 __first1,
|
||||
_Sent1 __last1,
|
||||
_Iter2 __first2,
|
||||
@ -65,7 +65,7 @@ struct __fn {
|
||||
_Proj1& __proj1,
|
||||
_Proj2& __proj2) {
|
||||
if constexpr (std::bidirectional_iterator<_Sent1> && std::bidirectional_iterator<_Sent2> &&
|
||||
(!std::random_access_iterator<_Sent1>)&&(!std::random_access_iterator<_Sent2>)) {
|
||||
(!std::random_access_iterator<_Sent1>) && (!std::random_access_iterator<_Sent2>)) {
|
||||
return __ends_with_fn_impl_bidirectional(__first1, __last1, __first2, __last2, __pred, __proj1, __proj2);
|
||||
|
||||
} else {
|
||||
|
@ -42,14 +42,14 @@ struct __fn {
|
||||
class _Proj1 = identity,
|
||||
class _Proj2 = identity>
|
||||
requires indirectly_comparable<_Iter1, _Iter2, _Pred, _Proj1, _Proj2>
|
||||
_LIBCPP_NODISCARD_EXT _LIBCPP_HIDE_FROM_ABI constexpr bool operator()(
|
||||
_LIBCPP_NODISCARD_EXT _LIBCPP_HIDE_FROM_ABI static constexpr bool operator()(
|
||||
_Iter1 __first1,
|
||||
_Sent1 __last1,
|
||||
_Iter2 __first2,
|
||||
_Sent2 __last2,
|
||||
_Pred __pred = {},
|
||||
_Proj1 __proj1 = {},
|
||||
_Proj2 __proj2 = {}) const {
|
||||
_Proj2 __proj2 = {}) {
|
||||
return __mismatch::__fn::__go(
|
||||
std::move(__first1),
|
||||
std::move(__last1),
|
||||
@ -67,8 +67,8 @@ struct __fn {
|
||||
class _Proj1 = identity,
|
||||
class _Proj2 = identity>
|
||||
requires indirectly_comparable<iterator_t<_Range1>, iterator_t<_Range2>, _Pred, _Proj1, _Proj2>
|
||||
_LIBCPP_NODISCARD_EXT _LIBCPP_HIDE_FROM_ABI constexpr bool operator()(
|
||||
_Range1&& __range1, _Range2&& __range2, _Pred __pred = {}, _Proj1 __proj1 = {}, _Proj2 __proj2 = {}) const {
|
||||
_LIBCPP_NODISCARD_EXT _LIBCPP_HIDE_FROM_ABI static constexpr bool
|
||||
operator()(_Range1&& __range1, _Range2&& __range2, _Pred __pred = {}, _Proj1 __proj1 = {}, _Proj2 __proj2 = {}) {
|
||||
return __mismatch::__fn::__go(
|
||||
ranges::begin(__range1),
|
||||
ranges::end(__range1),
|
||||
|
@ -111,18 +111,18 @@ namespace views {
|
||||
namespace __as_rvalue {
|
||||
struct __fn : __range_adaptor_closure<__fn> {
|
||||
template <class _Range>
|
||||
_LIBCPP_NODISCARD_EXT _LIBCPP_HIDE_FROM_ABI constexpr auto operator()(_Range&& __range) const
|
||||
noexcept(noexcept(/**/ as_rvalue_view(std::forward<_Range>(__range))))
|
||||
-> decltype(/*--*/ as_rvalue_view(std::forward<_Range>(__range))) {
|
||||
return /*-------------*/ as_rvalue_view(std::forward<_Range>(__range));
|
||||
_LIBCPP_NODISCARD_EXT _LIBCPP_HIDE_FROM_ABI static constexpr auto
|
||||
operator()(_Range&& __range) noexcept(noexcept(as_rvalue_view(std::forward<_Range>(__range))))
|
||||
-> decltype(/*--------------------------*/ as_rvalue_view(std::forward<_Range>(__range))) {
|
||||
return /*---------------------------------*/ as_rvalue_view(std::forward<_Range>(__range));
|
||||
}
|
||||
|
||||
template <class _Range>
|
||||
requires same_as<range_rvalue_reference_t<_Range>, range_reference_t<_Range>>
|
||||
_LIBCPP_NODISCARD_EXT _LIBCPP_HIDE_FROM_ABI constexpr auto operator()(_Range&& __range) const
|
||||
noexcept(noexcept(/**/ views::all(std::forward<_Range>(__range))))
|
||||
-> decltype(/*--*/ views::all(std::forward<_Range>(__range))) {
|
||||
return /*-------------*/ views::all(std::forward<_Range>(__range));
|
||||
_LIBCPP_NODISCARD_EXT _LIBCPP_HIDE_FROM_ABI static constexpr auto
|
||||
operator()(_Range&& __range) noexcept(noexcept(views::all(std::forward<_Range>(__range))))
|
||||
-> decltype(/*--------------------------*/ views::all(std::forward<_Range>(__range))) {
|
||||
return /*---------------------------------*/ views::all(std::forward<_Range>(__range));
|
||||
}
|
||||
};
|
||||
} // namespace __as_rvalue
|
||||
|
@ -229,14 +229,13 @@ namespace views {
|
||||
namespace __repeat {
|
||||
struct __fn {
|
||||
template <class _Tp>
|
||||
_LIBCPP_NODISCARD_EXT _LIBCPP_HIDE_FROM_ABI constexpr auto operator()(_Tp&& __value) const
|
||||
_LIBCPP_NODISCARD_EXT _LIBCPP_HIDE_FROM_ABI static constexpr auto operator()(_Tp&& __value)
|
||||
noexcept(noexcept(ranges::repeat_view(std::forward<_Tp>(__value))))
|
||||
-> decltype( ranges::repeat_view(std::forward<_Tp>(__value)))
|
||||
{ return ranges::repeat_view(std::forward<_Tp>(__value)); }
|
||||
|
||||
|
||||
template <class _Tp, class _Bound>
|
||||
_LIBCPP_NODISCARD_EXT _LIBCPP_HIDE_FROM_ABI constexpr auto operator()(_Tp&& __value, _Bound&& __bound_sentinel) const
|
||||
_LIBCPP_NODISCARD_EXT _LIBCPP_HIDE_FROM_ABI static constexpr auto operator()(_Tp&& __value, _Bound&& __bound_sentinel)
|
||||
noexcept(noexcept(ranges::repeat_view(std::forward<_Tp>(__value), std::forward<_Bound>(__bound_sentinel))))
|
||||
-> decltype( ranges::repeat_view(std::forward<_Tp>(__value), std::forward<_Bound>(__bound_sentinel)))
|
||||
{ return ranges::repeat_view(std::forward<_Tp>(__value), std::forward<_Bound>(__bound_sentinel)); }
|
||||
|
@ -207,7 +207,7 @@ _LIBCPP_NODISCARD_EXT _LIBCPP_HIDE_FROM_ABI constexpr auto to(_Args&&... __args)
|
||||
static_assert(
|
||||
!is_volatile_v<_Container>, "The target container cannot be volatile-qualified, please remove the volatile");
|
||||
|
||||
auto __to_func = []<input_range _Range, class... _Tail>(_Range&& __range, _Tail&&... __tail)
|
||||
auto __to_func = []<input_range _Range, class... _Tail>(_Range&& __range, _Tail&&... __tail) static
|
||||
requires requires { //
|
||||
/**/ ranges::to<_Container>(std::forward<_Range>(__range), std::forward<_Tail>(__tail)...);
|
||||
}
|
||||
@ -223,7 +223,7 @@ _LIBCPP_NODISCARD_EXT _LIBCPP_HIDE_FROM_ABI constexpr auto to(_Args&&... __args)
|
||||
// clang-format off
|
||||
auto __to_func = []<input_range _Range, class... _Tail,
|
||||
class _DeducedExpr = typename _Deducer<_Container, _Range, _Tail...>::type>
|
||||
(_Range&& __range, _Tail&& ... __tail)
|
||||
(_Range&& __range, _Tail&& ... __tail) static
|
||||
requires requires { //
|
||||
/**/ ranges::to<_DeducedExpr>(std::forward<_Range>(__range), std::forward<_Tail>(__tail)...);
|
||||
}
|
||||
|
@ -489,12 +489,12 @@ namespace views {
|
||||
namespace __zip {
|
||||
|
||||
struct __fn {
|
||||
_LIBCPP_HIDE_FROM_ABI constexpr auto operator()() const noexcept { return empty_view<tuple<>>{}; }
|
||||
_LIBCPP_HIDE_FROM_ABI static constexpr auto operator()() noexcept { return empty_view<tuple<>>{}; }
|
||||
|
||||
template <class... _Ranges>
|
||||
_LIBCPP_HIDE_FROM_ABI constexpr auto operator()(_Ranges&&... __rs) const
|
||||
noexcept(noexcept(zip_view<all_t<_Ranges&&>...>(std::forward<_Ranges>(__rs)...)))
|
||||
-> decltype(zip_view<all_t<_Ranges&&>...>(std::forward<_Ranges>(__rs)...)) {
|
||||
_LIBCPP_HIDE_FROM_ABI static constexpr auto
|
||||
operator()(_Ranges&&... __rs) noexcept(noexcept(zip_view<all_t<_Ranges&&>...>(std::forward<_Ranges>(__rs)...)))
|
||||
-> decltype(zip_view<all_t<_Ranges&&>...>(std::forward<_Ranges>(__rs)...)) {
|
||||
return zip_view<all_t<_Ranges>...>(std::forward<_Ranges>(__rs)...);
|
||||
}
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user