Home
last modified time | relevance | path

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

/art/dex2oat/linker/arm/
Drelative_patcher_arm_base.cc182 for (ThunkData* data : unreserved_thunks_) { in ReserveSpaceEnd()
186 unreserved_thunks_.clear(); in ReserveSpaceEnd()
302 if (unreserved_thunks_.empty() || in ReserveSpaceInternal()
303 unreserved_thunks_.front()->MaxNextOffset() >= next_aligned_offset) { in ReserveSpaceInternal()
306 ThunkData* thunk = unreserved_thunks_.front(); in ReserveSpaceInternal()
310 if (unreserved_thunks_.empty() || in ReserveSpaceInternal()
311 unreserved_thunks_.front()->MaxNextOffset() >= next_aligned_offset) { in ReserveSpaceInternal()
315 thunk = unreserved_thunks_.front(); in ReserveSpaceInternal()
317 unreserved_thunks_.pop_front(); in ReserveSpaceInternal()
335 CHECK(unreserved_thunks_.empty() || in ReserveSpaceInternal()
[all …]
Drelative_patcher_arm_base.h144 std::deque<ThunkData*> unreserved_thunks_; variable