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

Unified Diff: src/compiler/bytecode-graph-builder.h

Issue 2392333002: [ignition/turbo] Remove stack check from inlined functions (Closed)
Patch Set: Change 'while' to 'for' Created 4 years, 1 month 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 | « no previous file | src/compiler/bytecode-graph-builder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/bytecode-graph-builder.h
diff --git a/src/compiler/bytecode-graph-builder.h b/src/compiler/bytecode-graph-builder.h
index 65e5042d9d7573d93c3f8b7de3a2b743d5f8193b..d2feb93a201defcdfbf7b6c67e15d374ad6f25f4 100644
--- a/src/compiler/bytecode-graph-builder.h
+++ b/src/compiler/bytecode-graph-builder.h
@@ -33,12 +33,12 @@ class BytecodeGraphBuilder {
SourcePositionTable* source_positions);
// Creates a graph by visiting bytecodes.
- bool CreateGraph();
+ bool CreateGraph(bool stack_check = true);
private:
class Environment;
- void VisitBytecodes();
+ void VisitBytecodes(bool stack_check);
// Get or create the node that represents the outer function closure.
Node* GetFunctionClosure();
« no previous file with comments | « no previous file | src/compiler/bytecode-graph-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698