blob: 7c397002cb59e6c51efcfebd896a70561448d4c0 [file] [log] [blame]
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001// Copyright 2014 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "src/compiler/gap-resolver.h"
6
7#include <algorithm>
8#include <functional>
9#include <set>
10
11namespace v8 {
12namespace internal {
13namespace compiler {
14
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000015namespace {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000016
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000017inline bool Blocks(MoveOperands* move, InstructionOperand destination) {
18 return move->Blocks(destination);
Ben Murdochb8a8cc12014-11-26 15:28:44 +000019}
20
21
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000022inline bool IsRedundant(MoveOperands* move) { return move->IsRedundant(); }
Ben Murdochb8a8cc12014-11-26 15:28:44 +000023
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000024} // namespace
Ben Murdochb8a8cc12014-11-26 15:28:44 +000025
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000026
27void GapResolver::Resolve(ParallelMove* moves) const {
28 // Clear redundant moves.
29 auto it =
30 std::remove_if(moves->begin(), moves->end(), std::ptr_fun(IsRedundant));
31 moves->erase(it, moves->end());
Ben Murdochda12d292016-06-02 14:46:10 +010032 for (MoveOperands* move : *moves) {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000033 if (!move->IsEliminated()) PerformMove(moves, move);
Ben Murdochb8a8cc12014-11-26 15:28:44 +000034 }
35}
36
37
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000038void GapResolver::PerformMove(ParallelMove* moves, MoveOperands* move) const {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000039 // Each call to this function performs a move and deletes it from the move
40 // graph. We first recursively perform any move blocking this one. We mark a
41 // move as "pending" on entry to PerformMove in order to detect cycles in the
42 // move graph. We use operand swaps to resolve cycles, which means that a
43 // call to PerformMove could change any source operand in the move graph.
44 DCHECK(!move->IsPending());
45 DCHECK(!move->IsRedundant());
46
47 // Clear this move's destination to indicate a pending move. The actual
48 // destination is saved on the side.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000049 DCHECK(!move->source().IsInvalid()); // Or else it will look eliminated.
50 InstructionOperand destination = move->destination();
51 move->SetPending();
Ben Murdochb8a8cc12014-11-26 15:28:44 +000052
53 // Perform a depth-first traversal of the move graph to resolve dependencies.
54 // Any unperformed, unpending move with a source the same as this one's
55 // destination blocks this one so recursively perform all such moves.
Ben Murdochda12d292016-06-02 14:46:10 +010056 for (MoveOperands* other : *moves) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000057 if (other->Blocks(destination) && !other->IsPending()) {
58 // Though PerformMove can change any source operand in the move graph,
59 // this call cannot create a blocking move via a swap (this loop does not
60 // miss any). Assume there is a non-blocking move with source A and this
61 // move is blocked on source B and there is a swap of A and B. Then A and
62 // B must be involved in the same cycle (or they would not be swapped).
63 // Since this move's destination is B and there is only a single incoming
64 // edge to an operand, this move must also be involved in the same cycle.
65 // In that case, the blocking move will be created but will be "pending"
66 // when we return from PerformMove.
67 PerformMove(moves, other);
68 }
69 }
70
71 // We are about to resolve this move and don't need it marked as pending, so
72 // restore its destination.
73 move->set_destination(destination);
74
75 // This move's source may have changed due to swaps to resolve cycles and so
76 // it may now be the last move in the cycle. If so remove it.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000077 InstructionOperand source = move->source();
Ben Murdoch61f157c2016-09-16 13:49:30 +010078 if (source.InterferesWith(destination)) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000079 move->Eliminate();
80 return;
81 }
82
83 // The move may be blocked on a (at most one) pending move, in which case we
84 // have a cycle. Search for such a blocking move and perform a swap to
85 // resolve it.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000086 auto blocker = std::find_if(moves->begin(), moves->end(),
87 std::bind2nd(std::ptr_fun(&Blocks), destination));
Ben Murdochb8a8cc12014-11-26 15:28:44 +000088 if (blocker == moves->end()) {
89 // The easy case: This move is not blocked.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000090 assembler_->AssembleMove(&source, &destination);
Ben Murdochb8a8cc12014-11-26 15:28:44 +000091 move->Eliminate();
92 return;
93 }
94
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000095 DCHECK((*blocker)->IsPending());
Ben Murdochb8a8cc12014-11-26 15:28:44 +000096 // Ensure source is a register or both are stack slots, to limit swap cases.
Ben Murdochc5610432016-08-08 18:44:38 +010097 if (source.IsStackSlot() || source.IsFPStackSlot()) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000098 std::swap(source, destination);
99 }
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000100 assembler_->AssembleSwap(&source, &destination);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000101 move->Eliminate();
102
103 // Any unperformed (including pending) move with a source of either this
104 // move's source or destination needs to have their source changed to
105 // reflect the state of affairs after the swap.
Ben Murdochda12d292016-06-02 14:46:10 +0100106 for (MoveOperands* other : *moves) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000107 if (other->Blocks(source)) {
108 other->set_source(destination);
109 } else if (other->Blocks(destination)) {
110 other->set_source(source);
111 }
112 }
113}
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000114} // namespace compiler
115} // namespace internal
116} // namespace v8