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

Unified Diff: src/isolate.cc

Issue 2817018: [Isolates] StatsTable moved to Isolate.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/isolates/
Patch Set: '' Created 10 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
« no previous file with comments | « src/isolate.h ('k') | test/cctest/test-serialize.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/isolate.cc
===================================================================
--- src/isolate.cc (revision 4909)
+++ src/isolate.cc (working copy)
@@ -230,6 +230,7 @@
cpu_features_(NULL),
code_range_(new CodeRange()),
break_access_(OS::CreateMutex()),
+ stats_table_(new StatsTable()),
stub_cache_(NULL),
transcendental_cache_(new TranscendentalCache()),
memory_allocator_(new MemoryAllocator()),
@@ -312,6 +313,9 @@
transcendental_cache_ = NULL;
delete stub_cache_;
stub_cache_ = NULL;
+ delete stats_table_;
+ stats_table_ = NULL;
+
delete cpu_features_;
cpu_features_ = NULL;
delete compilation_cache_;
« no previous file with comments | « src/isolate.h ('k') | test/cctest/test-serialize.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698