Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 1 | //=-- SystemZHazardRecognizer.h - SystemZ Hazard Recognizer -----*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines a hazard recognizer for the SystemZ scheduler. |
| 11 | // |
| 12 | // This class is used by the SystemZ scheduling strategy to maintain |
| 13 | // the state during scheduling, and provide cost functions for |
| 14 | // scheduling candidates. This includes: |
| 15 | // |
| 16 | // * Decoder grouping. A decoder group can maximally hold 3 uops, and |
| 17 | // instructions that always begin a new group should be scheduled when |
| 18 | // the current decoder group is empty. |
| 19 | // * Processor resources usage. It is beneficial to balance the use of |
| 20 | // resources. |
| 21 | // |
Jonas Paulsson | 57a705d | 2017-08-17 08:33:44 +0000 | [diff] [blame] | 22 | // A goal is to consider all instructions, also those outside of any |
| 23 | // scheduling region. Such instructions are "advanced" past and include |
| 24 | // single instructions before a scheduling region, branches etc. |
| 25 | // |
| 26 | // A block that has only one predecessor continues scheduling with the state |
| 27 | // of it (which may be updated by emitting branches). |
| 28 | // |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 29 | // ===---------------------------------------------------------------------===// |
| 30 | |
| 31 | #include "SystemZHazardRecognizer.h" |
| 32 | #include "llvm/ADT/Statistic.h" |
| 33 | |
| 34 | using namespace llvm; |
| 35 | |
Evandro Menezes | 0cd23f56 | 2017-07-11 22:08:28 +0000 | [diff] [blame] | 36 | #define DEBUG_TYPE "machine-scheduler" |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 37 | |
| 38 | // This is the limit of processor resource usage at which the |
| 39 | // scheduler should try to look for other instructions (not using the |
| 40 | // critical resource). |
Benjamin Kramer | ffd3715 | 2016-11-19 20:44:26 +0000 | [diff] [blame] | 41 | static cl::opt<int> ProcResCostLim("procres-cost-lim", cl::Hidden, |
| 42 | cl::desc("The OOO window for processor " |
| 43 | "resources during scheduling."), |
| 44 | cl::init(8)); |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 45 | |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 46 | unsigned SystemZHazardRecognizer:: |
| 47 | getNumDecoderSlots(SUnit *SU) const { |
Jonas Paulsson | 57a705d | 2017-08-17 08:33:44 +0000 | [diff] [blame] | 48 | const MCSchedClassDesc *SC = getSchedClass(SU); |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 49 | if (!SC->isValid()) |
| 50 | return 0; // IMPLICIT_DEF / KILL -- will not make impact in output. |
| 51 | |
| 52 | if (SC->BeginGroup) { |
| 53 | if (!SC->EndGroup) |
| 54 | return 2; // Cracked instruction |
| 55 | else |
| 56 | return 3; // Expanded/group-alone instruction |
| 57 | } |
| 58 | |
| 59 | return 1; // Normal instruction |
| 60 | } |
| 61 | |
Jonas Paulsson | 9b0f28f | 2018-03-07 08:54:32 +0000 | [diff] [blame^] | 62 | unsigned SystemZHazardRecognizer::getCurrCycleIdx(SUnit *SU) const { |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 63 | unsigned Idx = CurrGroupSize; |
| 64 | if (GrpCount % 2) |
| 65 | Idx += 3; |
Jonas Paulsson | 9b0f28f | 2018-03-07 08:54:32 +0000 | [diff] [blame^] | 66 | |
| 67 | if (SU != nullptr && !fitsIntoCurrentGroup(SU)) { |
| 68 | if (Idx == 1 || Idx == 2) |
| 69 | Idx = 3; |
| 70 | else if (Idx == 4 || Idx == 5) |
| 71 | Idx = 0; |
| 72 | } |
| 73 | |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 74 | return Idx; |
| 75 | } |
| 76 | |
| 77 | ScheduleHazardRecognizer::HazardType SystemZHazardRecognizer:: |
| 78 | getHazardType(SUnit *m, int Stalls) { |
| 79 | return (fitsIntoCurrentGroup(m) ? NoHazard : Hazard); |
| 80 | } |
| 81 | |
| 82 | void SystemZHazardRecognizer::Reset() { |
| 83 | CurrGroupSize = 0; |
| 84 | clearProcResCounters(); |
| 85 | GrpCount = 0; |
| 86 | LastFPdOpCycleIdx = UINT_MAX; |
Jonas Paulsson | 57a705d | 2017-08-17 08:33:44 +0000 | [diff] [blame] | 87 | LastEmittedMI = nullptr; |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 88 | DEBUG(CurGroupDbg = "";); |
| 89 | } |
| 90 | |
| 91 | bool |
| 92 | SystemZHazardRecognizer::fitsIntoCurrentGroup(SUnit *SU) const { |
Jonas Paulsson | 57a705d | 2017-08-17 08:33:44 +0000 | [diff] [blame] | 93 | const MCSchedClassDesc *SC = getSchedClass(SU); |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 94 | if (!SC->isValid()) |
| 95 | return true; |
| 96 | |
| 97 | // A cracked instruction only fits into schedule if the current |
| 98 | // group is empty. |
| 99 | if (SC->BeginGroup) |
| 100 | return (CurrGroupSize == 0); |
| 101 | |
| 102 | // Since a full group is handled immediately in EmitInstruction(), |
| 103 | // SU should fit into current group. NumSlots should be 1 or 0, |
| 104 | // since it is not a cracked or expanded instruction. |
| 105 | assert ((getNumDecoderSlots(SU) <= 1) && (CurrGroupSize < 3) && |
| 106 | "Expected normal instruction to fit in non-full group!"); |
| 107 | |
| 108 | return true; |
| 109 | } |
| 110 | |
Jonas Paulsson | 61fbcf5 | 2018-03-07 08:39:00 +0000 | [diff] [blame] | 111 | void SystemZHazardRecognizer::nextGroup() { |
| 112 | if (CurrGroupSize == 0) |
| 113 | return; |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 114 | |
Jonas Paulsson | 61fbcf5 | 2018-03-07 08:39:00 +0000 | [diff] [blame] | 115 | DEBUG(dumpCurrGroup("Completed decode group")); |
| 116 | DEBUG(CurGroupDbg = "";); |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 117 | |
Jonas Paulsson | 61fbcf5 | 2018-03-07 08:39:00 +0000 | [diff] [blame] | 118 | GrpCount++; |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 119 | |
Jonas Paulsson | 61fbcf5 | 2018-03-07 08:39:00 +0000 | [diff] [blame] | 120 | // Reset counter for next group. |
| 121 | CurrGroupSize = 0; |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 122 | |
Jonas Paulsson | 61fbcf5 | 2018-03-07 08:39:00 +0000 | [diff] [blame] | 123 | // Decrease counters for execution units by one. |
| 124 | for (unsigned i = 0; i < SchedModel->getNumProcResourceKinds(); ++i) |
| 125 | if (ProcResourceCounters[i] > 0) |
| 126 | ProcResourceCounters[i]--; |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 127 | |
Jonas Paulsson | 61fbcf5 | 2018-03-07 08:39:00 +0000 | [diff] [blame] | 128 | // Clear CriticalResourceIdx if it is now below the threshold. |
| 129 | if (CriticalResourceIdx != UINT_MAX && |
| 130 | (ProcResourceCounters[CriticalResourceIdx] <= |
| 131 | ProcResCostLim)) |
| 132 | CriticalResourceIdx = UINT_MAX; |
| 133 | |
| 134 | DEBUG(dumpState();); |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | #ifndef NDEBUG // Debug output |
| 138 | void SystemZHazardRecognizer::dumpSU(SUnit *SU, raw_ostream &OS) const { |
| 139 | OS << "SU(" << SU->NodeNum << "):"; |
Jonas Paulsson | 57a705d | 2017-08-17 08:33:44 +0000 | [diff] [blame] | 140 | OS << TII->getName(SU->getInstr()->getOpcode()); |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 141 | |
Jonas Paulsson | 57a705d | 2017-08-17 08:33:44 +0000 | [diff] [blame] | 142 | const MCSchedClassDesc *SC = getSchedClass(SU); |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 143 | if (!SC->isValid()) |
| 144 | return; |
| 145 | |
| 146 | for (TargetSchedModel::ProcResIter |
| 147 | PI = SchedModel->getWriteProcResBegin(SC), |
| 148 | PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) { |
| 149 | const MCProcResourceDesc &PRD = |
| 150 | *SchedModel->getProcResource(PI->ProcResourceIdx); |
| 151 | std::string FU(PRD.Name); |
| 152 | // trim e.g. Z13_FXaUnit -> FXa |
| 153 | FU = FU.substr(FU.find("_") + 1); |
| 154 | FU.resize(FU.find("Unit")); |
| 155 | OS << "/" << FU; |
| 156 | |
| 157 | if (PI->Cycles > 1) |
| 158 | OS << "(" << PI->Cycles << "cyc)"; |
| 159 | } |
| 160 | |
| 161 | if (SC->NumMicroOps > 1) |
| 162 | OS << "/" << SC->NumMicroOps << "uops"; |
| 163 | if (SC->BeginGroup && SC->EndGroup) |
| 164 | OS << "/GroupsAlone"; |
| 165 | else if (SC->BeginGroup) |
| 166 | OS << "/BeginsGroup"; |
| 167 | else if (SC->EndGroup) |
| 168 | OS << "/EndsGroup"; |
| 169 | if (SU->isUnbuffered) |
| 170 | OS << "/Unbuffered"; |
| 171 | } |
| 172 | |
| 173 | void SystemZHazardRecognizer::dumpCurrGroup(std::string Msg) const { |
Jonas Paulsson | 61fbcf5 | 2018-03-07 08:39:00 +0000 | [diff] [blame] | 174 | dbgs() << "++ " << Msg; |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 175 | dbgs() << ": "; |
| 176 | |
| 177 | if (CurGroupDbg.empty()) |
| 178 | dbgs() << " <empty>\n"; |
| 179 | else { |
| 180 | dbgs() << "{ " << CurGroupDbg << " }"; |
| 181 | dbgs() << " (" << CurrGroupSize << " decoder slot" |
| 182 | << (CurrGroupSize > 1 ? "s":"") |
| 183 | << ")\n"; |
| 184 | } |
| 185 | } |
| 186 | |
| 187 | void SystemZHazardRecognizer::dumpProcResourceCounters() const { |
| 188 | bool any = false; |
| 189 | |
| 190 | for (unsigned i = 0; i < SchedModel->getNumProcResourceKinds(); ++i) |
| 191 | if (ProcResourceCounters[i] > 0) { |
| 192 | any = true; |
| 193 | break; |
| 194 | } |
| 195 | |
| 196 | if (!any) |
| 197 | return; |
| 198 | |
Jonas Paulsson | 61fbcf5 | 2018-03-07 08:39:00 +0000 | [diff] [blame] | 199 | dbgs() << "++ | Resource counters: "; |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 200 | for (unsigned i = 0; i < SchedModel->getNumProcResourceKinds(); ++i) |
Jonas Paulsson | 61fbcf5 | 2018-03-07 08:39:00 +0000 | [diff] [blame] | 201 | if (ProcResourceCounters[i] > 0) |
| 202 | dbgs() << SchedModel->getProcResource(i)->Name |
| 203 | << ":" << ProcResourceCounters[i] << " "; |
| 204 | dbgs() << "\n"; |
| 205 | |
| 206 | if (CriticalResourceIdx != UINT_MAX) |
| 207 | dbgs() << "++ | Critical resource: " |
| 208 | << SchedModel->getProcResource(CriticalResourceIdx)->Name |
| 209 | << "\n"; |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 210 | } |
Jonas Paulsson | 61fbcf5 | 2018-03-07 08:39:00 +0000 | [diff] [blame] | 211 | |
| 212 | void SystemZHazardRecognizer::dumpState() const { |
| 213 | dumpCurrGroup("| Current decoder group"); |
| 214 | dbgs() << "++ | Current cycle index: " |
| 215 | << getCurrCycleIdx() << "\n"; |
| 216 | dumpProcResourceCounters(); |
| 217 | if (LastFPdOpCycleIdx != UINT_MAX) |
| 218 | dbgs() << "++ | Last FPd cycle index: " << LastFPdOpCycleIdx << "\n"; |
| 219 | } |
| 220 | |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 221 | #endif //NDEBUG |
| 222 | |
| 223 | void SystemZHazardRecognizer::clearProcResCounters() { |
| 224 | ProcResourceCounters.assign(SchedModel->getNumProcResourceKinds(), 0); |
| 225 | CriticalResourceIdx = UINT_MAX; |
| 226 | } |
| 227 | |
Jonas Paulsson | 57a705d | 2017-08-17 08:33:44 +0000 | [diff] [blame] | 228 | static inline bool isBranchRetTrap(MachineInstr *MI) { |
| 229 | return (MI->isBranch() || MI->isReturn() || |
| 230 | MI->getOpcode() == SystemZ::CondTrap); |
| 231 | } |
| 232 | |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 233 | // Update state with SU as the next scheduled unit. |
| 234 | void SystemZHazardRecognizer:: |
| 235 | EmitInstruction(SUnit *SU) { |
Jonas Paulsson | 57a705d | 2017-08-17 08:33:44 +0000 | [diff] [blame] | 236 | const MCSchedClassDesc *SC = getSchedClass(SU); |
Jonas Paulsson | 61fbcf5 | 2018-03-07 08:39:00 +0000 | [diff] [blame] | 237 | DEBUG(dbgs() << "++ HazardRecognizer emitting "; dumpSU(SU, dbgs()); |
| 238 | dbgs() << "\n";); |
| 239 | DEBUG(dumpCurrGroup("Decode group before emission");); |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 240 | |
| 241 | // If scheduling an SU that must begin a new decoder group, move on |
| 242 | // to next group. |
| 243 | if (!fitsIntoCurrentGroup(SU)) |
| 244 | nextGroup(); |
| 245 | |
Jonas Paulsson | 61fbcf5 | 2018-03-07 08:39:00 +0000 | [diff] [blame] | 246 | DEBUG(raw_string_ostream cgd(CurGroupDbg); |
| 247 | if (CurGroupDbg.length()) |
| 248 | cgd << ", "; |
| 249 | dumpSU(SU, cgd);); |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 250 | |
Jonas Paulsson | 57a705d | 2017-08-17 08:33:44 +0000 | [diff] [blame] | 251 | LastEmittedMI = SU->getInstr(); |
| 252 | |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 253 | // After returning from a call, we don't know much about the state. |
Jonas Paulsson | 57a705d | 2017-08-17 08:33:44 +0000 | [diff] [blame] | 254 | if (SU->isCall) { |
Jonas Paulsson | 61fbcf5 | 2018-03-07 08:39:00 +0000 | [diff] [blame] | 255 | DEBUG(dbgs() << "++ Clearing state after call.\n";); |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 256 | clearProcResCounters(); |
| 257 | LastFPdOpCycleIdx = UINT_MAX; |
| 258 | CurrGroupSize += getNumDecoderSlots(SU); |
| 259 | assert (CurrGroupSize <= 3); |
| 260 | nextGroup(); |
| 261 | return; |
| 262 | } |
| 263 | |
| 264 | // Increase counter for execution unit(s). |
| 265 | for (TargetSchedModel::ProcResIter |
| 266 | PI = SchedModel->getWriteProcResBegin(SC), |
| 267 | PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) { |
| 268 | // Don't handle FPd together with the other resources. |
| 269 | if (SchedModel->getProcResource(PI->ProcResourceIdx)->BufferSize == 1) |
| 270 | continue; |
| 271 | int &CurrCounter = |
| 272 | ProcResourceCounters[PI->ProcResourceIdx]; |
| 273 | CurrCounter += PI->Cycles; |
| 274 | // Check if this is now the new critical resource. |
| 275 | if ((CurrCounter > ProcResCostLim) && |
| 276 | (CriticalResourceIdx == UINT_MAX || |
| 277 | (PI->ProcResourceIdx != CriticalResourceIdx && |
| 278 | CurrCounter > |
| 279 | ProcResourceCounters[CriticalResourceIdx]))) { |
Jonas Paulsson | 61fbcf5 | 2018-03-07 08:39:00 +0000 | [diff] [blame] | 280 | DEBUG(dbgs() << "++ New critical resource: " |
| 281 | << SchedModel->getProcResource(PI->ProcResourceIdx)->Name |
| 282 | << "\n";); |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 283 | CriticalResourceIdx = PI->ProcResourceIdx; |
| 284 | } |
| 285 | } |
| 286 | |
| 287 | // Make note of an instruction that uses a blocking resource (FPd). |
| 288 | if (SU->isUnbuffered) { |
Jonas Paulsson | 9b0f28f | 2018-03-07 08:54:32 +0000 | [diff] [blame^] | 289 | LastFPdOpCycleIdx = getCurrCycleIdx(SU); |
Jonas Paulsson | 61fbcf5 | 2018-03-07 08:39:00 +0000 | [diff] [blame] | 290 | DEBUG(dbgs() << "++ Last FPd cycle index: " |
| 291 | << LastFPdOpCycleIdx << "\n";); |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 292 | } |
| 293 | |
| 294 | // Insert SU into current group by increasing number of slots used |
| 295 | // in current group. |
| 296 | CurrGroupSize += getNumDecoderSlots(SU); |
| 297 | assert (CurrGroupSize <= 3); |
| 298 | |
| 299 | // Check if current group is now full/ended. If so, move on to next |
| 300 | // group to be ready to evaluate more candidates. |
Jonas Paulsson | e18dbeb | 2018-03-07 08:45:09 +0000 | [diff] [blame] | 301 | if (CurrGroupSize == 3 || SC->EndGroup) |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 302 | nextGroup(); |
| 303 | } |
| 304 | |
| 305 | int SystemZHazardRecognizer::groupingCost(SUnit *SU) const { |
Jonas Paulsson | 57a705d | 2017-08-17 08:33:44 +0000 | [diff] [blame] | 306 | const MCSchedClassDesc *SC = getSchedClass(SU); |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 307 | if (!SC->isValid()) |
| 308 | return 0; |
| 309 | |
| 310 | // If SU begins new group, it can either break a current group early |
| 311 | // or fit naturally if current group is empty (negative cost). |
| 312 | if (SC->BeginGroup) { |
| 313 | if (CurrGroupSize) |
| 314 | return 3 - CurrGroupSize; |
| 315 | return -1; |
| 316 | } |
| 317 | |
| 318 | // Similarly, a group-ending SU may either fit well (last in group), or |
| 319 | // end the group prematurely. |
| 320 | if (SC->EndGroup) { |
| 321 | unsigned resultingGroupSize = |
| 322 | (CurrGroupSize + getNumDecoderSlots(SU)); |
| 323 | if (resultingGroupSize < 3) |
| 324 | return (3 - resultingGroupSize); |
| 325 | return -1; |
| 326 | } |
| 327 | |
| 328 | // Most instructions can be placed in any decoder slot. |
| 329 | return 0; |
| 330 | } |
| 331 | |
Jonas Paulsson | 9b0f28f | 2018-03-07 08:54:32 +0000 | [diff] [blame^] | 332 | bool SystemZHazardRecognizer::isFPdOpPreferred_distance(SUnit *SU) const { |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 333 | assert (SU->isUnbuffered); |
| 334 | // If this is the first FPd op, it should be scheduled high. |
| 335 | if (LastFPdOpCycleIdx == UINT_MAX) |
| 336 | return true; |
| 337 | // If this is not the first PFd op, it should go into the other side |
| 338 | // of the processor to use the other FPd unit there. This should |
| 339 | // generally happen if two FPd ops are placed with 2 other |
| 340 | // instructions between them (modulo 6). |
Jonas Paulsson | 9b0f28f | 2018-03-07 08:54:32 +0000 | [diff] [blame^] | 341 | unsigned SUCycleIdx = getCurrCycleIdx(SU); |
| 342 | if (LastFPdOpCycleIdx > SUCycleIdx) |
| 343 | return ((LastFPdOpCycleIdx - SUCycleIdx) == 3); |
| 344 | return ((SUCycleIdx - LastFPdOpCycleIdx) == 3); |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 345 | } |
| 346 | |
| 347 | int SystemZHazardRecognizer:: |
| 348 | resourcesCost(SUnit *SU) { |
| 349 | int Cost = 0; |
| 350 | |
Jonas Paulsson | 57a705d | 2017-08-17 08:33:44 +0000 | [diff] [blame] | 351 | const MCSchedClassDesc *SC = getSchedClass(SU); |
Jonas Paulsson | 8010b63 | 2016-10-20 08:27:16 +0000 | [diff] [blame] | 352 | if (!SC->isValid()) |
| 353 | return 0; |
| 354 | |
| 355 | // For a FPd op, either return min or max value as indicated by the |
| 356 | // distance to any prior FPd op. |
| 357 | if (SU->isUnbuffered) |
| 358 | Cost = (isFPdOpPreferred_distance(SU) ? INT_MIN : INT_MAX); |
| 359 | // For other instructions, give a cost to the use of the critical resource. |
| 360 | else if (CriticalResourceIdx != UINT_MAX) { |
| 361 | for (TargetSchedModel::ProcResIter |
| 362 | PI = SchedModel->getWriteProcResBegin(SC), |
| 363 | PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) |
| 364 | if (PI->ProcResourceIdx == CriticalResourceIdx) |
| 365 | Cost = PI->Cycles; |
| 366 | } |
| 367 | |
| 368 | return Cost; |
| 369 | } |
| 370 | |
Jonas Paulsson | 57a705d | 2017-08-17 08:33:44 +0000 | [diff] [blame] | 371 | void SystemZHazardRecognizer::emitInstruction(MachineInstr *MI, |
| 372 | bool TakenBranch) { |
| 373 | // Make a temporary SUnit. |
| 374 | SUnit SU(MI, 0); |
| 375 | |
| 376 | // Set interesting flags. |
| 377 | SU.isCall = MI->isCall(); |
| 378 | |
| 379 | const MCSchedClassDesc *SC = SchedModel->resolveSchedClass(MI); |
| 380 | for (const MCWriteProcResEntry &PRE : |
| 381 | make_range(SchedModel->getWriteProcResBegin(SC), |
| 382 | SchedModel->getWriteProcResEnd(SC))) { |
| 383 | switch (SchedModel->getProcResource(PRE.ProcResourceIdx)->BufferSize) { |
| 384 | case 0: |
| 385 | SU.hasReservedResource = true; |
| 386 | break; |
| 387 | case 1: |
| 388 | SU.isUnbuffered = true; |
| 389 | break; |
| 390 | default: |
| 391 | break; |
| 392 | } |
| 393 | } |
| 394 | |
Jonas Paulsson | e18dbeb | 2018-03-07 08:45:09 +0000 | [diff] [blame] | 395 | unsigned GroupSizeBeforeEmit = CurrGroupSize; |
Jonas Paulsson | 57a705d | 2017-08-17 08:33:44 +0000 | [diff] [blame] | 396 | EmitInstruction(&SU); |
| 397 | |
Jonas Paulsson | e18dbeb | 2018-03-07 08:45:09 +0000 | [diff] [blame] | 398 | if (!TakenBranch && isBranchRetTrap(MI)) { |
| 399 | // NT Branch on second slot ends group. |
| 400 | if (GroupSizeBeforeEmit == 1) |
| 401 | nextGroup(); |
| 402 | } |
| 403 | |
Jonas Paulsson | 57a705d | 2017-08-17 08:33:44 +0000 | [diff] [blame] | 404 | if (TakenBranch && CurrGroupSize > 0) |
Jonas Paulsson | 61fbcf5 | 2018-03-07 08:39:00 +0000 | [diff] [blame] | 405 | nextGroup(); |
Jonas Paulsson | 57a705d | 2017-08-17 08:33:44 +0000 | [diff] [blame] | 406 | |
| 407 | assert ((!MI->isTerminator() || isBranchRetTrap(MI)) && |
| 408 | "Scheduler: unhandled terminator!"); |
| 409 | } |
| 410 | |
| 411 | void SystemZHazardRecognizer:: |
| 412 | copyState(SystemZHazardRecognizer *Incoming) { |
| 413 | // Current decoder group |
| 414 | CurrGroupSize = Incoming->CurrGroupSize; |
Jonas Paulsson | 61fbcf5 | 2018-03-07 08:39:00 +0000 | [diff] [blame] | 415 | DEBUG(CurGroupDbg = Incoming->CurGroupDbg;); |
Jonas Paulsson | 57a705d | 2017-08-17 08:33:44 +0000 | [diff] [blame] | 416 | |
| 417 | // Processor resources |
| 418 | ProcResourceCounters = Incoming->ProcResourceCounters; |
| 419 | CriticalResourceIdx = Incoming->CriticalResourceIdx; |
| 420 | |
| 421 | // FPd |
| 422 | LastFPdOpCycleIdx = Incoming->LastFPdOpCycleIdx; |
| 423 | GrpCount = Incoming->GrpCount; |
| 424 | } |