Searched refs:BrProb (Results 1 – 9 of 9) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonLoopAlign.cpp | 150 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 D | ELFTypes.h | 832 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 D | ELF.cpp | 944 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 D | AsmPrinter.cpp | 147 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 D | ELFYAML.h | 204 llvm::yaml::Hex32 BrProb; member
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | ELFEmitter.cpp | 1542 for (const auto &[ID, BrProb] : *PGOBBE.Successors) { in writeSectionContent() 1544 SHeader.sh_size += CBA.writeULEB128(BrProb); in writeSectionContent()
|
| H A D | ELFYAML.cpp | 1907 IO.mapRequired("BrProb", E.BrProb); in mapping()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| H A D | llvm-objdump.cpp | 221 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 D | ELFDumper.cpp | 7967 if (PAM.FeatEnable.BrProb) { in printBBAddrMaps()
|