Home
last modified time | relevance | path

Searched refs:oat_class (Results 1 – 7 of 7) sorted by relevance

/art/test/661-oat-writer-layout/
Doat_writer_layout.cc58 OatFile::OatClass oat_class = OatFile::FindOatClass(*klass_ptr->GetDexCache()->GetDexFile(), in Java_Main_hasOatCompiledCode() local
66 OatClassType type = oat_class.GetType(); in Java_Main_hasOatCompiledCode()
/art/dex2oat/linker/
Doat_writer.cc987 OatClass* oat_class; member
1143 OatClass* oat_class = &writer_->oat_classes_[oat_class_index_]; in VisitMethod() local
1144 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod()
1182 oat_class, in VisitMethod()
1250 OatClass* oat_class = method_data.oat_class; in VisitMethod() local
1301 DCHECK_LT(method_offsets_index_, oat_class->method_headers_.size()); in VisitMethod()
1302 OatQuickMethodHeader* method_header = &oat_class->method_headers_[method_offsets_index_]; in VisitMethod()
1372 DCHECK_LT(method_offsets_index_, oat_class->method_offsets_.size()); in VisitMethod()
1373 OatMethodOffsets* offsets = &oat_class->method_offsets_[method_offsets_index_]; in VisitMethod()
1457 OatClass* oat_class = &writer_->oat_classes_[oat_class_index_]; in VisitMethod() local
[all …]
Doat_writer_test.cc464 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(i); in TEST_F() local
465 CHECK_EQ(ClassStatus::kNotReady, oat_class.GetStatus()) << descriptor; in TEST_F()
467 oat_class.GetType()) << descriptor; in TEST_F()
471 CheckMethod(&m, oat_class.GetOatMethod(method_index), dex_file); in TEST_F()
480 CheckMethod(&m, oat_class.GetOatMethod(method_index), dex_file); in TEST_F()
/art/oatdump/
Doatdump.cc251 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index); in WalkOatDexFile() local
252 OatClassType type = oat_class.GetType(); in WalkOatDexFile()
256 WalkOatClass(oat_class, *dex_file, class_def_index); in WalkOatDexFile()
267 void WalkOatClass(const OatFile::OatClass& oat_class, in WalkOatClass() argument
281 WalkOatMethod(oat_class.GetOatMethod(class_method_idx++), in WalkOatClass()
678 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index); in GetQuickOatCode() local
680 return oat_class.GetOatMethod(method_index).GetQuickCode(); in GetQuickOatCode()
907 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index); in AddAllOffsets() local
914 AddOffsets(oat_class.GetOatMethod(class_method_index++)); in AddAllOffsets()
1109 const OatFile::OatClass oat_class = oat_dex_file.GetOatClass(class_def_index); in DumpOatDexFile() local
[all …]
/art/runtime/
Dart_method.cc489 OatFile::OatClass oat_class = OatFile::FindOatClass(*dex_file, in FindOatMethodFromDexFileFor() local
495 return oat_class.GetOatMethod(oat_method_index); in FindOatMethodFromDexFileFor()
537 OatFile::OatClass oat_class = OatFile::FindOatClass(*declaring_class->GetDexCache()->GetDexFile(), in FindOatMethodFor() local
543 return oat_class.GetOatMethod(oat_method_index); in FindOatMethodFor()
Dclass_linker.cc2982 OatFile::OatClass oat_class = OatFile::FindOatClass(dex_file, in FixupStaticTrampolines() local
2994 OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index); in FixupStaticTrampolines()
3021 const OatFile::OatClass* oat_class, in LinkCode() argument
3030 if (oat_class != nullptr) { in LinkCode()
3033 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(class_def_method_index); in LinkCode()
3230 const OatFile::OatClass oat_class = in LoadClassMembers() local
3234 const OatFile::OatClass* oat_class_ptr = has_oat_class ? &oat_class : nullptr; in LoadClassMembers()
4746 const OatFile::OatClass oat_class = (runtime->IsStarted() && !runtime->IsAotCompiler()) in InitializeClass() local
4749 if (oat_class.GetStatus() < ClassStatus::kSuperclassValidated && in InitializeClass()
/art/dex2oat/
Ddex2oat_test.cc572 OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index); in CheckResult() local
573 EXPECT_EQ(oat_class.GetType(), OatClassType::kOatClassNoneCompiled); in CheckResult()