Lines Matching defs:computeInstrLatency
176 const unsigned InstrLatency = computeInstrLatency(DefMI);
239 TargetSchedModel::computeInstrLatency(const MCSchedClassDesc &SCDesc) const {
240 return capLatency(MCSchedModel::computeInstrLatency(*STI, SCDesc));
243 unsigned TargetSchedModel::computeInstrLatency(unsigned Opcode) const {
246 return capLatency(SchedModel.computeInstrLatency(*STI, SCIdx));
249 unsigned TargetSchedModel::computeInstrLatency(const MCInst &Inst) const {
251 return capLatency(SchedModel.computeInstrLatency(*STI, *TII, Inst));
252 return computeInstrLatency(Inst.getOpcode());
256 TargetSchedModel::computeInstrLatency(const MachineInstr *MI,
267 return computeInstrLatency(*SCDesc);
290 return computeInstrLatency(DefMI);