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

  /art/runtime/jit/
profile_compilation_info.h 56 inline_caches(caches) {}
59 std::vector<ProfileInlineCache> inline_caches; member in struct:art::ProfileMethodInfo
226 : inline_caches(inline_cache_map) {}
230 const InlineCacheMap* const inline_caches; member in struct:art::ProfileCompilationInfo::OfflineProfileMethodInfo
profile_compilation_info.cc 614 if (pmi.inline_caches == nullptr) {
618 for (const auto& pmi_inline_cache_it : *pmi.inline_caches) {
658 for (const ProfileMethodInfo::ProfileInlineCache& cache : pmi.inline_caches) {
    [all...]
profile_compilation_info_test.cc 188 for (const auto& inline_cache : pmi.inline_caches) {
255 const_cast<ProfileCompilationInfo::InlineCacheMap*>(pmi->inline_caches);
265 const_cast<ProfileCompilationInfo::InlineCacheMap*>(pmi->inline_caches);
    [all...]
jit_code_cache.cc 1358 std::vector<ProfileMethodInfo::ProfileInlineCache> inline_caches; local
1365 MethodReference(dex_file, method->GetDexMethodIndex()), inline_caches); local
1422 MethodReference(dex_file, method->GetDexMethodIndex()), inline_caches); local
    [all...]
  /art/profman/
profile_assistant_test.cc 317 ASSERT_EQ(pmi->inline_caches->size(), 1u);
318 const ProfileCompilationInfo::DexPcData& dex_pc_data = pmi->inline_caches->begin()->second;
    [all...]
profman.cc 856 std::vector<ProfileMethodInfo::ProfileInlineCache> inline_caches; local
    [all...]
  /art/compiler/optimizing/
inliner.cc 633 const auto it = offline_profile.inline_caches->find(invoke_instruction->GetDexPc());
634 if (it == offline_profile.inline_caches->end()) {
    [all...]

Completed in 228 milliseconds