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

Unified Diff: src/interpreter/bytecode-array-builder.h

Issue 1412953007: [Interpreter] Fill out function prologue support. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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/interpreter/bytecode-array-builder.h
diff --git a/src/interpreter/bytecode-array-builder.h b/src/interpreter/bytecode-array-builder.h
index 27262e224d0ba606cf9fc26881470ab9fde2f824..c339418e195e62d2cb874d8f20129c1b35290b72 100644
--- a/src/interpreter/bytecode-array-builder.h
+++ b/src/interpreter/bytecode-array-builder.h
@@ -97,6 +97,10 @@ class BytecodeArrayBuilder {
// Create a new closure for the SharedFunctionInfo in the accumulator.
BytecodeArrayBuilder& CreateClosure(PretenureFlag tenured);
+ // Create a new arguments object in the accumulator, calling the |function_id|
Michael Starzinger 2015/10/21 18:42:17 nit: Comment referring to "function_id" looks outd
rmcilroy 2015/10/22 15:19:52 Done.
+ // to do so.
+ BytecodeArrayBuilder& CreateArguments(bool use_strict);
+
// Literals creation. Constant elements should be in the accumulator.
BytecodeArrayBuilder& CreateRegExpLiteral(int literal_index, Register flags);
BytecodeArrayBuilder& CreateArrayLiteral(int literal_index, int flags);

Powered by Google App Engine
This is Rietveld 408576698