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

Unified Diff: src/crankshaft/hydrogen.h

Issue 2126233002: Devirtualize AstNode and subclasses, except for visiting-related methods. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: And call again Created 4 years, 5 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/crankshaft/hydrogen.h
diff --git a/src/crankshaft/hydrogen.h b/src/crankshaft/hydrogen.h
index 1a83ba0c901ad71494068bab4508b36d5c1d675e..e2ceb3e6a17c4b47c659d04a59f891697a6faf3d 100644
--- a/src/crankshaft/hydrogen.h
+++ b/src/crankshaft/hydrogen.h
@@ -2271,7 +2271,7 @@ class HOptimizedGraphBuilder : public HGraphBuilder, public AstVisitor {
void VisitLogicalExpression(BinaryOperation* expr);
void VisitArithmeticExpression(BinaryOperation* expr);
- void VisitLoopBody(IterationStatement* stmt,
+ void VisitLoopBody(IterationStatement* stmt, BailoutId stack_check_id,
HBasicBlock* loop_entry);
void BuildForInBody(ForInStatement* stmt, Variable* each_var,
@@ -2297,7 +2297,7 @@ class HOptimizedGraphBuilder : public HGraphBuilder, public AstVisitor {
HBasicBlock* BuildLoopEntry(IterationStatement* statement);
HBasicBlock* JoinContinue(IterationStatement* statement,
- HBasicBlock* exit_block,
+ BailoutId continue_id, HBasicBlock* exit_block,
HBasicBlock* continue_block);
HValue* Top() const { return environment()->Top(); }

Powered by Google App Engine
This is Rietveld 408576698