Home | History | Annotate | Download | only in optimizing

Lines Matching refs:moves

70   HParallelMove* moves = new (allocator) HParallelMove(allocator);
72 moves->AddMove(new (allocator) MoveOperands(
76 return moves;
85 static constexpr size_t moves[][2] = {{0, 1}, {1, 2}};
86 resolver.EmitNativeCode(BuildParallelMove(&allocator, moves, arraysize(moves)));
92 static constexpr size_t moves[][2] = {{0, 1}, {1, 2}, {2, 3}, {1, 4}};
93 resolver.EmitNativeCode(BuildParallelMove(&allocator, moves, arraysize(moves)));
104 static constexpr size_t moves[][2] = {{0, 1}, {1, 0}};
105 resolver.EmitNativeCode(BuildParallelMove(&allocator, moves, arraysize(moves)));
111 static constexpr size_t moves[][2] = {{0, 1}, {1, 2}, {1, 0}};
112 resolver.EmitNativeCode(BuildParallelMove(&allocator, moves, arraysize(moves)));
118 static constexpr size_t moves[][2] = {{0, 1}, {1, 2}, {2, 3}, {3, 4}, {4, 1}};
119 resolver.EmitNativeCode(BuildParallelMove(&allocator, moves, arraysize(moves)));
125 static constexpr size_t moves[][2] = {{0, 1}, {1, 2}, {2, 3}, {3, 4}, {4, 1}, {5, 4}};
126 resolver.EmitNativeCode(BuildParallelMove(&allocator, moves, arraysize(moves)));