Lines Matching refs:dex_pc_data

1259       DexPcData* dex_pc_data = FindOrAddDexPc(inline_cache, cache.dex_pc);  in AddMethod()  local
1260 if (dex_pc_data->is_missing_types || dex_pc_data->is_megamorphic) { in AddMethod()
1266 dex_pc_data->AddClass(type_index); in AddMethod()
1269 dex_pc_data->SetIsMissingTypes(); in AddMethod()
1334 const DexPcData& dex_pc_data = inline_cache_it.second; in VerifyProfileData() local
1335 if (dex_pc_data.is_missing_types || dex_pc_data.is_megamorphic) { in VerifyProfileData()
1337 CHECK(dex_pc_data.classes.empty()); in VerifyProfileData()
1341 for (const dex::TypeIndex& type_index : dex_pc_data.classes) { in VerifyProfileData()
1910 DexPcData* dex_pc_data = FindOrAddDexPc(inline_cache, other_dex_pc); in MergeWith() local
1912 dex_pc_data->SetIsMissingTypes(); in MergeWith()
1914 dex_pc_data->SetIsMegamorphic(); in MergeWith()
1926 dex_pc_data->AddClass(type_index); in MergeWith()
2560 const DexPcData& dex_pc_data = inline_cache_entry.second; in MethodsDataSize() local
2561 num_class_entries += dex_pc_data.classes.size(); in MethodsDataSize()
2645 const DexPcData& dex_pc_data = inline_cache_entry.second; in WriteMethods() local
2646 const ArenaSet<dex::TypeIndex>& classes = dex_pc_data.classes; in WriteMethods()
2656 if (dex_pc_data.is_missing_types) { in WriteMethods()
2658 DCHECK(!dex_pc_data.is_megamorphic); in WriteMethods()
2662 } else if (dex_pc_data.is_megamorphic) { in WriteMethods()
2769 DexPcData* dex_pc_data = FindOrAddDexPc(inline_cache, dex_pc); in ReadMethods() local
2770 DCHECK(dex_pc_data != nullptr); in ReadMethods()
2779 dex_pc_data->SetIsMissingTypes(); in ReadMethods()
2781 dex_pc_data->SetIsMegamorphic(); in ReadMethods()
2811 dex_pc_data->AddClass(dex::TypeIndex(type_index)); in ReadMethods()