Searched refs:move_operands_ (Results 1 - 4 of 4) sorted by relevance

/external/v8/src/
H A Dlithium.cc168 for (int i = 0; i < move_operands_.length(); ++i) {
169 if (!move_operands_[i].IsRedundant()) return false;
177 for (int i = 0; i < move_operands_.length(); ++i) {
178 if (!move_operands_[i].IsEliminated()) {
179 LOperand* source = move_operands_[i].source();
180 LOperand* destination = move_operands_[i].destination();
H A Dlithium.h338 explicit LParallelMove(Zone* zone) : move_operands_(4, zone) { }
341 move_operands_.Add(LMoveOperands(from, to), zone);
346 ZoneList<LMoveOperands>* move_operands() { return &move_operands_; }
351 ZoneList<LMoveOperands> move_operands_; member in class:v8::internal::FINAL
/external/v8/src/compiler/
H A Dinstruction.h349 explicit ParallelMove(Zone* zone) : move_operands_(4, zone) {}
352 move_operands_.Add(MoveOperands(from, to), zone);
357 ZoneList<MoveOperands>* move_operands() { return &move_operands_; }
359 return &move_operands_;
363 ZoneList<MoveOperands> move_operands_; member in class:v8::internal::compiler::FINAL
H A Dinstruction.cc106 for (int i = 0; i < move_operands_.length(); ++i) {
107 if (!move_operands_[i].IsRedundant()) return false;

Completed in 46 milliseconds