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

Unified Diff: runtime/vm/intrinsifier_x64.cc

Issue 59933004: In preparation of inlining remainder and modulo binary Smi operations: (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 1 month 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/intrinsifier_mips.cc ('k') | runtime/vm/native_api_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/intrinsifier_x64.cc
===================================================================
--- runtime/vm/intrinsifier_x64.cc (revision 29911)
+++ runtime/vm/intrinsifier_x64.cc (working copy)
@@ -712,24 +712,6 @@
}
-void Intrinsifier::Integer_remainder(Assembler* assembler) {
- Label fall_through;
- TestBothArgumentsSmis(assembler, &fall_through);
- // RAX: right argument (divisor)
- __ movq(RCX, RAX);
- __ movq(RAX, Address(RSP, + 2 * kWordSize)); // Left argument (dividend).
- // RAX: Tagged left (dividend).
- // RCX: Tagged right (divisor).
- __ cmpq(RCX, Immediate(0));
- __ j(EQUAL, &fall_through);
- EmitRemainderOperation(assembler);
- // Untagged remainder result in RAX.
- __ SmiTag(RAX);
- __ ret();
- __ Bind(&fall_through);
-}
-
-
void Intrinsifier::Integer_truncDivide(Assembler* assembler) {
Label fall_through, not_32bit;
TestBothArgumentsSmis(assembler, &fall_through);
« no previous file with comments | « runtime/vm/intrinsifier_mips.cc ('k') | runtime/vm/native_api_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698