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

  /art/runtime/jit/
profile_compilation_info_test.cc 196 ProfileCompilationInfo::DexPcData& dex_pc_data = local
200 dex_pc_data.SetIsMissingTypes();
205 dex_pc_data.AddClass(dex_profile_index, class_ref.TypeIndex());
225 ProfileCompilationInfo::DexPcData dex_pc_data(allocator_.get());
226 dex_pc_data.AddClass(0, dex::TypeIndex(0));
227 ic_map->Put(dex_pc, dex_pc_data);
231 ProfileCompilationInfo::DexPcData dex_pc_data(allocator_.get());
232 dex_pc_data.AddClass(0, dex::TypeIndex(0));
233 dex_pc_data.AddClass(1, dex::TypeIndex(1));
234 dex_pc_data.AddClass(2, dex::TypeIndex(2))
    [all...]
profile_compilation_info.cc 483 const DexPcData dex_pc_data = inline_cache_it.second;
484 const ClassSet& classes = dex_pc_data.classes;
494 if (dex_pc_data.is_missing_types) {
495 DCHECK(!dex_pc_data.is_megamorphic); // at this point the megamorphic flag should not be set.
499 } else if (dex_pc_data.is_megamorphic) {
674 DexPcData* dex_pc_data = FindOrAddDexPc(inline_cache, pmi_ic_dex_pc);
675 if (dex_pc_data->is_missing_types || dex_pc_data->is_megamorphic) {
681 dex_pc_data->SetIsMissingTypes();
685 dex_pc_data->SetIsMegamorphic()
    [all...]
  /art/profman/
profile_assistant_test.cc 159 ProfileCompilationInfo::DexPcData dex_pc_data(allocator_.get());
160 dex_pc_data.AddClass(0, dex::TypeIndex(0));
161 ic_map->Put(dex_pc, dex_pc_data);
165 ProfileCompilationInfo::DexPcData dex_pc_data(allocator_.get());
166 dex_pc_data.AddClass(0, dex::TypeIndex(0));
167 dex_pc_data.AddClass(1, dex::TypeIndex(1));
169 ic_map->Put(dex_pc, dex_pc_data);
173 ProfileCompilationInfo::DexPcData dex_pc_data(allocator_.get());
174 dex_pc_data.SetIsMegamorphic();
175 ic_map->Put(dex_pc, dex_pc_data);
352 const ProfileCompilationInfo::DexPcData& dex_pc_data = pmi->inline_caches->begin()->second; local
1072 const ProfileCompilationInfo::DexPcData& dex_pc_data = pmi->inline_caches->begin()->second; local
    [all...]
  /art/compiler/optimizing/
inliner.cc 700 const ProfileCompilationInfo::DexPcData& dex_pc_data = it->second; local
702 if (dex_pc_data.is_missing_types) {
705 if (dex_pc_data.is_megamorphic) {
709 DCHECK_LE(dex_pc_data.classes.size(), InlineCache::kIndividualCacheSize);
736 for (const ProfileCompilationInfo::ClassReference& class_ref : dex_pc_data.classes) {
    [all...]

Completed in 78 milliseconds