HomeSort by: relevance | last modified time | path
    Searched refs:NumCounters (Results 1 - 9 of 9) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/profile/
PGOProfiling.c 36 void llvm_pgo_emit(const char *MangledName, uint32_t NumCounters,
39 fprintf(OutputFile, "%s %u\n", MangledName, NumCounters);
40 for (i = 0; i < NumCounters; ++i)
InstrProfilingPlatformOther.c 39 CountersLast = (uint64_t *)Data->CounterPtr + Data->NumCounters;
52 UPDATE_LAST(CountersLast, (uint64_t *)Data->CounterPtr + Data->NumCounters);
InstrProfData.inc 71 INSTR_PROF_DATA(const uint32_t, llvm::Type::getInt32Ty(Ctx), NumCounters, \
72 ConstantInt::get(llvm::Type::getInt32Ty(Ctx), NumCounters))
  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/
InstrProfReader.cpp 274 uint64_t NumCounters;
277 if ((Line++)->getAsInteger(10, NumCounters))
279 if (NumCounters == 0)
284 Record.Counts.reserve(NumCounters);
285 for (uint64_t I = 0; I < NumCounters; ++I) {
422 uint32_t NumCounters = swap(Data->NumCounters);
424 if (NumCounters == 0)
432 if (MaxNumCounters < 0 || NumCounters > (uint32_t)MaxNumCounters)
436 ((uint32_t)CounterOffset + NumCounters) > (uint32_t)MaxNumCounters
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
InstrProfiling.cpp 868 uint64_t NumCounters = Inc->getNumCounters()->getZExtValue();
870 ArrayType *CounterTy = ArrayType::get(Type::getInt64Ty(Ctx), NumCounters);
974 uint64_t NumCounters = TotalNS * NumCountersPerValueSite;
983 if (NumCounters < INSTR_PROF_MIN_VAL_COUNTS)
984 NumCounters = std::max(INSTR_PROF_MIN_VAL_COUNTS, (int)NumCounters * 2);
993 ArrayType *VNodesTy = ArrayType::get(VNodeTy, NumCounters);
PGOInstrumentation.cpp 907 unsigned NumCounters =
919 Builder.getInt64(FuncInfo.FunctionHash), Builder.getInt32(NumCounters),
924 FuncInfo.SIVisitor.instrumentSelects(F, &I, NumCounters, FuncInfo.FuncNameVar,
926 assert(I == NumCounters);
1174 unsigned NumCounters =
1178 if (NumCounters != CountFromProfile.size()) {
GCOVProfiling.cpp 1291 auto *NumCounters = Builder.CreateLoad(
1302 Builder.CreateICmpSLT(Builder.getInt32(0), NumCounters);
1345 auto *CounterLoopCond = Builder.CreateICmpSLT(NextJV, NumCounters);
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/windows/
winperf.d 120 DWORD NumCounters;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
InstrProfData.inc 89 INSTR_PROF_DATA(const uint32_t, llvm::Type::getInt32Ty(Ctx), NumCounters, \
90 ConstantInt::get(llvm::Type::getInt32Ty(Ctx), NumCounters))

Completed in 39 milliseconds