Clean up SmallString a bit
[oota-llvm.git] / include / llvm / ADT / SmallVector.h
1 //===- llvm/ADT/SmallVector.h - 'Normally small' vectors --------*- 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 SmallVector class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_ADT_SMALLVECTOR_H
15 #define LLVM_ADT_SMALLVECTOR_H
16
17 #include "llvm/Support/AlignOf.h"
18 #include "llvm/Support/Compiler.h"
19 #include "llvm/Support/MathExtras.h"
20 #include "llvm/Support/type_traits.h"
21 #include <algorithm>
22 #include <cassert>
23 #include <cstddef>
24 #include <cstdlib>
25 #include <cstring>
26 #include <iterator>
27 #include <memory>
28
29 namespace llvm {
30
31 /// SmallVectorBase - This is all the non-templated stuff common to all
32 /// SmallVectors.
33 class SmallVectorBase {
34 protected:
35   void *BeginX, *EndX, *CapacityX;
36
37 protected:
38   SmallVectorBase(void *FirstEl, size_t Size)
39     : BeginX(FirstEl), EndX(FirstEl), CapacityX((char*)FirstEl+Size) {}
40
41   /// grow_pod - This is an implementation of the grow() method which only works
42   /// on POD-like data types and is out of line to reduce code duplication.
43   void grow_pod(void *FirstEl, size_t MinSizeInBytes, size_t TSize);
44
45 public:
46   /// size_in_bytes - This returns size()*sizeof(T).
47   size_t size_in_bytes() const {
48     return size_t((char*)EndX - (char*)BeginX);
49   }
50
51   /// capacity_in_bytes - This returns capacity()*sizeof(T).
52   size_t capacity_in_bytes() const {
53     return size_t((char*)CapacityX - (char*)BeginX);
54   }
55
56   bool LLVM_ATTRIBUTE_UNUSED_RESULT empty() const { return BeginX == EndX; }
57 };
58
59 template <typename T, unsigned N> struct SmallVectorStorage;
60
61 /// SmallVectorTemplateCommon - This is the part of SmallVectorTemplateBase
62 /// which does not depend on whether the type T is a POD. The extra dummy
63 /// template argument is used by ArrayRef to avoid unnecessarily requiring T
64 /// to be complete.
65 template <typename T, typename = void>
66 class SmallVectorTemplateCommon : public SmallVectorBase {
67 private:
68   template <typename, unsigned> friend struct SmallVectorStorage;
69
70   // Allocate raw space for N elements of type T.  If T has a ctor or dtor, we
71   // don't want it to be automatically run, so we need to represent the space as
72   // something else.  Use an array of char of sufficient alignment.
73   typedef llvm::AlignedCharArrayUnion<T> U;
74   U FirstEl;
75   // Space after 'FirstEl' is clobbered, do not add any instance vars after it.
76
77 protected:
78   SmallVectorTemplateCommon(size_t Size) : SmallVectorBase(&FirstEl, Size) {}
79
80   void grow_pod(size_t MinSizeInBytes, size_t TSize) {
81     SmallVectorBase::grow_pod(&FirstEl, MinSizeInBytes, TSize);
82   }
83
84   /// isSmall - Return true if this is a smallvector which has not had dynamic
85   /// memory allocated for it.
86   bool isSmall() const {
87     return BeginX == static_cast<const void*>(&FirstEl);
88   }
89
90   /// resetToSmall - Put this vector in a state of being small.
91   void resetToSmall() {
92     BeginX = EndX = CapacityX = &FirstEl;
93   }
94
95   void setEnd(T *P) { this->EndX = P; }
96 public:
97   typedef size_t size_type;
98   typedef ptrdiff_t difference_type;
99   typedef T value_type;
100   typedef T *iterator;
101   typedef const T *const_iterator;
102
103   typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
104   typedef std::reverse_iterator<iterator> reverse_iterator;
105
106   typedef T &reference;
107   typedef const T &const_reference;
108   typedef T *pointer;
109   typedef const T *const_pointer;
110
111   // forward iterator creation methods.
112   iterator begin() { return (iterator)this->BeginX; }
113   const_iterator begin() const { return (const_iterator)this->BeginX; }
114   iterator end() { return (iterator)this->EndX; }
115   const_iterator end() const { return (const_iterator)this->EndX; }
116 protected:
117   iterator capacity_ptr() { return (iterator)this->CapacityX; }
118   const_iterator capacity_ptr() const { return (const_iterator)this->CapacityX;}
119 public:
120
121   // reverse iterator creation methods.
122   reverse_iterator rbegin()            { return reverse_iterator(end()); }
123   const_reverse_iterator rbegin() const{ return const_reverse_iterator(end()); }
124   reverse_iterator rend()              { return reverse_iterator(begin()); }
125   const_reverse_iterator rend() const { return const_reverse_iterator(begin());}
126
127   size_type size() const { return end()-begin(); }
128   size_type max_size() const { return size_type(-1) / sizeof(T); }
129
130   /// capacity - Return the total number of elements in the currently allocated
131   /// buffer.
132   size_t capacity() const { return capacity_ptr() - begin(); }
133
134   /// data - Return a pointer to the vector's buffer, even if empty().
135   pointer data() { return pointer(begin()); }
136   /// data - Return a pointer to the vector's buffer, even if empty().
137   const_pointer data() const { return const_pointer(begin()); }
138
139   reference operator[](unsigned idx) {
140     assert(begin() + idx < end());
141     return begin()[idx];
142   }
143   const_reference operator[](unsigned idx) const {
144     assert(begin() + idx < end());
145     return begin()[idx];
146   }
147
148   reference front() {
149     assert(!empty());
150     return begin()[0];
151   }
152   const_reference front() const {
153     assert(!empty());
154     return begin()[0];
155   }
156
157   reference back() {
158     assert(!empty());
159     return end()[-1];
160   }
161   const_reference back() const {
162     assert(!empty());
163     return end()[-1];
164   }
165 };
166
167 /// SmallVectorTemplateBase<isPodLike = false> - This is where we put method
168 /// implementations that are designed to work with non-POD-like T's.
169 template <typename T, bool isPodLike>
170 class SmallVectorTemplateBase : public SmallVectorTemplateCommon<T> {
171 protected:
172   SmallVectorTemplateBase(size_t Size) : SmallVectorTemplateCommon<T>(Size) {}
173
174   static void destroy_range(T *S, T *E) {
175     while (S != E) {
176       --E;
177       E->~T();
178     }
179   }
180
181   /// move - Use move-assignment to move the range [I, E) onto the
182   /// objects starting with "Dest".  This is just <memory>'s
183   /// std::move, but not all stdlibs actually provide that.
184   template<typename It1, typename It2>
185   static It2 move(It1 I, It1 E, It2 Dest) {
186     for (; I != E; ++I, ++Dest)
187       *Dest = ::std::move(*I);
188     return Dest;
189   }
190
191   /// move_backward - Use move-assignment to move the range
192   /// [I, E) onto the objects ending at "Dest", moving objects
193   /// in reverse order.  This is just <algorithm>'s
194   /// std::move_backward, but not all stdlibs actually provide that.
195   template<typename It1, typename It2>
196   static It2 move_backward(It1 I, It1 E, It2 Dest) {
197     while (I != E)
198       *--Dest = ::std::move(*--E);
199     return Dest;
200   }
201
202   /// uninitialized_move - Move the range [I, E) into the uninitialized
203   /// memory starting with "Dest", constructing elements as needed.
204   template<typename It1, typename It2>
205   static void uninitialized_move(It1 I, It1 E, It2 Dest) {
206     for (; I != E; ++I, ++Dest)
207       ::new ((void*) &*Dest) T(::std::move(*I));
208   }
209
210   /// uninitialized_copy - Copy the range [I, E) onto the uninitialized
211   /// memory starting with "Dest", constructing elements as needed.
212   template<typename It1, typename It2>
213   static void uninitialized_copy(It1 I, It1 E, It2 Dest) {
214     std::uninitialized_copy(I, E, Dest);
215   }
216
217   /// grow - Grow the allocated memory (without initializing new
218   /// elements), doubling the size of the allocated memory.
219   /// Guarantees space for at least one more element, or MinSize more
220   /// elements if specified.
221   void grow(size_t MinSize = 0);
222   
223 public:
224   void push_back(const T &Elt) {
225     if (this->EndX < this->CapacityX) {
226     Retry:
227       ::new ((void*) this->end()) T(Elt);
228       this->setEnd(this->end()+1);
229       return;
230     }
231     this->grow();
232     goto Retry;
233   }
234
235   void push_back(T &&Elt) {
236     if (this->EndX < this->CapacityX) {
237     Retry:
238       ::new ((void*) this->end()) T(::std::move(Elt));
239       this->setEnd(this->end()+1);
240       return;
241     }
242     this->grow();
243     goto Retry;
244   }
245
246   void pop_back() {
247     this->setEnd(this->end()-1);
248     this->end()->~T();
249   }
250 };
251
252 // Define this out-of-line to dissuade the C++ compiler from inlining it.
253 template <typename T, bool isPodLike>
254 void SmallVectorTemplateBase<T, isPodLike>::grow(size_t MinSize) {
255   size_t CurCapacity = this->capacity();
256   size_t CurSize = this->size();
257   // Always grow, even from zero.  
258   size_t NewCapacity = size_t(NextPowerOf2(CurCapacity+2));
259   if (NewCapacity < MinSize)
260     NewCapacity = MinSize;
261   T *NewElts = static_cast<T*>(malloc(NewCapacity*sizeof(T)));
262
263   // Move the elements over.
264   this->uninitialized_move(this->begin(), this->end(), NewElts);
265
266   // Destroy the original elements.
267   destroy_range(this->begin(), this->end());
268
269   // If this wasn't grown from the inline copy, deallocate the old space.
270   if (!this->isSmall())
271     free(this->begin());
272
273   this->setEnd(NewElts+CurSize);
274   this->BeginX = NewElts;
275   this->CapacityX = this->begin()+NewCapacity;
276 }
277
278
279 /// SmallVectorTemplateBase<isPodLike = true> - This is where we put method
280 /// implementations that are designed to work with POD-like T's.
281 template <typename T>
282 class SmallVectorTemplateBase<T, true> : public SmallVectorTemplateCommon<T> {
283 protected:
284   SmallVectorTemplateBase(size_t Size) : SmallVectorTemplateCommon<T>(Size) {}
285
286   // No need to do a destroy loop for POD's.
287   static void destroy_range(T *, T *) {}
288
289   /// move - Use move-assignment to move the range [I, E) onto the
290   /// objects starting with "Dest".  For PODs, this is just memcpy.
291   template<typename It1, typename It2>
292   static It2 move(It1 I, It1 E, It2 Dest) {
293     return ::std::copy(I, E, Dest);
294   }
295
296   /// move_backward - Use move-assignment to move the range
297   /// [I, E) onto the objects ending at "Dest", moving objects
298   /// in reverse order.
299   template<typename It1, typename It2>
300   static It2 move_backward(It1 I, It1 E, It2 Dest) {
301     return ::std::copy_backward(I, E, Dest);
302   }
303
304   /// uninitialized_move - Move the range [I, E) onto the uninitialized memory
305   /// starting with "Dest", constructing elements into it as needed.
306   template<typename It1, typename It2>
307   static void uninitialized_move(It1 I, It1 E, It2 Dest) {
308     // Just do a copy.
309     uninitialized_copy(I, E, Dest);
310   }
311
312   /// uninitialized_copy - Copy the range [I, E) onto the uninitialized memory
313   /// starting with "Dest", constructing elements into it as needed.
314   template<typename It1, typename It2>
315   static void uninitialized_copy(It1 I, It1 E, It2 Dest) {
316     // Arbitrary iterator types; just use the basic implementation.
317     std::uninitialized_copy(I, E, Dest);
318   }
319
320   /// uninitialized_copy - Copy the range [I, E) onto the uninitialized memory
321   /// starting with "Dest", constructing elements into it as needed.
322   template<typename T1, typename T2>
323   static void uninitialized_copy(T1 *I, T1 *E, T2 *Dest) {
324     // Use memcpy for PODs iterated by pointers (which includes SmallVector
325     // iterators): std::uninitialized_copy optimizes to memmove, but we can
326     // use memcpy here.
327     memcpy(Dest, I, (E-I)*sizeof(T));
328   }
329
330   /// grow - double the size of the allocated memory, guaranteeing space for at
331   /// least one more element or MinSize if specified.
332   void grow(size_t MinSize = 0) {
333     this->grow_pod(MinSize*sizeof(T), sizeof(T));
334   }
335 public:
336   void push_back(const T &Elt) {
337     if (this->EndX < this->CapacityX) {
338     Retry:
339       memcpy(this->end(), &Elt, sizeof(T));
340       this->setEnd(this->end()+1);
341       return;
342     }
343     this->grow();
344     goto Retry;
345   }
346   
347   void pop_back() {
348     this->setEnd(this->end()-1);
349   }
350 };
351
352
353 /// SmallVectorImpl - This class consists of common code factored out of the
354 /// SmallVector class to reduce code duplication based on the SmallVector 'N'
355 /// template parameter.
356 template <typename T>
357 class SmallVectorImpl : public SmallVectorTemplateBase<T, isPodLike<T>::value> {
358   typedef SmallVectorTemplateBase<T, isPodLike<T>::value > SuperClass;
359
360   SmallVectorImpl(const SmallVectorImpl&) LLVM_DELETED_FUNCTION;
361 public:
362   typedef typename SuperClass::iterator iterator;
363   typedef typename SuperClass::size_type size_type;
364
365 protected:
366   // Default ctor - Initialize to empty.
367   explicit SmallVectorImpl(unsigned N)
368     : SmallVectorTemplateBase<T, isPodLike<T>::value>(N*sizeof(T)) {
369   }
370
371 public:
372   ~SmallVectorImpl() {
373     // Destroy the constructed elements in the vector.
374     this->destroy_range(this->begin(), this->end());
375
376     // If this wasn't grown from the inline copy, deallocate the old space.
377     if (!this->isSmall())
378       free(this->begin());
379   }
380
381
382   void clear() {
383     this->destroy_range(this->begin(), this->end());
384     this->EndX = this->BeginX;
385   }
386
387   void resize(unsigned N) {
388     if (N < this->size()) {
389       this->destroy_range(this->begin()+N, this->end());
390       this->setEnd(this->begin()+N);
391     } else if (N > this->size()) {
392       if (this->capacity() < N)
393         this->grow(N);
394       std::uninitialized_fill(this->end(), this->begin()+N, T());
395       this->setEnd(this->begin()+N);
396     }
397   }
398
399   void resize(unsigned N, const T &NV) {
400     if (N < this->size()) {
401       this->destroy_range(this->begin()+N, this->end());
402       this->setEnd(this->begin()+N);
403     } else if (N > this->size()) {
404       if (this->capacity() < N)
405         this->grow(N);
406       std::uninitialized_fill(this->end(), this->begin()+N, NV);
407       this->setEnd(this->begin()+N);
408     }
409   }
410
411   void reserve(unsigned N) {
412     if (this->capacity() < N)
413       this->grow(N);
414   }
415
416   T LLVM_ATTRIBUTE_UNUSED_RESULT pop_back_val() {
417     T Result = ::std::move(this->back());
418     this->pop_back();
419     return Result;
420   }
421
422   void swap(SmallVectorImpl &RHS);
423
424   /// append - Add the specified range to the end of the SmallVector.
425   ///
426   template<typename in_iter>
427   void append(in_iter in_start, in_iter in_end) {
428     size_type NumInputs = std::distance(in_start, in_end);
429     // Grow allocated space if needed.
430     if (NumInputs > size_type(this->capacity_ptr()-this->end()))
431       this->grow(this->size()+NumInputs);
432
433     // Copy the new elements over.
434     // TODO: NEED To compile time dispatch on whether in_iter is a random access
435     // iterator to use the fast uninitialized_copy.
436     std::uninitialized_copy(in_start, in_end, this->end());
437     this->setEnd(this->end() + NumInputs);
438   }
439
440   /// append - Add the specified range to the end of the SmallVector.
441   ///
442   void append(size_type NumInputs, const T &Elt) {
443     // Grow allocated space if needed.
444     if (NumInputs > size_type(this->capacity_ptr()-this->end()))
445       this->grow(this->size()+NumInputs);
446
447     // Copy the new elements over.
448     std::uninitialized_fill_n(this->end(), NumInputs, Elt);
449     this->setEnd(this->end() + NumInputs);
450   }
451
452   void assign(unsigned NumElts, const T &Elt) {
453     clear();
454     append(NumElts, Elt);
455   }
456
457   template <typename in_iter> void assign(in_iter S, in_iter E) {
458     clear();
459     append(S, E);
460   }
461
462   iterator erase(iterator I) {
463     assert(I >= this->begin() && "Iterator to erase is out of bounds.");
464     assert(I < this->end() && "Erasing at past-the-end iterator.");
465
466     iterator N = I;
467     // Shift all elts down one.
468     this->move(I+1, this->end(), I);
469     // Drop the last elt.
470     this->pop_back();
471     return(N);
472   }
473
474   iterator erase(iterator S, iterator E) {
475     assert(S >= this->begin() && "Range to erase is out of bounds.");
476     assert(S <= E && "Trying to erase invalid range.");
477     assert(E <= this->end() && "Trying to erase past the end.");
478
479     iterator N = S;
480     // Shift all elts down.
481     iterator I = this->move(E, this->end(), S);
482     // Drop the last elts.
483     this->destroy_range(I, this->end());
484     this->setEnd(I);
485     return(N);
486   }
487
488   iterator insert(iterator I, T &&Elt) {
489     if (I == this->end()) {  // Important special case for empty vector.
490       this->push_back(::std::move(Elt));
491       return this->end()-1;
492     }
493
494     assert(I >= this->begin() && "Insertion iterator is out of bounds.");
495     assert(I <= this->end() && "Inserting past the end of the vector.");
496
497     if (this->EndX < this->CapacityX) {
498     Retry:
499       ::new ((void*) this->end()) T(::std::move(this->back()));
500       this->setEnd(this->end()+1);
501       // Push everything else over.
502       this->move_backward(I, this->end()-1, this->end());
503
504       // If we just moved the element we're inserting, be sure to update
505       // the reference.
506       T *EltPtr = &Elt;
507       if (I <= EltPtr && EltPtr < this->EndX)
508         ++EltPtr;
509
510       *I = ::std::move(*EltPtr);
511       return I;
512     }
513     size_t EltNo = I-this->begin();
514     this->grow();
515     I = this->begin()+EltNo;
516     goto Retry;
517   }
518
519   iterator insert(iterator I, const T &Elt) {
520     if (I == this->end()) {  // Important special case for empty vector.
521       this->push_back(Elt);
522       return this->end()-1;
523     }
524
525     assert(I >= this->begin() && "Insertion iterator is out of bounds.");
526     assert(I <= this->end() && "Inserting past the end of the vector.");
527
528     if (this->EndX < this->CapacityX) {
529     Retry:
530       ::new ((void*) this->end()) T(this->back());
531       this->setEnd(this->end()+1);
532       // Push everything else over.
533       this->move_backward(I, this->end()-1, this->end());
534
535       // If we just moved the element we're inserting, be sure to update
536       // the reference.
537       const T *EltPtr = &Elt;
538       if (I <= EltPtr && EltPtr < this->EndX)
539         ++EltPtr;
540
541       *I = *EltPtr;
542       return I;
543     }
544     size_t EltNo = I-this->begin();
545     this->grow();
546     I = this->begin()+EltNo;
547     goto Retry;
548   }
549
550   iterator insert(iterator I, size_type NumToInsert, const T &Elt) {
551     // Convert iterator to elt# to avoid invalidating iterator when we reserve()
552     size_t InsertElt = I - this->begin();
553
554     if (I == this->end()) {  // Important special case for empty vector.
555       append(NumToInsert, Elt);
556       return this->begin()+InsertElt;
557     }
558
559     assert(I >= this->begin() && "Insertion iterator is out of bounds.");
560     assert(I <= this->end() && "Inserting past the end of the vector.");
561
562     // Ensure there is enough space.
563     reserve(static_cast<unsigned>(this->size() + NumToInsert));
564
565     // Uninvalidate the iterator.
566     I = this->begin()+InsertElt;
567
568     // If there are more elements between the insertion point and the end of the
569     // range than there are being inserted, we can use a simple approach to
570     // insertion.  Since we already reserved space, we know that this won't
571     // reallocate the vector.
572     if (size_t(this->end()-I) >= NumToInsert) {
573       T *OldEnd = this->end();
574       append(this->end()-NumToInsert, this->end());
575
576       // Copy the existing elements that get replaced.
577       this->move_backward(I, OldEnd-NumToInsert, OldEnd);
578
579       std::fill_n(I, NumToInsert, Elt);
580       return I;
581     }
582
583     // Otherwise, we're inserting more elements than exist already, and we're
584     // not inserting at the end.
585
586     // Move over the elements that we're about to overwrite.
587     T *OldEnd = this->end();
588     this->setEnd(this->end() + NumToInsert);
589     size_t NumOverwritten = OldEnd-I;
590     this->uninitialized_move(I, OldEnd, this->end()-NumOverwritten);
591
592     // Replace the overwritten part.
593     std::fill_n(I, NumOverwritten, Elt);
594
595     // Insert the non-overwritten middle part.
596     std::uninitialized_fill_n(OldEnd, NumToInsert-NumOverwritten, Elt);
597     return I;
598   }
599
600   template<typename ItTy>
601   iterator insert(iterator I, ItTy From, ItTy To) {
602     // Convert iterator to elt# to avoid invalidating iterator when we reserve()
603     size_t InsertElt = I - this->begin();
604
605     if (I == this->end()) {  // Important special case for empty vector.
606       append(From, To);
607       return this->begin()+InsertElt;
608     }
609
610     assert(I >= this->begin() && "Insertion iterator is out of bounds.");
611     assert(I <= this->end() && "Inserting past the end of the vector.");
612
613     size_t NumToInsert = std::distance(From, To);
614
615     // Ensure there is enough space.
616     reserve(static_cast<unsigned>(this->size() + NumToInsert));
617
618     // Uninvalidate the iterator.
619     I = this->begin()+InsertElt;
620
621     // If there are more elements between the insertion point and the end of the
622     // range than there are being inserted, we can use a simple approach to
623     // insertion.  Since we already reserved space, we know that this won't
624     // reallocate the vector.
625     if (size_t(this->end()-I) >= NumToInsert) {
626       T *OldEnd = this->end();
627       append(this->end()-NumToInsert, this->end());
628
629       // Copy the existing elements that get replaced.
630       this->move_backward(I, OldEnd-NumToInsert, OldEnd);
631
632       std::copy(From, To, I);
633       return I;
634     }
635
636     // Otherwise, we're inserting more elements than exist already, and we're
637     // not inserting at the end.
638
639     // Move over the elements that we're about to overwrite.
640     T *OldEnd = this->end();
641     this->setEnd(this->end() + NumToInsert);
642     size_t NumOverwritten = OldEnd-I;
643     this->uninitialized_move(I, OldEnd, this->end()-NumOverwritten);
644
645     // Replace the overwritten part.
646     for (T *J = I; NumOverwritten > 0; --NumOverwritten) {
647       *J = *From;
648       ++J; ++From;
649     }
650
651     // Insert the non-overwritten middle part.
652     this->uninitialized_copy(From, To, OldEnd);
653     return I;
654   }
655
656   SmallVectorImpl &operator=(const SmallVectorImpl &RHS);
657
658   SmallVectorImpl &operator=(SmallVectorImpl &&RHS);
659
660   bool operator==(const SmallVectorImpl &RHS) const {
661     if (this->size() != RHS.size()) return false;
662     return std::equal(this->begin(), this->end(), RHS.begin());
663   }
664   bool operator!=(const SmallVectorImpl &RHS) const {
665     return !(*this == RHS);
666   }
667
668   bool operator<(const SmallVectorImpl &RHS) const {
669     return std::lexicographical_compare(this->begin(), this->end(),
670                                         RHS.begin(), RHS.end());
671   }
672
673   /// Set the array size to \p N, which the current array must have enough
674   /// capacity for.
675   ///
676   /// This does not construct or destroy any elements in the vector.
677   ///
678   /// Clients can use this in conjunction with capacity() to write past the end
679   /// of the buffer when they know that more elements are available, and only
680   /// update the size later. This avoids the cost of value initializing elements
681   /// which will only be overwritten.
682   void set_size(unsigned N) {
683     assert(N <= this->capacity());
684     this->setEnd(this->begin() + N);
685   }
686 };
687
688
689 template <typename T>
690 void SmallVectorImpl<T>::swap(SmallVectorImpl<T> &RHS) {
691   if (this == &RHS) return;
692
693   // We can only avoid copying elements if neither vector is small.
694   if (!this->isSmall() && !RHS.isSmall()) {
695     std::swap(this->BeginX, RHS.BeginX);
696     std::swap(this->EndX, RHS.EndX);
697     std::swap(this->CapacityX, RHS.CapacityX);
698     return;
699   }
700   if (RHS.size() > this->capacity())
701     this->grow(RHS.size());
702   if (this->size() > RHS.capacity())
703     RHS.grow(this->size());
704
705   // Swap the shared elements.
706   size_t NumShared = this->size();
707   if (NumShared > RHS.size()) NumShared = RHS.size();
708   for (unsigned i = 0; i != static_cast<unsigned>(NumShared); ++i)
709     std::swap((*this)[i], RHS[i]);
710
711   // Copy over the extra elts.
712   if (this->size() > RHS.size()) {
713     size_t EltDiff = this->size() - RHS.size();
714     this->uninitialized_copy(this->begin()+NumShared, this->end(), RHS.end());
715     RHS.setEnd(RHS.end()+EltDiff);
716     this->destroy_range(this->begin()+NumShared, this->end());
717     this->setEnd(this->begin()+NumShared);
718   } else if (RHS.size() > this->size()) {
719     size_t EltDiff = RHS.size() - this->size();
720     this->uninitialized_copy(RHS.begin()+NumShared, RHS.end(), this->end());
721     this->setEnd(this->end() + EltDiff);
722     this->destroy_range(RHS.begin()+NumShared, RHS.end());
723     RHS.setEnd(RHS.begin()+NumShared);
724   }
725 }
726
727 template <typename T>
728 SmallVectorImpl<T> &SmallVectorImpl<T>::
729   operator=(const SmallVectorImpl<T> &RHS) {
730   // Avoid self-assignment.
731   if (this == &RHS) return *this;
732
733   // If we already have sufficient space, assign the common elements, then
734   // destroy any excess.
735   size_t RHSSize = RHS.size();
736   size_t CurSize = this->size();
737   if (CurSize >= RHSSize) {
738     // Assign common elements.
739     iterator NewEnd;
740     if (RHSSize)
741       NewEnd = std::copy(RHS.begin(), RHS.begin()+RHSSize, this->begin());
742     else
743       NewEnd = this->begin();
744
745     // Destroy excess elements.
746     this->destroy_range(NewEnd, this->end());
747
748     // Trim.
749     this->setEnd(NewEnd);
750     return *this;
751   }
752
753   // If we have to grow to have enough elements, destroy the current elements.
754   // This allows us to avoid copying them during the grow.
755   // FIXME: don't do this if they're efficiently moveable.
756   if (this->capacity() < RHSSize) {
757     // Destroy current elements.
758     this->destroy_range(this->begin(), this->end());
759     this->setEnd(this->begin());
760     CurSize = 0;
761     this->grow(RHSSize);
762   } else if (CurSize) {
763     // Otherwise, use assignment for the already-constructed elements.
764     std::copy(RHS.begin(), RHS.begin()+CurSize, this->begin());
765   }
766
767   // Copy construct the new elements in place.
768   this->uninitialized_copy(RHS.begin()+CurSize, RHS.end(),
769                            this->begin()+CurSize);
770
771   // Set end.
772   this->setEnd(this->begin()+RHSSize);
773   return *this;
774 }
775
776 template <typename T>
777 SmallVectorImpl<T> &SmallVectorImpl<T>::operator=(SmallVectorImpl<T> &&RHS) {
778   // Avoid self-assignment.
779   if (this == &RHS) return *this;
780
781   // If the RHS isn't small, clear this vector and then steal its buffer.
782   if (!RHS.isSmall()) {
783     this->destroy_range(this->begin(), this->end());
784     if (!this->isSmall()) free(this->begin());
785     this->BeginX = RHS.BeginX;
786     this->EndX = RHS.EndX;
787     this->CapacityX = RHS.CapacityX;
788     RHS.resetToSmall();
789     return *this;
790   }
791
792   // If we already have sufficient space, assign the common elements, then
793   // destroy any excess.
794   size_t RHSSize = RHS.size();
795   size_t CurSize = this->size();
796   if (CurSize >= RHSSize) {
797     // Assign common elements.
798     iterator NewEnd = this->begin();
799     if (RHSSize)
800       NewEnd = this->move(RHS.begin(), RHS.end(), NewEnd);
801
802     // Destroy excess elements and trim the bounds.
803     this->destroy_range(NewEnd, this->end());
804     this->setEnd(NewEnd);
805
806     // Clear the RHS.
807     RHS.clear();
808
809     return *this;
810   }
811
812   // If we have to grow to have enough elements, destroy the current elements.
813   // This allows us to avoid copying them during the grow.
814   // FIXME: this may not actually make any sense if we can efficiently move
815   // elements.
816   if (this->capacity() < RHSSize) {
817     // Destroy current elements.
818     this->destroy_range(this->begin(), this->end());
819     this->setEnd(this->begin());
820     CurSize = 0;
821     this->grow(RHSSize);
822   } else if (CurSize) {
823     // Otherwise, use assignment for the already-constructed elements.
824     this->move(RHS.begin(), RHS.end(), this->begin());
825   }
826
827   // Move-construct the new elements in place.
828   this->uninitialized_move(RHS.begin()+CurSize, RHS.end(),
829                            this->begin()+CurSize);
830
831   // Set end.
832   this->setEnd(this->begin()+RHSSize);
833
834   RHS.clear();
835   return *this;
836 }
837
838 /// Storage for the SmallVector elements which aren't contained in
839 /// SmallVectorTemplateCommon. There are 'N-1' elements here. The remaining '1'
840 /// element is in the base class. This is specialized for the N=1 and N=0 cases
841 /// to avoid allocating unnecessary storage.
842 template <typename T, unsigned N>
843 struct SmallVectorStorage {
844   typename SmallVectorTemplateCommon<T>::U InlineElts[N - 1];
845 };
846 template <typename T> struct SmallVectorStorage<T, 1> {};
847 template <typename T> struct SmallVectorStorage<T, 0> {};
848
849 /// SmallVector - This is a 'vector' (really, a variable-sized array), optimized
850 /// for the case when the array is small.  It contains some number of elements
851 /// in-place, which allows it to avoid heap allocation when the actual number of
852 /// elements is below that threshold.  This allows normal "small" cases to be
853 /// fast without losing generality for large inputs.
854 ///
855 /// Note that this does not attempt to be exception safe.
856 ///
857 template <typename T, unsigned N>
858 class SmallVector : public SmallVectorImpl<T> {
859   /// Storage - Inline space for elements which aren't stored in the base class.
860   SmallVectorStorage<T, N> Storage;
861 public:
862   SmallVector() : SmallVectorImpl<T>(N) {
863   }
864
865   explicit SmallVector(unsigned Size, const T &Value = T())
866     : SmallVectorImpl<T>(N) {
867     this->assign(Size, Value);
868   }
869
870   template<typename ItTy>
871   SmallVector(ItTy S, ItTy E) : SmallVectorImpl<T>(N) {
872     this->append(S, E);
873   }
874
875   SmallVector(const SmallVector &RHS) : SmallVectorImpl<T>(N) {
876     if (!RHS.empty())
877       SmallVectorImpl<T>::operator=(RHS);
878   }
879
880   const SmallVector &operator=(const SmallVector &RHS) {
881     SmallVectorImpl<T>::operator=(RHS);
882     return *this;
883   }
884
885   SmallVector(SmallVector &&RHS) : SmallVectorImpl<T>(N) {
886     if (!RHS.empty())
887       SmallVectorImpl<T>::operator=(::std::move(RHS));
888   }
889
890   const SmallVector &operator=(SmallVector &&RHS) {
891     SmallVectorImpl<T>::operator=(::std::move(RHS));
892     return *this;
893   }
894 };
895
896 template<typename T, unsigned N>
897 static inline size_t capacity_in_bytes(const SmallVector<T, N> &X) {
898   return X.capacity_in_bytes();
899 }
900
901 } // End llvm namespace
902
903 namespace std {
904   /// Implement std::swap in terms of SmallVector swap.
905   template<typename T>
906   inline void
907   swap(llvm::SmallVectorImpl<T> &LHS, llvm::SmallVectorImpl<T> &RHS) {
908     LHS.swap(RHS);
909   }
910
911   /// Implement std::swap in terms of SmallVector swap.
912   template<typename T, unsigned N>
913   inline void
914   swap(llvm::SmallVector<T, N> &LHS, llvm::SmallVector<T, N> &RHS) {
915     LHS.swap(RHS);
916   }
917 }
918
919 #endif