Home
last modified time | relevance | path

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

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