OLD | NEW |
---|---|
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #ifndef VM_HASH_MAP_H_ | 5 #ifndef VM_HASH_MAP_H_ |
6 #define VM_HASH_MAP_H_ | 6 #define VM_HASH_MAP_H_ |
7 | 7 |
8 namespace dart { | 8 namespace dart { |
9 | 9 |
10 template <typename KeyValueTrait> | 10 template <typename KeyValueTrait> |
11 class DirectChainedHashMap: public ValueObject { | 11 class DirectChainedHashMap: public ValueObject { |
12 public: | 12 public: |
13 DirectChainedHashMap() : array_size_(0), | 13 DirectChainedHashMap() : array_size_(0), |
14 lists_size_(0), | 14 lists_size_(0), |
15 count_(0), | 15 count_(0), |
16 array_(NULL), | 16 array_(NULL), |
17 lists_(NULL), | 17 lists_(NULL), |
18 free_list_head_(kNil) { | 18 free_list_head_(kNil) { |
19 ResizeLists(kInitialSize); | 19 ResizeLists(kInitialSize); |
20 Resize(kInitialSize); | 20 Resize(kInitialSize); |
21 } | 21 } |
22 | 22 |
23 DirectChainedHashMap(const DirectChainedHashMap& other); | 23 DirectChainedHashMap(const DirectChainedHashMap& other); |
24 | 24 |
25 void Insert(typename KeyValueTrait::Pair kv); | 25 void Insert(typename KeyValueTrait::Pair kv); |
26 | 26 |
27 typename KeyValueTrait::Value Lookup(typename KeyValueTrait::Key key) const; | 27 typename KeyValueTrait::Value Lookup(typename KeyValueTrait::Key key) const; |
28 | 28 |
29 intptr_t size() const { return count_; } | |
Florian Schneider
2014/07/16 15:02:03
this seems unused?
Vyacheslav Egorov (Google)
2014/07/17 17:03:48
Done.
| |
30 | |
29 bool IsEmpty() const { return count_ == 0; } | 31 bool IsEmpty() const { return count_ == 0; } |
30 | 32 |
31 void Clear() { | 33 void Clear() { |
32 if (!IsEmpty()) { | 34 if (!IsEmpty()) { |
33 count_ = 0; | 35 count_ = 0; |
34 memset(array_, 0, sizeof(HashMapListElement) * array_size_); | 36 memset(array_, 0, sizeof(HashMapListElement) * array_size_); |
35 memset(lists_, 0, sizeof(HashMapListElement) * lists_size_); | 37 memset(lists_, 0, sizeof(HashMapListElement) * lists_size_); |
36 lists_[0].next = kNil; | 38 lists_[0].next = kNil; |
37 for (intptr_t i = 1; i < lists_size_; ++i) { | 39 for (intptr_t i = 1; i < lists_size_; ++i) { |
38 lists_[i].next = i - 1; | 40 lists_[i].next = i - 1; |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
234 } | 236 } |
235 | 237 |
236 static inline bool IsKeyEqual(Pair kv, Key key) { | 238 static inline bool IsKeyEqual(Pair kv, Key key) { |
237 return kv->Equals(key); | 239 return kv->Equals(key); |
238 } | 240 } |
239 }; | 241 }; |
240 | 242 |
241 } // namespace dart | 243 } // namespace dart |
242 | 244 |
243 #endif // VM_HASH_MAP_H_ | 245 #endif // VM_HASH_MAP_H_ |
OLD | NEW |