2008-05-29 19:41:17 +02:00
|
|
|
//==-- llvm/ADT/ilist.h - Intrusive Linked List Template ---------*- C++ -*-==//
|
2009-01-08 03:21:23 +01:00
|
|
|
//
|
2003-10-20 21:46:57 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 23:59:10 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2009-01-08 03:21:23 +01:00
|
|
|
//
|
2003-10-20 21:46:57 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-06-25 18:13:24 +02:00
|
|
|
//
|
|
|
|
// This file defines classes to implement an intrusive doubly linked list class
|
2007-04-17 20:41:42 +02:00
|
|
|
// (i.e. each node of the list must contain a next and previous field for the
|
2002-06-25 18:13:24 +02:00
|
|
|
// list.
|
|
|
|
//
|
|
|
|
// The ilist_traits trait class is used to gain access to the next and previous
|
|
|
|
// fields of the node type that the list is instantiated with. If it is not
|
|
|
|
// specialized, the list defaults to using the getPrev(), getNext() method calls
|
|
|
|
// to get the next and previous pointers.
|
|
|
|
//
|
|
|
|
// The ilist class itself, should be a plug in replacement for list, assuming
|
|
|
|
// that the nodes contain next/prev pointers. This list replacement does not
|
2008-05-07 08:39:04 +02:00
|
|
|
// provide a constant time size() method, so be careful to use empty() when you
|
2002-07-24 22:44:01 +02:00
|
|
|
// really want to know if it's empty.
|
2002-06-25 18:13:24 +02:00
|
|
|
//
|
|
|
|
// The ilist class is implemented by allocating a 'tail' node when the list is
|
2007-04-17 20:41:42 +02:00
|
|
|
// created (using ilist_traits<>::createSentinel()). This tail node is
|
2002-06-25 18:13:24 +02:00
|
|
|
// absolutely required because the user must be able to compute end()-1. Because
|
|
|
|
// of this, users of the direct next/prev links will see an extra link on the
|
|
|
|
// end of the list, which should be ignored.
|
|
|
|
//
|
|
|
|
// Requirements for a user of this list:
|
|
|
|
//
|
|
|
|
// 1. The user must provide {g|s}et{Next|Prev} methods, or specialize
|
|
|
|
// ilist_traits to provide an alternate way of getting and setting next and
|
|
|
|
// prev links.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-05-29 20:17:53 +02:00
|
|
|
#ifndef LLVM_ADT_ILIST_H
|
|
|
|
#define LLVM_ADT_ILIST_H
|
2002-06-25 18:13:24 +02:00
|
|
|
|
2003-10-15 23:55:37 +02:00
|
|
|
#include <cassert>
|
2010-06-10 12:13:58 +02:00
|
|
|
#include <cstddef>
|
2009-08-27 08:41:46 +02:00
|
|
|
#include <iterator>
|
2002-06-25 18:13:24 +02:00
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
namespace llvm {
|
|
|
|
|
2002-06-25 18:13:24 +02:00
|
|
|
template<typename NodeTy, typename Traits> class iplist;
|
|
|
|
template<typename NodeTy> class ilist_iterator;
|
|
|
|
|
2008-07-28 23:51:04 +02:00
|
|
|
/// ilist_nextprev_traits - A fragment for template traits for intrusive list
|
|
|
|
/// that provides default next/prev implementations for common operations.
|
|
|
|
///
|
2002-06-25 18:13:24 +02:00
|
|
|
template<typename NodeTy>
|
2008-07-28 23:51:04 +02:00
|
|
|
struct ilist_nextprev_traits {
|
2002-06-25 18:13:24 +02:00
|
|
|
static NodeTy *getPrev(NodeTy *N) { return N->getPrev(); }
|
|
|
|
static NodeTy *getNext(NodeTy *N) { return N->getNext(); }
|
|
|
|
static const NodeTy *getPrev(const NodeTy *N) { return N->getPrev(); }
|
|
|
|
static const NodeTy *getNext(const NodeTy *N) { return N->getNext(); }
|
|
|
|
|
|
|
|
static void setPrev(NodeTy *N, NodeTy *Prev) { N->setPrev(Prev); }
|
|
|
|
static void setNext(NodeTy *N, NodeTy *Next) { N->setNext(Next); }
|
2008-07-28 23:51:04 +02:00
|
|
|
};
|
2002-06-25 18:13:24 +02:00
|
|
|
|
2009-03-04 21:36:44 +01:00
|
|
|
template<typename NodeTy>
|
|
|
|
struct ilist_traits;
|
|
|
|
|
2008-07-28 23:51:04 +02:00
|
|
|
/// ilist_sentinel_traits - A fragment for template traits for intrusive list
|
|
|
|
/// that provides default sentinel implementations for common operations.
|
|
|
|
///
|
2009-03-04 21:36:44 +01:00
|
|
|
/// ilist_sentinel_traits implements a lazy dynamic sentinel allocation
|
|
|
|
/// strategy. The sentinel is stored in the prev field of ilist's Head.
|
|
|
|
///
|
2008-07-28 23:51:04 +02:00
|
|
|
template<typename NodeTy>
|
|
|
|
struct ilist_sentinel_traits {
|
2009-03-04 21:36:44 +01:00
|
|
|
/// createSentinel - create the dynamic sentinel
|
2005-01-30 01:09:23 +01:00
|
|
|
static NodeTy *createSentinel() { return new NodeTy(); }
|
2009-03-04 21:36:44 +01:00
|
|
|
|
|
|
|
/// destroySentinel - deallocate the dynamic sentinel
|
2005-01-30 01:09:23 +01:00
|
|
|
static void destroySentinel(NodeTy *N) { delete N; }
|
2009-03-04 21:36:44 +01:00
|
|
|
|
|
|
|
/// provideInitialHead - when constructing an ilist, provide a starting
|
|
|
|
/// value for its Head
|
|
|
|
/// @return null node to indicate that it needs to be allocated later
|
|
|
|
static NodeTy *provideInitialHead() { return 0; }
|
|
|
|
|
|
|
|
/// ensureHead - make sure that Head is either already
|
|
|
|
/// initialized or assigned a fresh sentinel
|
|
|
|
/// @return the sentinel
|
|
|
|
static NodeTy *ensureHead(NodeTy *&Head) {
|
|
|
|
if (!Head) {
|
|
|
|
Head = ilist_traits<NodeTy>::createSentinel();
|
|
|
|
ilist_traits<NodeTy>::noteHead(Head, Head);
|
|
|
|
ilist_traits<NodeTy>::setNext(Head, 0);
|
|
|
|
return Head;
|
|
|
|
}
|
|
|
|
return ilist_traits<NodeTy>::getPrev(Head);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// noteHead - stash the sentinel into its default location
|
|
|
|
static void noteHead(NodeTy *NewHead, NodeTy *Sentinel) {
|
|
|
|
ilist_traits<NodeTy>::setPrev(NewHead, Sentinel);
|
|
|
|
}
|
2008-07-28 23:51:04 +02:00
|
|
|
};
|
|
|
|
|
2009-02-28 11:17:32 +01:00
|
|
|
/// ilist_node_traits - A fragment for template traits for intrusive list
|
|
|
|
/// that provides default node related operations.
|
2008-07-28 23:51:04 +02:00
|
|
|
///
|
|
|
|
template<typename NodeTy>
|
2009-02-28 11:17:32 +01:00
|
|
|
struct ilist_node_traits {
|
2008-07-28 23:51:04 +02:00
|
|
|
static NodeTy *createNode(const NodeTy &V) { return new NodeTy(V); }
|
|
|
|
static void deleteNode(NodeTy *V) { delete V; }
|
2002-06-25 18:13:24 +02:00
|
|
|
|
2008-08-01 07:50:13 +02:00
|
|
|
void addNodeToList(NodeTy *) {}
|
|
|
|
void removeNodeFromList(NodeTy *) {}
|
2009-02-28 11:17:32 +01:00
|
|
|
void transferNodesFromList(ilist_node_traits & /*SrcTraits*/,
|
2008-08-01 07:50:13 +02:00
|
|
|
ilist_iterator<NodeTy> /*first*/,
|
|
|
|
ilist_iterator<NodeTy> /*last*/) {}
|
2002-06-25 18:13:24 +02:00
|
|
|
};
|
|
|
|
|
2009-02-28 11:17:32 +01:00
|
|
|
/// ilist_default_traits - Default template traits for intrusive list.
|
|
|
|
/// By inheriting from this, you can easily use default implementations
|
|
|
|
/// for all common operations.
|
|
|
|
///
|
|
|
|
template<typename NodeTy>
|
2009-09-06 10:55:57 +02:00
|
|
|
struct ilist_default_traits : public ilist_nextprev_traits<NodeTy>,
|
|
|
|
public ilist_sentinel_traits<NodeTy>,
|
|
|
|
public ilist_node_traits<NodeTy> {
|
2009-02-28 11:17:32 +01:00
|
|
|
};
|
|
|
|
|
2008-07-28 23:51:04 +02:00
|
|
|
// Template traits for intrusive list. By specializing this template class, you
|
|
|
|
// can change what next/prev fields are used to store the links...
|
|
|
|
template<typename NodeTy>
|
2009-09-06 10:55:57 +02:00
|
|
|
struct ilist_traits : public ilist_default_traits<NodeTy> {};
|
2008-07-28 23:51:04 +02:00
|
|
|
|
2002-06-25 18:13:24 +02:00
|
|
|
// Const traits are the same as nonconst traits...
|
|
|
|
template<typename Ty>
|
|
|
|
struct ilist_traits<const Ty> : public ilist_traits<Ty> {};
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// ilist_iterator<Node> - Iterator for intrusive list.
|
|
|
|
//
|
|
|
|
template<typename NodeTy>
|
2002-07-24 22:44:01 +02:00
|
|
|
class ilist_iterator
|
2009-08-27 08:41:46 +02:00
|
|
|
: public std::iterator<std::bidirectional_iterator_tag, NodeTy, ptrdiff_t> {
|
2009-01-08 03:21:23 +01:00
|
|
|
|
2008-07-11 00:58:10 +02:00
|
|
|
public:
|
2002-06-25 18:13:24 +02:00
|
|
|
typedef ilist_traits<NodeTy> Traits;
|
2009-08-28 01:44:33 +02:00
|
|
|
typedef std::iterator<std::bidirectional_iterator_tag,
|
|
|
|
NodeTy, ptrdiff_t> super;
|
2002-07-24 22:44:01 +02:00
|
|
|
|
2009-01-04 04:22:42 +01:00
|
|
|
typedef typename super::value_type value_type;
|
|
|
|
typedef typename super::difference_type difference_type;
|
2002-07-24 22:44:01 +02:00
|
|
|
typedef typename super::pointer pointer;
|
|
|
|
typedef typename super::reference reference;
|
2003-07-25 19:23:13 +02:00
|
|
|
private:
|
2002-06-25 18:13:24 +02:00
|
|
|
pointer NodePtr;
|
2008-07-12 09:00:52 +02:00
|
|
|
|
2009-01-04 04:22:42 +01:00
|
|
|
// ilist_iterator is not a random-access iterator, but it has an
|
|
|
|
// implicit conversion to pointer-type, which is. Declare (but
|
|
|
|
// don't define) these functions as private to help catch
|
|
|
|
// accidental misuse.
|
|
|
|
void operator[](difference_type) const;
|
|
|
|
void operator+(difference_type) const;
|
|
|
|
void operator-(difference_type) const;
|
|
|
|
void operator+=(difference_type) const;
|
|
|
|
void operator-=(difference_type) const;
|
|
|
|
template<class T> void operator<(T) const;
|
|
|
|
template<class T> void operator<=(T) const;
|
|
|
|
template<class T> void operator>(T) const;
|
|
|
|
template<class T> void operator>=(T) const;
|
|
|
|
template<class T> void operator-(T) const;
|
2002-06-25 18:13:24 +02:00
|
|
|
public:
|
|
|
|
|
|
|
|
ilist_iterator(pointer NP) : NodePtr(NP) {}
|
2002-09-16 18:46:17 +02:00
|
|
|
ilist_iterator(reference NR) : NodePtr(&NR) {}
|
2002-06-25 18:13:24 +02:00
|
|
|
ilist_iterator() : NodePtr(0) {}
|
|
|
|
|
|
|
|
// This is templated so that we can allow constructing a const iterator from
|
|
|
|
// a nonconst iterator...
|
|
|
|
template<class node_ty>
|
|
|
|
ilist_iterator(const ilist_iterator<node_ty> &RHS)
|
|
|
|
: NodePtr(RHS.getNodePtrUnchecked()) {}
|
|
|
|
|
|
|
|
// This is templated so that we can allow assigning to a const iterator from
|
|
|
|
// a nonconst iterator...
|
|
|
|
template<class node_ty>
|
|
|
|
const ilist_iterator &operator=(const ilist_iterator<node_ty> &RHS) {
|
|
|
|
NodePtr = RHS.getNodePtrUnchecked();
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Accessors...
|
|
|
|
operator pointer() const {
|
|
|
|
return NodePtr;
|
|
|
|
}
|
|
|
|
|
|
|
|
reference operator*() const {
|
|
|
|
return *NodePtr;
|
|
|
|
}
|
2008-07-08 00:58:06 +02:00
|
|
|
pointer operator->() const { return &operator*(); }
|
2002-06-25 18:13:24 +02:00
|
|
|
|
|
|
|
// Comparison operators
|
|
|
|
bool operator==(const ilist_iterator &RHS) const {
|
|
|
|
return NodePtr == RHS.NodePtr;
|
|
|
|
}
|
|
|
|
bool operator!=(const ilist_iterator &RHS) const {
|
|
|
|
return NodePtr != RHS.NodePtr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Increment and decrement operators...
|
|
|
|
ilist_iterator &operator--() { // predecrement - Back up
|
|
|
|
NodePtr = Traits::getPrev(NodePtr);
|
2009-04-10 17:47:17 +02:00
|
|
|
assert(NodePtr && "--'d off the beginning of an ilist!");
|
2002-06-25 18:13:24 +02:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
ilist_iterator &operator++() { // preincrement - Advance
|
|
|
|
NodePtr = Traits::getNext(NodePtr);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
ilist_iterator operator--(int) { // postdecrement operators...
|
|
|
|
ilist_iterator tmp = *this;
|
|
|
|
--*this;
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
ilist_iterator operator++(int) { // postincrement operators...
|
|
|
|
ilist_iterator tmp = *this;
|
|
|
|
++*this;
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
2004-02-08 01:51:31 +01:00
|
|
|
// Internal interface, do not use...
|
|
|
|
pointer getNodePtrUnchecked() const { return NodePtr; }
|
|
|
|
};
|
|
|
|
|
2004-02-09 23:40:50 +01:00
|
|
|
// do not implement. this is to catch errors when people try to use
|
|
|
|
// them as random access iterators
|
|
|
|
template<typename T>
|
|
|
|
void operator-(int, ilist_iterator<T>);
|
|
|
|
template<typename T>
|
|
|
|
void operator-(ilist_iterator<T>,int);
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
void operator+(int, ilist_iterator<T>);
|
|
|
|
template<typename T>
|
|
|
|
void operator+(ilist_iterator<T>,int);
|
|
|
|
|
2005-06-15 20:28:44 +02:00
|
|
|
// operator!=/operator== - Allow mixed comparisons without dereferencing
|
|
|
|
// the iterator, which could very likely be pointing to end().
|
|
|
|
template<typename T>
|
|
|
|
bool operator!=(const T* LHS, const ilist_iterator<const T> &RHS) {
|
|
|
|
return LHS != RHS.getNodePtrUnchecked();
|
|
|
|
}
|
|
|
|
template<typename T>
|
|
|
|
bool operator==(const T* LHS, const ilist_iterator<const T> &RHS) {
|
|
|
|
return LHS == RHS.getNodePtrUnchecked();
|
|
|
|
}
|
|
|
|
template<typename T>
|
|
|
|
bool operator!=(T* LHS, const ilist_iterator<T> &RHS) {
|
|
|
|
return LHS != RHS.getNodePtrUnchecked();
|
|
|
|
}
|
|
|
|
template<typename T>
|
|
|
|
bool operator==(T* LHS, const ilist_iterator<T> &RHS) {
|
|
|
|
return LHS == RHS.getNodePtrUnchecked();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-04-23 18:17:53 +02:00
|
|
|
// Allow ilist_iterators to convert into pointers to a node automatically when
|
|
|
|
// used by the dyn_cast, cast, isa mechanisms...
|
|
|
|
|
|
|
|
template<typename From> struct simplify_type;
|
|
|
|
|
|
|
|
template<typename NodeTy> struct simplify_type<ilist_iterator<NodeTy> > {
|
|
|
|
typedef NodeTy* SimpleType;
|
2009-01-08 03:21:23 +01:00
|
|
|
|
2003-04-23 18:17:53 +02:00
|
|
|
static SimpleType getSimplifiedValue(const ilist_iterator<NodeTy> &Node) {
|
|
|
|
return &*Node;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
template<typename NodeTy> struct simplify_type<const ilist_iterator<NodeTy> > {
|
|
|
|
typedef NodeTy* SimpleType;
|
2009-01-08 03:21:23 +01:00
|
|
|
|
2003-04-23 18:17:53 +02:00
|
|
|
static SimpleType getSimplifiedValue(const ilist_iterator<NodeTy> &Node) {
|
|
|
|
return &*Node;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2002-06-25 18:13:24 +02:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2007-08-17 18:49:19 +02:00
|
|
|
/// iplist - The subset of list functionality that can safely be used on nodes
|
|
|
|
/// of polymorphic types, i.e. a heterogenous list with a common base class that
|
|
|
|
/// holds the next/prev pointers. The only state of the list itself is a single
|
|
|
|
/// pointer to the head of the list.
|
|
|
|
///
|
|
|
|
/// This list can be in one of three interesting states:
|
|
|
|
/// 1. The list may be completely unconstructed. In this case, the head
|
|
|
|
/// pointer is null. When in this form, any query for an iterator (e.g.
|
|
|
|
/// begin() or end()) causes the list to transparently change to state #2.
|
2009-01-08 03:21:23 +01:00
|
|
|
/// 2. The list may be empty, but contain a sentinel for the end iterator. This
|
|
|
|
/// sentinel is created by the Traits::createSentinel method and is a link
|
2007-08-17 18:49:19 +02:00
|
|
|
/// in the list. When the list is empty, the pointer in the iplist points
|
2009-01-08 03:21:23 +01:00
|
|
|
/// to the sentinel. Once the sentinel is constructed, it
|
2007-08-17 18:49:19 +02:00
|
|
|
/// is not destroyed until the list is.
|
|
|
|
/// 3. The list may contain actual objects in it, which are stored as a doubly
|
|
|
|
/// linked list of nodes. One invariant of the list is that the predecessor
|
|
|
|
/// of the first node in the list always points to the last node in the list,
|
2009-01-08 03:21:23 +01:00
|
|
|
/// and the successor pointer for the sentinel (which always stays at the
|
|
|
|
/// end of the list) is always null.
|
2007-08-17 18:49:19 +02:00
|
|
|
///
|
2002-06-25 18:13:24 +02:00
|
|
|
template<typename NodeTy, typename Traits=ilist_traits<NodeTy> >
|
|
|
|
class iplist : public Traits {
|
2007-08-17 18:49:19 +02:00
|
|
|
mutable NodeTy *Head;
|
2007-04-17 20:41:42 +02:00
|
|
|
|
|
|
|
// Use the prev node pointer of 'head' as the tail pointer. This is really a
|
|
|
|
// circularly linked list where we snip the 'next' link from the sentinel node
|
|
|
|
// back to the first node in the list (to preserve assertions about going off
|
|
|
|
// the end of the list).
|
2009-03-04 21:36:44 +01:00
|
|
|
NodeTy *getTail() { return this->ensureHead(Head); }
|
|
|
|
const NodeTy *getTail() const { return this->ensureHead(Head); }
|
|
|
|
void setTail(NodeTy *N) const { this->noteHead(Head, N); }
|
2009-01-08 03:21:23 +01:00
|
|
|
|
|
|
|
/// CreateLazySentinel - This method verifies whether the sentinel for the
|
2007-08-17 18:49:19 +02:00
|
|
|
/// list has been created and lazily makes it if not.
|
2009-01-08 03:21:23 +01:00
|
|
|
void CreateLazySentinel() const {
|
2009-08-12 11:05:11 +02:00
|
|
|
this->ensureHead(Head);
|
2007-08-17 18:49:19 +02:00
|
|
|
}
|
2002-06-25 18:13:24 +02:00
|
|
|
|
|
|
|
static bool op_less(NodeTy &L, NodeTy &R) { return L < R; }
|
|
|
|
static bool op_equal(NodeTy &L, NodeTy &R) { return L == R; }
|
2008-07-07 20:43:32 +02:00
|
|
|
|
2009-08-12 11:05:11 +02:00
|
|
|
// No fundamental reason why iplist can't be copyable, but the default
|
2008-07-07 20:43:32 +02:00
|
|
|
// copy/copy-assign won't do.
|
|
|
|
iplist(const iplist &); // do not implement
|
|
|
|
void operator=(const iplist &); // do not implement
|
|
|
|
|
2002-06-25 18:13:24 +02:00
|
|
|
public:
|
|
|
|
typedef NodeTy *pointer;
|
|
|
|
typedef const NodeTy *const_pointer;
|
|
|
|
typedef NodeTy &reference;
|
|
|
|
typedef const NodeTy &const_reference;
|
|
|
|
typedef NodeTy value_type;
|
|
|
|
typedef ilist_iterator<NodeTy> iterator;
|
|
|
|
typedef ilist_iterator<const NodeTy> const_iterator;
|
|
|
|
typedef size_t size_type;
|
|
|
|
typedef ptrdiff_t difference_type;
|
2002-06-25 22:22:25 +02:00
|
|
|
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
|
|
|
|
typedef std::reverse_iterator<iterator> reverse_iterator;
|
2002-06-25 18:13:24 +02:00
|
|
|
|
2009-08-12 11:05:11 +02:00
|
|
|
iplist() : Head(this->provideInitialHead()) {}
|
2007-08-17 18:49:19 +02:00
|
|
|
~iplist() {
|
|
|
|
if (!Head) return;
|
|
|
|
clear();
|
|
|
|
Traits::destroySentinel(getTail());
|
2002-06-25 18:13:24 +02:00
|
|
|
}
|
|
|
|
|
2004-02-08 01:51:31 +01:00
|
|
|
// Iterator creation methods.
|
2007-08-17 18:49:19 +02:00
|
|
|
iterator begin() {
|
2009-01-08 03:21:23 +01:00
|
|
|
CreateLazySentinel();
|
|
|
|
return iterator(Head);
|
2007-08-17 18:49:19 +02:00
|
|
|
}
|
|
|
|
const_iterator begin() const {
|
2009-01-08 03:21:23 +01:00
|
|
|
CreateLazySentinel();
|
2007-08-17 18:49:19 +02:00
|
|
|
return const_iterator(Head);
|
|
|
|
}
|
|
|
|
iterator end() {
|
2009-01-08 03:21:23 +01:00
|
|
|
CreateLazySentinel();
|
2007-08-17 18:49:19 +02:00
|
|
|
return iterator(getTail());
|
|
|
|
}
|
|
|
|
const_iterator end() const {
|
2009-01-08 03:21:23 +01:00
|
|
|
CreateLazySentinel();
|
2007-08-17 18:49:19 +02:00
|
|
|
return const_iterator(getTail());
|
|
|
|
}
|
2002-06-25 18:13:24 +02:00
|
|
|
|
2004-02-08 01:51:31 +01:00
|
|
|
// reverse iterator creation methods.
|
2002-06-25 18:13:24 +02:00
|
|
|
reverse_iterator rbegin() { return reverse_iterator(end()); }
|
|
|
|
const_reverse_iterator rbegin() const{ return const_reverse_iterator(end()); }
|
|
|
|
reverse_iterator rend() { return reverse_iterator(begin()); }
|
2007-08-17 18:49:19 +02:00
|
|
|
const_reverse_iterator rend() const { return const_reverse_iterator(begin());}
|
2002-06-25 18:13:24 +02:00
|
|
|
|
2004-02-08 01:51:31 +01:00
|
|
|
|
|
|
|
// Miscellaneous inspection routines.
|
2002-06-25 18:13:24 +02:00
|
|
|
size_type max_size() const { return size_type(-1); }
|
2007-08-17 18:49:19 +02:00
|
|
|
bool empty() const { return Head == 0 || Head == getTail(); }
|
2002-06-25 18:13:24 +02:00
|
|
|
|
|
|
|
// Front and back accessor functions...
|
|
|
|
reference front() {
|
|
|
|
assert(!empty() && "Called front() on empty list!");
|
|
|
|
return *Head;
|
|
|
|
}
|
|
|
|
const_reference front() const {
|
|
|
|
assert(!empty() && "Called front() on empty list!");
|
|
|
|
return *Head;
|
|
|
|
}
|
|
|
|
reference back() {
|
|
|
|
assert(!empty() && "Called back() on empty list!");
|
2008-12-13 11:55:13 +01:00
|
|
|
return *this->getPrev(getTail());
|
2002-06-25 18:13:24 +02:00
|
|
|
}
|
|
|
|
const_reference back() const {
|
|
|
|
assert(!empty() && "Called back() on empty list!");
|
2008-12-13 11:55:13 +01:00
|
|
|
return *this->getPrev(getTail());
|
2002-06-25 18:13:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void swap(iplist &RHS) {
|
2009-01-05 18:59:02 +01:00
|
|
|
assert(0 && "Swap does not use list traits callback correctly yet!");
|
2002-06-25 18:13:24 +02:00
|
|
|
std::swap(Head, RHS.Head);
|
|
|
|
}
|
|
|
|
|
|
|
|
iterator insert(iterator where, NodeTy *New) {
|
2009-02-20 23:20:18 +01:00
|
|
|
NodeTy *CurNode = where.getNodePtrUnchecked();
|
|
|
|
NodeTy *PrevNode = this->getPrev(CurNode);
|
2008-12-13 11:55:13 +01:00
|
|
|
this->setNext(New, CurNode);
|
|
|
|
this->setPrev(New, PrevNode);
|
2002-06-25 18:13:24 +02:00
|
|
|
|
2007-04-17 20:41:42 +02:00
|
|
|
if (CurNode != Head) // Is PrevNode off the beginning of the list?
|
2008-12-13 11:55:13 +01:00
|
|
|
this->setNext(PrevNode, New);
|
2002-06-25 18:13:24 +02:00
|
|
|
else
|
|
|
|
Head = New;
|
2008-12-13 11:55:13 +01:00
|
|
|
this->setPrev(CurNode, New);
|
2002-06-25 18:13:24 +02:00
|
|
|
|
2008-12-13 11:55:13 +01:00
|
|
|
this->addNodeToList(New); // Notify traits that we added a node...
|
2002-06-25 18:13:24 +02:00
|
|
|
return New;
|
|
|
|
}
|
|
|
|
|
2009-01-13 08:43:51 +01:00
|
|
|
iterator insertAfter(iterator where, NodeTy *New) {
|
2009-02-20 23:54:36 +01:00
|
|
|
if (empty())
|
2009-01-13 08:43:51 +01:00
|
|
|
return insert(begin(), New);
|
|
|
|
else
|
|
|
|
return insert(++where, New);
|
|
|
|
}
|
|
|
|
|
2002-06-25 18:13:24 +02:00
|
|
|
NodeTy *remove(iterator &IT) {
|
|
|
|
assert(IT != end() && "Cannot remove end of list!");
|
|
|
|
NodeTy *Node = &*IT;
|
2008-12-13 11:55:13 +01:00
|
|
|
NodeTy *NextNode = this->getNext(Node);
|
|
|
|
NodeTy *PrevNode = this->getPrev(Node);
|
2002-06-25 18:13:24 +02:00
|
|
|
|
2007-04-17 20:41:42 +02:00
|
|
|
if (Node != Head) // Is PrevNode off the beginning of the list?
|
2008-12-13 11:55:13 +01:00
|
|
|
this->setNext(PrevNode, NextNode);
|
2002-06-25 18:13:24 +02:00
|
|
|
else
|
|
|
|
Head = NextNode;
|
2008-12-13 11:55:13 +01:00
|
|
|
this->setPrev(NextNode, PrevNode);
|
2002-06-25 18:13:24 +02:00
|
|
|
IT = NextNode;
|
2009-01-22 00:49:23 +01:00
|
|
|
this->removeNodeFromList(Node); // Notify traits that we removed a node...
|
2009-01-08 03:21:23 +01:00
|
|
|
|
2008-03-27 03:43:03 +01:00
|
|
|
// Set the next/prev pointers of the current node to null. This isn't
|
|
|
|
// strictly required, but this catches errors where a node is removed from
|
|
|
|
// an ilist (and potentially deleted) with iterators still pointing at it.
|
|
|
|
// When those iterators are incremented or decremented, they will assert on
|
|
|
|
// the null next/prev pointer instead of "usually working".
|
2008-12-13 11:55:13 +01:00
|
|
|
this->setNext(Node, 0);
|
|
|
|
this->setPrev(Node, 0);
|
2002-06-25 18:13:24 +02:00
|
|
|
return Node;
|
|
|
|
}
|
|
|
|
|
|
|
|
NodeTy *remove(const iterator &IT) {
|
|
|
|
iterator MutIt = IT;
|
|
|
|
return remove(MutIt);
|
|
|
|
}
|
|
|
|
|
|
|
|
// erase - remove a node from the controlled sequence... and delete it.
|
|
|
|
iterator erase(iterator where) {
|
2009-01-21 23:38:44 +01:00
|
|
|
this->deleteNode(remove(where));
|
2002-06-25 18:13:24 +02:00
|
|
|
return where;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
// transfer - The heart of the splice function. Move linked list nodes from
|
|
|
|
// [first, last) into position.
|
|
|
|
//
|
|
|
|
void transfer(iterator position, iplist &L2, iterator first, iterator last) {
|
|
|
|
assert(first != last && "Should be checked by callers");
|
2007-04-17 20:41:42 +02:00
|
|
|
|
2002-06-25 18:13:24 +02:00
|
|
|
if (position != last) {
|
2007-04-17 20:41:42 +02:00
|
|
|
// Note: we have to be careful about the case when we move the first node
|
|
|
|
// in the list. This node is the list sentinel node and we can't move it.
|
|
|
|
NodeTy *ThisSentinel = getTail();
|
|
|
|
setTail(0);
|
|
|
|
NodeTy *L2Sentinel = L2.getTail();
|
|
|
|
L2.setTail(0);
|
|
|
|
|
2002-06-25 18:13:24 +02:00
|
|
|
// Remove [first, last) from its old position.
|
2009-06-02 22:32:59 +02:00
|
|
|
NodeTy *First = &*first, *Prev = this->getPrev(First);
|
|
|
|
NodeTy *Next = last.getNodePtrUnchecked(), *Last = this->getPrev(Next);
|
2002-06-25 18:13:24 +02:00
|
|
|
if (Prev)
|
2008-12-13 11:55:13 +01:00
|
|
|
this->setNext(Prev, Next);
|
2002-06-25 18:13:24 +02:00
|
|
|
else
|
|
|
|
L2.Head = Next;
|
2008-12-13 11:55:13 +01:00
|
|
|
this->setPrev(Next, Prev);
|
2002-06-25 18:13:24 +02:00
|
|
|
|
|
|
|
// Splice [first, last) into its new position.
|
|
|
|
NodeTy *PosNext = position.getNodePtrUnchecked();
|
2009-06-02 22:32:59 +02:00
|
|
|
NodeTy *PosPrev = this->getPrev(PosNext);
|
2002-06-25 18:13:24 +02:00
|
|
|
|
|
|
|
// Fix head of list...
|
|
|
|
if (PosPrev)
|
2008-12-13 11:55:13 +01:00
|
|
|
this->setNext(PosPrev, First);
|
2002-06-25 18:13:24 +02:00
|
|
|
else
|
|
|
|
Head = First;
|
2008-12-13 11:55:13 +01:00
|
|
|
this->setPrev(First, PosPrev);
|
2002-06-25 18:13:24 +02:00
|
|
|
|
|
|
|
// Fix end of list...
|
2008-12-13 11:55:13 +01:00
|
|
|
this->setNext(Last, PosNext);
|
|
|
|
this->setPrev(PosNext, Last);
|
2002-06-25 18:13:24 +02:00
|
|
|
|
2009-06-02 22:32:59 +02:00
|
|
|
this->transferNodesFromList(L2, First, PosNext);
|
2007-04-17 20:41:42 +02:00
|
|
|
|
2009-01-08 03:21:23 +01:00
|
|
|
// Now that everything is set, restore the pointers to the list sentinels.
|
2007-04-17 20:41:42 +02:00
|
|
|
L2.setTail(L2Sentinel);
|
|
|
|
setTail(ThisSentinel);
|
2002-06-25 18:13:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===
|
|
|
|
// Functionality derived from other functions defined above...
|
|
|
|
//
|
|
|
|
|
|
|
|
size_type size() const {
|
2009-01-08 03:21:23 +01:00
|
|
|
if (Head == 0) return 0; // Don't require construction of sentinel if empty.
|
2004-06-03 20:48:59 +02:00
|
|
|
return std::distance(begin(), end());
|
2002-06-25 18:13:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
iterator erase(iterator first, iterator last) {
|
|
|
|
while (first != last)
|
|
|
|
first = erase(first);
|
|
|
|
return last;
|
|
|
|
}
|
|
|
|
|
2007-08-17 18:49:19 +02:00
|
|
|
void clear() { if (Head) erase(begin(), end()); }
|
2002-06-25 18:13:24 +02:00
|
|
|
|
|
|
|
// Front and back inserters...
|
|
|
|
void push_front(NodeTy *val) { insert(begin(), val); }
|
|
|
|
void push_back(NodeTy *val) { insert(end(), val); }
|
|
|
|
void pop_front() {
|
|
|
|
assert(!empty() && "pop_front() on empty list!");
|
|
|
|
erase(begin());
|
|
|
|
}
|
|
|
|
void pop_back() {
|
|
|
|
assert(!empty() && "pop_back() on empty list!");
|
|
|
|
iterator t = end(); erase(--t);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Special forms of insert...
|
|
|
|
template<class InIt> void insert(iterator where, InIt first, InIt last) {
|
|
|
|
for (; first != last; ++first) insert(where, *first);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Splice members - defined in terms of transfer...
|
|
|
|
void splice(iterator where, iplist &L2) {
|
|
|
|
if (!L2.empty())
|
|
|
|
transfer(where, L2, L2.begin(), L2.end());
|
|
|
|
}
|
|
|
|
void splice(iterator where, iplist &L2, iterator first) {
|
|
|
|
iterator last = first; ++last;
|
|
|
|
if (where == first || where == last) return; // No change
|
|
|
|
transfer(where, L2, first, last);
|
|
|
|
}
|
|
|
|
void splice(iterator where, iplist &L2, iterator first, iterator last) {
|
|
|
|
if (first != last) transfer(where, L2, first, last);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===
|
|
|
|
// High-Level Functionality that shouldn't really be here, but is part of list
|
|
|
|
//
|
|
|
|
|
|
|
|
// These two functions are actually called remove/remove_if in list<>, but
|
|
|
|
// they actually do the job of erase, rename them accordingly.
|
|
|
|
//
|
|
|
|
void erase(const NodeTy &val) {
|
|
|
|
for (iterator I = begin(), E = end(); I != E; ) {
|
|
|
|
iterator next = I; ++next;
|
|
|
|
if (*I == val) erase(I);
|
|
|
|
I = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
template<class Pr1> void erase_if(Pr1 pred) {
|
|
|
|
for (iterator I = begin(), E = end(); I != E; ) {
|
|
|
|
iterator next = I; ++next;
|
|
|
|
if (pred(*I)) erase(I);
|
|
|
|
I = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class Pr2> void unique(Pr2 pred) {
|
|
|
|
if (empty()) return;
|
|
|
|
for (iterator I = begin(), E = end(), Next = begin(); ++Next != E;) {
|
|
|
|
if (pred(*I))
|
|
|
|
erase(Next);
|
|
|
|
else
|
|
|
|
I = Next;
|
|
|
|
Next = I;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void unique() { unique(op_equal); }
|
|
|
|
|
|
|
|
template<class Pr3> void merge(iplist &right, Pr3 pred) {
|
|
|
|
iterator first1 = begin(), last1 = end();
|
|
|
|
iterator first2 = right.begin(), last2 = right.end();
|
|
|
|
while (first1 != last1 && first2 != last2)
|
|
|
|
if (pred(*first2, *first1)) {
|
|
|
|
iterator next = first2;
|
|
|
|
transfer(first1, right, first2, ++next);
|
|
|
|
first2 = next;
|
|
|
|
} else {
|
|
|
|
++first1;
|
|
|
|
}
|
|
|
|
if (first2 != last2) transfer(last1, right, first2, last2);
|
|
|
|
}
|
|
|
|
void merge(iplist &right) { return merge(right, op_less); }
|
|
|
|
|
|
|
|
template<class Pr3> void sort(Pr3 pred);
|
|
|
|
void sort() { sort(op_less); }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
template<typename NodeTy>
|
|
|
|
struct ilist : public iplist<NodeTy> {
|
2002-07-24 22:44:01 +02:00
|
|
|
typedef typename iplist<NodeTy>::size_type size_type;
|
|
|
|
typedef typename iplist<NodeTy>::iterator iterator;
|
|
|
|
|
2002-06-25 18:13:24 +02:00
|
|
|
ilist() {}
|
|
|
|
ilist(const ilist &right) {
|
2003-08-29 16:22:29 +02:00
|
|
|
insert(this->begin(), right.begin(), right.end());
|
2002-06-25 18:13:24 +02:00
|
|
|
}
|
|
|
|
explicit ilist(size_type count) {
|
2003-08-29 16:22:29 +02:00
|
|
|
insert(this->begin(), count, NodeTy());
|
2009-01-08 03:21:23 +01:00
|
|
|
}
|
2002-06-25 18:13:24 +02:00
|
|
|
ilist(size_type count, const NodeTy &val) {
|
2003-08-29 16:22:29 +02:00
|
|
|
insert(this->begin(), count, val);
|
2002-06-25 18:13:24 +02:00
|
|
|
}
|
|
|
|
template<class InIt> ilist(InIt first, InIt last) {
|
2003-08-29 16:22:29 +02:00
|
|
|
insert(this->begin(), first, last);
|
2002-06-25 18:13:24 +02:00
|
|
|
}
|
|
|
|
|
2009-03-02 20:49:29 +01:00
|
|
|
// bring hidden functions into scope
|
|
|
|
using iplist<NodeTy>::insert;
|
|
|
|
using iplist<NodeTy>::push_front;
|
|
|
|
using iplist<NodeTy>::push_back;
|
2002-06-25 18:13:24 +02:00
|
|
|
|
|
|
|
// Main implementation here - Insert for a node passed by value...
|
|
|
|
iterator insert(iterator where, const NodeTy &val) {
|
2009-12-15 04:10:26 +01:00
|
|
|
return insert(where, this->createNode(val));
|
2002-06-25 18:13:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Front and back inserters...
|
2003-08-29 16:22:29 +02:00
|
|
|
void push_front(const NodeTy &val) { insert(this->begin(), val); }
|
|
|
|
void push_back(const NodeTy &val) { insert(this->end(), val); }
|
2002-06-25 18:13:24 +02:00
|
|
|
|
|
|
|
// Special forms of insert...
|
|
|
|
template<class InIt> void insert(iterator where, InIt first, InIt last) {
|
|
|
|
for (; first != last; ++first) insert(where, *first);
|
|
|
|
}
|
|
|
|
void insert(iterator where, size_type count, const NodeTy &val) {
|
|
|
|
for (; count != 0; --count) insert(where, val);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Assign special forms...
|
|
|
|
void assign(size_type count, const NodeTy &val) {
|
2003-08-29 16:22:29 +02:00
|
|
|
iterator I = this->begin();
|
|
|
|
for (; I != this->end() && count != 0; ++I, --count)
|
2002-06-25 18:13:24 +02:00
|
|
|
*I = val;
|
|
|
|
if (count != 0)
|
2003-08-29 16:22:29 +02:00
|
|
|
insert(this->end(), val, val);
|
2002-06-25 18:13:24 +02:00
|
|
|
else
|
2003-08-29 16:22:29 +02:00
|
|
|
erase(I, this->end());
|
2002-06-25 18:13:24 +02:00
|
|
|
}
|
2003-08-29 16:22:29 +02:00
|
|
|
template<class InIt> void assign(InIt first1, InIt last1) {
|
|
|
|
iterator first2 = this->begin(), last2 = this->end();
|
2002-06-25 18:13:24 +02:00
|
|
|
for ( ; first1 != last1 && first2 != last2; ++first1, ++first2)
|
|
|
|
*first1 = *first2;
|
|
|
|
if (first2 == last2)
|
|
|
|
erase(first1, last1);
|
|
|
|
else
|
|
|
|
insert(last1, first2, last2);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Resize members...
|
|
|
|
void resize(size_type newsize, NodeTy val) {
|
2003-08-29 16:22:29 +02:00
|
|
|
iterator i = this->begin();
|
2002-06-25 18:13:24 +02:00
|
|
|
size_type len = 0;
|
2003-08-29 16:22:29 +02:00
|
|
|
for ( ; i != this->end() && len < newsize; ++i, ++len) /* empty*/ ;
|
2002-06-25 18:13:24 +02:00
|
|
|
|
|
|
|
if (len == newsize)
|
2003-08-29 16:22:29 +02:00
|
|
|
erase(i, this->end());
|
2002-06-25 18:13:24 +02:00
|
|
|
else // i == end()
|
2003-08-29 16:22:29 +02:00
|
|
|
insert(this->end(), newsize - len, val);
|
2002-06-25 18:13:24 +02:00
|
|
|
}
|
|
|
|
void resize(size_type newsize) { resize(newsize, NodeTy()); }
|
|
|
|
};
|
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2002-06-25 18:13:24 +02:00
|
|
|
namespace std {
|
|
|
|
// Ensure that swap uses the fast list swap...
|
|
|
|
template<class Ty>
|
2003-11-11 23:41:34 +01:00
|
|
|
void swap(llvm::iplist<Ty> &Left, llvm::iplist<Ty> &Right) {
|
2002-06-25 18:13:24 +02:00
|
|
|
Left.swap(Right);
|
|
|
|
}
|
|
|
|
} // End 'std' extensions...
|
|
|
|
|
2008-05-29 20:17:53 +02:00
|
|
|
#endif // LLVM_ADT_ILIST_H
|