blob: 33eb115258b4eaa6f0079fb0ceaec0b2cc4bce3c [file] [log] [blame]
Ben Murdoch3ef787d2012-04-12 10:51:47 +01001// Copyright 2012 the V8 project authors. All rights reserved.
Ben Murdochb8a8cc12014-11-26 15:28:44 +00002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
Steve Blocka7e24c12009-10-30 11:49:00 +00004
5#ifndef V8_HASHMAP_H_
6#define V8_HASHMAP_H_
7
Ben Murdochb8a8cc12014-11-26 15:28:44 +00008#include "src/allocation.h"
9#include "src/base/bits.h"
10#include "src/base/logging.h"
11#include "src/utils.h"
Ben Murdoch257744e2011-11-30 15:57:28 +000012
Steve Blocka7e24c12009-10-30 11:49:00 +000013namespace v8 {
14namespace internal {
15
Ben Murdoch3ef787d2012-04-12 10:51:47 +010016template<class AllocationPolicy>
17class TemplateHashMapImpl {
Steve Blocka7e24c12009-10-30 11:49:00 +000018 public:
Steve Blocka7e24c12009-10-30 11:49:00 +000019 typedef bool (*MatchFun) (void* key1, void* key2);
20
Ben Murdochb8a8cc12014-11-26 15:28:44 +000021 // The default capacity. This is used by the call sites which want
22 // to pass in a non-default AllocationPolicy but want to use the
23 // default value of capacity specified by the implementation.
24 static const uint32_t kDefaultHashMapCapacity = 8;
25
Steve Blocka7e24c12009-10-30 11:49:00 +000026 // initial_capacity is the size of the initial hash map;
27 // it must be a power of 2 (and thus must not be 0).
Ben Murdochb8a8cc12014-11-26 15:28:44 +000028 TemplateHashMapImpl(MatchFun match,
29 uint32_t capacity = kDefaultHashMapCapacity,
30 AllocationPolicy allocator = AllocationPolicy());
Steve Blocka7e24c12009-10-30 11:49:00 +000031
Ben Murdoch3ef787d2012-04-12 10:51:47 +010032 ~TemplateHashMapImpl();
Steve Blocka7e24c12009-10-30 11:49:00 +000033
34 // HashMap entries are (key, value, hash) triplets.
35 // Some clients may not need to use the value slot
36 // (e.g. implementers of sets, where the key is the value).
37 struct Entry {
38 void* key;
39 void* value;
Ben Murdochb8a8cc12014-11-26 15:28:44 +000040 uint32_t hash; // The full hash value for key
41 int order; // If you never remove entries this is the insertion order.
Steve Blocka7e24c12009-10-30 11:49:00 +000042 };
43
44 // If an entry with matching key is found, Lookup()
45 // returns that entry. If no matching entry is found,
46 // but insert is set, a new entry is inserted with
47 // corresponding key, key hash, and NULL value.
48 // Otherwise, NULL is returned.
Ben Murdochb8a8cc12014-11-26 15:28:44 +000049 Entry* Lookup(void* key, uint32_t hash, bool insert,
50 AllocationPolicy allocator = AllocationPolicy());
Steve Blocka7e24c12009-10-30 11:49:00 +000051
52 // Removes the entry with matching key.
Ben Murdochb8a8cc12014-11-26 15:28:44 +000053 // It returns the value of the deleted entry
54 // or null if there is no value for such key.
55 void* Remove(void* key, uint32_t hash);
Steve Blocka7e24c12009-10-30 11:49:00 +000056
57 // Empties the hash map (occupancy() == 0).
58 void Clear();
59
60 // The number of (non-empty) entries in the table.
Kristian Monsen0d5e1162010-09-30 15:31:59 +010061 uint32_t occupancy() const { return occupancy_; }
Steve Blocka7e24c12009-10-30 11:49:00 +000062
63 // The capacity of the table. The implementation
64 // makes sure that occupancy is at most 80% of
65 // the table capacity.
Kristian Monsen0d5e1162010-09-30 15:31:59 +010066 uint32_t capacity() const { return capacity_; }
Steve Blocka7e24c12009-10-30 11:49:00 +000067
68 // Iteration
69 //
70 // for (Entry* p = map.Start(); p != NULL; p = map.Next(p)) {
71 // ...
72 // }
73 //
74 // If entries are inserted during iteration, the effect of
75 // calling Next() is undefined.
76 Entry* Start() const;
77 Entry* Next(Entry* p) const;
78
Ben Murdochb8a8cc12014-11-26 15:28:44 +000079 // Some match functions defined for convenience.
80 static bool PointersMatch(void* key1, void* key2) {
81 return key1 == key2;
82 }
83
Steve Blocka7e24c12009-10-30 11:49:00 +000084 private:
Steve Blocka7e24c12009-10-30 11:49:00 +000085 MatchFun match_;
86 Entry* map_;
87 uint32_t capacity_;
88 uint32_t occupancy_;
89
Kristian Monsen0d5e1162010-09-30 15:31:59 +010090 Entry* map_end() const { return map_ + capacity_; }
Steve Blocka7e24c12009-10-30 11:49:00 +000091 Entry* Probe(void* key, uint32_t hash);
Ben Murdochb8a8cc12014-11-26 15:28:44 +000092 void Initialize(uint32_t capacity, AllocationPolicy allocator);
93 void Resize(AllocationPolicy allocator);
Steve Blocka7e24c12009-10-30 11:49:00 +000094};
95
Ben Murdoch3ef787d2012-04-12 10:51:47 +010096typedef TemplateHashMapImpl<FreeStoreAllocationPolicy> HashMap;
97
Ben Murdochb8a8cc12014-11-26 15:28:44 +000098template<class AllocationPolicy>
99TemplateHashMapImpl<AllocationPolicy>::TemplateHashMapImpl(
100 MatchFun match, uint32_t initial_capacity, AllocationPolicy allocator) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100101 match_ = match;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000102 Initialize(initial_capacity, allocator);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100103}
104
105
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000106template<class AllocationPolicy>
107TemplateHashMapImpl<AllocationPolicy>::~TemplateHashMapImpl() {
108 AllocationPolicy::Delete(map_);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100109}
110
111
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000112template<class AllocationPolicy>
113typename TemplateHashMapImpl<AllocationPolicy>::Entry*
114TemplateHashMapImpl<AllocationPolicy>::Lookup(
115 void* key, uint32_t hash, bool insert, AllocationPolicy allocator) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100116 // Find a matching entry.
117 Entry* p = Probe(key, hash);
118 if (p->key != NULL) {
119 return p;
120 }
121
122 // No entry found; insert one if necessary.
123 if (insert) {
124 p->key = key;
125 p->value = NULL;
126 p->hash = hash;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000127 p->order = occupancy_;
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100128 occupancy_++;
129
130 // Grow the map if we reached >= 80% occupancy.
131 if (occupancy_ + occupancy_/4 >= capacity_) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000132 Resize(allocator);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100133 p = Probe(key, hash);
134 }
135
136 return p;
137 }
138
139 // No entry found and none inserted.
140 return NULL;
141}
142
143
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000144template<class AllocationPolicy>
145void* TemplateHashMapImpl<AllocationPolicy>::Remove(void* key, uint32_t hash) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100146 // Lookup the entry for the key to remove.
147 Entry* p = Probe(key, hash);
148 if (p->key == NULL) {
149 // Key not found nothing to remove.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000150 return NULL;
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100151 }
152
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000153 void* value = p->value;
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100154 // To remove an entry we need to ensure that it does not create an empty
155 // entry that will cause the search for another entry to stop too soon. If all
156 // the entries between the entry to remove and the next empty slot have their
157 // initial position inside this interval, clearing the entry to remove will
158 // not break the search. If, while searching for the next empty entry, an
159 // entry is encountered which does not have its initial position between the
160 // entry to remove and the position looked at, then this entry can be moved to
161 // the place of the entry to remove without breaking the search for it. The
162 // entry made vacant by this move is now the entry to remove and the process
163 // starts over.
164 // Algorithm from http://en.wikipedia.org/wiki/Open_addressing.
165
166 // This guarantees loop termination as there is at least one empty entry so
167 // eventually the removed entry will have an empty entry after it.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000168 DCHECK(occupancy_ < capacity_);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100169
170 // p is the candidate entry to clear. q is used to scan forwards.
171 Entry* q = p; // Start at the entry to remove.
172 while (true) {
173 // Move q to the next entry.
174 q = q + 1;
175 if (q == map_end()) {
176 q = map_;
177 }
178
179 // All entries between p and q have their initial position between p and q
180 // and the entry p can be cleared without breaking the search for these
181 // entries.
182 if (q->key == NULL) {
183 break;
184 }
185
186 // Find the initial position for the entry at position q.
187 Entry* r = map_ + (q->hash & (capacity_ - 1));
188
189 // If the entry at position q has its initial position outside the range
190 // between p and q it can be moved forward to position p and will still be
191 // found. There is now a new candidate entry for clearing.
192 if ((q > p && (r <= p || r > q)) ||
193 (q < p && (r <= p && r > q))) {
194 *p = *q;
195 p = q;
196 }
197 }
198
199 // Clear the entry which is allowed to en emptied.
200 p->key = NULL;
201 occupancy_--;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000202 return value;
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100203}
204
205
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000206template<class AllocationPolicy>
207void TemplateHashMapImpl<AllocationPolicy>::Clear() {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100208 // Mark all entries as empty.
209 const Entry* end = map_end();
210 for (Entry* p = map_; p < end; p++) {
211 p->key = NULL;
212 }
213 occupancy_ = 0;
214}
215
216
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000217template<class AllocationPolicy>
218typename TemplateHashMapImpl<AllocationPolicy>::Entry*
219 TemplateHashMapImpl<AllocationPolicy>::Start() const {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100220 return Next(map_ - 1);
221}
222
223
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000224template<class AllocationPolicy>
225typename TemplateHashMapImpl<AllocationPolicy>::Entry*
226 TemplateHashMapImpl<AllocationPolicy>::Next(Entry* p) const {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100227 const Entry* end = map_end();
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000228 DCHECK(map_ - 1 <= p && p < end);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100229 for (p++; p < end; p++) {
230 if (p->key != NULL) {
231 return p;
232 }
233 }
234 return NULL;
235}
236
237
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000238template<class AllocationPolicy>
239typename TemplateHashMapImpl<AllocationPolicy>::Entry*
240 TemplateHashMapImpl<AllocationPolicy>::Probe(void* key, uint32_t hash) {
241 DCHECK(key != NULL);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100242
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000243 DCHECK(base::bits::IsPowerOfTwo32(capacity_));
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100244 Entry* p = map_ + (hash & (capacity_ - 1));
245 const Entry* end = map_end();
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000246 DCHECK(map_ <= p && p < end);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100247
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000248 DCHECK(occupancy_ < capacity_); // Guarantees loop termination.
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100249 while (p->key != NULL && (hash != p->hash || !match_(key, p->key))) {
250 p++;
251 if (p >= end) {
252 p = map_;
253 }
254 }
255
256 return p;
257}
258
259
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000260template<class AllocationPolicy>
261void TemplateHashMapImpl<AllocationPolicy>::Initialize(
262 uint32_t capacity, AllocationPolicy allocator) {
263 DCHECK(base::bits::IsPowerOfTwo32(capacity));
264 map_ = reinterpret_cast<Entry*>(allocator.New(capacity * sizeof(Entry)));
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100265 if (map_ == NULL) {
266 v8::internal::FatalProcessOutOfMemory("HashMap::Initialize");
267 return;
268 }
269 capacity_ = capacity;
270 Clear();
271}
272
273
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000274template<class AllocationPolicy>
275void TemplateHashMapImpl<AllocationPolicy>::Resize(AllocationPolicy allocator) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100276 Entry* map = map_;
277 uint32_t n = occupancy_;
278
279 // Allocate larger map.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000280 Initialize(capacity_ * 2, allocator);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100281
282 // Rehash all current entries.
283 for (Entry* p = map; n > 0; p++) {
284 if (p->key != NULL) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000285 Entry* entry = Lookup(p->key, p->hash, true, allocator);
286 entry->value = p->value;
287 entry->order = p->order;
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100288 n--;
289 }
290 }
291
292 // Delete old map.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000293 AllocationPolicy::Delete(map);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100294}
295
296
297// A hash map for pointer keys and values with an STL-like interface.
298template<class Key, class Value, class AllocationPolicy>
299class TemplateHashMap: private TemplateHashMapImpl<AllocationPolicy> {
300 public:
301 STATIC_ASSERT(sizeof(Key*) == sizeof(void*)); // NOLINT
302 STATIC_ASSERT(sizeof(Value*) == sizeof(void*)); // NOLINT
303 struct value_type {
304 Key* first;
305 Value* second;
306 };
307
308 class Iterator {
309 public:
310 Iterator& operator++() {
311 entry_ = map_->Next(entry_);
312 return *this;
313 }
314
315 value_type* operator->() { return reinterpret_cast<value_type*>(entry_); }
316 bool operator!=(const Iterator& other) { return entry_ != other.entry_; }
317
318 private:
319 Iterator(const TemplateHashMapImpl<AllocationPolicy>* map,
320 typename TemplateHashMapImpl<AllocationPolicy>::Entry* entry) :
321 map_(map), entry_(entry) { }
322
323 const TemplateHashMapImpl<AllocationPolicy>* map_;
324 typename TemplateHashMapImpl<AllocationPolicy>::Entry* entry_;
325
326 friend class TemplateHashMap;
327 };
328
329 TemplateHashMap(
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000330 typename TemplateHashMapImpl<AllocationPolicy>::MatchFun match,
331 AllocationPolicy allocator = AllocationPolicy())
332 : TemplateHashMapImpl<AllocationPolicy>(
333 match,
334 TemplateHashMapImpl<AllocationPolicy>::kDefaultHashMapCapacity,
335 allocator) { }
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100336
337 Iterator begin() const { return Iterator(this, this->Start()); }
338 Iterator end() const { return Iterator(this, NULL); }
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000339 Iterator find(Key* key, bool insert = false,
340 AllocationPolicy allocator = AllocationPolicy()) {
341 return Iterator(this, this->Lookup(key, key->Hash(), insert, allocator));
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100342 }
343};
Steve Blocka7e24c12009-10-30 11:49:00 +0000344
345} } // namespace v8::internal
346
347#endif // V8_HASHMAP_H_