Delete unused #include.
[oota-llvm.git] / include / llvm / ADT / ImmutableMap.h
1 //===--- ImmutableMap.h - Immutable (functional) map interface --*- 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 ImmutableMap class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_ADT_IMMAP_H
15 #define LLVM_ADT_IMMAP_H
16
17 #include "llvm/ADT/ImmutableSet.h"
18
19 namespace llvm {
20
21 /// ImutKeyValueInfo -Traits class used by ImmutableMap.  While both the first
22 /// and second elements in a pair are used to generate profile information,
23 /// only the first element (the key) is used by isEqual and isLess.
24 template <typename T, typename S>
25 struct ImutKeyValueInfo {
26   typedef const std::pair<T,S> value_type;
27   typedef const value_type& value_type_ref;
28   typedef const T   key_type;
29   typedef const T&  key_type_ref;
30   typedef const S   data_type;
31   typedef const S&  data_type_ref;
32
33   static inline key_type_ref KeyOfValue(value_type_ref V) {
34     return V.first;
35   }
36
37   static inline data_type_ref DataOfValue(value_type_ref V) {
38     return V.second;
39   }
40
41   static inline bool isEqual(key_type_ref L, key_type_ref R) {
42     return ImutContainerInfo<T>::isEqual(L,R);
43   }
44   static inline bool isLess(key_type_ref L, key_type_ref R) {
45     return ImutContainerInfo<T>::isLess(L,R);
46   }
47
48   static inline bool isDataEqual(data_type_ref L, data_type_ref R) {
49     return ImutContainerInfo<S>::isEqual(L,R);
50   }
51
52   static inline void Profile(FoldingSetNodeID& ID, value_type_ref V) {
53     ImutContainerInfo<T>::Profile(ID, V.first);
54     ImutContainerInfo<S>::Profile(ID, V.second);
55   }
56 };
57
58
59 template <typename KeyT, typename ValT,
60           typename ValInfo = ImutKeyValueInfo<KeyT,ValT> >
61 class ImmutableMap {
62 public:
63   typedef typename ValInfo::value_type      value_type;
64   typedef typename ValInfo::value_type_ref  value_type_ref;
65   typedef typename ValInfo::key_type        key_type;
66   typedef typename ValInfo::key_type_ref    key_type_ref;
67   typedef typename ValInfo::data_type       data_type;
68   typedef typename ValInfo::data_type_ref   data_type_ref;
69   typedef ImutAVLTree<ValInfo>              TreeTy;
70
71 private:
72   TreeTy* Root;
73
74 public:
75   /// Constructs a map from a pointer to a tree root.  In general one
76   /// should use a Factory object to create maps instead of directly
77   /// invoking the constructor, but there are cases where make this
78   /// constructor public is useful.
79   explicit ImmutableMap(const TreeTy* R) : Root(const_cast<TreeTy*>(R)) {}
80
81   class Factory {
82     typename TreeTy::Factory F;
83
84   public:
85     Factory() {}
86
87     Factory(BumpPtrAllocator& Alloc)
88       : F(Alloc) {}
89
90     ImmutableMap GetEmptyMap() { return ImmutableMap(F.GetEmptyTree()); }
91
92     ImmutableMap Add(ImmutableMap Old, key_type_ref K, data_type_ref D) {
93       TreeTy *T = F.Add(Old.Root, std::make_pair<key_type,data_type>(K,D));
94       return ImmutableMap(F.GetCanonicalTree(T));
95     }
96
97     ImmutableMap Remove(ImmutableMap Old, key_type_ref K) {
98       TreeTy *T = F.Remove(Old.Root,K);
99       return ImmutableMap(F.GetCanonicalTree(T));
100     }
101
102   private:
103     Factory(const Factory& RHS) {};
104     void operator=(const Factory& RHS) {};
105   };
106
107   friend class Factory;
108
109   bool contains(key_type_ref K) const {
110     return Root ? Root->contains(K) : false;
111   }
112
113
114   bool operator==(ImmutableMap RHS) const {
115     return Root && RHS.Root ? Root->isEqual(*RHS.Root) : Root == RHS.Root;
116   }
117
118   bool operator!=(ImmutableMap RHS) const {
119     return Root && RHS.Root ? Root->isNotEqual(*RHS.Root) : Root != RHS.Root;
120   }
121
122   TreeTy* getRoot() const { return Root; }
123
124   bool isEmpty() const { return !Root; }
125
126   //===--------------------------------------------------===//
127   // Foreach - A limited form of map iteration.
128   //===--------------------------------------------------===//
129
130 private:
131   template <typename Callback>
132   struct CBWrapper {
133     Callback C;
134     void operator()(value_type_ref V) { C(V.first,V.second); }
135   };
136
137   template <typename Callback>
138   struct CBWrapperRef {
139     Callback &C;
140     CBWrapperRef(Callback& c) : C(c) {}
141
142     void operator()(value_type_ref V) { C(V.first,V.second); }
143   };
144
145 public:
146   template <typename Callback>
147   void foreach(Callback& C) {
148     if (Root) {
149       CBWrapperRef<Callback> CB(C);
150       Root->foreach(CB);
151     }
152   }
153
154   template <typename Callback>
155   void foreach() {
156     if (Root) {
157       CBWrapper<Callback> CB;
158       Root->foreach(CB);
159     }
160   }
161
162   //===--------------------------------------------------===//
163   // For testing.
164   //===--------------------------------------------------===//
165
166   void verify() const { if (Root) Root->verify(); }
167
168   //===--------------------------------------------------===//
169   // Iterators.
170   //===--------------------------------------------------===//
171
172   class iterator {
173     typename TreeTy::iterator itr;
174
175     iterator() {}
176     iterator(TreeTy* t) : itr(t) {}
177     friend class ImmutableMap;
178
179   public:
180     value_type_ref operator*() const { return itr->getValue(); }
181     value_type*    operator->() const { return &itr->getValue(); }
182
183     key_type_ref getKey() const { return itr->getValue().first; }
184     data_type_ref getData() const { return itr->getValue().second; }
185
186
187     iterator& operator++() { ++itr; return *this; }
188     iterator  operator++(int) { iterator tmp(*this); ++itr; return tmp; }
189     iterator& operator--() { --itr; return *this; }
190     iterator  operator--(int) { iterator tmp(*this); --itr; return tmp; }
191     bool operator==(const iterator& RHS) const { return RHS.itr == itr; }
192     bool operator!=(const iterator& RHS) const { return RHS.itr != itr; }
193   };
194
195   iterator begin() const { return iterator(Root); }
196   iterator end() const { return iterator(); }
197
198   data_type* lookup(key_type_ref K) const {
199     if (Root) {
200       TreeTy* T = Root->find(K);
201       if (T) return &T->getValue().second;
202     }
203
204     return 0;
205   }
206   
207   /// getMaxElement - Returns the <key,value> pair in the ImmutableMap for
208   ///  which key is the highest in the ordering of keys in the map.  This
209   ///  method returns NULL if the map is empty.
210   value_type* getMaxElement() const {
211     return Root ? &(Root->getMaxElement()->getValue()) : 0;
212   }
213
214   //===--------------------------------------------------===//
215   // Utility methods.
216   //===--------------------------------------------------===//
217
218   inline unsigned getHeight() const { return Root ? Root->getHeight() : 0; }
219
220   static inline void Profile(FoldingSetNodeID& ID, const ImmutableMap& M) {
221     ID.AddPointer(M.Root);
222   }
223
224   inline void Profile(FoldingSetNodeID& ID) const {
225     return Profile(ID,*this);
226   }
227 };
228
229 } // end namespace llvm
230
231 #endif