Lines Matching refs:moves_
16 moves_(32, owner->zone()), in LGapResolver()
27 for (int i = 0; i < moves_.length(); ++i) { in Resolve()
28 LMoveOperands move = moves_[i]; in Resolve()
38 for (int i = 0; i < moves_.length(); ++i) { in Resolve()
39 if (!moves_[i].IsEliminated()) { in Resolve()
40 DCHECK(moves_[i].source()->IsConstantOperand()); in Resolve()
72 DCHECK(!moves_[index].IsPending()); in PerformMove()
73 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
77 DCHECK(moves_[index].source() != NULL); // Or else it will look eliminated. in PerformMove()
78 LOperand* destination = moves_[index].destination(); in PerformMove()
79 moves_[index].set_destination(NULL); in PerformMove()
85 for (int i = 0; i < moves_.length(); ++i) { in PerformMove()
86 LMoveOperands other_move = moves_[i]; in PerformMove()
103 moves_[index].set_destination(destination); in PerformMove()
107 if (moves_[index].source()->Equals(destination)) { in PerformMove()
115 for (int i = 0; i < moves_.length(); ++i) { in PerformMove()
116 LMoveOperands other_move = moves_[i]; in PerformMove()
136 moves_.Add(move, cgen_->zone()); in AddMove()
141 LOperand* source = moves_[index].source(); in RemoveMove()
147 LOperand* destination = moves_[index].destination(); in RemoveMove()
153 moves_[index].Eliminate(); in RemoveMove()
159 for (int i = 0; i < moves_.length(); ++i) { in CountSourceUses()
160 if (!moves_[i].IsEliminated() && moves_[i].source()->Equals(operand)) { in CountSourceUses()
184 if (!moves_.is_empty()) return false; in HasBeenReset()
200 for (int i = 0; i < moves_.length(); ++i) { in Verify()
201 LOperand* destination = moves_[i].destination(); in Verify()
202 for (int j = i + 1; j < moves_.length(); ++j) { in Verify()
203 SLOW_DCHECK(!destination->Equals(moves_[j].destination())); in Verify()
217 moves_.Rewind(0); in Finish()
262 LOperand* source = moves_[index].source(); in EmitMove()
263 LOperand* destination = moves_[index].destination(); in EmitMove()
361 LOperand* source = moves_[index].source(); in EmitSwap()
362 LOperand* destination = moves_[index].destination(); in EmitSwap()
464 for (int i = 0; i < moves_.length(); ++i) { in EmitSwap()
465 LMoveOperands other_move = moves_[i]; in EmitSwap()
467 moves_[i].set_source(destination); in EmitSwap()
469 moves_[i].set_source(source); in EmitSwap()