HomeSort by: relevance | last modified time | path
    Searched refs:ColdCountThreshold (Results 1 - 11 of 11) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
ProfileSummaryInfo.h 45 Optional<uint64_t> HotCountThreshold, ColdCountThreshold;
160 /// Returns ColdCountThreshold if set. Recompute HotCountThreshold
167 /// Returns ColdCountThreshold if set.
169 return ColdCountThreshold ? ColdCountThreshold.getValue() : 0;
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ProfileSummaryInfo.cpp 243 ColdCountThreshold =
245 assert(ColdCountThreshold <= HotCountThreshold &&
295 return ColdCountThreshold && C <= ColdCountThreshold.getValue();
323 return ColdCountThreshold ? ColdCountThreshold.getValue() : 0;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineFunctionSplitter.cpp 56 static cl::opt<unsigned> ColdCountThreshold(
91 return (*Count < ColdCountThreshold);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
CSPreInliner.h 86 uint64_t ColdCountThreshold;
CSPreInliner.cpp 41 HotCountThreshold(HotThreshold), ColdCountThreshold(ColdThreshold) {}
116 if (Candidate.CallsiteCount < ColdCountThreshold)
ProfileGenerator.cpp 404 CSPreInliner(ProfileMap, HotCountThreshold, ColdCountThreshold).run();
409 ColdCountThreshold, CSProfTrimColdContext, CSProfMergeColdContext);
417 ColdCountThreshold = ProfileSummaryBuilder::getColdCountThreshold(
422 ColdCountThreshold = CSProfColdThreshold;
ProfileGenerator.h 191 uint64_t ColdCountThreshold;
  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/
ProfileSummaryBuilder.cpp 171 uint64_t ColdCountThreshold = ColdEntry.MinCount;
173 ColdCountThreshold = ProfileSummaryColdCount;
174 return ColdCountThreshold;
SampleProf.cpp 320 uint64_t ColdCountThreshold, bool TrimColdContext, bool MergeColdContext) {
325 if (ColdCountThreshold == 0)
333 if (FunctionProfile.getTotalSamples() >= ColdCountThreshold)
353 if (TrimColdContext && I.second.getTotalSamples() < ColdCountThreshold &&
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
PGOInstrumentation.cpp 1724 uint64_t ColdCountThreshold) {
1750 bool rawIsCold = CountValue <= ColdCountThreshold;
1930 uint64_t HotCountThreshold = 0, ColdCountThreshold = 0;
1933 ColdCountThreshold = PSI->getOrCompColdCountThreshold();
1935 verifyFuncBFI(Func, LI, NBPI, HotCountThreshold, ColdCountThreshold);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
SampleProf.h 989 void trimAndMergeColdContextProfiles(uint64_t ColdCountThreshold,

Completed in 22 milliseconds