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

Unified Diff: src/compiler/code-assembler.cc

Issue 2580823002: [turbofan] Combine family of CallRuntime() methods into single imeplementation. (Closed)
Patch Set: Created 4 years 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/compiler/code-assembler.cc
diff --git a/src/compiler/code-assembler.cc b/src/compiler/code-assembler.cc
index 0dce4c51212833e6a3b6880f60061e644af1bda4..0e4cea5376e36aa2a43372aa352b680911524069 100644
--- a/src/compiler/code-assembler.cc
+++ b/src/compiler/code-assembler.cc
@@ -409,60 +409,27 @@ Node* CodeAssembler::TailCallN(CallDescriptor* descriptor, Node* code_target,
return raw_assembler()->TailCallN(descriptor, code_target, args);
}
-Node* CodeAssembler::CallRuntime(Runtime::FunctionId function_id,
- Node* context) {
+template <class... TArgs>
+Node* CodeAssembler::CallRuntime(Runtime::FunctionId function, Node* context,
+ TArgs... args) {
CallPrologue();
- Node* return_value = raw_assembler()->CallRuntime0(function_id, context);
+ Node* return_value = raw_assembler()->CallRuntime(function, context, args...);
CallEpilogue();
return return_value;
}
-Node* CodeAssembler::CallRuntime(Runtime::FunctionId function_id, Node* context,
- Node* arg1) {
- CallPrologue();
- Node* return_value =
- raw_assembler()->CallRuntime1(function_id, arg1, context);
- CallEpilogue();
- return return_value;
-}
-
-Node* CodeAssembler::CallRuntime(Runtime::FunctionId function_id, Node* context,
- Node* arg1, Node* arg2) {
- CallPrologue();
- Node* return_value =
- raw_assembler()->CallRuntime2(function_id, arg1, arg2, context);
- CallEpilogue();
- return return_value;
-}
-
-Node* CodeAssembler::CallRuntime(Runtime::FunctionId function_id, Node* context,
- Node* arg1, Node* arg2, Node* arg3) {
- CallPrologue();
- Node* return_value =
- raw_assembler()->CallRuntime3(function_id, arg1, arg2, arg3, context);
- CallEpilogue();
- return return_value;
-}
-
-Node* CodeAssembler::CallRuntime(Runtime::FunctionId function_id, Node* context,
- Node* arg1, Node* arg2, Node* arg3,
- Node* arg4) {
- CallPrologue();
- Node* return_value = raw_assembler()->CallRuntime4(function_id, arg1, arg2,
- arg3, arg4, context);
- CallEpilogue();
- return return_value;
-}
-
-Node* CodeAssembler::CallRuntime(Runtime::FunctionId function_id, Node* context,
- Node* arg1, Node* arg2, Node* arg3, Node* arg4,
- Node* arg5) {
- CallPrologue();
- Node* return_value = raw_assembler()->CallRuntime5(function_id, arg1, arg2,
- arg3, arg4, arg5, context);
- CallEpilogue();
- return return_value;
-}
+// Instantiate CallRuntime template with different number of arguments.
+template Node* CodeAssembler::CallRuntime(Runtime::FunctionId, Node* context);
+template Node* CodeAssembler::CallRuntime(Runtime::FunctionId, Node* context,
+ Node*);
+template Node* CodeAssembler::CallRuntime(Runtime::FunctionId, Node* context,
+ Node*, Node*);
+template Node* CodeAssembler::CallRuntime(Runtime::FunctionId, Node* context,
+ Node*, Node*, Node*);
+template Node* CodeAssembler::CallRuntime(Runtime::FunctionId, Node* context,
+ Node*, Node*, Node*, Node*);
+template Node* CodeAssembler::CallRuntime(Runtime::FunctionId, Node* context,
+ Node*, Node*, Node*, Node*, Node*);
Node* CodeAssembler::TailCallRuntime(Runtime::FunctionId function_id,
Node* context) {

Powered by Google App Engine
This is Rietveld 408576698