Searched refs:oat_method (Results 1 - 4 of 4) sorted by relevance

/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...]
/art/compiler/
H A Doat_test.cc60 const OatFile::OatMethod& oat_method,
68 EXPECT_TRUE(oat_method.GetQuickCode() == nullptr) << PrettyMethod(method) << " "
69 << oat_method.GetQuickCode();
70 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), 0U);
71 EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U);
72 EXPECT_EQ(oat_method.GetFpSpillMask(), 0U);
74 const void* quick_oat_code = oat_method.GetQuickCode();
76 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), compiled_method->GetFrameSizeInBytes());
77 EXPECT_EQ(oat_method.GetCoreSpillMask(), compiled_method->GetCoreSpillMask());
78 EXPECT_EQ(oat_method
[all...]
/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.cc2749 OatFile::OatMethod oat_method = FindOatMethodFor(method, &found); local
2751 auto* code = oat_method.GetQuickCode();
2768 OatFile::OatMethod oat_method = FindOatMethodFor(method, &found); local
2770 return oat_method.GetQuickCode();
2857 OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index); local
2858 quick_code = oat_method.GetQuickCode();
2889 // Every kind of method should at least get an invoke stub from the oat_method.
2891 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(class_def_method_index); local
2892 oat_method.LinkMethod(method);
7972 OatFile::OatMethod oat_method local
7981 OatFile::OatMethod oat_method = CreateOatMethod(quick_method_code); local
[all...]

Completed in 81 milliseconds