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

Unified Diff: src/compiler/control-reducer.h

Issue 663333003: [turbofan] use ZonePool in most places in the compiler pipeline a temp zone is used. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: rebase 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 | « src/compiler/ast-graph-builder.cc ('k') | src/compiler/control-reducer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/control-reducer.h
diff --git a/src/compiler/control-reducer.h b/src/compiler/control-reducer.h
index d69d966404979a0cfc62457850dfc890cfd178d2..e9ae9bc9db9f0e851bfbb3ac2eaabd1298d37f5a 100644
--- a/src/compiler/control-reducer.h
+++ b/src/compiler/control-reducer.h
@@ -15,10 +15,11 @@ class CommonOperatorBuilder;
class ControlReducer {
public:
// Perform branch folding and dead code elimination on the graph.
- static void ReduceGraph(JSGraph* graph, CommonOperatorBuilder* builder);
+ static void ReduceGraph(Zone* zone, JSGraph* graph,
+ CommonOperatorBuilder* builder);
// Trim nodes in the graph that are not reachable from end.
- static void TrimGraph(JSGraph* graph);
+ static void TrimGraph(Zone* zone, JSGraph* graph);
};
}
}
« no previous file with comments | « src/compiler/ast-graph-builder.cc ('k') | src/compiler/control-reducer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698