1//===-------------- lib/Support/BranchProbability.cpp -----------*- C++ -*-===// 3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4// See https://llvm.org/LICENSE.txt for license information. 5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7//===----------------------------------------------------------------------===// 9// This file implements Branch Probability class. 11//===----------------------------------------------------------------------===// 14#include "llvm/Config/llvm-config.h" 23constexpruint32_t BranchProbability::D;
29// Get a percentage rounded to two decimal digits. This avoids 30// implementation-defined rounding inside printf. 31doublePercent = rint(((
double)N / D) * 100.0 * 100.0) / 100.0;
32returnOS <<
format(
"0x%08" PRIx32
" / 0x%08" PRIx32
" = %.2f%%", N, D,
36#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) 41assert(Denominator > 0 &&
"Denominator cannot be 0!");
42assert(Numerator <= Denominator &&
"Probability cannot be bigger than 1!");
47 (Numerator *
static_cast<uint64_t>(D) + Denominator / 2) / Denominator;
55assert(Numerator <= Denominator &&
"Probability cannot be bigger than 1!");
56// Scale down Denominator to fit in a 32-bit integer. 58while (Denominator > UINT32_MAX) {
65// If ConstD is not zero, then replace D by ConstD so that division and modulo 66// operations by D can be optimized, in case this function is not inlined by the 68template <u
int32_t ConstD>
75// Fast path for multiplying by 1.0. 79// Split Num into upper and lower parts to multiply, then recombine. 81uint64_t ProductLow = (Num & UINT32_MAX) *
N;
83// Split into 32-bit digits. 85uint32_t Lower32 = ProductLow & UINT32_MAX;
86uint32_t Mid32Partial = ProductHigh & UINT32_MAX;
87uint32_t Mid32 = Mid32Partial + (ProductLow >> 32);
90 Upper32 += Mid32 < Mid32Partial;
96if (UpperQ > UINT32_MAX)
99 Rem = ((Rem %
D) << 32) | Lower32;
101uint64_t Q = (UpperQ << 32) + LowerQ;
103// Check for overflow. 108 return ::scale<D>(Num, N, D);
112 return ::scale<0>(Num, D, N);
static uint64_t scale(uint64_t Num, uint32_t N, uint32_t D)
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
#define LLVM_DUMP_METHOD
Mark debug helper function definitions like dump() that should not be stripped from debug builds.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
static BranchProbability getBranchProbability(uint64_t Numerator, uint64_t Denominator)
raw_ostream & print(raw_ostream &OS) const
uint64_t scaleByInverse(uint64_t Num) const
Scale a large integer by the inverse.
uint64_t scale(uint64_t Num) const
Scale a large integer.
This class implements an extremely fast bulk output stream that can only output to a stream.
This is an optimization pass for GlobalISel generic memory operations.
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
format_object< Ts... > format(const char *Fmt, const Ts &... Vals)
These are helper functions used to produce formatted output.