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

Unified Diff: runtime/vm/intrinsifier_mips.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_ia32.cc ('k') | runtime/vm/intrinsifier_x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/intrinsifier_mips.cc
===================================================================
--- runtime/vm/intrinsifier_mips.cc (revision 29911)
+++ runtime/vm/intrinsifier_mips.cc (working copy)
@@ -736,24 +736,6 @@
}
-void Intrinsifier::Integer_remainder(Assembler* assembler) {
- Label fall_through;
-
- TestBothArgumentsSmis(assembler, &fall_through);
- // T1: Tagged left (dividend).
- // T0: Tagged right (divisor).
- // Check if modulo by zero -> exception thrown in main function.
- __ beq(T0, ZR, &fall_through);
- EmitRemainderOperation(assembler);
- // Untagged right in T0. Untagged remainder result in V0.
-
- __ Ret();
- __ delay_slot()->SmiTag(V0);
-
- __ Bind(&fall_through);
-}
-
-
void Intrinsifier::Integer_truncDivide(Assembler* assembler) {
Label fall_through;
« no previous file with comments | « runtime/vm/intrinsifier_ia32.cc ('k') | runtime/vm/intrinsifier_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698