Home
last modified time | relevance | path

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

/external/v8/src/crankshaft/
Dlithium.cc171 for (int i = 0; i < move_operands_.length(); ++i) { in IsRedundant()
172 if (!move_operands_[i].IsRedundant()) return false; in IsRedundant()
180 for (int i = 0; i < move_operands_.length(); ++i) { in PrintDataTo()
181 if (!move_operands_[i].IsEliminated()) { in PrintDataTo()
182 LOperand* source = move_operands_[i].source(); in PrintDataTo()
183 LOperand* destination = move_operands_[i].destination(); in PrintDataTo()
Dlithium.h350 explicit LParallelMove(Zone* zone) : move_operands_(4, zone) { } in LITHIUM_OPERAND_LIST()
353 move_operands_.Add(LMoveOperands(from, to), zone); in LITHIUM_OPERAND_LIST()
358 ZoneList<LMoveOperands>* move_operands() { return &move_operands_; } in LITHIUM_OPERAND_LIST()
363 ZoneList<LMoveOperands> move_operands_; in LITHIUM_OPERAND_LIST()
/external/v8/src/compiler/
Dinstruction.cc255 const MoveOperands& mo = *printable.move_operands_; in operator <<()
Dinstruction.h726 const MoveOperands* move_operands_; member