Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Side by Side Diff: src/zone.h

Issue 2345233003: [base] Move hashmap allocator to a field (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« src/base/hashmap.h ('K') | « src/crankshaft/hydrogen-bce.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_ZONE_H_ 5 #ifndef V8_ZONE_H_
6 #define V8_ZONE_H_ 6 #define V8_ZONE_H_
7 7
8 #include <limits> 8 #include <limits>
9 9
10 #include "src/base/accounting-allocator.h" 10 #include "src/base/accounting-allocator.h"
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 151
152 Zone* zone() const { return zone_; } 152 Zone* zone() const { return zone_; }
153 153
154 private: 154 private:
155 Zone* zone_; 155 Zone* zone_;
156 }; 156 };
157 157
158 158
159 // The ZoneAllocationPolicy is used to specialize generic data 159 // The ZoneAllocationPolicy is used to specialize generic data
160 // structures to allocate themselves and their elements in the Zone. 160 // structures to allocate themselves and their elements in the Zone.
161 class ZoneAllocationPolicy final { 161 class ZoneAllocationPolicy {
162 public: 162 public:
163 explicit ZoneAllocationPolicy(Zone* zone) : zone_(zone) { } 163 explicit ZoneAllocationPolicy(Zone* zone) : zone_(zone) { }
164 void* New(size_t size) { return zone()->New(size); } 164 void* New(size_t size) { return zone()->New(size); }
165 static void Delete(void* pointer) {} 165 static void Delete(void* pointer) {}
166 Zone* zone() const { return zone_; } 166 Zone* zone() const { return zone_; }
167 167
168 private: 168 private:
169 Zone* zone_; 169 Zone* zone_;
170 }; 170 };
171 171
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 void operator delete(void* pointer, Zone* zone) { UNREACHABLE(); } 244 void operator delete(void* pointer, Zone* zone) { UNREACHABLE(); }
245 }; 245 };
246 246
247 typedef base::TemplateHashMapImpl<void*, void*, ZoneAllocationPolicy> 247 typedef base::TemplateHashMapImpl<void*, void*, ZoneAllocationPolicy>
248 ZoneHashMap; 248 ZoneHashMap;
249 249
250 } // namespace internal 250 } // namespace internal
251 } // namespace v8 251 } // namespace v8
252 252
253 #endif // V8_ZONE_H_ 253 #endif // V8_ZONE_H_
OLDNEW
« src/base/hashmap.h ('K') | « src/crankshaft/hydrogen-bce.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698