Home
last modified time | relevance | path

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

/art/compiler/linker/arm64/
Drelative_patcher_arm64.cc48 processed_adrp_thunks_(0u) { in Arm64RelativePatcher()
123 CHECK_LE(num_thunks, processed_adrp_thunks_); in WriteThunks()
125 const auto& entry = adrp_thunk_locations_[processed_adrp_thunks_ - num_thunks + i]; in WriteThunks()
179 if (fix_cortex_a53_843419_ && processed_adrp_thunks_ != adrp_thunk_locations_.size() && in PatchPcRelativeReference()
180 adrp_thunk_locations_[processed_adrp_thunks_].first == patch_offset) { in PatchPcRelativeReference()
183 uint32_t thunk_offset = adrp_thunk_locations_[processed_adrp_thunks_].second; in PatchPcRelativeReference()
204 processed_adrp_thunks_ += 1u; in PatchPcRelativeReference()
227 CHECK_LE(num_thunks, processed_adrp_thunks_); in PatchPcRelativeReference()
229 for (size_t i = processed_adrp_thunks_ - num_thunks; ; ++i) { in PatchPcRelativeReference()
230 CHECK_NE(i, processed_adrp_thunks_); in PatchPcRelativeReference()
[all …]
Drelative_patcher_arm64.h70 size_t processed_adrp_thunks_; variable