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.cpp150 BranchProbability BrProb = MBPI->getEdgeProbability(&MBB, &MBB); in attemptToBalignSmallLoop() local
151 BlockFrequency EdgeFreq = BlockFreq * BrProb; in attemptToBalignSmallLoop()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DELFTypes.h832 bool BrProb : 1;
837 bool hasPGOAnalysis() const { return FuncEntryCount || BBFreq || BrProb; }
839 bool hasPGOAnalysisBBData() const { return BBFreq || BrProb; }
845 (static_cast<uint8_t>(BrProb) << 2) |
866 return std::tie(FuncEntryCount, BBFreq, BrProb, MultiBBRange,
868 std::tie(Other.FuncEntryCount, Other.BBFreq, Other.BrProb,
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DELF.cpp944 if (FeatEnable.BrProb) { in decodeBBAddrMapImpl()
948 uint32_t BrProb = readULEB128As<uint32_t>(Data, Cur, ULEBSizeErr); in decodeBBAddrMapImpl() local
950 Successors.push_back({BBID, BranchProbability::getRaw(BrProb)}); in decodeBBAddrMapImpl()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp147 BrProb, enumerator
158 clEnumValN(PGOMapFeaturesEnum::BrProb, "br-prob", "Branch Probability"),
1416 (!NoFeatures && PgoAnalysisMapFeatures.isSet(PGOMapFeaturesEnum::BrProb)); in getBBAddrMapFeature()
1533 Features.BrProb in emitBBAddrMapSection()
1537 if (Features.BBFreq || Features.BrProb) { in emitBBAddrMapSection()
1544 if (Features.BrProb) { in emitBBAddrMapSection()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h204 llvm::yaml::Hex32 BrProb; member
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1542 for (const auto &[ID, BrProb] : *PGOBBE.Successors) { in writeSectionContent()
1544 SHeader.sh_size += CBA.writeULEB128(BrProb); in writeSectionContent()
H A DELFYAML.cpp1907 IO.mapRequired("BrProb", E.BrProb); in mapping()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp221 if (PGOMap.FeatEnable.BrProb && PGOBBEntry.Successors.size() > 0) { in constructPGOLabelString()
225 if (PGOMap.FeatEnable.BrProb && PGOBBEntry.Successors.size() > 0) { in constructPGOLabelString()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp7967 if (PAM.FeatEnable.BrProb) { in printBBAddrMaps()