Searched refs:BrProb (Results 1 – 9 of 9) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonLoopAlign.cpp | 157 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 D | ELFTypes.h | 831 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 D | ELF.cpp | 899 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 D | AsmPrinter.cpp | 144 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 D | ELFYAML.h | 189 llvm::yaml::Hex32 BrProb; member
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | ELFEmitter.cpp | 1538 for (const auto &[ID, BrProb] : *PGOBBE.Successors) { in writeSectionContent() 1540 SHeader.sh_size += CBA.writeULEB128(BrProb); in writeSectionContent()
|
| H A D | ELFYAML.cpp | 1872 IO.mapRequired("BrProb", E.BrProb); in mapping()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| H A D | llvm-objdump.cpp | 222 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 D | ELFDumper.cpp | 7850 if (PAM.FeatEnable.BrProb) { in printBBAddrMaps()
|