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

Unified Diff: src/isolate.h

Issue 669053002: [turbofan] split compilation stats off from HStatistics and track high water marks (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 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
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();
« src/compiler/pipeline-statistics.cc ('K') | « src/hydrogen.cc ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698