Lines Matching defs:Lat
882 unsigned Lat = 0;
885 Lat = InstrInfo.getInstrLatency(getInstrItineraryData(), *I);
886 else if (Lat)
887 --Lat;
889 Dep.setLatency(Lat);
895 unsigned Lat = InstrInfo.getInstrLatency(getInstrItineraryData(), *DefI);
896 for (++I; I != E && I->isBundledWithPred() && Lat; ++I) {
899 --Lat;
901 Dep.setLatency(Lat);
989 unsigned Lat = TSchedModel->computeInstrLatency(&MAI) - 1;
992 dbgs() << "Need " << Lat
995 // Find up to Lat independent scalar instructions as early as
997 for ( ; Lat && LastSALU != E; ++LastSALU) {
1005 Lat -= linkSALUChain(&SU, &*LastSALU, Lat, Visited);