-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[libc++] Extract destroy algorithms into separate headers #126449
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// 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___MEMORY_DESTROY_H | ||
#define _LIBCPP___MEMORY_DESTROY_H | ||
|
||
#include <__config> | ||
#include <__memory/addressof.h> | ||
#include <__memory/allocator_traits.h> | ||
#include <__memory/construct_at.h> | ||
#include <__utility/move.h> | ||
|
||
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) | ||
# pragma GCC system_header | ||
#endif | ||
|
||
_LIBCPP_PUSH_MACROS | ||
#include <__undef_macros> | ||
|
||
_LIBCPP_BEGIN_NAMESPACE_STD | ||
|
||
template <class _ForwardIterator> | ||
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 _ForwardIterator | ||
__destroy(_ForwardIterator __first, _ForwardIterator __last) { | ||
for (; __first != __last; ++__first) | ||
std::__destroy_at(std::addressof(*__first)); | ||
return __first; | ||
} | ||
|
||
template <class _BidirectionalIterator> | ||
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 _BidirectionalIterator | ||
__reverse_destroy(_BidirectionalIterator __first, _BidirectionalIterator __last) { | ||
while (__last != __first) { | ||
--__last; | ||
std::__destroy_at(std::addressof(*__last)); | ||
} | ||
return __last; | ||
} | ||
|
||
// Destroy all elements in [__first, __last) from left to right using allocator destruction. | ||
template <class _Alloc, class _Iter, class _Sent> | ||
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void | ||
__allocator_destroy(_Alloc& __alloc, _Iter __first, _Sent __last) { | ||
for (; __first != __last; ++__first) | ||
allocator_traits<_Alloc>::destroy(__alloc, std::addressof(*__first)); | ||
} | ||
|
||
#if _LIBCPP_STD_VER >= 17 | ||
template <class _ForwardIterator> | ||
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void destroy(_ForwardIterator __first, _ForwardIterator __last) { | ||
(void)std::__destroy(std::move(__first), std::move(__last)); | ||
} | ||
|
||
template <class _ForwardIterator, class _Size> | ||
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 _ForwardIterator destroy_n(_ForwardIterator __first, _Size __n) { | ||
for (; __n > 0; (void)++__first, --__n) | ||
std::__destroy_at(std::addressof(*__first)); | ||
return __first; | ||
} | ||
#endif | ||
|
||
_LIBCPP_END_NAMESPACE_STD | ||
|
||
_LIBCPP_POP_MACROS | ||
|
||
#endif // _LIBCPP___MEMORY_DESTROY_H |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
// -*- 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___MEMORY_RANGES_DESTROY_H | ||
#define _LIBCPP___MEMORY_RANGES_DESTROY_H | ||
|
||
#include <__concepts/destructible.h> | ||
#include <__config> | ||
#include <__iterator/incrementable_traits.h> | ||
#include <__iterator/iterator_traits.h> | ||
#include <__memory/concepts.h> | ||
#include <__memory/destroy.h> | ||
#include <__ranges/access.h> | ||
#include <__ranges/concepts.h> | ||
#include <__ranges/dangling.h> | ||
#include <__utility/move.h> | ||
|
||
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) | ||
# pragma GCC system_header | ||
#endif | ||
|
||
_LIBCPP_PUSH_MACROS | ||
#include <__undef_macros> | ||
|
||
_LIBCPP_BEGIN_NAMESPACE_STD | ||
|
||
#if _LIBCPP_STD_VER >= 20 | ||
namespace ranges { | ||
|
||
// destroy | ||
|
||
struct __destroy { | ||
template <__nothrow_input_iterator _InputIterator, __nothrow_sentinel_for<_InputIterator> _Sentinel> | ||
requires destructible<iter_value_t<_InputIterator>> | ||
_LIBCPP_HIDE_FROM_ABI constexpr _InputIterator operator()(_InputIterator __first, _Sentinel __last) const noexcept { | ||
return std::__destroy(std::move(__first), std::move(__last)); | ||
} | ||
|
||
template <__nothrow_input_range _InputRange> | ||
requires destructible<range_value_t<_InputRange>> | ||
_LIBCPP_HIDE_FROM_ABI constexpr borrowed_iterator_t<_InputRange> operator()(_InputRange&& __range) const noexcept { | ||
return (*this)(ranges::begin(__range), ranges::end(__range)); | ||
} | ||
}; | ||
|
||
inline namespace __cpo { | ||
inline constexpr auto destroy = __destroy{}; | ||
} // namespace __cpo | ||
|
||
// destroy_n | ||
|
||
struct __destroy_n { | ||
template <__nothrow_input_iterator _InputIterator> | ||
requires destructible<iter_value_t<_InputIterator>> | ||
_LIBCPP_HIDE_FROM_ABI constexpr _InputIterator | ||
operator()(_InputIterator __first, iter_difference_t<_InputIterator> __n) const noexcept { | ||
return std::destroy_n(std::move(__first), __n); | ||
} | ||
}; | ||
|
||
inline namespace __cpo { | ||
inline constexpr auto destroy_n = __destroy_n{}; | ||
} // namespace __cpo | ||
|
||
} // namespace ranges | ||
|
||
#endif // _LIBCPP_STD_VER >= 20 | ||
|
||
_LIBCPP_END_NAMESPACE_STD | ||
|
||
_LIBCPP_POP_MACROS | ||
|
||
#endif // _LIBCPP___MEMORY_RANGES_DESTROY_H |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just to note: the previous implementation was based on the standard wording. I think this is simple enough that the change in implementation is fine.