| /freebsd-12.1/contrib/llvm/lib/CodeGen/ |
| H A D | TargetSchedule.cpp | 257 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 D | TargetSubtargetInfo.cpp | 91 unsigned Latency = TSchedModel.computeInstrLatency(&MI); in getSchedInfoStr() 104 Latency = TSchedModel.computeInstrLatency(MCI); in getSchedInfoStr()
|
| H A D | MachineCombiner.cpp | 243 LatencyOp = TSchedModel.computeInstrLatency(NewRoot); in getLatency() 284 NewRootLatency += TSchedModel.computeInstrLatency(InsInstrs[i]); in getLatenciesForInstrSequences() 289 RootLatency += TSchedModel.computeInstrLatency(I); in getLatenciesForInstrSequences()
|
| H A D | IfConversion.cpp | 1003 unsigned NumCycles = SchedModel.computeInstrLatency(&MI, false); in ScanInstructions() 2063 unsigned NumCycles = SchedModel.computeInstrLatency(&I, false); in CopyAndPredicateBlock()
|
| H A D | ScheduleDAGInstrs.cpp | 559 SU->Latency = SchedModel.computeInstrLatency(SU->getInstr()); in initSUnits()
|
| /freebsd-12.1/contrib/llvm/lib/MC/ |
| H A D | MCSchedule.cpp | 41 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 D | TargetSchedule.h | 44 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 D | MCSchedule.h | 354 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 D | InstructionInfoView.cpp | 46 unsigned Latency = MCSchedModel::computeInstrLatency(STI, SCDesc); in printView()
|
| /freebsd-12.1/contrib/llvm/lib/Target/X86/ |
| H A D | X86PadShortFunction.cpp | 195 CyclesToEnd += TSM.computeInstrLatency(&MI); in cyclesUntilReturn()
|
| H A D | X86CmovConversion.cpp | 465 unsigned Latency = TSchedModel.computeInstrLatency(&MI); in checkForProfitableCmovCandidates()
|
| H A D | X86FixupLEAs.cpp | 276 InstrDistance += TSM.computeInstrLatency(&*CurInst); in searchBackwards()
|
| /freebsd-12.1/contrib/llvm/lib/Target/AArch64/ |
| H A D | AArch64SIMDInstrOpt.cpp | 254 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 D | InstrBuilder.cpp | 200 int Latency = MCSchedModel::computeInstrLatency(STI, SCDesc); in computeMaxLatency()
|