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

Unified Diff: src/IceTargetLoweringMIPS32.cpp

Issue 1989303002: Subzero, MIPS32: Implements integer division instructions sdiv, udiv, srem, urem (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Workaround for DIV with three operands Created 4 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 | « src/IceTargetLoweringMIPS32.h ('k') | tests_lit/llvm2ice_tests/arith.ll » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceTargetLoweringMIPS32.cpp
diff --git a/src/IceTargetLoweringMIPS32.cpp b/src/IceTargetLoweringMIPS32.cpp
index a2e82b266535a2149254aac634e52fbb1d6ef343..ce1f810f73912944c8b2d7f920853c642d8043e2 100644
--- a/src/IceTargetLoweringMIPS32.cpp
+++ b/src/IceTargetLoweringMIPS32.cpp
@@ -692,10 +692,6 @@ void TargetMIPS32::lowerArithmetic(const InstArithmetic *Instr) {
switch (Instr->getOp()) {
default:
break;
- case InstArithmetic::Udiv:
- case InstArithmetic::Sdiv:
- case InstArithmetic::Urem:
- case InstArithmetic::Srem:
case InstArithmetic::Fadd:
case InstArithmetic::Fsub:
case InstArithmetic::Fmul:
@@ -754,14 +750,34 @@ void TargetMIPS32::lowerArithmetic(const InstArithmetic *Instr) {
_mov(Dest, T);
return;
}
- case InstArithmetic::Udiv:
- break;
- case InstArithmetic::Sdiv:
- break;
- case InstArithmetic::Urem:
- break;
- case InstArithmetic::Srem:
- break;
+ case InstArithmetic::Udiv: {
+ auto *T_Zero = I32Reg(RegMIPS32::Reg_ZERO);
+ _divu(T_Zero, Src0R, Src1R);
+ _mflo(T, T_Zero);
+ _mov(Dest, T);
+ return;
+ }
+ case InstArithmetic::Sdiv: {
+ auto *T_Zero = I32Reg(RegMIPS32::Reg_ZERO);
+ _div(T_Zero, Src0R, Src1R);
+ _mflo(T, T_Zero);
+ _mov(Dest, T);
+ return;
+ }
+ case InstArithmetic::Urem: {
+ auto *T_Zero = I32Reg(RegMIPS32::Reg_ZERO);
+ _divu(T_Zero, Src0R, Src1R);
+ _mfhi(T, T_Zero);
+ _mov(Dest, T);
+ return;
+ }
+ case InstArithmetic::Srem: {
+ auto *T_Zero = I32Reg(RegMIPS32::Reg_ZERO);
+ _div(T_Zero, Src0R, Src1R);
+ _mfhi(T, T_Zero);
+ _mov(Dest, T);
+ return;
+ }
case InstArithmetic::Fadd:
break;
case InstArithmetic::Fsub:
« no previous file with comments | « src/IceTargetLoweringMIPS32.h ('k') | tests_lit/llvm2ice_tests/arith.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698