Home
last modified time | relevance | path

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

/art/compiler/dex/
Dglobal_value_numbering.cc32 field_index_map_(FieldReferenceComparator(), allocator->Adapter()), in GlobalValueNumbering()
157 auto lb = field_index_map_.lower_bound(key); in GetFieldId()
158 if (lb != field_index_map_.end() && !field_index_map_.key_comp()(key, lb->first)) { in GetFieldId()
161 DCHECK_LT(field_index_map_.size(), kNoValue); in GetFieldId()
162 uint16_t id = field_index_map_.size(); in GetFieldId()
163 auto it = field_index_map_.PutBefore(lb, key, id); in GetFieldId()
Dglobal_value_numbering.h229 FieldIndexMap field_index_map_; variable