Home
last modified time | relevance | path

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

/art/dex2oat/linker/arm64/
Drelative_patcher_arm64.cc93 processed_adrp_thunks_(0u) { in Arm64RelativePatcher()
171 CHECK_LE(num_thunks, processed_adrp_thunks_); in WriteThunks()
173 const auto& entry = adrp_thunk_locations_[processed_adrp_thunks_ - num_thunks + i]; in WriteThunks()
218 if (fix_cortex_a53_843419_ && processed_adrp_thunks_ != adrp_thunk_locations_.size() && in PatchPcRelativeReference()
219 adrp_thunk_locations_[processed_adrp_thunks_].first == patch_offset) { in PatchPcRelativeReference()
222 uint32_t thunk_offset = adrp_thunk_locations_[processed_adrp_thunks_].second; in PatchPcRelativeReference()
243 processed_adrp_thunks_ += 1u; in PatchPcRelativeReference()
282 CHECK_LE(num_thunks, processed_adrp_thunks_); in PatchPcRelativeReference()
284 for (size_t i = processed_adrp_thunks_ - num_thunks; ; ++i) { in PatchPcRelativeReference()
285 CHECK_NE(i, processed_adrp_thunks_); in PatchPcRelativeReference()
[all …]
Drelative_patcher_arm64.h77 size_t processed_adrp_thunks_; variable