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

Unified Diff: src/compiler/typer.h

Issue 1192553002: [turbofan] Fix life time and use of the Typer. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 6 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/typer.h
diff --git a/src/compiler/typer.h b/src/compiler/typer.h
index 4c04ddb973b3404b85a2522fc9c75003041d0b10..68d1a4dd29203343dd8869d2b5e6c7e692c664e4 100644
--- a/src/compiler/typer.h
+++ b/src/compiler/typer.h
@@ -21,7 +21,9 @@ class Typer {
Typer(Isolate* isolate, Graph* graph, MaybeHandle<Context> context);
~Typer();
+ // TODO(bmeurer,jarin): Remove this once we have a notion of "roots" on Graph.
Michael Starzinger 2015/06/17 11:32:23 nit: Either move the TODO one line lower or drop i
Benedikt Meurer 2015/06/17 11:38:13 Done.
void Run();
+ void Run(const ZoneVector<Node*>& roots);
Graph* graph() { return graph_; }
MaybeHandle<Context> context() { return context_; }
« src/compiler/pipeline.cc ('K') | « src/compiler/pipeline.cc ('k') | src/compiler/typer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698