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

Unified Diff: runtime/vm/flow_graph_compiler.h

Issue 2799373002: Pass a second type argument vector to all type instantiation calls in the VM. (Closed)
Patch Set: addressed comments 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
« no previous file with comments | « runtime/vm/flow_graph_builder.cc ('k') | runtime/vm/flow_graph_compiler_arm.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 7262d0e9c03589ab3ea89fe9f7cd40f2a74a2dc7..654ce85ad09bbee141337ee640ad04322608c930 100644
--- a/runtime/vm/flow_graph_compiler.h
+++ b/runtime/vm/flow_graph_compiler.h
@@ -710,15 +710,17 @@ class FlowGraphCompiler : public ValueObject {
enum TypeTestStubKind {
kTestTypeOneArg,
kTestTypeTwoArgs,
- kTestTypeThreeArgs,
+ kTestTypeFourArgs,
};
- RawSubtypeTestCache* GenerateCallSubtypeTestStub(TypeTestStubKind test_kind,
- Register instance_reg,
- Register type_arguments_reg,
- Register temp_reg,
- Label* is_instance_lbl,
- Label* is_not_instance_lbl);
+ RawSubtypeTestCache* GenerateCallSubtypeTestStub(
+ TypeTestStubKind test_kind,
+ Register instance_reg,
+ Register instantiator_type_arguments_reg,
+ Register function_type_arguments_reg,
+ Register temp_reg,
+ Label* is_instance_lbl,
+ Label* is_not_instance_lbl);
void GenerateBoolToJump(Register bool_reg, Label* is_true, Label* is_false);
« no previous file with comments | « runtime/vm/flow_graph_builder.cc ('k') | runtime/vm/flow_graph_compiler_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698