Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dstack_map_stream.cc548 ArenaUnorderedMap<uint32_t, size_t> dedupe(allocator_->Adapter(kArenaAllocStackMapStream)); in PrepareRegisterMasks() local
550 const size_t index = dedupe.size(); in PrepareRegisterMasks()
551 stack_map.register_mask_index = dedupe.emplace(stack_map.register_mask, index).first->second; in PrepareRegisterMasks()
554 return dedupe.size(); in PrepareRegisterMasks()
560 ArenaUnorderedMap<uint32_t, size_t> dedupe(allocator_->Adapter(kArenaAllocStackMapStream)); in PrepareMethodIndices() local
562 const size_t index = dedupe.size(); in PrepareMethodIndices()
565 stack_map.dex_method_index_idx = dedupe.emplace(method_index, index).first->second; in PrepareMethodIndices()
570 const size_t index = dedupe.size(); in PrepareMethodIndices()
573 inline_info.dex_method_index_idx = dedupe.emplace(method_index, index).first->second; in PrepareMethodIndices()
576 method_indices_.resize(dedupe.size()); in PrepareMethodIndices()