Home
last modified time | relevance | path

Searched refs:oat_data_begin (Results 1 – 9 of 9) sorted by relevance

/art/runtime/
Dimage.cc35 uint32_t oat_data_begin, in ImageHeader() argument
44 oat_data_begin_(oat_data_begin), in ImageHeader()
53 CHECK_EQ(oat_data_begin, RoundUp(oat_data_begin, kPageSize)); in ImageHeader()
56 CHECK_LE(oat_file_begin, oat_data_begin); in ImageHeader()
57 CHECK_LT(oat_data_begin, oat_data_end); in ImageHeader()
Doat_file_assistant.cc476 uintptr_t oat_data_begin = oat_header.GetImageFileLocationOatDataBegin(); in GivenOatFileIsUpToDate() local
477 if (oat_data_begin != image_info->oat_data_begin) { in GivenOatFileIsUpToDate()
479 ": Oat file image oat_data_begin (" << oat_data_begin << ")" in GivenOatFileIsUpToDate()
481 << image_info->oat_data_begin << ")"; in GivenOatFileIsUpToDate()
921 … cached_image_info_.oat_data_begin = reinterpret_cast<uintptr_t>(image_header.GetOatDataBegin()); in CopyProfileFile()
928 … cached_image_info_.oat_data_begin = reinterpret_cast<uintptr_t>(image_header->GetOatDataBegin()); in CopyProfileFile()
Delf_file.h77 static bool Fixup(File* file, uint64_t oat_data_begin);
Doat_file_assistant.h289 uintptr_t oat_data_begin = 0; member
Dimage.h66 uint32_t oat_data_begin,
/art/compiler/
Delf_writer.cc55 bool ElfWriter::Fixup(File* file, uintptr_t oat_data_begin) { in Fixup() argument
62 uintptr_t base_address = oat_data_begin - oatdata_address; in Fixup()
Delf_writer.h47 static bool Fixup(File* file, uintptr_t oat_data_begin);
Dimage_test.cc207 uint32_t oat_data_begin = ART_BASE_ADDRESS + (8 * KB); // page aligned in TEST_F() local
217 oat_data_begin, in TEST_F()
/art/dex2oat/
Ddex2oat.cc1723 uintptr_t oat_data_begin = image_writer_->GetOatDataBegin(); in CreateImageFile() local
1736 if (!ElfWriter::Fixup(oat_file.get(), oat_data_begin)) { in CreateImageFile()