Index: src/isolate.h |
diff --git a/src/isolate.h b/src/isolate.h |
index 55d139c57a02ae8b7ce9bc48de8790ed345d52d6..181f154fdfca0c057037fbb97e691800e391ddf8 100644 |
--- a/src/isolate.h |
+++ b/src/isolate.h |
@@ -40,6 +40,7 @@ class CodeRange; |
class CodeStubDescriptor; |
class CodeTracer; |
class CompilationCache; |
+class CompilationStatistics; |
class ContextSlotCache; |
class Counters; |
class CpuFeatures; |
@@ -383,7 +384,7 @@ typedef List<HeapObject*> DebugObjectCache; |
V(int, pending_microtask_count, 0) \ |
V(bool, autorun_microtasks, true) \ |
V(HStatistics*, hstatistics, NULL) \ |
- V(HStatistics*, tstatistics, NULL) \ |
+ V(CompilationStatistics*, tstatistics, NULL) \ |
Jarin
2014/10/23 09:03:01
Could you rename to turbo_statistics?
|
V(HTracer*, htracer, NULL) \ |
V(CodeTracer*, code_tracer, NULL) \ |
V(bool, fp_stubs_generated, false) \ |
@@ -1052,7 +1053,7 @@ class Isolate { |
int id() const { return static_cast<int>(id_); } |
HStatistics* GetHStatistics(); |
- HStatistics* GetTStatistics(); |
+ CompilationStatistics* GetTStatistics(); |
Jarin
2014/10/23 09:03:01
GetTurboStatistics?
|
HTracer* GetHTracer(); |
CodeTracer* GetCodeTracer(); |