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

/art/runtime/
H A Dart_method.cc579 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found); local
580 if (!found || (oat_method.GetQuickCode() != nullptr)) {
584 const OatQuickMethodHeader* header = oat_method.GetOatQuickMethodHeader();
597 return oat_method.GetVmapTable();
657 OatFile::OatMethod oat_method = local
677 const void* oat_entry_point = oat_method.GetQuickCode();
699 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found); local
701 return oat_method.GetQuickCode();
H A Dclass_linker.cc3018 OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index); local
3019 quick_code = oat_method.GetQuickCode();
3055 // Every kind of method should at least get an invoke stub from the oat_method.
3057 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(class_def_method_index); local
3058 oat_method.LinkMethod(method);
8526 OatFile::OatMethod oat_method(base, code_offset);
8527 oat_method.LinkMethod(method);
/art/oatdump/
H A Doatdump.cc247 void WalkOatMethod(const OatFile::OatMethod& oat_method, argument
258 const OatQuickMethodHeader* method_header = oat_method.GetOatQuickMethodHeader();
264 uint32_t entry_point = oat_method.GetCodeOffset() - oat_header.GetExecutableOffset();
276 info.deduped = !seen_offsets_.insert(oat_method.GetCodeOffset()).second;
781 void AddOffsets(const OatFile::OatMethod& oat_method) { argument
782 uint32_t code_offset = oat_method.GetCodeOffset();
787 offsets_.insert(oat_method.GetVmapTableOffset());
1144 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_index); local
1145 uint32_t code_offset = oat_method.GetCodeOffset();
1146 uint32_t code_size = oat_method
1356 DumpVmapData(VariableIndentationOutputStream* vios, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item) argument
1380 DumpCodeInfo(VariableIndentationOutputStream* vios, const CodeInfo& code_info, const OatFile::OatMethod& oat_method, const DexFile::CodeItem& code_item, const MethodInfo& method_info) argument
1393 DumpVregLocations(std::ostream& os, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item) argument
1449 IsMethodGeneratedByOptimizingCompiler(const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item) argument
1461 IsMethodGeneratedByDexToDexCompiler(const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item) argument
1584 DumpCode(VariableIndentationOutputStream* vios, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item, bool bad_input, size_t code_size) argument
[all...]

Completed in 121 milliseconds