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

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: Rebased and new issues fixed 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 f47c3c1284d3ae7cfaa6fa96795e2a165840afe3..0918f8268dfc463965ca023d0739e1d32020e49b 100644
--- a/src/compiler/pipeline.h
+++ b/src/compiler/pipeline.h
@@ -10,6 +10,7 @@
#include "src/v8.h"
#include "src/compiler.h"
+#include "src/compiler/verifier.h"
Michael Starzinger 2014/10/14 18:28:27 Nope! Please don't inlclude any other header in th
rossberg 2014/10/15 06:47:58 Sigh. Proliferation like this is just one ugly con
rossberg 2014/10/15 08:59:08 Done.
// Note: TODO(turbofan) implies a performance improvement opportunity,
// and TODO(name) implies an incomplete implementation
@@ -58,7 +59,8 @@ class Pipeline {
const SourcePositionTable* positions,
const InstructionSequence* instructions);
void PrintAllocator(const char* phase, const RegisterAllocator* allocator);
- 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);
};

Powered by Google App Engine
This is Rietveld 408576698