Home
last modified time | relevance | path

Searched refs:BrProb (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonLoopAlign.cpp157 BranchProbability BrProb = MBPI->getEdgeProbability(&MBB, &MBB); in attemptToBalignSmallLoop() local
158 BlockFrequency EdgeFreq = BlockFreq * BrProb; in attemptToBalignSmallLoop()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DELFTypes.h831 bool BrProb : 1;
834 bool hasPGOAnalysis() const { return FuncEntryCount || BBFreq || BrProb; }
836 bool hasPGOAnalysisBBData() const { return BBFreq || BrProb; }
842 (static_cast<uint8_t>(BrProb) << 2) |
860 return std::tie(FuncEntryCount, BBFreq, BrProb, MultiBBRange) ==
861 std::tie(Other.FuncEntryCount, Other.BBFreq, Other.BrProb,
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DELF.cpp899 if (FeatEnable.BrProb) { in decodeBBAddrMapImpl()
903 uint32_t BrProb = readULEB128As<uint32_t>(Data, Cur, ULEBSizeErr); in decodeBBAddrMapImpl() local
905 Successors.push_back({BBID, BranchProbability::getRaw(BrProb)}); in decodeBBAddrMapImpl()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp144 BrProb, enumerator
152 clEnumValN(PGOMapFeaturesEnum::BrProb, "br-prob",
1352 PgoAnalysisMapFeatures.isSet(PGOMapFeaturesEnum::BrProb), in getBBAddrMapFeature()
1446 Features.BrProb in emitBBAddrMapSection()
1450 if (Features.BBFreq || Features.BrProb) { in emitBBAddrMapSection()
1457 if (Features.BrProb) { in emitBBAddrMapSection()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h189 llvm::yaml::Hex32 BrProb; member
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1538 for (const auto &[ID, BrProb] : *PGOBBE.Successors) { in writeSectionContent()
1540 SHeader.sh_size += CBA.writeULEB128(BrProb); in writeSectionContent()
H A DELFYAML.cpp1872 IO.mapRequired("BrProb", E.BrProb); in mapping()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp222 if (PGOMap.FeatEnable.BrProb && PGOBBEntry.Successors.size() > 0) { in constructPGOLabelString()
226 if (PGOMap.FeatEnable.BrProb && PGOBBEntry.Successors.size() > 0) { in constructPGOLabelString()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp7850 if (PAM.FeatEnable.BrProb) { in printBBAddrMaps()