Home
last modified time | relevance | path

Searched refs:MinCount (Results 1 – 14 of 14) sorted by relevance

/openbsd/gnu/llvm/llvm/include/llvm/IR/
H A DProfileSummary.h35 const uint64_t MinCount; ///< The minimum count for this percentile. member
40 : Cutoff(TheCutoff), MinCount(TheMinCount), NumCounts(TheNumCounts) {} in ProfileSummaryEntry()
/openbsd/gnu/llvm/compiler-rt/lib/profile/
H A DInstrProfilingValue.c154 uint64_t MinCount = UINT64_MAX; in instrumentTargetValueImpl() local
162 if (CurVNode->Count < MinCount) { in instrumentTargetValueImpl()
163 MinCount = CurVNode->Count; in instrumentTargetValueImpl()
/openbsd/gnu/llvm/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.h875 VariadicOperatorMatcherDescriptor(unsigned MinCount, unsigned MaxCount,
877 : MinCount(MinCount), MaxCount(MaxCount), Op(Op),
883 if (Args.size() < MinCount || MaxCount < Args.size()) {
889 << ("(" + Twine(MinCount) + ", " + MaxStr + ")") << Args.size();
927 const unsigned MinCount;
1147 template <unsigned MinCount, unsigned MaxCount>
1149 ast_matchers::internal::VariadicOperatorMatcherFunc<MinCount, MaxCount>
1153 MinCount, MaxCount, Func.Op, MatcherName);
/openbsd/gnu/llvm/llvm/lib/ProfileData/
H A DProfileSummaryBuilder.cpp169 uint64_t HotCountThreshold = HotEntry.MinCount; in getHotCountThreshold()
179 uint64_t ColdCountThreshold = ColdEntry.MinCount; in getColdCountThreshold()
H A DSampleProfWriter.cpp770 encodeULEB128(Entry.MinCount, OS); in writeSummary()
/openbsd/gnu/llvm/llvm/lib/IR/
H A DProfileSummary.cpp62 ConstantAsMetadata::get(ConstantInt::get(Int64Ty, Entry.MinCount)), in getDetailedSummaryMD()
262 OS << Entry.NumCounts << " blocks with count >= " << Entry.MinCount in printDetailedSummary()
/openbsd/gnu/llvm/llvm/tools/llvm-rc/
H A DResourceScriptParser.h103 Expected<SmallVector<RCInt, 8>> readIntsWithCommas(size_t MinCount,
H A DResourceScriptParser.cpp289 Expected<SmallVector<RCInt, 8>> RCParser::readIntsWithCommas(size_t MinCount, in readIntsWithCommas() argument
291 assert(MinCount <= MaxCount); in readIntsWithCommas()
297 if (Result.size() < MinCount) in readIntsWithCommas()
/openbsd/gnu/llvm/llvm/tools/llvm-profgen/
H A DCSPreInliner.cpp168 .MinCount; in shouldInline()
/openbsd/gnu/llvm/llvm/lib/Analysis/
H A DProfileSummaryInfo.cpp279 uint64_t CountThreshold = Entry.MinCount; in computeThreshold()
/openbsd/gnu/llvm/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp766 .MinCount; in adjustInstrProfile()
771 .MinCount; in adjustInstrProfile()
776 .MinCount; in adjustInstrProfile()
783 .MinCount; in adjustInstrProfile()
2681 MinCountThreshold = SummaryEntry.MinCount; in showHotFunctionList()
/openbsd/gnu/llvm/llvm/include/llvm/ProfileData/
H A DInstrProf.h1166 ER.MinBlockCount = E.MinCount; in setEntry()
/openbsd/gnu/llvm/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h1386 template <unsigned MinCount, unsigned MaxCount>
1392 static_assert(MinCount <= sizeof...(Ms) && sizeof...(Ms) <= MaxCount,
/openbsd/gnu/llvm/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp692 unsigned MinCount = Known.countMinPopulation(); in foldCtpop() local
696 ConstantAsMetadata::get(ConstantInt::get(IT, MinCount)), in foldCtpop()