Searched defs:oat_class (Results 1 - 4 of 4) sorted by relevance

/art/compiler/
H A Doat_test.cc167 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(i); local
168 CHECK_EQ(mirror::Class::Status::kStatusNotReady, oat_class.GetStatus()) << descriptor;
170 oat_class.GetType()) << descriptor;
175 oat_class.GetOatMethod(method_index), dex_file);
179 oat_class.GetOatMethod(method_index), dex_file);
H A Doat_writer.cc145 static uint32_t GetOffset(OatClass* oat_class, size_t method_offsets_index) ALWAYS_INLINE {
146 uint32_t offset = oat_class->method_headers_[method_offsets_index].gc_map_offset_;
148 (oat_class->method_offsets_[method_offsets_index].code_offset_ & ~1) - offset;
151 static void SetOffset(OatClass* oat_class, size_t method_offsets_index, uint32_t offset)
153 oat_class->method_headers_[method_offsets_index].gc_map_offset_ =
154 (oat_class->method_offsets_[method_offsets_index].code_offset_ & ~1) - offset;
167 static uint32_t GetOffset(OatClass* oat_class, size_t method_offsets_index) ALWAYS_INLINE {
168 uint32_t offset = oat_class->method_headers_[method_offsets_index].mapping_table_offset_;
170 (oat_class->method_offsets_[method_offsets_index].code_offset_ & ~1) - offset;
173 static void SetOffset(OatClass* oat_class, size_
318 OatClass* oat_class = new OatClass(offset_, compiled_methods_, local
338 OatClass* oat_class = writer_->oat_classes_[oat_class_index_]; local
541 OatClass* oat_class = writer_->oat_classes_[oat_class_index_]; local
579 OatClass* oat_class = writer_->oat_classes_[oat_class_index_]; local
660 OatClass* oat_class = writer_->oat_classes_[oat_class_index_]; local
[all...]
/art/oatdump/
H A Doatdump.cc292 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index); local
294 return oat_class.GetOatMethod(method_index).GetQuickCode();
322 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index); local
329 AddOffsets(oat_class.GetOatMethod(class_method_index++));
333 AddOffsets(oat_class.GetOatMethod(class_method_index++));
382 const OatFile::OatClass oat_class = oat_dex_file.GetOatClass(class_def_index); local
385 << " (" << oat_class.GetStatus() << ")"
386 << " (" << oat_class.GetType() << ")\n";
390 if (!DumpOatClass(indented_os, oat_class, *(dex_file.get()), class_def)) {
408 bool DumpOatClass(std::ostream& os, const OatFile::OatClass& oat_class, cons argument
447 DumpOatMethod(std::ostream& os, const DexFile::ClassDef& class_def, uint32_t class_method_index, const OatFile::OatClass& oat_class, const DexFile& dex_file, uint32_t dex_method_idx, const DexFile::CodeItem* code_item, uint32_t method_access_flags) argument
[all...]
/art/runtime/
H A Dclass_linker.cc2347 OatFile::OatClass* oat_class) {
2348 DCHECK(oat_class != nullptr);
2354 *oat_class = oat_dex_file->GetOatClass(class_def_idx);
2422 OatFile::OatClass oat_class; local
2425 &oat_class)) {
2429 *oat_method = oat_class.GetOatMethod(oat_method_index);
2504 OatFile::OatClass oat_class; local
2505 if (!FindOatClass(dex_file, class_def_idx, &oat_class)) {
2509 return oat_class.GetOatMethod(oat_method_idx).GetQuickCode();
2515 OatFile::OatClass oat_class; local
2345 FindOatClass(const DexFile& dex_file, uint16_t class_def_idx, OatFile::OatClass* oat_class) argument
2573 OatFile::OatClass oat_class; local
2627 LinkCode(Handle<mirror::ArtMethod> method, const OatFile::OatClass* oat_class, const DexFile& dex_file, uint32_t dex_method_index, uint32_t method_index) argument
2757 OatFile::OatClass oat_class; local
2767 LoadClassMembers(const DexFile& dex_file, const byte* class_data, Handle<mirror::Class> klass, mirror::ClassLoader* class_loader, const OatFile::OatClass* oat_class) argument
[all...]

Completed in 87 milliseconds