Lines Matching defs:loads
514 // Split multiple loads of the same constant or stack slot off into the second
517 MoveOpVector& loads = local_vector();
518 DCHECK(loads.empty());
522 // Find all the loads.
526 loads.push_back(move);
529 if (loads.empty()) return;
530 // Group the loads by source, moving the preferred destination to the
532 std::sort(loads.begin(), loads.end(), LoadCompare);
534 for (MoveOperands* load : loads) {
549 loads.clear();