Lines Matching refs:Dep
303 SDep Dep; in addPhysRegDataDeps() local
305 Dep = SDep(SU, SDep::Artificial); in addPhysRegDataDeps()
310 Dep = SDep(SU, SDep::Data, *Alias); in addPhysRegDataDeps()
313 Dep.setLatency( in addPhysRegDataDeps()
317 ST.adjustSchedDependency(SU, UseSU, Dep); in addPhysRegDataDeps()
318 UseSU->addPred(Dep); in addPhysRegDataDeps()
351 SDep Dep(SU, Kind, /*Reg=*/*Alias); in addPhysRegDeps() local
352 Dep.setLatency( in addPhysRegDeps()
354 DefSU->addPred(Dep); in addPhysRegDeps()
461 SDep Dep(SU, SDep::Data, Reg); in addVRegDefDeps() local
462 Dep.setLatency(SchedModel.computeOperandLatency(MI, OperIdx, Use, in addVRegDefDeps()
464 ST.adjustSchedDependency(SU, UseSU, Dep); in addVRegDefDeps()
465 UseSU->addPred(Dep); in addVRegDefDeps()
504 SDep Dep(SU, SDep::Output, Reg); in addVRegDefDeps() local
505 Dep.setLatency( in addVRegDefDeps()
507 DefSU->addPred(Dep); in addVRegDefDeps()
626 SDep Dep(SUa, SDep::MayAliasMem); in addChainDependency() local
627 Dep.setLatency(Latency); in addChainDependency()
628 SUb->addPred(Dep); in addChainDependency()
996 SDep Dep(SU, SDep::Artificial); in buildSchedGraph() local
997 Dep.setLatency(SU->Latency - 1); in buildSchedGraph()
998 ExitSU.addPred(Dep); in buildSchedGraph()