Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Latency

202 /// especially important when the definition latency of the return value(s)
260 // Adjust the dependence latency using operand def/use information,
292 // dependencies we use a latency of 0 because for a multi-issue
295 // TODO: Using a latency of 1 here for output dependencies assumes
382 // is also useful if output latency exceeds def-use latency.
423 latency using operand def/use information, then
680 // Assign the Latency field of SU using target-provided information.
681 SU->Latency = SchedModel.computeInstrLatency(SU->getInstr());
773 // dependence edge to ExitSU to model the live-out latency. This is required
778 if (SU->NumSuccs == 0 && SU->Latency > 1
781 Dep.setLatency(SU->Latency - 1);
787 // latency of 0 (except for true dependency of Store followed by
788 // aliased Load... we estimate that with a single cycle of latency
962 adjustChainDeps(AA, MFI, SU, &ExitSU, RejectMemNodes, /*Latency=*/0);