Home
last modified time | relevance | path

Searched refs:relocation (Results 1 – 3 of 3) sorted by relevance

/art/test/134-nodex2oat-nofallback/
Dexpected.txt23 …filename for reading: No such file or directory) (no dalvik_cache availible) and relocation failed.
54 …filename for reading: No such file or directory) (no dalvik_cache availible) and relocation failed.
/art/dex2oat/linker/
Dimage_writer.cc2535 NativeObjectRelocation& relocation = pair.second; in CalculateNewObjectOffsets() local
2536 Bin bin_type = BinTypeForNativeRelocationType(relocation.type); in CalculateNewObjectOffsets()
2537 ImageInfo& image_info = GetImageInfo(relocation.oat_index); in CalculateNewObjectOffsets()
2538 relocation.offset += image_info.GetBinSlotOffset(bin_type); in CalculateNewObjectOffsets()
2729 NativeObjectRelocation relocation = GetNativeRelocation(method); in GetImageMethodAddress() local
2730 const ImageInfo& image_info = GetImageInfo(relocation.oat_index); in GetImageMethodAddress()
2731 CHECK_GE(relocation.offset, image_info.image_end_) << "ArtMethods should be after Objects"; in GetImageMethodAddress()
2732 return reinterpret_cast<ArtMethod*>(image_info.image_begin_ + relocation.offset); in GetImageMethodAddress()
2813 NativeObjectRelocation& relocation = pair.second; in CopyAndFixupNativeData() local
2815 if (relocation.oat_index != oat_index) { in CopyAndFixupNativeData()
[all …]
/art/runtime/
Doat_file.cc2230 for (const uint32_t& relocation : GetBootImageRelocations()) { in InitializeRelocations() local
2231 const_cast<uint32_t&>(relocation) += boot_image_begin; in InitializeRelocations()