blob: 7cff85a3ab04bcd66f0498db9835e35030b3a681 [file] [log] [blame]
Eugene Zelenko32a40562017-09-11 23:00:48 +00001//===- PeepholeOptimizer.cpp - Peephole Optimizations ---------------------===//
Bill Wendlingca678352010-08-09 23:59:04 +00002//
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// Perform peephole optimizations on the machine code:
11//
12// - Optimize Extensions
13//
14// Optimization of sign / zero extension instructions. It may be extended to
15// handle other instructions with similar properties.
16//
17// On some targets, some instructions, e.g. X86 sign / zero extension, may
18// leave the source value in the lower part of the result. This optimization
19// will replace some uses of the pre-extension value with uses of the
20// sub-register of the results.
21//
22// - Optimize Comparisons
23//
24// Optimization of comparison instructions. For instance, in this code:
25//
26// sub r1, 1
27// cmp r1, 0
28// bz L1
29//
30// If the "sub" instruction all ready sets (or could be modified to set) the
31// same flag that the "cmp" instruction sets and that "bz" uses, then we can
32// eliminate the "cmp" instruction.
Evan Chenge4b8ac92011-03-15 05:13:13 +000033//
Manman Rendc8ad002012-05-11 01:30:47 +000034// Another instance, in this code:
35//
36// sub r1, r3 | sub r1, imm
37// cmp r3, r1 or cmp r1, r3 | cmp r1, imm
38// bge L1
39//
40// If the branch instruction can use flag from "sub", then we can replace
41// "sub" with "subs" and eliminate the "cmp" instruction.
42//
Joel Jones24e440d2012-12-11 16:10:25 +000043// - Optimize Loads:
44//
45// Loads that can be folded into a later instruction. A load is foldable
Matt Arsenault30991562015-09-09 00:38:33 +000046// if it loads to virtual registers and the virtual register defined has
Joel Jones24e440d2012-12-11 16:10:25 +000047// a single use.
Quentin Colombetcf71c632013-09-13 18:26:31 +000048//
Quentin Colombet03e43f82014-08-20 17:41:48 +000049// - Optimize Copies and Bitcast (more generally, target specific copies):
Quentin Colombetcf71c632013-09-13 18:26:31 +000050//
51// Rewrite copies and bitcasts to avoid cross register bank copies
52// when possible.
53// E.g., Consider the following example, where capital and lower
54// letters denote different register file:
55// b = copy A <-- cross-bank copy
56// C = copy b <-- cross-bank copy
57// =>
58// b = copy A <-- cross-bank copy
59// C = copy A <-- same-bank copy
60//
61// E.g., for bitcast:
62// b = bitcast A <-- cross-bank copy
63// C = bitcast b <-- cross-bank copy
64// =>
65// b = bitcast A <-- cross-bank copy
66// C = copy A <-- same-bank copy
Bill Wendlingca678352010-08-09 23:59:04 +000067//===----------------------------------------------------------------------===//
68
Evan Cheng7f8ab6e2010-11-17 20:13:28 +000069#include "llvm/ADT/DenseMap.h"
Eugene Zelenko32a40562017-09-11 23:00:48 +000070#include "llvm/ADT/Optional.h"
Bill Wendlingca678352010-08-09 23:59:04 +000071#include "llvm/ADT/SmallPtrSet.h"
Evan Cheng7f8ab6e2010-11-17 20:13:28 +000072#include "llvm/ADT/SmallSet.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000073#include "llvm/ADT/SmallVector.h"
Bill Wendlingca678352010-08-09 23:59:04 +000074#include "llvm/ADT/Statistic.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000075#include "llvm/CodeGen/MachineBasicBlock.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000076#include "llvm/CodeGen/MachineDominators.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000077#include "llvm/CodeGen/MachineFunction.h"
Eugene Zelenko32a40562017-09-11 23:00:48 +000078#include "llvm/CodeGen/MachineFunctionPass.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000079#include "llvm/CodeGen/MachineInstr.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000080#include "llvm/CodeGen/MachineInstrBuilder.h"
Taewook Oh0e35ea32017-06-29 23:11:24 +000081#include "llvm/CodeGen/MachineLoopInfo.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000082#include "llvm/CodeGen/MachineOperand.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000083#include "llvm/CodeGen/MachineRegisterInfo.h"
Eugene Zelenko32a40562017-09-11 23:00:48 +000084#include "llvm/MC/LaneBitmask.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000085#include "llvm/MC/MCInstrDesc.h"
Eugene Zelenko32a40562017-09-11 23:00:48 +000086#include "llvm/Pass.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000087#include "llvm/Support/CommandLine.h"
Craig Topper588ceec2012-12-17 03:56:00 +000088#include "llvm/Support/Debug.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000089#include "llvm/Support/ErrorHandling.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000090#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000091#include "llvm/Target/TargetInstrInfo.h"
Eugene Zelenko32a40562017-09-11 23:00:48 +000092#include "llvm/Target/TargetOpcodes.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000093#include "llvm/Target/TargetRegisterInfo.h"
Eric Christopherd9134482014-08-04 21:25:23 +000094#include "llvm/Target/TargetSubtargetInfo.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000095#include <cassert>
96#include <cstdint>
97#include <memory>
Quentin Colombet03e43f82014-08-20 17:41:48 +000098#include <utility>
Eugene Zelenko1804a772016-08-25 00:45:04 +000099
Bill Wendlingca678352010-08-09 23:59:04 +0000100using namespace llvm;
101
Chandler Carruth1b9dde02014-04-22 02:02:50 +0000102#define DEBUG_TYPE "peephole-opt"
103
Bill Wendlingca678352010-08-09 23:59:04 +0000104// Optimize Extensions
105static cl::opt<bool>
106Aggressive("aggressive-ext-opt", cl::Hidden,
107 cl::desc("Aggressive extension optimization"));
108
Bill Wendlingc6627ee2010-11-01 20:41:43 +0000109static cl::opt<bool>
110DisablePeephole("disable-peephole", cl::Hidden, cl::init(false),
111 cl::desc("Disable the peephole optimizer"));
112
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000113static cl::opt<bool>
Quentin Colombet6674b092014-08-21 22:23:52 +0000114DisableAdvCopyOpt("disable-adv-copy-opt", cl::Hidden, cl::init(false),
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000115 cl::desc("Disable advanced copy optimization"));
116
JF Bastien1ac69942015-12-03 23:43:56 +0000117static cl::opt<bool> DisableNAPhysCopyOpt(
118 "disable-non-allocatable-phys-copy-opt", cl::Hidden, cl::init(false),
119 cl::desc("Disable non-allocatable physical register copy optimization"));
120
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000121// Limit the number of PHI instructions to process
122// in PeepholeOptimizer::getNextSource.
123static cl::opt<unsigned> RewritePHILimit(
124 "rewrite-phi-limit", cl::Hidden, cl::init(10),
125 cl::desc("Limit the length of PHI chains to lookup"));
126
Taewook Oh0e35ea32017-06-29 23:11:24 +0000127// Limit the length of recurrence chain when evaluating the benefit of
128// commuting operands.
129static cl::opt<unsigned> MaxRecurrenceChain(
130 "recurrence-chain-limit", cl::Hidden, cl::init(3),
131 cl::desc("Maximum length of recurrence chain when evaluating the benefit "
132 "of commuting operands"));
133
134
Bill Wendling66284312010-08-27 20:39:09 +0000135STATISTIC(NumReuse, "Number of extension results reused");
Evan Chenge4b8ac92011-03-15 05:13:13 +0000136STATISTIC(NumCmps, "Number of compares eliminated");
Lang Hames31bb57b2012-02-25 00:46:38 +0000137STATISTIC(NumImmFold, "Number of move immediate folded");
Manman Ren5759d012012-08-02 00:56:42 +0000138STATISTIC(NumLoadFold, "Number of loads folded");
Jakob Stoklund Olesen2382d322012-08-16 23:11:47 +0000139STATISTIC(NumSelects, "Number of selects optimized");
Quentin Colombet03e43f82014-08-20 17:41:48 +0000140STATISTIC(NumUncoalescableCopies, "Number of uncoalescable copies optimized");
141STATISTIC(NumRewrittenCopies, "Number of copies rewritten");
JF Bastien1ac69942015-12-03 23:43:56 +0000142STATISTIC(NumNAPhysCopies, "Number of non-allocatable physical copies removed");
Bill Wendlingca678352010-08-09 23:59:04 +0000143
144namespace {
Eugene Zelenko1804a772016-08-25 00:45:04 +0000145
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000146 class ValueTrackerResult;
Taewook Oh0e35ea32017-06-29 23:11:24 +0000147 class RecurrenceInstr;
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000148
Bill Wendlingca678352010-08-09 23:59:04 +0000149 class PeepholeOptimizer : public MachineFunctionPass {
Bill Wendlingca678352010-08-09 23:59:04 +0000150 const TargetInstrInfo *TII;
Eric Christopher92b4bcb2014-10-14 07:17:20 +0000151 const TargetRegisterInfo *TRI;
Bill Wendlingca678352010-08-09 23:59:04 +0000152 MachineRegisterInfo *MRI;
153 MachineDominatorTree *DT; // Machine dominator tree
Taewook Oh0e35ea32017-06-29 23:11:24 +0000154 MachineLoopInfo *MLI;
Bill Wendlingca678352010-08-09 23:59:04 +0000155
156 public:
157 static char ID; // Pass identification
Eugene Zelenko1804a772016-08-25 00:45:04 +0000158
Owen Anderson6c18d1a2010-10-19 17:21:58 +0000159 PeepholeOptimizer() : MachineFunctionPass(ID) {
160 initializePeepholeOptimizerPass(*PassRegistry::getPassRegistry());
161 }
Bill Wendlingca678352010-08-09 23:59:04 +0000162
Craig Topper4584cd52014-03-07 09:26:03 +0000163 bool runOnMachineFunction(MachineFunction &MF) override;
Bill Wendlingca678352010-08-09 23:59:04 +0000164
Craig Topper4584cd52014-03-07 09:26:03 +0000165 void getAnalysisUsage(AnalysisUsage &AU) const override {
Bill Wendlingca678352010-08-09 23:59:04 +0000166 AU.setPreservesCFG();
167 MachineFunctionPass::getAnalysisUsage(AU);
Taewook Oh0e35ea32017-06-29 23:11:24 +0000168 AU.addRequired<MachineLoopInfo>();
169 AU.addPreserved<MachineLoopInfo>();
Bill Wendlingca678352010-08-09 23:59:04 +0000170 if (Aggressive) {
171 AU.addRequired<MachineDominatorTree>();
172 AU.addPreserved<MachineDominatorTree>();
173 }
174 }
175
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000176 /// \brief Track Def -> Use info used for rewriting copies.
Eugene Zelenko32a40562017-09-11 23:00:48 +0000177 using RewriteMapTy =
178 SmallDenseMap<TargetInstrInfo::RegSubRegPair, ValueTrackerResult>;
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000179
Taewook Oh0e35ea32017-06-29 23:11:24 +0000180 /// \brief Sequence of instructions that formulate recurrence cycle.
Eugene Zelenko32a40562017-09-11 23:00:48 +0000181 using RecurrenceCycle = SmallVector<RecurrenceInstr, 4>;
Taewook Oh0e35ea32017-06-29 23:11:24 +0000182
Bill Wendlingca678352010-08-09 23:59:04 +0000183 private:
Jim Grosbachedcb8682012-05-01 23:21:41 +0000184 bool optimizeCmpInstr(MachineInstr *MI, MachineBasicBlock *MBB);
185 bool optimizeExtInstr(MachineInstr *MI, MachineBasicBlock *MBB,
Hans Wennborg97a59ae2014-08-11 13:52:46 +0000186 SmallPtrSetImpl<MachineInstr*> &LocalMIs);
Mehdi Amini22e59742015-01-13 07:07:13 +0000187 bool optimizeSelect(MachineInstr *MI,
188 SmallPtrSetImpl<MachineInstr *> &LocalMIs);
Gerolf Hoflehnera4c96d02014-10-14 23:07:53 +0000189 bool optimizeCondBranch(MachineInstr *MI);
Quentin Colombet03e43f82014-08-20 17:41:48 +0000190 bool optimizeCoalescableCopy(MachineInstr *MI);
191 bool optimizeUncoalescableCopy(MachineInstr *MI,
192 SmallPtrSetImpl<MachineInstr *> &LocalMIs);
Taewook Oh0e35ea32017-06-29 23:11:24 +0000193 bool optimizeRecurrence(MachineInstr &PHI);
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000194 bool findNextSource(unsigned Reg, unsigned SubReg,
195 RewriteMapTy &RewriteMap);
Evan Cheng7f8ab6e2010-11-17 20:13:28 +0000196 bool isMoveImmediate(MachineInstr *MI,
197 SmallSet<unsigned, 4> &ImmDefRegs,
198 DenseMap<unsigned, MachineInstr*> &ImmDefMIs);
Jim Grosbachedcb8682012-05-01 23:21:41 +0000199 bool foldImmediate(MachineInstr *MI, MachineBasicBlock *MBB,
Evan Cheng7f8ab6e2010-11-17 20:13:28 +0000200 SmallSet<unsigned, 4> &ImmDefRegs,
201 DenseMap<unsigned, MachineInstr*> &ImmDefMIs);
Eugene Zelenko32a40562017-09-11 23:00:48 +0000202
Taewook Oh0e35ea32017-06-29 23:11:24 +0000203 /// \brief Finds recurrence cycles, but only ones that formulated around
204 /// a def operand and a use operand that are tied. If there is a use
205 /// operand commutable with the tied use operand, find recurrence cycle
206 /// along that operand as well.
207 bool findTargetRecurrence(unsigned Reg,
208 const SmallSet<unsigned, 2> &TargetReg,
209 RecurrenceCycle &RC);
Matt Arsenault10aa8072015-09-25 20:22:12 +0000210
211 /// \brief If copy instruction \p MI is a virtual register copy, track it in
JF Bastien1ac69942015-12-03 23:43:56 +0000212 /// the set \p CopySrcRegs and \p CopyMIs. If this virtual register was
Matt Arsenault10aa8072015-09-25 20:22:12 +0000213 /// previously seen as a copy, replace the uses of this copy with the
214 /// previously seen copy's destination register.
215 bool foldRedundantCopy(MachineInstr *MI,
JF Bastien1ac69942015-12-03 23:43:56 +0000216 SmallSet<unsigned, 4> &CopySrcRegs,
217 DenseMap<unsigned, MachineInstr *> &CopyMIs);
218
219 /// \brief Is the register \p Reg a non-allocatable physical register?
220 bool isNAPhysCopy(unsigned Reg);
221
222 /// \brief If copy instruction \p MI is a non-allocatable virtual<->physical
223 /// register copy, track it in the \p NAPhysToVirtMIs map. If this
224 /// non-allocatable physical register was previously copied to a virtual
225 /// registered and hasn't been clobbered, the virt->phys copy can be
226 /// deleted.
227 bool foldRedundantNAPhysCopy(
228 MachineInstr *MI,
229 DenseMap<unsigned, MachineInstr *> &NAPhysToVirtMIs);
Matt Arsenault10aa8072015-09-25 20:22:12 +0000230
Lang Hames5dc14bd2014-04-02 22:59:58 +0000231 bool isLoadFoldable(MachineInstr *MI,
232 SmallSet<unsigned, 16> &FoldAsLoadDefCandidates);
Quentin Colombet03e43f82014-08-20 17:41:48 +0000233
234 /// \brief Check whether \p MI is understood by the register coalescer
235 /// but may require some rewriting.
236 bool isCoalescableCopy(const MachineInstr &MI) {
237 // SubregToRegs are not interesting, because they are already register
238 // coalescer friendly.
239 return MI.isCopy() || (!DisableAdvCopyOpt &&
240 (MI.isRegSequence() || MI.isInsertSubreg() ||
241 MI.isExtractSubreg()));
242 }
243
244 /// \brief Check whether \p MI is a copy like instruction that is
245 /// not recognized by the register coalescer.
246 bool isUncoalescableCopy(const MachineInstr &MI) {
Quentin Colombet68962302014-08-21 00:19:16 +0000247 return MI.isBitcast() ||
248 (!DisableAdvCopyOpt &&
249 (MI.isRegSequenceLike() || MI.isInsertSubregLike() ||
250 MI.isExtractSubregLike()));
Quentin Colombet03e43f82014-08-20 17:41:48 +0000251 }
Bill Wendlingca678352010-08-09 23:59:04 +0000252 };
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000253
Taewook Oh0e35ea32017-06-29 23:11:24 +0000254 /// \brief Helper class to hold instructions that are inside recurrence
255 /// cycles. The recurrence cycle is formulated around 1) a def operand and its
256 /// tied use operand, or 2) a def operand and a use operand that is commutable
257 /// with another use operand which is tied to the def operand. In the latter
258 /// case, index of the tied use operand and the commutable use operand are
259 /// maintained with CommutePair.
260 class RecurrenceInstr {
261 public:
Eugene Zelenko32a40562017-09-11 23:00:48 +0000262 using IndexPair = std::pair<unsigned, unsigned>;
Taewook Oh0e35ea32017-06-29 23:11:24 +0000263
264 RecurrenceInstr(MachineInstr *MI) : MI(MI) {}
265 RecurrenceInstr(MachineInstr *MI, unsigned Idx1, unsigned Idx2)
266 : MI(MI), CommutePair(std::make_pair(Idx1, Idx2)) {}
267
268 MachineInstr *getMI() const { return MI; }
269 Optional<IndexPair> getCommutePair() const { return CommutePair; }
270
271 private:
272 MachineInstr *MI;
273 Optional<IndexPair> CommutePair;
274 };
275
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000276 /// \brief Helper class to hold a reply for ValueTracker queries. Contains the
277 /// returned sources for a given search and the instructions where the sources
278 /// were tracked from.
279 class ValueTrackerResult {
280 private:
281 /// Track all sources found by one ValueTracker query.
282 SmallVector<TargetInstrInfo::RegSubRegPair, 2> RegSrcs;
283
284 /// Instruction using the sources in 'RegSrcs'.
Eugene Zelenko32a40562017-09-11 23:00:48 +0000285 const MachineInstr *Inst = nullptr;
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000286
287 public:
Eugene Zelenko32a40562017-09-11 23:00:48 +0000288 ValueTrackerResult() = default;
289
290 ValueTrackerResult(unsigned Reg, unsigned SubReg) {
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000291 addSource(Reg, SubReg);
292 }
293
294 bool isValid() const { return getNumSources() > 0; }
295
296 void setInst(const MachineInstr *I) { Inst = I; }
297 const MachineInstr *getInst() const { return Inst; }
298
299 void clear() {
300 RegSrcs.clear();
301 Inst = nullptr;
302 }
303
304 void addSource(unsigned SrcReg, unsigned SrcSubReg) {
305 RegSrcs.push_back(TargetInstrInfo::RegSubRegPair(SrcReg, SrcSubReg));
306 }
307
308 void setSource(int Idx, unsigned SrcReg, unsigned SrcSubReg) {
309 assert(Idx < getNumSources() && "Reg pair source out of index");
310 RegSrcs[Idx] = TargetInstrInfo::RegSubRegPair(SrcReg, SrcSubReg);
311 }
312
313 int getNumSources() const { return RegSrcs.size(); }
314
315 unsigned getSrcReg(int Idx) const {
316 assert(Idx < getNumSources() && "Reg source out of index");
317 return RegSrcs[Idx].Reg;
318 }
319
320 unsigned getSrcSubReg(int Idx) const {
321 assert(Idx < getNumSources() && "SubReg source out of index");
322 return RegSrcs[Idx].SubReg;
323 }
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000324
325 bool operator==(const ValueTrackerResult &Other) {
326 if (Other.getInst() != getInst())
327 return false;
328
329 if (Other.getNumSources() != getNumSources())
330 return false;
331
332 for (int i = 0, e = Other.getNumSources(); i != e; ++i)
333 if (Other.getSrcReg(i) != getSrcReg(i) ||
334 Other.getSrcSubReg(i) != getSrcSubReg(i))
335 return false;
336 return true;
337 }
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000338 };
339
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000340 /// \brief Helper class to track the possible sources of a value defined by
341 /// a (chain of) copy related instructions.
342 /// Given a definition (instruction and definition index), this class
343 /// follows the use-def chain to find successive suitable sources.
344 /// The given source can be used to rewrite the definition into
345 /// def = COPY src.
346 ///
347 /// For instance, let us consider the following snippet:
348 /// v0 =
349 /// v2 = INSERT_SUBREG v1, v0, sub0
350 /// def = COPY v2.sub0
351 ///
352 /// Using a ValueTracker for def = COPY v2.sub0 will give the following
353 /// suitable sources:
354 /// v2.sub0 and v0.
355 /// Then, def can be rewritten into def = COPY v0.
356 class ValueTracker {
357 private:
358 /// The current point into the use-def chain.
Eugene Zelenko32a40562017-09-11 23:00:48 +0000359 const MachineInstr *Def = nullptr;
360
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000361 /// The index of the definition in Def.
Eugene Zelenko32a40562017-09-11 23:00:48 +0000362 unsigned DefIdx = 0;
363
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000364 /// The sub register index of the definition.
365 unsigned DefSubReg;
Eugene Zelenko32a40562017-09-11 23:00:48 +0000366
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000367 /// The register where the value can be found.
368 unsigned Reg;
Eugene Zelenko32a40562017-09-11 23:00:48 +0000369
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000370 /// Specifiy whether or not the value tracking looks through
371 /// complex instructions. When this is false, the value tracker
372 /// bails on everything that is not a copy or a bitcast.
373 ///
374 /// Note: This could have been implemented as a specialized version of
375 /// the ValueTracker class but that would have complicated the code of
376 /// the users of this class.
377 bool UseAdvancedTracking;
Eugene Zelenko32a40562017-09-11 23:00:48 +0000378
Quentin Colombet03e43f82014-08-20 17:41:48 +0000379 /// MachineRegisterInfo used to perform tracking.
380 const MachineRegisterInfo &MRI;
Eugene Zelenko32a40562017-09-11 23:00:48 +0000381
Quentin Colombet03e43f82014-08-20 17:41:48 +0000382 /// Optional TargetInstrInfo used to perform some complex
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000383 /// tracking.
Quentin Colombet03e43f82014-08-20 17:41:48 +0000384 const TargetInstrInfo *TII;
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000385
386 /// \brief Dispatcher to the right underlying implementation of
387 /// getNextSource.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000388 ValueTrackerResult getNextSourceImpl();
Eugene Zelenko32a40562017-09-11 23:00:48 +0000389
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000390 /// \brief Specialized version of getNextSource for Copy instructions.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000391 ValueTrackerResult getNextSourceFromCopy();
Eugene Zelenko32a40562017-09-11 23:00:48 +0000392
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000393 /// \brief Specialized version of getNextSource for Bitcast instructions.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000394 ValueTrackerResult getNextSourceFromBitcast();
Eugene Zelenko32a40562017-09-11 23:00:48 +0000395
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000396 /// \brief Specialized version of getNextSource for RegSequence
397 /// instructions.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000398 ValueTrackerResult getNextSourceFromRegSequence();
Eugene Zelenko32a40562017-09-11 23:00:48 +0000399
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000400 /// \brief Specialized version of getNextSource for InsertSubreg
401 /// instructions.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000402 ValueTrackerResult getNextSourceFromInsertSubreg();
Eugene Zelenko32a40562017-09-11 23:00:48 +0000403
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000404 /// \brief Specialized version of getNextSource for ExtractSubreg
405 /// instructions.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000406 ValueTrackerResult getNextSourceFromExtractSubreg();
Eugene Zelenko32a40562017-09-11 23:00:48 +0000407
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000408 /// \brief Specialized version of getNextSource for SubregToReg
409 /// instructions.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000410 ValueTrackerResult getNextSourceFromSubregToReg();
Eugene Zelenko32a40562017-09-11 23:00:48 +0000411
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000412 /// \brief Specialized version of getNextSource for PHI instructions.
413 ValueTrackerResult getNextSourceFromPHI();
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000414
415 public:
Quentin Colombet03e43f82014-08-20 17:41:48 +0000416 /// \brief Create a ValueTracker instance for the value defined by \p Reg.
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000417 /// \p DefSubReg represents the sub register index the value tracker will
Quentin Colombet03e43f82014-08-20 17:41:48 +0000418 /// track. It does not need to match the sub register index used in the
419 /// definition of \p Reg.
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000420 /// \p UseAdvancedTracking specifies whether or not the value tracker looks
421 /// through complex instructions. By default (false), it handles only copy
422 /// and bitcast instructions.
Quentin Colombet03e43f82014-08-20 17:41:48 +0000423 /// If \p Reg is a physical register, a value tracker constructed with
424 /// this constructor will not find any alternative source.
425 /// Indeed, when \p Reg is a physical register that constructor does not
426 /// know which definition of \p Reg it should track.
427 /// Use the next constructor to track a physical register.
428 ValueTracker(unsigned Reg, unsigned DefSubReg,
429 const MachineRegisterInfo &MRI,
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000430 bool UseAdvancedTracking = false,
Quentin Colombet03e43f82014-08-20 17:41:48 +0000431 const TargetInstrInfo *TII = nullptr)
Eugene Zelenko32a40562017-09-11 23:00:48 +0000432 : DefSubReg(DefSubReg), Reg(Reg),
Quentin Colombet03e43f82014-08-20 17:41:48 +0000433 UseAdvancedTracking(UseAdvancedTracking), MRI(MRI), TII(TII) {
434 if (!TargetRegisterInfo::isPhysicalRegister(Reg)) {
435 Def = MRI.getVRegDef(Reg);
436 DefIdx = MRI.def_begin(Reg).getOperandNo();
437 }
438 }
439
440 /// \brief Create a ValueTracker instance for the value defined by
441 /// the pair \p MI, \p DefIdx.
442 /// Unlike the other constructor, the value tracker produced by this one
443 /// may be able to find a new source when the definition is a physical
444 /// register.
445 /// This could be useful to rewrite target specific instructions into
446 /// generic copy instructions.
447 ValueTracker(const MachineInstr &MI, unsigned DefIdx, unsigned DefSubReg,
448 const MachineRegisterInfo &MRI,
449 bool UseAdvancedTracking = false,
450 const TargetInstrInfo *TII = nullptr)
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000451 : Def(&MI), DefIdx(DefIdx), DefSubReg(DefSubReg),
Quentin Colombet03e43f82014-08-20 17:41:48 +0000452 UseAdvancedTracking(UseAdvancedTracking), MRI(MRI), TII(TII) {
453 assert(DefIdx < Def->getDesc().getNumDefs() &&
454 Def->getOperand(DefIdx).isReg() && "Invalid definition");
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000455 Reg = Def->getOperand(DefIdx).getReg();
456 }
457
458 /// \brief Following the use-def chain, get the next available source
459 /// for the tracked value.
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000460 /// \return A ValueTrackerResult containing a set of registers
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000461 /// and sub registers with tracked values. A ValueTrackerResult with
462 /// an empty set of registers means no source was found.
463 ValueTrackerResult getNextSource();
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000464
465 /// \brief Get the last register where the initial value can be found.
466 /// Initially this is the register of the definition.
467 /// Then, after each successful call to getNextSource, this is the
468 /// register of the last source.
469 unsigned getReg() const { return Reg; }
470 };
Eugene Zelenko1804a772016-08-25 00:45:04 +0000471
472} // end anonymous namespace
Bill Wendlingca678352010-08-09 23:59:04 +0000473
474char PeepholeOptimizer::ID = 0;
Eugene Zelenko32a40562017-09-11 23:00:48 +0000475
Andrew Trick1fa5bcb2012-02-08 21:23:13 +0000476char &llvm::PeepholeOptimizerID = PeepholeOptimizer::ID;
Eugene Zelenko1804a772016-08-25 00:45:04 +0000477
Matt Arsenault44540a32016-07-08 16:29:11 +0000478INITIALIZE_PASS_BEGIN(PeepholeOptimizer, DEBUG_TYPE,
Owen Anderson8ac477f2010-10-12 19:48:12 +0000479 "Peephole Optimizations", false, false)
480INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
Taewook Oh0e35ea32017-06-29 23:11:24 +0000481INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo)
Matt Arsenault44540a32016-07-08 16:29:11 +0000482INITIALIZE_PASS_END(PeepholeOptimizer, DEBUG_TYPE,
Owen Andersondf7a4f22010-10-07 22:25:06 +0000483 "Peephole Optimizations", false, false)
Bill Wendlingca678352010-08-09 23:59:04 +0000484
Sanjay Patel59309cc2015-12-29 18:14:06 +0000485/// If instruction is a copy-like instruction, i.e. it reads a single register
486/// and writes a single register and it does not modify the source, and if the
487/// source value is preserved as a sub-register of the result, then replace all
488/// reachable uses of the source with the subreg of the result.
Andrew Trick9e761992012-02-08 21:22:43 +0000489///
Bill Wendlingca678352010-08-09 23:59:04 +0000490/// Do not generate an EXTRACT that is used only in a debug use, as this changes
491/// the code. Since this code does not currently share EXTRACTs, just ignore all
492/// debug uses.
493bool PeepholeOptimizer::
Jim Grosbachedcb8682012-05-01 23:21:41 +0000494optimizeExtInstr(MachineInstr *MI, MachineBasicBlock *MBB,
Hans Wennborg97a59ae2014-08-11 13:52:46 +0000495 SmallPtrSetImpl<MachineInstr*> &LocalMIs) {
Bill Wendlingca678352010-08-09 23:59:04 +0000496 unsigned SrcReg, DstReg, SubIdx;
497 if (!TII->isCoalescableExtInstr(*MI, SrcReg, DstReg, SubIdx))
498 return false;
Andrew Trick9e761992012-02-08 21:22:43 +0000499
Bill Wendlingca678352010-08-09 23:59:04 +0000500 if (TargetRegisterInfo::isPhysicalRegister(DstReg) ||
501 TargetRegisterInfo::isPhysicalRegister(SrcReg))
502 return false;
503
Jakob Stoklund Olesen8eb99052012-06-19 21:10:18 +0000504 if (MRI->hasOneNonDBGUse(SrcReg))
Bill Wendlingca678352010-08-09 23:59:04 +0000505 // No other uses.
506 return false;
507
Jakob Stoklund Olesen2f06a652012-05-20 18:42:55 +0000508 // Ensure DstReg can get a register class that actually supports
509 // sub-registers. Don't change the class until we commit.
510 const TargetRegisterClass *DstRC = MRI->getRegClass(DstReg);
Eric Christopher92b4bcb2014-10-14 07:17:20 +0000511 DstRC = TRI->getSubClassWithSubReg(DstRC, SubIdx);
Jakob Stoklund Olesen2f06a652012-05-20 18:42:55 +0000512 if (!DstRC)
513 return false;
514
Jakob Stoklund Olesen0f855e42012-06-19 21:14:34 +0000515 // The ext instr may be operating on a sub-register of SrcReg as well.
516 // PPC::EXTSW is a 32 -> 64-bit sign extension, but it reads a 64-bit
517 // register.
518 // If UseSrcSubIdx is Set, SubIdx also applies to SrcReg, and only uses of
519 // SrcReg:SubIdx should be replaced.
Eric Christopherd9134482014-08-04 21:25:23 +0000520 bool UseSrcSubIdx =
Eric Christopher92b4bcb2014-10-14 07:17:20 +0000521 TRI->getSubClassWithSubReg(MRI->getRegClass(SrcReg), SubIdx) != nullptr;
Jakob Stoklund Olesen0f855e42012-06-19 21:14:34 +0000522
Bill Wendlingca678352010-08-09 23:59:04 +0000523 // The source has other uses. See if we can replace the other uses with use of
524 // the result of the extension.
525 SmallPtrSet<MachineBasicBlock*, 4> ReachedBBs;
Owen Andersonb36376e2014-03-17 19:36:09 +0000526 for (MachineInstr &UI : MRI->use_nodbg_instructions(DstReg))
527 ReachedBBs.insert(UI.getParent());
Bill Wendlingca678352010-08-09 23:59:04 +0000528
529 // Uses that are in the same BB of uses of the result of the instruction.
530 SmallVector<MachineOperand*, 8> Uses;
531
532 // Uses that the result of the instruction can reach.
533 SmallVector<MachineOperand*, 8> ExtendedUses;
534
535 bool ExtendLife = true;
Owen Andersonb36376e2014-03-17 19:36:09 +0000536 for (MachineOperand &UseMO : MRI->use_nodbg_operands(SrcReg)) {
Owen Anderson16c6bf42014-03-13 23:12:04 +0000537 MachineInstr *UseMI = UseMO.getParent();
Bill Wendlingca678352010-08-09 23:59:04 +0000538 if (UseMI == MI)
539 continue;
540
541 if (UseMI->isPHI()) {
542 ExtendLife = false;
543 continue;
544 }
545
Jakob Stoklund Olesen0f855e42012-06-19 21:14:34 +0000546 // Only accept uses of SrcReg:SubIdx.
547 if (UseSrcSubIdx && UseMO.getSubReg() != SubIdx)
548 continue;
549
Bill Wendlingca678352010-08-09 23:59:04 +0000550 // It's an error to translate this:
551 //
552 // %reg1025 = <sext> %reg1024
553 // ...
554 // %reg1026 = SUBREG_TO_REG 0, %reg1024, 4
555 //
556 // into this:
557 //
558 // %reg1025 = <sext> %reg1024
559 // ...
560 // %reg1027 = COPY %reg1025:4
561 // %reg1026 = SUBREG_TO_REG 0, %reg1027, 4
562 //
563 // The problem here is that SUBREG_TO_REG is there to assert that an
564 // implicit zext occurs. It doesn't insert a zext instruction. If we allow
565 // the COPY here, it will give us the value after the <sext>, not the
566 // original value of %reg1024 before <sext>.
567 if (UseMI->getOpcode() == TargetOpcode::SUBREG_TO_REG)
568 continue;
569
570 MachineBasicBlock *UseMBB = UseMI->getParent();
571 if (UseMBB == MBB) {
572 // Local uses that come after the extension.
573 if (!LocalMIs.count(UseMI))
574 Uses.push_back(&UseMO);
575 } else if (ReachedBBs.count(UseMBB)) {
576 // Non-local uses where the result of the extension is used. Always
577 // replace these unless it's a PHI.
578 Uses.push_back(&UseMO);
579 } else if (Aggressive && DT->dominates(MBB, UseMBB)) {
580 // We may want to extend the live range of the extension result in order
581 // to replace these uses.
582 ExtendedUses.push_back(&UseMO);
583 } else {
584 // Both will be live out of the def MBB anyway. Don't extend live range of
585 // the extension result.
586 ExtendLife = false;
587 break;
588 }
589 }
590
591 if (ExtendLife && !ExtendedUses.empty())
592 // Extend the liveness of the extension result.
Benjamin Kramer4f6ac162015-02-28 10:11:12 +0000593 Uses.append(ExtendedUses.begin(), ExtendedUses.end());
Bill Wendlingca678352010-08-09 23:59:04 +0000594
595 // Now replace all uses.
596 bool Changed = false;
597 if (!Uses.empty()) {
598 SmallPtrSet<MachineBasicBlock*, 4> PHIBBs;
599
600 // Look for PHI uses of the extended result, we don't want to extend the
601 // liveness of a PHI input. It breaks all kinds of assumptions down
602 // stream. A PHI use is expected to be the kill of its source values.
Owen Andersonb36376e2014-03-17 19:36:09 +0000603 for (MachineInstr &UI : MRI->use_nodbg_instructions(DstReg))
604 if (UI.isPHI())
605 PHIBBs.insert(UI.getParent());
Bill Wendlingca678352010-08-09 23:59:04 +0000606
607 const TargetRegisterClass *RC = MRI->getRegClass(SrcReg);
608 for (unsigned i = 0, e = Uses.size(); i != e; ++i) {
609 MachineOperand *UseMO = Uses[i];
610 MachineInstr *UseMI = UseMO->getParent();
611 MachineBasicBlock *UseMBB = UseMI->getParent();
612 if (PHIBBs.count(UseMBB))
613 continue;
614
Lang Hamesd5862ce2012-02-25 02:01:00 +0000615 // About to add uses of DstReg, clear DstReg's kill flags.
Jakob Stoklund Olesen2f06a652012-05-20 18:42:55 +0000616 if (!Changed) {
Lang Hamesd5862ce2012-02-25 02:01:00 +0000617 MRI->clearKillFlags(DstReg);
Jakob Stoklund Olesen2f06a652012-05-20 18:42:55 +0000618 MRI->constrainRegClass(DstReg, DstRC);
619 }
Lang Hamesd5862ce2012-02-25 02:01:00 +0000620
Bill Wendlingca678352010-08-09 23:59:04 +0000621 unsigned NewVR = MRI->createVirtualRegister(RC);
Jakob Stoklund Olesen0f855e42012-06-19 21:14:34 +0000622 MachineInstr *Copy = BuildMI(*UseMBB, UseMI, UseMI->getDebugLoc(),
623 TII->get(TargetOpcode::COPY), NewVR)
Bill Wendlingca678352010-08-09 23:59:04 +0000624 .addReg(DstReg, 0, SubIdx);
Jakob Stoklund Olesen0f855e42012-06-19 21:14:34 +0000625 // SubIdx applies to both SrcReg and DstReg when UseSrcSubIdx is set.
626 if (UseSrcSubIdx) {
627 Copy->getOperand(0).setSubReg(SubIdx);
628 Copy->getOperand(0).setIsUndef();
629 }
Bill Wendlingca678352010-08-09 23:59:04 +0000630 UseMO->setReg(NewVR);
631 ++NumReuse;
632 Changed = true;
633 }
634 }
635
636 return Changed;
637}
638
Sanjay Patel59309cc2015-12-29 18:14:06 +0000639/// If the instruction is a compare and the previous instruction it's comparing
640/// against already sets (or could be modified to set) the same flag as the
641/// compare, then we can remove the comparison and use the flag from the
642/// previous instruction.
Jim Grosbachedcb8682012-05-01 23:21:41 +0000643bool PeepholeOptimizer::optimizeCmpInstr(MachineInstr *MI,
Evan Chenge4b8ac92011-03-15 05:13:13 +0000644 MachineBasicBlock *MBB) {
Bill Wendlingca678352010-08-09 23:59:04 +0000645 // If this instruction is a comparison against zero and isn't comparing a
646 // physical register, we can try to optimize it.
Manman Ren6fa76dc2012-06-29 21:33:59 +0000647 unsigned SrcReg, SrcReg2;
Gabor Greifadbbb932010-09-21 12:01:15 +0000648 int CmpMask, CmpValue;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000649 if (!TII->analyzeCompare(*MI, SrcReg, SrcReg2, CmpMask, CmpValue) ||
Manman Ren6fa76dc2012-06-29 21:33:59 +0000650 TargetRegisterInfo::isPhysicalRegister(SrcReg) ||
651 (SrcReg2 != 0 && TargetRegisterInfo::isPhysicalRegister(SrcReg2)))
Bill Wendlingca678352010-08-09 23:59:04 +0000652 return false;
653
Bill Wendling27dddd12010-09-11 00:13:50 +0000654 // Attempt to optimize the comparison instruction.
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000655 if (TII->optimizeCompareInstr(*MI, SrcReg, SrcReg2, CmpMask, CmpValue, MRI)) {
Evan Chenge4b8ac92011-03-15 05:13:13 +0000656 ++NumCmps;
Bill Wendlingca678352010-08-09 23:59:04 +0000657 return true;
658 }
659
660 return false;
661}
662
Jakob Stoklund Olesen2382d322012-08-16 23:11:47 +0000663/// Optimize a select instruction.
Mehdi Amini22e59742015-01-13 07:07:13 +0000664bool PeepholeOptimizer::optimizeSelect(MachineInstr *MI,
665 SmallPtrSetImpl<MachineInstr *> &LocalMIs) {
Jakob Stoklund Olesen2382d322012-08-16 23:11:47 +0000666 unsigned TrueOp = 0;
667 unsigned FalseOp = 0;
668 bool Optimizable = false;
669 SmallVector<MachineOperand, 4> Cond;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000670 if (TII->analyzeSelect(*MI, Cond, TrueOp, FalseOp, Optimizable))
Jakob Stoklund Olesen2382d322012-08-16 23:11:47 +0000671 return false;
672 if (!Optimizable)
673 return false;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000674 if (!TII->optimizeSelect(*MI, LocalMIs))
Jakob Stoklund Olesen2382d322012-08-16 23:11:47 +0000675 return false;
676 MI->eraseFromParent();
677 ++NumSelects;
678 return true;
679}
680
Gerolf Hoflehnera4c96d02014-10-14 23:07:53 +0000681/// \brief Check if a simpler conditional branch can be
Eugene Zelenko32a40562017-09-11 23:00:48 +0000682/// generated
Gerolf Hoflehnera4c96d02014-10-14 23:07:53 +0000683bool PeepholeOptimizer::optimizeCondBranch(MachineInstr *MI) {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000684 return TII->optimizeCondBranch(*MI);
Gerolf Hoflehnera4c96d02014-10-14 23:07:53 +0000685}
686
Quentin Colombet03e43f82014-08-20 17:41:48 +0000687/// \brief Try to find the next source that share the same register file
688/// for the value defined by \p Reg and \p SubReg.
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000689/// When true is returned, the \p RewriteMap can be used by the client to
690/// retrieve all Def -> Use along the way up to the next source. Any found
691/// Use that is not itself a key for another entry, is the next source to
692/// use. During the search for the next source, multiple sources can be found
693/// given multiple incoming sources of a PHI instruction. In this case, we
694/// look in each PHI source for the next source; all found next sources must
695/// share the same register file as \p Reg and \p SubReg. The client should
696/// then be capable to rewrite all intermediate PHIs to get the next source.
Quentin Colombet03e43f82014-08-20 17:41:48 +0000697/// \return False if no alternative sources are available. True otherwise.
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000698bool PeepholeOptimizer::findNextSource(unsigned Reg, unsigned SubReg,
699 RewriteMapTy &RewriteMap) {
Quentin Colombet03e43f82014-08-20 17:41:48 +0000700 // Do not try to find a new source for a physical register.
701 // So far we do not have any motivating example for doing that.
702 // Thus, instead of maintaining untested code, we will revisit that if
703 // that changes at some point.
704 if (TargetRegisterInfo::isPhysicalRegister(Reg))
Quentin Colombetcf71c632013-09-13 18:26:31 +0000705 return false;
Bruno Cardoso Lopes38c02502015-07-29 17:46:47 +0000706 const TargetRegisterClass *DefRC = MRI->getRegClass(Reg);
Bruno Cardoso Lopes38c02502015-07-29 17:46:47 +0000707
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000708 SmallVector<TargetInstrInfo::RegSubRegPair, 4> SrcToLook;
709 TargetInstrInfo::RegSubRegPair CurSrcPair(Reg, SubReg);
710 SrcToLook.push_back(CurSrcPair);
Quentin Colombetcf71c632013-09-13 18:26:31 +0000711
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000712 unsigned PHICount = 0;
713 while (!SrcToLook.empty() && PHICount < RewritePHILimit) {
714 TargetInstrInfo::RegSubRegPair Pair = SrcToLook.pop_back_val();
715 // As explained above, do not handle physical registers
716 if (TargetRegisterInfo::isPhysicalRegister(Pair.Reg))
717 return false;
Quentin Colombetcf71c632013-09-13 18:26:31 +0000718
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000719 CurSrcPair = Pair;
720 ValueTracker ValTracker(CurSrcPair.Reg, CurSrcPair.SubReg, *MRI,
721 !DisableAdvCopyOpt, TII);
722 ValueTrackerResult Res;
723 bool ShouldRewrite = false;
Quentin Colombetcf71c632013-09-13 18:26:31 +0000724
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000725 do {
726 // Follow the chain of copies until we reach the top of the use-def chain
727 // or find a more suitable source.
728 Res = ValTracker.getNextSource();
729 if (!Res.isValid())
730 break;
Quentin Colombetcf71c632013-09-13 18:26:31 +0000731
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000732 // Insert the Def -> Use entry for the recently found source.
733 ValueTrackerResult CurSrcRes = RewriteMap.lookup(CurSrcPair);
734 if (CurSrcRes.isValid()) {
735 assert(CurSrcRes == Res && "ValueTrackerResult found must match");
736 // An existent entry with multiple sources is a PHI cycle we must avoid.
737 // Otherwise it's an entry with a valid next source we already found.
738 if (CurSrcRes.getNumSources() > 1) {
739 DEBUG(dbgs() << "findNextSource: found PHI cycle, aborting...\n");
740 return false;
741 }
742 break;
743 }
744 RewriteMap.insert(std::make_pair(CurSrcPair, Res));
745
746 // ValueTrackerResult usually have one source unless it's the result from
747 // a PHI instruction. Add the found PHI edges to be looked up further.
748 unsigned NumSrcs = Res.getNumSources();
749 if (NumSrcs > 1) {
750 PHICount++;
751 for (unsigned i = 0; i < NumSrcs; ++i)
752 SrcToLook.push_back(TargetInstrInfo::RegSubRegPair(
753 Res.getSrcReg(i), Res.getSrcSubReg(i)));
754 break;
755 }
756
757 CurSrcPair.Reg = Res.getSrcReg(0);
758 CurSrcPair.SubReg = Res.getSrcSubReg(0);
759 // Do not extend the live-ranges of physical registers as they add
760 // constraints to the register allocator. Moreover, if we want to extend
761 // the live-range of a physical register, unlike SSA virtual register,
762 // we will have to check that they aren't redefine before the related use.
763 if (TargetRegisterInfo::isPhysicalRegister(CurSrcPair.Reg))
764 return false;
765
766 const TargetRegisterClass *SrcRC = MRI->getRegClass(CurSrcPair.Reg);
Matt Arsenault68d93862015-09-24 08:36:14 +0000767 ShouldRewrite = TRI->shouldRewriteCopySrc(DefRC, SubReg, SrcRC,
768 CurSrcPair.SubReg);
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000769 } while (!ShouldRewrite);
770
771 // Continue looking for new sources...
772 if (Res.isValid())
773 continue;
774
775 // Do not continue searching for a new source if the there's at least
776 // one use-def which cannot be rewritten.
777 if (!ShouldRewrite)
778 return false;
779 }
780
781 if (PHICount >= RewritePHILimit) {
782 DEBUG(dbgs() << "findNextSource: PHI limit reached\n");
783 return false;
784 }
Quentin Colombetcf71c632013-09-13 18:26:31 +0000785
786 // If we did not find a more suitable source, there is nothing to optimize.
Rafael Espindola84921b92015-10-24 23:11:13 +0000787 return CurSrcPair.Reg != Reg;
Quentin Colombet03e43f82014-08-20 17:41:48 +0000788}
Quentin Colombetcf71c632013-09-13 18:26:31 +0000789
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000790/// \brief Insert a PHI instruction with incoming edges \p SrcRegs that are
791/// guaranteed to have the same register class. This is necessary whenever we
792/// successfully traverse a PHI instruction and find suitable sources coming
793/// from its edges. By inserting a new PHI, we provide a rewritten PHI def
794/// suitable to be used in a new COPY instruction.
Benjamin Kramerfcdb1c12015-08-20 09:57:22 +0000795static MachineInstr *
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000796insertPHI(MachineRegisterInfo *MRI, const TargetInstrInfo *TII,
797 const SmallVectorImpl<TargetInstrInfo::RegSubRegPair> &SrcRegs,
798 MachineInstr *OrigPHI) {
799 assert(!SrcRegs.empty() && "No sources to create a PHI instruction?");
800
801 const TargetRegisterClass *NewRC = MRI->getRegClass(SrcRegs[0].Reg);
802 unsigned NewVR = MRI->createVirtualRegister(NewRC);
803 MachineBasicBlock *MBB = OrigPHI->getParent();
804 MachineInstrBuilder MIB = BuildMI(*MBB, OrigPHI, OrigPHI->getDebugLoc(),
805 TII->get(TargetOpcode::PHI), NewVR);
806
807 unsigned MBBOpIdx = 2;
808 for (auto RegPair : SrcRegs) {
809 MIB.addReg(RegPair.Reg, 0, RegPair.SubReg);
810 MIB.addMBB(OrigPHI->getOperand(MBBOpIdx).getMBB());
811 // Since we're extended the lifetime of RegPair.Reg, clear the
812 // kill flags to account for that and make RegPair.Reg reaches
813 // the new PHI.
814 MRI->clearKillFlags(RegPair.Reg);
815 MBBOpIdx += 2;
816 }
817
818 return MIB;
819}
820
Quentin Colombet03e43f82014-08-20 17:41:48 +0000821namespace {
Eugene Zelenko1804a772016-08-25 00:45:04 +0000822
Quentin Colombet03e43f82014-08-20 17:41:48 +0000823/// \brief Helper class to rewrite the arguments of a copy-like instruction.
824class CopyRewriter {
825protected:
826 /// The copy-like instruction.
827 MachineInstr &CopyLike;
Eugene Zelenko32a40562017-09-11 23:00:48 +0000828
Quentin Colombet03e43f82014-08-20 17:41:48 +0000829 /// The index of the source being rewritten.
Eugene Zelenko32a40562017-09-11 23:00:48 +0000830 unsigned CurrentSrcIdx = 0;
Quentin Colombet03e43f82014-08-20 17:41:48 +0000831
832public:
Eugene Zelenko32a40562017-09-11 23:00:48 +0000833 CopyRewriter(MachineInstr &MI) : CopyLike(MI) {}
834 virtual ~CopyRewriter() = default;
Quentin Colombet03e43f82014-08-20 17:41:48 +0000835
836 /// \brief Get the next rewritable source (SrcReg, SrcSubReg) and
837 /// the related value that it affects (TrackReg, TrackSubReg).
838 /// A source is considered rewritable if its register class and the
839 /// register class of the related TrackReg may not be register
840 /// coalescer friendly. In other words, given a copy-like instruction
841 /// not all the arguments may be returned at rewritable source, since
842 /// some arguments are none to be register coalescer friendly.
843 ///
844 /// Each call of this method moves the current source to the next
845 /// rewritable source.
846 /// For instance, let CopyLike be the instruction to rewrite.
847 /// CopyLike has one definition and one source:
848 /// dst.dstSubIdx = CopyLike src.srcSubIdx.
849 ///
850 /// The first call will give the first rewritable source, i.e.,
851 /// the only source this instruction has:
852 /// (SrcReg, SrcSubReg) = (src, srcSubIdx).
853 /// This source defines the whole definition, i.e.,
854 /// (TrackReg, TrackSubReg) = (dst, dstSubIdx).
855 ///
Matt Arsenault30991562015-09-09 00:38:33 +0000856 /// The second and subsequent calls will return false, as there is only one
Quentin Colombet03e43f82014-08-20 17:41:48 +0000857 /// rewritable source.
858 ///
859 /// \return True if a rewritable source has been found, false otherwise.
860 /// The output arguments are valid if and only if true is returned.
861 virtual bool getNextRewritableSource(unsigned &SrcReg, unsigned &SrcSubReg,
862 unsigned &TrackReg,
863 unsigned &TrackSubReg) {
Matt Arsenault30991562015-09-09 00:38:33 +0000864 // If CurrentSrcIdx == 1, this means this function has already been called
865 // once. CopyLike has one definition and one argument, thus, there is
866 // nothing else to rewrite.
Quentin Colombet03e43f82014-08-20 17:41:48 +0000867 if (!CopyLike.isCopy() || CurrentSrcIdx == 1)
868 return false;
869 // This is the first call to getNextRewritableSource.
870 // Move the CurrentSrcIdx to remember that we made that call.
871 CurrentSrcIdx = 1;
872 // The rewritable source is the argument.
873 const MachineOperand &MOSrc = CopyLike.getOperand(1);
874 SrcReg = MOSrc.getReg();
875 SrcSubReg = MOSrc.getSubReg();
876 // What we track are the alternative sources of the definition.
877 const MachineOperand &MODef = CopyLike.getOperand(0);
878 TrackReg = MODef.getReg();
879 TrackSubReg = MODef.getSubReg();
880 return true;
881 }
882
883 /// \brief Rewrite the current source with \p NewReg and \p NewSubReg
884 /// if possible.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000885 /// \return True if the rewriting was possible, false otherwise.
Quentin Colombet03e43f82014-08-20 17:41:48 +0000886 virtual bool RewriteCurrentSource(unsigned NewReg, unsigned NewSubReg) {
887 if (!CopyLike.isCopy() || CurrentSrcIdx != 1)
888 return false;
889 MachineOperand &MOSrc = CopyLike.getOperand(CurrentSrcIdx);
890 MOSrc.setReg(NewReg);
891 MOSrc.setSubReg(NewSubReg);
892 return true;
893 }
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000894
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000895 /// \brief Given a \p Def.Reg and Def.SubReg pair, use \p RewriteMap to find
896 /// the new source to use for rewrite. If \p HandleMultipleSources is true and
897 /// multiple sources for a given \p Def are found along the way, we found a
898 /// PHI instructions that needs to be rewritten.
899 /// TODO: HandleMultipleSources should be removed once we test PHI handling
900 /// with coalescable copies.
901 TargetInstrInfo::RegSubRegPair
902 getNewSource(MachineRegisterInfo *MRI, const TargetInstrInfo *TII,
903 TargetInstrInfo::RegSubRegPair Def,
904 PeepholeOptimizer::RewriteMapTy &RewriteMap,
905 bool HandleMultipleSources = true) {
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000906 TargetInstrInfo::RegSubRegPair LookupSrc(Def.Reg, Def.SubReg);
907 do {
908 ValueTrackerResult Res = RewriteMap.lookup(LookupSrc);
909 // If there are no entries on the map, LookupSrc is the new source.
910 if (!Res.isValid())
911 return LookupSrc;
912
913 // There's only one source for this definition, keep searching...
914 unsigned NumSrcs = Res.getNumSources();
915 if (NumSrcs == 1) {
916 LookupSrc.Reg = Res.getSrcReg(0);
917 LookupSrc.SubReg = Res.getSrcSubReg(0);
918 continue;
919 }
920
Matt Arsenault30991562015-09-09 00:38:33 +0000921 // TODO: Remove once multiple srcs w/ coalescable copies are supported.
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000922 if (!HandleMultipleSources)
923 break;
924
925 // Multiple sources, recurse into each source to find a new source
926 // for it. Then, rewrite the PHI accordingly to its new edges.
927 SmallVector<TargetInstrInfo::RegSubRegPair, 4> NewPHISrcs;
928 for (unsigned i = 0; i < NumSrcs; ++i) {
929 TargetInstrInfo::RegSubRegPair PHISrc(Res.getSrcReg(i),
930 Res.getSrcSubReg(i));
931 NewPHISrcs.push_back(
932 getNewSource(MRI, TII, PHISrc, RewriteMap, HandleMultipleSources));
933 }
934
935 // Build the new PHI node and return its def register as the new source.
936 MachineInstr *OrigPHI = const_cast<MachineInstr *>(Res.getInst());
937 MachineInstr *NewPHI = insertPHI(MRI, TII, NewPHISrcs, OrigPHI);
938 DEBUG(dbgs() << "-- getNewSource\n");
939 DEBUG(dbgs() << " Replacing: " << *OrigPHI);
940 DEBUG(dbgs() << " With: " << *NewPHI);
941 const MachineOperand &MODef = NewPHI->getOperand(0);
942 return TargetInstrInfo::RegSubRegPair(MODef.getReg(), MODef.getSubReg());
943
Eugene Zelenko1804a772016-08-25 00:45:04 +0000944 } while (true);
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000945
946 return TargetInstrInfo::RegSubRegPair(0, 0);
947 }
948
949 /// \brief Rewrite the source found through \p Def, by using the \p RewriteMap
950 /// and create a new COPY instruction. More info about RewriteMap in
951 /// PeepholeOptimizer::findNextSource. Right now this is only used to handle
952 /// Uncoalescable copies, since they are copy like instructions that aren't
953 /// recognized by the register allocator.
954 virtual MachineInstr *
955 RewriteSource(TargetInstrInfo::RegSubRegPair Def,
956 PeepholeOptimizer::RewriteMapTy &RewriteMap) {
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000957 return nullptr;
958 }
959};
960
961/// \brief Helper class to rewrite uncoalescable copy like instructions
962/// into new COPY (coalescable friendly) instructions.
963class UncoalescableRewriter : public CopyRewriter {
964protected:
965 const TargetInstrInfo &TII;
966 MachineRegisterInfo &MRI;
Eugene Zelenko32a40562017-09-11 23:00:48 +0000967
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000968 /// The number of defs in the bitcast
969 unsigned NumDefs;
970
971public:
972 UncoalescableRewriter(MachineInstr &MI, const TargetInstrInfo &TII,
973 MachineRegisterInfo &MRI)
974 : CopyRewriter(MI), TII(TII), MRI(MRI) {
975 NumDefs = MI.getDesc().getNumDefs();
976 }
977
978 /// \brief Get the next rewritable def source (TrackReg, TrackSubReg)
979 /// All such sources need to be considered rewritable in order to
980 /// rewrite a uncoalescable copy-like instruction. This method return
981 /// each definition that must be checked if rewritable.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000982 bool getNextRewritableSource(unsigned &SrcReg, unsigned &SrcSubReg,
983 unsigned &TrackReg,
984 unsigned &TrackSubReg) override {
985 // Find the next non-dead definition and continue from there.
986 if (CurrentSrcIdx == NumDefs)
987 return false;
988
989 while (CopyLike.getOperand(CurrentSrcIdx).isDead()) {
990 ++CurrentSrcIdx;
991 if (CurrentSrcIdx == NumDefs)
992 return false;
993 }
994
995 // What we track are the alternative sources of the definition.
996 const MachineOperand &MODef = CopyLike.getOperand(CurrentSrcIdx);
997 TrackReg = MODef.getReg();
998 TrackSubReg = MODef.getSubReg();
999
1000 CurrentSrcIdx++;
1001 return true;
1002 }
1003
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00001004 /// \brief Rewrite the source found through \p Def, by using the \p RewriteMap
1005 /// and create a new COPY instruction. More info about RewriteMap in
1006 /// PeepholeOptimizer::findNextSource. Right now this is only used to handle
1007 /// Uncoalescable copies, since they are copy like instructions that aren't
1008 /// recognized by the register allocator.
1009 MachineInstr *
1010 RewriteSource(TargetInstrInfo::RegSubRegPair Def,
1011 PeepholeOptimizer::RewriteMapTy &RewriteMap) override {
1012 assert(!TargetRegisterInfo::isPhysicalRegister(Def.Reg) &&
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001013 "We do not rewrite physical registers");
1014
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00001015 // Find the new source to use in the COPY rewrite.
1016 TargetInstrInfo::RegSubRegPair NewSrc =
1017 getNewSource(&MRI, &TII, Def, RewriteMap);
1018
1019 // Insert the COPY.
1020 const TargetRegisterClass *DefRC = MRI.getRegClass(Def.Reg);
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001021 unsigned NewVR = MRI.createVirtualRegister(DefRC);
1022
1023 MachineInstr *NewCopy =
1024 BuildMI(*CopyLike.getParent(), &CopyLike, CopyLike.getDebugLoc(),
1025 TII.get(TargetOpcode::COPY), NewVR)
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00001026 .addReg(NewSrc.Reg, 0, NewSrc.SubReg);
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001027
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00001028 NewCopy->getOperand(0).setSubReg(Def.SubReg);
1029 if (Def.SubReg)
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001030 NewCopy->getOperand(0).setIsUndef();
1031
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00001032 DEBUG(dbgs() << "-- RewriteSource\n");
1033 DEBUG(dbgs() << " Replacing: " << CopyLike);
1034 DEBUG(dbgs() << " With: " << *NewCopy);
1035 MRI.replaceRegWith(Def.Reg, NewVR);
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001036 MRI.clearKillFlags(NewVR);
1037
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00001038 // We extended the lifetime of NewSrc.Reg, clear the kill flags to
1039 // account for that.
1040 MRI.clearKillFlags(NewSrc.Reg);
1041
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001042 return NewCopy;
1043 }
Quentin Colombet03e43f82014-08-20 17:41:48 +00001044};
1045
1046/// \brief Specialized rewriter for INSERT_SUBREG instruction.
1047class InsertSubregRewriter : public CopyRewriter {
1048public:
1049 InsertSubregRewriter(MachineInstr &MI) : CopyRewriter(MI) {
1050 assert(MI.isInsertSubreg() && "Invalid instruction");
1051 }
1052
1053 /// \brief See CopyRewriter::getNextRewritableSource.
1054 /// Here CopyLike has the following form:
1055 /// dst = INSERT_SUBREG Src1, Src2.src2SubIdx, subIdx.
1056 /// Src1 has the same register class has dst, hence, there is
1057 /// nothing to rewrite.
1058 /// Src2.src2SubIdx, may not be register coalescer friendly.
1059 /// Therefore, the first call to this method returns:
1060 /// (SrcReg, SrcSubReg) = (Src2, src2SubIdx).
1061 /// (TrackReg, TrackSubReg) = (dst, subIdx).
1062 ///
1063 /// Subsequence calls will return false.
1064 bool getNextRewritableSource(unsigned &SrcReg, unsigned &SrcSubReg,
1065 unsigned &TrackReg,
1066 unsigned &TrackSubReg) override {
1067 // If we already get the only source we can rewrite, return false.
1068 if (CurrentSrcIdx == 2)
1069 return false;
1070 // We are looking at v2 = INSERT_SUBREG v0, v1, sub0.
1071 CurrentSrcIdx = 2;
1072 const MachineOperand &MOInsertedReg = CopyLike.getOperand(2);
1073 SrcReg = MOInsertedReg.getReg();
1074 SrcSubReg = MOInsertedReg.getSubReg();
1075 const MachineOperand &MODef = CopyLike.getOperand(0);
1076
1077 // We want to track something that is compatible with the
1078 // partial definition.
1079 TrackReg = MODef.getReg();
1080 if (MODef.getSubReg())
Matt Arsenault30991562015-09-09 00:38:33 +00001081 // Bail if we have to compose sub-register indices.
Quentin Colombet03e43f82014-08-20 17:41:48 +00001082 return false;
1083 TrackSubReg = (unsigned)CopyLike.getOperand(3).getImm();
1084 return true;
1085 }
Eugene Zelenko1804a772016-08-25 00:45:04 +00001086
Quentin Colombet03e43f82014-08-20 17:41:48 +00001087 bool RewriteCurrentSource(unsigned NewReg, unsigned NewSubReg) override {
1088 if (CurrentSrcIdx != 2)
1089 return false;
1090 // We are rewriting the inserted reg.
1091 MachineOperand &MO = CopyLike.getOperand(CurrentSrcIdx);
1092 MO.setReg(NewReg);
1093 MO.setSubReg(NewSubReg);
1094 return true;
1095 }
1096};
1097
1098/// \brief Specialized rewriter for EXTRACT_SUBREG instruction.
1099class ExtractSubregRewriter : public CopyRewriter {
1100 const TargetInstrInfo &TII;
1101
1102public:
1103 ExtractSubregRewriter(MachineInstr &MI, const TargetInstrInfo &TII)
1104 : CopyRewriter(MI), TII(TII) {
1105 assert(MI.isExtractSubreg() && "Invalid instruction");
1106 }
1107
1108 /// \brief See CopyRewriter::getNextRewritableSource.
1109 /// Here CopyLike has the following form:
1110 /// dst.dstSubIdx = EXTRACT_SUBREG Src, subIdx.
1111 /// There is only one rewritable source: Src.subIdx,
1112 /// which defines dst.dstSubIdx.
1113 bool getNextRewritableSource(unsigned &SrcReg, unsigned &SrcSubReg,
1114 unsigned &TrackReg,
1115 unsigned &TrackSubReg) override {
1116 // If we already get the only source we can rewrite, return false.
1117 if (CurrentSrcIdx == 1)
1118 return false;
1119 // We are looking at v1 = EXTRACT_SUBREG v0, sub0.
1120 CurrentSrcIdx = 1;
1121 const MachineOperand &MOExtractedReg = CopyLike.getOperand(1);
1122 SrcReg = MOExtractedReg.getReg();
Matt Arsenault30991562015-09-09 00:38:33 +00001123 // If we have to compose sub-register indices, bail out.
Quentin Colombet03e43f82014-08-20 17:41:48 +00001124 if (MOExtractedReg.getSubReg())
1125 return false;
1126
1127 SrcSubReg = CopyLike.getOperand(2).getImm();
1128
1129 // We want to track something that is compatible with the definition.
1130 const MachineOperand &MODef = CopyLike.getOperand(0);
1131 TrackReg = MODef.getReg();
1132 TrackSubReg = MODef.getSubReg();
1133 return true;
1134 }
1135
1136 bool RewriteCurrentSource(unsigned NewReg, unsigned NewSubReg) override {
1137 // The only source we can rewrite is the input register.
1138 if (CurrentSrcIdx != 1)
1139 return false;
1140
1141 CopyLike.getOperand(CurrentSrcIdx).setReg(NewReg);
1142
1143 // If we find a source that does not require to extract something,
1144 // rewrite the operation with a copy.
1145 if (!NewSubReg) {
1146 // Move the current index to an invalid position.
1147 // We do not want another call to this method to be able
1148 // to do any change.
1149 CurrentSrcIdx = -1;
1150 // Rewrite the operation as a COPY.
1151 // Get rid of the sub-register index.
1152 CopyLike.RemoveOperand(2);
1153 // Morph the operation into a COPY.
1154 CopyLike.setDesc(TII.get(TargetOpcode::COPY));
1155 return true;
1156 }
1157 CopyLike.getOperand(CurrentSrcIdx + 1).setImm(NewSubReg);
1158 return true;
1159 }
1160};
1161
1162/// \brief Specialized rewriter for REG_SEQUENCE instruction.
1163class RegSequenceRewriter : public CopyRewriter {
1164public:
1165 RegSequenceRewriter(MachineInstr &MI) : CopyRewriter(MI) {
1166 assert(MI.isRegSequence() && "Invalid instruction");
1167 }
1168
1169 /// \brief See CopyRewriter::getNextRewritableSource.
1170 /// Here CopyLike has the following form:
1171 /// dst = REG_SEQUENCE Src1.src1SubIdx, subIdx1, Src2.src2SubIdx, subIdx2.
1172 /// Each call will return a different source, walking all the available
1173 /// source.
1174 ///
1175 /// The first call returns:
1176 /// (SrcReg, SrcSubReg) = (Src1, src1SubIdx).
1177 /// (TrackReg, TrackSubReg) = (dst, subIdx1).
1178 ///
1179 /// The second call returns:
1180 /// (SrcReg, SrcSubReg) = (Src2, src2SubIdx).
1181 /// (TrackReg, TrackSubReg) = (dst, subIdx2).
1182 ///
1183 /// And so on, until all the sources have been traversed, then
1184 /// it returns false.
1185 bool getNextRewritableSource(unsigned &SrcReg, unsigned &SrcSubReg,
1186 unsigned &TrackReg,
1187 unsigned &TrackSubReg) override {
1188 // We are looking at v0 = REG_SEQUENCE v1, sub1, v2, sub2, etc.
1189
1190 // If this is the first call, move to the first argument.
1191 if (CurrentSrcIdx == 0) {
1192 CurrentSrcIdx = 1;
1193 } else {
1194 // Otherwise, move to the next argument and check that it is valid.
1195 CurrentSrcIdx += 2;
1196 if (CurrentSrcIdx >= CopyLike.getNumOperands())
1197 return false;
1198 }
1199 const MachineOperand &MOInsertedReg = CopyLike.getOperand(CurrentSrcIdx);
1200 SrcReg = MOInsertedReg.getReg();
Matt Arsenault30991562015-09-09 00:38:33 +00001201 // If we have to compose sub-register indices, bail out.
Quentin Colombet03e43f82014-08-20 17:41:48 +00001202 if ((SrcSubReg = MOInsertedReg.getSubReg()))
1203 return false;
1204
1205 // We want to track something that is compatible with the related
1206 // partial definition.
1207 TrackSubReg = CopyLike.getOperand(CurrentSrcIdx + 1).getImm();
1208
1209 const MachineOperand &MODef = CopyLike.getOperand(0);
1210 TrackReg = MODef.getReg();
Matt Arsenault30991562015-09-09 00:38:33 +00001211 // If we have to compose sub-registers, bail.
Quentin Colombet03e43f82014-08-20 17:41:48 +00001212 return MODef.getSubReg() == 0;
1213 }
1214
1215 bool RewriteCurrentSource(unsigned NewReg, unsigned NewSubReg) override {
1216 // We cannot rewrite out of bound operands.
1217 // Moreover, rewritable sources are at odd positions.
1218 if ((CurrentSrcIdx & 1) != 1 || CurrentSrcIdx > CopyLike.getNumOperands())
1219 return false;
1220
1221 MachineOperand &MO = CopyLike.getOperand(CurrentSrcIdx);
1222 MO.setReg(NewReg);
1223 MO.setSubReg(NewSubReg);
1224 return true;
1225 }
1226};
Eugene Zelenko1804a772016-08-25 00:45:04 +00001227
Eugene Zelenko32a40562017-09-11 23:00:48 +00001228} // end anonymous namespace
Quentin Colombet03e43f82014-08-20 17:41:48 +00001229
1230/// \brief Get the appropriated CopyRewriter for \p MI.
1231/// \return A pointer to a dynamically allocated CopyRewriter or nullptr
1232/// if no rewriter works for \p MI.
1233static CopyRewriter *getCopyRewriter(MachineInstr &MI,
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001234 const TargetInstrInfo &TII,
1235 MachineRegisterInfo &MRI) {
1236 // Handle uncoalescable copy-like instructions.
1237 if (MI.isBitcast() || (MI.isRegSequenceLike() || MI.isInsertSubregLike() ||
1238 MI.isExtractSubregLike()))
1239 return new UncoalescableRewriter(MI, TII, MRI);
1240
Quentin Colombet03e43f82014-08-20 17:41:48 +00001241 switch (MI.getOpcode()) {
1242 default:
1243 return nullptr;
1244 case TargetOpcode::COPY:
1245 return new CopyRewriter(MI);
1246 case TargetOpcode::INSERT_SUBREG:
1247 return new InsertSubregRewriter(MI);
1248 case TargetOpcode::EXTRACT_SUBREG:
1249 return new ExtractSubregRewriter(MI, TII);
1250 case TargetOpcode::REG_SEQUENCE:
1251 return new RegSequenceRewriter(MI);
1252 }
1253 llvm_unreachable(nullptr);
1254}
1255
1256/// \brief Optimize generic copy instructions to avoid cross
1257/// register bank copy. The optimization looks through a chain of
1258/// copies and tries to find a source that has a compatible register
1259/// class.
1260/// Two register classes are considered to be compatible if they share
1261/// the same register bank.
1262/// New copies issued by this optimization are register allocator
1263/// friendly. This optimization does not remove any copy as it may
Matt Arsenault30991562015-09-09 00:38:33 +00001264/// overconstrain the register allocator, but replaces some operands
Quentin Colombet03e43f82014-08-20 17:41:48 +00001265/// when possible.
1266/// \pre isCoalescableCopy(*MI) is true.
1267/// \return True, when \p MI has been rewritten. False otherwise.
1268bool PeepholeOptimizer::optimizeCoalescableCopy(MachineInstr *MI) {
1269 assert(MI && isCoalescableCopy(*MI) && "Invalid argument");
1270 assert(MI->getDesc().getNumDefs() == 1 &&
1271 "Coalescer can understand multiple defs?!");
1272 const MachineOperand &MODef = MI->getOperand(0);
1273 // Do not rewrite physical definitions.
1274 if (TargetRegisterInfo::isPhysicalRegister(MODef.getReg()))
1275 return false;
1276
1277 bool Changed = false;
1278 // Get the right rewriter for the current copy.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001279 std::unique_ptr<CopyRewriter> CpyRewriter(getCopyRewriter(*MI, *TII, *MRI));
Matt Arsenault30991562015-09-09 00:38:33 +00001280 // If none exists, bail out.
Quentin Colombet03e43f82014-08-20 17:41:48 +00001281 if (!CpyRewriter)
1282 return false;
1283 // Rewrite each rewritable source.
1284 unsigned SrcReg, SrcSubReg, TrackReg, TrackSubReg;
1285 while (CpyRewriter->getNextRewritableSource(SrcReg, SrcSubReg, TrackReg,
1286 TrackSubReg)) {
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00001287 // Keep track of PHI nodes and its incoming edges when looking for sources.
1288 RewriteMapTy RewriteMap;
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001289 // Try to find a more suitable source. If we failed to do so, or get the
1290 // actual source, move to the next source.
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00001291 if (!findNextSource(TrackReg, TrackSubReg, RewriteMap))
Quentin Colombet03e43f82014-08-20 17:41:48 +00001292 continue;
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00001293
1294 // Get the new source to rewrite. TODO: Only enable handling of multiple
1295 // sources (PHIs) once we have a motivating example and testcases for it.
1296 TargetInstrInfo::RegSubRegPair TrackPair(TrackReg, TrackSubReg);
1297 TargetInstrInfo::RegSubRegPair NewSrc = CpyRewriter->getNewSource(
1298 MRI, TII, TrackPair, RewriteMap, false /* multiple sources */);
1299 if (SrcReg == NewSrc.Reg || NewSrc.Reg == 0)
1300 continue;
1301
Quentin Colombet03e43f82014-08-20 17:41:48 +00001302 // Rewrite source.
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00001303 if (CpyRewriter->RewriteCurrentSource(NewSrc.Reg, NewSrc.SubReg)) {
Quentin Colombet6b363372014-08-21 21:34:06 +00001304 // We may have extended the live-range of NewSrc, account for that.
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00001305 MRI->clearKillFlags(NewSrc.Reg);
Quentin Colombet6b363372014-08-21 21:34:06 +00001306 Changed = true;
1307 }
Quentin Colombet03e43f82014-08-20 17:41:48 +00001308 }
1309 // TODO: We could have a clean-up method to tidy the instruction.
1310 // E.g., v0 = INSERT_SUBREG v1, v1.sub0, sub0
1311 // => v0 = COPY v1
1312 // Currently we haven't seen motivating example for that and we
1313 // want to avoid untested code.
David Blaikiedc3f01e2015-03-09 01:57:13 +00001314 NumRewrittenCopies += Changed;
Quentin Colombet03e43f82014-08-20 17:41:48 +00001315 return Changed;
1316}
1317
1318/// \brief Optimize copy-like instructions to create
1319/// register coalescer friendly instruction.
1320/// The optimization tries to kill-off the \p MI by looking
1321/// through a chain of copies to find a source that has a compatible
1322/// register class.
1323/// If such a source is found, it replace \p MI by a generic COPY
1324/// operation.
1325/// \pre isUncoalescableCopy(*MI) is true.
1326/// \return True, when \p MI has been optimized. In that case, \p MI has
1327/// been removed from its parent.
1328/// All COPY instructions created, are inserted in \p LocalMIs.
1329bool PeepholeOptimizer::optimizeUncoalescableCopy(
1330 MachineInstr *MI, SmallPtrSetImpl<MachineInstr *> &LocalMIs) {
1331 assert(MI && isUncoalescableCopy(*MI) && "Invalid argument");
1332
1333 // Check if we can rewrite all the values defined by this instruction.
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00001334 SmallVector<TargetInstrInfo::RegSubRegPair, 4> RewritePairs;
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001335 // Get the right rewriter for the current copy.
1336 std::unique_ptr<CopyRewriter> CpyRewriter(getCopyRewriter(*MI, *TII, *MRI));
Matt Arsenault30991562015-09-09 00:38:33 +00001337 // If none exists, bail out.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001338 if (!CpyRewriter)
1339 return false;
Quentin Colombet03e43f82014-08-20 17:41:48 +00001340
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001341 // Rewrite each rewritable source by generating new COPYs. This works
1342 // differently from optimizeCoalescableCopy since it first makes sure that all
1343 // definitions can be rewritten.
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00001344 RewriteMapTy RewriteMap;
1345 unsigned Reg, SubReg, CopyDefReg, CopyDefSubReg;
1346 while (CpyRewriter->getNextRewritableSource(Reg, SubReg, CopyDefReg,
1347 CopyDefSubReg)) {
Quentin Colombet03e43f82014-08-20 17:41:48 +00001348 // If a physical register is here, this is probably for a good reason.
1349 // Do not rewrite that.
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00001350 if (TargetRegisterInfo::isPhysicalRegister(CopyDefReg))
Quentin Colombet03e43f82014-08-20 17:41:48 +00001351 return false;
1352
1353 // If we do not know how to rewrite this definition, there is no point
1354 // in trying to kill this instruction.
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00001355 TargetInstrInfo::RegSubRegPair Def(CopyDefReg, CopyDefSubReg);
1356 if (!findNextSource(Def.Reg, Def.SubReg, RewriteMap))
Quentin Colombet03e43f82014-08-20 17:41:48 +00001357 return false;
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001358
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00001359 RewritePairs.push_back(Def);
Quentin Colombet03e43f82014-08-20 17:41:48 +00001360 }
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001361
Quentin Colombet03e43f82014-08-20 17:41:48 +00001362 // The change is possible for all defs, do it.
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00001363 for (const auto &Def : RewritePairs) {
Quentin Colombet03e43f82014-08-20 17:41:48 +00001364 // Rewrite the "copy" in a way the register coalescer understands.
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00001365 MachineInstr *NewCopy = CpyRewriter->RewriteSource(Def, RewriteMap);
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001366 assert(NewCopy && "Should be able to always generate a new copy");
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001367 LocalMIs.insert(NewCopy);
Quentin Colombet03e43f82014-08-20 17:41:48 +00001368 }
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00001369
Quentin Colombet03e43f82014-08-20 17:41:48 +00001370 // MI is now dead.
Quentin Colombetcf71c632013-09-13 18:26:31 +00001371 MI->eraseFromParent();
Quentin Colombet03e43f82014-08-20 17:41:48 +00001372 ++NumUncoalescableCopies;
Quentin Colombetcf71c632013-09-13 18:26:31 +00001373 return true;
1374}
1375
Sanjay Patel59309cc2015-12-29 18:14:06 +00001376/// Check whether MI is a candidate for folding into a later instruction.
1377/// We only fold loads to virtual registers and the virtual register defined
1378/// has a single use.
Lang Hames5dc14bd2014-04-02 22:59:58 +00001379bool PeepholeOptimizer::isLoadFoldable(
Sanjay Patelb120ae92015-12-29 19:34:53 +00001380 MachineInstr *MI, SmallSet<unsigned, 16> &FoldAsLoadDefCandidates) {
Manman Renba8122c2012-08-02 19:37:32 +00001381 if (!MI->canFoldAsLoad() || !MI->mayLoad())
1382 return false;
1383 const MCInstrDesc &MCID = MI->getDesc();
1384 if (MCID.getNumDefs() != 1)
1385 return false;
1386
1387 unsigned Reg = MI->getOperand(0).getReg();
Ekaterina Romanova8d620082014-03-13 18:47:12 +00001388 // To reduce compilation time, we check MRI->hasOneNonDBGUse when inserting
Manman Renba8122c2012-08-02 19:37:32 +00001389 // loads. It should be checked when processing uses of the load, since
1390 // uses can be removed during peephole.
1391 if (!MI->getOperand(0).getSubReg() &&
1392 TargetRegisterInfo::isVirtualRegister(Reg) &&
Ekaterina Romanova8d620082014-03-13 18:47:12 +00001393 MRI->hasOneNonDBGUse(Reg)) {
Lang Hames5dc14bd2014-04-02 22:59:58 +00001394 FoldAsLoadDefCandidates.insert(Reg);
Manman Renba8122c2012-08-02 19:37:32 +00001395 return true;
Manman Ren5759d012012-08-02 00:56:42 +00001396 }
1397 return false;
1398}
1399
Sanjay Patelb120ae92015-12-29 19:34:53 +00001400bool PeepholeOptimizer::isMoveImmediate(
1401 MachineInstr *MI, SmallSet<unsigned, 4> &ImmDefRegs,
1402 DenseMap<unsigned, MachineInstr *> &ImmDefMIs) {
Evan Cheng6cc775f2011-06-28 19:10:37 +00001403 const MCInstrDesc &MCID = MI->getDesc();
Evan Cheng7f8e5632011-12-07 07:15:52 +00001404 if (!MI->isMoveImmediate())
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00001405 return false;
Evan Cheng6cc775f2011-06-28 19:10:37 +00001406 if (MCID.getNumDefs() != 1)
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00001407 return false;
1408 unsigned Reg = MI->getOperand(0).getReg();
1409 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
1410 ImmDefMIs.insert(std::make_pair(Reg, MI));
1411 ImmDefRegs.insert(Reg);
1412 return true;
1413 }
Andrew Trick9e761992012-02-08 21:22:43 +00001414
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00001415 return false;
1416}
1417
Sanjay Patel59309cc2015-12-29 18:14:06 +00001418/// Try folding register operands that are defined by move immediate
1419/// instructions, i.e. a trivial constant folding optimization, if
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00001420/// and only if the def and use are in the same BB.
Sanjay Patelb120ae92015-12-29 19:34:53 +00001421bool PeepholeOptimizer::foldImmediate(
1422 MachineInstr *MI, MachineBasicBlock *MBB, SmallSet<unsigned, 4> &ImmDefRegs,
1423 DenseMap<unsigned, MachineInstr *> &ImmDefMIs) {
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00001424 for (unsigned i = 0, e = MI->getDesc().getNumOperands(); i != e; ++i) {
1425 MachineOperand &MO = MI->getOperand(i);
1426 if (!MO.isReg() || MO.isDef())
1427 continue;
Dan Gohmandab313e2015-12-10 00:37:51 +00001428 // Ignore dead implicit defs.
1429 if (MO.isImplicit() && MO.isDead())
1430 continue;
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00001431 unsigned Reg = MO.getReg();
Jakob Stoklund Olesen2fb5b312011-01-10 02:58:51 +00001432 if (!TargetRegisterInfo::isVirtualRegister(Reg))
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00001433 continue;
1434 if (ImmDefRegs.count(Reg) == 0)
1435 continue;
1436 DenseMap<unsigned, MachineInstr*>::iterator II = ImmDefMIs.find(Reg);
JF Bastien1ac69942015-12-03 23:43:56 +00001437 assert(II != ImmDefMIs.end() && "couldn't find immediate definition");
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001438 if (TII->FoldImmediate(*MI, *II->second, Reg, MRI)) {
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00001439 ++NumImmFold;
1440 return true;
1441 }
1442 }
1443 return false;
1444}
1445
Matt Arsenault10aa8072015-09-25 20:22:12 +00001446// FIXME: This is very simple and misses some cases which should be handled when
1447// motivating examples are found.
1448//
1449// The copy rewriting logic should look at uses as well as defs and be able to
1450// eliminate copies across blocks.
1451//
1452// Later copies that are subregister extracts will also not be eliminated since
1453// only the first copy is considered.
1454//
1455// e.g.
1456// %vreg1 = COPY %vreg0
1457// %vreg2 = COPY %vreg0:sub1
1458//
1459// Should replace %vreg2 uses with %vreg1:sub1
1460bool PeepholeOptimizer::foldRedundantCopy(
Sanjay Patelb120ae92015-12-29 19:34:53 +00001461 MachineInstr *MI, SmallSet<unsigned, 4> &CopySrcRegs,
JF Bastien1ac69942015-12-03 23:43:56 +00001462 DenseMap<unsigned, MachineInstr *> &CopyMIs) {
1463 assert(MI->isCopy() && "expected a COPY machine instruction");
Matt Arsenault10aa8072015-09-25 20:22:12 +00001464
1465 unsigned SrcReg = MI->getOperand(1).getReg();
1466 if (!TargetRegisterInfo::isVirtualRegister(SrcReg))
1467 return false;
1468
1469 unsigned DstReg = MI->getOperand(0).getReg();
1470 if (!TargetRegisterInfo::isVirtualRegister(DstReg))
1471 return false;
1472
1473 if (CopySrcRegs.insert(SrcReg).second) {
1474 // First copy of this reg seen.
1475 CopyMIs.insert(std::make_pair(SrcReg, MI));
1476 return false;
1477 }
1478
1479 MachineInstr *PrevCopy = CopyMIs.find(SrcReg)->second;
1480
1481 unsigned SrcSubReg = MI->getOperand(1).getSubReg();
1482 unsigned PrevSrcSubReg = PrevCopy->getOperand(1).getSubReg();
1483
1484 // Can't replace different subregister extracts.
1485 if (SrcSubReg != PrevSrcSubReg)
1486 return false;
1487
1488 unsigned PrevDstReg = PrevCopy->getOperand(0).getReg();
1489
1490 // Only replace if the copy register class is the same.
1491 //
1492 // TODO: If we have multiple copies to different register classes, we may want
1493 // to track multiple copies of the same source register.
1494 if (MRI->getRegClass(DstReg) != MRI->getRegClass(PrevDstReg))
1495 return false;
1496
1497 MRI->replaceRegWith(DstReg, PrevDstReg);
1498
1499 // Lifetime of the previous copy has been extended.
1500 MRI->clearKillFlags(PrevDstReg);
1501 return true;
1502}
1503
JF Bastien1ac69942015-12-03 23:43:56 +00001504bool PeepholeOptimizer::isNAPhysCopy(unsigned Reg) {
1505 return TargetRegisterInfo::isPhysicalRegister(Reg) &&
1506 !MRI->isAllocatable(Reg);
1507}
1508
1509bool PeepholeOptimizer::foldRedundantNAPhysCopy(
1510 MachineInstr *MI, DenseMap<unsigned, MachineInstr *> &NAPhysToVirtMIs) {
1511 assert(MI->isCopy() && "expected a COPY machine instruction");
1512
1513 if (DisableNAPhysCopyOpt)
1514 return false;
1515
1516 unsigned DstReg = MI->getOperand(0).getReg();
1517 unsigned SrcReg = MI->getOperand(1).getReg();
1518 if (isNAPhysCopy(SrcReg) && TargetRegisterInfo::isVirtualRegister(DstReg)) {
1519 // %vreg = COPY %PHYSREG
1520 // Avoid using a datastructure which can track multiple live non-allocatable
1521 // phys->virt copies since LLVM doesn't seem to do this.
1522 NAPhysToVirtMIs.insert({SrcReg, MI});
1523 return false;
1524 }
1525
1526 if (!(TargetRegisterInfo::isVirtualRegister(SrcReg) && isNAPhysCopy(DstReg)))
1527 return false;
1528
1529 // %PHYSREG = COPY %vreg
1530 auto PrevCopy = NAPhysToVirtMIs.find(DstReg);
1531 if (PrevCopy == NAPhysToVirtMIs.end()) {
1532 // We can't remove the copy: there was an intervening clobber of the
1533 // non-allocatable physical register after the copy to virtual.
1534 DEBUG(dbgs() << "NAPhysCopy: intervening clobber forbids erasing " << *MI
1535 << '\n');
1536 return false;
1537 }
1538
1539 unsigned PrevDstReg = PrevCopy->second->getOperand(0).getReg();
1540 if (PrevDstReg == SrcReg) {
1541 // Remove the virt->phys copy: we saw the virtual register definition, and
1542 // the non-allocatable physical register's state hasn't changed since then.
1543 DEBUG(dbgs() << "NAPhysCopy: erasing " << *MI << '\n');
1544 ++NumNAPhysCopies;
1545 return true;
1546 }
1547
1548 // Potential missed optimization opportunity: we saw a different virtual
1549 // register get a copy of the non-allocatable physical register, and we only
1550 // track one such copy. Avoid getting confused by this new non-allocatable
1551 // physical register definition, and remove it from the tracked copies.
1552 DEBUG(dbgs() << "NAPhysCopy: missed opportunity " << *MI << '\n');
1553 NAPhysToVirtMIs.erase(PrevCopy);
1554 return false;
1555}
1556
Taewook Oh0e35ea32017-06-29 23:11:24 +00001557/// \bried Returns true if \p MO is a virtual register operand.
1558static bool isVirtualRegisterOperand(MachineOperand &MO) {
1559 if (!MO.isReg())
1560 return false;
1561 return TargetRegisterInfo::isVirtualRegister(MO.getReg());
1562}
1563
1564bool PeepholeOptimizer::findTargetRecurrence(
1565 unsigned Reg, const SmallSet<unsigned, 2> &TargetRegs,
1566 RecurrenceCycle &RC) {
1567 // Recurrence found if Reg is in TargetRegs.
1568 if (TargetRegs.count(Reg))
1569 return true;
1570
1571 // TODO: Curerntly, we only allow the last instruction of the recurrence
1572 // cycle (the instruction that feeds the PHI instruction) to have more than
1573 // one uses to guarantee that commuting operands does not tie registers
1574 // with overlapping live range. Once we have actual live range info of
1575 // each register, this constraint can be relaxed.
1576 if (!MRI->hasOneNonDBGUse(Reg))
1577 return false;
1578
1579 // Give up if the reccurrence chain length is longer than the limit.
1580 if (RC.size() >= MaxRecurrenceChain)
1581 return false;
1582
1583 MachineInstr &MI = *(MRI->use_instr_nodbg_begin(Reg));
1584 unsigned Idx = MI.findRegisterUseOperandIdx(Reg);
1585
1586 // Only interested in recurrences whose instructions have only one def, which
1587 // is a virtual register.
1588 if (MI.getDesc().getNumDefs() != 1)
1589 return false;
1590
1591 MachineOperand &DefOp = MI.getOperand(0);
1592 if (!isVirtualRegisterOperand(DefOp))
1593 return false;
1594
1595 // Check if def operand of MI is tied to any use operand. We are only
1596 // interested in the case that all the instructions in the recurrence chain
1597 // have there def operand tied with one of the use operand.
1598 unsigned TiedUseIdx;
1599 if (!MI.isRegTiedToUseOperand(0, &TiedUseIdx))
1600 return false;
1601
1602 if (Idx == TiedUseIdx) {
1603 RC.push_back(RecurrenceInstr(&MI));
1604 return findTargetRecurrence(DefOp.getReg(), TargetRegs, RC);
1605 } else {
1606 // If Idx is not TiedUseIdx, check if Idx is commutable with TiedUseIdx.
1607 unsigned CommIdx = TargetInstrInfo::CommuteAnyOperandIndex;
1608 if (TII->findCommutedOpIndices(MI, Idx, CommIdx) && CommIdx == TiedUseIdx) {
1609 RC.push_back(RecurrenceInstr(&MI, Idx, CommIdx));
1610 return findTargetRecurrence(DefOp.getReg(), TargetRegs, RC);
1611 }
1612 }
1613
1614 return false;
1615}
1616
1617/// \brief Phi instructions will eventually be lowered to copy instructions. If
1618/// phi is in a loop header, a recurrence may formulated around the source and
1619/// destination of the phi. For such case commuting operands of the instructions
1620/// in the recurrence may enable coalescing of the copy instruction generated
1621/// from the phi. For example, if there is a recurrence of
1622///
1623/// LoopHeader:
1624/// %vreg1 = phi(%vreg0, %vreg100)
1625/// LoopLatch:
1626/// %vreg0<def, tied1> = ADD %vreg2<def, tied0>, %vreg1
1627///
1628/// , the fact that vreg0 and vreg2 are in the same tied operands set makes
1629/// the coalescing of copy instruction generated from the phi in
1630/// LoopHeader(i.e. %vreg1 = COPY %vreg0) impossible, because %vreg1 and
1631/// %vreg2 have overlapping live range. This introduces additional move
1632/// instruction to the final assembly. However, if we commute %vreg2 and
1633/// %vreg1 of ADD instruction, the redundant move instruction can be
1634/// avoided.
1635bool PeepholeOptimizer::optimizeRecurrence(MachineInstr &PHI) {
1636 SmallSet<unsigned, 2> TargetRegs;
1637 for (unsigned Idx = 1; Idx < PHI.getNumOperands(); Idx += 2) {
1638 MachineOperand &MO = PHI.getOperand(Idx);
1639 assert(isVirtualRegisterOperand(MO) && "Invalid PHI instruction");
1640 TargetRegs.insert(MO.getReg());
1641 }
1642
1643 bool Changed = false;
1644 RecurrenceCycle RC;
1645 if (findTargetRecurrence(PHI.getOperand(0).getReg(), TargetRegs, RC)) {
1646 // Commutes operands of instructions in RC if necessary so that the copy to
1647 // be generated from PHI can be coalesced.
1648 DEBUG(dbgs() << "Optimize recurrence chain from " << PHI);
1649 for (auto &RI : RC) {
1650 DEBUG(dbgs() << "\tInst: " << *(RI.getMI()));
1651 auto CP = RI.getCommutePair();
1652 if (CP) {
1653 Changed = true;
1654 TII->commuteInstruction(*(RI.getMI()), false, (*CP).first,
1655 (*CP).second);
1656 DEBUG(dbgs() << "\t\tCommuted: " << *(RI.getMI()));
1657 }
1658 }
1659 }
1660
1661 return Changed;
1662}
1663
Eric Christopher2181fb22014-10-15 21:06:25 +00001664bool PeepholeOptimizer::runOnMachineFunction(MachineFunction &MF) {
Andrew Kayloraa641a52016-04-22 22:06:11 +00001665 if (skipFunction(*MF.getFunction()))
Paul Robinson7c99ec52014-03-31 17:43:35 +00001666 return false;
1667
Craig Topper588ceec2012-12-17 03:56:00 +00001668 DEBUG(dbgs() << "********** PEEPHOLE OPTIMIZER **********\n");
Eric Christopher2181fb22014-10-15 21:06:25 +00001669 DEBUG(dbgs() << "********** Function: " << MF.getName() << '\n');
Craig Topper588ceec2012-12-17 03:56:00 +00001670
Evan Cheng2ce016c2010-11-15 21:20:45 +00001671 if (DisablePeephole)
1672 return false;
Andrew Trick9e761992012-02-08 21:22:43 +00001673
Eric Christopher2181fb22014-10-15 21:06:25 +00001674 TII = MF.getSubtarget().getInstrInfo();
1675 TRI = MF.getSubtarget().getRegisterInfo();
1676 MRI = &MF.getRegInfo();
Craig Topperc0196b12014-04-14 00:51:57 +00001677 DT = Aggressive ? &getAnalysis<MachineDominatorTree>() : nullptr;
Taewook Oh0e35ea32017-06-29 23:11:24 +00001678 MLI = &getAnalysis<MachineLoopInfo>();
Bill Wendlingca678352010-08-09 23:59:04 +00001679
1680 bool Changed = false;
1681
Sanjay Patelfaeee6f2015-12-29 18:30:09 +00001682 for (MachineBasicBlock &MBB : MF) {
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00001683 bool SeenMoveImm = false;
Mehdi Amini22e59742015-01-13 07:07:13 +00001684
1685 // During this forward scan, at some point it needs to answer the question
1686 // "given a pointer to an MI in the current BB, is it located before or
1687 // after the current instruction".
1688 // To perform this, the following set keeps track of the MIs already seen
1689 // during the scan, if a MI is not in the set, it is assumed to be located
1690 // after. Newly created MIs have to be inserted in the set as well.
Hans Wennborg941a5702014-08-11 02:50:43 +00001691 SmallPtrSet<MachineInstr*, 16> LocalMIs;
Lang Hames5dc14bd2014-04-02 22:59:58 +00001692 SmallSet<unsigned, 4> ImmDefRegs;
1693 DenseMap<unsigned, MachineInstr*> ImmDefMIs;
1694 SmallSet<unsigned, 16> FoldAsLoadDefCandidates;
Bill Wendlingca678352010-08-09 23:59:04 +00001695
JF Bastien1ac69942015-12-03 23:43:56 +00001696 // Track when a non-allocatable physical register is copied to a virtual
1697 // register so that useless moves can be removed.
1698 //
1699 // %PHYSREG is the map index; MI is the last valid `%vreg = COPY %PHYSREG`
1700 // without any intervening re-definition of %PHYSREG.
1701 DenseMap<unsigned, MachineInstr *> NAPhysToVirtMIs;
1702
Matt Arsenault10aa8072015-09-25 20:22:12 +00001703 // Set of virtual registers that are copied from.
1704 SmallSet<unsigned, 4> CopySrcRegs;
1705 DenseMap<unsigned, MachineInstr *> CopySrcMIs;
1706
Taewook Oh0e35ea32017-06-29 23:11:24 +00001707 bool IsLoopHeader = MLI->isLoopHeader(&MBB);
1708
Sanjay Patelfaeee6f2015-12-29 18:30:09 +00001709 for (MachineBasicBlock::iterator MII = MBB.begin(), MIE = MBB.end();
1710 MII != MIE; ) {
Evan Cheng9bf3f8e2011-02-14 21:50:37 +00001711 MachineInstr *MI = &*MII;
Jakob Stoklund Olesen714f5952012-08-17 14:38:59 +00001712 // We may be erasing MI below, increment MII now.
1713 ++MII;
Evan Cheng2ce016c2010-11-15 21:20:45 +00001714 LocalMIs.insert(MI);
Bill Wendlingca678352010-08-09 23:59:04 +00001715
Ekaterina Romanova8d620082014-03-13 18:47:12 +00001716 // Skip debug values. They should not affect this peephole optimization.
1717 if (MI->isDebugValue())
1718 continue;
1719
Taewook Oh0e35ea32017-06-29 23:11:24 +00001720 if (MI->isPosition())
Evan Cheng2ce016c2010-11-15 21:20:45 +00001721 continue;
1722
Taewook Oh0e35ea32017-06-29 23:11:24 +00001723 if (IsLoopHeader && MI->isPHI()) {
1724 if (optimizeRecurrence(*MI)) {
1725 Changed = true;
1726 continue;
1727 }
1728 }
1729
JF Bastien1ac69942015-12-03 23:43:56 +00001730 if (!MI->isCopy()) {
1731 for (const auto &Op : MI->operands()) {
1732 // Visit all operands: definitions can be implicit or explicit.
1733 if (Op.isReg()) {
1734 unsigned Reg = Op.getReg();
1735 if (Op.isDef() && isNAPhysCopy(Reg)) {
1736 const auto &Def = NAPhysToVirtMIs.find(Reg);
1737 if (Def != NAPhysToVirtMIs.end()) {
1738 // A new definition of the non-allocatable physical register
1739 // invalidates previous copies.
1740 DEBUG(dbgs() << "NAPhysCopy: invalidating because of " << *MI
1741 << '\n');
1742 NAPhysToVirtMIs.erase(Def);
1743 }
1744 }
1745 } else if (Op.isRegMask()) {
1746 const uint32_t *RegMask = Op.getRegMask();
1747 for (auto &RegMI : NAPhysToVirtMIs) {
1748 unsigned Def = RegMI.first;
1749 if (MachineOperand::clobbersPhysReg(RegMask, Def)) {
1750 DEBUG(dbgs() << "NAPhysCopy: invalidating because of " << *MI
1751 << '\n');
1752 NAPhysToVirtMIs.erase(Def);
1753 }
1754 }
1755 }
1756 }
1757 }
1758
1759 if (MI->isImplicitDef() || MI->isKill())
1760 continue;
1761
1762 if (MI->isInlineAsm() || MI->hasUnmodeledSideEffects()) {
1763 // Blow away all non-allocatable physical registers knowledge since we
1764 // don't know what's correct anymore.
1765 //
1766 // FIXME: handle explicit asm clobbers.
1767 DEBUG(dbgs() << "NAPhysCopy: blowing away all info due to " << *MI
1768 << '\n');
1769 NAPhysToVirtMIs.clear();
JF Bastien1ac69942015-12-03 23:43:56 +00001770 }
1771
Quentin Colombet03e43f82014-08-20 17:41:48 +00001772 if ((isUncoalescableCopy(*MI) &&
1773 optimizeUncoalescableCopy(MI, LocalMIs)) ||
Sanjay Patelfaeee6f2015-12-29 18:30:09 +00001774 (MI->isCompare() && optimizeCmpInstr(MI, &MBB)) ||
Mehdi Amini22e59742015-01-13 07:07:13 +00001775 (MI->isSelect() && optimizeSelect(MI, LocalMIs))) {
Jakob Stoklund Olesen2382d322012-08-16 23:11:47 +00001776 // MI is deleted.
1777 LocalMIs.erase(MI);
1778 Changed = true;
Jakob Stoklund Olesen2382d322012-08-16 23:11:47 +00001779 continue;
Evan Cheng9bf3f8e2011-02-14 21:50:37 +00001780 }
1781
Gerolf Hoflehnera4c96d02014-10-14 23:07:53 +00001782 if (MI->isConditionalBranch() && optimizeCondBranch(MI)) {
1783 Changed = true;
1784 continue;
1785 }
1786
Quentin Colombet03e43f82014-08-20 17:41:48 +00001787 if (isCoalescableCopy(*MI) && optimizeCoalescableCopy(MI)) {
1788 // MI is just rewritten.
1789 Changed = true;
1790 continue;
1791 }
1792
JF Bastien1ac69942015-12-03 23:43:56 +00001793 if (MI->isCopy() &&
1794 (foldRedundantCopy(MI, CopySrcRegs, CopySrcMIs) ||
1795 foldRedundantNAPhysCopy(MI, NAPhysToVirtMIs))) {
Matt Arsenault10aa8072015-09-25 20:22:12 +00001796 LocalMIs.erase(MI);
1797 MI->eraseFromParent();
1798 Changed = true;
1799 continue;
1800 }
1801
Evan Cheng9bf3f8e2011-02-14 21:50:37 +00001802 if (isMoveImmediate(MI, ImmDefRegs, ImmDefMIs)) {
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00001803 SeenMoveImm = true;
Bill Wendlingca678352010-08-09 23:59:04 +00001804 } else {
Sanjay Patelfaeee6f2015-12-29 18:30:09 +00001805 Changed |= optimizeExtInstr(MI, &MBB, LocalMIs);
Rafael Espindola048405f2012-10-15 18:21:07 +00001806 // optimizeExtInstr might have created new instructions after MI
1807 // and before the already incremented MII. Adjust MII so that the
1808 // next iteration sees the new instructions.
1809 MII = MI;
1810 ++MII;
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00001811 if (SeenMoveImm)
Sanjay Patelfaeee6f2015-12-29 18:30:09 +00001812 Changed |= foldImmediate(MI, &MBB, ImmDefRegs, ImmDefMIs);
Bill Wendlingca678352010-08-09 23:59:04 +00001813 }
Evan Cheng98196b42011-02-15 05:00:24 +00001814
Manman Ren5759d012012-08-02 00:56:42 +00001815 // Check whether MI is a load candidate for folding into a later
1816 // instruction. If MI is not a candidate, check whether we can fold an
1817 // earlier load into MI.
Lang Hames5dc14bd2014-04-02 22:59:58 +00001818 if (!isLoadFoldable(MI, FoldAsLoadDefCandidates) &&
1819 !FoldAsLoadDefCandidates.empty()) {
Philip Reames1f1bbac2016-12-13 01:38:41 +00001820
1821 // We visit each operand even after successfully folding a previous
1822 // one. This allows us to fold multiple loads into a single
1823 // instruction. We do assume that optimizeLoadInstr doesn't insert
1824 // foldable uses earlier in the argument list. Since we don't restart
1825 // iteration, we'd miss such cases.
Lang Hames5dc14bd2014-04-02 22:59:58 +00001826 const MCInstrDesc &MIDesc = MI->getDesc();
Philip Reames1f1bbac2016-12-13 01:38:41 +00001827 for (unsigned i = MIDesc.getNumDefs(); i != MI->getNumOperands();
Lang Hames5dc14bd2014-04-02 22:59:58 +00001828 ++i) {
1829 const MachineOperand &MOp = MI->getOperand(i);
1830 if (!MOp.isReg())
1831 continue;
Lang Hames3c0dc2a2014-04-03 05:03:20 +00001832 unsigned FoldAsLoadDefReg = MOp.getReg();
1833 if (FoldAsLoadDefCandidates.count(FoldAsLoadDefReg)) {
1834 // We need to fold load after optimizeCmpInstr, since
1835 // optimizeCmpInstr can enable folding by converting SUB to CMP.
1836 // Save FoldAsLoadDefReg because optimizeLoadInstr() resets it and
1837 // we need it for markUsesInDebugValueAsUndef().
1838 unsigned FoldedReg = FoldAsLoadDefReg;
Craig Topperc0196b12014-04-14 00:51:57 +00001839 MachineInstr *DefMI = nullptr;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001840 if (MachineInstr *FoldMI =
1841 TII->optimizeLoadInstr(*MI, MRI, FoldAsLoadDefReg, DefMI)) {
Lang Hames5dc14bd2014-04-02 22:59:58 +00001842 // Update LocalMIs since we replaced MI with FoldMI and deleted
1843 // DefMI.
1844 DEBUG(dbgs() << "Replacing: " << *MI);
1845 DEBUG(dbgs() << " With: " << *FoldMI);
1846 LocalMIs.erase(MI);
1847 LocalMIs.erase(DefMI);
1848 LocalMIs.insert(FoldMI);
1849 MI->eraseFromParent();
1850 DefMI->eraseFromParent();
Lang Hames3c0dc2a2014-04-03 05:03:20 +00001851 MRI->markUsesInDebugValueAsUndef(FoldedReg);
1852 FoldAsLoadDefCandidates.erase(FoldedReg);
Lang Hames5dc14bd2014-04-02 22:59:58 +00001853 ++NumLoadFold;
Taewook Oh0e35ea32017-06-29 23:11:24 +00001854
Philip Reames1f1bbac2016-12-13 01:38:41 +00001855 // MI is replaced with FoldMI so we can continue trying to fold
Lang Hames5dc14bd2014-04-02 22:59:58 +00001856 Changed = true;
Philip Reames1f1bbac2016-12-13 01:38:41 +00001857 MI = FoldMI;
Lang Hames5dc14bd2014-04-02 22:59:58 +00001858 }
1859 }
Manman Ren5759d012012-08-02 00:56:42 +00001860 }
1861 }
Taewook Oh0e35ea32017-06-29 23:11:24 +00001862
Philip Reames1f1bbac2016-12-13 01:38:41 +00001863 // If we run into an instruction we can't fold across, discard
1864 // the load candidates. Note: We might be able to fold *into* this
1865 // instruction, so this needs to be after the folding logic.
1866 if (MI->isLoadFoldBarrier()) {
1867 DEBUG(dbgs() << "Encountered load fold barrier on " << *MI << "\n");
1868 FoldAsLoadDefCandidates.clear();
1869 }
Bill Wendlingca678352010-08-09 23:59:04 +00001870 }
1871 }
1872
1873 return Changed;
1874}
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001875
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001876ValueTrackerResult ValueTracker::getNextSourceFromCopy() {
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001877 assert(Def->isCopy() && "Invalid definition");
1878 // Copy instruction are supposed to be: Def = Src.
1879 // If someone breaks this assumption, bad things will happen everywhere.
Quentin Colombet03e43f82014-08-20 17:41:48 +00001880 assert(Def->getNumOperands() == 2 && "Invalid number of operands");
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001881
1882 if (Def->getOperand(DefIdx).getSubReg() != DefSubReg)
1883 // If we look for a different subreg, it means we want a subreg of src.
Matt Arsenault30991562015-09-09 00:38:33 +00001884 // Bails as we do not support composing subregs yet.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001885 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001886 // Otherwise, we want the whole source.
Quentin Colombet03e43f82014-08-20 17:41:48 +00001887 const MachineOperand &Src = Def->getOperand(1);
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001888 return ValueTrackerResult(Src.getReg(), Src.getSubReg());
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001889}
1890
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001891ValueTrackerResult ValueTracker::getNextSourceFromBitcast() {
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001892 assert(Def->isBitcast() && "Invalid definition");
1893
1894 // Bail if there are effects that a plain copy will not expose.
1895 if (Def->hasUnmodeledSideEffects())
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001896 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001897
1898 // Bitcasts with more than one def are not supported.
1899 if (Def->getDesc().getNumDefs() != 1)
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001900 return ValueTrackerResult();
Matthias Braunba7d95d2017-01-09 21:38:17 +00001901 const MachineOperand DefOp = Def->getOperand(DefIdx);
1902 if (DefOp.getSubReg() != DefSubReg)
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001903 // If we look for a different subreg, it means we want a subreg of the src.
Matt Arsenault30991562015-09-09 00:38:33 +00001904 // Bails as we do not support composing subregs yet.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001905 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001906
Quentin Colombet03e43f82014-08-20 17:41:48 +00001907 unsigned SrcIdx = Def->getNumOperands();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001908 for (unsigned OpIdx = DefIdx + 1, EndOpIdx = SrcIdx; OpIdx != EndOpIdx;
1909 ++OpIdx) {
1910 const MachineOperand &MO = Def->getOperand(OpIdx);
1911 if (!MO.isReg() || !MO.getReg())
1912 continue;
Dan Gohmandab313e2015-12-10 00:37:51 +00001913 // Ignore dead implicit defs.
1914 if (MO.isImplicit() && MO.isDead())
1915 continue;
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001916 assert(!MO.isDef() && "We should have skipped all the definitions by now");
1917 if (SrcIdx != EndOpIdx)
1918 // Multiple sources?
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001919 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001920 SrcIdx = OpIdx;
1921 }
Matthias Braunba7d95d2017-01-09 21:38:17 +00001922
1923 // Stop when any user of the bitcast is a SUBREG_TO_REG, replacing with a COPY
1924 // will break the assumed guarantees for the upper bits.
1925 for (const MachineInstr &UseMI : MRI.use_nodbg_instructions(DefOp.getReg())) {
1926 if (UseMI.isSubregToReg())
1927 return ValueTrackerResult();
1928 }
1929
Quentin Colombet03e43f82014-08-20 17:41:48 +00001930 const MachineOperand &Src = Def->getOperand(SrcIdx);
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001931 return ValueTrackerResult(Src.getReg(), Src.getSubReg());
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001932}
1933
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001934ValueTrackerResult ValueTracker::getNextSourceFromRegSequence() {
Quentin Colombet03e43f82014-08-20 17:41:48 +00001935 assert((Def->isRegSequence() || Def->isRegSequenceLike()) &&
1936 "Invalid definition");
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001937
1938 if (Def->getOperand(DefIdx).getSubReg())
Matt Arsenault30991562015-09-09 00:38:33 +00001939 // If we are composing subregs, bail out.
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001940 // The case we are checking is Def.<subreg> = REG_SEQUENCE.
1941 // This should almost never happen as the SSA property is tracked at
1942 // the register level (as opposed to the subreg level).
1943 // I.e.,
1944 // Def.sub0 =
1945 // Def.sub1 =
1946 // is a valid SSA representation for Def.sub0 and Def.sub1, but not for
1947 // Def. Thus, it must not be generated.
Quentin Colombet6d590d52014-07-01 16:23:44 +00001948 // However, some code could theoretically generates a single
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001949 // Def.sub0 (i.e, not defining the other subregs) and we would
1950 // have this case.
1951 // If we can ascertain (or force) that this never happens, we could
1952 // turn that into an assertion.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001953 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001954
Quentin Colombet03e43f82014-08-20 17:41:48 +00001955 if (!TII)
1956 // We could handle the REG_SEQUENCE here, but we do not want to
1957 // duplicate the code from the generic TII.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001958 return ValueTrackerResult();
Quentin Colombet03e43f82014-08-20 17:41:48 +00001959
1960 SmallVector<TargetInstrInfo::RegSubRegPairAndIdx, 8> RegSeqInputRegs;
1961 if (!TII->getRegSequenceInputs(*Def, DefIdx, RegSeqInputRegs))
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001962 return ValueTrackerResult();
Quentin Colombet03e43f82014-08-20 17:41:48 +00001963
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001964 // We are looking at:
1965 // Def = REG_SEQUENCE v0, sub0, v1, sub1, ...
1966 // Check if one of the operand defines the subreg we are interested in.
Quentin Colombet03e43f82014-08-20 17:41:48 +00001967 for (auto &RegSeqInput : RegSeqInputRegs) {
1968 if (RegSeqInput.SubIdx == DefSubReg) {
1969 if (RegSeqInput.SubReg)
Matt Arsenault30991562015-09-09 00:38:33 +00001970 // Bail if we have to compose sub registers.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001971 return ValueTrackerResult();
Quentin Colombet03e43f82014-08-20 17:41:48 +00001972
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001973 return ValueTrackerResult(RegSeqInput.Reg, RegSeqInput.SubReg);
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001974 }
1975 }
1976
1977 // If the subreg we are tracking is super-defined by another subreg,
1978 // we could follow this value. However, this would require to compose
1979 // the subreg and we do not do that for now.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001980 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001981}
1982
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001983ValueTrackerResult ValueTracker::getNextSourceFromInsertSubreg() {
Quentin Colombet68962302014-08-21 00:19:16 +00001984 assert((Def->isInsertSubreg() || Def->isInsertSubregLike()) &&
1985 "Invalid definition");
1986
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001987 if (Def->getOperand(DefIdx).getSubReg())
Matt Arsenault30991562015-09-09 00:38:33 +00001988 // If we are composing subreg, bail out.
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001989 // Same remark as getNextSourceFromRegSequence.
1990 // I.e., this may be turned into an assert.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001991 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001992
Quentin Colombet68962302014-08-21 00:19:16 +00001993 if (!TII)
1994 // We could handle the REG_SEQUENCE here, but we do not want to
1995 // duplicate the code from the generic TII.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001996 return ValueTrackerResult();
Quentin Colombet68962302014-08-21 00:19:16 +00001997
Quentin Colombet03e43f82014-08-20 17:41:48 +00001998 TargetInstrInfo::RegSubRegPair BaseReg;
1999 TargetInstrInfo::RegSubRegPairAndIdx InsertedReg;
Quentin Colombet68962302014-08-21 00:19:16 +00002000 if (!TII->getInsertSubregInputs(*Def, DefIdx, BaseReg, InsertedReg))
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002001 return ValueTrackerResult();
Quentin Colombet03e43f82014-08-20 17:41:48 +00002002
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002003 // We are looking at:
2004 // Def = INSERT_SUBREG v0, v1, sub1
2005 // There are two cases:
2006 // 1. DefSubReg == sub1, get v1.
2007 // 2. DefSubReg != sub1, the value may be available through v0.
2008
Quentin Colombet03e43f82014-08-20 17:41:48 +00002009 // #1 Check if the inserted register matches the required sub index.
2010 if (InsertedReg.SubIdx == DefSubReg) {
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002011 return ValueTrackerResult(InsertedReg.Reg, InsertedReg.SubReg);
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002012 }
2013 // #2 Otherwise, if the sub register we are looking for is not partial
2014 // defined by the inserted element, we can look through the main
2015 // register (v0).
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002016 const MachineOperand &MODef = Def->getOperand(DefIdx);
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002017 // If the result register (Def) and the base register (v0) do not
2018 // have the same register class or if we have to compose
Matt Arsenault30991562015-09-09 00:38:33 +00002019 // subregisters, bail out.
Quentin Colombet03e43f82014-08-20 17:41:48 +00002020 if (MRI.getRegClass(MODef.getReg()) != MRI.getRegClass(BaseReg.Reg) ||
2021 BaseReg.SubReg)
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002022 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002023
Quentin Colombet03e43f82014-08-20 17:41:48 +00002024 // Get the TRI and check if the inserted sub-register overlaps with the
2025 // sub-register we are tracking.
2026 const TargetRegisterInfo *TRI = MRI.getTargetRegisterInfo();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002027 if (!TRI ||
Krzysztof Parzyszek91b5cf82016-12-15 14:36:06 +00002028 !(TRI->getSubRegIndexLaneMask(DefSubReg) &
2029 TRI->getSubRegIndexLaneMask(InsertedReg.SubIdx)).none())
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002030 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002031 // At this point, the value is available in v0 via the same subreg
2032 // we used for Def.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002033 return ValueTrackerResult(BaseReg.Reg, DefSubReg);
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002034}
2035
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002036ValueTrackerResult ValueTracker::getNextSourceFromExtractSubreg() {
Quentin Colombet67639df2014-08-20 23:13:02 +00002037 assert((Def->isExtractSubreg() ||
2038 Def->isExtractSubregLike()) && "Invalid definition");
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002039 // We are looking at:
2040 // Def = EXTRACT_SUBREG v0, sub0
2041
Matt Arsenault30991562015-09-09 00:38:33 +00002042 // Bail if we have to compose sub registers.
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002043 // Indeed, if DefSubReg != 0, we would have to compose it with sub0.
2044 if (DefSubReg)
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002045 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002046
Quentin Colombet67639df2014-08-20 23:13:02 +00002047 if (!TII)
2048 // We could handle the EXTRACT_SUBREG here, but we do not want to
2049 // duplicate the code from the generic TII.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002050 return ValueTrackerResult();
Quentin Colombet67639df2014-08-20 23:13:02 +00002051
Quentin Colombet03e43f82014-08-20 17:41:48 +00002052 TargetInstrInfo::RegSubRegPairAndIdx ExtractSubregInputReg;
Quentin Colombet67639df2014-08-20 23:13:02 +00002053 if (!TII->getExtractSubregInputs(*Def, DefIdx, ExtractSubregInputReg))
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002054 return ValueTrackerResult();
Quentin Colombet03e43f82014-08-20 17:41:48 +00002055
Matt Arsenault30991562015-09-09 00:38:33 +00002056 // Bail if we have to compose sub registers.
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002057 // Likewise, if v0.subreg != 0, we would have to compose v0.subreg with sub0.
Quentin Colombet03e43f82014-08-20 17:41:48 +00002058 if (ExtractSubregInputReg.SubReg)
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002059 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002060 // Otherwise, the value is available in the v0.sub0.
Sanjay Patelb120ae92015-12-29 19:34:53 +00002061 return ValueTrackerResult(ExtractSubregInputReg.Reg,
2062 ExtractSubregInputReg.SubIdx);
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002063}
2064
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002065ValueTrackerResult ValueTracker::getNextSourceFromSubregToReg() {
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002066 assert(Def->isSubregToReg() && "Invalid definition");
2067 // We are looking at:
2068 // Def = SUBREG_TO_REG Imm, v0, sub0
2069
Matt Arsenault30991562015-09-09 00:38:33 +00002070 // Bail if we have to compose sub registers.
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002071 // If DefSubReg != sub0, we would have to check that all the bits
2072 // we track are included in sub0 and if yes, we would have to
2073 // determine the right subreg in v0.
2074 if (DefSubReg != Def->getOperand(3).getImm())
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002075 return ValueTrackerResult();
Matt Arsenault30991562015-09-09 00:38:33 +00002076 // Bail if we have to compose sub registers.
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002077 // Likewise, if v0.subreg != 0, we would have to compose it with sub0.
2078 if (Def->getOperand(2).getSubReg())
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002079 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002080
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002081 return ValueTrackerResult(Def->getOperand(2).getReg(),
2082 Def->getOperand(3).getImm());
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002083}
2084
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00002085/// \brief Explore each PHI incoming operand and return its sources
2086ValueTrackerResult ValueTracker::getNextSourceFromPHI() {
2087 assert(Def->isPHI() && "Invalid definition");
2088 ValueTrackerResult Res;
2089
Matt Arsenault30991562015-09-09 00:38:33 +00002090 // If we look for a different subreg, bail as we do not support composing
2091 // subregs yet.
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00002092 if (Def->getOperand(0).getSubReg() != DefSubReg)
2093 return ValueTrackerResult();
2094
2095 // Return all register sources for PHI instructions.
2096 for (unsigned i = 1, e = Def->getNumOperands(); i < e; i += 2) {
2097 auto &MO = Def->getOperand(i);
2098 assert(MO.isReg() && "Invalid PHI instruction");
2099 Res.addSource(MO.getReg(), MO.getSubReg());
2100 }
2101
2102 return Res;
2103}
2104
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002105ValueTrackerResult ValueTracker::getNextSourceImpl() {
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002106 assert(Def && "This method needs a valid definition");
2107
Eric Liue617ade2016-07-04 12:10:08 +00002108 assert(((Def->getOperand(DefIdx).isDef() &&
2109 (DefIdx < Def->getDesc().getNumDefs() ||
2110 Def->getDesc().isVariadic())) ||
2111 Def->getOperand(DefIdx).isImplicit()) &&
2112 "Invalid DefIdx");
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002113 if (Def->isCopy())
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002114 return getNextSourceFromCopy();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002115 if (Def->isBitcast())
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002116 return getNextSourceFromBitcast();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002117 // All the remaining cases involve "complex" instructions.
Matt Arsenault30991562015-09-09 00:38:33 +00002118 // Bail if we did not ask for the advanced tracking.
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002119 if (!UseAdvancedTracking)
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002120 return ValueTrackerResult();
Quentin Colombet03e43f82014-08-20 17:41:48 +00002121 if (Def->isRegSequence() || Def->isRegSequenceLike())
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002122 return getNextSourceFromRegSequence();
Quentin Colombet68962302014-08-21 00:19:16 +00002123 if (Def->isInsertSubreg() || Def->isInsertSubregLike())
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002124 return getNextSourceFromInsertSubreg();
Quentin Colombet67639df2014-08-20 23:13:02 +00002125 if (Def->isExtractSubreg() || Def->isExtractSubregLike())
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002126 return getNextSourceFromExtractSubreg();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002127 if (Def->isSubregToReg())
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002128 return getNextSourceFromSubregToReg();
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00002129 if (Def->isPHI())
2130 return getNextSourceFromPHI();
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002131 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002132}
2133
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002134ValueTrackerResult ValueTracker::getNextSource() {
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002135 // If we reach a point where we cannot move up in the use-def chain,
2136 // there is nothing we can get.
2137 if (!Def)
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002138 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002139
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002140 ValueTrackerResult Res = getNextSourceImpl();
2141 if (Res.isValid()) {
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002142 // Update definition, definition index, and subregister for the
2143 // next call of getNextSource.
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002144 // Update the current register.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002145 bool OneRegSrc = Res.getNumSources() == 1;
2146 if (OneRegSrc)
2147 Reg = Res.getSrcReg(0);
2148 // Update the result before moving up in the use-def chain
2149 // with the instruction containing the last found sources.
2150 Res.setInst(Def);
2151
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002152 // If we can still move up in the use-def chain, move to the next
Benjamin Kramerdf005cb2015-08-08 18:27:36 +00002153 // definition.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002154 if (!TargetRegisterInfo::isPhysicalRegister(Reg) && OneRegSrc) {
Quentin Colombet03e43f82014-08-20 17:41:48 +00002155 Def = MRI.getVRegDef(Reg);
2156 DefIdx = MRI.def_begin(Reg).getOperandNo();
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002157 DefSubReg = Res.getSrcSubReg(0);
2158 return Res;
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002159 }
2160 }
2161 // If we end up here, this means we will not be able to find another source
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002162 // for the next iteration. Make sure any new call to getNextSource bails out
2163 // early by cutting the use-def chain.
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002164 Def = nullptr;
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002165 return Res;
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002166}