| /freebsd-13.1/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCSchedule.cpp | 22 static_assert(std::is_pod<MCSchedModel>::value, 24 const MCSchedModel MCSchedModel::Default = {DefaultIssueWidth, 40 int MCSchedModel::computeInstrLatency(const MCSubtargetInfo &STI, in computeInstrLatency() 56 int MCSchedModel::computeInstrLatency(const MCSubtargetInfo &STI, in computeInstrLatency() 62 return MCSchedModel::computeInstrLatency(STI, SCDesc); in computeInstrLatency() 67 int MCSchedModel::computeInstrLatency(const MCSubtargetInfo &STI, in computeInstrLatency() 82 return MCSchedModel::computeInstrLatency(STI, *SCDesc); in computeInstrLatency() 88 MCSchedModel::getReciprocalThroughput(const MCSubtargetInfo &STI, in getReciprocalThroughput() 91 const MCSchedModel &SM = STI.getSchedModel(); in getReciprocalThroughput() 128 return MCSchedModel::getReciprocalThroughput(STI, *SCDesc); in getReciprocalThroughput() [all …]
|
| H A D | MCSubtargetInfo.cpp | 216 CPUSchedModel = &MCSchedModel::GetDefaultSchedModel(); in InitMCProcessorInfo() 309 const MCSchedModel &MCSubtargetInfo::getSchedModelForCPU(StringRef CPU) const { in getSchedModelForCPU() 321 return MCSchedModel::GetDefaultSchedModel(); in getSchedModelForCPU() 329 const MCSchedModel &SchedModel = getSchedModelForCPU(CPU); in getInstrItineraryForCPU()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-mca/Views/ |
| H A D | InstructionInfoView.cpp | 95 const MCSchedModel &SM = STI.getSchedModel(); in collectData() 112 IIVDEntry.Latency = MCSchedModel::computeInstrLatency(STI, SCDesc); in collectData() 114 IIVDEntry.Latency += MCSchedModel::getForwardingDelayCycles( in collectData() 116 IIVDEntry.RThroughput = MCSchedModel::getReciprocalThroughput(STI, SCDesc); in collectData()
|
| H A D | SummaryView.h | 41 const llvm::MCSchedModel &SM; 84 SummaryView(const llvm::MCSchedModel &Model, llvm::ArrayRef<llvm::MCInst> S,
|
| H A D | ResourcePressureView.cpp | 27 const MCSchedModel &SM = getSubTargetInfo().getSchedModel(); in ResourcePressureView() 69 const MCSchedModel &SM) { in printColumnNames() 109 const MCSchedModel &SM = getSubTargetInfo().getSchedModel(); in printResourcePressurePerIter()
|
| H A D | RetireControlUnitStatistics.h | 50 RetireControlUnitStatistics(const MCSchedModel &SM);
|
| H A D | BottleneckAnalysis.h | 97 const MCSchedModel &SM; 139 PressureTracker(const MCSchedModel &Model);
|
| H A D | SchedulerStatistics.h | 48 const llvm::MCSchedModel &SM;
|
| H A D | RetireControlUnitStatistics.cpp | 20 RetireControlUnitStatistics::RetireControlUnitStatistics(const MCSchedModel &SM) in RetireControlUnitStatistics()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | TargetSchedule.h | 34 MCSchedModel SchedModel; 50 TargetSchedModel() : SchedModel(MCSchedModel::GetDefaultSchedModel()) {} in TargetSchedModel() 75 const MCSchedModel *getMCSchedModel() const { return &SchedModel; } in getMCSchedModel()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCSubtargetInfo.h | 58 const MCSchedModel *SchedModel; 86 const MCSchedModel *CPUSchedModel; 159 const MCSchedModel &getSchedModelForCPU(StringRef CPU) const; 162 const MCSchedModel &getSchedModel() const { return *CPUSchedModel; } in getSchedModel()
|
| H A D | MCInstrItineraries.h | 111 MCSchedModel SchedModel = 112 MCSchedModel::GetDefaultSchedModel(); ///< Basic machine properties. 120 InstrItineraryData(const MCSchedModel &SM, const InstrStage *S, in InstrItineraryData()
|
| H A D | MCSchedule.h | 245 struct MCSchedModel { struct 380 static const MCSchedModel &GetDefaultSchedModel() { return Default; } in GetDefaultSchedModel() argument 381 static const MCSchedModel Default; argument
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MCA/Stages/ |
| H A D | InstructionTables.h | 29 const MCSchedModel &SM; 34 InstructionTables(const MCSchedModel &Model) in InstructionTables()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | TargetSchedule.cpp | 257 return capLatency(MCSchedModel::computeInstrLatency(*STI, SCDesc)); in computeInstrLatency() 328 return MCSchedModel::getReciprocalThroughput(SchedClass, in computeReciprocalThroughput() 333 return MCSchedModel::getReciprocalThroughput(*STI, *resolveSchedClass(MI)); in computeReciprocalThroughput() 342 return MCSchedModel::getReciprocalThroughput(SchedClass, in computeReciprocalThroughput() 347 return MCSchedModel::getReciprocalThroughput(*STI, SCDesc); in computeReciprocalThroughput()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/ |
| H A D | LSUnit.h | 225 LSUnitBase(const MCSchedModel &SM, unsigned LoadQueueSize, 446 LSUnit(const MCSchedModel &SM) in LSUnit() 448 LSUnit(const MCSchedModel &SM, unsigned LQ, unsigned SQ) in LSUnit() 450 LSUnit(const MCSchedModel &SM, unsigned LQ, unsigned SQ, bool AssumeNoAlias) in LSUnit()
|
| H A D | RegisterFile.h | 229 void initialize(const MCSchedModel &SM, unsigned NumRegs); 232 RegisterFile(const MCSchedModel &SM, const MCRegisterInfo &mri,
|
| H A D | Scheduler.h | 157 Scheduler(const MCSchedModel &Model, LSUnitBase &Lsu) in Scheduler() 160 Scheduler(const MCSchedModel &Model, LSUnitBase &Lsu, in Scheduler()
|
| H A D | RetireControlUnit.h | 80 RetireControlUnit(const MCSchedModel &SM);
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MCA/ |
| H A D | Support.h | 95 void computeProcResourceMasks(const MCSchedModel &SM, 109 double computeBlockRThroughput(const MCSchedModel &SM, unsigned DispatchWidth,
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MCA/ |
| H A D | Support.cpp | 39 void computeProcResourceMasks(const MCSchedModel &SM, in computeProcResourceMasks() 82 double computeBlockRThroughput(const MCSchedModel &SM, unsigned DispatchWidth, in computeBlockRThroughput()
|
| H A D | Context.cpp | 34 const MCSchedModel &SM = STI.getSchedModel(); in createDefaultPipeline() 75 const MCSchedModel &SM = STI.getSchedModel(); in createInOrderPipeline()
|
| H A D | InstrBuilder.cpp | 33 const MCSchedModel &SM = STI.getSchedModel(); in InstrBuilder() 42 const MCSchedModel &SM = STI.getSchedModel(); in initializeUsedResources() 257 int Latency = MCSchedModel::computeInstrLatency(STI, SCDesc); in computeMaxLatency() 294 const MCSchedModel &SM = STI.getSchedModel(); in populateWrites() 546 const MCSchedModel &SM = STI.getSchedModel(); in createInstrDescImpl()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-mca/ |
| H A D | PipelinePrinter.cpp | 53 const MCSchedModel &SM = STI.getSchedModel(); in getJSONSimulationParameters() 83 const MCSchedModel &SM = STI.getSchedModel(); in getJSONTargetInfo()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/ |
| H A D | RegisterFile.cpp | 64 RegisterFile::RegisterFile(const MCSchedModel &SM, const MCRegisterInfo &mri, in RegisterFile() 72 void RegisterFile::initialize(const MCSchedModel &SM, unsigned NumRegs) { in initialize() 494 const MCSchedModel &SM = STI.getSchedModel(); in collectWrites() 561 const MCSchedModel &SM = STI.getSchedModel(); in checkRAWHazards() 625 const MCSchedModel &SM = STI.getSchedModel(); in addRegisterRead()
|