Home
last modified time | relevance | path

Searched refs:CounterPtr (Results 1 – 6 of 6) sorted by relevance

/external/compiler-rt/lib/profile/
DInstrProfilingPlatformOther.c38 CountersFirst = Data->CounterPtr; in __llvm_profile_register_function()
39 CountersLast = (uint64_t *)Data->CounterPtr + Data->NumCounters; in __llvm_profile_register_function()
46 UPDATE_FIRST(CountersFirst, (uint64_t *)Data->CounterPtr); in __llvm_profile_register_function()
52 UPDATE_LAST(CountersLast, (uint64_t *)Data->CounterPtr + Data->NumCounters); in __llvm_profile_register_function()
DInstrProfData.inc78 INSTR_PROF_DATA(const IntPtrT, llvm::Type::getInt64PtrTy(Ctx), CounterPtr, \
79 ConstantExpr::getBitCast(CounterPtr, \
/external/llvm/lib/Transforms/Instrumentation/
DInstrProfiling.cpp322 auto *CounterPtr = in getOrCreateRegionCounters() local
326 CounterPtr->setVisibility(NamePtr->getVisibility()); in getOrCreateRegionCounters()
327 CounterPtr->setSection(getCountersSection()); in getOrCreateRegionCounters()
328 CounterPtr->setAlignment(8); in getOrCreateRegionCounters()
329 CounterPtr->setComdat(ProfileVarsComdat); in getOrCreateRegionCounters()
361 PD.RegionCounters = CounterPtr; in getOrCreateRegionCounters()
368 return CounterPtr; in getOrCreateRegionCounters()
/external/llvm/include/llvm/ProfileData/
DInstrProfReader.h215 const uint64_t *getCounter(IntPtrT CounterPtr) const { in getCounter() argument
216 ptrdiff_t Offset = (swap(CounterPtr) - CountersDelta) / sizeof(uint64_t); in getCounter()
DInstrProfData.inc78 INSTR_PROF_DATA(const IntPtrT, llvm::Type::getInt64PtrTy(Ctx), CounterPtr, \
79 ConstantExpr::getBitCast(CounterPtr, \
/external/llvm/lib/ProfileData/
DInstrProfReader.cpp356 IntPtrT CounterPtr = Data->CounterPtr; in readRawCounts() local
360 auto RawCounts = makeArrayRef(getCounter(CounterPtr), NumCounters); in readRawCounts()