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

  /art/compiler/
oat_test.cc 39 const OatFile::OatMethod& oat_method,
47 EXPECT_TRUE(oat_method.GetQuickCode() == NULL) << PrettyMethod(method) << " "
48 << oat_method.GetQuickCode();
49 EXPECT_TRUE(oat_method.GetPortableCode() == NULL) << PrettyMethod(method) << " "
50 << oat_method.GetPortableCode();
51 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), 0U);
52 EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U);
53 EXPECT_EQ(oat_method.GetFpSpillMask(), 0U);
55 const void* quick_oat_code = oat_method.GetQuickCode();
57 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), compiled_method->GetFrameSizeInBytes())
    [all...]
common_compiler_test.cc 213 OatFile::OatMethod oat_method = CreateOatMethod(method_code, nullptr); local
214 oat_method.LinkMethod(method);
225 OatFile::OatMethod oat_method = CreateOatMethod(method_code, nullptr); local
226 oat_method.LinkMethod(method);
231 OatFile::OatMethod oat_method = CreateOatMethod(method_code, nullptr); local
232 oat_method.LinkMethod(method);
  /art/oatdump/
oatdump.cc 343 void AddOffsets(const OatFile::OatMethod& oat_method) {
344 uint32_t code_offset = oat_method.GetCodeOffset();
349 offsets_.insert(oat_method.GetMappingTableOffset());
350 offsets_.insert(oat_method.GetVmapTableOffset());
351 offsets_.insert(oat_method.GetNativeGcMapOffset());
467 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_index); local
483 uint32_t code_offset = oat_method.GetCodeOffset();
485 uint32_t aligned_code_begin = AlignCodeOffset(oat_method.GetCodeOffset());
496 *indent2_os << StringPrintf("%p ", oat_method.GetNativeGcMap());
498 uint32_t gc_map_offset = oat_method.GetNativeGcMapOffset()
    [all...]
  /art/runtime/
class_linker.cc 2412 OatFile::OatMethod oat_method; local
2443 OatFile::OatMethod oat_method; local
2549 OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index); local
2606 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index); local
    [all...]
class_linker.h 406 bool FindOatMethodFor(mirror::ArtMethod* method, OatFile::OatMethod* oat_method)
    [all...]

Completed in 4764 milliseconds