| /openbsd-src/gnu/llvm/llvm/lib/MC/ |
| H A D | MCSchedule.cpp | 58 unsigned SchedClass) const { in computeInstrLatency() 59 const MCSchedClassDesc &SCDesc = *getSchedClassDesc(SchedClass); in computeInstrLatency() 71 unsigned SchedClass = MCII.get(Inst.getOpcode()).getSchedClass(); in computeInstrLatency() local 72 const MCSchedClassDesc *SCDesc = getSchedClassDesc(SchedClass); in computeInstrLatency() 78 SchedClass = STI.resolveVariantSchedClass(SchedClass, &Inst, &MCII, CPUID); in computeInstrLatency() 79 SCDesc = getSchedClassDesc(SchedClass); in computeInstrLatency() 82 if (SchedClass) in computeInstrLatency() 114 unsigned SchedClass = MCII.get(Inst.getOpcode()).getSchedClass(); in getReciprocalThroughput() local 115 const MCSchedClassDesc *SCDesc = getSchedClassDesc(SchedClass); in getReciprocalThroughput() 124 SchedClass = STI.resolveVariantSchedClass(SchedClass, &Inst, &MCII, CPUID); in getReciprocalThroughput() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/ |
| H A D | HexagonDepTimingClasses.h | 18 inline bool is_TC1(unsigned SchedClass) { in is_TC1() argument 19 switch (SchedClass) { in is_TC1() 67 inline bool is_TC2(unsigned SchedClass) { in is_TC2() argument 68 switch (SchedClass) { in is_TC2() 99 inline bool is_TC2early(unsigned SchedClass) { in is_TC2early() argument 100 switch (SchedClass) { in is_TC2early() 110 inline bool is_TC3x(unsigned SchedClass) { in is_TC3x() argument 111 switch (SchedClass) { in is_TC3x() 143 inline bool is_TC4x(unsigned SchedClass) { in is_TC4x() argument 144 switch (SchedClass) { in is_TC4x()
|
| H A D | HexagonInstrInfo.cpp | 2663 unsigned SchedClass = MI.getDesc().getSchedClass(); in isTC1() local 2664 return is_TC1(SchedClass); in isTC1() 2668 unsigned SchedClass = MI.getDesc().getSchedClass(); in isTC2() local 2669 return is_TC2(SchedClass); in isTC2() 2673 unsigned SchedClass = MI.getDesc().getSchedClass(); in isTC2Early() local 2674 return is_TC2early(SchedClass); in isTC2Early() 2678 unsigned SchedClass = MI.getDesc().getSchedClass(); in isTC4x() local 2679 return is_TC4x(SchedClass); in isTC4x()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | TargetSchedule.cpp | 119 unsigned SchedClass = MI->getDesc().getSchedClass(); in resolveSchedClass() local 120 const MCSchedClassDesc *SCDesc = SchedModel.getSchedClassDesc(SchedClass); in resolveSchedClass() 130 SchedClass = STI->resolveSchedClass(SchedClass, MI, this); in resolveSchedClass() 131 SCDesc = SchedModel.getSchedClassDesc(SchedClass); in resolveSchedClass() 311 unsigned SchedClass = MI->getDesc().getSchedClass(); in computeReciprocalThroughput() local 312 return MCSchedModel::getReciprocalThroughput(SchedClass, in computeReciprocalThroughput() 324 unsigned SchedClass = TII->get(Opcode).getSchedClass(); in computeReciprocalThroughput() local 326 return MCSchedModel::getReciprocalThroughput(SchedClass, in computeReciprocalThroughput() 329 const MCSchedClassDesc &SCDesc = *SchedModel.getSchedClassDesc(SchedClass); in computeReciprocalThroughput()
|
| H A D | MachinePipeliner.cpp | 1018 unsigned SchedClass = Inst->getDesc().getSchedClass(); in minFuncUnits() local 1022 make_range(InstrItins->beginStage(SchedClass), in minFuncUnits() 1023 InstrItins->endStage(SchedClass))) { in minFuncUnits() 1035 STI->getSchedModel().getSchedClassDesc(SchedClass); in minFuncUnits() 1065 unsigned SchedClass = MI.getDesc().getSchedClass(); in calcCriticalResources() local 1068 make_range(InstrItins->beginStage(SchedClass), in calcCriticalResources() 1069 InstrItins->endStage(SchedClass))) { in calcCriticalResources() 1078 STI->getSchedModel().getSchedClassDesc(SchedClass); in calcCriticalResources()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/SystemZ/ |
| H A D | SystemZHazardRecognizer.h | 122 if (!SU->SchedClass && SchedModel->hasInstrSchedModel()) in getSchedClass() 123 SU->SchedClass = SchedModel->resolveSchedClass(SU->getInstr()); in getSchedClass() 124 return SU->SchedClass; in getSchedClass()
|
| H A D | SystemZScheduleZEC12.td | 106 // resources that it needs. These will be combined into a SchedClass.
|
| H A D | SystemZScheduleZ196.td | 103 // resources that it needs. These will be combined into a SchedClass.
|
| H A D | SystemZScheduleZ13.td | 122 // resources that it needs. These will be combined into a SchedClass.
|
| H A D | SystemZScheduleZ15.td | 122 // resources that it needs. These will be combined into a SchedClass.
|
| H A D | SystemZScheduleZ14.td | 122 // resources that it needs. These will be combined into a SchedClass.
|
| H A D | SystemZScheduleZ16.td | 123 // resources that it needs. These will be combined into a SchedClass.
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/ |
| H A D | ScheduleDAGInstrs.h | 267 if (!SU->SchedClass && SchedModel.hasInstrSchedModel()) in getSchedClass() 268 SU->SchedClass = SchedModel.resolveSchedClass(SU->getInstr()); in getSchedClass() 269 return SU->SchedClass; in getSchedClass()
|
| H A D | TargetSubtargetInfo.h | 143 virtual unsigned resolveSchedClass(unsigned SchedClass, in resolveSchedClass() argument
|
| H A D | ScheduleDAG.h | 253 const MCSchedClassDesc *SchedClass = variable
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| H A D | HexagonMCInstrInfo.cpp | 435 int SchedClass = HexagonMCInstrInfo::getDesc(MCII, MCI).getSchedClass(); in getCVIResources() local 436 int Size = II[SchedClass].LastStage - II[SchedClass].FirstStage; in getCVIResources() 442 unsigned Stage = II[SchedClass].LastStage - 1; in getCVIResources() 454 int SchedClass = HexagonMCInstrInfo::getDesc(MCII, MCI).getSchedClass(); in getUnits() local 455 return ((II[SchedClass].FirstStage + HexagonStages)->getUnits()); in getUnits() 465 int SchedClass = HexagonMCInstrInfo::getDesc(MCII, MCI).getSchedClass(); in getOtherReservedSlots() local 471 for (unsigned Stage = II[SchedClass].FirstStage + 1; in getOtherReservedSlots() 472 Stage < II[SchedClass].LastStage; ++Stage) { in getOtherReservedSlots()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/MC/ |
| H A D | MCInstrDesc.h | 209 unsigned short SchedClass; // enum identifying instr sched class variable 601 unsigned getSchedClass() const { return SchedClass; } in getSchedClass()
|
| H A D | MCSchedule.h | 367 getReciprocalThroughput(unsigned SchedClass, const InstrItineraryData &IID);
|
| H A D | MCSubtargetInfo.h | 220 virtual unsigned resolveVariantSchedClass(unsigned SchedClass, in resolveVariantSchedClass() argument
|
| /openbsd-src/gnu/llvm/llvm/utils/TableGen/ |
| H A D | SubtargetEmitter.cpp | 1349 const CodeGenSchedClass &SchedClass = SchedModels.getSchedClass(SCIdx); in EmitSchedClassTables() local 1350 OS << " {DBGFIELD(\"" << SchedClass.Name << "\") "; in EmitSchedClassTables() 1351 if (SchedClass.Name.size() < 18) in EmitSchedClassTables() 1352 OS.indent(18 - SchedClass.Name.size()); in EmitSchedClassTables()
|