Lines Matching refs:ProfilingInfo
589 ProfilingInfo* info = it->second; in RemoveMethodsIn()
1212 ProfilingInfo* JitCodeCache::GetProfilingInfo(ArtMethod* method, Thread* self) { in GetProfilingInfo()
1232 ProfilingInfo* info = it->second; in MaybeUpdateInlineCache()
1382 ProfilingInfo* JitCodeCache::AddProfilingInfo(Thread* self, in AddProfilingInfo()
1387 ProfilingInfo* info = nullptr; in AddProfilingInfo()
1401 ProfilingInfo* JitCodeCache::AddProfilingInfoInternal( in AddProfilingInfoInternal()
1414 ProfilingInfo::ComputeSize(inline_cache_entries.size(), branch_cache_entries.size()); in AddProfilingInfoInternal()
1421 ProfilingInfo* info = in AddProfilingInfoInternal()
1422 new (writable_data) ProfilingInfo(method, inline_cache_entries, branch_cache_entries); in AddProfilingInfoInternal()
1453 SafeMap<ArtMethod*, ProfilingInfo*> profiling_infos; in GetProfiledMethods()
1464 ProfilingInfo* info = (it == profiling_infos.end()) ? nullptr : it->second; in GetProfiledMethods()
1483 (ProfilingInfo::GetOptimizeThreshold() - info->GetBaselineHotnessCount()) < in GetProfiledMethods()
1630 ProfilingInfo* JitCodeCache::NotifyCompilerUse(ArtMethod* method, Thread* self) { in NotifyCompilerUse()