Home
last modified time | relevance | path

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

/external/v8/src/crankshaft/
Dlithium.cc164 for (int i = 0; i < move_operands_.length(); ++i) { in IsRedundant()
165 if (!move_operands_[i].IsRedundant()) return false; in IsRedundant()
173 for (int i = 0; i < move_operands_.length(); ++i) { in PrintDataTo()
174 if (!move_operands_[i].IsEliminated()) { in PrintDataTo()
175 LOperand* source = move_operands_[i].source(); in PrintDataTo()
176 LOperand* destination = move_operands_[i].destination(); in PrintDataTo()
Dlithium.h349 explicit LParallelMove(Zone* zone) : move_operands_(4, zone) { } in LITHIUM_OPERAND_LIST()
352 move_operands_.Add(LMoveOperands(from, to), zone); in LITHIUM_OPERAND_LIST()
357 ZoneList<LMoveOperands>* move_operands() { return &move_operands_; } in LITHIUM_OPERAND_LIST()
362 ZoneList<LMoveOperands> move_operands_; in LITHIUM_OPERAND_LIST()
/external/v8/src/compiler/
Dinstruction.cc201 const MoveOperands& mo = *printable.move_operands_; in operator <<()
Dinstruction.h621 const MoveOperands* move_operands_; member