Searched refs:class_def_index (Results 1 – 8 of 8) sorted by relevance
/art/compiler/ |
D | oat_writer.cc | 215 virtual bool StartClass(const DexFile* dex_file, size_t class_def_index) { in StartClass() argument 219 class_def_index_ = class_def_index; in StartClass() 258 bool StartClass(const DexFile* dex_file, size_t class_def_index) { in StartClass() argument 259 DexMethodVisitor::StartClass(dex_file, class_def_index); in StartClass() 284 bool StartClass(const DexFile* dex_file, size_t class_def_index) { in StartClass() argument 285 DexMethodVisitor::StartClass(dex_file, class_def_index); in StartClass() 704 for (size_t class_def_index = 0; class_def_index != class_def_count; ++class_def_index) { in VisitDexMethods() local 705 if (UNLIKELY(!visitor->StartClass(dex_file, class_def_index))) { in VisitDexMethods() 708 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index); in VisitDexMethods()
|
/art/compiler/driver/ |
D | compiler_driver.cc | 1595 size_t class_def_index) in ResolveClassFieldsAndMethods() argument 1615 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index); in ResolveClassFieldsAndMethods() 1697 manager->GetCompiler()->AddRequiresConstructorBarrier(self, &dex_file, class_def_index); in ResolveClassFieldsAndMethods() 1764 static void VerifyClass(const ParallelCompilationManager* manager, size_t class_def_index) in VerifyClass() argument 1769 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index); in VerifyClass() 1821 static void SetVerifiedClass(const ParallelCompilationManager* manager, size_t class_def_index) in SetVerifiedClass() argument 1826 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index); in SetVerifiedClass() 1845 ClassReference ref(manager->GetDexFile(), class_def_index); in SetVerifiedClass() 1865 static void InitializeClass(const ParallelCompilationManager* manager, size_t class_def_index) in InitializeClass() argument 1870 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index); in InitializeClass() [all …]
|
D | compiler_driver.h | 194 uint16_t class_def_index); 195 bool RequiresConstructorBarrier(Thread* self, const DexFile* dex_file, uint16_t class_def_index); 759 static void CompileClass(const ParallelCompilationManager* context, size_t class_def_index)
|
/art/oatdump/ |
D | oatdump.cc | 291 uint16_t class_def_index = dex_file->GetIndexForClassDef(*class_def); in GetQuickOatCode() local 292 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index); in GetQuickOatCode() 318 for (size_t class_def_index = 0; in AddAllOffsets() local 319 class_def_index < dex_file->NumClassDefs(); in AddAllOffsets() 320 class_def_index++) { in AddAllOffsets() 321 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index); in AddAllOffsets() 322 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index); in AddAllOffsets() 376 for (size_t class_def_index = 0; in DumpOatDexFile() local 377 class_def_index < dex_file->NumClassDefs(); in DumpOatDexFile() 378 class_def_index++) { in DumpOatDexFile() [all …]
|
/art/runtime/ |
D | oat_file.h | 250 OatClass GetOatClass(uint16_t class_def_index) const; 253 uint32_t GetOatClassOffset(uint16_t class_def_index) const;
|
D | oat_file.cc | 464 uint32_t OatFile::OatDexFile::GetOatClassOffset(uint16_t class_def_index) const { in GetOatClassOffset() 465 return oat_class_offsets_pointer_[class_def_index]; in GetOatClassOffset() 468 OatFile::OatClass OatFile::OatDexFile::GetOatClass(uint16_t class_def_index) const { in GetOatClass() 469 uint32_t oat_class_offset = GetOatClassOffset(class_def_index); in GetOatClass()
|
D | class_linker.cc | 3686 uint16_t class_def_index = klass->GetDexClassDefIndex(); in VerifyClassUsingOatFile() local 3687 oat_file_class_status = oat_dex_file->GetOatClass(class_def_index).GetStatus(); in VerifyClassUsingOatFile()
|
/art/runtime/native/ |
D | dalvik_system_VMRuntime.cc | 463 for (size_t class_def_index = 0; in VMRuntime_preloadDexCaches() local 464 class_def_index < dex_file->NumClassDefs(); in VMRuntime_preloadDexCaches() 465 class_def_index++) { in VMRuntime_preloadDexCaches() 466 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index); in VMRuntime_preloadDexCaches()
|