| /freebsd-12.1/contrib/llvm/include/llvm/IR/ |
| H A D | ProfileSummary.h | 52 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 D | ProfileCommon.h | 51 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 D | PGOMemOPSizeOpt.cpp | 276 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 D | PGOInstrumentation.cpp | 954 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 D | IndirectCallPromotion.cpp | 304 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 D | Instrumentation.h | 210 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 D | Marshallers.h | 643 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 D | ProfileSummary.cpp | 160 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 D | ProfileSummaryBuilder.cpp | 93 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 D | actbl3.h | 736 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 D | acdebug.h | 188 UINT32 MaxCount; member
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/ |
| H A D | LoopUnrollPass.cpp | 184 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 D | dmtbinfo3.c | 566 {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 D | dbmethod.c | 629 if (Info->Count >= Info->MaxCount) in AcpiDbWalkForExecute() 659 Info.MaxCount = ACPI_UINT32_MAX; in AcpiDbEvaluatePredefinedNames()
|
| H A D | dbtest.c | 1137 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 D | PGOInstrumentation.h | 71 uint64_t MaxCount);
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Frontend/ |
| H A D | VerifyDiagnosticConsumer.h | 162 static const unsigned MaxCount = std::numeric_limits<unsigned>::max();
|
| /freebsd-12.1/contrib/llvm/lib/Target/SystemZ/ |
| H A D | SystemZTargetTransformInfo.cpp | 275 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 D | VerifyDiagnosticConsumer.cpp | 524 Max = Directive::MaxCount; in ParseDirective() 539 Max = Directive::MaxCount; in ParseDirective()
|
| /freebsd-12.1/contrib/llvm/lib/Target/AArch64/ |
| H A D | AArch64TargetTransformInfo.cpp | 748 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 D | AMDGPUTargetTransformInfo.cpp | 95 UP.MaxCount = std::numeric_limits<unsigned>::max(); in getUnrollingPreferences()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchersInternal.h | 1356 template <unsigned MinCount, unsigned MaxCount> 1362 static_assert(MinCount <= sizeof...(Ms) && sizeof...(Ms) <= MaxCount,
|
| /freebsd-12.1/contrib/llvm/include/llvm/Analysis/ |
| H A D | TargetTransformInfo.h | 394 unsigned MaxCount; member
|
| H A D | ScalarEvolution.h | 1277 const SCEV *MaxCount, bool MaxOrZero);
|
| /freebsd-12.1/usr.sbin/acpi/acpidump/ |
| H A D | acpi.c | 698 wddt->MaxCount, wddt->MinCount, wddt->Period); in acpi_handle_wddt()
|