Home | History | Annotate | Download | only in optimizing

Lines Matching full:moves_

3898       : HTemplateInstruction(SideEffects::None()), moves_(arena, kDefaultNumberOfMoves) {}
3908 for (size_t i = 0, e = moves_.Size(); i < e; ++i) {
3909 if (moves_.Get(i).GetInstruction() == instruction) {
3916 DCHECK_NE(destination.GetKind(), moves_.Get(i).GetDestination().GetKind())
3924 for (size_t i = 0, e = moves_.Size(); i < e; ++i) {
3925 DCHECK(!destination.OverlapsWith(moves_.Get(i).GetDestination()))
3929 moves_.Add(MoveOperands(source, destination, type, instruction));
3933 return moves_.GetRawStorage() + index;
3936 size_t NumMoves() const { return moves_.Size(); }
3941 GrowableArray<MoveOperands> moves_;