Skip to content

Commit

Permalink
Fix a bad overflow check pointed out by Ben.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185226 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
stoklund committed Jun 28, 2013
1 parent 9e638df commit 5d3257e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 2 additions & 4 deletions lib/Support/BlockFrequency.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,7 @@ static uint64_t div96bit(uint64_t W[2], uint32_t D) {
uint64_t x = W[1];
unsigned i;

// This is really a 64-bit division.
if (!x)
return y / D;
assert(x != 0 && "This is really a 64-bit division");

// This long division algorithm automatically saturates on overflow.
for (i = 0; i < 64 && x; ++i) {
Expand All @@ -75,7 +73,7 @@ void BlockFrequency::scale(uint32_t N, uint32_t D) {
uint64_t MulRes = (MulHi << 32) + MulLo;

// If the product fits in 64 bits, just use built-in division.
if (MulHi <= UINT32_MAX && MulRes <= MulLo) {
if (MulHi <= UINT32_MAX && MulRes >= MulLo) {
Frequency = MulRes / D;
return;
}
Expand Down
5 changes: 5 additions & 0 deletions unittests/Support/BlockFrequencyTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ TEST(BlockFrequencyTest, Saturate) {
Freq = 0x1000000000000000ULL;
Freq /= BranchProbability(10000, 160000);
EXPECT_EQ(Freq.getFrequency(), UINT64_MAX);

// Try to cheat the multiplication overflow check.
Freq = 0x00000001f0000001ull;
Freq /= BranchProbability(1000, 0xf000000f);
EXPECT_EQ(33506781356485509ULL, Freq.getFrequency());
}

TEST(BlockFrequencyTest, ProbabilityCompare) {
Expand Down

0 comments on commit 5d3257e

Please sign in to comment.