Lines Matching refs:at
207 HInstruction* at = liveness_.GetTempUser(temp); in Resolve() local
209 LocationSummary* locations = at->GetLocations(); in Resolve()
563 HInstruction* at = liveness_.GetInstructionFromPosition(position / 2); in InsertParallelMoveAt() local
565 if (at == nullptr) { in InsertParallelMoveAt()
571 at = liveness_.GetInstructionFromPosition((position + 1) / 2); in InsertParallelMoveAt()
575 at = at->GetBlock()->GetFirstInstruction(); in InsertParallelMoveAt()
577 if (at->GetLifetimePosition() < position) { in InsertParallelMoveAt()
580 DCHECK(at->IsParallelMove()); in InsertParallelMoveAt()
581 at = at->GetNext(); in InsertParallelMoveAt()
584 if (at->GetLifetimePosition() != position) { in InsertParallelMoveAt()
585 DCHECK_GT(at->GetLifetimePosition(), position); in InsertParallelMoveAt()
588 at->GetBlock()->InsertInstructionBefore(move, at); in InsertParallelMoveAt()
590 DCHECK(at->IsParallelMove()); in InsertParallelMoveAt()
591 move = at->AsParallelMove(); in InsertParallelMoveAt()
596 DCHECK(!at->IsControlFlow()); in InsertParallelMoveAt()
597 move = at->GetNext()->AsParallelMove(); in InsertParallelMoveAt()
603 at->GetBlock()->InsertInstructionBefore(move, at->GetNext()); in InsertParallelMoveAt()
607 HInstruction* previous = at->GetPrevious(); in InsertParallelMoveAt()
619 at->GetBlock()->InsertInstructionBefore(move, at); in InsertParallelMoveAt()