Rename the non-templated base class of SmallPtrSet to
[oota-llvm.git] / include / llvm / ADT / SmallPtrSet.h
1 //===- llvm/ADT/SmallPtrSet.h - 'Normally small' pointer set ----*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the SmallPtrSet class.  See the doxygen comment for
11 // SmallPtrSetImplBase for more details on the algorithm used.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_ADT_SMALLPTRSET_H
16 #define LLVM_ADT_SMALLPTRSET_H
17
18 #include "llvm/Support/Compiler.h"
19 #include "llvm/Support/DataTypes.h"
20 #include "llvm/Support/PointerLikeTypeTraits.h"
21 #include <cassert>
22 #include <cstddef>
23 #include <cstring>
24 #include <iterator>
25
26 namespace llvm {
27
28 class SmallPtrSetIteratorImpl;
29
30 /// SmallPtrSetImplBase - This is the common code shared among all the
31 /// SmallPtrSet<>'s, which is almost everything.  SmallPtrSet has two modes, one
32 /// for small and one for large sets.
33 ///
34 /// Small sets use an array of pointers allocated in the SmallPtrSet object,
35 /// which is treated as a simple array of pointers.  When a pointer is added to
36 /// the set, the array is scanned to see if the element already exists, if not
37 /// the element is 'pushed back' onto the array.  If we run out of space in the
38 /// array, we grow into the 'large set' case.  SmallSet should be used when the
39 /// sets are often small.  In this case, no memory allocation is used, and only
40 /// light-weight and cache-efficient scanning is used.
41 ///
42 /// Large sets use a classic exponentially-probed hash table.  Empty buckets are
43 /// represented with an illegal pointer value (-1) to allow null pointers to be
44 /// inserted.  Tombstones are represented with another illegal pointer value
45 /// (-2), to allow deletion.  The hash table is resized when the table is 3/4 or
46 /// more.  When this happens, the table is doubled in size.
47 ///
48 class SmallPtrSetImplBase {
49   friend class SmallPtrSetIteratorImpl;
50 protected:
51   /// SmallArray - Points to a fixed size set of buckets, used in 'small mode'.
52   const void **SmallArray;
53   /// CurArray - This is the current set of buckets.  If equal to SmallArray,
54   /// then the set is in 'small mode'.
55   const void **CurArray;
56   /// CurArraySize - The allocated size of CurArray, always a power of two.
57   unsigned CurArraySize;
58
59   // If small, this is # elts allocated consecutively
60   unsigned NumElements;
61   unsigned NumTombstones;
62
63   // Helpers to copy and move construct a SmallPtrSet.
64   SmallPtrSetImplBase(const void **SmallStorage, const SmallPtrSetImplBase &that);
65 #if LLVM_HAS_RVALUE_REFERENCES
66   SmallPtrSetImplBase(const void **SmallStorage, unsigned SmallSize,
67                   SmallPtrSetImplBase &&that);
68 #endif
69   explicit SmallPtrSetImplBase(const void **SmallStorage, unsigned SmallSize) :
70     SmallArray(SmallStorage), CurArray(SmallStorage), CurArraySize(SmallSize) {
71     assert(SmallSize && (SmallSize & (SmallSize-1)) == 0 &&
72            "Initial size must be a power of two!");
73     clear();
74   }
75   ~SmallPtrSetImplBase();
76
77 public:
78   bool LLVM_ATTRIBUTE_UNUSED_RESULT empty() const { return size() == 0; }
79   unsigned size() const { return NumElements; }
80
81   void clear() {
82     // If the capacity of the array is huge, and the # elements used is small,
83     // shrink the array.
84     if (!isSmall() && NumElements*4 < CurArraySize && CurArraySize > 32)
85       return shrink_and_clear();
86
87     // Fill the array with empty markers.
88     memset(CurArray, -1, CurArraySize*sizeof(void*));
89     NumElements = 0;
90     NumTombstones = 0;
91   }
92
93 protected:
94   static void *getTombstoneMarker() { return reinterpret_cast<void*>(-2); }
95   static void *getEmptyMarker() {
96     // Note that -1 is chosen to make clear() efficiently implementable with
97     // memset and because it's not a valid pointer value.
98     return reinterpret_cast<void*>(-1);
99   }
100
101   /// insert_imp - This returns true if the pointer was new to the set, false if
102   /// it was already in the set.  This is hidden from the client so that the
103   /// derived class can check that the right type of pointer is passed in.
104   bool insert_imp(const void * Ptr);
105
106   /// erase_imp - If the set contains the specified pointer, remove it and
107   /// return true, otherwise return false.  This is hidden from the client so
108   /// that the derived class can check that the right type of pointer is passed
109   /// in.
110   bool erase_imp(const void * Ptr);
111
112   bool count_imp(const void * Ptr) const {
113     if (isSmall()) {
114       // Linear search for the item.
115       for (const void *const *APtr = SmallArray,
116                       *const *E = SmallArray+NumElements; APtr != E; ++APtr)
117         if (*APtr == Ptr)
118           return true;
119       return false;
120     }
121
122     // Big set case.
123     return *FindBucketFor(Ptr) == Ptr;
124   }
125
126 private:
127   bool isSmall() const { return CurArray == SmallArray; }
128
129   const void * const *FindBucketFor(const void *Ptr) const;
130   void shrink_and_clear();
131
132   /// Grow - Allocate a larger backing store for the buckets and move it over.
133   void Grow(unsigned NewSize);
134
135   void operator=(const SmallPtrSetImplBase &RHS) LLVM_DELETED_FUNCTION;
136 protected:
137   /// swap - Swaps the elements of two sets.
138   /// Note: This method assumes that both sets have the same small size.
139   void swap(SmallPtrSetImplBase &RHS);
140
141   void CopyFrom(const SmallPtrSetImplBase &RHS);
142 #if LLVM_HAS_RVALUE_REFERENCES
143   void MoveFrom(unsigned SmallSize, SmallPtrSetImplBase &&RHS);
144 #endif
145 };
146
147 /// SmallPtrSetIteratorImpl - This is the common base class shared between all
148 /// instances of SmallPtrSetIterator.
149 class SmallPtrSetIteratorImpl {
150 protected:
151   const void *const *Bucket;
152   const void *const *End;
153 public:
154   explicit SmallPtrSetIteratorImpl(const void *const *BP, const void*const *E)
155     : Bucket(BP), End(E) {
156       AdvanceIfNotValid();
157   }
158
159   bool operator==(const SmallPtrSetIteratorImpl &RHS) const {
160     return Bucket == RHS.Bucket;
161   }
162   bool operator!=(const SmallPtrSetIteratorImpl &RHS) const {
163     return Bucket != RHS.Bucket;
164   }
165
166 protected:
167   /// AdvanceIfNotValid - If the current bucket isn't valid, advance to a bucket
168   /// that is.   This is guaranteed to stop because the end() bucket is marked
169   /// valid.
170   void AdvanceIfNotValid() {
171     assert(Bucket <= End);
172     while (Bucket != End &&
173            (*Bucket == SmallPtrSetImplBase::getEmptyMarker() ||
174             *Bucket == SmallPtrSetImplBase::getTombstoneMarker()))
175       ++Bucket;
176   }
177 };
178
179 /// SmallPtrSetIterator - This implements a const_iterator for SmallPtrSet.
180 template<typename PtrTy>
181 class SmallPtrSetIterator : public SmallPtrSetIteratorImpl {
182   typedef PointerLikeTypeTraits<PtrTy> PtrTraits;
183   
184 public:
185   typedef PtrTy                     value_type;
186   typedef PtrTy                     reference;
187   typedef PtrTy                     pointer;
188   typedef std::ptrdiff_t            difference_type;
189   typedef std::forward_iterator_tag iterator_category;
190   
191   explicit SmallPtrSetIterator(const void *const *BP, const void *const *E)
192     : SmallPtrSetIteratorImpl(BP, E) {}
193
194   // Most methods provided by baseclass.
195
196   const PtrTy operator*() const {
197     assert(Bucket < End);
198     return PtrTraits::getFromVoidPointer(const_cast<void*>(*Bucket));
199   }
200
201   inline SmallPtrSetIterator& operator++() {          // Preincrement
202     ++Bucket;
203     AdvanceIfNotValid();
204     return *this;
205   }
206
207   SmallPtrSetIterator operator++(int) {        // Postincrement
208     SmallPtrSetIterator tmp = *this; ++*this; return tmp;
209   }
210 };
211
212 /// RoundUpToPowerOfTwo - This is a helper template that rounds N up to the next
213 /// power of two (which means N itself if N is already a power of two).
214 template<unsigned N>
215 struct RoundUpToPowerOfTwo;
216
217 /// RoundUpToPowerOfTwoH - If N is not a power of two, increase it.  This is a
218 /// helper template used to implement RoundUpToPowerOfTwo.
219 template<unsigned N, bool isPowerTwo>
220 struct RoundUpToPowerOfTwoH {
221   enum { Val = N };
222 };
223 template<unsigned N>
224 struct RoundUpToPowerOfTwoH<N, false> {
225   enum {
226     // We could just use NextVal = N+1, but this converges faster.  N|(N-1) sets
227     // the right-most zero bits to one all at once, e.g. 0b0011000 -> 0b0011111.
228     Val = RoundUpToPowerOfTwo<(N|(N-1)) + 1>::Val
229   };
230 };
231
232 template<unsigned N>
233 struct RoundUpToPowerOfTwo {
234   enum { Val = RoundUpToPowerOfTwoH<N, (N&(N-1)) == 0>::Val };
235 };
236   
237
238 /// SmallPtrSet - This class implements a set which is optimized for holding
239 /// SmallSize or less elements.  This internally rounds up SmallSize to the next
240 /// power of two if it is not already a power of two.  See the comments above
241 /// SmallPtrSetImplBase for details of the algorithm.
242 template<class PtrType, unsigned SmallSize>
243 class SmallPtrSet : public SmallPtrSetImplBase {
244   // Make sure that SmallSize is a power of two, round up if not.
245   enum { SmallSizePowTwo = RoundUpToPowerOfTwo<SmallSize>::Val };
246   /// SmallStorage - Fixed size storage used in 'small mode'.
247   const void *SmallStorage[SmallSizePowTwo];
248   typedef PointerLikeTypeTraits<PtrType> PtrTraits;
249 public:
250   SmallPtrSet() : SmallPtrSetImplBase(SmallStorage, SmallSizePowTwo) {}
251   SmallPtrSet(const SmallPtrSet &that) : SmallPtrSetImplBase(SmallStorage, that) {}
252 #if LLVM_HAS_RVALUE_REFERENCES
253   SmallPtrSet(SmallPtrSet &&that)
254       : SmallPtrSetImplBase(SmallStorage, SmallSizePowTwo, std::move(that)) {}
255 #endif
256
257   template<typename It>
258   SmallPtrSet(It I, It E) : SmallPtrSetImplBase(SmallStorage, SmallSizePowTwo) {
259     insert(I, E);
260   }
261
262   /// insert - This returns true if the pointer was new to the set, false if it
263   /// was already in the set.
264   bool insert(PtrType Ptr) {
265     return insert_imp(PtrTraits::getAsVoidPointer(Ptr));
266   }
267
268   /// erase - If the set contains the specified pointer, remove it and return
269   /// true, otherwise return false.
270   bool erase(PtrType Ptr) {
271     return erase_imp(PtrTraits::getAsVoidPointer(Ptr));
272   }
273
274   /// count - Return 1 if the specified pointer is in the set, 0 otherwise.
275   unsigned count(PtrType Ptr) const {
276     return count_imp(PtrTraits::getAsVoidPointer(Ptr)) ? 1 : 0;
277   }
278
279   template <typename IterT>
280   void insert(IterT I, IterT E) {
281     for (; I != E; ++I)
282       insert(*I);
283   }
284
285   typedef SmallPtrSetIterator<PtrType> iterator;
286   typedef SmallPtrSetIterator<PtrType> const_iterator;
287   inline iterator begin() const {
288     return iterator(CurArray, CurArray+CurArraySize);
289   }
290   inline iterator end() const {
291     return iterator(CurArray+CurArraySize, CurArray+CurArraySize);
292   }
293
294   SmallPtrSet<PtrType, SmallSize> &
295   operator=(const SmallPtrSet<PtrType, SmallSize> &RHS) {
296     if (&RHS != this)
297       CopyFrom(RHS);
298     return *this;
299   }
300
301 #if LLVM_HAS_RVALUE_REFERENCES
302   SmallPtrSet<PtrType, SmallSize>&
303   operator=(SmallPtrSet<PtrType, SmallSize> &&RHS) {
304     if (&RHS != this)
305       MoveFrom(SmallSizePowTwo, std::move(RHS));
306     return *this;
307   }
308 #endif
309
310   /// swap - Swaps the elements of two sets.
311   void swap(SmallPtrSet<PtrType, SmallSize> &RHS) {
312     SmallPtrSetImplBase::swap(RHS);
313   }
314 };
315
316 }
317
318 namespace std {
319   /// Implement std::swap in terms of SmallPtrSet swap.
320   template<class T, unsigned N>
321   inline void swap(llvm::SmallPtrSet<T, N> &LHS, llvm::SmallPtrSet<T, N> &RHS) {
322     LHS.swap(RHS);
323   }
324 }
325
326 #endif