Lines Matching refs:method_index
839 uint16_t method_index = last_method_index + diff_with_last_method_index; in ReadMethods() local
840 last_method_index = method_index; in ReadMethods()
841 InlineCacheMap* inline_cache = data->FindOrAddHotMethod(method_index); in ReadMethods()
1884 for (uint32_t method_index : create_shuffled_range(methods_required_in_profile, in GenerateTestProfile() local
1888 flags |= ((method_index & 1) != 0) in GenerateTestProfile()
1891 data->AddMethod(static_cast<MethodHotness::Flag>(flags), method_index); in GenerateTestProfile()
2008 ProfileCompilationInfo::DexFileData::FindOrAddHotMethod(uint16_t method_index) { in FindOrAddHotMethod() argument
2009 if (method_index >= num_method_ids) { in FindOrAddHotMethod()
2010 LOG(ERROR) << "Invalid method index " << method_index << ". num_method_ids=" << num_method_ids; in FindOrAddHotMethod()
2014 method_index, in FindOrAddHotMethod()
2096 MethodHotness::Flag flag, size_t method_index) const { in MethodFlagBitmapIndex()
2097 DCHECK_LT(method_index, num_method_ids); in MethodFlagBitmapIndex()
2100 return method_index + FlagBitmapIndex(flag) * num_method_ids; in MethodFlagBitmapIndex()