Home
last modified time | relevance | path

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

/art/compiler/linker/arm/
Drelative_patcher_arm_base.cc48 if (current_thunk_to_write_ == thunk_locations_.size()) { in WriteThunks()
52 if (UNLIKELY(aligned_offset == thunk_locations_[current_thunk_to_write_])) { in WriteThunks()
53 ++current_thunk_to_write_; in WriteThunks()
80 thunk_locations_(), current_thunk_to_write_(0u), unprocessed_patches_() { in ArmBaseRelativePatcher()
123 DCHECK(current_thunk_to_write_ == thunk_locations_.size() || in CalculateDisplacement()
124 thunk_locations_[current_thunk_to_write_] > patch_offset); in CalculateDisplacement()
125 if (current_thunk_to_write_ != thunk_locations_.size() && in CalculateDisplacement()
126 thunk_locations_[current_thunk_to_write_] - patch_offset < max_positive_displacement_) { in CalculateDisplacement()
127 displacement = thunk_locations_[current_thunk_to_write_] - patch_offset; in CalculateDisplacement()
130 DCHECK_NE(current_thunk_to_write_, 0u); in CalculateDisplacement()
[all …]
Drelative_patcher_arm_base.h54 size_t current_thunk_to_write_; variable