[PATCH] D70156: [APInt] Fix tests that had wrong assumption about sdivs with negative quotient.
Tim Shen via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jan 21 13:56:25 PST 2020
This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was automatically updated to reflect the committed changes.
Closed by commit rG7b771ed44848: [APInt] Fix tests that had wrong assumption about sdivs with negative quotient. (authored by timshen).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D70156/new/
https://reviews.llvm.org/D70156
Files:
llvm/unittests/ADT/APIntTest.cpp
Index: llvm/unittests/ADT/APIntTest.cpp
===================================================================
--- llvm/unittests/ADT/APIntTest.cpp
+++ llvm/unittests/ADT/APIntTest.cpp
@@ -2604,31 +2604,36 @@
EXPECT_EQ(0, APIntOps::RoundingSDiv(Zero, A, APInt::Rounding::TOWARD_ZERO));
}
- for (uint64_t Bi = -128; Bi <= 127; Bi++) {
+ for (int64_t Bi = -128; Bi <= 127; Bi++) {
if (Bi == 0)
continue;
APInt B(8, Bi);
+ APInt QuoTowardZero = A.sdiv(B);
{
APInt Quo = APIntOps::RoundingSDiv(A, B, APInt::Rounding::UP);
- auto Prod = Quo.sext(16) * B.sext(16);
- EXPECT_TRUE(Prod.uge(A));
- if (Prod.ugt(A)) {
- EXPECT_TRUE(((Quo - 1).sext(16) * B.sext(16)).ult(A));
+ if (A.srem(B).isNullValue()) {
+ EXPECT_EQ(QuoTowardZero, Quo);
+ } else if (A.isNegative() !=
+ B.isNegative()) { // if the math quotient is negative.
+ EXPECT_EQ(QuoTowardZero, Quo);
+ } else {
+ EXPECT_EQ(QuoTowardZero + 1, Quo);
}
}
{
APInt Quo = APIntOps::RoundingSDiv(A, B, APInt::Rounding::DOWN);
- auto Prod = Quo.sext(16) * B.sext(16);
- EXPECT_TRUE(Prod.ule(A));
- if (Prod.ult(A)) {
- EXPECT_TRUE(((Quo + 1).sext(16) * B.sext(16)).ugt(A));
+ if (A.srem(B).isNullValue()) {
+ EXPECT_EQ(QuoTowardZero, Quo);
+ } else if (A.isNegative() !=
+ B.isNegative()) { // if the math quotient is negative.
+ EXPECT_EQ(QuoTowardZero - 1, Quo);
+ } else {
+ EXPECT_EQ(QuoTowardZero, Quo);
}
}
- {
- APInt Quo = A.sdiv(B);
- EXPECT_EQ(Quo, APIntOps::RoundingSDiv(A, B, APInt::Rounding::TOWARD_ZERO));
- }
+ EXPECT_EQ(QuoTowardZero,
+ APIntOps::RoundingSDiv(A, B, APInt::Rounding::TOWARD_ZERO));
}
}
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D70156.239429.patch
Type: text/x-patch
Size: 1920 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200121/3c19fa64/attachment.bin>
More information about the llvm-commits
mailing list