Lines Matching refs:computeInstrLatency
177 const unsigned InstrLatency = computeInstrLatency(DefMI); in computeOperandLatency()
240 TargetSchedModel::computeInstrLatency(const MCSchedClassDesc &SCDesc) const { in computeInstrLatency() function in TargetSchedModel
241 return capLatency(MCSchedModel::computeInstrLatency(*STI, SCDesc)); in computeInstrLatency()
244 unsigned TargetSchedModel::computeInstrLatency(unsigned Opcode) const { in computeInstrLatency() function in TargetSchedModel
247 return capLatency(SchedModel.computeInstrLatency(*STI, SCIdx)); in computeInstrLatency()
250 unsigned TargetSchedModel::computeInstrLatency(const MCInst &Inst) const { in computeInstrLatency() function in TargetSchedModel
252 return capLatency(SchedModel.computeInstrLatency(*STI, *TII, Inst)); in computeInstrLatency()
253 return computeInstrLatency(Inst.getOpcode()); in computeInstrLatency()
257 TargetSchedModel::computeInstrLatency(const MachineInstr *MI, in computeInstrLatency() function in TargetSchedModel
268 return computeInstrLatency(*SCDesc); in computeInstrLatency()
291 return computeInstrLatency(DefMI); in computeOutputLatency()