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

Unified Diff: runtime/vm/opt_code_generator_ia32.cc

Issue 10440082: Fix a bug in ia32 shift left , implemented more inlined binary operations in x64. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 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 | « runtime/vm/locations.cc ('k') | runtime/vm/token.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/opt_code_generator_ia32.cc
===================================================================
--- runtime/vm/opt_code_generator_ia32.cc (revision 8116)
+++ runtime/vm/opt_code_generator_ia32.cc (working copy)
@@ -643,6 +643,8 @@
PropagateBackLocalClass(node->left(), smi_class_);
PropagateBackLocalClass(node->right(), smi_class_);
}
+ __ cmpl(ECX, Immediate(0));
+ __ j(LESS, deopt_blob->label());
Immediate count_limit = Immediate(0x1F);
__ SmiUntag(ECX);
__ cmpl(ECX, count_limit);
« no previous file with comments | « runtime/vm/locations.cc ('k') | runtime/vm/token.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698