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

Unified Diff: runtime/vm/flow_graph_compiler.cc

Issue 1994993002: VM background optimization: Fix another use of the original IC data. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_compiler.cc
diff --git a/runtime/vm/flow_graph_compiler.cc b/runtime/vm/flow_graph_compiler.cc
index 93225db913ab93d2e03d6f8a43c062ae478c2da3..2a3f9f3450bb298fa52032183d24f25fa2d5ed91 100644
--- a/runtime/vm/flow_graph_compiler.cc
+++ b/runtime/vm/flow_graph_compiler.cc
@@ -1188,7 +1188,7 @@ void FlowGraphCompiler::GenerateInstanceCall(
return;
}
if (FLAG_always_megamorphic_calls) {
- EmitMegamorphicInstanceCall(ic_data, argument_count,
+ EmitMegamorphicInstanceCall(ic_data_in, argument_count,
deopt_id, token_pos, locs,
CatchClauseNode::kInvalidTryIndex);
return;
@@ -1216,7 +1216,7 @@ void FlowGraphCompiler::GenerateInstanceCall(
}
if (is_optimizing()) {
- EmitMegamorphicInstanceCall(ic_data, argument_count,
+ EmitMegamorphicInstanceCall(ic_data_in, argument_count,
deopt_id, token_pos, locs,
CatchClauseNode::kInvalidTryIndex);
return;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698