[libc-commits] [libc] [llvm] [libc][support][FixedVector] add reverse iterator (PR #86732)
Nick Desaulniers via libc-commits
libc-commits at lists.llvm.org
Tue Mar 26 13:38:15 PDT 2024
https://github.com/nickdesaulniers updated https://github.com/llvm/llvm-project/pull/86732
>From ca5605fd0c45d7b73d5f57619ced17c6f01910c7 Mon Sep 17 00:00:00 2001
From: Nick Desaulniers <ndesaulniers at google.com>
Date: Tue, 26 Mar 2024 10:57:06 -0700
Subject: [PATCH 1/3] [libc][support][FixedVector] add reverse iterator
Critically, we don't want to return an iterator to the end of the underlying
cpp::array "store." Add a test to catch this issue.
This will be used by __cxa_finalize to iterate backwards through a FixedVector.
Link: 85651
---
libc/src/__support/fixedvector.h | 6 ++++++
libc/test/src/__support/fixedvector_test.cpp | 16 ++++++++++++++++
2 files changed, 22 insertions(+)
diff --git a/libc/src/__support/fixedvector.h b/libc/src/__support/fixedvector.h
index fff905d8c6c418..393190379dff2b 100644
--- a/libc/src/__support/fixedvector.h
+++ b/libc/src/__support/fixedvector.h
@@ -11,6 +11,8 @@
#include "src/__support/CPP/array.h"
+#include "src/__support/CPP/iterator.h"
+
namespace LIBC_NAMESPACE {
// A fixed size data store backed by an underlying cpp::array data structure. It
@@ -55,6 +57,10 @@ template <typename T, size_t CAPACITY> class FixedVector {
// matches the `destroy` API of those other data structures so that users
// can easily swap one data structure for the other.
static void destroy(FixedVector<T, CAPACITY> *store) { store->reset(); }
+
+ using reverse_iterator = typename cpp::array<T, CAPACITY>::reverse_iterator;
+ LIBC_INLINE constexpr reverse_iterator rbegin() { return reverse_iterator{&store[item_count]}; }
+ LIBC_INLINE constexpr reverse_iterator rend() { return store.rend(); }
};
} // namespace LIBC_NAMESPACE
diff --git a/libc/test/src/__support/fixedvector_test.cpp b/libc/test/src/__support/fixedvector_test.cpp
index a70ebfabed2270..4e92081321de7a 100644
--- a/libc/test/src/__support/fixedvector_test.cpp
+++ b/libc/test/src/__support/fixedvector_test.cpp
@@ -43,3 +43,19 @@ TEST(LlvmLibcFixedVectorTest, Destroy) {
LIBC_NAMESPACE::FixedVector<int, 20>::destroy(&fixed_vector);
ASSERT_TRUE(fixed_vector.empty());
}
+
+TEST(LlvmLibcFixedVectorTest, Iteration) {
+ LIBC_NAMESPACE::FixedVector<int, 20> v;
+ for (int i = 0; i < 3; i++)
+ v.push_back(i);
+ auto it = v.rbegin();
+ ASSERT_EQ(*it, 2);
+ ASSERT_EQ(*++it, 1);
+ ASSERT_EQ(*++it, 0);
+ // TODO: need an overload of Test::test for iterators?
+ // ASSERT_EQ(++it, v.rend());
+ // ASSERT_EQ(v.rbegin(), v.rbegin());
+ ASSERT_TRUE(++it == v.rend());
+ for (auto it = v.rbegin(), e = v.rend(); it != e; ++it)
+ ASSERT_GT(*it, -1);
+}
>From 9d8221dea89140992b4d804bd2dda22b023fcc8e Mon Sep 17 00:00:00 2001
From: Nick Desaulniers <ndesaulniers at google.com>
Date: Tue, 26 Mar 2024 13:30:28 -0700
Subject: [PATCH 2/3] format
---
libc/src/__support/fixedvector.h | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/libc/src/__support/fixedvector.h b/libc/src/__support/fixedvector.h
index 393190379dff2b..81747ee10067c4 100644
--- a/libc/src/__support/fixedvector.h
+++ b/libc/src/__support/fixedvector.h
@@ -59,7 +59,9 @@ template <typename T, size_t CAPACITY> class FixedVector {
static void destroy(FixedVector<T, CAPACITY> *store) { store->reset(); }
using reverse_iterator = typename cpp::array<T, CAPACITY>::reverse_iterator;
- LIBC_INLINE constexpr reverse_iterator rbegin() { return reverse_iterator{&store[item_count]}; }
+ LIBC_INLINE constexpr reverse_iterator rbegin() {
+ return reverse_iterator{&store[item_count]};
+ }
LIBC_INLINE constexpr reverse_iterator rend() { return store.rend(); }
};
>From 05c923c0bab2bbcbe6b1b10ce04a40733ebf3226 Mon Sep 17 00:00:00 2001
From: Nick Desaulniers <ndesaulniers at google.com>
Date: Tue, 26 Mar 2024 13:32:41 -0700
Subject: [PATCH 3/3] bazel
---
utils/bazel/llvm-project-overlay/libc/BUILD.bazel | 1 +
1 file changed, 1 insertion(+)
diff --git a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
index 57dc75a3a48e60..0ee578c3faf071 100644
--- a/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/libc/BUILD.bazel
@@ -445,6 +445,7 @@ libc_support_library(
hdrs = ["src/__support/fixedvector.h"],
deps = [
":__support_cpp_array",
+ ":__support_cpp_iterator",
],
)
More information about the libc-commits
mailing list