HomeSort by: relevance | last modified time | path
    Searched defs:computeInstrLatency (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCSchedule.cpp 40 int MCSchedModel::computeInstrLatency(const MCSubtargetInfo &STI,
56 int MCSchedModel::computeInstrLatency(const MCSubtargetInfo &STI,
62 return MCSchedModel::computeInstrLatency(STI, SCDesc);
67 int MCSchedModel::computeInstrLatency(const MCSubtargetInfo &STI,
82 return MCSchedModel::computeInstrLatency(STI, *SCDesc);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TargetSchedule.cpp 256 TargetSchedModel::computeInstrLatency(const MCSchedClassDesc &SCDesc) const {
257 return capLatency(MCSchedModel::computeInstrLatency(*STI, SCDesc));
260 unsigned TargetSchedModel::computeInstrLatency(unsigned Opcode) const {
263 return capLatency(SchedModel.computeInstrLatency(*STI, SCIdx));
266 unsigned TargetSchedModel::computeInstrLatency(const MCInst &Inst) const {
268 return capLatency(SchedModel.computeInstrLatency(*STI, *TII, Inst));
269 return computeInstrLatency(Inst.getOpcode());
273 TargetSchedModel::computeInstrLatency(const MachineInstr *MI,
284 return computeInstrLatency(*SCDesc);
307 return computeInstrLatency(DefMI)
    [all...]

Completed in 28 milliseconds