Lines Matching refs:dex_pc_data
545 const DexPcData dex_pc_data = inline_cache_it.second; in AddInlineCacheToBuffer() local
546 const ClassSet& classes = dex_pc_data.classes; in AddInlineCacheToBuffer()
556 if (dex_pc_data.is_missing_types) { in AddInlineCacheToBuffer()
557 DCHECK(!dex_pc_data.is_megamorphic); // at this point the megamorphic flag should not be set. in AddInlineCacheToBuffer()
561 } else if (dex_pc_data.is_megamorphic) { in AddInlineCacheToBuffer()
737 DexPcData* dex_pc_data = FindOrAddDexPc(inline_cache, pmi_ic_dex_pc); in AddMethod() local
738 if (dex_pc_data->is_missing_types || dex_pc_data->is_megamorphic) { in AddMethod()
744 dex_pc_data->SetIsMissingTypes(); in AddMethod()
748 dex_pc_data->SetIsMegamorphic(); in AddMethod()
761 dex_pc_data->AddClass(class_dex_data->profile_index, class_ref.type_index); in AddMethod()
788 DexPcData* dex_pc_data = FindOrAddDexPc(inline_cache, cache.dex_pc); in AddMethod() local
789 if (dex_pc_data->is_missing_types) { in AddMethod()
793 dex_pc_data->AddClass(class_dex_data->profile_index, class_ref.TypeIndex()); in AddMethod()
833 DexPcData* dex_pc_data = FindOrAddDexPc(inline_cache, dex_pc); in ReadInlineCache() local
835 dex_pc_data->SetIsMissingTypes(); in ReadInlineCache()
839 dex_pc_data->SetIsMegamorphic(); in ReadInlineCache()
859 dex_pc_data->SetIsMissingTypes(); in ReadInlineCache()
861 dex_pc_data->AddClass(it->second, dex::TypeIndex(type_index)); in ReadInlineCache()
1231 const DexPcData dex_pc_data = inline_cache_it.second; in VerifyProfileData() local
1232 if (dex_pc_data.is_missing_types || dex_pc_data.is_megamorphic) { in VerifyProfileData()
1237 const ClassSet &classes = dex_pc_data.classes; in VerifyProfileData()
1684 DexPcData* dex_pc_data = FindOrAddDexPc(inline_cache, other_dex_pc); in MergeWith() local
1686 dex_pc_data->SetIsMissingTypes(); in MergeWith()
1688 dex_pc_data->SetIsMegamorphic(); in MergeWith()
1691 dex_pc_data->AddClass(dex_profile_index_remap.Get( in MergeWith()
2066 const DexPcData dex_pc_data = inline_cache_it.second; in operator ==() local
2072 if (dex_pc_data.is_megamorphic != other_dex_pc_data.is_megamorphic || in operator ==()
2073 dex_pc_data.is_missing_types != other_dex_pc_data.is_missing_types) { in operator ==()
2076 for (const ClassReference& class_ref : dex_pc_data.classes) { in operator ==()