Eugene Zelenko | c688c0b | 2017-02-21 22:07:52 +0000 | [diff] [blame] | 1 | //===- lib/CodeGen/MachineTraceMetrics.cpp --------------------------------===// |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 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 | |
Chandler Carruth | e3e43d9 | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 10 | #include "llvm/CodeGen/MachineTraceMetrics.h" |
Eugene Zelenko | c688c0b | 2017-02-21 22:07:52 +0000 | [diff] [blame] | 11 | #include "llvm/ADT/ArrayRef.h" |
| 12 | #include "llvm/ADT/DenseMap.h" |
| 13 | #include "llvm/ADT/Optional.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 14 | #include "llvm/ADT/PostOrderIterator.h" |
Eugene Zelenko | c688c0b | 2017-02-21 22:07:52 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/SmallPtrSet.h" |
| 16 | #include "llvm/ADT/SmallVector.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/SparseSet.h" |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/MachineBasicBlock.h" |
| 19 | #include "llvm/CodeGen/MachineBranchProbabilityInfo.h" |
Eugene Zelenko | c688c0b | 2017-02-21 22:07:52 +0000 | [diff] [blame] | 20 | #include "llvm/CodeGen/MachineFunction.h" |
| 21 | #include "llvm/CodeGen/MachineInstr.h" |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/MachineLoopInfo.h" |
Eugene Zelenko | c688c0b | 2017-02-21 22:07:52 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/MachineOperand.h" |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
David Blaikie | e3a9b4c | 2017-11-17 01:07:10 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/TargetRegisterInfo.h" |
Eugene Zelenko | 8fd0504 | 2017-09-11 23:00:48 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/TargetSchedule.h" |
David Blaikie | e3a9b4c | 2017-11-17 01:07:10 +0000 | [diff] [blame] | 27 | #include "llvm/CodeGen/TargetSubtargetInfo.h" |
Eugene Zelenko | c688c0b | 2017-02-21 22:07:52 +0000 | [diff] [blame] | 28 | #include "llvm/MC/MCRegisterInfo.h" |
| 29 | #include "llvm/Pass.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 30 | #include "llvm/Support/Debug.h" |
Eugene Zelenko | c688c0b | 2017-02-21 22:07:52 +0000 | [diff] [blame] | 31 | #include "llvm/Support/ErrorHandling.h" |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 32 | #include "llvm/Support/Format.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 33 | #include "llvm/Support/raw_ostream.h" |
Eugene Zelenko | c688c0b | 2017-02-21 22:07:52 +0000 | [diff] [blame] | 34 | #include <algorithm> |
| 35 | #include <cassert> |
| 36 | #include <iterator> |
| 37 | #include <tuple> |
| 38 | #include <utility> |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 39 | |
| 40 | using namespace llvm; |
| 41 | |
Chandler Carruth | 8677f2f | 2014-04-22 02:02:50 +0000 | [diff] [blame] | 42 | #define DEBUG_TYPE "machine-trace-metrics" |
| 43 | |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 44 | char MachineTraceMetrics::ID = 0; |
Eugene Zelenko | 8fd0504 | 2017-09-11 23:00:48 +0000 | [diff] [blame] | 45 | |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 46 | char &llvm::MachineTraceMetricsID = MachineTraceMetrics::ID; |
| 47 | |
Matthias Braun | 94c4904 | 2017-05-25 21:26:32 +0000 | [diff] [blame] | 48 | INITIALIZE_PASS_BEGIN(MachineTraceMetrics, DEBUG_TYPE, |
| 49 | "Machine Trace Metrics", false, true) |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 50 | INITIALIZE_PASS_DEPENDENCY(MachineBranchProbabilityInfo) |
| 51 | INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo) |
Matthias Braun | 94c4904 | 2017-05-25 21:26:32 +0000 | [diff] [blame] | 52 | INITIALIZE_PASS_END(MachineTraceMetrics, DEBUG_TYPE, |
| 53 | "Machine Trace Metrics", false, true) |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 54 | |
Eugene Zelenko | c688c0b | 2017-02-21 22:07:52 +0000 | [diff] [blame] | 55 | MachineTraceMetrics::MachineTraceMetrics() : MachineFunctionPass(ID) { |
Benjamin Kramer | 15c435a | 2014-04-12 16:15:53 +0000 | [diff] [blame] | 56 | std::fill(std::begin(Ensembles), std::end(Ensembles), nullptr); |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 57 | } |
| 58 | |
| 59 | void MachineTraceMetrics::getAnalysisUsage(AnalysisUsage &AU) const { |
| 60 | AU.setPreservesAll(); |
| 61 | AU.addRequired<MachineBranchProbabilityInfo>(); |
| 62 | AU.addRequired<MachineLoopInfo>(); |
| 63 | MachineFunctionPass::getAnalysisUsage(AU); |
| 64 | } |
| 65 | |
Jakob Stoklund Olesen | a1b2bf7 | 2012-07-30 18:34:11 +0000 | [diff] [blame] | 66 | bool MachineTraceMetrics::runOnMachineFunction(MachineFunction &Func) { |
| 67 | MF = &Func; |
Eric Christopher | 72e7586 | 2015-01-27 07:31:29 +0000 | [diff] [blame] | 68 | const TargetSubtargetInfo &ST = MF->getSubtarget(); |
| 69 | TII = ST.getInstrInfo(); |
| 70 | TRI = ST.getRegisterInfo(); |
Jakob Stoklund Olesen | a1b2bf7 | 2012-07-30 18:34:11 +0000 | [diff] [blame] | 71 | MRI = &MF->getRegInfo(); |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 72 | Loops = &getAnalysis<MachineLoopInfo>(); |
Sanjay Patel | e599cea | 2018-04-08 19:56:04 +0000 | [diff] [blame] | 73 | SchedModel.init(&ST); |
Jakob Stoklund Olesen | a1b2bf7 | 2012-07-30 18:34:11 +0000 | [diff] [blame] | 74 | BlockInfo.resize(MF->getNumBlockIDs()); |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 75 | ProcResourceCycles.resize(MF->getNumBlockIDs() * |
| 76 | SchedModel.getNumProcResourceKinds()); |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 77 | return false; |
| 78 | } |
| 79 | |
| 80 | void MachineTraceMetrics::releaseMemory() { |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 81 | MF = nullptr; |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 82 | BlockInfo.clear(); |
| 83 | for (unsigned i = 0; i != TS_NumStrategies; ++i) { |
| 84 | delete Ensembles[i]; |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 85 | Ensembles[i] = nullptr; |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 86 | } |
| 87 | } |
| 88 | |
| 89 | //===----------------------------------------------------------------------===// |
| 90 | // Fixed block information |
| 91 | //===----------------------------------------------------------------------===// |
| 92 | // |
| 93 | // The number of instructions in a basic block and the CPU resources used by |
| 94 | // those instructions don't depend on any given trace strategy. |
| 95 | |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 96 | /// Compute the resource usage in basic block MBB. |
| 97 | const MachineTraceMetrics::FixedBlockInfo* |
| 98 | MachineTraceMetrics::getResources(const MachineBasicBlock *MBB) { |
| 99 | assert(MBB && "No basic block"); |
| 100 | FixedBlockInfo *FBI = &BlockInfo[MBB->getNumber()]; |
| 101 | if (FBI->hasResources()) |
| 102 | return FBI; |
| 103 | |
| 104 | // Compute resource usage in the block. |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 105 | FBI->HasCalls = false; |
| 106 | unsigned InstrCount = 0; |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 107 | |
| 108 | // Add up per-processor resource cycles as well. |
| 109 | unsigned PRKinds = SchedModel.getNumProcResourceKinds(); |
| 110 | SmallVector<unsigned, 32> PRCycles(PRKinds); |
| 111 | |
Alexey Samsonov | 8467812 | 2014-04-30 22:17:38 +0000 | [diff] [blame] | 112 | for (const auto &MI : *MBB) { |
| 113 | if (MI.isTransient()) |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 114 | continue; |
| 115 | ++InstrCount; |
Alexey Samsonov | 8467812 | 2014-04-30 22:17:38 +0000 | [diff] [blame] | 116 | if (MI.isCall()) |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 117 | FBI->HasCalls = true; |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 118 | |
| 119 | // Count processor resources used. |
Jakob Stoklund Olesen | 2ccdbc6 | 2013-04-02 22:27:45 +0000 | [diff] [blame] | 120 | if (!SchedModel.hasInstrSchedModel()) |
| 121 | continue; |
Alexey Samsonov | 8467812 | 2014-04-30 22:17:38 +0000 | [diff] [blame] | 122 | const MCSchedClassDesc *SC = SchedModel.resolveSchedClass(&MI); |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 123 | if (!SC->isValid()) |
| 124 | continue; |
| 125 | |
| 126 | for (TargetSchedModel::ProcResIter |
| 127 | PI = SchedModel.getWriteProcResBegin(SC), |
| 128 | PE = SchedModel.getWriteProcResEnd(SC); PI != PE; ++PI) { |
| 129 | assert(PI->ProcResourceIdx < PRKinds && "Bad processor resource kind"); |
| 130 | PRCycles[PI->ProcResourceIdx] += PI->Cycles; |
| 131 | } |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 132 | } |
| 133 | FBI->InstrCount = InstrCount; |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 134 | |
| 135 | // Scale the resource cycles so they are comparable. |
| 136 | unsigned PROffset = MBB->getNumber() * PRKinds; |
| 137 | for (unsigned K = 0; K != PRKinds; ++K) |
| 138 | ProcResourceCycles[PROffset + K] = |
| 139 | PRCycles[K] * SchedModel.getResourceFactor(K); |
| 140 | |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 141 | return FBI; |
| 142 | } |
| 143 | |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 144 | ArrayRef<unsigned> |
| 145 | MachineTraceMetrics::getProcResourceCycles(unsigned MBBNum) const { |
| 146 | assert(BlockInfo[MBBNum].hasResources() && |
| 147 | "getResources() must be called before getProcResourceCycles()"); |
| 148 | unsigned PRKinds = SchedModel.getNumProcResourceKinds(); |
Jakob Stoklund Olesen | 2ccdbc6 | 2013-04-02 22:27:45 +0000 | [diff] [blame] | 149 | assert((MBBNum+1) * PRKinds <= ProcResourceCycles.size()); |
Craig Topper | 3512034 | 2014-08-27 05:25:25 +0000 | [diff] [blame] | 150 | return makeArrayRef(ProcResourceCycles.data() + MBBNum * PRKinds, PRKinds); |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 151 | } |
| 152 | |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 153 | //===----------------------------------------------------------------------===// |
| 154 | // Ensemble utility functions |
| 155 | //===----------------------------------------------------------------------===// |
| 156 | |
| 157 | MachineTraceMetrics::Ensemble::Ensemble(MachineTraceMetrics *ct) |
Jakob Stoklund Olesen | 64e2973 | 2012-07-31 20:25:13 +0000 | [diff] [blame] | 158 | : MTM(*ct) { |
| 159 | BlockInfo.resize(MTM.BlockInfo.size()); |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 160 | unsigned PRKinds = MTM.SchedModel.getNumProcResourceKinds(); |
| 161 | ProcResourceDepths.resize(MTM.BlockInfo.size() * PRKinds); |
| 162 | ProcResourceHeights.resize(MTM.BlockInfo.size() * PRKinds); |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | // Virtual destructor serves as an anchor. |
Eugene Zelenko | c688c0b | 2017-02-21 22:07:52 +0000 | [diff] [blame] | 166 | MachineTraceMetrics::Ensemble::~Ensemble() = default; |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 167 | |
Jakob Stoklund Olesen | a1b2bf7 | 2012-07-30 18:34:11 +0000 | [diff] [blame] | 168 | const MachineLoop* |
| 169 | MachineTraceMetrics::Ensemble::getLoopFor(const MachineBasicBlock *MBB) const { |
Jakob Stoklund Olesen | 64e2973 | 2012-07-31 20:25:13 +0000 | [diff] [blame] | 170 | return MTM.Loops->getLoopFor(MBB); |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 171 | } |
| 172 | |
| 173 | // Update resource-related information in the TraceBlockInfo for MBB. |
| 174 | // Only update resources related to the trace above MBB. |
| 175 | void MachineTraceMetrics::Ensemble:: |
| 176 | computeDepthResources(const MachineBasicBlock *MBB) { |
| 177 | TraceBlockInfo *TBI = &BlockInfo[MBB->getNumber()]; |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 178 | unsigned PRKinds = MTM.SchedModel.getNumProcResourceKinds(); |
| 179 | unsigned PROffset = MBB->getNumber() * PRKinds; |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 180 | |
| 181 | // Compute resources from trace above. The top block is simple. |
| 182 | if (!TBI->Pred) { |
| 183 | TBI->InstrDepth = 0; |
Jakob Stoklund Olesen | 0271a5f | 2012-07-27 23:58:36 +0000 | [diff] [blame] | 184 | TBI->Head = MBB->getNumber(); |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 185 | std::fill(ProcResourceDepths.begin() + PROffset, |
| 186 | ProcResourceDepths.begin() + PROffset + PRKinds, 0); |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 187 | return; |
| 188 | } |
| 189 | |
| 190 | // Compute from the block above. A post-order traversal ensures the |
| 191 | // predecessor is always computed first. |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 192 | unsigned PredNum = TBI->Pred->getNumber(); |
| 193 | TraceBlockInfo *PredTBI = &BlockInfo[PredNum]; |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 194 | assert(PredTBI->hasValidDepth() && "Trace above has not been computed yet"); |
Jakob Stoklund Olesen | 64e2973 | 2012-07-31 20:25:13 +0000 | [diff] [blame] | 195 | const FixedBlockInfo *PredFBI = MTM.getResources(TBI->Pred); |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 196 | TBI->InstrDepth = PredTBI->InstrDepth + PredFBI->InstrCount; |
Jakob Stoklund Olesen | 0271a5f | 2012-07-27 23:58:36 +0000 | [diff] [blame] | 197 | TBI->Head = PredTBI->Head; |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 198 | |
| 199 | // Compute per-resource depths. |
| 200 | ArrayRef<unsigned> PredPRDepths = getProcResourceDepths(PredNum); |
| 201 | ArrayRef<unsigned> PredPRCycles = MTM.getProcResourceCycles(PredNum); |
| 202 | for (unsigned K = 0; K != PRKinds; ++K) |
| 203 | ProcResourceDepths[PROffset + K] = PredPRDepths[K] + PredPRCycles[K]; |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 204 | } |
| 205 | |
| 206 | // Update resource-related information in the TraceBlockInfo for MBB. |
| 207 | // Only update resources related to the trace below MBB. |
| 208 | void MachineTraceMetrics::Ensemble:: |
| 209 | computeHeightResources(const MachineBasicBlock *MBB) { |
| 210 | TraceBlockInfo *TBI = &BlockInfo[MBB->getNumber()]; |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 211 | unsigned PRKinds = MTM.SchedModel.getNumProcResourceKinds(); |
| 212 | unsigned PROffset = MBB->getNumber() * PRKinds; |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 213 | |
| 214 | // Compute resources for the current block. |
Jakob Stoklund Olesen | 64e2973 | 2012-07-31 20:25:13 +0000 | [diff] [blame] | 215 | TBI->InstrHeight = MTM.getResources(MBB)->InstrCount; |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 216 | ArrayRef<unsigned> PRCycles = MTM.getProcResourceCycles(MBB->getNumber()); |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 217 | |
| 218 | // The trace tail is done. |
Jakob Stoklund Olesen | 0271a5f | 2012-07-27 23:58:36 +0000 | [diff] [blame] | 219 | if (!TBI->Succ) { |
| 220 | TBI->Tail = MBB->getNumber(); |
Fangrui Song | 53a6224 | 2018-11-17 01:44:25 +0000 | [diff] [blame] | 221 | llvm::copy(PRCycles, ProcResourceHeights.begin() + PROffset); |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 222 | return; |
Jakob Stoklund Olesen | 0271a5f | 2012-07-27 23:58:36 +0000 | [diff] [blame] | 223 | } |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 224 | |
| 225 | // Compute from the block below. A post-order traversal ensures the |
| 226 | // predecessor is always computed first. |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 227 | unsigned SuccNum = TBI->Succ->getNumber(); |
| 228 | TraceBlockInfo *SuccTBI = &BlockInfo[SuccNum]; |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 229 | assert(SuccTBI->hasValidHeight() && "Trace below has not been computed yet"); |
| 230 | TBI->InstrHeight += SuccTBI->InstrHeight; |
Jakob Stoklund Olesen | 0271a5f | 2012-07-27 23:58:36 +0000 | [diff] [blame] | 231 | TBI->Tail = SuccTBI->Tail; |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 232 | |
| 233 | // Compute per-resource heights. |
| 234 | ArrayRef<unsigned> SuccPRHeights = getProcResourceHeights(SuccNum); |
| 235 | for (unsigned K = 0; K != PRKinds; ++K) |
| 236 | ProcResourceHeights[PROffset + K] = SuccPRHeights[K] + PRCycles[K]; |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 237 | } |
| 238 | |
| 239 | // Check if depth resources for MBB are valid and return the TBI. |
| 240 | // Return NULL if the resources have been invalidated. |
| 241 | const MachineTraceMetrics::TraceBlockInfo* |
| 242 | MachineTraceMetrics::Ensemble:: |
| 243 | getDepthResources(const MachineBasicBlock *MBB) const { |
| 244 | const TraceBlockInfo *TBI = &BlockInfo[MBB->getNumber()]; |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 245 | return TBI->hasValidDepth() ? TBI : nullptr; |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 246 | } |
| 247 | |
| 248 | // Check if height resources for MBB are valid and return the TBI. |
| 249 | // Return NULL if the resources have been invalidated. |
| 250 | const MachineTraceMetrics::TraceBlockInfo* |
| 251 | MachineTraceMetrics::Ensemble:: |
| 252 | getHeightResources(const MachineBasicBlock *MBB) const { |
| 253 | const TraceBlockInfo *TBI = &BlockInfo[MBB->getNumber()]; |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 254 | return TBI->hasValidHeight() ? TBI : nullptr; |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 255 | } |
| 256 | |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 257 | /// Get an array of processor resource depths for MBB. Indexed by processor |
| 258 | /// resource kind, this array contains the scaled processor resources consumed |
| 259 | /// by all blocks preceding MBB in its trace. It does not include instructions |
| 260 | /// in MBB. |
| 261 | /// |
| 262 | /// Compare TraceBlockInfo::InstrDepth. |
| 263 | ArrayRef<unsigned> |
| 264 | MachineTraceMetrics::Ensemble:: |
| 265 | getProcResourceDepths(unsigned MBBNum) const { |
| 266 | unsigned PRKinds = MTM.SchedModel.getNumProcResourceKinds(); |
Jakob Stoklund Olesen | 2ccdbc6 | 2013-04-02 22:27:45 +0000 | [diff] [blame] | 267 | assert((MBBNum+1) * PRKinds <= ProcResourceDepths.size()); |
Craig Topper | 3512034 | 2014-08-27 05:25:25 +0000 | [diff] [blame] | 268 | return makeArrayRef(ProcResourceDepths.data() + MBBNum * PRKinds, PRKinds); |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 269 | } |
| 270 | |
| 271 | /// Get an array of processor resource heights for MBB. Indexed by processor |
| 272 | /// resource kind, this array contains the scaled processor resources consumed |
| 273 | /// by this block and all blocks following it in its trace. |
| 274 | /// |
| 275 | /// Compare TraceBlockInfo::InstrHeight. |
| 276 | ArrayRef<unsigned> |
| 277 | MachineTraceMetrics::Ensemble:: |
| 278 | getProcResourceHeights(unsigned MBBNum) const { |
| 279 | unsigned PRKinds = MTM.SchedModel.getNumProcResourceKinds(); |
Jakob Stoklund Olesen | 2ccdbc6 | 2013-04-02 22:27:45 +0000 | [diff] [blame] | 280 | assert((MBBNum+1) * PRKinds <= ProcResourceHeights.size()); |
Craig Topper | 3512034 | 2014-08-27 05:25:25 +0000 | [diff] [blame] | 281 | return makeArrayRef(ProcResourceHeights.data() + MBBNum * PRKinds, PRKinds); |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 282 | } |
| 283 | |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 284 | //===----------------------------------------------------------------------===// |
| 285 | // Trace Selection Strategies |
| 286 | //===----------------------------------------------------------------------===// |
| 287 | // |
| 288 | // A trace selection strategy is implemented as a sub-class of Ensemble. The |
| 289 | // trace through a block B is computed by two DFS traversals of the CFG |
| 290 | // starting from B. One upwards, and one downwards. During the upwards DFS, |
| 291 | // pickTracePred() is called on the post-ordered blocks. During the downwards |
| 292 | // DFS, pickTraceSucc() is called in a post-order. |
| 293 | // |
| 294 | |
Jakob Stoklund Olesen | 1c899cf | 2012-07-30 23:15:10 +0000 | [diff] [blame] | 295 | // We never allow traces that leave loops, but we do allow traces to enter |
| 296 | // nested loops. We also never allow traces to contain back-edges. |
| 297 | // |
| 298 | // This means that a loop header can never appear above the center block of a |
| 299 | // trace, except as the trace head. Below the center block, loop exiting edges |
| 300 | // are banned. |
| 301 | // |
| 302 | // Return true if an edge from the From loop to the To loop is leaving a loop. |
| 303 | // Either of To and From can be null. |
| 304 | static bool isExitingLoop(const MachineLoop *From, const MachineLoop *To) { |
| 305 | return From && !From->contains(To); |
| 306 | } |
| 307 | |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 308 | // MinInstrCountEnsemble - Pick the trace that executes the least number of |
| 309 | // instructions. |
| 310 | namespace { |
Eugene Zelenko | c688c0b | 2017-02-21 22:07:52 +0000 | [diff] [blame] | 311 | |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 312 | class MinInstrCountEnsemble : public MachineTraceMetrics::Ensemble { |
Craig Topper | 9f998de | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 313 | const char *getName() const override { return "MinInstr"; } |
| 314 | const MachineBasicBlock *pickTracePred(const MachineBasicBlock*) override; |
| 315 | const MachineBasicBlock *pickTraceSucc(const MachineBasicBlock*) override; |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 316 | |
| 317 | public: |
Jakob Stoklund Olesen | 64e2973 | 2012-07-31 20:25:13 +0000 | [diff] [blame] | 318 | MinInstrCountEnsemble(MachineTraceMetrics *mtm) |
| 319 | : MachineTraceMetrics::Ensemble(mtm) {} |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 320 | }; |
Eugene Zelenko | c688c0b | 2017-02-21 22:07:52 +0000 | [diff] [blame] | 321 | |
| 322 | } // end anonymous namespace |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 323 | |
| 324 | // Select the preferred predecessor for MBB. |
| 325 | const MachineBasicBlock* |
| 326 | MinInstrCountEnsemble::pickTracePred(const MachineBasicBlock *MBB) { |
| 327 | if (MBB->pred_empty()) |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 328 | return nullptr; |
Jakob Stoklund Olesen | a1b2bf7 | 2012-07-30 18:34:11 +0000 | [diff] [blame] | 329 | const MachineLoop *CurLoop = getLoopFor(MBB); |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 330 | // Don't leave loops, and never follow back-edges. |
| 331 | if (CurLoop && MBB == CurLoop->getHeader()) |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 332 | return nullptr; |
Jakob Stoklund Olesen | 64e2973 | 2012-07-31 20:25:13 +0000 | [diff] [blame] | 333 | unsigned CurCount = MTM.getResources(MBB)->InstrCount; |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 334 | const MachineBasicBlock *Best = nullptr; |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 335 | unsigned BestDepth = 0; |
Sanjay Patel | 090f1de | 2015-05-21 17:22:45 +0000 | [diff] [blame] | 336 | for (const MachineBasicBlock *Pred : MBB->predecessors()) { |
Jakob Stoklund Olesen | 8e54ab5 | 2012-07-30 21:10:27 +0000 | [diff] [blame] | 337 | const MachineTraceMetrics::TraceBlockInfo *PredTBI = |
| 338 | getDepthResources(Pred); |
Jakob Stoklund Olesen | e723007 | 2012-08-08 22:12:01 +0000 | [diff] [blame] | 339 | // Ignore cycles that aren't natural loops. |
| 340 | if (!PredTBI) |
| 341 | continue; |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 342 | // Pick the predecessor that would give this block the smallest InstrDepth. |
| 343 | unsigned Depth = PredTBI->InstrDepth + CurCount; |
Richard Trieu | 1b96cbe | 2016-02-18 22:09:30 +0000 | [diff] [blame] | 344 | if (!Best || Depth < BestDepth) { |
| 345 | Best = Pred; |
| 346 | BestDepth = Depth; |
| 347 | } |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 348 | } |
| 349 | return Best; |
| 350 | } |
| 351 | |
| 352 | // Select the preferred successor for MBB. |
| 353 | const MachineBasicBlock* |
| 354 | MinInstrCountEnsemble::pickTraceSucc(const MachineBasicBlock *MBB) { |
| 355 | if (MBB->pred_empty()) |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 356 | return nullptr; |
Jakob Stoklund Olesen | a1b2bf7 | 2012-07-30 18:34:11 +0000 | [diff] [blame] | 357 | const MachineLoop *CurLoop = getLoopFor(MBB); |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 358 | const MachineBasicBlock *Best = nullptr; |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 359 | unsigned BestHeight = 0; |
Sanjay Patel | 090f1de | 2015-05-21 17:22:45 +0000 | [diff] [blame] | 360 | for (const MachineBasicBlock *Succ : MBB->successors()) { |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 361 | // Don't consider back-edges. |
| 362 | if (CurLoop && Succ == CurLoop->getHeader()) |
| 363 | continue; |
Jakob Stoklund Olesen | 1c899cf | 2012-07-30 23:15:10 +0000 | [diff] [blame] | 364 | // Don't consider successors exiting CurLoop. |
| 365 | if (isExitingLoop(CurLoop, getLoopFor(Succ))) |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 366 | continue; |
Jakob Stoklund Olesen | 8e54ab5 | 2012-07-30 21:10:27 +0000 | [diff] [blame] | 367 | const MachineTraceMetrics::TraceBlockInfo *SuccTBI = |
| 368 | getHeightResources(Succ); |
Jakob Stoklund Olesen | e723007 | 2012-08-08 22:12:01 +0000 | [diff] [blame] | 369 | // Ignore cycles that aren't natural loops. |
| 370 | if (!SuccTBI) |
| 371 | continue; |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 372 | // Pick the successor that would give this block the smallest InstrHeight. |
| 373 | unsigned Height = SuccTBI->InstrHeight; |
Richard Trieu | 1b96cbe | 2016-02-18 22:09:30 +0000 | [diff] [blame] | 374 | if (!Best || Height < BestHeight) { |
| 375 | Best = Succ; |
| 376 | BestHeight = Height; |
| 377 | } |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 378 | } |
| 379 | return Best; |
| 380 | } |
| 381 | |
| 382 | // Get an Ensemble sub-class for the requested trace strategy. |
| 383 | MachineTraceMetrics::Ensemble * |
| 384 | MachineTraceMetrics::getEnsemble(MachineTraceMetrics::Strategy strategy) { |
| 385 | assert(strategy < TS_NumStrategies && "Invalid trace strategy enum"); |
| 386 | Ensemble *&E = Ensembles[strategy]; |
| 387 | if (E) |
| 388 | return E; |
| 389 | |
| 390 | // Allocate new Ensemble on demand. |
| 391 | switch (strategy) { |
| 392 | case TS_MinInstrCount: return (E = new MinInstrCountEnsemble(this)); |
| 393 | default: llvm_unreachable("Invalid trace strategy enum"); |
| 394 | } |
| 395 | } |
| 396 | |
| 397 | void MachineTraceMetrics::invalidate(const MachineBasicBlock *MBB) { |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 398 | LLVM_DEBUG(dbgs() << "Invalidate traces through " << printMBBReference(*MBB) |
| 399 | << '\n'); |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 400 | BlockInfo[MBB->getNumber()].invalidate(); |
| 401 | for (unsigned i = 0; i != TS_NumStrategies; ++i) |
| 402 | if (Ensembles[i]) |
| 403 | Ensembles[i]->invalidate(MBB); |
| 404 | } |
| 405 | |
Jakob Stoklund Olesen | ef6c76c | 2012-07-30 20:57:50 +0000 | [diff] [blame] | 406 | void MachineTraceMetrics::verifyAnalysis() const { |
Jakob Stoklund Olesen | 2f6b62b | 2012-07-30 23:15:12 +0000 | [diff] [blame] | 407 | if (!MF) |
| 408 | return; |
Jakob Stoklund Olesen | a1b2bf7 | 2012-07-30 18:34:11 +0000 | [diff] [blame] | 409 | #ifndef NDEBUG |
| 410 | assert(BlockInfo.size() == MF->getNumBlockIDs() && "Outdated BlockInfo size"); |
| 411 | for (unsigned i = 0; i != TS_NumStrategies; ++i) |
| 412 | if (Ensembles[i]) |
| 413 | Ensembles[i]->verify(); |
| 414 | #endif |
| 415 | } |
| 416 | |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 417 | //===----------------------------------------------------------------------===// |
| 418 | // Trace building |
| 419 | //===----------------------------------------------------------------------===// |
| 420 | // |
| 421 | // Traces are built by two CFG traversals. To avoid recomputing too much, use a |
| 422 | // set abstraction that confines the search to the current loop, and doesn't |
| 423 | // revisit blocks. |
| 424 | |
| 425 | namespace { |
Eugene Zelenko | c688c0b | 2017-02-21 22:07:52 +0000 | [diff] [blame] | 426 | |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 427 | struct LoopBounds { |
| 428 | MutableArrayRef<MachineTraceMetrics::TraceBlockInfo> Blocks; |
Jakob Stoklund Olesen | e723007 | 2012-08-08 22:12:01 +0000 | [diff] [blame] | 429 | SmallPtrSet<const MachineBasicBlock*, 8> Visited; |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 430 | const MachineLoopInfo *Loops; |
Eugene Zelenko | c688c0b | 2017-02-21 22:07:52 +0000 | [diff] [blame] | 431 | bool Downward = false; |
| 432 | |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 433 | LoopBounds(MutableArrayRef<MachineTraceMetrics::TraceBlockInfo> blocks, |
Eugene Zelenko | c688c0b | 2017-02-21 22:07:52 +0000 | [diff] [blame] | 434 | const MachineLoopInfo *loops) : Blocks(blocks), Loops(loops) {} |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 435 | }; |
Eugene Zelenko | c688c0b | 2017-02-21 22:07:52 +0000 | [diff] [blame] | 436 | |
| 437 | } // end anonymous namespace |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 438 | |
| 439 | // Specialize po_iterator_storage in order to prune the post-order traversal so |
| 440 | // it is limited to the current loop and doesn't traverse the loop back edges. |
| 441 | namespace llvm { |
Eugene Zelenko | c688c0b | 2017-02-21 22:07:52 +0000 | [diff] [blame] | 442 | |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 443 | template<> |
| 444 | class po_iterator_storage<LoopBounds, true> { |
| 445 | LoopBounds &LB; |
Eugene Zelenko | c688c0b | 2017-02-21 22:07:52 +0000 | [diff] [blame] | 446 | |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 447 | public: |
| 448 | po_iterator_storage(LoopBounds &lb) : LB(lb) {} |
Eugene Zelenko | c688c0b | 2017-02-21 22:07:52 +0000 | [diff] [blame] | 449 | |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 450 | void finishPostorder(const MachineBasicBlock*) {} |
| 451 | |
Tim Shen | 36b7d78 | 2016-08-15 21:52:54 +0000 | [diff] [blame] | 452 | bool insertEdge(Optional<const MachineBasicBlock *> From, |
| 453 | const MachineBasicBlock *To) { |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 454 | // Skip already visited To blocks. |
| 455 | MachineTraceMetrics::TraceBlockInfo &TBI = LB.Blocks[To->getNumber()]; |
| 456 | if (LB.Downward ? TBI.hasValidHeight() : TBI.hasValidDepth()) |
| 457 | return false; |
Jakob Stoklund Olesen | 1c899cf | 2012-07-30 23:15:10 +0000 | [diff] [blame] | 458 | // From is null once when To is the trace center block. |
Jakob Stoklund Olesen | e723007 | 2012-08-08 22:12:01 +0000 | [diff] [blame] | 459 | if (From) { |
Tim Shen | 36b7d78 | 2016-08-15 21:52:54 +0000 | [diff] [blame] | 460 | if (const MachineLoop *FromLoop = LB.Loops->getLoopFor(*From)) { |
Jakob Stoklund Olesen | e723007 | 2012-08-08 22:12:01 +0000 | [diff] [blame] | 461 | // Don't follow backedges, don't leave FromLoop when going upwards. |
Tim Shen | 36b7d78 | 2016-08-15 21:52:54 +0000 | [diff] [blame] | 462 | if ((LB.Downward ? To : *From) == FromLoop->getHeader()) |
Jakob Stoklund Olesen | e723007 | 2012-08-08 22:12:01 +0000 | [diff] [blame] | 463 | return false; |
| 464 | // Don't leave FromLoop. |
| 465 | if (isExitingLoop(FromLoop, LB.Loops->getLoopFor(To))) |
| 466 | return false; |
| 467 | } |
| 468 | } |
| 469 | // To is a new block. Mark the block as visited in case the CFG has cycles |
| 470 | // that MachineLoopInfo didn't recognize as a natural loop. |
David Blaikie | 5401ba7 | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 471 | return LB.Visited.insert(To).second; |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 472 | } |
| 473 | }; |
Eugene Zelenko | c688c0b | 2017-02-21 22:07:52 +0000 | [diff] [blame] | 474 | |
| 475 | } // end namespace llvm |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 476 | |
| 477 | /// Compute the trace through MBB. |
| 478 | void MachineTraceMetrics::Ensemble::computeTrace(const MachineBasicBlock *MBB) { |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 479 | LLVM_DEBUG(dbgs() << "Computing " << getName() << " trace through " |
| 480 | << printMBBReference(*MBB) << '\n'); |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 481 | // Set up loop bounds for the backwards post-order traversal. |
Jakob Stoklund Olesen | 64e2973 | 2012-07-31 20:25:13 +0000 | [diff] [blame] | 482 | LoopBounds Bounds(BlockInfo, MTM.Loops); |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 483 | |
| 484 | // Run an upwards post-order search for the trace start. |
| 485 | Bounds.Downward = false; |
Jakob Stoklund Olesen | e723007 | 2012-08-08 22:12:01 +0000 | [diff] [blame] | 486 | Bounds.Visited.clear(); |
Daniel Berlin | 7871b86 | 2015-04-15 17:41:42 +0000 | [diff] [blame] | 487 | for (auto I : inverse_post_order_ext(MBB, Bounds)) { |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 488 | LLVM_DEBUG(dbgs() << " pred for " << printMBBReference(*I) << ": "); |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 489 | TraceBlockInfo &TBI = BlockInfo[I->getNumber()]; |
| 490 | // All the predecessors have been visited, pick the preferred one. |
Daniel Berlin | 7871b86 | 2015-04-15 17:41:42 +0000 | [diff] [blame] | 491 | TBI.Pred = pickTracePred(I); |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 492 | LLVM_DEBUG({ |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 493 | if (TBI.Pred) |
Francis Visoiu Mistrih | ca0df55 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 494 | dbgs() << printMBBReference(*TBI.Pred) << '\n'; |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 495 | else |
| 496 | dbgs() << "null\n"; |
| 497 | }); |
| 498 | // The trace leading to I is now known, compute the depth resources. |
Daniel Berlin | 7871b86 | 2015-04-15 17:41:42 +0000 | [diff] [blame] | 499 | computeDepthResources(I); |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 500 | } |
| 501 | |
| 502 | // Run a downwards post-order search for the trace end. |
| 503 | Bounds.Downward = true; |
Jakob Stoklund Olesen | e723007 | 2012-08-08 22:12:01 +0000 | [diff] [blame] | 504 | Bounds.Visited.clear(); |
Daniel Berlin | 7871b86 | 2015-04-15 17:41:42 +0000 | [diff] [blame] | 505 | for (auto I : post_order_ext(MBB, Bounds)) { |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 506 | LLVM_DEBUG(dbgs() << " succ for " << printMBBReference(*I) << ": "); |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 507 | TraceBlockInfo &TBI = BlockInfo[I->getNumber()]; |
| 508 | // All the successors have been visited, pick the preferred one. |
Daniel Berlin | 7871b86 | 2015-04-15 17:41:42 +0000 | [diff] [blame] | 509 | TBI.Succ = pickTraceSucc(I); |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 510 | LLVM_DEBUG({ |
Jakob Stoklund Olesen | 1c899cf | 2012-07-30 23:15:10 +0000 | [diff] [blame] | 511 | if (TBI.Succ) |
Francis Visoiu Mistrih | ca0df55 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 512 | dbgs() << printMBBReference(*TBI.Succ) << '\n'; |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 513 | else |
| 514 | dbgs() << "null\n"; |
| 515 | }); |
| 516 | // The trace leaving I is now known, compute the height resources. |
Daniel Berlin | 7871b86 | 2015-04-15 17:41:42 +0000 | [diff] [blame] | 517 | computeHeightResources(I); |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 518 | } |
| 519 | } |
| 520 | |
| 521 | /// Invalidate traces through BadMBB. |
| 522 | void |
| 523 | MachineTraceMetrics::Ensemble::invalidate(const MachineBasicBlock *BadMBB) { |
| 524 | SmallVector<const MachineBasicBlock*, 16> WorkList; |
| 525 | TraceBlockInfo &BadTBI = BlockInfo[BadMBB->getNumber()]; |
| 526 | |
| 527 | // Invalidate height resources of blocks above MBB. |
| 528 | if (BadTBI.hasValidHeight()) { |
| 529 | BadTBI.invalidateHeight(); |
| 530 | WorkList.push_back(BadMBB); |
| 531 | do { |
| 532 | const MachineBasicBlock *MBB = WorkList.pop_back_val(); |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 533 | LLVM_DEBUG(dbgs() << "Invalidate " << printMBBReference(*MBB) << ' ' |
| 534 | << getName() << " height.\n"); |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 535 | // Find any MBB predecessors that have MBB as their preferred successor. |
| 536 | // They are the only ones that need to be invalidated. |
Sanjay Patel | a71390f | 2015-07-06 16:27:35 +0000 | [diff] [blame] | 537 | for (const MachineBasicBlock *Pred : MBB->predecessors()) { |
| 538 | TraceBlockInfo &TBI = BlockInfo[Pred->getNumber()]; |
Jakob Stoklund Olesen | ee31ae1 | 2012-07-30 17:36:49 +0000 | [diff] [blame] | 539 | if (!TBI.hasValidHeight()) |
| 540 | continue; |
| 541 | if (TBI.Succ == MBB) { |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 542 | TBI.invalidateHeight(); |
Sanjay Patel | a71390f | 2015-07-06 16:27:35 +0000 | [diff] [blame] | 543 | WorkList.push_back(Pred); |
Jakob Stoklund Olesen | ee31ae1 | 2012-07-30 17:36:49 +0000 | [diff] [blame] | 544 | continue; |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 545 | } |
Jakob Stoklund Olesen | ee31ae1 | 2012-07-30 17:36:49 +0000 | [diff] [blame] | 546 | // Verify that TBI.Succ is actually a *I successor. |
Sanjay Patel | a71390f | 2015-07-06 16:27:35 +0000 | [diff] [blame] | 547 | assert((!TBI.Succ || Pred->isSuccessor(TBI.Succ)) && "CFG changed"); |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 548 | } |
| 549 | } while (!WorkList.empty()); |
| 550 | } |
| 551 | |
| 552 | // Invalidate depth resources of blocks below MBB. |
| 553 | if (BadTBI.hasValidDepth()) { |
| 554 | BadTBI.invalidateDepth(); |
| 555 | WorkList.push_back(BadMBB); |
| 556 | do { |
| 557 | const MachineBasicBlock *MBB = WorkList.pop_back_val(); |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 558 | LLVM_DEBUG(dbgs() << "Invalidate " << printMBBReference(*MBB) << ' ' |
| 559 | << getName() << " depth.\n"); |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 560 | // Find any MBB successors that have MBB as their preferred predecessor. |
| 561 | // They are the only ones that need to be invalidated. |
Sanjay Patel | a71390f | 2015-07-06 16:27:35 +0000 | [diff] [blame] | 562 | for (const MachineBasicBlock *Succ : MBB->successors()) { |
| 563 | TraceBlockInfo &TBI = BlockInfo[Succ->getNumber()]; |
Jakob Stoklund Olesen | ee31ae1 | 2012-07-30 17:36:49 +0000 | [diff] [blame] | 564 | if (!TBI.hasValidDepth()) |
| 565 | continue; |
| 566 | if (TBI.Pred == MBB) { |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 567 | TBI.invalidateDepth(); |
Sanjay Patel | a71390f | 2015-07-06 16:27:35 +0000 | [diff] [blame] | 568 | WorkList.push_back(Succ); |
Jakob Stoklund Olesen | ee31ae1 | 2012-07-30 17:36:49 +0000 | [diff] [blame] | 569 | continue; |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 570 | } |
Jakob Stoklund Olesen | ee31ae1 | 2012-07-30 17:36:49 +0000 | [diff] [blame] | 571 | // Verify that TBI.Pred is actually a *I predecessor. |
Sanjay Patel | a71390f | 2015-07-06 16:27:35 +0000 | [diff] [blame] | 572 | assert((!TBI.Pred || Succ->isPredecessor(TBI.Pred)) && "CFG changed"); |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 573 | } |
| 574 | } while (!WorkList.empty()); |
| 575 | } |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 576 | |
| 577 | // Clear any per-instruction data. We only have to do this for BadMBB itself |
| 578 | // because the instructions in that block may change. Other blocks may be |
| 579 | // invalidated, but their instructions will stay the same, so there is no |
| 580 | // need to erase the Cycle entries. They will be overwritten when we |
| 581 | // recompute. |
Alexey Samsonov | 8467812 | 2014-04-30 22:17:38 +0000 | [diff] [blame] | 582 | for (const auto &I : *BadMBB) |
| 583 | Cycles.erase(&I); |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 584 | } |
| 585 | |
Jakob Stoklund Olesen | a1b2bf7 | 2012-07-30 18:34:11 +0000 | [diff] [blame] | 586 | void MachineTraceMetrics::Ensemble::verify() const { |
| 587 | #ifndef NDEBUG |
Jakob Stoklund Olesen | 64e2973 | 2012-07-31 20:25:13 +0000 | [diff] [blame] | 588 | assert(BlockInfo.size() == MTM.MF->getNumBlockIDs() && |
Jakob Stoklund Olesen | a1b2bf7 | 2012-07-30 18:34:11 +0000 | [diff] [blame] | 589 | "Outdated BlockInfo size"); |
| 590 | for (unsigned Num = 0, e = BlockInfo.size(); Num != e; ++Num) { |
| 591 | const TraceBlockInfo &TBI = BlockInfo[Num]; |
| 592 | if (TBI.hasValidDepth() && TBI.Pred) { |
Jakob Stoklund Olesen | 64e2973 | 2012-07-31 20:25:13 +0000 | [diff] [blame] | 593 | const MachineBasicBlock *MBB = MTM.MF->getBlockNumbered(Num); |
Jakob Stoklund Olesen | a1b2bf7 | 2012-07-30 18:34:11 +0000 | [diff] [blame] | 594 | assert(MBB->isPredecessor(TBI.Pred) && "CFG doesn't match trace"); |
| 595 | assert(BlockInfo[TBI.Pred->getNumber()].hasValidDepth() && |
| 596 | "Trace is broken, depth should have been invalidated."); |
| 597 | const MachineLoop *Loop = getLoopFor(MBB); |
| 598 | assert(!(Loop && MBB == Loop->getHeader()) && "Trace contains backedge"); |
| 599 | } |
| 600 | if (TBI.hasValidHeight() && TBI.Succ) { |
Jakob Stoklund Olesen | 64e2973 | 2012-07-31 20:25:13 +0000 | [diff] [blame] | 601 | const MachineBasicBlock *MBB = MTM.MF->getBlockNumbered(Num); |
Jakob Stoklund Olesen | a1b2bf7 | 2012-07-30 18:34:11 +0000 | [diff] [blame] | 602 | assert(MBB->isSuccessor(TBI.Succ) && "CFG doesn't match trace"); |
| 603 | assert(BlockInfo[TBI.Succ->getNumber()].hasValidHeight() && |
| 604 | "Trace is broken, height should have been invalidated."); |
| 605 | const MachineLoop *Loop = getLoopFor(MBB); |
| 606 | const MachineLoop *SuccLoop = getLoopFor(TBI.Succ); |
| 607 | assert(!(Loop && Loop == SuccLoop && TBI.Succ == Loop->getHeader()) && |
| 608 | "Trace contains backedge"); |
| 609 | } |
| 610 | } |
| 611 | #endif |
| 612 | } |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 613 | |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 614 | //===----------------------------------------------------------------------===// |
| 615 | // Data Dependencies |
| 616 | //===----------------------------------------------------------------------===// |
| 617 | // |
| 618 | // Compute the depth and height of each instruction based on data dependencies |
| 619 | // and instruction latencies. These cycle numbers assume that the CPU can issue |
| 620 | // an infinite number of instructions per cycle as long as their dependencies |
| 621 | // are ready. |
| 622 | |
| 623 | // A data dependency is represented as a defining MI and operand numbers on the |
| 624 | // defining and using MI. |
| 625 | namespace { |
Eugene Zelenko | c688c0b | 2017-02-21 22:07:52 +0000 | [diff] [blame] | 626 | |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 627 | struct DataDep { |
| 628 | const MachineInstr *DefMI; |
| 629 | unsigned DefOp; |
| 630 | unsigned UseOp; |
Jakob Stoklund Olesen | 9dae457 | 2012-08-01 16:02:59 +0000 | [diff] [blame] | 631 | |
| 632 | DataDep(const MachineInstr *DefMI, unsigned DefOp, unsigned UseOp) |
| 633 | : DefMI(DefMI), DefOp(DefOp), UseOp(UseOp) {} |
| 634 | |
| 635 | /// Create a DataDep from an SSA form virtual register. |
| 636 | DataDep(const MachineRegisterInfo *MRI, unsigned VirtReg, unsigned UseOp) |
| 637 | : UseOp(UseOp) { |
| 638 | assert(TargetRegisterInfo::isVirtualRegister(VirtReg)); |
| 639 | MachineRegisterInfo::def_iterator DefI = MRI->def_begin(VirtReg); |
| 640 | assert(!DefI.atEnd() && "Register has no defs"); |
Owen Anderson | bf63022 | 2014-03-13 23:12:04 +0000 | [diff] [blame] | 641 | DefMI = DefI->getParent(); |
Jakob Stoklund Olesen | 9dae457 | 2012-08-01 16:02:59 +0000 | [diff] [blame] | 642 | DefOp = DefI.getOperandNo(); |
| 643 | assert((++DefI).atEnd() && "Register has multiple defs"); |
| 644 | } |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 645 | }; |
Eugene Zelenko | c688c0b | 2017-02-21 22:07:52 +0000 | [diff] [blame] | 646 | |
| 647 | } // end anonymous namespace |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 648 | |
| 649 | // Get the input data dependencies that must be ready before UseMI can issue. |
| 650 | // Return true if UseMI has any physreg operands. |
Duncan P. N. Exon Smith | fdab22c | 2016-06-30 23:53:20 +0000 | [diff] [blame] | 651 | static bool getDataDeps(const MachineInstr &UseMI, |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 652 | SmallVectorImpl<DataDep> &Deps, |
| 653 | const MachineRegisterInfo *MRI) { |
Sanjay Patel | c3bac70 | 2015-07-23 22:56:53 +0000 | [diff] [blame] | 654 | // Debug values should not be included in any calculations. |
Shiva Chen | 24abe71 | 2018-05-09 02:42:00 +0000 | [diff] [blame] | 655 | if (UseMI.isDebugInstr()) |
Sanjay Patel | c3bac70 | 2015-07-23 22:56:53 +0000 | [diff] [blame] | 656 | return false; |
Fangrui Song | af7b183 | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 657 | |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 658 | bool HasPhysRegs = false; |
Duncan P. N. Exon Smith | fdab22c | 2016-06-30 23:53:20 +0000 | [diff] [blame] | 659 | for (MachineInstr::const_mop_iterator I = UseMI.operands_begin(), |
| 660 | E = UseMI.operands_end(); I != E; ++I) { |
Matthias Braun | e67bd6c | 2015-05-29 02:56:46 +0000 | [diff] [blame] | 661 | const MachineOperand &MO = *I; |
| 662 | if (!MO.isReg()) |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 663 | continue; |
Matthias Braun | e67bd6c | 2015-05-29 02:56:46 +0000 | [diff] [blame] | 664 | unsigned Reg = MO.getReg(); |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 665 | if (!Reg) |
| 666 | continue; |
| 667 | if (TargetRegisterInfo::isPhysicalRegister(Reg)) { |
| 668 | HasPhysRegs = true; |
| 669 | continue; |
| 670 | } |
| 671 | // Collect virtual register reads. |
Matthias Braun | e67bd6c | 2015-05-29 02:56:46 +0000 | [diff] [blame] | 672 | if (MO.readsReg()) |
Duncan P. N. Exon Smith | fdab22c | 2016-06-30 23:53:20 +0000 | [diff] [blame] | 673 | Deps.push_back(DataDep(MRI, Reg, UseMI.getOperandNo(I))); |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 674 | } |
| 675 | return HasPhysRegs; |
| 676 | } |
| 677 | |
| 678 | // Get the input data dependencies of a PHI instruction, using Pred as the |
| 679 | // preferred predecessor. |
| 680 | // This will add at most one dependency to Deps. |
Duncan P. N. Exon Smith | 65b18dd | 2016-02-22 03:33:28 +0000 | [diff] [blame] | 681 | static void getPHIDeps(const MachineInstr &UseMI, |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 682 | SmallVectorImpl<DataDep> &Deps, |
| 683 | const MachineBasicBlock *Pred, |
| 684 | const MachineRegisterInfo *MRI) { |
| 685 | // No predecessor at the beginning of a trace. Ignore dependencies. |
| 686 | if (!Pred) |
| 687 | return; |
Duncan P. N. Exon Smith | 65b18dd | 2016-02-22 03:33:28 +0000 | [diff] [blame] | 688 | assert(UseMI.isPHI() && UseMI.getNumOperands() % 2 && "Bad PHI"); |
| 689 | for (unsigned i = 1; i != UseMI.getNumOperands(); i += 2) { |
| 690 | if (UseMI.getOperand(i + 1).getMBB() == Pred) { |
| 691 | unsigned Reg = UseMI.getOperand(i).getReg(); |
Jakob Stoklund Olesen | 9dae457 | 2012-08-01 16:02:59 +0000 | [diff] [blame] | 692 | Deps.push_back(DataDep(MRI, Reg, i)); |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 693 | return; |
| 694 | } |
| 695 | } |
| 696 | } |
| 697 | |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 698 | // Identify physreg dependencies for UseMI, and update the live regunit |
| 699 | // tracking set when scanning instructions downwards. |
| 700 | static void updatePhysDepsDownwards(const MachineInstr *UseMI, |
| 701 | SmallVectorImpl<DataDep> &Deps, |
| 702 | SparseSet<LiveRegUnit> &RegUnits, |
| 703 | const TargetRegisterInfo *TRI) { |
| 704 | SmallVector<unsigned, 8> Kills; |
| 705 | SmallVector<unsigned, 8> LiveDefOps; |
| 706 | |
Matthias Braun | e67bd6c | 2015-05-29 02:56:46 +0000 | [diff] [blame] | 707 | for (MachineInstr::const_mop_iterator MI = UseMI->operands_begin(), |
| 708 | ME = UseMI->operands_end(); MI != ME; ++MI) { |
| 709 | const MachineOperand &MO = *MI; |
| 710 | if (!MO.isReg()) |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 711 | continue; |
Matthias Braun | e67bd6c | 2015-05-29 02:56:46 +0000 | [diff] [blame] | 712 | unsigned Reg = MO.getReg(); |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 713 | if (!TargetRegisterInfo::isPhysicalRegister(Reg)) |
| 714 | continue; |
| 715 | // Track live defs and kills for updating RegUnits. |
Matthias Braun | e67bd6c | 2015-05-29 02:56:46 +0000 | [diff] [blame] | 716 | if (MO.isDef()) { |
| 717 | if (MO.isDead()) |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 718 | Kills.push_back(Reg); |
| 719 | else |
Matthias Braun | e67bd6c | 2015-05-29 02:56:46 +0000 | [diff] [blame] | 720 | LiveDefOps.push_back(UseMI->getOperandNo(MI)); |
| 721 | } else if (MO.isKill()) |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 722 | Kills.push_back(Reg); |
| 723 | // Identify dependencies. |
Matthias Braun | e67bd6c | 2015-05-29 02:56:46 +0000 | [diff] [blame] | 724 | if (!MO.readsReg()) |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 725 | continue; |
| 726 | for (MCRegUnitIterator Units(Reg, TRI); Units.isValid(); ++Units) { |
| 727 | SparseSet<LiveRegUnit>::iterator I = RegUnits.find(*Units); |
| 728 | if (I == RegUnits.end()) |
| 729 | continue; |
Matthias Braun | e67bd6c | 2015-05-29 02:56:46 +0000 | [diff] [blame] | 730 | Deps.push_back(DataDep(I->MI, I->Op, UseMI->getOperandNo(MI))); |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 731 | break; |
| 732 | } |
| 733 | } |
| 734 | |
| 735 | // Update RegUnits to reflect live registers after UseMI. |
| 736 | // First kills. |
Sanjay Patel | 28e18e1 | 2015-12-09 22:45:45 +0000 | [diff] [blame] | 737 | for (unsigned Kill : Kills) |
| 738 | for (MCRegUnitIterator Units(Kill, TRI); Units.isValid(); ++Units) |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 739 | RegUnits.erase(*Units); |
| 740 | |
| 741 | // Second, live defs. |
Sanjay Patel | 28e18e1 | 2015-12-09 22:45:45 +0000 | [diff] [blame] | 742 | for (unsigned DefOp : LiveDefOps) { |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 743 | for (MCRegUnitIterator Units(UseMI->getOperand(DefOp).getReg(), TRI); |
| 744 | Units.isValid(); ++Units) { |
| 745 | LiveRegUnit &LRU = RegUnits[*Units]; |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 746 | LRU.MI = UseMI; |
| 747 | LRU.Op = DefOp; |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 748 | } |
| 749 | } |
| 750 | } |
| 751 | |
Jakob Stoklund Olesen | 79a20ce | 2012-08-02 18:45:54 +0000 | [diff] [blame] | 752 | /// The length of the critical path through a trace is the maximum of two path |
| 753 | /// lengths: |
| 754 | /// |
| 755 | /// 1. The maximum height+depth over all instructions in the trace center block. |
| 756 | /// |
| 757 | /// 2. The longest cross-block dependency chain. For small blocks, it is |
| 758 | /// possible that the critical path through the trace doesn't include any |
| 759 | /// instructions in the block. |
| 760 | /// |
| 761 | /// This function computes the second number from the live-in list of the |
| 762 | /// center block. |
| 763 | unsigned MachineTraceMetrics::Ensemble:: |
| 764 | computeCrossBlockCriticalPath(const TraceBlockInfo &TBI) { |
| 765 | assert(TBI.HasValidInstrDepths && "Missing depth info"); |
| 766 | assert(TBI.HasValidInstrHeights && "Missing height info"); |
| 767 | unsigned MaxLen = 0; |
Sanjay Patel | 28e18e1 | 2015-12-09 22:45:45 +0000 | [diff] [blame] | 768 | for (const LiveInReg &LIR : TBI.LiveIns) { |
Jakob Stoklund Olesen | 79a20ce | 2012-08-02 18:45:54 +0000 | [diff] [blame] | 769 | if (!TargetRegisterInfo::isVirtualRegister(LIR.Reg)) |
| 770 | continue; |
| 771 | const MachineInstr *DefMI = MTM.MRI->getVRegDef(LIR.Reg); |
| 772 | // Ignore dependencies outside the current trace. |
| 773 | const TraceBlockInfo &DefTBI = BlockInfo[DefMI->getParent()->getNumber()]; |
Jakob Stoklund Olesen | 6ffcd5e | 2013-03-07 23:55:49 +0000 | [diff] [blame] | 774 | if (!DefTBI.isUsefulDominator(TBI)) |
Jakob Stoklund Olesen | 79a20ce | 2012-08-02 18:45:54 +0000 | [diff] [blame] | 775 | continue; |
| 776 | unsigned Len = LIR.Height + Cycles[DefMI].Depth; |
| 777 | MaxLen = std::max(MaxLen, Len); |
| 778 | } |
| 779 | return MaxLen; |
| 780 | } |
| 781 | |
Florian Hahn | 4970c50 | 2017-09-07 11:51:30 +0000 | [diff] [blame] | 782 | void MachineTraceMetrics::Ensemble:: |
| 783 | updateDepth(MachineTraceMetrics::TraceBlockInfo &TBI, const MachineInstr &UseMI, |
| 784 | SparseSet<LiveRegUnit> &RegUnits) { |
| 785 | SmallVector<DataDep, 8> Deps; |
| 786 | // Collect all data dependencies. |
| 787 | if (UseMI.isPHI()) |
| 788 | getPHIDeps(UseMI, Deps, TBI.Pred, MTM.MRI); |
| 789 | else if (getDataDeps(UseMI, Deps, MTM.MRI)) |
| 790 | updatePhysDepsDownwards(&UseMI, Deps, RegUnits, MTM.TRI); |
| 791 | |
| 792 | // Filter and process dependencies, computing the earliest issue cycle. |
| 793 | unsigned Cycle = 0; |
| 794 | for (const DataDep &Dep : Deps) { |
| 795 | const TraceBlockInfo&DepTBI = |
| 796 | BlockInfo[Dep.DefMI->getParent()->getNumber()]; |
| 797 | // Ignore dependencies from outside the current trace. |
| 798 | if (!DepTBI.isUsefulDominator(TBI)) |
| 799 | continue; |
| 800 | assert(DepTBI.HasValidInstrDepths && "Inconsistent dependency"); |
| 801 | unsigned DepCycle = Cycles.lookup(Dep.DefMI).Depth; |
| 802 | // Add latency if DefMI is a real instruction. Transients get latency 0. |
| 803 | if (!Dep.DefMI->isTransient()) |
| 804 | DepCycle += MTM.SchedModel |
| 805 | .computeOperandLatency(Dep.DefMI, Dep.DefOp, &UseMI, Dep.UseOp); |
| 806 | Cycle = std::max(Cycle, DepCycle); |
| 807 | } |
| 808 | // Remember the instruction depth. |
| 809 | InstrCycles &MICycles = Cycles[&UseMI]; |
| 810 | MICycles.Depth = Cycle; |
| 811 | |
| 812 | if (TBI.HasValidInstrHeights) { |
| 813 | // Update critical path length. |
| 814 | TBI.CriticalPath = std::max(TBI.CriticalPath, Cycle + MICycles.Height); |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 815 | LLVM_DEBUG(dbgs() << TBI.CriticalPath << '\t' << Cycle << '\t' << UseMI); |
Florian Hahn | 4970c50 | 2017-09-07 11:51:30 +0000 | [diff] [blame] | 816 | } else { |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 817 | LLVM_DEBUG(dbgs() << Cycle << '\t' << UseMI); |
Florian Hahn | 4970c50 | 2017-09-07 11:51:30 +0000 | [diff] [blame] | 818 | } |
| 819 | } |
| 820 | |
| 821 | void MachineTraceMetrics::Ensemble:: |
| 822 | updateDepth(const MachineBasicBlock *MBB, const MachineInstr &UseMI, |
| 823 | SparseSet<LiveRegUnit> &RegUnits) { |
| 824 | updateDepth(BlockInfo[MBB->getNumber()], UseMI, RegUnits); |
| 825 | } |
| 826 | |
Florian Hahn | 6aed421 | 2017-09-20 11:54:37 +0000 | [diff] [blame] | 827 | void MachineTraceMetrics::Ensemble:: |
| 828 | updateDepths(MachineBasicBlock::iterator Start, |
| 829 | MachineBasicBlock::iterator End, |
| 830 | SparseSet<LiveRegUnit> &RegUnits) { |
| 831 | for (; Start != End; Start++) |
| 832 | updateDepth(Start->getParent(), *Start, RegUnits); |
| 833 | } |
| 834 | |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 835 | /// Compute instruction depths for all instructions above or in MBB in its |
| 836 | /// trace. This assumes that the trace through MBB has already been computed. |
| 837 | void MachineTraceMetrics::Ensemble:: |
| 838 | computeInstrDepths(const MachineBasicBlock *MBB) { |
| 839 | // The top of the trace may already be computed, and HasValidInstrDepths |
| 840 | // implies Head->HasValidInstrDepths, so we only need to start from the first |
| 841 | // block in the trace that needs to be recomputed. |
| 842 | SmallVector<const MachineBasicBlock*, 8> Stack; |
| 843 | do { |
| 844 | TraceBlockInfo &TBI = BlockInfo[MBB->getNumber()]; |
| 845 | assert(TBI.hasValidDepth() && "Incomplete trace"); |
| 846 | if (TBI.HasValidInstrDepths) |
| 847 | break; |
| 848 | Stack.push_back(MBB); |
| 849 | MBB = TBI.Pred; |
| 850 | } while (MBB); |
| 851 | |
| 852 | // FIXME: If MBB is non-null at this point, it is the last pre-computed block |
| 853 | // in the trace. We should track any live-out physregs that were defined in |
| 854 | // the trace. This is quite rare in SSA form, typically created by CSE |
| 855 | // hoisting a compare. |
| 856 | SparseSet<LiveRegUnit> RegUnits; |
| 857 | RegUnits.setUniverse(MTM.TRI->getNumRegUnits()); |
| 858 | |
| 859 | // Go through trace blocks in top-down order, stopping after the center block. |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 860 | while (!Stack.empty()) { |
| 861 | MBB = Stack.pop_back_val(); |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 862 | LLVM_DEBUG(dbgs() << "\nDepths for " << printMBBReference(*MBB) << ":\n"); |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 863 | TraceBlockInfo &TBI = BlockInfo[MBB->getNumber()]; |
| 864 | TBI.HasValidInstrDepths = true; |
Jakob Stoklund Olesen | 79a20ce | 2012-08-02 18:45:54 +0000 | [diff] [blame] | 865 | TBI.CriticalPath = 0; |
| 866 | |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 867 | // Print out resource depths here as well. |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 868 | LLVM_DEBUG({ |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 869 | dbgs() << format("%7u Instructions\n", TBI.InstrDepth); |
| 870 | ArrayRef<unsigned> PRDepths = getProcResourceDepths(MBB->getNumber()); |
| 871 | for (unsigned K = 0; K != PRDepths.size(); ++K) |
| 872 | if (PRDepths[K]) { |
| 873 | unsigned Factor = MTM.SchedModel.getResourceFactor(K); |
| 874 | dbgs() << format("%6uc @ ", MTM.getCycles(PRDepths[K])) |
| 875 | << MTM.SchedModel.getProcResource(K)->Name << " (" |
| 876 | << PRDepths[K]/Factor << " ops x" << Factor << ")\n"; |
| 877 | } |
| 878 | }); |
| 879 | |
Jakob Stoklund Olesen | 79a20ce | 2012-08-02 18:45:54 +0000 | [diff] [blame] | 880 | // Also compute the critical path length through MBB when possible. |
| 881 | if (TBI.HasValidInstrHeights) |
| 882 | TBI.CriticalPath = computeCrossBlockCriticalPath(TBI); |
| 883 | |
Alexey Samsonov | 8467812 | 2014-04-30 22:17:38 +0000 | [diff] [blame] | 884 | for (const auto &UseMI : *MBB) { |
Florian Hahn | 4970c50 | 2017-09-07 11:51:30 +0000 | [diff] [blame] | 885 | updateDepth(TBI, UseMI, RegUnits); |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 886 | } |
| 887 | } |
| 888 | } |
| 889 | |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 890 | // Identify physreg dependencies for MI when scanning instructions upwards. |
| 891 | // Return the issue height of MI after considering any live regunits. |
| 892 | // Height is the issue height computed from virtual register dependencies alone. |
Duncan P. N. Exon Smith | 03941cc7 | 2016-07-01 00:05:40 +0000 | [diff] [blame] | 893 | static unsigned updatePhysDepsUpwards(const MachineInstr &MI, unsigned Height, |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 894 | SparseSet<LiveRegUnit> &RegUnits, |
Jakob Stoklund Olesen | f43fe1d | 2012-10-04 17:30:40 +0000 | [diff] [blame] | 895 | const TargetSchedModel &SchedModel, |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 896 | const TargetInstrInfo *TII, |
| 897 | const TargetRegisterInfo *TRI) { |
| 898 | SmallVector<unsigned, 8> ReadOps; |
Matthias Braun | e67bd6c | 2015-05-29 02:56:46 +0000 | [diff] [blame] | 899 | |
Duncan P. N. Exon Smith | 03941cc7 | 2016-07-01 00:05:40 +0000 | [diff] [blame] | 900 | for (MachineInstr::const_mop_iterator MOI = MI.operands_begin(), |
| 901 | MOE = MI.operands_end(); |
| 902 | MOI != MOE; ++MOI) { |
Matthias Braun | e67bd6c | 2015-05-29 02:56:46 +0000 | [diff] [blame] | 903 | const MachineOperand &MO = *MOI; |
| 904 | if (!MO.isReg()) |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 905 | continue; |
Matthias Braun | e67bd6c | 2015-05-29 02:56:46 +0000 | [diff] [blame] | 906 | unsigned Reg = MO.getReg(); |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 907 | if (!TargetRegisterInfo::isPhysicalRegister(Reg)) |
| 908 | continue; |
Matthias Braun | e67bd6c | 2015-05-29 02:56:46 +0000 | [diff] [blame] | 909 | if (MO.readsReg()) |
Duncan P. N. Exon Smith | 03941cc7 | 2016-07-01 00:05:40 +0000 | [diff] [blame] | 910 | ReadOps.push_back(MI.getOperandNo(MOI)); |
Matthias Braun | e67bd6c | 2015-05-29 02:56:46 +0000 | [diff] [blame] | 911 | if (!MO.isDef()) |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 912 | continue; |
| 913 | // This is a def of Reg. Remove corresponding entries from RegUnits, and |
| 914 | // update MI Height to consider the physreg dependencies. |
| 915 | for (MCRegUnitIterator Units(Reg, TRI); Units.isValid(); ++Units) { |
| 916 | SparseSet<LiveRegUnit>::iterator I = RegUnits.find(*Units); |
| 917 | if (I == RegUnits.end()) |
| 918 | continue; |
| 919 | unsigned DepHeight = I->Cycle; |
Duncan P. N. Exon Smith | 03941cc7 | 2016-07-01 00:05:40 +0000 | [diff] [blame] | 920 | if (!MI.isTransient()) { |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 921 | // We may not know the UseMI of this dependency, if it came from the |
Jakob Stoklund Olesen | f43fe1d | 2012-10-04 17:30:40 +0000 | [diff] [blame] | 922 | // live-in list. SchedModel can handle a NULL UseMI. |
Duncan P. N. Exon Smith | 03941cc7 | 2016-07-01 00:05:40 +0000 | [diff] [blame] | 923 | DepHeight += SchedModel.computeOperandLatency(&MI, MI.getOperandNo(MOI), |
| 924 | I->MI, I->Op); |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 925 | } |
| 926 | Height = std::max(Height, DepHeight); |
| 927 | // This regunit is dead above MI. |
| 928 | RegUnits.erase(I); |
| 929 | } |
| 930 | } |
| 931 | |
| 932 | // Now we know the height of MI. Update any regunits read. |
| 933 | for (unsigned i = 0, e = ReadOps.size(); i != e; ++i) { |
Duncan P. N. Exon Smith | 03941cc7 | 2016-07-01 00:05:40 +0000 | [diff] [blame] | 934 | unsigned Reg = MI.getOperand(ReadOps[i]).getReg(); |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 935 | for (MCRegUnitIterator Units(Reg, TRI); Units.isValid(); ++Units) { |
| 936 | LiveRegUnit &LRU = RegUnits[*Units]; |
| 937 | // Set the height to the highest reader of the unit. |
Duncan P. N. Exon Smith | 03941cc7 | 2016-07-01 00:05:40 +0000 | [diff] [blame] | 938 | if (LRU.Cycle <= Height && LRU.MI != &MI) { |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 939 | LRU.Cycle = Height; |
Duncan P. N. Exon Smith | 03941cc7 | 2016-07-01 00:05:40 +0000 | [diff] [blame] | 940 | LRU.MI = &MI; |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 941 | LRU.Op = ReadOps[i]; |
| 942 | } |
| 943 | } |
| 944 | } |
| 945 | |
| 946 | return Height; |
| 947 | } |
| 948 | |
Eugene Zelenko | 8fd0504 | 2017-09-11 23:00:48 +0000 | [diff] [blame] | 949 | using MIHeightMap = DenseMap<const MachineInstr *, unsigned>; |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 950 | |
| 951 | // Push the height of DefMI upwards if required to match UseMI. |
| 952 | // Return true if this is the first time DefMI was seen. |
Duncan P. N. Exon Smith | 03941cc7 | 2016-07-01 00:05:40 +0000 | [diff] [blame] | 953 | static bool pushDepHeight(const DataDep &Dep, const MachineInstr &UseMI, |
| 954 | unsigned UseHeight, MIHeightMap &Heights, |
Jakob Stoklund Olesen | f43fe1d | 2012-10-04 17:30:40 +0000 | [diff] [blame] | 955 | const TargetSchedModel &SchedModel, |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 956 | const TargetInstrInfo *TII) { |
| 957 | // Adjust height by Dep.DefMI latency. |
| 958 | if (!Dep.DefMI->isTransient()) |
Duncan P. N. Exon Smith | 03941cc7 | 2016-07-01 00:05:40 +0000 | [diff] [blame] | 959 | UseHeight += SchedModel.computeOperandLatency(Dep.DefMI, Dep.DefOp, &UseMI, |
| 960 | Dep.UseOp); |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 961 | |
| 962 | // Update Heights[DefMI] to be the maximum height seen. |
| 963 | MIHeightMap::iterator I; |
| 964 | bool New; |
Benjamin Kramer | a4f0aad | 2014-03-02 13:30:33 +0000 | [diff] [blame] | 965 | std::tie(I, New) = Heights.insert(std::make_pair(Dep.DefMI, UseHeight)); |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 966 | if (New) |
| 967 | return true; |
| 968 | |
| 969 | // DefMI has been pushed before. Give it the max height. |
| 970 | if (I->second < UseHeight) |
| 971 | I->second = UseHeight; |
| 972 | return false; |
| 973 | } |
| 974 | |
Jakob Stoklund Olesen | ebba493 | 2012-10-11 16:46:07 +0000 | [diff] [blame] | 975 | /// Assuming that the virtual register defined by DefMI:DefOp was used by |
| 976 | /// Trace.back(), add it to the live-in lists of all the blocks in Trace. Stop |
| 977 | /// when reaching the block that contains DefMI. |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 978 | void MachineTraceMetrics::Ensemble:: |
Jakob Stoklund Olesen | ebba493 | 2012-10-11 16:46:07 +0000 | [diff] [blame] | 979 | addLiveIns(const MachineInstr *DefMI, unsigned DefOp, |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 980 | ArrayRef<const MachineBasicBlock*> Trace) { |
| 981 | assert(!Trace.empty() && "Trace should contain at least one block"); |
Jakob Stoklund Olesen | ebba493 | 2012-10-11 16:46:07 +0000 | [diff] [blame] | 982 | unsigned Reg = DefMI->getOperand(DefOp).getReg(); |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 983 | assert(TargetRegisterInfo::isVirtualRegister(Reg)); |
| 984 | const MachineBasicBlock *DefMBB = DefMI->getParent(); |
| 985 | |
| 986 | // Reg is live-in to all blocks in Trace that follow DefMBB. |
| 987 | for (unsigned i = Trace.size(); i; --i) { |
| 988 | const MachineBasicBlock *MBB = Trace[i-1]; |
| 989 | if (MBB == DefMBB) |
| 990 | return; |
| 991 | TraceBlockInfo &TBI = BlockInfo[MBB->getNumber()]; |
| 992 | // Just add the register. The height will be updated later. |
| 993 | TBI.LiveIns.push_back(Reg); |
| 994 | } |
| 995 | } |
| 996 | |
| 997 | /// Compute instruction heights in the trace through MBB. This updates MBB and |
| 998 | /// the blocks below it in the trace. It is assumed that the trace has already |
| 999 | /// been computed. |
| 1000 | void MachineTraceMetrics::Ensemble:: |
| 1001 | computeInstrHeights(const MachineBasicBlock *MBB) { |
| 1002 | // The bottom of the trace may already be computed. |
| 1003 | // Find the blocks that need updating. |
| 1004 | SmallVector<const MachineBasicBlock*, 8> Stack; |
| 1005 | do { |
| 1006 | TraceBlockInfo &TBI = BlockInfo[MBB->getNumber()]; |
| 1007 | assert(TBI.hasValidHeight() && "Incomplete trace"); |
| 1008 | if (TBI.HasValidInstrHeights) |
| 1009 | break; |
| 1010 | Stack.push_back(MBB); |
| 1011 | TBI.LiveIns.clear(); |
| 1012 | MBB = TBI.Succ; |
| 1013 | } while (MBB); |
| 1014 | |
| 1015 | // As we move upwards in the trace, keep track of instructions that are |
| 1016 | // required by deeper trace instructions. Map MI -> height required so far. |
| 1017 | MIHeightMap Heights; |
| 1018 | |
| 1019 | // For physregs, the def isn't known when we see the use. |
| 1020 | // Instead, keep track of the highest use of each regunit. |
| 1021 | SparseSet<LiveRegUnit> RegUnits; |
| 1022 | RegUnits.setUniverse(MTM.TRI->getNumRegUnits()); |
| 1023 | |
| 1024 | // If the bottom of the trace was already precomputed, initialize heights |
| 1025 | // from its live-in list. |
| 1026 | // MBB is the highest precomputed block in the trace. |
| 1027 | if (MBB) { |
| 1028 | TraceBlockInfo &TBI = BlockInfo[MBB->getNumber()]; |
Sanjay Patel | 98d447c | 2015-07-06 16:19:14 +0000 | [diff] [blame] | 1029 | for (LiveInReg &LI : TBI.LiveIns) { |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 1030 | if (TargetRegisterInfo::isVirtualRegister(LI.Reg)) { |
| 1031 | // For virtual registers, the def latency is included. |
| 1032 | unsigned &Height = Heights[MTM.MRI->getVRegDef(LI.Reg)]; |
| 1033 | if (Height < LI.Height) |
| 1034 | Height = LI.Height; |
| 1035 | } else { |
| 1036 | // For register units, the def latency is not included because we don't |
| 1037 | // know the def yet. |
| 1038 | RegUnits[LI.Reg].Cycle = LI.Height; |
| 1039 | } |
| 1040 | } |
| 1041 | } |
| 1042 | |
| 1043 | // Go through the trace blocks in bottom-up order. |
| 1044 | SmallVector<DataDep, 8> Deps; |
| 1045 | for (;!Stack.empty(); Stack.pop_back()) { |
| 1046 | MBB = Stack.back(); |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1047 | LLVM_DEBUG(dbgs() << "Heights for " << printMBBReference(*MBB) << ":\n"); |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 1048 | TraceBlockInfo &TBI = BlockInfo[MBB->getNumber()]; |
| 1049 | TBI.HasValidInstrHeights = true; |
Jakob Stoklund Olesen | 79a20ce | 2012-08-02 18:45:54 +0000 | [diff] [blame] | 1050 | TBI.CriticalPath = 0; |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 1051 | |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1052 | LLVM_DEBUG({ |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 1053 | dbgs() << format("%7u Instructions\n", TBI.InstrHeight); |
| 1054 | ArrayRef<unsigned> PRHeights = getProcResourceHeights(MBB->getNumber()); |
| 1055 | for (unsigned K = 0; K != PRHeights.size(); ++K) |
| 1056 | if (PRHeights[K]) { |
| 1057 | unsigned Factor = MTM.SchedModel.getResourceFactor(K); |
| 1058 | dbgs() << format("%6uc @ ", MTM.getCycles(PRHeights[K])) |
| 1059 | << MTM.SchedModel.getProcResource(K)->Name << " (" |
| 1060 | << PRHeights[K]/Factor << " ops x" << Factor << ")\n"; |
| 1061 | } |
| 1062 | }); |
| 1063 | |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 1064 | // Get dependencies from PHIs in the trace successor. |
Jakob Stoklund Olesen | 8828c4c | 2012-08-10 20:11:38 +0000 | [diff] [blame] | 1065 | const MachineBasicBlock *Succ = TBI.Succ; |
| 1066 | // If MBB is the last block in the trace, and it has a back-edge to the |
| 1067 | // loop header, get loop-carried dependencies from PHIs in the header. For |
| 1068 | // that purpose, pretend that all the loop header PHIs have height 0. |
| 1069 | if (!Succ) |
| 1070 | if (const MachineLoop *Loop = getLoopFor(MBB)) |
| 1071 | if (MBB->isSuccessor(Loop->getHeader())) |
| 1072 | Succ = Loop->getHeader(); |
| 1073 | |
| 1074 | if (Succ) { |
Alexey Samsonov | 8467812 | 2014-04-30 22:17:38 +0000 | [diff] [blame] | 1075 | for (const auto &PHI : *Succ) { |
| 1076 | if (!PHI.isPHI()) |
| 1077 | break; |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 1078 | Deps.clear(); |
Duncan P. N. Exon Smith | 65b18dd | 2016-02-22 03:33:28 +0000 | [diff] [blame] | 1079 | getPHIDeps(PHI, Deps, MBB, MTM.MRI); |
Jakob Stoklund Olesen | 8828c4c | 2012-08-10 20:11:38 +0000 | [diff] [blame] | 1080 | if (!Deps.empty()) { |
| 1081 | // Loop header PHI heights are all 0. |
Alexey Samsonov | 8467812 | 2014-04-30 22:17:38 +0000 | [diff] [blame] | 1082 | unsigned Height = TBI.Succ ? Cycles.lookup(&PHI).Height : 0; |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1083 | LLVM_DEBUG(dbgs() << "pred\t" << Height << '\t' << PHI); |
Duncan P. N. Exon Smith | 03941cc7 | 2016-07-01 00:05:40 +0000 | [diff] [blame] | 1084 | if (pushDepHeight(Deps.front(), PHI, Height, Heights, MTM.SchedModel, |
| 1085 | MTM.TII)) |
Jakob Stoklund Olesen | ebba493 | 2012-10-11 16:46:07 +0000 | [diff] [blame] | 1086 | addLiveIns(Deps.front().DefMI, Deps.front().DefOp, Stack); |
Jakob Stoklund Olesen | 8828c4c | 2012-08-10 20:11:38 +0000 | [diff] [blame] | 1087 | } |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 1088 | } |
| 1089 | } |
| 1090 | |
| 1091 | // Go through the block backwards. |
| 1092 | for (MachineBasicBlock::const_iterator BI = MBB->end(), BB = MBB->begin(); |
| 1093 | BI != BB;) { |
Duncan P. N. Exon Smith | fdab22c | 2016-06-30 23:53:20 +0000 | [diff] [blame] | 1094 | const MachineInstr &MI = *--BI; |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 1095 | |
| 1096 | // Find the MI height as determined by virtual register uses in the |
| 1097 | // trace below. |
| 1098 | unsigned Cycle = 0; |
Duncan P. N. Exon Smith | fdab22c | 2016-06-30 23:53:20 +0000 | [diff] [blame] | 1099 | MIHeightMap::iterator HeightI = Heights.find(&MI); |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 1100 | if (HeightI != Heights.end()) { |
| 1101 | Cycle = HeightI->second; |
| 1102 | // We won't be seeing any more MI uses. |
| 1103 | Heights.erase(HeightI); |
| 1104 | } |
| 1105 | |
| 1106 | // Don't process PHI deps. They depend on the specific predecessor, and |
| 1107 | // we'll get them when visiting the predecessor. |
| 1108 | Deps.clear(); |
Duncan P. N. Exon Smith | fdab22c | 2016-06-30 23:53:20 +0000 | [diff] [blame] | 1109 | bool HasPhysRegs = !MI.isPHI() && getDataDeps(MI, Deps, MTM.MRI); |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 1110 | |
| 1111 | // There may also be regunit dependencies to include in the height. |
| 1112 | if (HasPhysRegs) |
Duncan P. N. Exon Smith | 03941cc7 | 2016-07-01 00:05:40 +0000 | [diff] [blame] | 1113 | Cycle = updatePhysDepsUpwards(MI, Cycle, RegUnits, MTM.SchedModel, |
| 1114 | MTM.TII, MTM.TRI); |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 1115 | |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 1116 | // Update the required height of any virtual registers read by MI. |
Sanjay Patel | 5601e30 | 2015-06-30 16:30:22 +0000 | [diff] [blame] | 1117 | for (const DataDep &Dep : Deps) |
Duncan P. N. Exon Smith | 03941cc7 | 2016-07-01 00:05:40 +0000 | [diff] [blame] | 1118 | if (pushDepHeight(Dep, MI, Cycle, Heights, MTM.SchedModel, MTM.TII)) |
Sanjay Patel | 5601e30 | 2015-06-30 16:30:22 +0000 | [diff] [blame] | 1119 | addLiveIns(Dep.DefMI, Dep.DefOp, Stack); |
Jakob Stoklund Olesen | 79a20ce | 2012-08-02 18:45:54 +0000 | [diff] [blame] | 1120 | |
Duncan P. N. Exon Smith | fdab22c | 2016-06-30 23:53:20 +0000 | [diff] [blame] | 1121 | InstrCycles &MICycles = Cycles[&MI]; |
Jakob Stoklund Olesen | 79a20ce | 2012-08-02 18:45:54 +0000 | [diff] [blame] | 1122 | MICycles.Height = Cycle; |
| 1123 | if (!TBI.HasValidInstrDepths) { |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1124 | LLVM_DEBUG(dbgs() << Cycle << '\t' << MI); |
Jakob Stoklund Olesen | 79a20ce | 2012-08-02 18:45:54 +0000 | [diff] [blame] | 1125 | continue; |
| 1126 | } |
| 1127 | // Update critical path length. |
| 1128 | TBI.CriticalPath = std::max(TBI.CriticalPath, Cycle + MICycles.Depth); |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1129 | LLVM_DEBUG(dbgs() << TBI.CriticalPath << '\t' << Cycle << '\t' << MI); |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 1130 | } |
| 1131 | |
| 1132 | // Update virtual live-in heights. They were added by addLiveIns() with a 0 |
| 1133 | // height because the final height isn't known until now. |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1134 | LLVM_DEBUG(dbgs() << printMBBReference(*MBB) << " Live-ins:"); |
Sanjay Patel | 5601e30 | 2015-06-30 16:30:22 +0000 | [diff] [blame] | 1135 | for (LiveInReg &LIR : TBI.LiveIns) { |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 1136 | const MachineInstr *DefMI = MTM.MRI->getVRegDef(LIR.Reg); |
| 1137 | LIR.Height = Heights.lookup(DefMI); |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1138 | LLVM_DEBUG(dbgs() << ' ' << printReg(LIR.Reg) << '@' << LIR.Height); |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 1139 | } |
| 1140 | |
| 1141 | // Transfer the live regunits to the live-in list. |
| 1142 | for (SparseSet<LiveRegUnit>::const_iterator |
| 1143 | RI = RegUnits.begin(), RE = RegUnits.end(); RI != RE; ++RI) { |
| 1144 | TBI.LiveIns.push_back(LiveInReg(RI->RegUnit, RI->Cycle)); |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1145 | LLVM_DEBUG(dbgs() << ' ' << printRegUnit(RI->RegUnit, MTM.TRI) << '@' |
| 1146 | << RI->Cycle); |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 1147 | } |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1148 | LLVM_DEBUG(dbgs() << '\n'); |
Jakob Stoklund Olesen | 79a20ce | 2012-08-02 18:45:54 +0000 | [diff] [blame] | 1149 | |
| 1150 | if (!TBI.HasValidInstrDepths) |
| 1151 | continue; |
| 1152 | // Add live-ins to the critical path length. |
| 1153 | TBI.CriticalPath = std::max(TBI.CriticalPath, |
| 1154 | computeCrossBlockCriticalPath(TBI)); |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1155 | LLVM_DEBUG(dbgs() << "Critical path: " << TBI.CriticalPath << '\n'); |
Jakob Stoklund Olesen | c7f44b8 | 2012-08-01 22:36:00 +0000 | [diff] [blame] | 1156 | } |
| 1157 | } |
| 1158 | |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 1159 | MachineTraceMetrics::Trace |
| 1160 | MachineTraceMetrics::Ensemble::getTrace(const MachineBasicBlock *MBB) { |
Sanjay Patel | 2244d52 | 2015-07-04 15:00:28 +0000 | [diff] [blame] | 1161 | TraceBlockInfo &TBI = BlockInfo[MBB->getNumber()]; |
| 1162 | |
| 1163 | if (!TBI.hasValidDepth() || !TBI.hasValidHeight()) |
| 1164 | computeTrace(MBB); |
| 1165 | if (!TBI.HasValidInstrDepths) |
| 1166 | computeInstrDepths(MBB); |
| 1167 | if (!TBI.HasValidInstrHeights) |
| 1168 | computeInstrHeights(MBB); |
Fangrui Song | af7b183 | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 1169 | |
Sanjay Patel | 2244d52 | 2015-07-04 15:00:28 +0000 | [diff] [blame] | 1170 | return Trace(*this, TBI); |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 1171 | } |
| 1172 | |
Jakob Stoklund Olesen | 84ef6ba | 2012-08-07 18:02:19 +0000 | [diff] [blame] | 1173 | unsigned |
Duncan P. N. Exon Smith | 65b18dd | 2016-02-22 03:33:28 +0000 | [diff] [blame] | 1174 | MachineTraceMetrics::Trace::getInstrSlack(const MachineInstr &MI) const { |
| 1175 | assert(getBlockNum() == unsigned(MI.getParent()->getNumber()) && |
Jakob Stoklund Olesen | 84ef6ba | 2012-08-07 18:02:19 +0000 | [diff] [blame] | 1176 | "MI must be in the trace center block"); |
| 1177 | InstrCycles Cyc = getInstrCycles(MI); |
| 1178 | return getCriticalPath() - (Cyc.Depth + Cyc.Height); |
| 1179 | } |
| 1180 | |
Jakob Stoklund Olesen | 5413b68 | 2012-08-10 22:27:27 +0000 | [diff] [blame] | 1181 | unsigned |
Duncan P. N. Exon Smith | 65b18dd | 2016-02-22 03:33:28 +0000 | [diff] [blame] | 1182 | MachineTraceMetrics::Trace::getPHIDepth(const MachineInstr &PHI) const { |
Jakob Stoklund Olesen | 5413b68 | 2012-08-10 22:27:27 +0000 | [diff] [blame] | 1183 | const MachineBasicBlock *MBB = TE.MTM.MF->getBlockNumbered(getBlockNum()); |
| 1184 | SmallVector<DataDep, 1> Deps; |
| 1185 | getPHIDeps(PHI, Deps, MBB, TE.MTM.MRI); |
| 1186 | assert(Deps.size() == 1 && "PHI doesn't have MBB as a predecessor"); |
| 1187 | DataDep &Dep = Deps.front(); |
Duncan P. N. Exon Smith | 65b18dd | 2016-02-22 03:33:28 +0000 | [diff] [blame] | 1188 | unsigned DepCycle = getInstrCycles(*Dep.DefMI).Depth; |
Jakob Stoklund Olesen | 5413b68 | 2012-08-10 22:27:27 +0000 | [diff] [blame] | 1189 | // Add latency if DefMI is a real instruction. Transients get latency 0. |
| 1190 | if (!Dep.DefMI->isTransient()) |
Duncan P. N. Exon Smith | 65b18dd | 2016-02-22 03:33:28 +0000 | [diff] [blame] | 1191 | DepCycle += TE.MTM.SchedModel.computeOperandLatency(Dep.DefMI, Dep.DefOp, |
| 1192 | &PHI, Dep.UseOp); |
Jakob Stoklund Olesen | 5413b68 | 2012-08-10 22:27:27 +0000 | [diff] [blame] | 1193 | return DepCycle; |
| 1194 | } |
| 1195 | |
Gerolf Hoflehner | b0b7088 | 2014-08-03 21:35:39 +0000 | [diff] [blame] | 1196 | /// When bottom is set include instructions in current block in estimate. |
Jakob Stoklund Olesen | 84ef6ba | 2012-08-07 18:02:19 +0000 | [diff] [blame] | 1197 | unsigned MachineTraceMetrics::Trace::getResourceDepth(bool Bottom) const { |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 1198 | // Find the limiting processor resource. |
| 1199 | // Numbers have been pre-scaled to be comparable. |
| 1200 | unsigned PRMax = 0; |
| 1201 | ArrayRef<unsigned> PRDepths = TE.getProcResourceDepths(getBlockNum()); |
| 1202 | if (Bottom) { |
| 1203 | ArrayRef<unsigned> PRCycles = TE.MTM.getProcResourceCycles(getBlockNum()); |
| 1204 | for (unsigned K = 0; K != PRDepths.size(); ++K) |
| 1205 | PRMax = std::max(PRMax, PRDepths[K] + PRCycles[K]); |
| 1206 | } else { |
| 1207 | for (unsigned K = 0; K != PRDepths.size(); ++K) |
| 1208 | PRMax = std::max(PRMax, PRDepths[K]); |
| 1209 | } |
| 1210 | // Convert to cycle count. |
| 1211 | PRMax = TE.MTM.getCycles(PRMax); |
| 1212 | |
Gerolf Hoflehner | b0b7088 | 2014-08-03 21:35:39 +0000 | [diff] [blame] | 1213 | /// All instructions before current block |
Jakob Stoklund Olesen | 84ef6ba | 2012-08-07 18:02:19 +0000 | [diff] [blame] | 1214 | unsigned Instrs = TBI.InstrDepth; |
Gerolf Hoflehner | b0b7088 | 2014-08-03 21:35:39 +0000 | [diff] [blame] | 1215 | // plus instructions in current block |
Jakob Stoklund Olesen | 84ef6ba | 2012-08-07 18:02:19 +0000 | [diff] [blame] | 1216 | if (Bottom) |
| 1217 | Instrs += TE.MTM.BlockInfo[getBlockNum()].InstrCount; |
Jakob Stoklund Olesen | f43fe1d | 2012-10-04 17:30:40 +0000 | [diff] [blame] | 1218 | if (unsigned IW = TE.MTM.SchedModel.getIssueWidth()) |
| 1219 | Instrs /= IW; |
Jakob Stoklund Olesen | 84ef6ba | 2012-08-07 18:02:19 +0000 | [diff] [blame] | 1220 | // Assume issue width 1 without a schedule model. |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 1221 | return std::max(Instrs, PRMax); |
Jakob Stoklund Olesen | 84ef6ba | 2012-08-07 18:02:19 +0000 | [diff] [blame] | 1222 | } |
| 1223 | |
Gerolf Hoflehner | b0b7088 | 2014-08-03 21:35:39 +0000 | [diff] [blame] | 1224 | unsigned MachineTraceMetrics::Trace::getResourceLength( |
| 1225 | ArrayRef<const MachineBasicBlock *> Extrablocks, |
| 1226 | ArrayRef<const MCSchedClassDesc *> ExtraInstrs, |
| 1227 | ArrayRef<const MCSchedClassDesc *> RemoveInstrs) const { |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 1228 | // Add up resources above and below the center block. |
| 1229 | ArrayRef<unsigned> PRDepths = TE.getProcResourceDepths(getBlockNum()); |
| 1230 | ArrayRef<unsigned> PRHeights = TE.getProcResourceHeights(getBlockNum()); |
| 1231 | unsigned PRMax = 0; |
Gerolf Hoflehner | b0b7088 | 2014-08-03 21:35:39 +0000 | [diff] [blame] | 1232 | |
| 1233 | // Capture computing cycles from extra instructions |
| 1234 | auto extraCycles = [this](ArrayRef<const MCSchedClassDesc *> Instrs, |
| 1235 | unsigned ResourceIdx) |
| 1236 | ->unsigned { |
| 1237 | unsigned Cycles = 0; |
Sanjay Patel | 98d447c | 2015-07-06 16:19:14 +0000 | [diff] [blame] | 1238 | for (const MCSchedClassDesc *SC : Instrs) { |
Gerolf Hoflehner | b0b7088 | 2014-08-03 21:35:39 +0000 | [diff] [blame] | 1239 | if (!SC->isValid()) |
| 1240 | continue; |
| 1241 | for (TargetSchedModel::ProcResIter |
| 1242 | PI = TE.MTM.SchedModel.getWriteProcResBegin(SC), |
| 1243 | PE = TE.MTM.SchedModel.getWriteProcResEnd(SC); |
| 1244 | PI != PE; ++PI) { |
| 1245 | if (PI->ProcResourceIdx != ResourceIdx) |
| 1246 | continue; |
| 1247 | Cycles += |
| 1248 | (PI->Cycles * TE.MTM.SchedModel.getResourceFactor(ResourceIdx)); |
| 1249 | } |
| 1250 | } |
| 1251 | return Cycles; |
| 1252 | }; |
| 1253 | |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 1254 | for (unsigned K = 0; K != PRDepths.size(); ++K) { |
| 1255 | unsigned PRCycles = PRDepths[K] + PRHeights[K]; |
Sanjay Patel | 98d447c | 2015-07-06 16:19:14 +0000 | [diff] [blame] | 1256 | for (const MachineBasicBlock *MBB : Extrablocks) |
| 1257 | PRCycles += TE.MTM.getProcResourceCycles(MBB->getNumber())[K]; |
Gerolf Hoflehner | b0b7088 | 2014-08-03 21:35:39 +0000 | [diff] [blame] | 1258 | PRCycles += extraCycles(ExtraInstrs, K); |
| 1259 | PRCycles -= extraCycles(RemoveInstrs, K); |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 1260 | PRMax = std::max(PRMax, PRCycles); |
| 1261 | } |
| 1262 | // Convert to cycle count. |
| 1263 | PRMax = TE.MTM.getCycles(PRMax); |
| 1264 | |
Gerolf Hoflehner | b0b7088 | 2014-08-03 21:35:39 +0000 | [diff] [blame] | 1265 | // Instrs: #instructions in current trace outside current block. |
Jakob Stoklund Olesen | 5413b68 | 2012-08-10 22:27:27 +0000 | [diff] [blame] | 1266 | unsigned Instrs = TBI.InstrDepth + TBI.InstrHeight; |
Gerolf Hoflehner | b0b7088 | 2014-08-03 21:35:39 +0000 | [diff] [blame] | 1267 | // Add instruction count from the extra blocks. |
Sanjay Patel | 98d447c | 2015-07-06 16:19:14 +0000 | [diff] [blame] | 1268 | for (const MachineBasicBlock *MBB : Extrablocks) |
| 1269 | Instrs += TE.MTM.getResources(MBB)->InstrCount; |
Gerolf Hoflehner | b0b7088 | 2014-08-03 21:35:39 +0000 | [diff] [blame] | 1270 | Instrs += ExtraInstrs.size(); |
| 1271 | Instrs -= RemoveInstrs.size(); |
Jakob Stoklund Olesen | f43fe1d | 2012-10-04 17:30:40 +0000 | [diff] [blame] | 1272 | if (unsigned IW = TE.MTM.SchedModel.getIssueWidth()) |
| 1273 | Instrs /= IW; |
Jakob Stoklund Olesen | 5413b68 | 2012-08-10 22:27:27 +0000 | [diff] [blame] | 1274 | // Assume issue width 1 without a schedule model. |
Jakob Stoklund Olesen | 8396e13 | 2013-04-02 17:49:51 +0000 | [diff] [blame] | 1275 | return std::max(Instrs, PRMax); |
Jakob Stoklund Olesen | 5413b68 | 2012-08-10 22:27:27 +0000 | [diff] [blame] | 1276 | } |
| 1277 | |
Duncan P. N. Exon Smith | 65b18dd | 2016-02-22 03:33:28 +0000 | [diff] [blame] | 1278 | bool MachineTraceMetrics::Trace::isDepInTrace(const MachineInstr &DefMI, |
| 1279 | const MachineInstr &UseMI) const { |
| 1280 | if (DefMI.getParent() == UseMI.getParent()) |
Gerolf Hoflehner | b0b7088 | 2014-08-03 21:35:39 +0000 | [diff] [blame] | 1281 | return true; |
| 1282 | |
Duncan P. N. Exon Smith | 65b18dd | 2016-02-22 03:33:28 +0000 | [diff] [blame] | 1283 | const TraceBlockInfo &DepTBI = TE.BlockInfo[DefMI.getParent()->getNumber()]; |
| 1284 | const TraceBlockInfo &TBI = TE.BlockInfo[UseMI.getParent()->getNumber()]; |
Gerolf Hoflehner | b0b7088 | 2014-08-03 21:35:39 +0000 | [diff] [blame] | 1285 | |
| 1286 | return DepTBI.isUsefulDominator(TBI); |
| 1287 | } |
| 1288 | |
Jakob Stoklund Olesen | 08f6ef6 | 2012-07-27 23:58:38 +0000 | [diff] [blame] | 1289 | void MachineTraceMetrics::Ensemble::print(raw_ostream &OS) const { |
| 1290 | OS << getName() << " ensemble:\n"; |
| 1291 | for (unsigned i = 0, e = BlockInfo.size(); i != e; ++i) { |
Francis Visoiu Mistrih | ca0df55 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 1292 | OS << " %bb." << i << '\t'; |
Jakob Stoklund Olesen | 08f6ef6 | 2012-07-27 23:58:38 +0000 | [diff] [blame] | 1293 | BlockInfo[i].print(OS); |
| 1294 | OS << '\n'; |
| 1295 | } |
| 1296 | } |
| 1297 | |
| 1298 | void MachineTraceMetrics::TraceBlockInfo::print(raw_ostream &OS) const { |
| 1299 | if (hasValidDepth()) { |
| 1300 | OS << "depth=" << InstrDepth; |
| 1301 | if (Pred) |
Francis Visoiu Mistrih | ca0df55 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 1302 | OS << " pred=" << printMBBReference(*Pred); |
Jakob Stoklund Olesen | 08f6ef6 | 2012-07-27 23:58:38 +0000 | [diff] [blame] | 1303 | else |
| 1304 | OS << " pred=null"; |
Francis Visoiu Mistrih | ca0df55 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 1305 | OS << " head=%bb." << Head; |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 1306 | if (HasValidInstrDepths) |
| 1307 | OS << " +instrs"; |
Jakob Stoklund Olesen | 08f6ef6 | 2012-07-27 23:58:38 +0000 | [diff] [blame] | 1308 | } else |
| 1309 | OS << "depth invalid"; |
| 1310 | OS << ", "; |
| 1311 | if (hasValidHeight()) { |
| 1312 | OS << "height=" << InstrHeight; |
| 1313 | if (Succ) |
Francis Visoiu Mistrih | ca0df55 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 1314 | OS << " succ=" << printMBBReference(*Succ); |
Jakob Stoklund Olesen | 08f6ef6 | 2012-07-27 23:58:38 +0000 | [diff] [blame] | 1315 | else |
| 1316 | OS << " succ=null"; |
Francis Visoiu Mistrih | ca0df55 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 1317 | OS << " tail=%bb." << Tail; |
Jakob Stoklund Olesen | 5f8e8bd | 2012-07-31 20:44:38 +0000 | [diff] [blame] | 1318 | if (HasValidInstrHeights) |
| 1319 | OS << " +instrs"; |
Jakob Stoklund Olesen | 08f6ef6 | 2012-07-27 23:58:38 +0000 | [diff] [blame] | 1320 | } else |
| 1321 | OS << "height invalid"; |
Jakob Stoklund Olesen | 79a20ce | 2012-08-02 18:45:54 +0000 | [diff] [blame] | 1322 | if (HasValidInstrDepths && HasValidInstrHeights) |
| 1323 | OS << ", crit=" << CriticalPath; |
Jakob Stoklund Olesen | 08f6ef6 | 2012-07-27 23:58:38 +0000 | [diff] [blame] | 1324 | } |
| 1325 | |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 1326 | void MachineTraceMetrics::Trace::print(raw_ostream &OS) const { |
Jakob Stoklund Olesen | 0271a5f | 2012-07-27 23:58:36 +0000 | [diff] [blame] | 1327 | unsigned MBBNum = &TBI - &TE.BlockInfo[0]; |
| 1328 | |
Francis Visoiu Mistrih | ca0df55 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 1329 | OS << TE.getName() << " trace %bb." << TBI.Head << " --> %bb." << MBBNum |
| 1330 | << " --> %bb." << TBI.Tail << ':'; |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 1331 | if (TBI.hasValidHeight() && TBI.hasValidDepth()) |
| 1332 | OS << ' ' << getInstrCount() << " instrs."; |
Jakob Stoklund Olesen | 79a20ce | 2012-08-02 18:45:54 +0000 | [diff] [blame] | 1333 | if (TBI.HasValidInstrDepths && TBI.HasValidInstrHeights) |
| 1334 | OS << ' ' << TBI.CriticalPath << " cycles."; |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 1335 | |
| 1336 | const MachineTraceMetrics::TraceBlockInfo *Block = &TBI; |
Francis Visoiu Mistrih | ca0df55 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 1337 | OS << "\n%bb." << MBBNum; |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 1338 | while (Block->hasValidDepth() && Block->Pred) { |
| 1339 | unsigned Num = Block->Pred->getNumber(); |
Francis Visoiu Mistrih | ca0df55 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 1340 | OS << " <- " << printMBBReference(*Block->Pred); |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 1341 | Block = &TE.BlockInfo[Num]; |
| 1342 | } |
| 1343 | |
| 1344 | Block = &TBI; |
Jakob Stoklund Olesen | 0271a5f | 2012-07-27 23:58:36 +0000 | [diff] [blame] | 1345 | OS << "\n "; |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 1346 | while (Block->hasValidHeight() && Block->Succ) { |
| 1347 | unsigned Num = Block->Succ->getNumber(); |
Francis Visoiu Mistrih | ca0df55 | 2017-12-04 17:18:51 +0000 | [diff] [blame] | 1348 | OS << " -> " << printMBBReference(*Block->Succ); |
Jakob Stoklund Olesen | 9f63e10 | 2012-07-26 18:38:11 +0000 | [diff] [blame] | 1349 | Block = &TE.BlockInfo[Num]; |
| 1350 | } |
| 1351 | OS << '\n'; |
| 1352 | } |