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

Unified Diff: src/compiler/pipeline.h

Issue 665893006: [turbofan] add ZonePool to correctly track compiler phase memory usage (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
« no previous file with comments | « BUILD.gn ('k') | src/compiler/pipeline.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/pipeline.h
diff --git a/src/compiler/pipeline.h b/src/compiler/pipeline.h
index c13a324eac3896316798387ea08a2b97210dbd66..14688d91e754ef5be8e7e5a99940c51261a797e7 100644
--- a/src/compiler/pipeline.h
+++ b/src/compiler/pipeline.h
@@ -25,6 +25,7 @@ class Linkage;
class RegisterAllocator;
class Schedule;
class SourcePositionTable;
+class ZonePool;
class Pipeline {
public:
@@ -51,7 +52,7 @@ class Pipeline {
Isolate* isolate() { return info_->isolate(); }
Zone* zone() { return info_->zone(); }
- Schedule* ComputeSchedule(Graph* graph);
+ Schedule* ComputeSchedule(ZonePool* zone_pool, Graph* graph);
void OpenTurboCfgFile(std::ofstream* stream);
void PrintCompilationStart();
void PrintScheduleAndInstructions(const char* phase, const Schedule* schedule,
« no previous file with comments | « BUILD.gn ('k') | src/compiler/pipeline.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698