Home
last modified time | relevance | path

Searched refs:MaxCount (Results 1 – 25 of 27) sorted by relevance

12

/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DProfileSummary.h52 uint64_t TotalCount, MaxCount, MaxInternalCount, MaxFunctionCount; variable
61 uint64_t TotalCount, uint64_t MaxCount, in ProfileSummary() argument
65 TotalCount(TotalCount), MaxCount(MaxCount), in ProfileSummary()
79 uint64_t getMaxCount() { return MaxCount; } in getMaxCount()
/freebsd-12.1/contrib/llvm/include/llvm/ProfileData/
H A DProfileCommon.h51 uint64_t MaxCount = 0; variable
94 if (Count > MaxCount) in addCount()
95 MaxCount = Count; in addCount()
/freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/
H A DPGOMemOPSizeOpt.cpp276 uint64_t MaxCount = 0; in perform() local
297 if (C > MaxCount) in perform()
298 MaxCount = C; in perform()
313 if (RemainCount > MaxCount) in perform()
314 MaxCount = RemainCount; in perform()
396 setProfMetadata(Func.getParent(), SI, CaseCounts, MaxCount); in perform()
H A DPGOInstrumentation.cpp954 else if (MaxCount <= ColdFunctionThreshold.scale(ProgramMaxCount)) in markFunctionAttributes()
1185 uint64_t MaxCount = 0; in setBranchWeights() local
1194 if (EdgeCount > MaxCount) in setBranchWeights()
1195 MaxCount = EdgeCount; in setBranchWeights()
1198 setProfMetadata(M, TI, EdgeCounts, MaxCount); in setBranchWeights()
1252 uint64_t MaxCount = std::max(SCounts[0], SCounts[1]); in annotateOneSelectInst() local
1253 if (MaxCount) in annotateOneSelectInst()
1254 setProfMetadata(F.getParent(), &SI, SCounts, MaxCount); in annotateOneSelectInst()
1602 uint64_t MaxCount) { in setProfMetadata() argument
1604 assert(MaxCount > 0 && "Bad max count"); in setProfMetadata()
[all …]
H A DIndirectCallPromotion.cpp304 uint64_t MaxCount = (Count >= ElseCount ? Count : ElseCount); in promoteIndirectCall() local
305 uint64_t Scale = calculateCountScale(MaxCount); in promoteIndirectCall()
/freebsd-12.1/contrib/llvm/include/llvm/Transforms/
H A DInstrumentation.h210 static inline uint64_t calculateCountScale(uint64_t MaxCount) { in calculateCountScale() argument
211 return MaxCount < std::numeric_limits<uint32_t>::max() in calculateCountScale()
213 : MaxCount / std::numeric_limits<uint32_t>::max() + 1; in calculateCountScale()
/freebsd-12.1/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.h643 VariadicOperatorMatcherDescriptor(unsigned MinCount, unsigned MaxCount,
645 : MinCount(MinCount), MaxCount(MaxCount), Op(Op),
651 if (Args.size() < MinCount || MaxCount < Args.size()) {
653 (MaxCount == std::numeric_limits<unsigned>::max() ? ""
654 : Twine(MaxCount))
696 const unsigned MaxCount;
786 template <unsigned MinCount, unsigned MaxCount>
788 ast_matchers::internal::VariadicOperatorMatcherFunc<MinCount, MaxCount>
792 MinCount, MaxCount, Func.Op, MatcherName);
/freebsd-12.1/contrib/llvm/lib/IR/
H A DProfileSummary.cpp160 uint64_t NumCounts, TotalCount, NumFunctions, MaxFunctionCount, MaxCount, in getFromMD() local
165 if (!getVal(dyn_cast<MDTuple>(Tuple->getOperand(2)), "MaxCount", MaxCount)) in getFromMD()
183 MaxCount, MaxInternalCount, MaxFunctionCount, in getFromMD()
/freebsd-12.1/contrib/llvm/lib/ProfileData/
H A DProfileSummaryBuilder.cpp93 ProfileSummary::PSK_Sample, DetailedSummary, TotalCount, MaxCount, 0, in getSummary()
100 ProfileSummary::PSK_Instr, DetailedSummary, TotalCount, MaxCount, in getSummary()
/freebsd-12.1/sys/contrib/dev/acpica/include/
H A Dactbl3.h736 UINT32 MaxCount; /* Maximum counter value supported */ member
814 UINT16 MaxCount; /* Maximum counter value supported */ member
859 UINT16 MaxCount; /* Maximum counter value supported */ member
H A Dacdebug.h188 UINT32 MaxCount; member
/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DLoopUnrollPass.cpp184 UP.MaxCount = std::numeric_limits<unsigned>::max(); in gatherUnrollingPreferences()
215 UP.MaxCount = UnrollMaxCount; in gatherUnrollingPreferences()
832 if (UP.Count > UP.MaxCount) in computeUnrollCount()
833 UP.Count = UP.MaxCount; in computeUnrollCount()
861 if (UP.Count > UP.MaxCount) in computeUnrollCount()
862 UP.Count = UP.MaxCount; in computeUnrollCount()
955 if (UP.Count > UP.MaxCount) in computeUnrollCount()
956 UP.Count = UP.MaxCount; in computeUnrollCount()
/freebsd-12.1/sys/contrib/dev/acpica/common/
H A Ddmtbinfo3.c566 {ACPI_DMT_UINT32, ACPI_WDAT_OFFSET (MaxCount), "Max Count", 0},
602 {ACPI_DMT_UINT16, ACPI_WDDT_OFFSET (MaxCount), "Max Count", 0},
646 {ACPI_DMT_UINT16, ACPI_WDRT_OFFSET (MaxCount), "Max Count", 0},
/freebsd-12.1/sys/contrib/dev/acpica/components/debugger/
H A Ddbmethod.c629 if (Info->Count >= Info->MaxCount) in AcpiDbWalkForExecute()
659 Info.MaxCount = ACPI_UINT32_MAX; in AcpiDbEvaluatePredefinedNames()
H A Ddbtest.c1137 Info.MaxCount = ACPI_UINT32_MAX; in AcpiDbEvaluateAllPredefinedNames()
1141 Info.MaxCount = strtoul (CountArg, NULL, 0); in AcpiDbEvaluateAllPredefinedNames()
1303 if (Info->Count >= Info->MaxCount) in AcpiDbEvaluateOnePredefinedName()
/freebsd-12.1/contrib/llvm/include/llvm/Transforms/Instrumentation/
H A DPGOInstrumentation.h71 uint64_t MaxCount);
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Frontend/
H A DVerifyDiagnosticConsumer.h162 static const unsigned MaxCount = std::numeric_limits<unsigned>::max();
/freebsd-12.1/contrib/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.cpp275 UP.MaxCount = 1; in getUnrollingPreferences()
279 UP.MaxCount = Max; in getUnrollingPreferences()
280 if (UP.MaxCount <= 1) in getUnrollingPreferences()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp524 Max = Directive::MaxCount; in ParseDirective()
539 Max = Directive::MaxCount; in ParseDirective()
/freebsd-12.1/contrib/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.cpp748 UP.MaxCount = 1 << Log2_32(MaxStridedLoads / StridedLoads); in getFalkorUnrollingPreferences()
750 << UP.MaxCount << '\n'); in getFalkorUnrollingPreferences()
/freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetTransformInfo.cpp95 UP.MaxCount = std::numeric_limits<unsigned>::max(); in getUnrollingPreferences()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h1356 template <unsigned MinCount, unsigned MaxCount>
1362 static_assert(MinCount <= sizeof...(Ms) && sizeof...(Ms) <= MaxCount,
/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h394 unsigned MaxCount; member
H A DScalarEvolution.h1277 const SCEV *MaxCount, bool MaxOrZero);
/freebsd-12.1/usr.sbin/acpi/acpidump/
H A Dacpi.c698 wddt->MaxCount, wddt->MinCount, wddt->Period); in acpi_handle_wddt()

12