Home
last modified time | relevance | path

Searched refs:RawCounters (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPGOCtxProfFlattening.cpp48 void assignProfileData(Function &F, ArrayRef<uint64_t> RawCounters) { in assignProfileData() argument
49 assert(!RawCounters.empty()); in assignProfileData()
50 ProfileAnnotator PA(F, RawCounters); in assignProfileData()
52 F.setEntryCount(RawCounters[0]); in assignProfileData()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DCtxProfAnalysis.h172 LLVM_ABI ProfileAnnotator(const Function &F, ArrayRef<uint64_t> RawCounters);
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DCtxProfAnalysis.cpp366 ArrayRef<uint64_t> RawCounters) in ProfileAnnotator() argument
367 : PImpl(std::make_unique<ProfileAnnotatorImpl>(F, RawCounters)) {} in ProfileAnnotator()