Home
last modified time | relevance | path

Searched refs:getProfileCountFromFreq (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DMachineSizeOpts.cpp41 auto Count = MBFI->getProfileCountFromFreq(BlockFreq.getFrequency()); in isColdBlock()
58 auto Count = MBFI->getProfileCountFromFreq(BlockFreq.getFrequency()); in isHotBlockNthPercentile()
74 auto Count = MBFI->getProfileCountFromFreq(BlockFreq.getFrequency()); in isColdBlockNthPercentile()
H A DMBFIWrapper.cpp41 return MBFI.getProfileCountFromFreq(I->second.getFrequency()); in getBlockProfileCount()
H A DMachineBlockFrequencyInfo.cpp244 MachineBlockFrequencyInfo::getProfileCountFromFreq(uint64_t Freq) const { in getProfileCountFromFreq() function in MachineBlockFrequencyInfo
249 return MBFI->getProfileCountFromFreq(F, Freq); in getProfileCountFromFreq()
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DMachineBlockFrequencyInfo.h73 Optional<uint64_t> getProfileCountFromFreq(uint64_t Freq) const;
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DBlockFrequencyInfo.cpp217 BlockFrequencyInfo::getProfileCountFromFreq(uint64_t Freq) const { in getProfileCountFromFreq() function in BlockFrequencyInfo
220 return BFI->getProfileCountFromFreq(*getFunction(), Freq); in getProfileCountFromFreq()
H A DBlockFrequencyInfoImpl.cpp592 return getProfileCountFromFreq(F, getBlockFreq(Node).getFrequency(), in getBlockProfileCount()
597 BlockFrequencyInfoImplBase::getProfileCountFromFreq(const Function &F, in getProfileCountFromFreq() function in BlockFrequencyInfoImplBase
/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfo.h76 Optional<uint64_t> getProfileCountFromFreq(uint64_t Freq) const;
H A DBlockFrequencyInfoImpl.h528 Optional<uint64_t> getProfileCountFromFreq(const Function &F,
1030 Optional<uint64_t> getProfileCountFromFreq(const Function &F,
1033 return BlockFrequencyInfoImplBase::getProfileCountFromFreq(F, Freq,
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp1778 auto Count = BFI->getProfileCountFromFreq(EntryFreq.getFrequency()); in extractCodeRegion()