Searched refs:MaxCount (Results 1 - 25 of 34) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DProfileSummary.h52 uint64_t TotalCount, MaxCount, MaxInternalCount, MaxFunctionCount; member in class:llvm::ProfileSummary
72 uint64_t TotalCount, uint64_t MaxCount,
77 TotalCount(TotalCount), MaxCount(MaxCount),
93 uint64_t getMaxCount() { return MaxCount; }
71 ProfileSummary(Kind K, SummaryEntryVector DetailedSummary, uint64_t TotalCount, uint64_t MaxCount, uint64_t MaxInternalCount, uint64_t MaxFunctionCount, uint32_t NumCounts, uint32_t NumFunctions, bool Partial = false, double PartialProfileRatio = 0) argument
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DProfileCommon.h50 uint64_t MaxCount = 0; member in class:llvm::ProfileSummaryBuilder
98 if (Count > MaxCount)
99 MaxCount = Count;
H A DSampleProf.h504 uint64_t MaxCount = 0; local
506 MaxCount = std::max(MaxCount, L.second.getSamples());
509 MaxCount = std::max(MaxCount, F.second.getMaxCountInside());
510 return MaxCount;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Transforms/
H A DInstrumentation.h179 static inline uint64_t calculateCountScale(uint64_t MaxCount) { argument
180 return MaxCount < std::numeric_limits<uint32_t>::max()
182 : MaxCount / std::numeric_limits<uint32_t>::max() + 1;
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dlocal_cache.h96 if (C->Count == C->MaxCount)
125 u32 MaxCount; member in struct:scudo::SizeClassAllocatorLocalCache::PerClass
134 if (LIKELY(C->MaxCount))
137 DCHECK_NE(C->MaxCount, 0U);
144 P->MaxCount = 2 * TransferBatch::getMaxCached(Size);
167 const u32 Count = Min(C->MaxCount / 2, C->Count);
H A Dquarantine.h21 static const u32 MaxCount = 1019; member in struct:scudo::QuarantineBatch
25 void *Batch[MaxCount];
37 DCHECK_LT(Count, MaxCount);
43 return Count + From->Count <= MaxCount;
47 DCHECK_LE(Count + From->Count, MaxCount);
79 if (List.empty() || List.back()->Count == QuarantineBatch::MaxCount) {
145 BatchCount * QuarantineBatch::MaxCount;
H A Dprimary32.h308 TransferBatch **CurrentBatch, u32 MaxCount,
314 if (B && B->getCount() == MaxCount) {
353 const u32 MaxCount = TransferBatch::getMaxCached(Size); local
354 DCHECK_GT(MaxCount, 0U);
361 Min(MaxNumBatches * MaxCount,
378 if (UNLIKELY(!populateBatches(C, Sci, ClassId, &B, MaxCount,
385 if (UNLIKELY(!populateBatches(C, Sci, ClassId, &B, MaxCount, ShuffleArray,
307 populateBatches(CacheT *C, SizeClassInfo *Sci, uptr ClassId, TransferBatch **CurrentBatch, u32 MaxCount, void **PointersArray, u32 Count) argument
H A Dprimary64.h321 TransferBatch **CurrentBatch, u32 MaxCount,
328 if (B && B->getCount() == MaxCount) {
347 const u32 MaxCount = TransferBatch::getMaxCached(Size); local
351 const uptr TotalUserBytes = Region->AllocatedUser + MaxCount * Size;
383 MaxNumBatches * MaxCount,
397 if (UNLIKELY(!populateBatches(C, Region, ClassId, &B, MaxCount,
404 if (UNLIKELY(!populateBatches(C, Region, ClassId, &B, MaxCount,
320 populateBatches(CacheT *C, RegionInfo *Region, uptr ClassId, TransferBatch **CurrentBatch, u32 MaxCount, void **PointersArray, u32 Count) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DProfileSummaryBuilder.cpp110 ProfileSummary::PSK_Sample, DetailedSummary, TotalCount, MaxCount, 0,
117 ProfileSummary::PSK_Instr, DetailedSummary, TotalCount, MaxCount,
H A DInstrProf.cpp583 uint64_t MaxCount = 0; local
588 MaxCount = std::max(Other.Counts[I], MaxCount);
593 if (MaxCount >= ValueCutoff) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DProfileSummary.cpp87 Components.push_back(getKeyValMD(Context, "MaxCount", getMaxCount()));
215 uint64_t NumCounts, TotalCount, NumFunctions, MaxFunctionCount, MaxCount,
220 if (!getVal(dyn_cast<MDTuple>(Tuple->getOperand(I++)), "MaxCount", MaxCount))
247 MaxCount, MaxInternalCount, MaxFunctionCount,
255 OS << "Maximum block count: " << MaxCount << "\n"; local
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/
H A DPGOInstrumentation.h94 uint64_t MaxCount);
/freebsd-13-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.h803 VariadicOperatorMatcherDescriptor(unsigned MinCount, unsigned MaxCount, argument
805 : MinCount(MinCount), MaxCount(MaxCount), Op(Op),
811 if (Args.size() < MinCount || MaxCount < Args.size()) {
813 (MaxCount == std::numeric_limits<unsigned>::max() ? ""
814 : Twine(MaxCount))
856 const unsigned MaxCount; member in class:clang::ast_matchers::dynamic::VariadicOperatorMatcherDescriptor
956 template <unsigned MinCount, unsigned MaxCount>
958 ast_matchers::internal::VariadicOperatorMatcherFunc<MinCount, MaxCount>
962 MinCount, MaxCount, Fun
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPGOMemOPSizeOpt.cpp358 uint64_t MaxCount = 0; local
379 if (C > MaxCount)
380 MaxCount = C;
395 if (RemainCount > MaxCount)
396 MaxCount = RemainCount;
488 setProfMetadata(Func.getParent(), SI, CaseCounts, MaxCount);
H A DPGOInstrumentation.cpp1100 void markFunctionAttributes(uint64_t EntryCount, uint64_t MaxCount) { argument
1103 else if (PSI->isColdCount(MaxCount))
1356 uint64_t MaxCount = 0; local
1365 if (EdgeCount > MaxCount)
1366 MaxCount = EdgeCount;
1369 setProfMetadata(M, TI, EdgeCounts, MaxCount);
1423 uint64_t MaxCount = std::max(SCounts[0], SCounts[1]); local
1424 if (MaxCount)
1425 setProfMetadata(F.getParent(), &SI, SCounts, MaxCount);
1762 uint64_t MaxCount) {
1760 setProfMetadata(Module *M, Instruction *TI, ArrayRef<uint64_t> EdgeCounts, uint64_t MaxCount) argument
[all...]
H A DIndirectCallPromotion.cpp302 uint64_t MaxCount = (Count >= ElseCount ? Count : ElseCount); local
303 uint64_t Scale = calculateCountScale(MaxCount);
/freebsd-13-stable/sys/contrib/dev/acpica/components/debugger/
H A Ddbmethod.c683 if (Info->Count >= Info->MaxCount)
763 Info.MaxCount = ACPI_UINT32_MAX;
796 Info.MaxCount = ACPI_UINT32_MAX;
H A Ddbtest.c1168 Info.MaxCount = ACPI_UINT32_MAX;
1172 Info.MaxCount = strtoul (CountArg, NULL, 0);
1334 if (Info->Count >= Info->MaxCount)
/freebsd-13-stable/sys/contrib/dev/acpica/include/
H A Dactbl3.h755 UINT32 MaxCount; /* Maximum counter value supported */ member in struct:acpi_table_wdat
833 UINT16 MaxCount; /* Maximum counter value supported */ member in struct:acpi_table_wddt
878 UINT16 MaxCount; /* Maximum counter value supported */ member in struct:acpi_table_wdrt
H A Dacdebug.h189 UINT32 MaxCount; member in struct:acpi_db_execute_walk
/freebsd-13-stable/sys/contrib/dev/acpica/common/
H A Ddmtbinfo3.c580 {ACPI_DMT_UINT32, ACPI_WDAT_OFFSET (MaxCount), "Max Count", 0},
616 {ACPI_DMT_UINT16, ACPI_WDDT_OFFSET (MaxCount), "Max Count", 0},
660 {ACPI_DMT_UINT16, ACPI_WDRT_OFFSET (MaxCount), "Max Count", 0},
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Frontend/
H A DVerifyDiagnosticConsumer.h200 static const unsigned MaxCount = std::numeric_limits<unsigned>::max(); member in class:clang::VerifyDiagnosticConsumer::Directive
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopUnrollPass.cpp208 UP.MaxCount = std::numeric_limits<unsigned>::max();
243 UP.MaxCount = UnrollMaxCount;
909 if (UP.Count > UP.MaxCount)
910 UP.Count = UP.MaxCount;
938 if (UP.Count > UP.MaxCount)
939 UP.Count = UP.MaxCount;
1040 if (UP.Count > UP.MaxCount)
1041 UP.Count = UP.MaxCount;
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp1040 uint64_t MaxCount; member in struct:__anon4858::HotFuncInfo
1044 : FuncName(), TotalCount(0), TotalCountPercent(0.0f), MaxCount(0),
1048 : FuncName(FN), TotalCount(TS), TotalCountPercent(TSP), MaxCount(MS),
1093 FOS << R.MaxCount;
1127 uint64_t MaxCount = 0; local
1131 MaxCount = FuncProf.getMaxCountInside();
1136 if (MaxCount >= MinCountThreshold) {
1138 std::make_pair(&(I.second), MaxCount));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.cpp277 UP.MaxCount = 1;
281 UP.MaxCount = Max;
282 if (UP.MaxCount <= 1)

Completed in 251 milliseconds

12