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

Unified Diff: src/isolate.cc

Issue 2808030: [Isolates] Move InlineRuntimeFunctionTable from runtime.h to codegen.h.... (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') | src/runtime.h » ('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 4966)
+++ src/isolate.cc (working copy)
@@ -252,6 +252,7 @@
context_switcher_(NULL),
thread_manager_(NULL),
ast_sentinels_(NULL),
+ inline_runtime_functions_table_(NULL),
string_tracker_(NULL) {
memset(isolate_addresses_, 0,
sizeof(isolate_addresses_[0]) * (k_isolate_address_count + 1));
@@ -314,6 +315,9 @@
delete scanner_character_classes_;
scanner_character_classes_ = NULL;
+ delete inline_runtime_functions_table_;
+ inline_runtime_functions_table_ = NULL;
+
delete ast_sentinels_;
ast_sentinels_ = NULL;
delete descriptor_lookup_cache_;
@@ -410,6 +414,7 @@
handle_scope_implementer_ = new HandleScopeImplementer();
stub_cache_ = new StubCache();
ast_sentinels_ = new AstSentinels();
+ inline_runtime_functions_table_ = new InlineRuntimeFunctionsTable();
#ifdef ENABLE_DEBUGGER_SUPPORT
debugger_ = new Debugger();
« no previous file with comments | « src/isolate.h ('k') | src/runtime.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698