Unbreak build with gcc 4.3: provide missed includes and silence most annoying warnings.
[oota-llvm.git] / include / llvm / ADT / ilist
1 //===-- llvm/ADT/ilist - Intrusive Linked List Template ---------*- 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 classes to implement an intrusive doubly linked list class
11 // (i.e. each node of the list must contain a next and previous field for the
12 // list.
13 //
14 // The ilist_traits trait class is used to gain access to the next and previous
15 // fields of the node type that the list is instantiated with.  If it is not
16 // specialized, the list defaults to using the getPrev(), getNext() method calls
17 // to get the next and previous pointers.
18 //
19 // The ilist class itself, should be a plug in replacement for list, assuming
20 // that the nodes contain next/prev pointers.  This list replacement does not
21 // provides a constant time size() method, so be careful to use empty() when you
22 // really want to know if it's empty.
23 //
24 // The ilist class is implemented by allocating a 'tail' node when the list is
25 // created (using ilist_traits<>::createSentinel()).  This tail node is
26 // absolutely required because the user must be able to compute end()-1. Because
27 // of this, users of the direct next/prev links will see an extra link on the
28 // end of the list, which should be ignored.
29 //
30 // Requirements for a user of this list:
31 //
32 //   1. The user must provide {g|s}et{Next|Prev} methods, or specialize
33 //      ilist_traits to provide an alternate way of getting and setting next and
34 //      prev links.
35 //
36 //===----------------------------------------------------------------------===//
37
38 #ifndef LLVM_ADT_ILIST
39 #define LLVM_ADT_ILIST
40
41 #include "llvm/ADT/iterator"
42 #include <cassert>
43 #include <cstdlib>
44
45 namespace llvm {
46
47 template<typename NodeTy, typename Traits> class iplist;
48 template<typename NodeTy> class ilist_iterator;
49
50 // Template traits for intrusive list.  By specializing this template class, you
51 // can change what next/prev fields are used to store the links...
52 template<typename NodeTy>
53 struct ilist_traits {
54   static NodeTy *getPrev(NodeTy *N) { return N->getPrev(); }
55   static NodeTy *getNext(NodeTy *N) { return N->getNext(); }
56   static const NodeTy *getPrev(const NodeTy *N) { return N->getPrev(); }
57   static const NodeTy *getNext(const NodeTy *N) { return N->getNext(); }
58
59   static void setPrev(NodeTy *N, NodeTy *Prev) { N->setPrev(Prev); }
60   static void setNext(NodeTy *N, NodeTy *Next) { N->setNext(Next); }
61
62   static NodeTy *createNode(const NodeTy &V) { return new NodeTy(V); }
63
64   static NodeTy *createSentinel() { return new NodeTy(); }
65   static void destroySentinel(NodeTy *N) { delete N; }
66
67   void addNodeToList(NodeTy *NTy) {}
68   void removeNodeFromList(NodeTy *NTy) {}
69   void transferNodesFromList(iplist<NodeTy, ilist_traits> &L2,
70                              ilist_iterator<NodeTy> first,
71                              ilist_iterator<NodeTy> last) {}
72 };
73
74 // Const traits are the same as nonconst traits...
75 template<typename Ty>
76 struct ilist_traits<const Ty> : public ilist_traits<Ty> {};
77
78
79 //===----------------------------------------------------------------------===//
80 // ilist_iterator<Node> - Iterator for intrusive list.
81 //
82 template<typename NodeTy>
83 class ilist_iterator
84   : public bidirectional_iterator<NodeTy, ptrdiff_t> {
85   typedef ilist_traits<NodeTy> Traits;
86   typedef bidirectional_iterator<NodeTy, ptrdiff_t> super;
87
88 public:
89   typedef size_t size_type;
90   typedef typename super::pointer pointer;
91   typedef typename super::reference reference;
92 private:
93   pointer NodePtr;
94 public:
95
96   ilist_iterator(pointer NP) : NodePtr(NP) {}
97   ilist_iterator(reference NR) : NodePtr(&NR) {}
98   ilist_iterator() : NodePtr(0) {}
99
100   // This is templated so that we can allow constructing a const iterator from
101   // a nonconst iterator...
102   template<class node_ty>
103   ilist_iterator(const ilist_iterator<node_ty> &RHS)
104     : NodePtr(RHS.getNodePtrUnchecked()) {}
105
106   // This is templated so that we can allow assigning to a const iterator from
107   // a nonconst iterator...
108   template<class node_ty>
109   const ilist_iterator &operator=(const ilist_iterator<node_ty> &RHS) {
110     NodePtr = RHS.getNodePtrUnchecked();
111     return *this;
112   }
113
114   // Accessors...
115   operator pointer() const {
116     assert(Traits::getNext(NodePtr) != 0 && "Dereferencing end()!");
117     return NodePtr;
118   }
119
120   reference operator*() const {
121     assert(Traits::getNext(NodePtr) != 0 && "Dereferencing end()!");
122     return *NodePtr;
123   }
124   pointer operator->() { return &operator*(); }
125   const pointer operator->() const { return &operator*(); }
126
127   // Comparison operators
128   bool operator==(const ilist_iterator &RHS) const {
129     return NodePtr == RHS.NodePtr;
130   }
131   bool operator!=(const ilist_iterator &RHS) const {
132     return NodePtr != RHS.NodePtr;
133   }
134
135   // Increment and decrement operators...
136   ilist_iterator &operator--() {      // predecrement - Back up
137     NodePtr = Traits::getPrev(NodePtr);
138     assert(Traits::getNext(NodePtr) && "--'d off the beginning of an ilist!");
139     return *this;
140   }
141   ilist_iterator &operator++() {      // preincrement - Advance
142     NodePtr = Traits::getNext(NodePtr);
143     assert(NodePtr && "++'d off the end of an ilist!");
144     return *this;
145   }
146   ilist_iterator operator--(int) {    // postdecrement operators...
147     ilist_iterator tmp = *this;
148     --*this;
149     return tmp;
150   }
151   ilist_iterator operator++(int) {    // postincrement operators...
152     ilist_iterator tmp = *this;
153     ++*this;
154     return tmp;
155   }
156
157   // Internal interface, do not use...
158   pointer getNodePtrUnchecked() const { return NodePtr; }
159 };
160
161 // do not implement. this is to catch errors when people try to use
162 // them as random access iterators
163 template<typename T>
164 void operator-(int, ilist_iterator<T>);
165 template<typename T>
166 void operator-(ilist_iterator<T>,int);
167
168 template<typename T>
169 void operator+(int, ilist_iterator<T>);
170 template<typename T>
171 void operator+(ilist_iterator<T>,int);
172
173 // operator!=/operator== - Allow mixed comparisons without dereferencing
174 // the iterator, which could very likely be pointing to end().
175 template<typename T>
176 bool operator!=(const T* LHS, const ilist_iterator<const T> &RHS) {
177   return LHS != RHS.getNodePtrUnchecked();
178 }
179 template<typename T>
180 bool operator==(const T* LHS, const ilist_iterator<const T> &RHS) {
181   return LHS == RHS.getNodePtrUnchecked();
182 }
183 template<typename T>
184 bool operator!=(T* LHS, const ilist_iterator<T> &RHS) {
185   return LHS != RHS.getNodePtrUnchecked();
186 }
187 template<typename T>
188 bool operator==(T* LHS, const ilist_iterator<T> &RHS) {
189   return LHS == RHS.getNodePtrUnchecked();
190 }
191
192
193 // Allow ilist_iterators to convert into pointers to a node automatically when
194 // used by the dyn_cast, cast, isa mechanisms...
195
196 template<typename From> struct simplify_type;
197
198 template<typename NodeTy> struct simplify_type<ilist_iterator<NodeTy> > {
199   typedef NodeTy* SimpleType;
200   
201   static SimpleType getSimplifiedValue(const ilist_iterator<NodeTy> &Node) {
202     return &*Node;
203   }
204 };
205 template<typename NodeTy> struct simplify_type<const ilist_iterator<NodeTy> > {
206   typedef NodeTy* SimpleType;
207   
208   static SimpleType getSimplifiedValue(const ilist_iterator<NodeTy> &Node) {
209     return &*Node;
210   }
211 };
212
213
214 //===----------------------------------------------------------------------===//
215 //
216 /// iplist - The subset of list functionality that can safely be used on nodes
217 /// of polymorphic types, i.e. a heterogenous list with a common base class that
218 /// holds the next/prev pointers.  The only state of the list itself is a single
219 /// pointer to the head of the list.
220 ///
221 /// This list can be in one of three interesting states:
222 /// 1. The list may be completely unconstructed.  In this case, the head
223 ///    pointer is null.  When in this form, any query for an iterator (e.g.
224 ///    begin() or end()) causes the list to transparently change to state #2.
225 /// 2. The list may be empty, but contain a sentinal for the end iterator. This
226 ///    sentinal is created by the Traits::createSentinel method and is a link
227 ///    in the list.  When the list is empty, the pointer in the iplist points
228 ///    to the sentinal.  Once the sentinal is constructed, it
229 ///    is not destroyed until the list is.
230 /// 3. The list may contain actual objects in it, which are stored as a doubly
231 ///    linked list of nodes.  One invariant of the list is that the predecessor
232 ///    of the first node in the list always points to the last node in the list,
233 ///    and the successor pointer for the sentinal (which always stays at the
234 ///    end of the list) is always null.  
235 ///
236 template<typename NodeTy, typename Traits=ilist_traits<NodeTy> >
237 class iplist : public Traits {
238   mutable NodeTy *Head;
239
240   // Use the prev node pointer of 'head' as the tail pointer.  This is really a
241   // circularly linked list where we snip the 'next' link from the sentinel node
242   // back to the first node in the list (to preserve assertions about going off
243   // the end of the list).
244   NodeTy *getTail() { return getPrev(Head); }
245   const NodeTy *getTail() const { return getPrev(Head); }
246   void setTail(NodeTy *N) const { setPrev(Head, N); }
247   
248   /// CreateLazySentinal - This method verifies whether the sentinal for the
249   /// list has been created and lazily makes it if not.
250   void CreateLazySentinal() const {
251     if (Head != 0) return;
252     Head = Traits::createSentinel();
253     setNext(Head, 0);
254     setTail(Head);
255   }
256
257   static bool op_less(NodeTy &L, NodeTy &R) { return L < R; }
258   static bool op_equal(NodeTy &L, NodeTy &R) { return L == R; }
259 public:
260   typedef NodeTy *pointer;
261   typedef const NodeTy *const_pointer;
262   typedef NodeTy &reference;
263   typedef const NodeTy &const_reference;
264   typedef NodeTy value_type;
265   typedef ilist_iterator<NodeTy> iterator;
266   typedef ilist_iterator<const NodeTy> const_iterator;
267   typedef size_t size_type;
268   typedef ptrdiff_t difference_type;
269   typedef std::reverse_iterator<const_iterator>  const_reverse_iterator;
270   typedef std::reverse_iterator<iterator>  reverse_iterator;
271
272   iplist() : Head(0) {}
273   ~iplist() {
274     if (!Head) return;
275     clear();
276     Traits::destroySentinel(getTail());
277   }
278
279   // Iterator creation methods.
280   iterator begin() {
281     CreateLazySentinal(); 
282     return iterator(Head); 
283   }
284   const_iterator begin() const {
285     CreateLazySentinal();
286     return const_iterator(Head);
287   }
288   iterator end() {
289     CreateLazySentinal();
290     return iterator(getTail());
291   }
292   const_iterator end() const {
293     CreateLazySentinal();
294     return const_iterator(getTail());
295   }
296
297   // reverse iterator creation methods.
298   reverse_iterator rbegin()            { return reverse_iterator(end()); }
299   const_reverse_iterator rbegin() const{ return const_reverse_iterator(end()); }
300   reverse_iterator rend()              { return reverse_iterator(begin()); }
301   const_reverse_iterator rend() const { return const_reverse_iterator(begin());}
302
303
304   // Miscellaneous inspection routines.
305   size_type max_size() const { return size_type(-1); }
306   bool empty() const { return Head == 0 || Head == getTail(); }
307
308   // Front and back accessor functions...
309   reference front() {
310     assert(!empty() && "Called front() on empty list!");
311     return *Head;
312   }
313   const_reference front() const {
314     assert(!empty() && "Called front() on empty list!");
315     return *Head;
316   }
317   reference back() {
318     assert(!empty() && "Called back() on empty list!");
319     return *getPrev(getTail());
320   }
321   const_reference back() const {
322     assert(!empty() && "Called back() on empty list!");
323     return *getPrev(getTail());
324   }
325
326   void swap(iplist &RHS) {
327     abort();     // Swap does not use list traits callback correctly yet!
328     std::swap(Head, RHS.Head);
329   }
330
331   iterator insert(iterator where, NodeTy *New) {
332     NodeTy *CurNode = where.getNodePtrUnchecked(), *PrevNode = getPrev(CurNode);
333     setNext(New, CurNode);
334     setPrev(New, PrevNode);
335
336     if (CurNode != Head)  // Is PrevNode off the beginning of the list?
337       setNext(PrevNode, New);
338     else
339       Head = New;
340     setPrev(CurNode, New);
341
342     addNodeToList(New);  // Notify traits that we added a node...
343     return New;
344   }
345
346   NodeTy *remove(iterator &IT) {
347     assert(IT != end() && "Cannot remove end of list!");
348     NodeTy *Node = &*IT;
349     NodeTy *NextNode = getNext(Node);
350     NodeTy *PrevNode = getPrev(Node);
351
352     if (Node != Head)  // Is PrevNode off the beginning of the list?
353       setNext(PrevNode, NextNode);
354     else
355       Head = NextNode;
356     setPrev(NextNode, PrevNode);
357     IT = NextNode;
358     removeNodeFromList(Node);  // Notify traits that we removed a node...
359     return Node;
360   }
361
362   NodeTy *remove(const iterator &IT) {
363     iterator MutIt = IT;
364     return remove(MutIt);
365   }
366
367   // erase - remove a node from the controlled sequence... and delete it.
368   iterator erase(iterator where) {
369     delete remove(where);
370     return where;
371   }
372
373
374 private:
375   // transfer - The heart of the splice function.  Move linked list nodes from
376   // [first, last) into position.
377   //
378   void transfer(iterator position, iplist &L2, iterator first, iterator last) {
379     assert(first != last && "Should be checked by callers");
380
381     if (position != last) {
382       // Note: we have to be careful about the case when we move the first node
383       // in the list.  This node is the list sentinel node and we can't move it.
384       NodeTy *ThisSentinel = getTail();
385       setTail(0);
386       NodeTy *L2Sentinel = L2.getTail();
387       L2.setTail(0);
388
389       // Remove [first, last) from its old position.
390       NodeTy *First = &*first, *Prev = getPrev(First);
391       NodeTy *Next = last.getNodePtrUnchecked(), *Last = getPrev(Next);
392       if (Prev)
393         setNext(Prev, Next);
394       else
395         L2.Head = Next;
396       setPrev(Next, Prev);
397
398       // Splice [first, last) into its new position.
399       NodeTy *PosNext = position.getNodePtrUnchecked();
400       NodeTy *PosPrev = getPrev(PosNext);
401
402       // Fix head of list...
403       if (PosPrev)
404         setNext(PosPrev, First);
405       else
406         Head = First;
407       setPrev(First, PosPrev);
408
409       // Fix end of list...
410       setNext(Last, PosNext);
411       setPrev(PosNext, Last);
412
413       transferNodesFromList(L2, First, PosNext);
414
415       // Now that everything is set, restore the pointers to the list sentinals.
416       L2.setTail(L2Sentinel);
417       setTail(ThisSentinel);
418     }
419   }
420
421 public:
422
423   //===----------------------------------------------------------------------===
424   // Functionality derived from other functions defined above...
425   //
426
427   size_type size() const {
428     if (Head == 0) return 0; // Don't require construction of sentinal if empty.
429 #if __GNUC__ == 2
430     // GCC 2.95 has a broken std::distance
431     size_type Result = 0;
432     std::distance(begin(), end(), Result);
433     return Result;
434 #else
435     return std::distance(begin(), end());
436 #endif
437   }
438
439   iterator erase(iterator first, iterator last) {
440     while (first != last)
441       first = erase(first);
442     return last;
443   }
444
445   void clear() { if (Head) erase(begin(), end()); }
446
447   // Front and back inserters...
448   void push_front(NodeTy *val) { insert(begin(), val); }
449   void push_back(NodeTy *val) { insert(end(), val); }
450   void pop_front() {
451     assert(!empty() && "pop_front() on empty list!");
452     erase(begin());
453   }
454   void pop_back() {
455     assert(!empty() && "pop_back() on empty list!");
456     iterator t = end(); erase(--t);
457   }
458
459   // Special forms of insert...
460   template<class InIt> void insert(iterator where, InIt first, InIt last) {
461     for (; first != last; ++first) insert(where, *first);
462   }
463
464   // Splice members - defined in terms of transfer...
465   void splice(iterator where, iplist &L2) {
466     if (!L2.empty())
467       transfer(where, L2, L2.begin(), L2.end());
468   }
469   void splice(iterator where, iplist &L2, iterator first) {
470     iterator last = first; ++last;
471     if (where == first || where == last) return; // No change
472     transfer(where, L2, first, last);
473   }
474   void splice(iterator where, iplist &L2, iterator first, iterator last) {
475     if (first != last) transfer(where, L2, first, last);
476   }
477
478
479
480   //===----------------------------------------------------------------------===
481   // High-Level Functionality that shouldn't really be here, but is part of list
482   //
483
484   // These two functions are actually called remove/remove_if in list<>, but
485   // they actually do the job of erase, rename them accordingly.
486   //
487   void erase(const NodeTy &val) {
488     for (iterator I = begin(), E = end(); I != E; ) {
489       iterator next = I; ++next;
490       if (*I == val) erase(I);
491       I = next;
492     }
493   }
494   template<class Pr1> void erase_if(Pr1 pred) {
495     for (iterator I = begin(), E = end(); I != E; ) {
496       iterator next = I; ++next;
497       if (pred(*I)) erase(I);
498       I = next;
499     }
500   }
501
502   template<class Pr2> void unique(Pr2 pred) {
503     if (empty()) return;
504     for (iterator I = begin(), E = end(), Next = begin(); ++Next != E;) {
505       if (pred(*I))
506         erase(Next);
507       else
508         I = Next;
509       Next = I;
510     }
511   }
512   void unique() { unique(op_equal); }
513
514   template<class Pr3> void merge(iplist &right, Pr3 pred) {
515     iterator first1 = begin(), last1 = end();
516     iterator first2 = right.begin(), last2 = right.end();
517     while (first1 != last1 && first2 != last2)
518       if (pred(*first2, *first1)) {
519         iterator next = first2;
520         transfer(first1, right, first2, ++next);
521         first2 = next;
522       } else {
523         ++first1;
524       }
525     if (first2 != last2) transfer(last1, right, first2, last2);
526   }
527   void merge(iplist &right) { return merge(right, op_less); }
528
529   template<class Pr3> void sort(Pr3 pred);
530   void sort() { sort(op_less); }
531   void reverse();
532 };
533
534
535 template<typename NodeTy>
536 struct ilist : public iplist<NodeTy> {
537   typedef typename iplist<NodeTy>::size_type size_type;
538   typedef typename iplist<NodeTy>::iterator iterator;
539
540   ilist() {}
541   ilist(const ilist &right) {
542     insert(this->begin(), right.begin(), right.end());
543   }
544   explicit ilist(size_type count) {
545     insert(this->begin(), count, NodeTy());
546   } 
547   ilist(size_type count, const NodeTy &val) {
548     insert(this->begin(), count, val);
549   }
550   template<class InIt> ilist(InIt first, InIt last) {
551     insert(this->begin(), first, last);
552   }
553
554
555   // Forwarding functions: A workaround for GCC 2.95 which does not correctly
556   // support 'using' declarations to bring a hidden member into scope.
557   //
558   iterator insert(iterator a, NodeTy *b){ return iplist<NodeTy>::insert(a, b); }
559   void push_front(NodeTy *a) { iplist<NodeTy>::push_front(a); }
560   void push_back(NodeTy *a)  { iplist<NodeTy>::push_back(a); }
561   
562
563   // Main implementation here - Insert for a node passed by value...
564   iterator insert(iterator where, const NodeTy &val) {
565     return insert(where, createNode(val));
566   }
567
568
569   // Front and back inserters...
570   void push_front(const NodeTy &val) { insert(this->begin(), val); }
571   void push_back(const NodeTy &val) { insert(this->end(), val); }
572
573   // Special forms of insert...
574   template<class InIt> void insert(iterator where, InIt first, InIt last) {
575     for (; first != last; ++first) insert(where, *first);
576   }
577   void insert(iterator where, size_type count, const NodeTy &val) {
578     for (; count != 0; --count) insert(where, val);
579   }
580
581   // Assign special forms...
582   void assign(size_type count, const NodeTy &val) {
583     iterator I = this->begin();
584     for (; I != this->end() && count != 0; ++I, --count)
585       *I = val;
586     if (count != 0)
587       insert(this->end(), val, val);
588     else
589       erase(I, this->end());
590   }
591   template<class InIt> void assign(InIt first1, InIt last1) {
592     iterator first2 = this->begin(), last2 = this->end();
593     for ( ; first1 != last1 && first2 != last2; ++first1, ++first2)
594       *first1 = *first2;
595     if (first2 == last2)
596       erase(first1, last1);
597     else
598       insert(last1, first2, last2);
599   }
600
601
602   // Resize members...
603   void resize(size_type newsize, NodeTy val) {
604     iterator i = this->begin();
605     size_type len = 0;
606     for ( ; i != this->end() && len < newsize; ++i, ++len) /* empty*/ ;
607
608     if (len == newsize)
609       erase(i, this->end());
610     else                                          // i == end()
611       insert(this->end(), newsize - len, val);
612   }
613   void resize(size_type newsize) { resize(newsize, NodeTy()); }
614 };
615
616 } // End llvm namespace
617
618 namespace std {
619   // Ensure that swap uses the fast list swap...
620   template<class Ty>
621   void swap(llvm::iplist<Ty> &Left, llvm::iplist<Ty> &Right) {
622     Left.swap(Right);
623   }
624 }  // End 'std' extensions...
625
626 #endif