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

Unified Diff: src/compiler/pipeline.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/compiler/pipeline.h
diff --git a/src/compiler/pipeline.h b/src/compiler/pipeline.h
index 87c22a6aeba25fbc5e481a7e218efb9f4f2d6ad8..5bd0e615b86176f0d9c7bd506cd996f62561b336 100644
--- a/src/compiler/pipeline.h
+++ b/src/compiler/pipeline.h
@@ -22,6 +22,7 @@ namespace compiler {
class Graph;
class InstructionSequence;
class Linkage;
+class PipelineStatistics;
class RegisterAllocator;
class Schedule;
class SourcePositionTable;
@@ -61,7 +62,8 @@ class Pipeline {
void PrintAllocator(const char* phase, const RegisterAllocator* allocator);
void VerifyAndPrintGraph(Graph* graph, const char* phase,
bool untyped = false);
- Handle<Code> GenerateCode(ZonePool* zone_pool, Linkage* linkage, Graph* graph,
+ Handle<Code> GenerateCode(PipelineStatistics* pipeline_statistics,
+ ZonePool* zone_pool, Linkage* linkage, Graph* graph,
Schedule* schedule,
SourcePositionTable* source_positions);
};

Powered by Google App Engine
This is Rietveld 408576698