Searched refs:NumCounters (Results 1 - 9 of 9) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingMerge.c76 SrcData->NumCounters != DstData->NumCounters)
111 NC = SrcData->NumCounters;
H A DInstrProfilingPlatformOther.c49 CountersLast = (uint64_t *)Data->CounterPtr + Data->NumCounters;
58 CountersLast, (uint64_t *)Data->CounterPtr + Data->NumCounters);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Drelease.h52 PackedCounterArray(uptr NumCounters, uptr MaxValue) : N(NumCounters) { argument
53 CHECK_GT(NumCounters, 0);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfReader.cpp268 uint64_t NumCounters;
271 if ((Line++)->getAsInteger(10, NumCounters))
273 if (NumCounters == 0)
278 Record.Counts.reserve(NumCounters);
279 for (uint64_t I = 0; I < NumCounters; ++I) {
416 uint32_t NumCounters = swap(Data->NumCounters);
418 if (NumCounters == 0)
426 if (MaxNumCounters < 0 || NumCounters > (uint32_t)MaxNumCounters)
430 ((uint32_t)CounterOffset + NumCounters) > (uint32_
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp839 uint64_t NumCounters = Inc->getNumCounters()->getZExtValue(); local
841 ArrayType *CounterTy = ArrayType::get(Type::getInt64Ty(Ctx), NumCounters);
945 uint64_t NumCounters = TotalNS * NumCountersPerValueSite;
954 if (NumCounters < INSTR_PROF_MIN_VAL_COUNTS)
955 NumCounters = std::max(INSTR_PROF_MIN_VAL_COUNTS, (int)NumCounters * 2);
964 ArrayType *VNodesTy = ArrayType::get(VNodeTy, NumCounters);
H A DPGOInstrumentation.cpp852 unsigned NumCounters = local
864 Builder.getInt64(FuncInfo.FunctionHash), Builder.getInt32(NumCounters),
869 FuncInfo.SIVisitor.instrumentSelects(F, &I, NumCounters, FuncInfo.FuncNameVar,
871 assert(I == NumCounters);
1117 unsigned NumCounters = local
1121 if (NumCounters != CountFromProfile.size()) {
H A DGCOVProfiling.cpp1169 auto *NumCounters =
1179 Builder.CreateICmpSLT(Builder.getInt32(0), NumCounters);
1217 auto *CounterLoopCond = Builder.CreateICmpSLT(NextJV, NumCounters);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/include/profile/
H A DInstrProfData.inc89 INSTR_PROF_DATA(const uint32_t, llvm::Type::getInt32Ty(Ctx), NumCounters, \
90 ConstantInt::get(llvm::Type::getInt32Ty(Ctx), NumCounters))
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfData.inc89 INSTR_PROF_DATA(const uint32_t, llvm::Type::getInt32Ty(Ctx), NumCounters, \
90 ConstantInt::get(llvm::Type::getInt32Ty(Ctx), NumCounters))

Completed in 100 milliseconds