Home
last modified time | relevance | path

Searched refs:inline_cache (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/art/profman/
H A Dinline_cache_format_util.cc25 TypeReferenceValueComparator>& inline_cache) { in GetInlineCacheLine() argument
26 if (inline_cache.empty()) { in GetInlineCacheLine()
31 for (const auto& [target_ref, inline_cache_data] : inline_cache) { in GetInlineCacheLine()
H A Dinline_cache_format_util.h36 TypeReferenceValueComparator>& inline_cache);
/aosp_15_r20/art/libprofile/profile/
H A Dprofile_compilation_info.cc1367 InlineCacheMap* inline_cache = data->FindOrAddHotMethod(pmi.ref.index); in AddMethod() local
1368 DCHECK(inline_cache != nullptr); in AddMethod()
1402 FindOrAddDexPc(inline_cache, cache.dex_pc)->SetIsMissingTypes(); in AddMethod()
1406 FindOrAddDexPc(inline_cache, cache.dex_pc)->SetIsMegamorphic(); in AddMethod()
1410 DexPcData* dex_pc_data = FindOrAddDexPc(inline_cache, cache.dex_pc); in AddMethod()
2056 InlineCacheMap* inline_cache = dex_data->FindOrAddHotMethod(other_method_index); in MergeWith() local
2057 if (inline_cache == nullptr) { in MergeWith()
2064 DexPcData* dex_pc_data = FindOrAddDexPc(inline_cache, other_dex_pc); in MergeWith()
2495 ProfileCompilationInfo::FindOrAddDexPc(InlineCacheMap* inline_cache, uint32_t dex_pc) { in FindOrAddDexPc() argument
2496 return &(inline_cache->FindOrAdd(dex_pc, DexPcData(inline_cache->get_allocator()))->second); in FindOrAddDexPc()
[all …]
H A Dprofile_compilation_info.h1043 static DexPcData* FindOrAddDexPc(InlineCacheMap* inline_cache, uint32_t dex_pc);