Home
last modified time | relevance | path

Searched refs:moves_ (Results 1 – 9 of 9) sorted by relevance

/art/compiler/optimizing/
Dparallel_move_resolver.cc31 moves_.Add(move); in BuildInitialMoveList()
37 DCHECK(moves_.IsEmpty()); in EmitNativeCode()
41 for (size_t i = 0; i < moves_.Size(); ++i) { in EmitNativeCode()
42 const MoveOperands& move = *moves_.Get(i); in EmitNativeCode()
52 for (size_t i = 0; i < moves_.Size(); ++i) { in EmitNativeCode()
53 MoveOperands* move = moves_.Get(i); in EmitNativeCode()
62 moves_.Reset(); in EmitNativeCode()
112 MoveOperands* move = moves_.Get(index); in PerformMove()
132 for (size_t i = 0; i < moves_.Size(); ++i) { in PerformMove()
133 const MoveOperands& other_move = *moves_.Get(i); in PerformMove()
[all …]
Dparallel_move_resolver.h34 explicit ParallelMoveResolver(ArenaAllocator* allocator) : moves_(allocator, 32) {} in ParallelMoveResolver()
44 GrowableArray<MoveOperands*> moves_; variable
Dparallel_move_test.cc59 MoveOperands* move = moves_.Get(index); in EmitMove()
71 MoveOperands* move = moves_.Get(index); in EmitSwap()
130 MoveOperands* move = moves_.Get(index); in EmitMove()
Dnodes.h3898 : HTemplateInstruction(SideEffects::None()), moves_(arena, kDefaultNumberOfMoves) {} in HParallelMove()
3908 for (size_t i = 0, e = moves_.Size(); i < e; ++i) { in AddMove()
3909 if (moves_.Get(i).GetInstruction() == instruction) { in AddMove()
3916 DCHECK_NE(destination.GetKind(), moves_.Get(i).GetDestination().GetKind()) in AddMove()
3924 for (size_t i = 0, e = moves_.Size(); i < e; ++i) { in AddMove()
3925 DCHECK(!destination.OverlapsWith(moves_.Get(i).GetDestination())) in AddMove()
3929 moves_.Add(MoveOperands(source, destination, type, instruction)); in AddMove()
3933 return moves_.GetRawStorage() + index; in MoveOperandsAt()
3936 size_t NumMoves() const { return moves_.Size(); } in NumMoves()
3941 GrowableArray<MoveOperands> moves_;
Dcode_generator_mips64.cc429 MoveOperands* move = moves_.Get(index); in EmitMove()
434 MoveOperands* move = moves_.Get(index); in EmitSwap()
Dcode_generator_arm.cc3574 MoveOperands* move = moves_.Get(index); in EmitMove()
3706 MoveOperands* move = moves_.Get(index); in EmitSwap()
Dcode_generator_x86.cc4053 MoveOperands* move = moves_.Get(index); in EmitMove()
4205 MoveOperands* move = moves_.Get(index); in EmitSwap()
Dcode_generator_x86_64.cc3900 MoveOperands* move = moves_.Get(index); in EmitMove()
4060 MoveOperands* move = moves_.Get(index); in EmitSwap()
Dcode_generator_arm64.cc478 MoveOperands* move = moves_.Get(index); in EmitMove()