Searched defs:oat_method (Results 1 - 3 of 3) sorted by relevance

/art/runtime/
H A Dart_method.cc363 OatFile::OatMethod oat_method = local
365 if (!found || (oat_method.GetQuickCode() != nullptr)) {
368 return oat_method.GetVmapTable();
427 OatFile::OatMethod oat_method = class_linker->FindOatMethodFor(this, &found); local
446 const void* oat_entry_point = oat_method.GetQuickCode();
H A Dclass_linker.cc2741 OatFile::OatMethod oat_method = FindOatMethodFor(method, &found); local
2743 auto* code = oat_method.GetQuickCode();
2760 OatFile::OatMethod oat_method = FindOatMethodFor(method, &found); local
2762 return oat_method.GetQuickCode();
2849 OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index); local
2850 quick_code = oat_method.GetQuickCode();
2881 // Every kind of method should at least get an invoke stub from the oat_method.
2883 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(class_def_method_index); local
2884 oat_method.LinkMethod(method);
7964 OatFile::OatMethod oat_method local
7973 OatFile::OatMethod oat_method = CreateOatMethod(quick_method_code); local
[all...]
/art/oatdump/
H A Doatdump.cc231 void WalkOatMethod(const OatFile::OatMethod& oat_method, argument
242 const OatQuickMethodHeader* method_header = oat_method.GetOatQuickMethodHeader();
248 uint32_t entry_point = oat_method.GetCodeOffset() - oat_header.GetExecutableOffset();
260 info.deduped = !seen_offsets_.insert(oat_method.GetCodeOffset()).second;
562 void AddOffsets(const OatFile::OatMethod& oat_method) { argument
563 uint32_t code_offset = oat_method.GetCodeOffset();
568 offsets_.insert(oat_method.GetVmapTableOffset());
797 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_index); local
798 uint32_t code_offset = oat_method.GetCodeOffset();
799 uint32_t code_size = oat_method
999 DumpVmapData(VariableIndentationOutputStream* vios, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item) argument
1022 DumpCodeInfo(VariableIndentationOutputStream* vios, const CodeInfo& code_info, const OatFile::OatMethod& oat_method, const DexFile::CodeItem& code_item) argument
1032 DumpVregLocations(std::ostream& os, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item) argument
1088 IsMethodGeneratedByOptimizingCompiler(const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item) argument
1100 IsMethodGeneratedByDexToDexCompiler(const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item) argument
1216 DumpCode(VariableIndentationOutputStream* vios, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item, bool bad_input, size_t code_size) argument
[all...]

Completed in 839 milliseconds