-
Notifications
You must be signed in to change notification settings - Fork 14.4k
[libc++] Fix uninitialized algorithms when using unconstrained comparison operators #69373
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
ldionne
merged 2 commits into
llvm:main
from
ldionne:review/fix-uninitialized-algorithms
Oct 20, 2023
Merged
Changes from 1 commit
Commits
Show all changes
2 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
71 changes: 71 additions & 0 deletions
71
libcxx/test/std/utilities/memory/specialized.algorithms/overload_compare_iterator.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
// -*- 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_TEST_STD_UTILITIES_MEMORY_SPECIALIZED_ALGORITHMS_OVERLOAD_COMPARE_ITERATOR_H | ||
#define LIBCPP_TEST_STD_UTILITIES_MEMORY_SPECIALIZED_ALGORITHMS_OVERLOAD_COMPARE_ITERATOR_H | ||
|
||
#include <iterator> | ||
#include <memory> | ||
|
||
// An iterator type that overloads operator== and operator!= without any constraints, which | ||
// can trip up some algorithms if we compare iterators against types that we're not allowed to. | ||
// | ||
// See https://github.com/llvm/llvm-project/issues/69334 for details. | ||
template <class Iterator> | ||
struct overload_compare_iterator { | ||
using value_type = typename std::iterator_traits<Iterator>::value_type; | ||
using difference_type = typename std::iterator_traits<Iterator>::difference_type; | ||
using reference = typename std::iterator_traits<Iterator>::reference; | ||
using pointer = typename std::iterator_traits<Iterator>::pointer; | ||
using iterator_category = typename std::iterator_traits<Iterator>::iterator_category; | ||
|
||
overload_compare_iterator() = default; | ||
|
||
explicit overload_compare_iterator(Iterator it) : it_(it) {} | ||
|
||
overload_compare_iterator(overload_compare_iterator const&) = default; | ||
overload_compare_iterator(overload_compare_iterator&&) = default; | ||
overload_compare_iterator& operator=(overload_compare_iterator const&) = default; | ||
overload_compare_iterator& operator=(overload_compare_iterator&&) = default; | ||
|
||
constexpr reference operator*() const noexcept { return *it_; } | ||
|
||
constexpr pointer operator->() const noexcept { return std::addressof(*it_); } | ||
|
||
constexpr overload_compare_iterator& operator++() noexcept { | ||
++it_; | ||
return *this; | ||
} | ||
|
||
constexpr overload_compare_iterator operator++(int) const noexcept { | ||
overload_compare_iterator old{*this}; | ||
++(*this); | ||
return old; | ||
} | ||
|
||
constexpr bool operator==(overload_compare_iterator const& other) const noexcept { return this->it_ == other.it_; } | ||
|
||
constexpr bool operator!=(overload_compare_iterator const& other) const noexcept { return !this->operator==(other); } | ||
|
||
// Hostile overloads | ||
template <class Sentinel> | ||
friend bool operator==(overload_compare_iterator const& lhs, Sentinel const& rhs) noexcept { | ||
return static_cast<Iterator const&>(lhs) == rhs; | ||
} | ||
|
||
template <class Sentinel> | ||
friend bool operator!=(overload_compare_iterator const& lhs, Sentinel const& rhs) noexcept { | ||
return static_cast<Iterator const&>(lhs) != rhs; | ||
} | ||
|
||
private: | ||
Iterator it_; | ||
}; | ||
|
||
#endif // LIBCPP_TEST_STD_UTILITIES_MEMORY_SPECIALIZED_ALGORITHMS_OVERLOAD_COMPARE_ITERATOR_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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.