Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DMachineBlockFrequencyInfo.cpp232 MachineBlockFrequencyInfo::getProfileCountFromFreq(uint64_t Freq) const { in getProfileCountFromFreq() function in MachineBlockFrequencyInfo
234 return MBFI ? MBFI->getProfileCountFromFreq(F, Freq) : None; in getProfileCountFromFreq()
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DMachineBlockFrequencyInfo.h63 Optional<uint64_t> getProfileCountFromFreq(uint64_t Freq) const;
/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DBlockFrequencyInfo.cpp215 BlockFrequencyInfo::getProfileCountFromFreq(uint64_t Freq) const { in getProfileCountFromFreq() function in BlockFrequencyInfo
218 return BFI->getProfileCountFromFreq(*getFunction(), Freq); in getProfileCountFromFreq()
H A DBlockFrequencyInfoImpl.cpp562 return getProfileCountFromFreq(F, getBlockFreq(Node).getFrequency()); in getBlockProfileCount()
566 BlockFrequencyInfoImplBase::getProfileCountFromFreq(const Function &F, in getProfileCountFromFreq() function in BlockFrequencyInfoImplBase
/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfo.h76 Optional<uint64_t> getProfileCountFromFreq(uint64_t Freq) const;
H A DBlockFrequencyInfoImpl.h529 Optional<uint64_t> getProfileCountFromFreq(const Function &F,
980 Optional<uint64_t> getProfileCountFromFreq(const Function &F,
982 return BlockFrequencyInfoImplBase::getProfileCountFromFreq(F, Freq);
/freebsd-12.1/contrib/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp1377 auto Count = BFI->getProfileCountFromFreq(EntryFreq.getFrequency()); in extractCodeRegion()