Searched refs:BlockFreq (Results 1 - 8 of 8) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineSizeOpts.cpp49 BlockFrequency BlockFreq = MBFIW->getBlockFreq(MBB);
50 return shouldOptimizeForSizeImpl(BlockFreq, PSI, &MBFIW->getMBFI(),
H A DMachineBlockPlacement.cpp3531 BlockFrequency BlockFreq = MBFI->getBlockFreq(&MBB); local
3532 BlockCounts[BlockIndex[&MBB]] = BlockFreq.getFrequency();
3546 BlockFrequency JumpFreq = BlockFreq * EP;
3707 BlockFrequency BlockFreq = MBFI->getBlockFreq(&MBB); local
3718 BlockFreq * MBPI->getEdgeProbability(&MBB, Succ);
H A DBranchFolding.cpp1160 BlockFrequency BlockFreq = MBBFreqInfo.getBlockFreq(SrcMBB); local
1161 AccumulatedMBBFreq += BlockFreq;
1172 *EdgeFreq += BlockFreq * MBPI.getEdgeProbability(SrcMBB, *SuccI);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DProfileSummaryInfo.h211 bool isColdBlock(BlockFrequency BlockFreq, const BFIT *BFI) const { argument
212 auto Count = BFI->getProfileCountFromFreq(BlockFreq);
224 bool isHotBlockNthPercentile(int PercentileCutoff, BlockFrequency BlockFreq, argument
227 BlockFreq, BFI);
241 bool isColdBlockNthPercentile(int PercentileCutoff, BlockFrequency BlockFreq, argument
244 BlockFreq, BFI);
316 BlockFrequency BlockFreq,
318 auto Count = BFI->getProfileCountFromFreq(BlockFreq);
315 isHotOrColdBlockNthPercentile(int PercentileCutoff, BlockFrequency BlockFreq, BFIT *BFI) const argument
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Object/
H A DELFTypes.h934 BlockFrequency BlockFreq;
939 return std::tie(BlockFreq, Successors) ==
940 std::tie(Other.BlockFreq, Other.Successors);
/freebsd-current/contrib/llvm-project/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp597 APInt BlockFreq(128, Freq.getFrequency());
599 BlockCount *= BlockFreq;
/freebsd-current/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h98 /// Update \p RelBlockFreq from \p BlockFreq and \p EntryFreq
100 /// BlockFreq is divided by EntryFreq and added to RelBlockFreq. To represent
103 void updateRelBlockFreq(uint64_t BlockFreq, uint64_t EntryFreq) { argument
107 Scaled64 Temp(BlockFreq, ScaleShift);
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1291 PGOSS << "Frequency: " << Twine(PGOBBEntry.BlockFreq.getFrequency());

Completed in 204 milliseconds