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

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

Issue 2663963003: [Ignition] Rename New and NewWithSpread bytecodes. (Closed)
Patch Set: Update comments 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 | « 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 1f613278dbd19c000bc82f7332d14babc2f34c97..20d113d3273a25792a2a671765f348ff62010122 100644
--- a/src/compiler/bytecode-graph-builder.h
+++ b/src/compiler/bytecode-graph-builder.h
@@ -111,13 +111,14 @@ class BytecodeGraphBuilder {
Node* ProcessCallArguments(const Operator* call_op, Node* callee,
interpreter::Register receiver, size_t arity);
- Node* ProcessCallNewArguments(const Operator* call_new_op, Node* callee,
- Node* new_target,
- interpreter::Register first_arg, size_t arity);
- Node* ProcessCallNewWithSpreadArguments(const Operator* op, Node* callee,
- Node* new_target,
- interpreter::Register first_arg,
- size_t arity);
+ Node* ProcessConstructArguments(const Operator* call_new_op, Node* callee,
+ Node* new_target,
+ interpreter::Register first_arg,
+ size_t arity);
+ Node* ProcessConstructWithSpreadArguments(const Operator* op, Node* callee,
+ Node* new_target,
+ interpreter::Register first_arg,
+ size_t arity);
Node* ProcessCallRuntimeArguments(const Operator* call_runtime_op,
interpreter::Register first_arg,
size_t arity);
« 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