Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Loads

1215 // LoadClusterMutation - DAG post-processing to cluster loads.
1220 /// loads.
1243 void clusterNeighboringLoads(ArrayRef<SUnit*> Loads, ScheduleDAGMI *DAG);
1247 void LoadClusterMutation::clusterNeighboringLoads(ArrayRef<SUnit*> Loads,
1250 for (unsigned Idx = 0, End = Loads.size(); Idx != End; ++Idx) {
1251 SUnit *SU = Loads[Idx];
1272 DEBUG(dbgs() << "Cluster loads SU(" << SUa->NodeNum << ") - SU("
1277 // loads should have effectively the same inputs.
1292 /// \brief Callback from DAG postProcessing to create cluster edges for loads.
1296 // Map each store chain to a set of dependent loads.
1311 // before. ChainPredID==MaxNodeID for loads at the top of the schedule.
2617 // like generating loads of multiple registers should ideally be done within
2618 // the scheduler pass by combining the loads during DAG postprocessing.