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

  /art/compiler/
oat_test.cc 32 const OatFile::OatMethod& oat_method,
40 EXPECT_TRUE(oat_method.GetCode() == NULL) << PrettyMethod(method) << " "
41 << oat_method.GetCode();
43 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), static_cast<uint32_t>(kStackAlignment));
44 EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U);
45 EXPECT_EQ(oat_method.GetFpSpillMask(), 0U);
48 const void* oat_code = oat_method.GetCode();
59 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), compiled_method->GetFrameSizeInBytes());
60 EXPECT_EQ(oat_method.GetCoreSpillMask(), compiled_method->GetCoreSpillMask());
61 EXPECT_EQ(oat_method.GetFpSpillMask(), compiled_method->GetFpSpillMask())
    [all...]
  /art/oatdump/
oatdump.cc 233 void AddOffsets(const OatFile::OatMethod& oat_method) {
234 uint32_t code_offset = oat_method.GetCodeOffset();
239 offsets_.insert(oat_method.GetMappingTableOffset());
240 offsets_.insert(oat_method.GetVmapTableOffset());
241 offsets_.insert(oat_method.GetNativeGcMapOffset());
287 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx); local
288 DumpOatMethod(os, class_def, class_method_idx, oat_method, dex_file,
294 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx); local
295 DumpOatMethod(os, class_def, class_method_idx, oat_method, dex_file,
306 const OatFile::OatMethod& oat_method, const DexFile& dex_file
    [all...]
  /art/runtime/
common_test.h 203 OatFile::OatMethod oat_method = CreateOatMethod(method_code, local
210 oat_method.LinkMethod(method);
217 OatFile::OatMethod oat_method = CreateOatMethod(method_code, local
224 oat_method.LinkMethod(method);
class_linker.cc 1681 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index); local
    [all...]

Completed in 250 milliseconds