Lines Matching refs:computeInstrLatency
174 const unsigned InstrLatency = computeInstrLatency(DefMI); in computeOperandLatency()
237 TargetSchedModel::computeInstrLatency(const MCSchedClassDesc &SCDesc) const { in computeInstrLatency() function in TargetSchedModel
238 return capLatency(MCSchedModel::computeInstrLatency(*STI, SCDesc)); in computeInstrLatency()
241 unsigned TargetSchedModel::computeInstrLatency(unsigned Opcode) const { in computeInstrLatency() function in TargetSchedModel
244 return capLatency(SchedModel.computeInstrLatency(*STI, SCIdx)); in computeInstrLatency()
247 unsigned TargetSchedModel::computeInstrLatency(const MCInst &Inst) const { in computeInstrLatency() function in TargetSchedModel
249 return capLatency(SchedModel.computeInstrLatency(*STI, *TII, Inst)); in computeInstrLatency()
250 return computeInstrLatency(Inst.getOpcode()); in computeInstrLatency()
254 TargetSchedModel::computeInstrLatency(const MachineInstr *MI, in computeInstrLatency() function in TargetSchedModel
265 return computeInstrLatency(*SCDesc); in computeInstrLatency()
288 return computeInstrLatency(DefMI); in computeOutputLatency()