[llvm] f6ad65a - [ADT] Add SmallPtrSet::insert_range (#131716)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 18 00:21:10 PDT 2025
Author: Kazu Hirata
Date: 2025-03-18T00:21:07-07:00
New Revision: f6ad65a8248d8fdc03b602891aabbdf715e589b0
URL: https://github.com/llvm/llvm-project/commit/f6ad65a8248d8fdc03b602891aabbdf715e589b0
DIFF: https://github.com/llvm/llvm-project/commit/f6ad65a8248d8fdc03b602891aabbdf715e589b0.diff
LOG: [ADT] Add SmallPtrSet::insert_range (#131716)
This pach adds SmallPtrSet::insert_range for consistency with
DenseSet::insert_range and std::set::insert_range from C++23.
Added:
Modified:
llvm/include/llvm/ADT/SmallPtrSet.h
llvm/unittests/ADT/SmallPtrSetTest.cpp
Removed:
################################################################################
diff --git a/llvm/include/llvm/ADT/SmallPtrSet.h b/llvm/include/llvm/ADT/SmallPtrSet.h
index cf6abc9129b40..af26661699444 100644
--- a/llvm/include/llvm/ADT/SmallPtrSet.h
+++ b/llvm/include/llvm/ADT/SmallPtrSet.h
@@ -15,6 +15,7 @@
#ifndef LLVM_ADT_SMALLPTRSET_H
#define LLVM_ADT_SMALLPTRSET_H
+#include "llvm/ADT/ADL.h"
#include "llvm/ADT/EpochTracker.h"
#include "llvm/Support/MathExtras.h"
#include "llvm/Support/ReverseIteration.h"
@@ -469,6 +470,10 @@ class SmallPtrSetImpl : public SmallPtrSetImplBase {
insert(IL.begin(), IL.end());
}
+ template <typename Range> void insert_range(Range &&R) {
+ insert(adl_begin(R), adl_end(R));
+ }
+
iterator begin() const {
if (shouldReverseIterate())
return makeIterator(EndPointer() - 1);
diff --git a/llvm/unittests/ADT/SmallPtrSetTest.cpp b/llvm/unittests/ADT/SmallPtrSetTest.cpp
index 1d9a0d1725a92..2a634a68d6e66 100644
--- a/llvm/unittests/ADT/SmallPtrSetTest.cpp
+++ b/llvm/unittests/ADT/SmallPtrSetTest.cpp
@@ -411,6 +411,14 @@ TEST(SmallPtrSetTest, RemoveIf) {
EXPECT_FALSE(Removed);
}
+TEST(SmallPtrSetTest, InsertRange) {
+ int Vals[3] = {0, 1, 2};
+ SmallPtrSet<int *, 4> Set;
+ int *Args[] = {&Vals[2], &Vals[0], &Vals[1]};
+ Set.insert_range(Args);
+ EXPECT_THAT(Set, UnorderedElementsAre(&Vals[0], &Vals[1], &Vals[2]));
+}
+
TEST(SmallPtrSetTest, Reserve) {
// Check that we don't do anything silly when using reserve().
SmallPtrSet<int *, 4> Set;
More information about the llvm-commits
mailing list