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

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: Created 3 years, 8 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: runtime/vm/flow_graph_compiler.h
diff --git a/runtime/vm/flow_graph_compiler.h b/runtime/vm/flow_graph_compiler.h
index 7aaafe43a99d98bfb465b0d341b96a1da905e95d..2870440e76498e677b89e75b9b4eab80f5781a9b 100644
--- a/runtime/vm/flow_graph_compiler.h
+++ b/runtime/vm/flow_graph_compiler.h
@@ -390,6 +390,7 @@ class FlowGraphCompiler : public ValueObject {
void GenerateStaticCall(intptr_t deopt_id,
TokenPosition token_pos,
const Function& function,
+ intptr_t type_args_len,
intptr_t argument_count,
const Array& argument_names,
LocationSummary* locs,
@@ -421,6 +422,7 @@ class FlowGraphCompiler : public ValueObject {
void EmitPolymorphicInstanceCall(
const CallTargets& targets,
const InstanceCallInstr& original_instruction,
+ intptr_t type_args_len,
intptr_t argument_count,
const Array& argument_names,
intptr_t deopt_id,
@@ -447,6 +449,7 @@ class FlowGraphCompiler : public ValueObject {
void EmitTestAndCall(const CallTargets& targets,
const String& function_name,
+ intptr_t type_args_len,
intptr_t arg_count,
const Array& arg_names,
Label* failed,

Powered by Google App Engine
This is Rietveld 408576698