Home
last modified time | relevance | path

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

/art/compiler/
Doat_writer.cc881 OatClass* oat_class = &writer_->oat_classes_[oat_class_index_]; in VisitMethod() local
882 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod()
926 DCHECK_LT(method_offsets_index_, oat_class->method_headers_.size()); in VisitMethod()
927 OatQuickMethodHeader* method_header = &oat_class->method_headers_[method_offsets_index_]; in VisitMethod()
1000 DCHECK_LT(method_offsets_index_, oat_class->method_offsets_.size()); in VisitMethod()
1001 OatMethodOffsets* offsets = &oat_class->method_offsets_[method_offsets_index_]; in VisitMethod()
1056 OatClass* oat_class = &writer_->oat_classes_[oat_class_index_]; in VisitMethod() local
1057 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod()
1060 DCHECK_LT(method_offsets_index_, oat_class->method_offsets_.size()); in VisitMethod()
1061 DCHECK_EQ(oat_class->method_headers_[method_offsets_index_].GetVmapTableOffset(), 0u); in VisitMethod()
[all …]
Doat_test.cc459 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(i); in TEST_F() local
460 CHECK_EQ(mirror::Class::Status::kStatusNotReady, oat_class.GetStatus()) << descriptor; in TEST_F()
462 oat_class.GetType()) << descriptor; in TEST_F()
466 CheckMethod(&m, oat_class.GetOatMethod(method_index), dex_file); in TEST_F()
475 CheckMethod(&m, oat_class.GetOatMethod(method_index), dex_file); in TEST_F()
/art/oatdump/
Doatdump.cc222 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index); in WalkOatDexFile() local
223 OatClassType type = oat_class.GetType(); in WalkOatDexFile()
227 WalkOatClass(oat_class, *dex_file, class_def_index); in WalkOatDexFile()
238 void WalkOatClass(const OatFile::OatClass& oat_class, in WalkOatClass() argument
252 WalkOatMethod(oat_class.GetOatMethod(class_method_idx++), in WalkOatClass()
596 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index); in GetQuickOatCode() local
598 return oat_class.GetOatMethod(method_index).GetQuickCode(); in GetQuickOatCode()
775 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index); in AddAllOffsets() local
782 AddOffsets(oat_class.GetOatMethod(class_method_index++)); in AddAllOffsets()
786 AddOffsets(oat_class.GetOatMethod(class_method_index++)); in AddAllOffsets()
[all …]
/art/runtime/
Dart_method.cc502 OatFile::OatClass oat_class = OatFile::FindOatClass(*dex_file, in FindOatMethodFromDexFileFor() local
508 return oat_class.GetOatMethod(oat_method_index); in FindOatMethodFromDexFileFor()
550 OatFile::OatClass oat_class = OatFile::FindOatClass(*declaring_class->GetDexCache()->GetDexFile(), in FindOatMethodFor() local
556 return oat_class.GetOatMethod(oat_method_index); in FindOatMethodFor()
Dclass_linker.cc3135 OatFile::OatClass oat_class = OatFile::FindOatClass(dex_file, in FixupStaticTrampolines() local
3147 OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index); in FixupStaticTrampolines()
3174 const OatFile::OatClass* oat_class, in LinkCode() argument
3183 if (oat_class != nullptr) { in LinkCode()
3186 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(class_def_method_index); in LinkCode()
3383 const OatFile::OatClass oat_class = in LoadClassMembers() local
3387 const OatFile::OatClass* oat_class_ptr = has_oat_class ? &oat_class : nullptr; in LoadClassMembers()
4881 const OatFile::OatClass oat_class = in InitializeClass() local
4885 if (oat_class.GetStatus() < mirror::Class::kStatusSuperclassValidated && in InitializeClass()
/art/dex2oat/
Ddex2oat_test.cc540 OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index); in CheckResult() local
541 EXPECT_EQ(oat_class.GetType(), OatClassType::kOatClassNoneCompiled); in CheckResult()