Home
last modified time | relevance | path

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

/art/compiler/linker/arm/
Drelative_patcher_arm_base.cc167 if (thunks_.empty()) { in WriteThunks()
171 pending_thunks_.reserve(thunks_.size()); in WriteThunks()
172 for (auto& entry : thunks_) { in WriteThunks()
210 thunks_(), in ArmBaseRelativePatcher()
297 auto it = thunks_.find(key); in GetThunkTargetOffset()
298 CHECK(it != thunks_.end()); in GetThunkTargetOffset()
337 auto it = thunks_.Put(key, ThunkData(CompileThunk(key), max_next_offset)); in ProcessPatches()
345 auto lb = thunks_.lower_bound(key); in ProcessPatches()
346 if (lb == thunks_.end() || thunks_.key_comp()(key, lb->first)) { in ProcessPatches()
348 auto it = thunks_.PutBefore(lb, key, ThunkData(CompileThunk(key), max_next_offset)); in ProcessPatches()
Drelative_patcher_arm_base.h116 ThunkMap thunks_; variable