summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-11-06 22:12:43 +0000
committerChris Lattner <sabre@nondot.org>2007-11-06 22:12:43 +0000
commit373a733be031f52cebbbcdb15ab5997d9b5f9f17 (patch)
tree9f008e9db0145e6432da03db24041a20d493bde3
parent0d97426b7b3d57cc3ff651a400b758733f2058a8 (diff)
downloadllvm-373a733be031f52cebbbcdb15ab5997d9b5f9f17.tar.gz
llvm-373a733be031f52cebbbcdb15ab5997d9b5f9f17.tar.bz2
llvm-373a733be031f52cebbbcdb15ab5997d9b5f9f17.tar.xz
make smallptrset more const and type correct, which caught a few
minor bugs. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43782 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/ADT/SmallPtrSet.h41
-rw-r--r--lib/Support/SmallPtrSet.cpp4
2 files changed, 30 insertions, 15 deletions
diff --git a/include/llvm/ADT/SmallPtrSet.h b/include/llvm/ADT/SmallPtrSet.h
index c326c7ffd6..ec7b78e359 100644
--- a/include/llvm/ADT/SmallPtrSet.h
+++ b/include/llvm/ADT/SmallPtrSet.h
@@ -91,21 +91,19 @@ public:
NumTombstones = 0;
}
- /// insert - This returns true if the pointer was new to the set, false if it
- /// was already in the set.
- bool insert(const void * Ptr);
-
- template <typename IterT>
- void insert(IterT I, IterT E) {
- for (; I != E; ++I)
- insert((void*)*I);
- }
+protected:
+ /// insert_imp - This returns true if the pointer was new to the set, false if
+ /// it was already in the set. This is hidden from the client so that the
+ /// derived class can check that the right type of pointer is passed in.
+ bool insert_imp(const void * Ptr);
- /// erase - If the set contains the specified pointer, remove it and return
- /// true, otherwise return false.
- bool erase(const void * Ptr);
+ /// erase_imp - If the set contains the specified pointer, remove it and
+ /// return true, otherwise return false. This is hidden from the client so
+ /// that the derived class can check that the right type of pointer is passed
+ /// in.
+ bool erase_imp(const void * Ptr);
- bool count(const void * Ptr) const {
+ bool count_imp(const void * Ptr) const {
if (isSmall()) {
// Linear search for the item.
for (const void *const *APtr = SmallArray,
@@ -232,6 +230,23 @@ public:
insert(I, E);
}
+ /// insert - This returns true if the pointer was new to the set, false if it
+ /// was already in the set.
+ bool insert(PtrType Ptr) { return insert_imp(Ptr); }
+
+ /// erase - If the set contains the specified pointer, remove it and return
+ /// true, otherwise return false.
+ bool erase(PtrType Ptr) { return erase_imp(Ptr); }
+
+ /// count - Return true if the specified pointer is in the set.
+ bool count(PtrType Ptr) const { return count_imp(Ptr); }
+
+ template <typename IterT>
+ void insert(IterT I, IterT E) {
+ for (; I != E; ++I)
+ insert(*I);
+ }
+
typedef SmallPtrSetIterator<PtrType> iterator;
typedef SmallPtrSetIterator<PtrType> const_iterator;
inline iterator begin() const {
diff --git a/lib/Support/SmallPtrSet.cpp b/lib/Support/SmallPtrSet.cpp
index eac2909a83..7aad3eeec7 100644
--- a/lib/Support/SmallPtrSet.cpp
+++ b/lib/Support/SmallPtrSet.cpp
@@ -36,7 +36,7 @@ void SmallPtrSetImpl::shrink_and_clear() {
CurArray[CurArraySize] = 0;
}
-bool SmallPtrSetImpl::insert(const void * Ptr) {
+bool SmallPtrSetImpl::insert_imp(const void * Ptr) {
if (isSmall()) {
// Check to see if it is already in the set.
for (const void **APtr = SmallArray, **E = SmallArray+NumElements;
@@ -69,7 +69,7 @@ bool SmallPtrSetImpl::insert(const void * Ptr) {
return true;
}
-bool SmallPtrSetImpl::erase(const void * Ptr) {
+bool SmallPtrSetImpl::erase_imp(const void * Ptr) {
if (isSmall()) {
// Check to see if it is in the set.
for (const void **APtr = SmallArray, **E = SmallArray+NumElements;