Lines Matching refs:from
209 void MoveOptimizer::MigrateMoves(Instruction* to, Instruction* from) {
210 if (from->IsCall()) return;
212 ParallelMove* from_moves = from->parallel_moves()[0];
220 for (size_t i = 0; i < from->InputCount(); ++i) {
221 dst_cant_be.InsertOp(*from->InputAt(i));
228 // RemoveClobberedDestinations for the "from" instruction.
229 for (size_t i = 0; i < from->OutputCount(); ++i) {
230 src_cant_be.InsertOp(*from->OutputAt(i));
232 for (size_t i = 0; i < from->TempCount(); ++i) {
233 src_cant_be.InsertOp(*from->TempAt(i));
312 // Add all possibly modified moves from right side.
360 // Migrate to the gap of prev_instr eligible moves from instr.
541 // Nothing to be gained from splitting here.