summaryrefslogtreecommitdiff
path: root/src/support/small_vector.h
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2023-07-26 13:51:09 -0700
committerGitHub <noreply@github.com>2023-07-26 13:51:09 -0700
commitf701d96b5412b6e4db856081acd7431faeafdb98 (patch)
treea1b1b23e2f2deafc6d3263babbd39ef5cab767eb /src/support/small_vector.h
parent2f879c0c3089e54472860a23a27985ac687d375d (diff)
downloadbinaryen-f701d96b5412b6e4db856081acd7431faeafdb98.tar.gz
binaryen-f701d96b5412b6e4db856081acd7431faeafdb98.tar.bz2
binaryen-f701d96b5412b6e4db856081acd7431faeafdb98.zip
SmallVector iteration improvements (#5825)
Diffstat (limited to 'src/support/small_vector.h')
-rw-r--r--src/support/small_vector.h27
1 files changed, 26 insertions, 1 deletions
diff --git a/src/support/small_vector.h b/src/support/small_vector.h
index c798dc594..4f2dc0b81 100644
--- a/src/support/small_vector.h
+++ b/src/support/small_vector.h
@@ -148,9 +148,13 @@ public:
// iteration
template<typename Parent, typename Iterator> struct IteratorBase {
+ // TODO: Add remaining things from
+ // https://en.cppreference.com/w/cpp/named_req/RandomAccessIterator
+ using iterator_category = std::random_access_iterator_tag;
using value_type = T;
using difference_type = long;
using reference = T&;
+ using pointer = T*;
Parent* parent;
size_t index;
@@ -161,7 +165,16 @@ public:
return index != other.index || parent != other.parent;
}
- void operator++() { index++; }
+ Iterator& operator++() {
+ Iterator& self = *static_cast<Iterator*>(this);
+ index++;
+ return self;
+ }
+ Iterator operator++(int) {
+ Iterator self = *static_cast<Iterator*>(this);
+ index++;
+ return self;
+ }
Iterator& operator+=(difference_type off) {
index += off;
@@ -171,6 +184,12 @@ public:
const Iterator operator+(difference_type off) const {
return Iterator(*this) += off;
}
+
+ off_t operator-(const Iterator& other) const { return index - other.index; }
+
+ bool operator==(const Iterator& other) const {
+ return parent == other.parent && index == other.index;
+ }
};
struct Iterator : IteratorBase<SmallVector<T, N>, Iterator> {
@@ -189,6 +208,12 @@ public:
Iterator end() { return Iterator(this, size()); }
ConstIterator begin() const { return ConstIterator(this, 0); }
ConstIterator end() const { return ConstIterator(this, size()); }
+
+ void erase(Iterator a, Iterator b) {
+ // Atm we only support erasing at the end, which is very efficient.
+ assert(b == end());
+ resize(a.index);
+ }
};
// A SmallVector for which some values may be read before they are written, and