/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | TargetSchedule.h | 117 const MCProcResourceDesc *getProcResource(unsigned PIdx) const { in getProcResource() function 118 return SchedModel.getProcResource(PIdx); in getProcResource() 125 return SchedModel.getProcResource(PIdx)->Name; in getResourceName() 165 return SchedModel.getProcResource(PIdx)->BufferSize; in getResourceBufferSize()
|
H A D | MachineScheduler.h | 1028 return SchedModel->getProcResource(PIdx)->SubUnitsIdxBegin && 1029 !SchedModel->getProcResource(PIdx)->BufferSize;
|
/llvm-project/llvm/lib/MCA/ |
H A D | Support.cpp | 51 const MCProcResourceDesc &Desc = *SM.getProcResource(I); in computeProcResourceMasks() 60 const MCProcResourceDesc &Desc = *SM.getProcResource(I); in computeProcResourceMasks() 75 const MCProcResourceDesc &Desc = *SM.getProcResource(I); in computeProcResourceMasks() 99 const MCProcResourceDesc &MCDesc = *SM.getProcResource(I); in computeBlockRThroughput()
|
H A D | InstrBuilder.cpp | 72 const MCProcResourceDesc &PR = *SM.getProcResource(PRE->ProcResourceIdx); in initializeUsedResources() 188 const MCProcResourceDesc &PR = *SM.getProcResource(I); in initializeUsedResources()
|
/llvm-project/llvm/lib/Target/SystemZ/ |
H A D | SystemZHazardRecognizer.cpp | 179 *SchedModel->getProcResource(PI->ProcResourceIdx); in dumpSU() 238 dbgs() << SchedModel->getProcResource(i)->Name in dumpProcResourceCounters() 244 << SchedModel->getProcResource(CriticalResourceIdx)->Name in dumpProcResourceCounters() 300 if (SchedModel->getProcResource(PI->ProcResourceIdx)->BufferSize == 1) in EmitInstruction() 313 << SchedModel->getProcResource(PI->ProcResourceIdx)->Name in EmitInstruction() 422 switch (SchedModel->getProcResource(PRE.ProcResourceIdx)->BufferSize) { in emitInstruction()
|
/llvm-project/llvm/lib/MCA/Stages/ |
H A D | InstructionTables.cpp | 34 const MCProcResourceDesc &ProcResource = *SM.getProcResource(Index); in execute() 51 const MCProcResourceDesc &SubUnit = *SM.getProcResource(SubUnitIdx); in execute()
|
/llvm-project/llvm/tools/llvm-mca/Views/ |
H A D | ResourcePressureView.cpp | 29 const MCProcResourceDesc &ProcResource = *SM.getProcResource(I); in ResourcePressureView() 73 const MCProcResourceDesc &ProcResource = *SM.getProcResource(I); in printColumnNames() 112 const MCProcResourceDesc &ProcResource = *SM.getProcResource(I); in printResourcePressurePerIter()
|
H A D | BottleneckAnalysis.cpp | 36 const MCProcResourceDesc &ProcResource = *SM.getProcResource(I); in PressureTracker() 52 const MCProcResourceDesc &PRDesc = *SM.getProcResource(ProcResID); in getResourceUsers() 618 const MCProcResourceDesc &PRDesc = *SM.getProcResource(I); in printBottleneckHints() 671 const MCProcResourceDesc &PRDesc = *SM.getProcResource(I);
|
H A D | SchedulerStatistics.cpp | 140 const MCProcResourceDesc &ProcResource = *SM.getProcResource(I); in printSchedulerUsage()
|
H A D | BottleneckAnalysis.h | 169 const MCProcResourceDesc &PRDesc = *SM.getProcResource(ProcResID); in resolveResourceName()
|
H A D | TimelineView.cpp | 49 const MCProcResourceDesc &MCDesc = *SM.getProcResource(Buffer); in onReservedBuffers()
|
/llvm-project/llvm/lib/CodeGen/ |
H A D | TargetSchedule.cpp | 60 unsigned NumUnits = SchedModel.getProcResource(Idx)->NumUnits; in init() 66 unsigned NumUnits = SchedModel.getProcResource(Idx)->NumUnits; in init() 299 if (!SchedModel.getProcResource(PRI->ProcResourceIdx)->BufferSize) in computeOutputLatency()
|
H A D | MachineScheduler.cpp | 2315 NumUnits += SchedModel->getProcResource(i)->NumUnits; in init() 2317 auto SubUnits = SchedModel->getProcResource(i)->SubUnitsIdxBegin; in init() 2318 for (unsigned U = 0, UE = SchedModel->getProcResource(i)->NumUnits; in init() 2384 unsigned NumberOfInstances = SchedModel->getProcResource(PIdx)->NumUnits; in getNextResourceCycle() 2408 auto SubUnits = SchedModel->getProcResource(PIdx)->SubUnitsIdxBegin; in getNextResourceCycle() 2758 if (SchedModel->getProcResource(PIdx)->BufferSize == 0) { in bumpNode() 2922 const unsigned NumUnits = SchedModel->getProcResource(ResIdx)->NumUnits; in dumpReservedCycles() 3155 dbgs() << " " << SchedModel->getProcResource(ResIdx)->Name << " "; in traceCandidate()
|
H A D | MachinePipeliner.cpp | 1157 STI->getSchedModel().getProcResource(PRE.ProcResourceIdx); in minFuncUnits() 3479 const MCProcResourceDesc &Desc = *SM.getProcResource(I); in dumpMRT() 3487 const MCProcResourceDesc &Desc = *SM.getProcResource(I); in dumpMRT() 3499 const MCProcResourceDesc *ProcResource = SM.getProcResource(I); in initProcResourceVectors() 3591 const MCProcResourceDesc *Desc = SM.getProcResource(I); in reserveResources() 3695 SM.getProcResource(PRE.ProcResourceIdx); in calculateResMII() 3722 const MCProcResourceDesc *Desc = SM.getProcResource(I); in calculateResMII()
|
H A D | MachineTraceMetrics.cpp | 915 << MTM.SchedModel.getProcResource(K)->Name << " (" in updatePhysDepsUpwards() 1095 << MTM.SchedModel.getProcResource(K)->Name << " (" in computeInstrHeights()
|
H A D | ScheduleDAGInstrs.cpp | 604 switch (SchedModel.getProcResource(PRE.ProcResourceIdx)->BufferSize) { in initSUnits()
|
/llvm-project/llvm/tools/llvm-exegesis/lib/ |
H A D | SchedClassResolution.cpp | 83 SM.getProcResource(WPR->ProcResourceIdx); in getNonRedundantWriteProcRes() 212 SM.getProcResource(WPR.ProcResourceIdx); in computeIdealizedProcResPressure() 281 if (NameOrId == SchedModel.getProcResource(I)->Name) in findProcResIdx()
|
H A D | Analysis.cpp | 390 SM.getProcResource(WPR.ProcResourceIdx)->Name); in printSchedClassDescHtml() 399 OS, SI.getSchedModel().getProcResource(Pressure.first)->Name); in printSchedClassDescHtml()
|
/llvm-project/llvm/lib/MCA/HardwareUnits/ |
H A D | LSUnit.cpp | 31 const MCProcResourceDesc &LdQDesc = *SM.getProcResource(EPI.LoadQueueID); in LSUnitBase() 36 const MCProcResourceDesc &StQDesc = *SM.getProcResource(EPI.StoreQueueID); in LSUnitBase()
|
H A D | ResourceManager.cpp | 131 std::make_unique<ResourceState>(*SM.getProcResource(I), I, Mask); in ResourceManager()
|
/llvm-project/llvm/unittests/tools/llvm-exegesis/PowerPC/ |
H A D | AnalysisTest.cpp | 41 const std::string Name = SM.getProcResource(I)->Name; in PPCAnalysisTest()
|
/llvm-project/llvm/unittests/tools/llvm-exegesis/X86/ |
H A D | SchedClassResolutionTest.cpp | 33 const std::string Name = SM.getProcResource(I)->Name; in X86SchedClassResolutionTest()
|
/llvm-project/llvm/tools/llvm-mca/ |
H A D | PipelinePrinter.cpp | 86 const MCProcResourceDesc &ProcResource = *SM.getProcResource(I); in getJSONTargetInfo()
|
/llvm-project/llvm/lib/MC/ |
H A D | MCSchedule.cpp | 106 unsigned NumUnits = SM.getProcResource(I->ProcResourceIdx)->NumUnits; in getReciprocalThroughput()
|
/llvm-project/llvm/include/llvm/MC/ |
H A D | MCSchedule.h | 356 const MCProcResourceDesc *getProcResource(unsigned ProcResourceIdx) const { in getProcResource() 353 const MCProcResourceDesc *getProcResource(unsigned ProcResourceIdx) const { getProcResource() function
|