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

Unified Diff: src/zone-inl.h

Issue 7059012: Use placement new for ZoneLists in the parser. (Closed)
Patch Set: Created 9 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/zone.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/zone-inl.h
diff --git a/src/zone-inl.h b/src/zone-inl.h
index 17e83dc5ff496c9f79d9a82bb5fca9d36a7d7f22..b9f9dbec9a673ce0c31d621f34a51092a926fa50 100644
--- a/src/zone-inl.h
+++ b/src/zone-inl.h
@@ -102,11 +102,23 @@ void* ZoneObject::operator new(size_t size, Zone* zone) {
}
-inline void* ZoneListAllocationPolicy::New(int size) {
+void* ZoneListAllocationPolicy::New(int size) {
return ZONE->New(size);
}
+template <typename T>
+void* ZoneList<T>::operator new(size_t size) {
+ return ZONE->New(static_cast<int>(size));
+}
+
+
+template <typename T>
+void* ZoneList<T>::operator new(size_t size, Zone* zone) {
+ return zone->New(static_cast<int>(size));
+}
+
+
ZoneScope::ZoneScope(ZoneScopeMode mode)
: isolate_(Isolate::Current()),
mode_(mode) {
« no previous file with comments | « src/zone.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698