Lines Matching refs:at
207 HInstruction* at = liveness_.GetTempUser(temp); in Resolve() local
209 LocationSummary* locations = at->GetLocations(); in Resolve()
562 HInstruction* at = liveness_.GetInstructionFromPosition(position / 2); in InsertParallelMoveAt() local
564 if (at == nullptr) { in InsertParallelMoveAt()
570 at = liveness_.GetInstructionFromPosition((position + 1) / 2); in InsertParallelMoveAt()
574 at = at->GetBlock()->GetFirstInstruction(); in InsertParallelMoveAt()
576 if (at->GetLifetimePosition() < position) { in InsertParallelMoveAt()
579 DCHECK(at->IsParallelMove()); in InsertParallelMoveAt()
580 at = at->GetNext(); in InsertParallelMoveAt()
583 if (at->GetLifetimePosition() != position) { in InsertParallelMoveAt()
584 DCHECK_GT(at->GetLifetimePosition(), position); in InsertParallelMoveAt()
587 at->GetBlock()->InsertInstructionBefore(move, at); in InsertParallelMoveAt()
589 DCHECK(at->IsParallelMove()); in InsertParallelMoveAt()
590 move = at->AsParallelMove(); in InsertParallelMoveAt()
595 DCHECK(!at->IsControlFlow()); in InsertParallelMoveAt()
596 move = at->GetNext()->AsParallelMove(); in InsertParallelMoveAt()
602 at->GetBlock()->InsertInstructionBefore(move, at->GetNext()); in InsertParallelMoveAt()
606 HInstruction* previous = at->GetPrevious(); in InsertParallelMoveAt()
618 at->GetBlock()->InsertInstructionBefore(move, at); in InsertParallelMoveAt()