HomeSort by relevance Sort by last modified time
    Searched full:moves (Results 1 - 25 of 1333) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/408-move-bug/
info.txt 2 compiler. Input moves where being overridden by sibling moves.
  /external/llvm/test/Transforms/InstCombine/
memset2.ll 5 %struct.Moves = type { [9 x i8], i8, i8, i8, [5 x i8] }
7 define i32 @test(%struct.Moves addrspace(1)* nocapture %moves) {
10 %gep = getelementptr inbounds %struct.Moves, %struct.Moves addrspace(1)* %moves, i32 1, i32 0, i32 9
  /frameworks/rs/java/tests/Balls/
_index.html 1 <p>A brute force physics simulation that renders many balls onto the screen and moves them according to user touch and gravity.</p
  /art/compiler/optimizing/
parallel_move_test.cc 156 HParallelMove* moves = new (allocator) HParallelMove(allocator); local
158 moves->AddMove(
164 return moves;
188 static constexpr size_t moves[][2] = {{0, 1}, {1, 2}}; local
189 resolver.EmitNativeCode(BuildParallelMove(&allocator, moves, arraysize(moves)));
199 static constexpr size_t moves[][2] = {{0, 1}, {1, 2}, {2, 3}, {1, 4}}; local
200 resolver.EmitNativeCode(BuildParallelMove(&allocator, moves, arraysize(moves)));
215 static constexpr size_t moves[][2] = {{0, 1}, {1, 0}} local
226 static constexpr size_t moves[][2] = {{0, 1}, {1, 2}, {1, 0}}; local
237 static constexpr size_t moves[][2] = {{0, 1}, {1, 0}, {0, 2}}; local
248 static constexpr size_t moves[][2] = {{0, 1}, {1, 2}, {2, 3}, {3, 4}, {4, 0}}; local
263 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
284 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
301 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
318 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
338 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
364 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
390 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
415 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
435 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
461 static constexpr size_t moves[][2] = {{0, 1}, {1, 0}, {2, 3}, {3, 2}}; local
472 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
498 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
526 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
559 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
586 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
    [all...]
parallel_move_resolver.h 30 // Helper classes to resolve a set of parallel moves. Architecture dependent code generator must
37 // Resolve a set of parallel moves, emitting assembler instructions.
41 // Build the initial list of moves.
57 // Resolve a set of parallel moves, emitting assembler instructions.
98 // other moves to satisfy dependencies).
127 // Resolve a set of parallel moves, emitting assembler instructions.
151 // Return a scratch location from the moves which exactly matches the kind.
166 // Perform the move at the given index in `moves_` (possibly requiring other moves to satisfy
179 // Return true if the location is blocked by outstanding moves.
182 // Return the number of pending moves
    [all...]
parallel_move_resolver.cc 24 // Perform a linear sweep of the moves to add them to the initial list of
25 // moves to perform, ignoring any move that is redundant (the source is
38 // Build up a worklist of moves.
43 // Skip constants to perform them last. They don't block other moves
44 // and skipping such moves with register destinations keeps those
51 // Perform the moves with constant sources.
57 // Eliminate the move, in case following moves need a scratch register.
116 // moves may become redundant.
123 // multiple moves to be pending.
130 // such moves
    [all...]
  /external/v8/src/compiler/
gap-resolver.h 16 // Interface used by the gap resolver to emit moves and swaps.
31 // Resolve a set of parallel moves, emitting assembler instructions.
35 // Perform the given move, possibly requiring other moves to satisfy
37 void PerformMove(ZoneList<MoveOperands>* moves, MoveOperands* move) const;
39 // Assembler used to emit moves and save registers.
gap-resolver.cc 29 static void VerifyMovesAreInjective(ZoneList<MoveOperands>* moves) {
32 for (op_iterator i = moves->begin(); i != moves->end(); ++i) {
41 ZoneList<MoveOperands>* moves = parallel_move->move_operands(); local
44 std::remove_if(moves->begin(), moves->end(),
46 moves->Rewind(static_cast<int>(end - moves->begin()));
48 VerifyMovesAreInjective(moves);
50 for (op_iterator move = moves->begin(); move != moves->end(); ++move)
    [all...]
  /external/llvm/test/CodeGen/SystemZ/
fp-move-01.ll 1 ; Test moves between FPRs.
5 ; Test f32 moves.
12 ; Test f64 moves.
19 ; Test f128 moves. Since f128s are passed by reference, we need to force
int-move-01.ll 1 ; Test moves between GPRs.
5 ; Test 8-bit moves, which should get promoted to i32.
13 ; Test 16-bit moves, which again should get promoted to i32.
21 ; Test 32-bit moves.
29 ; Test 64-bit moves.
  /external/v8/src/arm/
lithium-gap-resolver-arm.h 22 // Resolve a set of parallel moves, emitting assembler instructions.
26 // Build the initial list of moves.
30 // other moves to satisfy dependencies).
33 // If a cycle is found in the series of moves, save the blocking value to
45 // Verify the move list before performing moves.
50 // List of moves not yet resolved.
lithium-gap-resolver-arm.cc 14 // moves. We don't need access to roots while resolving the move list and using
17 // with any of the moves we are resolving.
33 // Build up a worklist of moves.
38 // Skip constants to perform them last. They don't block other moves
39 // and skipping such moves with register destinations keeps those
50 // Perform the moves with constant sources.
69 // Perform a linear sweep of the moves to add them to the initial list of
70 // moves to perform, ignoring any move that is redundant (the source is
73 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); local
74 for (int i = 0; i < moves->length(); ++i)
    [all...]
  /external/v8/src/mips/
lithium-gap-resolver-mips.h 22 // Resolve a set of parallel moves, emitting assembler instructions.
26 // Build the initial list of moves.
30 // other moves to satisfy dependencies).
33 // If a cycle is found in the series of moves, save the blocking value to
45 // Verify the move list before performing moves.
50 // List of moves not yet resolved.
lithium-gap-resolver-mips.cc 23 // Build up a worklist of moves.
28 // Skip constants to perform them last. They don't block other moves
29 // and skipping such moves with register destinations keeps those
40 // Perform the moves with constant sources.
53 // Perform a linear sweep of the moves to add them to the initial list of
54 // moves to perform, ignoring any move that is redundant (the source is
57 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); local
58 for (int i = 0; i < moves->length(); ++i) {
59 LMoveOperands move = moves->at(i);
72 // We can only find a cycle, when doing a depth-first traversal of moves,
    [all...]
  /external/v8/src/mips64/
lithium-gap-resolver-mips64.h 22 // Resolve a set of parallel moves, emitting assembler instructions.
26 // Build the initial list of moves.
30 // other moves to satisfy dependencies).
33 // If a cycle is found in the series of moves, save the blocking value to
45 // Verify the move list before performing moves.
50 // List of moves not yet resolved.
lithium-gap-resolver-mips64.cc 23 // Build up a worklist of moves.
28 // Skip constants to perform them last. They don't block other moves
29 // and skipping such moves with register destinations keeps those
40 // Perform the moves with constant sources.
53 // Perform a linear sweep of the moves to add them to the initial list of
54 // moves to perform, ignoring any move that is redundant (the source is
57 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); local
58 for (int i = 0; i < moves->length(); ++i) {
59 LMoveOperands move = moves->at(i);
72 // We can only find a cycle, when doing a depth-first traversal of moves,
    [all...]
  /external/v8/src/x64/
lithium-gap-resolver-x64.h 22 // Resolve a set of parallel moves, emitting assembler instructions.
26 // Build the initial list of moves.
30 // other moves to satisfy dependencies).
40 // Verify the move list before performing moves.
45 // List of moves not yet resolved.
  /external/v8/test/cctest/compiler/
test-gap-resolver.cc 17 typedef std::vector<MoveOperands> Moves;
19 void ExecuteInParallel(Moves moves) {
21 for (Moves::iterator it = moves.begin(); it != moves.end(); ++it) {
76 // An abstract interpreter for moves, swaps and parallel moves.
81 InterpreterState::Moves moves; variable
88 InterpreterState::Moves moves; variable
    [all...]
  /external/v8/src/arm64/
lithium-gap-resolver-arm64.h 38 // Resolve a set of parallel moves, emitting assembler instructions.
42 // Build the initial list of moves.
46 // other moves to satisfy dependencies).
49 // If a cycle is found in the series of moves, save the blocking value to
66 // Verify the move list before performing moves.
89 // List of moves not yet resolved.
lithium-gap-resolver-arm64.cc 38 // Build up a worklist of moves.
44 // Skip constants to perform them last. They don't block other moves
45 // and skipping such moves with register destinations keeps those
54 // Perform the moves with constant sources.
71 // Perform a linear sweep of the moves to add them to the initial list of
72 // moves to perform, ignoring any move that is redundant (the source is
75 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); local
76 for (int i = 0; i < moves->length(); ++i) {
77 LMoveOperands move = moves->at(i);
95 // destination is saved in a stack allocated local. Multiple moves ca
    [all...]
  /external/v8/src/ia32/
lithium-gap-resolver-ia32.h 22 // Resolve a set of parallel moves, emitting assembler instructions.
26 // Build the initial list of moves.
30 // other moves to satisfy dependencies).
37 // Used to build up the graph and remove trivial moves.
68 // Verify the move list before performing moves.
73 // List of moves not yet resolved.
  /external/v8/src/x87/
lithium-gap-resolver-x87.h 22 // Resolve a set of parallel moves, emitting assembler instructions.
26 // Build the initial list of moves.
30 // other moves to satisfy dependencies).
37 // Used to build up the graph and remove trivial moves.
68 // Verify the move list before performing moves.
73 // List of moves not yet resolved.
  /external/chromium-trace/trace-viewer/third_party/six/
CHANGES 24 - Issue #98: Fix `six.moves` race condition in multi-threaded code.
32 - Issue #90: Add `six.moves.shlex_quote`.
34 - Issue #59: Add `six.moves.intern`.
48 - Pull request #45: Add `six.moves.email_mime_nonmultipart`.
59 - Issue #74: `six.moves.xmlrpc_server` should map to `SimpleXMLRPCServer` on Python
70 - Issue #71: Make the six.moves meta path importer handle reloading of the six
76 - Pull request #30: Implement six.moves with a PEP 302 meta path hook.
94 - Raise an AttributeError for six.moves.X when X is a module not available in
102 - Issue #56: Make the fake modules six.moves puts into sys.modules appear not to
114 - Issue #53: Make the fake modules six.moves puts into sys.modules appear not t
    [all...]
six.py 164 A meta path importer to import six.moves and its submodules.
289 MovedModule("urllib_parse", __name__ + ".moves.urllib_parse", "urllib.parse"),
290 MovedModule("urllib_error", __name__ + ".moves.urllib_error", "urllib.error"),
291 MovedModule("urllib", __name__ + ".moves.urllib", __name__ + ".moves.urllib"),
300 _importer._add_module(attr, "moves." + attr.name)
305 moves = _MovedItems(__name__ + ".moves") variable
306 _importer._add_module(moves, "moves")
    [all...]
test_six.py 74 mod = six.moves.html_parser
100 item = getattr(six.moves, item_name)
102 __import__("six.moves." + item_name)
118 assert item_name in dir(six.moves)
130 assert item_name in dir(six.moves.urllib.parse)
131 getattr(six.moves.urllib.parse, item_name)
139 assert item_name in dir(six.moves.urllib.error)
140 getattr(six.moves.urllib.error, item_name)
148 assert item_name in dir(six.moves.urllib.request)
149 getattr(six.moves.urllib.request, item_name
172 from six import moves namespace
178 from six import moves namespace
    [all...]

Completed in 2200 milliseconds

1 2 3 4 5 6 7 8 91011>>