Lines Matching refs:array_
19 array_(NULL), in HInstructionMap()
64 HInstructionMapListElement* array_; member in v8::internal::HInstructionMap
140 array_(zone->NewArray<HInstructionMapListElement>(other->array_size_)), in HInstructionMap()
144 MemCopy(array_, other->array_, in HInstructionMap()
155 HInstruction* instr = array_[i].instr; in Kill()
160 for (int current = array_[i].next; current != kNil; current = next) { in Kill()
176 array_[i].next = kept; in Kill()
179 instr = array_[i].instr; in Kill()
183 int head = array_[i].next; in Kill()
185 array_[i].instr = NULL; in Kill()
187 array_[i].instr = lists_[head].instr; in Kill()
188 array_[i].next = lists_[head].next; in Kill()
203 if (array_[pos].instr != NULL) { in Lookup()
204 if (array_[pos].instr->Equals(instr)) return array_[pos].instr; in Lookup()
205 int next = array_[pos].next; in Lookup()
229 HInstructionMapListElement* old_array = array_; in Resize()
236 array_ = new_array; in Resize()
290 if (array_[pos].instr == NULL) { in Insert()
291 array_[pos].instr = instr; in Insert()
292 array_[pos].next = kNil; in Insert()
301 lists_[new_element_pos].next = array_[pos].next; in Insert()
302 DCHECK(array_[pos].next == kNil || lists_[array_[pos].next].instr != NULL); in Insert()
303 array_[pos].next = new_element_pos; in Insert()