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

Unified Diff: src/compiler/pipeline.h

Issue 509343002: Better typing and type verification (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Drop typedness from graph Created 6 years, 3 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 fce0952c4170b9b213fe1154c0416fee1295a990..0f90d05f2a8db4edaefd10a51338ecd953b7dbdc 100644
--- a/src/compiler/pipeline.h
+++ b/src/compiler/pipeline.h
@@ -8,6 +8,7 @@
#include "src/v8.h"
#include "src/compiler.h"
+#include "src/compiler/verifier.h"
// Note: TODO(turbofan) implies a performance improvement opportunity,
// and TODO(name) implies an incomplete implementation
@@ -54,7 +55,8 @@ class Pipeline {
Zone* zone() { return info_->zone(); }
Schedule* ComputeSchedule(Graph* graph);
- void VerifyAndPrintGraph(Graph* graph, const char* phase);
+ void VerifyAndPrintGraph(Graph* graph, const char* phase,
+ Verifier::Typing = Verifier::TYPED);
Handle<Code> GenerateCode(Linkage* linkage, Graph* graph, Schedule* schedule,
SourcePositionTable* source_positions);
};
« src/compiler/js-graph.cc ('K') | « src/compiler/opcodes.h ('k') | src/compiler/pipeline.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698