Lines Matching defs:Latency
93 SU->Latency = Old->Latency;
423 // Assign the Latency field of NodeSUnit using target-provided information.
506 unsigned OpLatency = isChain ? 1 : OpSU->Latency;
623 SU->Latency = 0;
629 SU->Latency = 1;
636 SU->Latency = HighLatencyCycles;
638 SU->Latency = 1;
644 SU->Latency = 0;
647 SU->Latency += TII->getInstrLatency(InstrItins, N);
663 std::optional<unsigned> Latency =
665 if (Latency > 1U && Use->getOpcode() == ISD::CopyToReg &&
672 Latency = *Latency - 1;
674 if (Latency)
675 dep.setLatency(*Latency);