Lines Matching refs:array_
18 array_(NULL), in HInstructionMap()
63 HInstructionMapListElement* array_; member in v8::internal::FINAL
139 array_(zone->NewArray<HInstructionMapListElement>(other->array_size_)), in HInstructionMap()
143 MemCopy(array_, other->array_, in HInstructionMap()
154 HInstruction* instr = array_[i].instr; in Kill()
159 for (int current = array_[i].next; current != kNil; current = next) { in Kill()
175 array_[i].next = kept; in Kill()
178 instr = array_[i].instr; in Kill()
182 int head = array_[i].next; in Kill()
184 array_[i].instr = NULL; in Kill()
186 array_[i].instr = lists_[head].instr; in Kill()
187 array_[i].next = lists_[head].next; in Kill()
202 if (array_[pos].instr != NULL) { in Lookup()
203 if (array_[pos].instr->Equals(instr)) return array_[pos].instr; in Lookup()
204 int next = array_[pos].next; in Lookup()
228 HInstructionMapListElement* old_array = array_; in Resize()
235 array_ = new_array; in Resize()
289 if (array_[pos].instr == NULL) { in Insert()
290 array_[pos].instr = instr; in Insert()
291 array_[pos].next = kNil; in Insert()
300 lists_[new_element_pos].next = array_[pos].next; in Insert()
301 DCHECK(array_[pos].next == kNil || lists_[array_[pos].next].instr != NULL); in Insert()
302 array_[pos].next = new_element_pos; in Insert()