Home
last modified time | relevance | path

Searched refs:computeInstrLatency (Results 1 – 14 of 14) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DTargetSchedule.cpp257 TargetSchedModel::computeInstrLatency(const MCSchedClassDesc &SCDesc) const { in computeInstrLatency() function in TargetSchedModel
258 return capLatency(MCSchedModel::computeInstrLatency(*STI, SCDesc)); in computeInstrLatency()
261 unsigned TargetSchedModel::computeInstrLatency(unsigned Opcode) const { in computeInstrLatency() function in TargetSchedModel
264 return capLatency(SchedModel.computeInstrLatency(*STI, SCIdx)); in computeInstrLatency()
267 unsigned TargetSchedModel::computeInstrLatency(const MCInst &Inst) const { in computeInstrLatency() function in TargetSchedModel
269 return capLatency(SchedModel.computeInstrLatency(*STI, *TII, Inst)); in computeInstrLatency()
270 return computeInstrLatency(Inst.getOpcode()); in computeInstrLatency()
274 TargetSchedModel::computeInstrLatency(const MachineInstr *MI, in computeInstrLatency() function in TargetSchedModel
285 return computeInstrLatency(*SCDesc); in computeInstrLatency()
308 return computeInstrLatency(DefMI); in computeOutputLatency()
H A DTargetSubtargetInfo.cpp91 unsigned Latency = TSchedModel.computeInstrLatency(&MI); in getSchedInfoStr()
104 Latency = TSchedModel.computeInstrLatency(MCI); in getSchedInfoStr()
H A DMachineCombiner.cpp243 LatencyOp = TSchedModel.computeInstrLatency(NewRoot); in getLatency()
284 NewRootLatency += TSchedModel.computeInstrLatency(InsInstrs[i]); in getLatenciesForInstrSequences()
289 RootLatency += TSchedModel.computeInstrLatency(I); in getLatenciesForInstrSequences()
H A DIfConversion.cpp1003 unsigned NumCycles = SchedModel.computeInstrLatency(&MI, false); in ScanInstructions()
2063 unsigned NumCycles = SchedModel.computeInstrLatency(&I, false); in CopyAndPredicateBlock()
H A DScheduleDAGInstrs.cpp559 SU->Latency = SchedModel.computeInstrLatency(SU->getInstr()); in initSUnits()
/freebsd-12.1/contrib/llvm/lib/MC/
H A DMCSchedule.cpp41 int MCSchedModel::computeInstrLatency(const MCSubtargetInfo &STI, in computeInstrLatency() function in MCSchedModel
57 int MCSchedModel::computeInstrLatency(const MCSubtargetInfo &STI, in computeInstrLatency() function in MCSchedModel
63 return MCSchedModel::computeInstrLatency(STI, SCDesc); in computeInstrLatency()
68 int MCSchedModel::computeInstrLatency(const MCSubtargetInfo &STI, in computeInstrLatency() function in MCSchedModel
83 return MCSchedModel::computeInstrLatency(STI, *SCDesc); in computeInstrLatency()
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DTargetSchedule.h44 unsigned computeInstrLatency(const MCSchedClassDesc &SCDesc) const;
186 unsigned computeInstrLatency(const MachineInstr *MI,
188 unsigned computeInstrLatency(const MCInst &Inst) const;
189 unsigned computeInstrLatency(unsigned Opcode) const;
/freebsd-12.1/contrib/llvm/include/llvm/MC/
H A DMCSchedule.h354 static int computeInstrLatency(const MCSubtargetInfo &STI,
357 int computeInstrLatency(const MCSubtargetInfo &STI, unsigned SClass) const;
358 int computeInstrLatency(const MCSubtargetInfo &STI, const MCInstrInfo &MCII,
/freebsd-12.1/contrib/llvm/tools/llvm-mca/Views/
H A DInstructionInfoView.cpp46 unsigned Latency = MCSchedModel::computeInstrLatency(STI, SCDesc); in printView()
/freebsd-12.1/contrib/llvm/lib/Target/X86/
H A DX86PadShortFunction.cpp195 CyclesToEnd += TSM.computeInstrLatency(&MI); in cyclesUntilReturn()
H A DX86CmovConversion.cpp465 unsigned Latency = TSchedModel.computeInstrLatency(&MI); in checkForProfitableCmovCandidates()
H A DX86FixupLEAs.cpp276 InstrDistance += TSM.computeInstrLatency(&*CurInst); in searchBackwards()
/freebsd-12.1/contrib/llvm/lib/Target/AArch64/
H A DAArch64SIMDInstrOpt.cpp254 ReplCost += SchedModel.computeInstrLatency(IDesc->getOpcode()); in shouldReplaceInst()
256 if (SchedModel.computeInstrLatency(InstDesc->getOpcode()) > ReplCost) in shouldReplaceInst()
/freebsd-12.1/contrib/llvm/lib/MCA/
H A DInstrBuilder.cpp200 int Latency = MCSchedModel::computeInstrLatency(STI, SCDesc); in computeMaxLatency()