HomeSort by relevance Sort by last modified time
    Searched refs:NumCounters (Results 1 - 21 of 21) sorted by null

  /external/compiler-rt/lib/profile/
InstrProfilingMerge.c 76 SrcData->NumCounters != DstData->NumCounters)
111 NC = SrcData->NumCounters;
InstrProfilingPlatformOther.c 46 CountersLast = (uint64_t *)Data->CounterPtr + Data->NumCounters;
55 CountersLast, (uint64_t *)Data->CounterPtr + Data->NumCounters);
InstrProfData.inc 90 INSTR_PROF_DATA(const uint32_t, llvm::Type::getInt32Ty(Ctx), NumCounters, \
91 ConstantInt::get(llvm::Type::getInt32Ty(Ctx), NumCounters))
  /external/llvm/lib/Transforms/Instrumentation/
InstrProfiling.cpp 346 uint64_t NumCounters = Inc->getNumCounters()->getZExtValue();
348 ArrayType *CounterTy = ArrayType::get(Type::getInt64Ty(Ctx), NumCounters);
449 uint64_t NumCounters = TotalNS * NumCountersPerValueSite;
458 if (NumCounters < INSTR_PROF_MIN_VAL_COUNTS)
459 NumCounters = std::max(INSTR_PROF_MIN_VAL_COUNTS, (int)NumCounters * 2);
468 ArrayType *VNodesTy = ArrayType::get(VNodeTy, NumCounters);
PGOInstrumentation.cpp 346 unsigned NumCounters = 0;
350 NumCounters++;
366 Builder.getInt64(FuncInfo.FunctionHash), Builder.getInt32(NumCounters),
    [all...]