Update SetVector to rely on the underlying set's insert to return a pair<iterator...
[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   SmallPtrSetImplBase(const void **SmallStorage, unsigned SmallSize,
66                   SmallPtrSetImplBase &&that);
67   explicit SmallPtrSetImplBase(const void **SmallStorage, unsigned SmallSize) :
68     SmallArray(SmallStorage), CurArray(SmallStorage), CurArraySize(SmallSize) {
69     assert(SmallSize && (SmallSize & (SmallSize-1)) == 0 &&
70            "Initial size must be a power of two!");
71     clear();
72   }
73   ~SmallPtrSetImplBase();
74
75 public:
76   typedef unsigned size_type;
77   bool LLVM_ATTRIBUTE_UNUSED_RESULT empty() const { return size() == 0; }
78   size_type size() const { return NumElements; }
79
80   void clear() {
81     // If the capacity of the array is huge, and the # elements used is small,
82     // shrink the array.
83     if (!isSmall() && NumElements*4 < CurArraySize && CurArraySize > 32)
84       return shrink_and_clear();
85
86     // Fill the array with empty markers.
87     memset(CurArray, -1, CurArraySize*sizeof(void*));
88     NumElements = 0;
89     NumTombstones = 0;
90   }
91
92 protected:
93   static void *getTombstoneMarker() { return reinterpret_cast<void*>(-2); }
94   static void *getEmptyMarker() {
95     // Note that -1 is chosen to make clear() efficiently implementable with
96     // memset and because it's not a valid pointer value.
97     return reinterpret_cast<void*>(-1);
98   }
99
100   /// insert_imp - This returns true if the pointer was new to the set, false if
101   /// it was already in the set.  This is hidden from the client so that the
102   /// derived class can check that the right type of pointer is passed in.
103   std::pair<const void *const *, bool> insert_imp(const void *Ptr);
104
105   /// erase_imp - If the set contains the specified pointer, remove it and
106   /// return true, otherwise return false.  This is hidden from the client so
107   /// that the derived class can check that the right type of pointer is passed
108   /// in.
109   bool erase_imp(const void * Ptr);
110
111   bool count_imp(const void * Ptr) const {
112     if (isSmall()) {
113       // Linear search for the item.
114       for (const void *const *APtr = SmallArray,
115                       *const *E = SmallArray+NumElements; APtr != E; ++APtr)
116         if (*APtr == Ptr)
117           return true;
118       return false;
119     }
120
121     // Big set case.
122     return *FindBucketFor(Ptr) == Ptr;
123   }
124
125 private:
126   bool isSmall() const { return CurArray == SmallArray; }
127
128   const void * const *FindBucketFor(const void *Ptr) const;
129   void shrink_and_clear();
130
131   /// Grow - Allocate a larger backing store for the buckets and move it over.
132   void Grow(unsigned NewSize);
133
134   void operator=(const SmallPtrSetImplBase &RHS) LLVM_DELETED_FUNCTION;
135 protected:
136   /// swap - Swaps the elements of two sets.
137   /// Note: This method assumes that both sets have the same small size.
138   void swap(SmallPtrSetImplBase &RHS);
139
140   void CopyFrom(const SmallPtrSetImplBase &RHS);
141   void MoveFrom(unsigned SmallSize, SmallPtrSetImplBase &&RHS);
142 };
143
144 /// SmallPtrSetIteratorImpl - This is the common base class shared between all
145 /// instances of SmallPtrSetIterator.
146 class SmallPtrSetIteratorImpl {
147 protected:
148   const void *const *Bucket;
149   const void *const *End;
150 public:
151   explicit SmallPtrSetIteratorImpl(const void *const *BP, const void*const *E)
152     : Bucket(BP), End(E) {
153       AdvanceIfNotValid();
154   }
155
156   bool operator==(const SmallPtrSetIteratorImpl &RHS) const {
157     return Bucket == RHS.Bucket;
158   }
159   bool operator!=(const SmallPtrSetIteratorImpl &RHS) const {
160     return Bucket != RHS.Bucket;
161   }
162
163 protected:
164   /// AdvanceIfNotValid - If the current bucket isn't valid, advance to a bucket
165   /// that is.   This is guaranteed to stop because the end() bucket is marked
166   /// valid.
167   void AdvanceIfNotValid() {
168     assert(Bucket <= End);
169     while (Bucket != End &&
170            (*Bucket == SmallPtrSetImplBase::getEmptyMarker() ||
171             *Bucket == SmallPtrSetImplBase::getTombstoneMarker()))
172       ++Bucket;
173   }
174 };
175
176 /// SmallPtrSetIterator - This implements a const_iterator for SmallPtrSet.
177 template<typename PtrTy>
178 class SmallPtrSetIterator : public SmallPtrSetIteratorImpl {
179   typedef PointerLikeTypeTraits<PtrTy> PtrTraits;
180   
181 public:
182   typedef PtrTy                     value_type;
183   typedef PtrTy                     reference;
184   typedef PtrTy                     pointer;
185   typedef std::ptrdiff_t            difference_type;
186   typedef std::forward_iterator_tag iterator_category;
187   
188   explicit SmallPtrSetIterator(const void *const *BP, const void *const *E)
189     : SmallPtrSetIteratorImpl(BP, E) {}
190
191   // Most methods provided by baseclass.
192
193   const PtrTy operator*() const {
194     assert(Bucket < End);
195     return PtrTraits::getFromVoidPointer(const_cast<void*>(*Bucket));
196   }
197
198   inline SmallPtrSetIterator& operator++() {          // Preincrement
199     ++Bucket;
200     AdvanceIfNotValid();
201     return *this;
202   }
203
204   SmallPtrSetIterator operator++(int) {        // Postincrement
205     SmallPtrSetIterator tmp = *this; ++*this; return tmp;
206   }
207 };
208
209 /// RoundUpToPowerOfTwo - This is a helper template that rounds N up to the next
210 /// power of two (which means N itself if N is already a power of two).
211 template<unsigned N>
212 struct RoundUpToPowerOfTwo;
213
214 /// RoundUpToPowerOfTwoH - If N is not a power of two, increase it.  This is a
215 /// helper template used to implement RoundUpToPowerOfTwo.
216 template<unsigned N, bool isPowerTwo>
217 struct RoundUpToPowerOfTwoH {
218   enum { Val = N };
219 };
220 template<unsigned N>
221 struct RoundUpToPowerOfTwoH<N, false> {
222   enum {
223     // We could just use NextVal = N+1, but this converges faster.  N|(N-1) sets
224     // the right-most zero bits to one all at once, e.g. 0b0011000 -> 0b0011111.
225     Val = RoundUpToPowerOfTwo<(N|(N-1)) + 1>::Val
226   };
227 };
228
229 template<unsigned N>
230 struct RoundUpToPowerOfTwo {
231   enum { Val = RoundUpToPowerOfTwoH<N, (N&(N-1)) == 0>::Val };
232 };
233   
234
235 /// \brief A templated base class for \c SmallPtrSet which provides the
236 /// typesafe interface that is common across all small sizes.
237 ///
238 /// This is particularly useful for passing around between interface boundaries
239 /// to avoid encoding a particular small size in the interface boundary.
240 template <typename PtrType>
241 class SmallPtrSetImpl : public SmallPtrSetImplBase {
242   typedef PointerLikeTypeTraits<PtrType> PtrTraits;
243
244   SmallPtrSetImpl(const SmallPtrSetImpl&) LLVM_DELETED_FUNCTION;
245 protected:
246   // Constructors that forward to the base.
247   SmallPtrSetImpl(const void **SmallStorage, const SmallPtrSetImpl &that)
248       : SmallPtrSetImplBase(SmallStorage, that) {}
249   SmallPtrSetImpl(const void **SmallStorage, unsigned SmallSize,
250                   SmallPtrSetImpl &&that)
251       : SmallPtrSetImplBase(SmallStorage, SmallSize, std::move(that)) {}
252   explicit SmallPtrSetImpl(const void **SmallStorage, unsigned SmallSize)
253       : SmallPtrSetImplBase(SmallStorage, SmallSize) {}
254
255 public:
256   typedef SmallPtrSetIterator<PtrType> iterator;
257   typedef SmallPtrSetIterator<PtrType> const_iterator;
258
259   /// insert - This returns true if the pointer was new to the set, false if it
260   /// was already in the set.
261   std::pair<iterator, bool> insert(PtrType Ptr) {
262     auto p = insert_imp(PtrTraits::getAsVoidPointer(Ptr));
263     return std::make_pair(iterator(p.first, CurArray + CurArraySize), p.second);
264   }
265
266   /// erase - If the set contains the specified pointer, remove it and return
267   /// true, otherwise return false.
268   bool erase(PtrType Ptr) {
269     return erase_imp(PtrTraits::getAsVoidPointer(Ptr));
270   }
271
272   /// count - Return 1 if the specified pointer is in the set, 0 otherwise.
273   size_type count(PtrType Ptr) const {
274     return count_imp(PtrTraits::getAsVoidPointer(Ptr)) ? 1 : 0;
275   }
276
277   template <typename IterT>
278   void insert(IterT I, IterT E) {
279     for (; I != E; ++I)
280       insert(*I);
281   }
282
283   inline iterator begin() const {
284     return iterator(CurArray, CurArray+CurArraySize);
285   }
286   inline iterator end() const {
287     return iterator(CurArray+CurArraySize, CurArray+CurArraySize);
288   }
289 };
290
291 /// SmallPtrSet - This class implements a set which is optimized for holding
292 /// SmallSize or less elements.  This internally rounds up SmallSize to the next
293 /// power of two if it is not already a power of two.  See the comments above
294 /// SmallPtrSetImplBase for details of the algorithm.
295 template<class PtrType, unsigned SmallSize>
296 class SmallPtrSet : public SmallPtrSetImpl<PtrType> {
297   typedef SmallPtrSetImpl<PtrType> BaseT;
298
299   // Make sure that SmallSize is a power of two, round up if not.
300   enum { SmallSizePowTwo = RoundUpToPowerOfTwo<SmallSize>::Val };
301   /// SmallStorage - Fixed size storage used in 'small mode'.
302   const void *SmallStorage[SmallSizePowTwo];
303 public:
304   SmallPtrSet() : BaseT(SmallStorage, SmallSizePowTwo) {}
305   SmallPtrSet(const SmallPtrSet &that) : BaseT(SmallStorage, that) {}
306   SmallPtrSet(SmallPtrSet &&that)
307       : BaseT(SmallStorage, SmallSizePowTwo, std::move(that)) {}
308
309   template<typename It>
310   SmallPtrSet(It I, It E) : BaseT(SmallStorage, SmallSizePowTwo) {
311     this->insert(I, E);
312   }
313
314   SmallPtrSet<PtrType, SmallSize> &
315   operator=(const SmallPtrSet<PtrType, SmallSize> &RHS) {
316     if (&RHS != this)
317       this->CopyFrom(RHS);
318     return *this;
319   }
320
321   SmallPtrSet<PtrType, SmallSize>&
322   operator=(SmallPtrSet<PtrType, SmallSize> &&RHS) {
323     if (&RHS != this)
324       this->MoveFrom(SmallSizePowTwo, std::move(RHS));
325     return *this;
326   }
327
328   /// swap - Swaps the elements of two sets.
329   void swap(SmallPtrSet<PtrType, SmallSize> &RHS) {
330     SmallPtrSetImplBase::swap(RHS);
331   }
332 };
333
334 }
335
336 namespace std {
337   /// Implement std::swap in terms of SmallPtrSet swap.
338   template<class T, unsigned N>
339   inline void swap(llvm::SmallPtrSet<T, N> &LHS, llvm::SmallPtrSet<T, N> &RHS) {
340     LHS.swap(RHS);
341   }
342 }
343
344 #endif