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

/art/runtime/
H A Dimage.cc35 uint32_t oat_data_begin,
44 oat_data_begin_(oat_data_begin),
53 CHECK_EQ(oat_data_begin, RoundUp(oat_data_begin, kPageSize));
56 CHECK_LE(oat_file_begin, oat_data_begin);
57 CHECK_LT(oat_data_begin, oat_data_end);
29 ImageHeader(uint32_t image_begin, uint32_t image_size, ImageSection* sections, uint32_t image_roots, uint32_t oat_checksum, uint32_t oat_file_begin, uint32_t oat_data_begin, uint32_t oat_data_end, uint32_t oat_file_end, uint32_t pointer_size, bool compile_pic) argument
H A Delf_file.h77 static bool Fixup(File* file, uint64_t oat_data_begin);
H A Doat_file_assistant.cc473 // Verify the oat_data_begin recorded for the image in the oat file matches
474 // the actual oat_data_begin for boot.oat in the image.
476 uintptr_t oat_data_begin = oat_header.GetImageFileLocationOatDataBegin(); local
477 if (oat_data_begin != image_info->oat_data_begin) {
479 ": Oat file image oat_data_begin (" << oat_data_begin << ")"
480 << " does not match actual image oat_data_begin ("
481 << image_info->oat_data_begin << ")";
921 cached_image_info_.oat_data_begin
[all...]
H A Dimage.h66 uint32_t oat_data_begin,
H A Doat_file_assistant.h289 uintptr_t oat_data_begin = 0; member in struct:art::OatFileAssistant::ImageInfo
/art/compiler/
H A Delf_writer.cc55 bool ElfWriter::Fixup(File* file, uintptr_t oat_data_begin) { argument
62 uintptr_t base_address = oat_data_begin - oatdata_address;
H A Delf_writer.h47 static bool Fixup(File* file, uintptr_t oat_data_begin);
H A Dimage_test.cc207 uint32_t oat_data_begin = ART_BASE_ADDRESS + (8 * KB); // page aligned
217 oat_data_begin,
/art/dex2oat/
H A Ddex2oat.cc1723 uintptr_t oat_data_begin = image_writer_->GetOatDataBegin(); local
1736 if (!ElfWriter::Fixup(oat_file.get(), oat_data_begin)) {

Completed in 96 milliseconds