| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-mca/Views/ |
| H A D | RegisterFileStatistics.cpp | 22 const MCSchedModel &SM = STI.getSchedModel(); in RegisterFileStatistics() 121 assert(STI.getSchedModel().hasExtraProcessorInfo() && in printView() 124 STI.getSchedModel().getExtraProcessorInfo(); in printView()
|
| H A D | ResourcePressureView.cpp | 27 const MCSchedModel &SM = getSubTargetInfo().getSchedModel(); in ResourcePressureView() 109 const MCSchedModel &SM = getSubTargetInfo().getSchedModel(); in printResourcePressurePerIter() 153 printColumnNames(FOS, getSubTargetInfo().getSchedModel()); in printResourcePressurePerInst()
|
| H A D | SchedulerStatistics.cpp | 22 : SM(STI.getSchedModel()), LQResourceID(0), SQResourceID(0), NumIssued(0), in SchedulerStatistics() 25 Usage(STI.getSchedModel().NumProcResourceKinds, {0, 0, 0}) { in SchedulerStatistics()
|
| H A D | TimelineView.cpp | 46 const MCSchedModel &SM = getSubTargetInfo().getSchedModel(); in onReservedBuffers() 171 getSubTargetInfo().getSchedModel().MicroOpBufferSize); in printWaitTimeEntry()
|
| H A D | InstructionInfoView.cpp | 95 const MCSchedModel &SM = STI.getSchedModel(); in collectData()
|
| H A D | BottleneckAnalysis.cpp | 445 : InstructionView(sti, Printer, S), Tracker(sti.getSchedModel()), in BottleneckAnalysis() 612 const MCSchedModel &SM = getSubTargetInfo().getSchedModel(); in printBottleneckHints()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MCA/ |
| 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() 35 computeProcResourceMasks(STI.getSchedModel(), ProcResourceMasks); in InstrBuilder() 42 const MCSchedModel &SM = STI.getSchedModel(); in initializeUsedResources() 294 const MCSchedModel &SM = STI.getSchedModel(); in populateWrites() 540 assert(STI.getSchedModel().hasInstrSchedModel() && in createInstrDescImpl() 546 const MCSchedModel &SM = STI.getSchedModel(); in createInstrDescImpl() 656 unsigned ProcID = STI.getSchedModel().getProcessorID(); in createInstruction()
|
| /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()
|
| H A D | llvm-mca.cpp | 385 bool IsOutOfOrder = STI->getSchedModel().isOutOfOrder(); in main() 391 if (!STI->getSchedModel().hasInstrSchedModel()) { in main() 397 if (STI->getSchedModel().InstrItineraries) in main() 501 const MCSchedModel &SM = STI->getSchedModel(); in main()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | TargetSubtargetInfo.cpp | 53 return getSchedModel().PostRAScheduler; in enablePostRAScheduler()
|
| H A D | TargetSchedule.cpp | 65 SchedModel = TSInfo->getSchedModel(); in init()
|
| H A D | MachinePipeliner.cpp | 1013 if (STI && STI->getSchedModel().hasInstrSchedModel()) { in minFuncUnits() 1015 STI->getSchedModel().getSchedClassDesc(SchedClass); in minFuncUnits() 1027 STI->getSchedModel().getProcResource(PRE.ProcResourceIdx); in minFuncUnits() 1056 if (STI && STI->getSchedModel().hasInstrSchedModel()) { in calcCriticalResources() 1058 STI->getSchedModel().getSchedClassDesc(SchedClass); in calcCriticalResources()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonMachineScheduler.cpp | 255 SchedModel = DAG->getSchedModel(); in initialize() 262 const InstrItineraryData *Itin = DAG->getSchedModel()->getInstrItineraries(); in initialize() 272 Top.ResourceModel = new VLIWResourceModel(STI, DAG->getSchedModel()); in initialize() 273 Bot.ResourceModel = new VLIWResourceModel(STI, DAG->getSchedModel()); in initialize()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MCA/Stages/ |
| H A D | InOrderIssueStage.cpp | 47 : STI(STI), PRF(PRF), RM(STI.getSchedModel()), CB(CB), NumIssued(), SI(), in InOrderIssueStage() 51 return STI.getSchedModel().IssueWidth; in getIssueWidth()
|
| H A D | DispatchStage.cpp | 35 DispatchWidth = Subtarget.getSchedModel().IssueWidth; in DispatchStage()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCSchedule.cpp | 91 const MCSchedModel &SM = STI.getSchedModel(); in getReciprocalThroughput()
|
| H A D | MCSubtargetInfo.cpp | 334 InstrItins = InstrItineraryData(getSchedModel(), Stages, OperandCycles, in initInstrItins()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/ |
| H A D | RegisterFile.cpp | 494 const MCSchedModel &SM = STI.getSchedModel(); in collectWrites() 561 const MCSchedModel &SM = STI.getSchedModel(); in checkRAWHazards() 625 const MCSchedModel &SM = STI.getSchedModel(); in addRegisterRead()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCSubtarget.cpp | 194 return getSchedModel().hasInstrSchedModel() && EnableMachinePipeliner; in enableMachinePipeliner()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCSubtargetInfo.h | 162 const MCSchedModel &getSchedModel() const { return *CPUSchedModel; } in getSchedModel() function
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | ScheduleDAGInstrs.h | 262 const TargetSchedModel *getSchedModel() const { return &SchedModel; } in getSchedModel() function
|
| H A D | MachinePipeliner.h | 450 : STI(ST), SM(ST->getSchedModel()), UseDFA(ST->useDFAforSMS()), in ResourceManager()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| H A D | HexagonMCInstrInfo.cpp | 427 const InstrItinerary *II = STI.getSchedModel().InstrItineraries; in getCVIResources() 446 const InstrItinerary *II = STI.getSchedModel().InstrItineraries; in getUnits() 457 const InstrItinerary *II = STI.getSchedModel().InstrItineraries; in getOtherReservedSlots()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MC/MCDisassembler/ |
| H A D | Disassembler.cpp | 198 const MCSchedModel SCModel = STI->getSchedModel(); in getLatency()
|