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

Unified Diff: runtime/vm/flow_graph_compiler.h

Issue 2859673002: Pass type argument vector to generic functions (if --reify-generic-functions is (Closed)
Patch Set: address review comments and sync Created 3 years, 7 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 | « runtime/vm/flow_graph_builder.cc ('k') | runtime/vm/flow_graph_compiler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_compiler.h
diff --git a/runtime/vm/flow_graph_compiler.h b/runtime/vm/flow_graph_compiler.h
index 90abda5405448f99987e3e1b31fbe5d59efc6420..29157ef2c90a5652676fbad6f86854ff66582220 100644
--- a/runtime/vm/flow_graph_compiler.h
+++ b/runtime/vm/flow_graph_compiler.h
@@ -390,8 +390,7 @@ class FlowGraphCompiler : public ValueObject {
void GenerateStaticCall(intptr_t deopt_id,
TokenPosition token_pos,
const Function& function,
- intptr_t argument_count,
- const Array& argument_names,
+ ArgumentsInfo args_info,
LocationSummary* locs,
const ICData& ic_data);
@@ -421,8 +420,7 @@ class FlowGraphCompiler : public ValueObject {
void EmitPolymorphicInstanceCall(
const CallTargets& targets,
const InstanceCallInstr& original_instruction,
- intptr_t argument_count,
- const Array& argument_names,
+ ArgumentsInfo args_info,
intptr_t deopt_id,
TokenPosition token_pos,
LocationSummary* locs,
@@ -447,8 +445,7 @@ class FlowGraphCompiler : public ValueObject {
void EmitTestAndCall(const CallTargets& targets,
const String& function_name,
- intptr_t arg_count,
- const Array& arg_names,
+ ArgumentsInfo args_info,
Label* failed,
Label* match_found,
intptr_t deopt_id,
« no previous file with comments | « runtime/vm/flow_graph_builder.cc ('k') | runtime/vm/flow_graph_compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698