Home
last modified time | relevance | path

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

/art/dex2oat/linker/
Dimage_writer.cc2650 NativeObjectRelocation& relocation = pair.second; in CalculateNewObjectOffsets() local
2651 Bin bin_type = BinTypeForNativeRelocationType(relocation.type); in CalculateNewObjectOffsets()
2652 ImageInfo& image_info = GetImageInfo(relocation.oat_index); in CalculateNewObjectOffsets()
2653 relocation.offset += image_info.GetBinSlotOffset(bin_type); in CalculateNewObjectOffsets()
2658 JniStubMethodRelocation& relocation = pair.second.second; in CalculateNewObjectOffsets() local
2660 ImageInfo& image_info = GetImageInfo(relocation.oat_index); in CalculateNewObjectOffsets()
2661 relocation.offset += image_info.GetBinSlotOffset(bin_type); in CalculateNewObjectOffsets()
2874 NativeObjectRelocation relocation = GetNativeRelocation(method); in GetImageMethodAddress() local
2875 const ImageInfo& image_info = GetImageInfo(relocation.oat_index); in GetImageMethodAddress()
2876 CHECK_GE(relocation.offset, image_info.image_end_) << "ArtMethods should be after Objects"; in GetImageMethodAddress()
[all …]
/art/runtime/oat/
Doat_file.cc2514 for (const uint32_t& relocation : GetBootImageRelocations()) { in InitializeRelocations() local
2515 const_cast<uint32_t&>(relocation) += boot_image_begin; in InitializeRelocations()
2520 for (const uint32_t& relocation : GetAppImageRelocations()) { in InitializeRelocations() local
2521 const_cast<uint32_t&>(relocation) += app_image_begin; in InitializeRelocations()