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

Unified Diff: src/isolate.cc

Issue 1269343002: Retire StringTracker. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 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-api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/isolate.cc
diff --git a/src/isolate.cc b/src/isolate.cc
index ccbeadc79c920f01c170bba2503f5756d8497ad6..f5d6bc955884acc3e7c3c83501f79b9a4c6a37d3 100644
--- a/src/isolate.cc
+++ b/src/isolate.cc
@@ -1760,7 +1760,6 @@ Isolate::Isolate(bool enable_serializer)
eternal_handles_(NULL),
thread_manager_(NULL),
has_installed_extensions_(false),
- string_tracker_(NULL),
regexp_stack_(NULL),
date_cache_(NULL),
call_descriptor_data_(NULL),
@@ -1995,9 +1994,6 @@ Isolate::~Isolate() {
delete thread_manager_;
thread_manager_ = NULL;
- delete string_tracker_;
- string_tracker_ = NULL;
-
delete memory_allocator_;
memory_allocator_ = NULL;
delete code_range_;
@@ -2104,8 +2100,6 @@ bool Isolate::Init(Deserializer* des) {
FOR_EACH_ISOLATE_ADDRESS_NAME(ASSIGN_ELEMENT)
#undef ASSIGN_ELEMENT
- string_tracker_ = new StringTracker();
- string_tracker_->isolate_ = this;
compilation_cache_ = new CompilationCache(this);
keyed_lookup_cache_ = new KeyedLookupCache();
context_slot_cache_ = new ContextSlotCache();
« no previous file with comments | « src/isolate.h ('k') | test/cctest/test-api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698