Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Object/
H A DELFTypes.h886 bool BrProb : 1;
889 bool anyEnabled() const { return FuncEntryCount || BBFreq || BrProb; }
895 (static_cast<uint8_t>(BrProb) << 2);
912 return std::tie(FuncEntryCount, BBFreq, BrProb) ==
913 std::tie(Other.FuncEntryCount, Other.BBFreq, Other.BrProb);
/freebsd-14.2/contrib/llvm-project/llvm/lib/Object/
H A DELF.cpp786 (FeatEnable.BBFreq || FeatEnable.BrProb) && !MetadataDecodeErr && in decodeBBAddrMapImpl()
797 if (FeatEnable.BrProb) { in decodeBBAddrMapImpl()
801 uint32_t BrProb = readULEB128As<uint32_t>(Data, Cur, ULEBSizeErr); in decodeBBAddrMapImpl() local
803 Successors.push_back({BBID, BranchProbability::getRaw(BrProb)}); in decodeBBAddrMapImpl()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp144 BrProb, enumerator
152 clEnumValN(PGOMapFeaturesEnum::BrProb, "br-prob",
1437 FeatEnable.BrProb ? &getAnalysis<MachineBranchProbabilityInfo>() in emitBBAddrMapSection()
1440 if (FeatEnable.BBFreq || FeatEnable.BrProb) { in emitBBAddrMapSection()
1447 if (FeatEnable.BrProb) { in emitBBAddrMapSection()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1279 if (PGOMap.FeatEnable.BBFreq || PGOMap.FeatEnable.BrProb) { in constructPGOLabelString()
1284 if (PGOMap.FeatEnable.BBFreq || PGOMap.FeatEnable.BrProb) { in constructPGOLabelString()
1292 if (PGOMap.FeatEnable.BrProb && PGOBBEntry.Successors.size() > 0) { in constructPGOLabelString()
1296 if (PGOMap.FeatEnable.BrProb && PGOBBEntry.Successors.size() > 0) { in constructPGOLabelString()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h177 llvm::yaml::Hex32 BrProb; member
/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1472 for (const auto &[ID, BrProb] : *PGOBBE.Successors) in writeSectionContent()
1473 SHeader.sh_size += CBA.writeULEB128(ID) + CBA.writeULEB128(BrProb); in writeSectionContent()
H A DELFYAML.cpp1848 IO.mapRequired("BrProb", E.BrProb); in mapping()