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

Unified Diff: src/api.cc

Issue 16631002: Separate Cell and PropertyCell spaces (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Merge with ToT Created 7 years, 6 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
Index: src/api.cc
diff --git a/src/api.cc b/src/api.cc
index 18acc0d885b0d2a680c26d87893a0ef8524bd77e..9a4bf51afb71dca9d1cbad52cec88b691584f262 100644
--- a/src/api.cc
+++ b/src/api.cc
@@ -183,6 +183,12 @@ void i::V8::FatalProcessOutOfMemory(const char* location, bool take_snapshot) {
heap_stats.cell_space_size = &cell_space_size;
intptr_t cell_space_capacity;
heap_stats.cell_space_capacity = &cell_space_capacity;
+ intptr_t js_global_property_cell_space_size;
+ heap_stats.js_global_property_cell_space_size =
+ &js_global_property_cell_space_size;
+ intptr_t js_global_property_cell_space_capacity;
+ heap_stats.js_global_property_cell_space_capacity =
+ &js_global_property_cell_space_capacity;
intptr_t lo_space_size;
heap_stats.lo_space_size = &lo_space_size;
int global_handle_count;
« no previous file with comments | « include/v8.h ('k') | src/arm/assembler-arm-inl.h » ('j') | src/arm/code-stubs-arm.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698