Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dnodes.cc291 void HBasicBlock::InsertInstructionBefore(HInstruction* instruction, HInstruction* cursor) { in InsertInstructionBefore() argument
292 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()
Dnodes.h354 void InsertInstructionBefore(HInstruction* instruction, HInstruction* cursor);
/art/compiler/utils/
Dassembler.h258 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