Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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 DMachineBlockFrequencyInfo.cpp244 MachineBlockFrequencyInfo::getProfileCountFromFreq(uint64_t Freq) const { in getProfileCountFromFreq() function in MachineBlockFrequencyInfo
249 return MBFI->getProfileCountFromFreq(F, Freq); in getProfileCountFromFreq()
H A DMBFIWrapper.cpp40 return MBFI.getProfileCountFromFreq(I->second.getFrequency()); in getBlockProfileCount()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DBlockFrequencyInfo.cpp218 BlockFrequencyInfo::getProfileCountFromFreq(uint64_t Freq) const { in getProfileCountFromFreq() function in BlockFrequencyInfo
221 return BFI->getProfileCountFromFreq(*getFunction(), Freq); in getProfileCountFromFreq()
H A DBlockFrequencyInfoImpl.cpp579 return getProfileCountFromFreq(F, getBlockFreq(Node).getFrequency(), in getBlockProfileCount()
584 BlockFrequencyInfoImplBase::getProfileCountFromFreq(const Function &F, in getProfileCountFromFreq() function in BlockFrequencyInfoImplBase
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DMachineBlockFrequencyInfo.h73 Optional<uint64_t> getProfileCountFromFreq(uint64_t Freq) const;
/netbsd-src/external/apache2/llvm/dist/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,
991 Optional<uint64_t> getProfileCountFromFreq(const Function &F,
994 return BlockFrequencyInfoImplBase::getProfileCountFromFreq(F, Freq,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp1705 auto Count = BFI->getProfileCountFromFreq(EntryFreq.getFrequency()); in extractCodeRegion()