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

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

Issue 2662263002: [turbo] Rename CallConstruct* operators to Construct*. (Closed)
Patch Set: 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
« no previous file with comments | « src/interpreter/interpreter.cc ('k') | src/interpreter/interpreter-assembler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/interpreter/interpreter-assembler.h
diff --git a/src/interpreter/interpreter-assembler.h b/src/interpreter/interpreter-assembler.h
index 937f3481d02410bb4022a2378f04c086df7abdf5..0020477cd7eeab1ed0fafb780b0870ef90801024 100644
--- a/src/interpreter/interpreter-assembler.h
+++ b/src/interpreter/interpreter-assembler.h
@@ -145,23 +145,21 @@ class V8_EXPORT_PRIVATE InterpreterAssembler : public CodeStubAssembler {
// |first_arg|. The |new_target| is the same as the
// |constructor| for the new keyword, but differs for the super
// keyword.
- compiler::Node* CallConstruct(compiler::Node* constructor,
- compiler::Node* context,
- compiler::Node* new_target,
- compiler::Node* first_arg,
- compiler::Node* arg_count,
- compiler::Node* slot_id,
- compiler::Node* type_feedback_vector);
+ compiler::Node* Construct(compiler::Node* constructor,
+ compiler::Node* context, compiler::Node* new_target,
+ compiler::Node* first_arg,
+ compiler::Node* arg_count, compiler::Node* slot_id,
+ compiler::Node* type_feedback_vector);
// Call constructor |constructor| with |arg_count| arguments (not including
// receiver) and the first argument located at |first_arg|. The last argument
// is always a spread. The |new_target| is the same as the |constructor| for
// the new keyword, but differs for the super keyword.
- compiler::Node* CallConstructWithSpread(compiler::Node* constructor,
- compiler::Node* context,
- compiler::Node* new_target,
- compiler::Node* first_arg,
- compiler::Node* arg_count);
+ compiler::Node* ConstructWithSpread(compiler::Node* constructor,
+ 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|.
« no previous file with comments | « src/interpreter/interpreter.cc ('k') | src/interpreter/interpreter-assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698