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

Unified Diff: runtime/vm/flow_graph_compiler_arm.cc

Issue 1075493003: Remove zapping of registers that has not turned up any GC bugs in a long time. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 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 | « no previous file | runtime/vm/flow_graph_compiler_arm64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_compiler_arm.cc
===================================================================
--- runtime/vm/flow_graph_compiler_arm.cc (revision 44981)
+++ runtime/vm/flow_graph_compiler_arm.cc (working copy)
@@ -1272,9 +1272,6 @@
RawPcDescriptors::kIcCall,
locs);
__ Drop(argument_count);
-#if defined(DEBUG)
- __ LoadImmediate(R4, kInvalidObjectPointer);
-#endif
}
@@ -1357,10 +1354,6 @@
RawPcDescriptors::kUnoptStaticCall,
locs);
__ Drop(argument_count);
-#if defined(DEBUG)
- __ LoadImmediate(R4, kInvalidObjectPointer);
- __ LoadImmediate(R5, kInvalidObjectPointer);
-#endif
}
@@ -1437,13 +1430,6 @@
Isolate::kNoDeoptId,
token_pos);
}
-#if defined(DEBUG)
- if (!is_optimizing()) {
- // Do this *after* adding the pc descriptor!
- __ LoadImmediate(R4, kInvalidObjectPointer);
- __ LoadImmediate(R5, kInvalidObjectPointer);
- }
-#endif
// Stub returns result in flags (result of a cmp, we need Z computed).
__ Pop(right);
__ Pop(left);
« no previous file with comments | « no previous file | runtime/vm/flow_graph_compiler_arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698