David Goodwin | d94a4e5 | 2009-08-10 15:55:25 +0000 | [diff] [blame] | 1 | //===----- ExactHazardRecognizer.cpp - hazard recognizer -------- ---------===// |
| 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 implements a a hazard recognizer using the instructions itineraries |
| 11 | // defined for the current target. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #define DEBUG_TYPE "exact-hazards" |
| 16 | #include "ExactHazardRecognizer.h" |
| 17 | #include "llvm/CodeGen/ScheduleHazardRecognizer.h" |
| 18 | #include "llvm/Support/Debug.h" |
| 19 | #include "llvm/Support/ErrorHandling.h" |
David Goodwin | 3a5f0d4 | 2009-08-11 01:44:26 +0000 | [diff] [blame] | 20 | #include "llvm/Support/raw_ostream.h" |
David Goodwin | d94a4e5 | 2009-08-10 15:55:25 +0000 | [diff] [blame] | 21 | #include "llvm/Target/TargetInstrItineraries.h" |
| 22 | |
Bill Wendling | fb98a43 | 2009-08-22 20:08:44 +0000 | [diff] [blame] | 23 | using namespace llvm; |
David Goodwin | d94a4e5 | 2009-08-10 15:55:25 +0000 | [diff] [blame] | 24 | |
Evan Cheng | 449c25b | 2009-10-16 05:18:39 +0000 | [diff] [blame] | 25 | ExactHazardRecognizer:: |
| 26 | ExactHazardRecognizer(const InstrItineraryData &LItinData) : |
David Goodwin | d94a4e5 | 2009-08-10 15:55:25 +0000 | [diff] [blame] | 27 | ScheduleHazardRecognizer(), ItinData(LItinData) |
| 28 | { |
| 29 | // Determine the maximum depth of any itinerary. This determines the |
| 30 | // depth of the scoreboard. We always make the scoreboard at least 1 |
| 31 | // cycle deep to avoid dealing with the boundary condition. |
| 32 | ScoreboardDepth = 1; |
| 33 | if (!ItinData.isEmpty()) { |
| 34 | for (unsigned idx = 0; ; ++idx) { |
David Goodwin | 1f52895 | 2009-09-24 20:22:50 +0000 | [diff] [blame] | 35 | if (ItinData.isEndMarker(idx)) |
David Goodwin | d94a4e5 | 2009-08-10 15:55:25 +0000 | [diff] [blame] | 36 | break; |
| 37 | |
David Goodwin | 1f52895 | 2009-09-24 20:22:50 +0000 | [diff] [blame] | 38 | const InstrStage *IS = ItinData.beginStage(idx); |
| 39 | const InstrStage *E = ItinData.endStage(idx); |
David Goodwin | d94a4e5 | 2009-08-10 15:55:25 +0000 | [diff] [blame] | 40 | unsigned ItinDepth = 0; |
| 41 | for (; IS != E; ++IS) |
David Goodwin | 1a8f36e | 2009-08-12 18:31:53 +0000 | [diff] [blame] | 42 | ItinDepth += IS->getCycles(); |
David Goodwin | d94a4e5 | 2009-08-10 15:55:25 +0000 | [diff] [blame] | 43 | |
| 44 | ScoreboardDepth = std::max(ScoreboardDepth, ItinDepth); |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | Scoreboard = new unsigned[ScoreboardDepth]; |
| 49 | ScoreboardHead = 0; |
| 50 | |
David Goodwin | 3a5f0d4 | 2009-08-11 01:44:26 +0000 | [diff] [blame] | 51 | DEBUG(errs() << "Using exact hazard recognizer: ScoreboardDepth = " |
Bill Wendling | fb98a43 | 2009-08-22 20:08:44 +0000 | [diff] [blame] | 52 | << ScoreboardDepth << '\n'); |
David Goodwin | d94a4e5 | 2009-08-10 15:55:25 +0000 | [diff] [blame] | 53 | } |
| 54 | |
| 55 | ExactHazardRecognizer::~ExactHazardRecognizer() { |
Duncan Sands | 70327da | 2009-09-04 11:59:43 +0000 | [diff] [blame] | 56 | delete [] Scoreboard; |
David Goodwin | d94a4e5 | 2009-08-10 15:55:25 +0000 | [diff] [blame] | 57 | } |
| 58 | |
| 59 | void ExactHazardRecognizer::Reset() { |
| 60 | memset(Scoreboard, 0, ScoreboardDepth * sizeof(unsigned)); |
| 61 | ScoreboardHead = 0; |
| 62 | } |
| 63 | |
| 64 | unsigned ExactHazardRecognizer::getFutureIndex(unsigned offset) { |
| 65 | return (ScoreboardHead + offset) % ScoreboardDepth; |
| 66 | } |
| 67 | |
| 68 | void ExactHazardRecognizer::dumpScoreboard() { |
Daniel Dunbar | d4d415a | 2009-08-11 06:22:47 +0000 | [diff] [blame] | 69 | errs() << "Scoreboard:\n"; |
David Goodwin | d94a4e5 | 2009-08-10 15:55:25 +0000 | [diff] [blame] | 70 | |
| 71 | unsigned last = ScoreboardDepth - 1; |
| 72 | while ((last > 0) && (Scoreboard[getFutureIndex(last)] == 0)) |
| 73 | last--; |
| 74 | |
| 75 | for (unsigned i = 0; i <= last; i++) { |
| 76 | unsigned FUs = Scoreboard[getFutureIndex(i)]; |
Daniel Dunbar | d4d415a | 2009-08-11 06:22:47 +0000 | [diff] [blame] | 77 | errs() << "\t"; |
David Goodwin | d94a4e5 | 2009-08-10 15:55:25 +0000 | [diff] [blame] | 78 | for (int j = 31; j >= 0; j--) |
Daniel Dunbar | d4d415a | 2009-08-11 06:22:47 +0000 | [diff] [blame] | 79 | errs() << ((FUs & (1 << j)) ? '1' : '0'); |
| 80 | errs() << '\n'; |
David Goodwin | d94a4e5 | 2009-08-10 15:55:25 +0000 | [diff] [blame] | 81 | } |
| 82 | } |
| 83 | |
| 84 | ExactHazardRecognizer::HazardType ExactHazardRecognizer::getHazardType(SUnit *SU) { |
David Goodwin | 047ae2f | 2009-09-22 16:47:52 +0000 | [diff] [blame] | 85 | if (ItinData.isEmpty()) |
| 86 | return NoHazard; |
David Goodwin | d94a4e5 | 2009-08-10 15:55:25 +0000 | [diff] [blame] | 87 | |
David Goodwin | 047ae2f | 2009-09-22 16:47:52 +0000 | [diff] [blame] | 88 | unsigned cycle = 0; |
| 89 | |
| 90 | // Use the itinerary for the underlying instruction to check for |
| 91 | // free FU's in the scoreboard at the appropriate future cycles. |
| 92 | unsigned idx = SU->getInstr()->getDesc().getSchedClass(); |
| 93 | for (const InstrStage *IS = ItinData.beginStage(idx), |
| 94 | *E = ItinData.endStage(idx); IS != E; ++IS) { |
| 95 | // We must find one of the stage's units free for every cycle the |
| 96 | // stage is occupied. FIXME it would be more accurate to find the |
| 97 | // same unit free in all the cycles. |
| 98 | for (unsigned int i = 0; i < IS->getCycles(); ++i) { |
| 99 | assert(((cycle + i) < ScoreboardDepth) && |
| 100 | "Scoreboard depth exceeded!"); |
David Goodwin | 4f7228f | 2009-09-03 22:48:51 +0000 | [diff] [blame] | 101 | |
David Goodwin | 047ae2f | 2009-09-22 16:47:52 +0000 | [diff] [blame] | 102 | unsigned index = getFutureIndex(cycle + i); |
| 103 | unsigned freeUnits = IS->getUnits() & ~Scoreboard[index]; |
| 104 | if (!freeUnits) { |
| 105 | DEBUG(errs() << "*** Hazard in cycle " << (cycle + i) << ", "); |
| 106 | DEBUG(errs() << "SU(" << SU->NodeNum << "): "); |
| 107 | DEBUG(SU->getInstr()->dump()); |
| 108 | return Hazard; |
| 109 | } |
David Goodwin | d94a4e5 | 2009-08-10 15:55:25 +0000 | [diff] [blame] | 110 | } |
David Goodwin | 047ae2f | 2009-09-22 16:47:52 +0000 | [diff] [blame] | 111 | |
| 112 | // Advance the cycle to the next stage. |
| 113 | cycle += IS->getNextCycles(); |
David Goodwin | d94a4e5 | 2009-08-10 15:55:25 +0000 | [diff] [blame] | 114 | } |
| 115 | |
| 116 | return NoHazard; |
| 117 | } |
| 118 | |
| 119 | void ExactHazardRecognizer::EmitInstruction(SUnit *SU) { |
David Goodwin | 047ae2f | 2009-09-22 16:47:52 +0000 | [diff] [blame] | 120 | if (ItinData.isEmpty()) |
| 121 | return; |
David Goodwin | d94a4e5 | 2009-08-10 15:55:25 +0000 | [diff] [blame] | 122 | |
David Goodwin | 047ae2f | 2009-09-22 16:47:52 +0000 | [diff] [blame] | 123 | unsigned cycle = 0; |
David Goodwin | d94a4e5 | 2009-08-10 15:55:25 +0000 | [diff] [blame] | 124 | |
David Goodwin | 047ae2f | 2009-09-22 16:47:52 +0000 | [diff] [blame] | 125 | // Use the itinerary for the underlying instruction to reserve FU's |
| 126 | // in the scoreboard at the appropriate future cycles. |
| 127 | unsigned idx = SU->getInstr()->getDesc().getSchedClass(); |
| 128 | for (const InstrStage *IS = ItinData.beginStage(idx), |
| 129 | *E = ItinData.endStage(idx); IS != E; ++IS) { |
| 130 | // We must reserve one of the stage's units for every cycle the |
| 131 | // stage is occupied. FIXME it would be more accurate to reserve |
| 132 | // the same unit free in all the cycles. |
| 133 | for (unsigned int i = 0; i < IS->getCycles(); ++i) { |
| 134 | assert(((cycle + i) < ScoreboardDepth) && |
| 135 | "Scoreboard depth exceeded!"); |
| 136 | |
| 137 | unsigned index = getFutureIndex(cycle + i); |
| 138 | unsigned freeUnits = IS->getUnits() & ~Scoreboard[index]; |
| 139 | |
| 140 | // reduce to a single unit |
| 141 | unsigned freeUnit = 0; |
| 142 | do { |
| 143 | freeUnit = freeUnits; |
| 144 | freeUnits = freeUnit & (freeUnit - 1); |
| 145 | } while (freeUnits); |
| 146 | |
| 147 | assert(freeUnit && "No function unit available!"); |
| 148 | Scoreboard[index] |= freeUnit; |
David Goodwin | d94a4e5 | 2009-08-10 15:55:25 +0000 | [diff] [blame] | 149 | } |
David Goodwin | 047ae2f | 2009-09-22 16:47:52 +0000 | [diff] [blame] | 150 | |
| 151 | // Advance the cycle to the next stage. |
| 152 | cycle += IS->getNextCycles(); |
David Goodwin | d94a4e5 | 2009-08-10 15:55:25 +0000 | [diff] [blame] | 153 | } |
David Goodwin | 047ae2f | 2009-09-22 16:47:52 +0000 | [diff] [blame] | 154 | |
| 155 | DEBUG(dumpScoreboard()); |
David Goodwin | d94a4e5 | 2009-08-10 15:55:25 +0000 | [diff] [blame] | 156 | } |
| 157 | |
| 158 | void ExactHazardRecognizer::AdvanceCycle() { |
| 159 | Scoreboard[ScoreboardHead] = 0; |
| 160 | ScoreboardHead = getFutureIndex(1); |
| 161 | } |