mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-30 03:26:06 +00:00

Multiplying raw block frequency with an integer carries a high risk of overflow. - Add `BlockFrequency::mul` return an std::optional with the product or `nullopt` to indicate an overflow. - Fix two instances where overflow was likely.
48 lines
1.4 KiB
C++
48 lines
1.4 KiB
C++
//====--------------- lib/Support/BlockFrequency.cpp -----------*- C++ -*-====//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file implements Block Frequency class.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/Support/BlockFrequency.h"
|
|
#include "llvm/Support/BranchProbability.h"
|
|
#include "llvm/Support/MathExtras.h"
|
|
|
|
using namespace llvm;
|
|
|
|
BlockFrequency &BlockFrequency::operator*=(BranchProbability Prob) {
|
|
Frequency = Prob.scale(Frequency);
|
|
return *this;
|
|
}
|
|
|
|
BlockFrequency BlockFrequency::operator*(BranchProbability Prob) const {
|
|
BlockFrequency Freq(Frequency);
|
|
Freq *= Prob;
|
|
return Freq;
|
|
}
|
|
|
|
BlockFrequency &BlockFrequency::operator/=(BranchProbability Prob) {
|
|
Frequency = Prob.scaleByInverse(Frequency);
|
|
return *this;
|
|
}
|
|
|
|
BlockFrequency BlockFrequency::operator/(BranchProbability Prob) const {
|
|
BlockFrequency Freq(Frequency);
|
|
Freq /= Prob;
|
|
return Freq;
|
|
}
|
|
|
|
std::optional<BlockFrequency> BlockFrequency::mul(uint64_t Factor) const {
|
|
bool Overflow;
|
|
uint64_t ResultFrequency = SaturatingMultiply(Frequency, Factor, &Overflow);
|
|
if (Overflow)
|
|
return {};
|
|
return BlockFrequency(ResultFrequency);
|
|
}
|