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

Unified Diff: runtime/vm/flow_graph_compiler_mips.cc

Issue 339183010: Specialize breakpoint stubs by set of live registers of the stubs they are intercepting. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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_mips.cc
diff --git a/runtime/vm/flow_graph_compiler_mips.cc b/runtime/vm/flow_graph_compiler_mips.cc
index 8041aa5714005c5c854fba6d87d666c76ba2889d..b41315e8498a811193253c0d117d1e8d6aecd5b2 100644
--- a/runtime/vm/flow_graph_compiler_mips.cc
+++ b/runtime/vm/flow_graph_compiler_mips.cc
@@ -1253,7 +1253,6 @@ void FlowGraphCompiler::EmitInstanceCall(ExternalLabel* target_label,
LocationSummary* locs) {
ASSERT(Array::Handle(ic_data.arguments_descriptor()).Length() > 0);
__ TraceSimMsg("InstanceCall");
- __ LoadImmediate(S4, 0);
__ LoadObject(S5, ic_data);
GenerateDartCall(deopt_id,
token_pos,
@@ -1348,7 +1347,6 @@ void FlowGraphCompiler::EmitUnoptimizedStaticCall(
UNIMPLEMENTED();
}
ExternalLabel target_label(label_address);
- __ LoadImmediate(S4, 0);
__ LoadObject(S5, ic_data);
GenerateDartCall(deopt_id,
token_pos,
@@ -1432,8 +1430,6 @@ void FlowGraphCompiler::EmitEqualityRegRegCompare(Register left,
__ BranchLinkPatchable(
&stub_code->OptimizedIdenticalWithNumberCheckLabel());
} else {
- __ LoadImmediate(S4, 0);
- __ LoadImmediate(S5, 0);
__ BranchLinkPatchable(
&stub_code->UnoptimizedIdenticalWithNumberCheckLabel());
}

Powered by Google App Engine
This is Rietveld 408576698