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

Unified Diff: src/interpreter/interpreter-assembler.h

Issue 2571563004: [Turbofan] Implement super calls with spread bytecode in assembly code. (Closed)
Patch Set: Change arm64 loop to be similar to the rest Created 3 years, 11 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/interpreter-assembler.h
diff --git a/src/interpreter/interpreter-assembler.h b/src/interpreter/interpreter-assembler.h
index 5183f3efedfb4673bbfddec625873cb5f2bd7f33..b2d37823ecfc3ab406bf63ca9caedf94b5f8bd55 100644
--- a/src/interpreter/interpreter-assembler.h
+++ b/src/interpreter/interpreter-assembler.h
@@ -142,6 +142,12 @@ class V8_EXPORT_PRIVATE InterpreterAssembler : public CodeStubAssembler {
compiler::Node* slot_id,
compiler::Node* type_feedback_vector);
+ compiler::Node* CallConstructWithSpread(compiler::Node* constructor,
rmcilroy 2017/01/11 15:24:45 Please add a comment.
petermarshall 2017/01/11 16:50:03 Done
+ compiler::Node* context,
+ compiler::Node* new_target,
+ compiler::Node* first_arg,
+ compiler::Node* arg_count);
+
// Call runtime function with |arg_count| arguments and the first argument
// located at |first_arg|.
compiler::Node* CallRuntimeN(compiler::Node* function_id,

Powered by Google App Engine
This is Rietveld 408576698