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 65 : dex_file(dex), dex_method_index(method_index), inline_caches(caches) {}
69 const std::vector<ProfileInlineCache> inline_caches; member in struct:art::ProfileMethodInfo
184 : inline_caches(inline_cache_map) {}
188 const InlineCacheMap* const inline_caches; member in struct:art::ProfileCompilationInfo::OfflineProfileMethodInfo
profile_compilation_info.cc 501 if (pmi.inline_caches == nullptr) {
505 for (const auto& pmi_inline_cache_it : *pmi.inline_caches) {
546 for (const ProfileMethodInfo::ProfileInlineCache& cache : pmi.inline_caches) {
    [all...]
jit_code_cache.cc 1288 std::vector<ProfileMethodInfo::ProfileInlineCache> inline_caches; local
    [all...]
profile_compilation_info_test.cc 177 for (const auto& inline_cache : pmi.inline_caches) {
242 const_cast<ProfileCompilationInfo::InlineCacheMap*>(pmi->inline_caches);
252 const_cast<ProfileCompilationInfo::InlineCacheMap*>(pmi->inline_caches);
    [all...]
  /art/profman/
profile_assistant_test.cc 269 ASSERT_EQ(pmi->inline_caches->size(), 1u);
270 const ProfileCompilationInfo::DexPcData& dex_pc_data = pmi->inline_caches->begin()->second;
718 ASSERT_TRUE(pmi_no_inline_cache->inline_caches->empty());
802 ASSERT_EQ(pmi->inline_caches->size(), 1u);
803 const ProfileCompilationInfo::DexPcData& dex_pc_data = pmi->inline_caches->begin()->second;
    [all...]
profman.cc 769 std::vector<ProfileMethodInfo::ProfileInlineCache> inline_caches; local
783 inline_caches.emplace_back(dex_pc, is_missing_types, classes);
785 pmi.emplace_back(class_ref.dex_file, method_index, inline_caches);
    [all...]
  /art/compiler/optimizing/
inliner.cc 622 const auto it = offline_profile.inline_caches->find(invoke_instruction->GetDexPc());
623 if (it == offline_profile.inline_caches->end()) {
    [all...]

Completed in 241 milliseconds