Searched refs:cursor (Results 1 – 3 of 3) sorted by relevance
291 void HBasicBlock::InsertInstructionBefore(HInstruction* instruction, HInstruction* cursor) { in InsertInstructionBefore() argument292 DCHECK(cursor->AsPhi() == nullptr); in InsertInstructionBefore()295 DCHECK_NE(cursor->GetId(), -1); in InsertInstructionBefore()296 DCHECK_EQ(cursor->GetBlock(), this); in InsertInstructionBefore()298 instruction->next_ = cursor; in InsertInstructionBefore()299 instruction->previous_ = cursor->previous_; in InsertInstructionBefore()300 cursor->previous_ = instruction; in InsertInstructionBefore()301 if (GetFirstInstruction() == cursor) { in InsertInstructionBefore()
354 void InsertInstructionBefore(HInstruction* instruction, HInstruction* cursor);
258 if (buffer->cursor() >= buffer->limit()) { in EnsureCapacity()299 if (buffer->cursor() >= buffer->limit()) buffer->ExtendCapacity(); in EnsureCapacity()330 byte* cursor() const { return cursor_; } in cursor() function