Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/llvm/lib/CodeGen/
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()
DMBFIWrapper.cpp41 return MBFI.getProfileCountFromFreq(I->second.getFrequency()); in getBlockProfileCount()
DMachineBlockFrequencyInfo.cpp244 MachineBlockFrequencyInfo::getProfileCountFromFreq(uint64_t Freq) const { in getProfileCountFromFreq() function in MachineBlockFrequencyInfo
249 return MBFI->getProfileCountFromFreq(F, Freq); in getProfileCountFromFreq()
/openbsd/src/gnu/llvm/llvm/include/llvm/CodeGen/
DMachineBlockFrequencyInfo.h74 std::optional<uint64_t> getProfileCountFromFreq(uint64_t Freq) const;
/openbsd/src/gnu/llvm/llvm/lib/Analysis/
DBlockFrequencyInfo.cpp217 BlockFrequencyInfo::getProfileCountFromFreq(uint64_t Freq) const { in getProfileCountFromFreq() function in BlockFrequencyInfo
220 return BFI->getProfileCountFromFreq(*getFunction(), Freq); in getProfileCountFromFreq()
DBlockFrequencyInfoImpl.cpp592 return getProfileCountFromFreq(F, getBlockFreq(Node).getFrequency(), in getBlockProfileCount()
597 BlockFrequencyInfoImplBase::getProfileCountFromFreq(const Function &F, in getProfileCountFromFreq() function in BlockFrequencyInfoImplBase
/openbsd/src/gnu/llvm/llvm/include/llvm/Analysis/
DBlockFrequencyInfo.h76 std::optional<uint64_t> getProfileCountFromFreq(uint64_t Freq) const;
DBlockFrequencyInfoImpl.h529 getProfileCountFromFreq(const Function &F, uint64_t Freq,
1031 getProfileCountFromFreq(const Function &F, uint64_t Freq,
1033 return BlockFrequencyInfoImplBase::getProfileCountFromFreq(F, Freq,
/openbsd/src/gnu/llvm/llvm/lib/Transforms/Utils/
DCodeExtractor.cpp1788 auto Count = BFI->getProfileCountFromFreq(EntryFreq.getFrequency()); in extractCodeRegion()