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

Unified Diff: runtime/vm/kernel_to_il.h

Issue 3001883002: [vm] Read interface_target_reference from kernel binaries (Closed)
Patch Set: Created 3 years, 4 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/kernel_to_il.h
diff --git a/runtime/vm/kernel_to_il.h b/runtime/vm/kernel_to_il.h
index 8ae0ef24417ef338be5842ffd7da59c34358fa4c..02da79508ded6ea99e2b4eae3cc9c438df6eeeca 100644
--- a/runtime/vm/kernel_to_il.h
+++ b/runtime/vm/kernel_to_il.h
@@ -526,18 +526,14 @@ class FlowGraphBuilder {
Fragment CreateArray();
Fragment Goto(JoinEntryInstr* destination);
Fragment IntConstant(int64_t value);
- Fragment InstanceCall(TokenPosition position,
- const dart::String& name,
- Token::Kind kind,
- intptr_t argument_count,
- intptr_t checked_argument_count = 1);
Fragment InstanceCall(TokenPosition position,
const dart::String& name,
Token::Kind kind,
intptr_t type_args_len,
intptr_t argument_count,
const Array& argument_names,
- intptr_t checked_argument_count = 1);
+ intptr_t checked_argument_count,
+ const Function& interface_target);
Fragment ClosureCall(intptr_t type_args_len,
intptr_t argument_count,
const Array& argument_names);

Powered by Google App Engine
This is Rietveld 408576698