blob: efdffe83d86024768fa05de79697714ee6faedb1 [file] [log] [blame]
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +00001//===---- MachineCombiner.cpp - Instcombining on SSA form machine code ----===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// The machine combiner pass uses machine trace metrics to ensure the combined
Eric Christopher17ce8a22017-03-15 21:50:46 +000011// instructions do not lengthen the critical path or the resource depth.
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +000012//===----------------------------------------------------------------------===//
Hans Wennborg083ca9b2015-10-06 23:24:35 +000013
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +000014#include "llvm/ADT/DenseMap.h"
Mehdi Aminib550cb12016-04-18 09:17:29 +000015#include "llvm/ADT/Statistic.h"
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +000016#include "llvm/CodeGen/MachineDominators.h"
17#include "llvm/CodeGen/MachineFunction.h"
18#include "llvm/CodeGen/MachineFunctionPass.h"
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +000019#include "llvm/CodeGen/MachineLoopInfo.h"
20#include "llvm/CodeGen/MachineRegisterInfo.h"
21#include "llvm/CodeGen/MachineTraceMetrics.h"
22#include "llvm/CodeGen/Passes.h"
David Blaikie3f833ed2017-11-08 01:01:31 +000023#include "llvm/CodeGen/TargetInstrInfo.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000024#include "llvm/CodeGen/TargetRegisterInfo.h"
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +000025#include "llvm/CodeGen/TargetSchedule.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000026#include "llvm/CodeGen/TargetSubtargetInfo.h"
Florian Hahnceb44942017-09-20 11:54:37 +000027#include "llvm/Support/CommandLine.h"
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +000028#include "llvm/Support/Debug.h"
29#include "llvm/Support/raw_ostream.h"
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +000030
31using namespace llvm;
32
Jakub Kuderski1d2dc682017-07-13 19:30:52 +000033#define DEBUG_TYPE "machine-combiner"
34
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +000035STATISTIC(NumInstCombined, "Number of machineinst combined");
36
Florian Hahnceb44942017-09-20 11:54:37 +000037static cl::opt<unsigned>
38inc_threshold("machine-combiner-inc-threshold", cl::Hidden,
39 cl::desc("Incremental depth computation will be used for basic "
40 "blocks with more instructions."), cl::init(500));
41
Andrew V. Tischenkob65b0782018-02-15 07:55:02 +000042static cl::opt<bool> dump_intrs("machine-combiner-dump-subst-intrs", cl::Hidden,
43 cl::desc("Dump all substituted intrs"),
44 cl::init(false));
45
Florian Hahnc68428b2018-01-31 13:54:30 +000046#ifdef EXPENSIVE_CHECKS
47static cl::opt<bool> VerifyPatternOrder(
48 "machine-combiner-verify-pattern-order", cl::Hidden,
49 cl::desc(
50 "Verify that the generated patterns are ordered by increasing latency"),
51 cl::init(true));
52#else
53static cl::opt<bool> VerifyPatternOrder(
54 "machine-combiner-verify-pattern-order", cl::Hidden,
55 cl::desc(
56 "Verify that the generated patterns are ordered by increasing latency"),
57 cl::init(false));
58#endif
59
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +000060namespace {
61class MachineCombiner : public MachineFunctionPass {
Andrew V. Tischenkob65b0782018-02-15 07:55:02 +000062 const TargetSubtargetInfo *STI;
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +000063 const TargetInstrInfo *TII;
64 const TargetRegisterInfo *TRI;
Pete Cooper11759452014-09-02 17:43:54 +000065 MCSchedModel SchedModel;
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +000066 MachineRegisterInfo *MRI;
Gerolf Hoflehner01b3a6182016-04-24 05:14:01 +000067 MachineLoopInfo *MLI; // Current MachineLoopInfo
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +000068 MachineTraceMetrics *Traces;
69 MachineTraceMetrics::Ensemble *MinInstr;
70
71 TargetSchedModel TSchedModel;
72
Sanjay Patelb1ca4e42015-01-27 22:26:56 +000073 /// True if optimizing for code size.
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +000074 bool OptSize;
75
76public:
77 static char ID;
78 MachineCombiner() : MachineFunctionPass(ID) {
79 initializeMachineCombinerPass(*PassRegistry::getPassRegistry());
80 }
81 void getAnalysisUsage(AnalysisUsage &AU) const override;
82 bool runOnMachineFunction(MachineFunction &MF) override;
Mehdi Amini117296c2016-10-01 02:56:57 +000083 StringRef getPassName() const override { return "Machine InstCombiner"; }
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +000084
85private:
86 bool doSubstitute(unsigned NewSize, unsigned OldSize);
87 bool combineInstructions(MachineBasicBlock *);
88 MachineInstr *getOperandDef(const MachineOperand &MO);
89 unsigned getDepth(SmallVectorImpl<MachineInstr *> &InsInstrs,
90 DenseMap<unsigned, unsigned> &InstrIdxForVirtReg,
91 MachineTraceMetrics::Trace BlockTrace);
92 unsigned getLatency(MachineInstr *Root, MachineInstr *NewRoot,
93 MachineTraceMetrics::Trace BlockTrace);
94 bool
Sanjay Patele79b43a2015-06-23 00:39:40 +000095 improvesCriticalPathLen(MachineBasicBlock *MBB, MachineInstr *Root,
Sanjay Patel766589e2015-11-10 16:48:53 +000096 MachineTraceMetrics::Trace BlockTrace,
97 SmallVectorImpl<MachineInstr *> &InsInstrs,
Sebastian Pope08d9c72016-12-11 19:39:32 +000098 SmallVectorImpl<MachineInstr *> &DelInstrs,
Sanjay Patel766589e2015-11-10 16:48:53 +000099 DenseMap<unsigned, unsigned> &InstrIdxForVirtReg,
Florian Hahnceb44942017-09-20 11:54:37 +0000100 MachineCombinerPattern Pattern, bool SlackIsAccurate);
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000101 bool preservesResourceLen(MachineBasicBlock *MBB,
102 MachineTraceMetrics::Trace BlockTrace,
103 SmallVectorImpl<MachineInstr *> &InsInstrs,
104 SmallVectorImpl<MachineInstr *> &DelInstrs);
105 void instr2instrSC(SmallVectorImpl<MachineInstr *> &Instrs,
106 SmallVectorImpl<const MCSchedClassDesc *> &InstrsSC);
Florian Hahnc68428b2018-01-31 13:54:30 +0000107 std::pair<unsigned, unsigned>
108 getLatenciesForInstrSequences(MachineInstr &MI,
109 SmallVectorImpl<MachineInstr *> &InsInstrs,
110 SmallVectorImpl<MachineInstr *> &DelInstrs,
111 MachineTraceMetrics::Trace BlockTrace);
112
113 void verifyPatternOrder(MachineBasicBlock *MBB, MachineInstr &Root,
114 SmallVector<MachineCombinerPattern, 16> &Patterns);
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000115};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000116}
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000117
118char MachineCombiner::ID = 0;
119char &llvm::MachineCombinerID = MachineCombiner::ID;
120
Matthias Braun1527baa2017-05-25 21:26:32 +0000121INITIALIZE_PASS_BEGIN(MachineCombiner, DEBUG_TYPE,
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000122 "Machine InstCombiner", false, false)
Gerolf Hoflehner01b3a6182016-04-24 05:14:01 +0000123INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo)
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000124INITIALIZE_PASS_DEPENDENCY(MachineTraceMetrics)
Matthias Braun1527baa2017-05-25 21:26:32 +0000125INITIALIZE_PASS_END(MachineCombiner, DEBUG_TYPE, "Machine InstCombiner",
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000126 false, false)
127
128void MachineCombiner::getAnalysisUsage(AnalysisUsage &AU) const {
129 AU.setPreservesCFG();
130 AU.addPreserved<MachineDominatorTree>();
Gerolf Hoflehner01b3a6182016-04-24 05:14:01 +0000131 AU.addRequired<MachineLoopInfo>();
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000132 AU.addPreserved<MachineLoopInfo>();
133 AU.addRequired<MachineTraceMetrics>();
134 AU.addPreserved<MachineTraceMetrics>();
135 MachineFunctionPass::getAnalysisUsage(AU);
136}
137
138MachineInstr *MachineCombiner::getOperandDef(const MachineOperand &MO) {
139 MachineInstr *DefInstr = nullptr;
140 // We need a virtual register definition.
141 if (MO.isReg() && TargetRegisterInfo::isVirtualRegister(MO.getReg()))
142 DefInstr = MRI->getUniqueVRegDef(MO.getReg());
143 // PHI's have no depth etc.
144 if (DefInstr && DefInstr->isPHI())
145 DefInstr = nullptr;
146 return DefInstr;
147}
148
Sanjay Patelb1ca4e42015-01-27 22:26:56 +0000149/// Computes depth of instructions in vector \InsInstr.
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000150///
151/// \param InsInstrs is a vector of machine instructions
152/// \param InstrIdxForVirtReg is a dense map of virtual register to index
153/// of defining machine instruction in \p InsInstrs
154/// \param BlockTrace is a trace of machine instructions
155///
156/// \returns Depth of last instruction in \InsInstrs ("NewRoot")
157unsigned
158MachineCombiner::getDepth(SmallVectorImpl<MachineInstr *> &InsInstrs,
159 DenseMap<unsigned, unsigned> &InstrIdxForVirtReg,
160 MachineTraceMetrics::Trace BlockTrace) {
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000161 SmallVector<unsigned, 16> InstrDepth;
Hal Finkele0fa8f22015-07-15 08:22:23 +0000162 assert(TSchedModel.hasInstrSchedModelOrItineraries() &&
163 "Missing machine model\n");
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000164
Sanjay Patel6b280772015-01-27 22:16:52 +0000165 // For each instruction in the new sequence compute the depth based on the
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000166 // operands. Use the trace information when possible. For new operands which
167 // are tracked in the InstrIdxForVirtReg map depth is looked up in InstrDepth
168 for (auto *InstrPtr : InsInstrs) { // for each Use
169 unsigned IDepth = 0;
Sanjay Patelf69f4e42015-05-21 17:43:26 +0000170 for (const MachineOperand &MO : InstrPtr->operands()) {
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000171 // Check for virtual register operand.
172 if (!(MO.isReg() && TargetRegisterInfo::isVirtualRegister(MO.getReg())))
173 continue;
174 if (!MO.isUse())
175 continue;
176 unsigned DepthOp = 0;
177 unsigned LatencyOp = 0;
178 DenseMap<unsigned, unsigned>::iterator II =
179 InstrIdxForVirtReg.find(MO.getReg());
180 if (II != InstrIdxForVirtReg.end()) {
181 // Operand is new virtual register not in trace
Saleem Abdulrasoolbefa2152014-08-03 23:00:38 +0000182 assert(II->second < InstrDepth.size() && "Bad Index");
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000183 MachineInstr *DefInstr = InsInstrs[II->second];
184 assert(DefInstr &&
185 "There must be a definition for a new virtual register");
186 DepthOp = InstrDepth[II->second];
Simon Pilgrim194693e2017-10-30 17:24:40 +0000187 int DefIdx = DefInstr->findRegisterDefOperandIdx(MO.getReg());
188 int UseIdx = InstrPtr->findRegisterUseOperandIdx(MO.getReg());
189 LatencyOp = TSchedModel.computeOperandLatency(DefInstr, DefIdx,
190 InstrPtr, UseIdx);
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000191 } else {
192 MachineInstr *DefInstr = getOperandDef(MO);
193 if (DefInstr) {
Duncan P. N. Exon Smithe59c8af2016-02-22 03:33:28 +0000194 DepthOp = BlockTrace.getInstrCycles(*DefInstr).Depth;
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000195 LatencyOp = TSchedModel.computeOperandLatency(
196 DefInstr, DefInstr->findRegisterDefOperandIdx(MO.getReg()),
197 InstrPtr, InstrPtr->findRegisterUseOperandIdx(MO.getReg()));
198 }
199 }
200 IDepth = std::max(IDepth, DepthOp + LatencyOp);
201 }
202 InstrDepth.push_back(IDepth);
203 }
204 unsigned NewRootIdx = InsInstrs.size() - 1;
205 return InstrDepth[NewRootIdx];
206}
207
Sanjay Patelb1ca4e42015-01-27 22:26:56 +0000208/// Computes instruction latency as max of latency of defined operands.
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000209///
210/// \param Root is a machine instruction that could be replaced by NewRoot.
211/// It is used to compute a more accurate latency information for NewRoot in
212/// case there is a dependent instruction in the same trace (\p BlockTrace)
213/// \param NewRoot is the instruction for which the latency is computed
214/// \param BlockTrace is a trace of machine instructions
215///
216/// \returns Latency of \p NewRoot
217unsigned MachineCombiner::getLatency(MachineInstr *Root, MachineInstr *NewRoot,
218 MachineTraceMetrics::Trace BlockTrace) {
Hal Finkele0fa8f22015-07-15 08:22:23 +0000219 assert(TSchedModel.hasInstrSchedModelOrItineraries() &&
220 "Missing machine model\n");
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000221
222 // Check each definition in NewRoot and compute the latency
223 unsigned NewRootLatency = 0;
224
Sanjay Patelf69f4e42015-05-21 17:43:26 +0000225 for (const MachineOperand &MO : NewRoot->operands()) {
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000226 // Check for virtual register operand.
227 if (!(MO.isReg() && TargetRegisterInfo::isVirtualRegister(MO.getReg())))
228 continue;
229 if (!MO.isDef())
230 continue;
231 // Get the first instruction that uses MO
232 MachineRegisterInfo::reg_iterator RI = MRI->reg_begin(MO.getReg());
233 RI++;
234 MachineInstr *UseMO = RI->getParent();
235 unsigned LatencyOp = 0;
Duncan P. N. Exon Smithe59c8af2016-02-22 03:33:28 +0000236 if (UseMO && BlockTrace.isDepInTrace(*Root, *UseMO)) {
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000237 LatencyOp = TSchedModel.computeOperandLatency(
238 NewRoot, NewRoot->findRegisterDefOperandIdx(MO.getReg()), UseMO,
239 UseMO->findRegisterUseOperandIdx(MO.getReg()));
240 } else {
Hal Finkel17caf322015-08-05 07:45:28 +0000241 LatencyOp = TSchedModel.computeInstrLatency(NewRoot);
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000242 }
243 NewRootLatency = std::max(NewRootLatency, LatencyOp);
244 }
245 return NewRootLatency;
246}
247
Sanjay Patel766589e2015-11-10 16:48:53 +0000248/// The combiner's goal may differ based on which pattern it is attempting
249/// to optimize.
250enum class CombinerObjective {
251 MustReduceDepth, // The data dependency chain must be improved.
252 Default // The critical path must not be lengthened.
253};
254
255static CombinerObjective getCombinerObjective(MachineCombinerPattern P) {
256 // TODO: If C++ ever gets a real enum class, make this part of the
257 // MachineCombinerPattern class.
258 switch (P) {
259 case MachineCombinerPattern::REASSOC_AX_BY:
260 case MachineCombinerPattern::REASSOC_AX_YB:
261 case MachineCombinerPattern::REASSOC_XA_BY:
262 case MachineCombinerPattern::REASSOC_XA_YB:
263 return CombinerObjective::MustReduceDepth;
264 default:
265 return CombinerObjective::Default;
266 }
267}
268
Florian Hahnc68428b2018-01-31 13:54:30 +0000269/// Estimate the latency of the new and original instruction sequence by summing
270/// up the latencies of the inserted and deleted instructions. This assumes
271/// that the inserted and deleted instructions are dependent instruction chains,
272/// which might not hold in all cases.
273std::pair<unsigned, unsigned> MachineCombiner::getLatenciesForInstrSequences(
274 MachineInstr &MI, SmallVectorImpl<MachineInstr *> &InsInstrs,
275 SmallVectorImpl<MachineInstr *> &DelInstrs,
276 MachineTraceMetrics::Trace BlockTrace) {
277 assert(!InsInstrs.empty() && "Only support sequences that insert instrs.");
278 unsigned NewRootLatency = 0;
279 // NewRoot is the last instruction in the \p InsInstrs vector.
280 MachineInstr *NewRoot = InsInstrs.back();
281 for (unsigned i = 0; i < InsInstrs.size() - 1; i++)
282 NewRootLatency += TSchedModel.computeInstrLatency(InsInstrs[i]);
283 NewRootLatency += getLatency(&MI, NewRoot, BlockTrace);
284
285 unsigned RootLatency = 0;
286 for (auto I : DelInstrs)
287 RootLatency += TSchedModel.computeInstrLatency(I);
288
289 return {NewRootLatency, RootLatency};
290}
291
Sanjay Patele79b43a2015-06-23 00:39:40 +0000292/// The DAGCombine code sequence ends in MI (Machine Instruction) Root.
293/// The new code sequence ends in MI NewRoot. A necessary condition for the new
294/// sequence to replace the old sequence is that it cannot lengthen the critical
Sanjay Patel766589e2015-11-10 16:48:53 +0000295/// path. The definition of "improve" may be restricted by specifying that the
296/// new path improves the data dependency chain (MustReduceDepth).
Sanjay Patele79b43a2015-06-23 00:39:40 +0000297bool MachineCombiner::improvesCriticalPathLen(
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000298 MachineBasicBlock *MBB, MachineInstr *Root,
299 MachineTraceMetrics::Trace BlockTrace,
300 SmallVectorImpl<MachineInstr *> &InsInstrs,
Sebastian Pope08d9c72016-12-11 19:39:32 +0000301 SmallVectorImpl<MachineInstr *> &DelInstrs,
Sanjay Patele79b43a2015-06-23 00:39:40 +0000302 DenseMap<unsigned, unsigned> &InstrIdxForVirtReg,
Florian Hahnceb44942017-09-20 11:54:37 +0000303 MachineCombinerPattern Pattern,
304 bool SlackIsAccurate) {
Hal Finkele0fa8f22015-07-15 08:22:23 +0000305 assert(TSchedModel.hasInstrSchedModelOrItineraries() &&
306 "Missing machine model\n");
Sanjay Patel766589e2015-11-10 16:48:53 +0000307 // Get depth and latency of NewRoot and Root.
308 unsigned NewRootDepth = getDepth(InsInstrs, InstrIdxForVirtReg, BlockTrace);
Duncan P. N. Exon Smithe59c8af2016-02-22 03:33:28 +0000309 unsigned RootDepth = BlockTrace.getInstrCycles(*Root).Depth;
Sanjay Patel766589e2015-11-10 16:48:53 +0000310
Andrew V. Tischenkob65b0782018-02-15 07:55:02 +0000311 DEBUG(dbgs() << " Dependence data for " << *Root << "\tNewRootDepth: "
312 << NewRootDepth << "\tRootDepth: " << RootDepth);
Sanjay Patel766589e2015-11-10 16:48:53 +0000313
314 // For a transform such as reassociation, the cost equation is
315 // conservatively calculated so that we must improve the depth (data
316 // dependency cycles) in the critical path to proceed with the transform.
317 // Being conservative also protects against inaccuracies in the underlying
318 // machine trace metrics and CPU models.
Andrew V. Tischenkob65b0782018-02-15 07:55:02 +0000319 if (getCombinerObjective(Pattern) == CombinerObjective::MustReduceDepth) {
320 DEBUG(dbgs() << "\tIt MustReduceDepth ");
321 DEBUG(NewRootDepth < RootDepth ? dbgs() << "\t and it does it\n"
322 : dbgs() << "\t but it does NOT do it\n");
Sanjay Patel766589e2015-11-10 16:48:53 +0000323 return NewRootDepth < RootDepth;
Andrew V. Tischenkob65b0782018-02-15 07:55:02 +0000324 }
Sanjay Patel766589e2015-11-10 16:48:53 +0000325
326 // A more flexible cost calculation for the critical path includes the slack
327 // of the original code sequence. This may allow the transform to proceed
328 // even if the instruction depths (data dependency cycles) become worse.
Sebastian Pope08d9c72016-12-11 19:39:32 +0000329
Florian Hahn001c3dd2017-12-06 20:27:33 +0000330 // Account for the latency of the inserted and deleted instructions by
Florian Hahnc68428b2018-01-31 13:54:30 +0000331 unsigned NewRootLatency, RootLatency;
332 std::tie(NewRootLatency, RootLatency) =
333 getLatenciesForInstrSequences(*Root, InsInstrs, DelInstrs, BlockTrace);
Sebastian Pope08d9c72016-12-11 19:39:32 +0000334
Duncan P. N. Exon Smithe59c8af2016-02-22 03:33:28 +0000335 unsigned RootSlack = BlockTrace.getInstrSlack(*Root);
Florian Hahnceb44942017-09-20 11:54:37 +0000336 unsigned NewCycleCount = NewRootDepth + NewRootLatency;
Andrew V. Tischenkob65b0782018-02-15 07:55:02 +0000337 unsigned OldCycleCount =
338 RootDepth + RootLatency + (SlackIsAccurate ? RootSlack : 0);
339 DEBUG(dbgs() << "\n\tNewRootLatency: " << NewRootLatency << "\tRootLatency: "
340 << RootLatency << "\n\tRootSlack: " << RootSlack
341 << " SlackIsAccurate=" << SlackIsAccurate
342 << "\n\tNewRootDepth + NewRootLatency = " << NewCycleCount
343 << "\n\tRootDepth + RootLatency + RootSlack = "
344 << OldCycleCount;);
345 DEBUG(NewCycleCount <= OldCycleCount
346 ? dbgs() << "\n\t It IMPROVES PathLen because"
347 : dbgs() << "\n\t It DOES NOT improve PathLen because");
348 DEBUG(dbgs() << "\n\t\tNewCycleCount = " << NewCycleCount
349 << ", OldCycleCount = " << OldCycleCount << "\n");
Junmo Park272a2bc2016-02-27 01:10:43 +0000350
Sanjay Patel766589e2015-11-10 16:48:53 +0000351 return NewCycleCount <= OldCycleCount;
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000352}
353
354/// helper routine to convert instructions into SC
355void MachineCombiner::instr2instrSC(
356 SmallVectorImpl<MachineInstr *> &Instrs,
357 SmallVectorImpl<const MCSchedClassDesc *> &InstrsSC) {
358 for (auto *InstrPtr : Instrs) {
359 unsigned Opc = InstrPtr->getOpcode();
360 unsigned Idx = TII->get(Opc).getSchedClass();
Pete Cooper11759452014-09-02 17:43:54 +0000361 const MCSchedClassDesc *SC = SchedModel.getSchedClassDesc(Idx);
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000362 InstrsSC.push_back(SC);
363 }
364}
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000365
Sanjay Patelb1ca4e42015-01-27 22:26:56 +0000366/// True when the new instructions do not increase resource length
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000367bool MachineCombiner::preservesResourceLen(
368 MachineBasicBlock *MBB, MachineTraceMetrics::Trace BlockTrace,
369 SmallVectorImpl<MachineInstr *> &InsInstrs,
370 SmallVectorImpl<MachineInstr *> &DelInstrs) {
Hal Finkele0fa8f22015-07-15 08:22:23 +0000371 if (!TSchedModel.hasInstrSchedModel())
372 return true;
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000373
374 // Compute current resource length
375
Gerolf Hoflehner97c383b2014-08-07 21:40:58 +0000376 //ArrayRef<const MachineBasicBlock *> MBBarr(MBB);
377 SmallVector <const MachineBasicBlock *, 1> MBBarr;
378 MBBarr.push_back(MBB);
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000379 unsigned ResLenBeforeCombine = BlockTrace.getResourceLength(MBBarr);
380
381 // Deal with SC rather than Instructions.
382 SmallVector<const MCSchedClassDesc *, 16> InsInstrsSC;
383 SmallVector<const MCSchedClassDesc *, 16> DelInstrsSC;
384
385 instr2instrSC(InsInstrs, InsInstrsSC);
386 instr2instrSC(DelInstrs, DelInstrsSC);
387
388 ArrayRef<const MCSchedClassDesc *> MSCInsArr = makeArrayRef(InsInstrsSC);
389 ArrayRef<const MCSchedClassDesc *> MSCDelArr = makeArrayRef(DelInstrsSC);
390
Sanjay Patelccb8d5c2015-06-10 19:52:58 +0000391 // Compute new resource length.
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000392 unsigned ResLenAfterCombine =
393 BlockTrace.getResourceLength(MBBarr, MSCInsArr, MSCDelArr);
394
Andrew V. Tischenkob65b0782018-02-15 07:55:02 +0000395 DEBUG(dbgs() << "\t\tResource length before replacement: "
396 << ResLenBeforeCombine << " and after: " << ResLenAfterCombine
397 << "\n";);
398 DEBUG(
399 ResLenAfterCombine <= ResLenBeforeCombine
400 ? dbgs() << "\t\t As result it IMPROVES/PRESERVES Resource Length\n"
401 : dbgs() << "\t\t As result it DOES NOT improve/preserve Resource "
402 "Length\n");
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000403
404 return ResLenAfterCombine <= ResLenBeforeCombine;
405}
406
407/// \returns true when new instruction sequence should be generated
Sanjay Patel6b280772015-01-27 22:16:52 +0000408/// independent if it lengthens critical path or not
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000409bool MachineCombiner::doSubstitute(unsigned NewSize, unsigned OldSize) {
410 if (OptSize && (NewSize < OldSize))
411 return true;
Hal Finkele0fa8f22015-07-15 08:22:23 +0000412 if (!TSchedModel.hasInstrSchedModelOrItineraries())
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000413 return true;
414 return false;
415}
416
Florian Hahnceb44942017-09-20 11:54:37 +0000417/// Inserts InsInstrs and deletes DelInstrs. Incrementally updates instruction
418/// depths if requested.
419///
420/// \param MBB basic block to insert instructions in
421/// \param MI current machine instruction
422/// \param InsInstrs new instructions to insert in \p MBB
423/// \param DelInstrs instruction to delete from \p MBB
424/// \param MinInstr is a pointer to the machine trace information
425/// \param RegUnits set of live registers, needed to compute instruction depths
426/// \param IncrementalUpdate if true, compute instruction depths incrementally,
427/// otherwise invalidate the trace
Andrew V. Tischenko8da96912017-02-13 09:43:37 +0000428static void insertDeleteInstructions(MachineBasicBlock *MBB, MachineInstr &MI,
429 SmallVector<MachineInstr *, 16> InsInstrs,
430 SmallVector<MachineInstr *, 16> DelInstrs,
Florian Hahnceb44942017-09-20 11:54:37 +0000431 MachineTraceMetrics::Ensemble *MinInstr,
432 SparseSet<LiveRegUnit> &RegUnits,
433 bool IncrementalUpdate) {
Andrew V. Tischenko8da96912017-02-13 09:43:37 +0000434 for (auto *InstrPtr : InsInstrs)
435 MBB->insert((MachineBasicBlock::iterator)&MI, InstrPtr);
Florian Hahnceb44942017-09-20 11:54:37 +0000436
437 for (auto *InstrPtr : DelInstrs) {
Andrew V. Tischenko8da96912017-02-13 09:43:37 +0000438 InstrPtr->eraseFromParentAndMarkDBGValuesForRemoval();
Florian Hahnceb44942017-09-20 11:54:37 +0000439 // Erase all LiveRegs defined by the removed instruction
440 for (auto I = RegUnits.begin(); I != RegUnits.end(); ) {
441 if (I->MI == InstrPtr)
442 I = RegUnits.erase(I);
443 else
444 I++;
445 }
446 }
447
448 if (IncrementalUpdate)
449 for (auto *InstrPtr : InsInstrs)
450 MinInstr->updateDepth(MBB, *InstrPtr, RegUnits);
451 else
452 MinInstr->invalidate(MBB);
453
454 NumInstCombined++;
Andrew V. Tischenko8da96912017-02-13 09:43:37 +0000455}
456
Florian Hahnc68428b2018-01-31 13:54:30 +0000457// Check that the difference between original and new latency is decreasing for
458// later patterns. This helps to discover sub-optimal pattern orderings.
459void MachineCombiner::verifyPatternOrder(
460 MachineBasicBlock *MBB, MachineInstr &Root,
461 SmallVector<MachineCombinerPattern, 16> &Patterns) {
462 long PrevLatencyDiff = std::numeric_limits<long>::max();
Alexander Ivchenko68050042018-02-06 09:53:02 +0000463 (void)PrevLatencyDiff; // Variable is used in assert only.
Florian Hahnc68428b2018-01-31 13:54:30 +0000464 for (auto P : Patterns) {
465 SmallVector<MachineInstr *, 16> InsInstrs;
466 SmallVector<MachineInstr *, 16> DelInstrs;
467 DenseMap<unsigned, unsigned> InstrIdxForVirtReg;
468 TII->genAlternativeCodeSequence(Root, P, InsInstrs, DelInstrs,
469 InstrIdxForVirtReg);
470 // Found pattern, but did not generate alternative sequence.
471 // This can happen e.g. when an immediate could not be materialized
472 // in a single instruction.
473 if (InsInstrs.empty() || !TSchedModel.hasInstrSchedModelOrItineraries())
474 continue;
475
476 unsigned NewRootLatency, RootLatency;
477 std::tie(NewRootLatency, RootLatency) = getLatenciesForInstrSequences(
478 Root, InsInstrs, DelInstrs, MinInstr->getTrace(MBB));
479 long CurrentLatencyDiff = ((long)RootLatency) - ((long)NewRootLatency);
480 assert(CurrentLatencyDiff <= PrevLatencyDiff &&
481 "Current pattern is better than previous pattern.");
482 PrevLatencyDiff = CurrentLatencyDiff;
483 }
484}
485
Sanjay Patelb1ca4e42015-01-27 22:26:56 +0000486/// Substitute a slow code sequence with a faster one by
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000487/// evaluating instruction combining pattern.
488/// The prototype of such a pattern is MUl + ADD -> MADD. Performs instruction
489/// combining based on machine trace metrics. Only combine a sequence of
490/// instructions when this neither lengthens the critical path nor increases
491/// resource pressure. When optimizing for codesize always combine when the new
492/// sequence is shorter.
493bool MachineCombiner::combineInstructions(MachineBasicBlock *MBB) {
494 bool Changed = false;
495 DEBUG(dbgs() << "Combining MBB " << MBB->getName() << "\n");
496
Florian Hahnceb44942017-09-20 11:54:37 +0000497 bool IncrementalUpdate = false;
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000498 auto BlockIter = MBB->begin();
Florian Hahne52abba2017-10-11 20:25:58 +0000499 decltype(BlockIter) LastUpdate;
Gerolf Hoflehner01b3a6182016-04-24 05:14:01 +0000500 // Check if the block is in a loop.
501 const MachineLoop *ML = MLI->getLoopFor(MBB);
Florian Hahnceb44942017-09-20 11:54:37 +0000502 if (!MinInstr)
503 MinInstr = Traces->getEnsemble(MachineTraceMetrics::TS_MinInstrCount);
504
505 SparseSet<LiveRegUnit> RegUnits;
506 RegUnits.setUniverse(TRI->getNumRegUnits());
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000507
508 while (BlockIter != MBB->end()) {
509 auto &MI = *BlockIter++;
Sanjay Patel387e66e2015-11-05 19:34:57 +0000510 SmallVector<MachineCombinerPattern, 16> Patterns;
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000511 // The motivating example is:
512 //
513 // MUL Other MUL_op1 MUL_op2 Other
514 // \ / \ | /
515 // ADD/SUB => MADD/MSUB
516 // (=Root) (=NewRoot)
517
518 // The DAGCombine code always replaced MUL + ADD/SUB by MADD. While this is
519 // usually beneficial for code size it unfortunately can hurt performance
520 // when the ADD is on the critical path, but the MUL is not. With the
521 // substitution the MUL becomes part of the critical path (in form of the
522 // MADD) and can lengthen it on architectures where the MADD latency is
523 // longer than the ADD latency.
524 //
525 // For each instruction we check if it can be the root of a combiner
526 // pattern. Then for each pattern the new code sequence in form of MI is
527 // generated and evaluated. When the efficiency criteria (don't lengthen
528 // critical path, don't use more resources) is met the new sequence gets
529 // hooked up into the basic block before the old sequence is removed.
530 //
531 // The algorithm does not try to evaluate all patterns and pick the best.
532 // This is only an artificial restriction though. In practice there is
Sanjay Patelcfe03932015-06-19 23:21:42 +0000533 // mostly one pattern, and getMachineCombinerPatterns() can order patterns
Florian Hahnc68428b2018-01-31 13:54:30 +0000534 // based on an internal cost heuristic. If
535 // machine-combiner-verify-pattern-order is enabled, all patterns are
536 // checked to ensure later patterns do not provide better latency savings.
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000537
Sanjay Patel33ec5db2015-11-10 20:09:02 +0000538 if (!TII->getMachineCombinerPatterns(MI, Patterns))
539 continue;
540
Florian Hahnc68428b2018-01-31 13:54:30 +0000541 if (VerifyPatternOrder)
542 verifyPatternOrder(MBB, MI, Patterns);
543
Sanjay Patel33ec5db2015-11-10 20:09:02 +0000544 for (auto P : Patterns) {
545 SmallVector<MachineInstr *, 16> InsInstrs;
546 SmallVector<MachineInstr *, 16> DelInstrs;
547 DenseMap<unsigned, unsigned> InstrIdxForVirtReg;
Sanjay Patel33ec5db2015-11-10 20:09:02 +0000548 TII->genAlternativeCodeSequence(MI, P, InsInstrs, DelInstrs,
549 InstrIdxForVirtReg);
550 unsigned NewInstCount = InsInstrs.size();
551 unsigned OldInstCount = DelInstrs.size();
552 // Found pattern, but did not generate alternative sequence.
553 // This can happen e.g. when an immediate could not be materialized
554 // in a single instruction.
555 if (!NewInstCount)
556 continue;
557
Andrew V. Tischenkob65b0782018-02-15 07:55:02 +0000558 DEBUG(if (dump_intrs) {
559 dbgs() << "\tFor the Pattern (" << (int)P << ") these instructions could be removed\n";
560 for (auto const *InstrPtr : DelInstrs) {
561 dbgs() << "\t\t" << STI->getSchedInfoStr(*InstrPtr) << ": ";
562 InstrPtr->print(dbgs(), false, false, TII);
563 dbgs() << "\n";
564 }
565 dbgs() << "\tThese instructions could replace the removed ones\n";
566 for (auto const *InstrPtr : InsInstrs) {
567 dbgs() << "\t\t" << STI->getSchedInfoStr(*InstrPtr) << ": ";
568 InstrPtr->print(dbgs(), false, false, TII);
569 dbgs() << "\n";
570 }
571 });
572
Gerolf Hoflehner01b3a6182016-04-24 05:14:01 +0000573 bool SubstituteAlways = false;
574 if (ML && TII->isThroughputPattern(P))
575 SubstituteAlways = true;
576
Florian Hahnceb44942017-09-20 11:54:37 +0000577 if (IncrementalUpdate) {
578 // Update depths since the last incremental update.
579 MinInstr->updateDepths(LastUpdate, BlockIter, RegUnits);
580 LastUpdate = BlockIter;
581 }
582
Sanjay Patel33ec5db2015-11-10 20:09:02 +0000583 // Substitute when we optimize for codesize and the new sequence has
584 // fewer instructions OR
585 // the new sequence neither lengthens the critical path nor increases
586 // resource pressure.
Andrew V. Tischenko8da96912017-02-13 09:43:37 +0000587 if (SubstituteAlways || doSubstitute(NewInstCount, OldInstCount)) {
Florian Hahnceb44942017-09-20 11:54:37 +0000588 insertDeleteInstructions(MBB, MI, InsInstrs, DelInstrs, MinInstr,
589 RegUnits, IncrementalUpdate);
Sanjay Patel33ec5db2015-11-10 20:09:02 +0000590 // Eagerly stop after the first pattern fires.
Andrew V. Tischenko8da96912017-02-13 09:43:37 +0000591 Changed = true;
Sanjay Patel33ec5db2015-11-10 20:09:02 +0000592 break;
593 } else {
Florian Hahnceb44942017-09-20 11:54:37 +0000594 // For big basic blocks, we only compute the full trace the first time
595 // we hit this. We do not invalidate the trace, but instead update the
596 // instruction depths incrementally.
597 // NOTE: Only the instruction depths up to MI are accurate. All other
598 // trace information is not updated.
Andrew V. Tischenko8da96912017-02-13 09:43:37 +0000599 MachineTraceMetrics::Trace BlockTrace = MinInstr->getTrace(MBB);
Florian Hahnceb44942017-09-20 11:54:37 +0000600 Traces->verifyAnalysis();
Andrew V. Tischenko8da96912017-02-13 09:43:37 +0000601 if (improvesCriticalPathLen(MBB, &MI, BlockTrace, InsInstrs, DelInstrs,
Florian Hahnceb44942017-09-20 11:54:37 +0000602 InstrIdxForVirtReg, P,
603 !IncrementalUpdate) &&
Andrew V. Tischenko8da96912017-02-13 09:43:37 +0000604 preservesResourceLen(MBB, BlockTrace, InsInstrs, DelInstrs)) {
Florian Hahne52abba2017-10-11 20:25:58 +0000605 if (MBB->size() > inc_threshold) {
Florian Hahnceb44942017-09-20 11:54:37 +0000606 // Use incremental depth updates for basic blocks above treshold
607 IncrementalUpdate = true;
Florian Hahne52abba2017-10-11 20:25:58 +0000608 LastUpdate = BlockIter;
609 }
Florian Hahnceb44942017-09-20 11:54:37 +0000610
611 insertDeleteInstructions(MBB, MI, InsInstrs, DelInstrs, MinInstr,
612 RegUnits, IncrementalUpdate);
613
Andrew V. Tischenko8da96912017-02-13 09:43:37 +0000614 // Eagerly stop after the first pattern fires.
615 Changed = true;
616 break;
617 }
Sanjay Patel33ec5db2015-11-10 20:09:02 +0000618 // Cleanup instructions of the alternative code sequence. There is no
619 // use for them.
620 MachineFunction *MF = MBB->getParent();
621 for (auto *InstrPtr : InsInstrs)
622 MF->DeleteMachineInstr(InstrPtr);
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000623 }
Sanjay Patel33ec5db2015-11-10 20:09:02 +0000624 InstrIdxForVirtReg.clear();
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000625 }
626 }
627
Florian Hahnceb44942017-09-20 11:54:37 +0000628 if (Changed && IncrementalUpdate)
629 Traces->invalidate(MBB);
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000630 return Changed;
631}
632
633bool MachineCombiner::runOnMachineFunction(MachineFunction &MF) {
Andrew V. Tischenkob65b0782018-02-15 07:55:02 +0000634 STI = &MF.getSubtarget();
635 TII = STI->getInstrInfo();
636 TRI = STI->getRegisterInfo();
637 SchedModel = STI->getSchedModel();
638 TSchedModel.init(SchedModel, STI, TII);
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000639 MRI = &MF.getRegInfo();
Gerolf Hoflehner01b3a6182016-04-24 05:14:01 +0000640 MLI = &getAnalysis<MachineLoopInfo>();
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000641 Traces = &getAnalysis<MachineTraceMetrics>();
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000642 MinInstr = nullptr;
Matthias Braunf1caa282017-12-15 22:22:58 +0000643 OptSize = MF.getFunction().optForSize();
Gerolf Hoflehner5e1207e2014-08-03 21:35:39 +0000644
645 DEBUG(dbgs() << getPassName() << ": " << MF.getName() << '\n');
646 if (!TII->useMachineCombiner()) {
647 DEBUG(dbgs() << " Skipping pass: Target does not support machine combiner\n");
648 return false;
649 }
650
651 bool Changed = false;
652
653 // Try to combine instructions.
654 for (auto &MBB : MF)
655 Changed |= combineInstructions(&MBB);
656
657 return Changed;
658}