Lines Matching refs:moves_
27 : cgen_(owner), masm_(owner, owner->masm()), moves_(32, owner->zone()), in LGapResolver()
33 DCHECK(moves_.is_empty()); in Resolve()
39 for (int i = 0; i < moves_.length(); ++i) { in Resolve()
40 LMoveOperands move = moves_[i]; in Resolve()
53 for (int i = 0; i < moves_.length(); ++i) { in Resolve()
54 LMoveOperands move = moves_[i]; in Resolve()
64 moves_.Rewind(0); in Resolve()
76 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); in BuildInitialMoveList()
87 LMoveOperands& current_move = moves_[index]; in PerformMove()
103 for (int i = 0; i < moves_.length(); ++i) { in PerformMove()
104 LMoveOperands other_move = moves_[i]; in PerformMove()
120 LMoveOperands other_move = moves_[root_index_]; in PerformMove()
135 for (int i = 0; i < moves_.length(); ++i) { in Verify()
136 LOperand* destination = moves_[i].destination(); in Verify()
137 for (int j = i + 1; j < moves_.length(); ++j) { in Verify()
138 SLOW_DCHECK(!destination->Equals(moves_[j].destination())); in Verify()
146 DCHECK(moves_[index].destination()->Equals(moves_[root_index_].source())); in BreakCycle()
153 LOperand* source = moves_[index].source(); in BreakCycle()
154 saved_destination_ = moves_[index].destination(); in BreakCycle()
173 moves_[index].Eliminate(); in BreakCycle()
202 LOperand* source = moves_[index].source(); in EmitMove()
203 LOperand* destination = moves_[index].destination(); in EmitMove()
290 moves_[index].Eliminate(); in EmitMove()