Home
last modified time | relevance | path

Searched refs:class_index (Results 1 – 8 of 8) sorted by relevance

/art/tools/
Danalyze-init-failures.py123 class_index = {}
125 class_index[clazz] = i
129 for (r_class, r_id) in class_index.items():
144 print(' n%d -> n%d;' % (class_index[failed_class], class_index[error_class]))
/art/test/1959-redefine-object-instrument/
Dfake_redef_object.cc55 dex::u4 class_index = reader.FindClassIndex("Ljava/lang/Object;"); in RedefineObjectHook() local
56 if (class_index == dex::kNoIndex) { in RedefineObjectHook()
62 reader.CreateClassIr(class_index); in RedefineObjectHook()
/art/test/980-redefine-object/
Dredef_object.cc54 dex::u4 class_index = reader.FindClassIndex("Ljava/lang/Object;"); in RedefineObjectHook() local
55 if (class_index == dex::kNoIndex) { in RedefineObjectHook()
61 reader.CreateClassIr(class_index); in RedefineObjectHook()
/art/compiler/optimizing/
Dinliner.cc859 dex::TypeIndex class_index = FindClassIndexIn( in TryInlineMonomorphicCall() local
861 if (!class_index.IsValid()) { in TryInlineMonomorphicCall()
897 class_index, in TryInlineMonomorphicCall()
944 dex::TypeIndex class_index, in AddTypeGuard() argument
973 class_index, in AddTypeGuard()
1056 dex::TypeIndex class_index = FindClassIndexIn(handle.Get(), caller_compilation_unit_); in TryInlinePolymorphicCall() local
1072 } else if (class_index.IsValid()) { in TryInlinePolymorphicCall()
1077 !class_index.IsValid() || in TryInlinePolymorphicCall()
1100 class_index, in TryInlinePolymorphicCall()
Dinliner.h279 dex::TypeIndex class_index,
Dcode_generator_arm64.h877 dex::TypeIndex class_index, in DeduplicateJitClassLiteral() argument
880 dex_file, class_index, handle, GetCodeGenerationData()); in DeduplicateJitClassLiteral()
/art/runtime/dex/
Ddex_file_annotations.cc1410 dex::TypeIndex class_index = method_id.class_idx_; in MethodIsReachabilitySensitive() local
1411 const dex::ClassDef * class_def = dex_file.FindClassDef(class_index); in MethodIsReachabilitySensitive()
1452 dex::TypeIndex class_index = field_id.class_idx_; in MethodContainsRSensitiveAccess() local
1453 const dex::ClassDef * field_class_def = dex_file.FindClassDef(class_index); in MethodContainsRSensitiveAccess()
/art/libprofile/profile/
Dprofile_compilation_info.cc2345 for (uint32_t class_index : create_shuffled_range(classes_required_in_profile, in GenerateTestProfile() local
2347 data->class_set.insert(dex_file->GetClassDef(class_index).class_idx_); in GenerateTestProfile()