Index: src/isolate.cc |
diff --git a/src/isolate.cc b/src/isolate.cc |
index b563433aa3f86c06c52fd673a19917990107cf05..69c84e82e52bd13e5d4c2dcc6c3a984b17da7e4b 100644 |
--- a/src/isolate.cc |
+++ b/src/isolate.cc |
@@ -2290,7 +2290,6 @@ Isolate::Isolate(bool enable_serializer) |
runtime_profiler_(NULL), |
compilation_cache_(NULL), |
logger_(NULL), |
- stats_table_(NULL), |
load_stub_cache_(NULL), |
store_stub_cache_(NULL), |
code_aging_helper_(NULL), |
@@ -2544,7 +2543,6 @@ Isolate::~Isolate() { |
store_stub_cache_ = NULL; |
delete code_aging_helper_; |
code_aging_helper_ = NULL; |
- stats_table_ = NULL; |
delete materialized_object_store_; |
materialized_object_store_ = NULL; |
@@ -2852,16 +2850,6 @@ bool Isolate::Init(Deserializer* des) { |
} |
-// Initialized lazily to allow early |
-// v8::V8::SetAddHistogramSampleFunction calls. |
-StatsTable* Isolate::stats_table() { |
- if (stats_table_ != nullptr) return stats_table_; |
- InitializeCounters(); |
- stats_table_ = counters_shared_->stats_table(); |
- return stats_table_; |
-} |
- |
- |
void Isolate::Enter() { |
Isolate* current_isolate = NULL; |
PerIsolateThreadData* current_data = CurrentPerIsolateThreadData(); |