HomeSort by relevance Sort by last modified time
    Searched refs:oat_method (Results 1 - 4 of 4) sorted by null

  /art/oatdump/
oatdump.cc 291 void WalkOatMethod(const OatFile::OatMethod& oat_method,
302 const OatQuickMethodHeader* method_header = oat_method.GetOatQuickMethodHeader();
308 uint32_t entry_point = oat_method.GetCodeOffset() - oat_header.GetExecutableOffset();
320 info.deduped = !seen_offsets_.insert(oat_method.GetCodeOffset()).second;
1319 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_index); local
    [all...]
  /art/dex2oat/linker/
oat_writer_test.cc 59 const OatFile::OatMethod& oat_method,
67 EXPECT_TRUE(oat_method.GetQuickCode() == nullptr) << method->PrettyMethod() << " "
68 << oat_method.GetQuickCode();
69 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), 0U);
70 EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U);
71 EXPECT_EQ(oat_method.GetFpSpillMask(), 0U);
73 const void* quick_oat_code = oat_method.GetQuickCode();
75 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), compiled_method->GetFrameSizeInBytes());
76 EXPECT_EQ(oat_method.GetCoreSpillMask(), compiled_method->GetCoreSpillMask());
77 EXPECT_EQ(oat_method.GetFpSpillMask(), compiled_method->GetFpSpillMask())
    [all...]
  /art/runtime/
art_method.cc 652 OatFile::OatMethod oat_method = local
668 const void* oat_entry_point = oat_method.GetQuickCode();
690 OatFile::OatMethod oat_method = FindOatMethodFor(this, pointer_size, &found); local
692 return oat_method.GetQuickCode();
    [all...]
class_linker.cc 2994 OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index); local
3033 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(class_def_method_index); local
    [all...]

Completed in 379 milliseconds