blob: 1d058ccfb633569d56104e425a3cf4f0366a6ffd [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"
David Blaikie3f833ed2017-11-08 01:01:31 +000084#include "llvm/CodeGen/TargetInstrInfo.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000085#include "llvm/CodeGen/TargetOpcodes.h"
86#include "llvm/CodeGen/TargetRegisterInfo.h"
87#include "llvm/CodeGen/TargetSubtargetInfo.h"
Eugene Zelenko32a40562017-09-11 23:00:48 +000088#include "llvm/MC/LaneBitmask.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000089#include "llvm/MC/MCInstrDesc.h"
Eugene Zelenko32a40562017-09-11 23:00:48 +000090#include "llvm/Pass.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000091#include "llvm/Support/CommandLine.h"
Craig Topper588ceec2012-12-17 03:56:00 +000092#include "llvm/Support/Debug.h"
Eugene Zelenko1804a772016-08-25 00:45:04 +000093#include "llvm/Support/ErrorHandling.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000094#include "llvm/Support/raw_ostream.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;
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000101using RegSubRegPair = TargetInstrInfo::RegSubRegPair;
102using RegSubRegPairAndIdx = TargetInstrInfo::RegSubRegPairAndIdx;
Bill Wendlingca678352010-08-09 23:59:04 +0000103
Chandler Carruth1b9dde02014-04-22 02:02:50 +0000104#define DEBUG_TYPE "peephole-opt"
105
Bill Wendlingca678352010-08-09 23:59:04 +0000106// Optimize Extensions
107static cl::opt<bool>
108Aggressive("aggressive-ext-opt", cl::Hidden,
109 cl::desc("Aggressive extension optimization"));
110
Bill Wendlingc6627ee2010-11-01 20:41:43 +0000111static cl::opt<bool>
112DisablePeephole("disable-peephole", cl::Hidden, cl::init(false),
113 cl::desc("Disable the peephole optimizer"));
114
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000115/// Specifiy whether or not the value tracking looks through
116/// complex instructions. When this is true, the value tracker
117/// bails on everything that is not a copy or a bitcast.
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000118static cl::opt<bool>
Quentin Colombet6674b092014-08-21 22:23:52 +0000119DisableAdvCopyOpt("disable-adv-copy-opt", cl::Hidden, cl::init(false),
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000120 cl::desc("Disable advanced copy optimization"));
121
JF Bastien1ac69942015-12-03 23:43:56 +0000122static cl::opt<bool> DisableNAPhysCopyOpt(
123 "disable-non-allocatable-phys-copy-opt", cl::Hidden, cl::init(false),
124 cl::desc("Disable non-allocatable physical register copy optimization"));
125
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000126// Limit the number of PHI instructions to process
127// in PeepholeOptimizer::getNextSource.
128static cl::opt<unsigned> RewritePHILimit(
129 "rewrite-phi-limit", cl::Hidden, cl::init(10),
130 cl::desc("Limit the length of PHI chains to lookup"));
131
Taewook Oh0e35ea32017-06-29 23:11:24 +0000132// Limit the length of recurrence chain when evaluating the benefit of
133// commuting operands.
134static cl::opt<unsigned> MaxRecurrenceChain(
135 "recurrence-chain-limit", cl::Hidden, cl::init(3),
136 cl::desc("Maximum length of recurrence chain when evaluating the benefit "
137 "of commuting operands"));
138
139
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000140STATISTIC(NumReuse, "Number of extension results reused");
141STATISTIC(NumCmps, "Number of compares eliminated");
142STATISTIC(NumImmFold, "Number of move immediate folded");
143STATISTIC(NumLoadFold, "Number of loads folded");
144STATISTIC(NumSelects, "Number of selects optimized");
Quentin Colombet03e43f82014-08-20 17:41:48 +0000145STATISTIC(NumUncoalescableCopies, "Number of uncoalescable copies optimized");
146STATISTIC(NumRewrittenCopies, "Number of copies rewritten");
JF Bastien1ac69942015-12-03 23:43:56 +0000147STATISTIC(NumNAPhysCopies, "Number of non-allocatable physical copies removed");
Bill Wendlingca678352010-08-09 23:59:04 +0000148
149namespace {
Eugene Zelenko1804a772016-08-25 00:45:04 +0000150
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000151 class ValueTrackerResult;
Taewook Oh0e35ea32017-06-29 23:11:24 +0000152 class RecurrenceInstr;
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000153
Bill Wendlingca678352010-08-09 23:59:04 +0000154 class PeepholeOptimizer : public MachineFunctionPass {
Bill Wendlingca678352010-08-09 23:59:04 +0000155 const TargetInstrInfo *TII;
Eric Christopher92b4bcb2014-10-14 07:17:20 +0000156 const TargetRegisterInfo *TRI;
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000157 MachineRegisterInfo *MRI;
158 MachineDominatorTree *DT; // Machine dominator tree
159 MachineLoopInfo *MLI;
Bill Wendlingca678352010-08-09 23:59:04 +0000160
161 public:
162 static char ID; // Pass identification
Eugene Zelenko1804a772016-08-25 00:45:04 +0000163
Owen Anderson6c18d1a2010-10-19 17:21:58 +0000164 PeepholeOptimizer() : MachineFunctionPass(ID) {
165 initializePeepholeOptimizerPass(*PassRegistry::getPassRegistry());
166 }
Bill Wendlingca678352010-08-09 23:59:04 +0000167
Craig Topper4584cd52014-03-07 09:26:03 +0000168 bool runOnMachineFunction(MachineFunction &MF) override;
Bill Wendlingca678352010-08-09 23:59:04 +0000169
Craig Topper4584cd52014-03-07 09:26:03 +0000170 void getAnalysisUsage(AnalysisUsage &AU) const override {
Bill Wendlingca678352010-08-09 23:59:04 +0000171 AU.setPreservesCFG();
172 MachineFunctionPass::getAnalysisUsage(AU);
Taewook Oh0e35ea32017-06-29 23:11:24 +0000173 AU.addRequired<MachineLoopInfo>();
174 AU.addPreserved<MachineLoopInfo>();
Bill Wendlingca678352010-08-09 23:59:04 +0000175 if (Aggressive) {
176 AU.addRequired<MachineDominatorTree>();
177 AU.addPreserved<MachineDominatorTree>();
178 }
179 }
180
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000181 /// Track Def -> Use info used for rewriting copies.
182 using RewriteMapTy = SmallDenseMap<RegSubRegPair, ValueTrackerResult>;
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000183
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000184 /// Sequence of instructions that formulate recurrence cycle.
Eugene Zelenko32a40562017-09-11 23:00:48 +0000185 using RecurrenceCycle = SmallVector<RecurrenceInstr, 4>;
Taewook Oh0e35ea32017-06-29 23:11:24 +0000186
Bill Wendlingca678352010-08-09 23:59:04 +0000187 private:
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000188 bool optimizeCmpInstr(MachineInstr &MI);
189 bool optimizeExtInstr(MachineInstr &MI, MachineBasicBlock &MBB,
Hans Wennborg97a59ae2014-08-11 13:52:46 +0000190 SmallPtrSetImpl<MachineInstr*> &LocalMIs);
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000191 bool optimizeSelect(MachineInstr &MI,
Mehdi Amini22e59742015-01-13 07:07:13 +0000192 SmallPtrSetImpl<MachineInstr *> &LocalMIs);
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000193 bool optimizeCondBranch(MachineInstr &MI);
194 bool optimizeCoalescableCopy(MachineInstr &MI);
195 bool optimizeUncoalescableCopy(MachineInstr &MI,
Quentin Colombet03e43f82014-08-20 17:41:48 +0000196 SmallPtrSetImpl<MachineInstr *> &LocalMIs);
Taewook Oh0e35ea32017-06-29 23:11:24 +0000197 bool optimizeRecurrence(MachineInstr &PHI);
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000198 bool findNextSource(RegSubRegPair RegSubReg, RewriteMapTy &RewriteMap);
199 bool isMoveImmediate(MachineInstr &MI,
Evan Cheng7f8ab6e2010-11-17 20:13:28 +0000200 SmallSet<unsigned, 4> &ImmDefRegs,
201 DenseMap<unsigned, MachineInstr*> &ImmDefMIs);
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000202 bool foldImmediate(MachineInstr &MI, SmallSet<unsigned, 4> &ImmDefRegs,
Evan Cheng7f8ab6e2010-11-17 20:13:28 +0000203 DenseMap<unsigned, MachineInstr*> &ImmDefMIs);
Eugene Zelenko32a40562017-09-11 23:00:48 +0000204
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000205 /// Finds recurrence cycles, but only ones that formulated around
Taewook Oh0e35ea32017-06-29 23:11:24 +0000206 /// a def operand and a use operand that are tied. If there is a use
207 /// operand commutable with the tied use operand, find recurrence cycle
208 /// along that operand as well.
209 bool findTargetRecurrence(unsigned Reg,
210 const SmallSet<unsigned, 2> &TargetReg,
211 RecurrenceCycle &RC);
Matt Arsenault10aa8072015-09-25 20:22:12 +0000212
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000213 /// If copy instruction \p MI is a virtual register copy, track it in
JF Bastien1ac69942015-12-03 23:43:56 +0000214 /// the set \p CopySrcRegs and \p CopyMIs. If this virtual register was
Matt Arsenault10aa8072015-09-25 20:22:12 +0000215 /// previously seen as a copy, replace the uses of this copy with the
216 /// previously seen copy's destination register.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000217 bool foldRedundantCopy(MachineInstr &MI,
JF Bastien1ac69942015-12-03 23:43:56 +0000218 SmallSet<unsigned, 4> &CopySrcRegs,
219 DenseMap<unsigned, MachineInstr *> &CopyMIs);
220
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000221 /// Is the register \p Reg a non-allocatable physical register?
JF Bastien1ac69942015-12-03 23:43:56 +0000222 bool isNAPhysCopy(unsigned Reg);
223
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000224 /// If copy instruction \p MI is a non-allocatable virtual<->physical
JF Bastien1ac69942015-12-03 23:43:56 +0000225 /// register copy, track it in the \p NAPhysToVirtMIs map. If this
226 /// non-allocatable physical register was previously copied to a virtual
227 /// registered and hasn't been clobbered, the virt->phys copy can be
228 /// deleted.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000229 bool foldRedundantNAPhysCopy(MachineInstr &MI,
JF Bastien1ac69942015-12-03 23:43:56 +0000230 DenseMap<unsigned, MachineInstr *> &NAPhysToVirtMIs);
Matt Arsenault10aa8072015-09-25 20:22:12 +0000231
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000232 bool isLoadFoldable(MachineInstr &MI,
Lang Hames5dc14bd2014-04-02 22:59:58 +0000233 SmallSet<unsigned, 16> &FoldAsLoadDefCandidates);
Quentin Colombet03e43f82014-08-20 17:41:48 +0000234
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000235 /// Check whether \p MI is understood by the register coalescer
Quentin Colombet03e43f82014-08-20 17:41:48 +0000236 /// but may require some rewriting.
237 bool isCoalescableCopy(const MachineInstr &MI) {
238 // SubregToRegs are not interesting, because they are already register
239 // coalescer friendly.
240 return MI.isCopy() || (!DisableAdvCopyOpt &&
241 (MI.isRegSequence() || MI.isInsertSubreg() ||
242 MI.isExtractSubreg()));
243 }
244
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000245 /// Check whether \p MI is a copy like instruction that is
Quentin Colombet03e43f82014-08-20 17:41:48 +0000246 /// not recognized by the register coalescer.
247 bool isUncoalescableCopy(const MachineInstr &MI) {
Quentin Colombet68962302014-08-21 00:19:16 +0000248 return MI.isBitcast() ||
249 (!DisableAdvCopyOpt &&
250 (MI.isRegSequenceLike() || MI.isInsertSubregLike() ||
251 MI.isExtractSubregLike()));
Quentin Colombet03e43f82014-08-20 17:41:48 +0000252 }
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000253
254 MachineInstr &rewriteSource(MachineInstr &CopyLike,
255 RegSubRegPair Def, RewriteMapTy &RewriteMap);
Bill Wendlingca678352010-08-09 23:59:04 +0000256 };
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000257
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000258 /// Helper class to hold instructions that are inside recurrence cycles.
259 /// The recurrence cycle is formulated around 1) a def operand and its
Taewook Oh0e35ea32017-06-29 23:11:24 +0000260 /// tied use operand, or 2) a def operand and a use operand that is commutable
261 /// with another use operand which is tied to the def operand. In the latter
262 /// case, index of the tied use operand and the commutable use operand are
263 /// maintained with CommutePair.
264 class RecurrenceInstr {
265 public:
Eugene Zelenko32a40562017-09-11 23:00:48 +0000266 using IndexPair = std::pair<unsigned, unsigned>;
Taewook Oh0e35ea32017-06-29 23:11:24 +0000267
268 RecurrenceInstr(MachineInstr *MI) : MI(MI) {}
269 RecurrenceInstr(MachineInstr *MI, unsigned Idx1, unsigned Idx2)
270 : MI(MI), CommutePair(std::make_pair(Idx1, Idx2)) {}
271
272 MachineInstr *getMI() const { return MI; }
273 Optional<IndexPair> getCommutePair() const { return CommutePair; }
274
275 private:
276 MachineInstr *MI;
277 Optional<IndexPair> CommutePair;
278 };
279
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000280 /// Helper class to hold a reply for ValueTracker queries.
281 /// Contains the returned sources for a given search and the instructions
282 /// where the sources were tracked from.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000283 class ValueTrackerResult {
284 private:
285 /// Track all sources found by one ValueTracker query.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000286 SmallVector<RegSubRegPair, 2> RegSrcs;
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000287
288 /// Instruction using the sources in 'RegSrcs'.
Eugene Zelenko32a40562017-09-11 23:00:48 +0000289 const MachineInstr *Inst = nullptr;
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000290
291 public:
Eugene Zelenko32a40562017-09-11 23:00:48 +0000292 ValueTrackerResult() = default;
293
294 ValueTrackerResult(unsigned Reg, unsigned SubReg) {
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000295 addSource(Reg, SubReg);
296 }
297
298 bool isValid() const { return getNumSources() > 0; }
299
300 void setInst(const MachineInstr *I) { Inst = I; }
301 const MachineInstr *getInst() const { return Inst; }
302
303 void clear() {
304 RegSrcs.clear();
305 Inst = nullptr;
306 }
307
308 void addSource(unsigned SrcReg, unsigned SrcSubReg) {
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000309 RegSrcs.push_back(RegSubRegPair(SrcReg, SrcSubReg));
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000310 }
311
312 void setSource(int Idx, unsigned SrcReg, unsigned SrcSubReg) {
313 assert(Idx < getNumSources() && "Reg pair source out of index");
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000314 RegSrcs[Idx] = RegSubRegPair(SrcReg, SrcSubReg);
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000315 }
316
317 int getNumSources() const { return RegSrcs.size(); }
318
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000319 RegSubRegPair getSrc(int Idx) const {
320 return RegSrcs[Idx];
321 }
322
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000323 unsigned getSrcReg(int Idx) const {
324 assert(Idx < getNumSources() && "Reg source out of index");
325 return RegSrcs[Idx].Reg;
326 }
327
328 unsigned getSrcSubReg(int Idx) const {
329 assert(Idx < getNumSources() && "SubReg source out of index");
330 return RegSrcs[Idx].SubReg;
331 }
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000332
333 bool operator==(const ValueTrackerResult &Other) {
334 if (Other.getInst() != getInst())
335 return false;
336
337 if (Other.getNumSources() != getNumSources())
338 return false;
339
340 for (int i = 0, e = Other.getNumSources(); i != e; ++i)
341 if (Other.getSrcReg(i) != getSrcReg(i) ||
342 Other.getSrcSubReg(i) != getSrcSubReg(i))
343 return false;
344 return true;
345 }
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000346 };
347
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000348 /// Helper class to track the possible sources of a value defined by
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000349 /// a (chain of) copy related instructions.
350 /// Given a definition (instruction and definition index), this class
351 /// follows the use-def chain to find successive suitable sources.
352 /// The given source can be used to rewrite the definition into
353 /// def = COPY src.
354 ///
355 /// For instance, let us consider the following snippet:
356 /// v0 =
357 /// v2 = INSERT_SUBREG v1, v0, sub0
358 /// def = COPY v2.sub0
359 ///
360 /// Using a ValueTracker for def = COPY v2.sub0 will give the following
361 /// suitable sources:
362 /// v2.sub0 and v0.
363 /// Then, def can be rewritten into def = COPY v0.
364 class ValueTracker {
365 private:
366 /// The current point into the use-def chain.
Eugene Zelenko32a40562017-09-11 23:00:48 +0000367 const MachineInstr *Def = nullptr;
368
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000369 /// The index of the definition in Def.
Eugene Zelenko32a40562017-09-11 23:00:48 +0000370 unsigned DefIdx = 0;
371
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000372 /// The sub register index of the definition.
373 unsigned DefSubReg;
Eugene Zelenko32a40562017-09-11 23:00:48 +0000374
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000375 /// The register where the value can be found.
376 unsigned Reg;
Eugene Zelenko32a40562017-09-11 23:00:48 +0000377
Quentin Colombet03e43f82014-08-20 17:41:48 +0000378 /// MachineRegisterInfo used to perform tracking.
379 const MachineRegisterInfo &MRI;
Eugene Zelenko32a40562017-09-11 23:00:48 +0000380
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000381 /// Optional TargetInstrInfo used to perform some complex tracking.
Quentin Colombet03e43f82014-08-20 17:41:48 +0000382 const TargetInstrInfo *TII;
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000383
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000384 /// Dispatcher to the right underlying implementation of getNextSource.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000385 ValueTrackerResult getNextSourceImpl();
Eugene Zelenko32a40562017-09-11 23:00:48 +0000386
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000387 /// Specialized version of getNextSource for Copy instructions.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000388 ValueTrackerResult getNextSourceFromCopy();
Eugene Zelenko32a40562017-09-11 23:00:48 +0000389
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000390 /// Specialized version of getNextSource for Bitcast instructions.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000391 ValueTrackerResult getNextSourceFromBitcast();
Eugene Zelenko32a40562017-09-11 23:00:48 +0000392
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000393 /// Specialized version of getNextSource for RegSequence instructions.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000394 ValueTrackerResult getNextSourceFromRegSequence();
Eugene Zelenko32a40562017-09-11 23:00:48 +0000395
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000396 /// Specialized version of getNextSource for InsertSubreg instructions.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000397 ValueTrackerResult getNextSourceFromInsertSubreg();
Eugene Zelenko32a40562017-09-11 23:00:48 +0000398
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000399 /// Specialized version of getNextSource for ExtractSubreg instructions.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000400 ValueTrackerResult getNextSourceFromExtractSubreg();
Eugene Zelenko32a40562017-09-11 23:00:48 +0000401
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000402 /// Specialized version of getNextSource for SubregToReg instructions.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000403 ValueTrackerResult getNextSourceFromSubregToReg();
Eugene Zelenko32a40562017-09-11 23:00:48 +0000404
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000405 /// Specialized version of getNextSource for PHI instructions.
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000406 ValueTrackerResult getNextSourceFromPHI();
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000407
408 public:
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000409 /// Create a ValueTracker instance for the value defined by \p Reg.
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000410 /// \p DefSubReg represents the sub register index the value tracker will
Quentin Colombet03e43f82014-08-20 17:41:48 +0000411 /// track. It does not need to match the sub register index used in the
412 /// definition of \p Reg.
Quentin Colombet03e43f82014-08-20 17:41:48 +0000413 /// If \p Reg is a physical register, a value tracker constructed with
414 /// this constructor will not find any alternative source.
415 /// Indeed, when \p Reg is a physical register that constructor does not
416 /// know which definition of \p Reg it should track.
417 /// Use the next constructor to track a physical register.
418 ValueTracker(unsigned Reg, unsigned DefSubReg,
419 const MachineRegisterInfo &MRI,
Quentin Colombet03e43f82014-08-20 17:41:48 +0000420 const TargetInstrInfo *TII = nullptr)
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000421 : DefSubReg(DefSubReg), Reg(Reg), MRI(MRI), TII(TII) {
Quentin Colombet03e43f82014-08-20 17:41:48 +0000422 if (!TargetRegisterInfo::isPhysicalRegister(Reg)) {
423 Def = MRI.getVRegDef(Reg);
424 DefIdx = MRI.def_begin(Reg).getOperandNo();
425 }
426 }
427
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000428 /// Following the use-def chain, get the next available source
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000429 /// for the tracked value.
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000430 /// \return A ValueTrackerResult containing a set of registers
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000431 /// and sub registers with tracked values. A ValueTrackerResult with
432 /// an empty set of registers means no source was found.
433 ValueTrackerResult getNextSource();
Quentin Colombet1111e6f2014-07-01 14:33:36 +0000434 };
Eugene Zelenko1804a772016-08-25 00:45:04 +0000435
436} // end anonymous namespace
Bill Wendlingca678352010-08-09 23:59:04 +0000437
438char PeepholeOptimizer::ID = 0;
Eugene Zelenko32a40562017-09-11 23:00:48 +0000439
Andrew Trick1fa5bcb2012-02-08 21:23:13 +0000440char &llvm::PeepholeOptimizerID = PeepholeOptimizer::ID;
Eugene Zelenko1804a772016-08-25 00:45:04 +0000441
Matt Arsenault44540a32016-07-08 16:29:11 +0000442INITIALIZE_PASS_BEGIN(PeepholeOptimizer, DEBUG_TYPE,
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000443 "Peephole Optimizations", false, false)
Owen Anderson8ac477f2010-10-12 19:48:12 +0000444INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
Taewook Oh0e35ea32017-06-29 23:11:24 +0000445INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo)
Matt Arsenault44540a32016-07-08 16:29:11 +0000446INITIALIZE_PASS_END(PeepholeOptimizer, DEBUG_TYPE,
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000447 "Peephole Optimizations", false, false)
Bill Wendlingca678352010-08-09 23:59:04 +0000448
Sanjay Patel59309cc2015-12-29 18:14:06 +0000449/// If instruction is a copy-like instruction, i.e. it reads a single register
450/// and writes a single register and it does not modify the source, and if the
451/// source value is preserved as a sub-register of the result, then replace all
452/// reachable uses of the source with the subreg of the result.
Andrew Trick9e761992012-02-08 21:22:43 +0000453///
Bill Wendlingca678352010-08-09 23:59:04 +0000454/// Do not generate an EXTRACT that is used only in a debug use, as this changes
455/// the code. Since this code does not currently share EXTRACTs, just ignore all
456/// debug uses.
457bool PeepholeOptimizer::
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000458optimizeExtInstr(MachineInstr &MI, MachineBasicBlock &MBB,
Hans Wennborg97a59ae2014-08-11 13:52:46 +0000459 SmallPtrSetImpl<MachineInstr*> &LocalMIs) {
Bill Wendlingca678352010-08-09 23:59:04 +0000460 unsigned SrcReg, DstReg, SubIdx;
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000461 if (!TII->isCoalescableExtInstr(MI, SrcReg, DstReg, SubIdx))
Bill Wendlingca678352010-08-09 23:59:04 +0000462 return false;
Andrew Trick9e761992012-02-08 21:22:43 +0000463
Bill Wendlingca678352010-08-09 23:59:04 +0000464 if (TargetRegisterInfo::isPhysicalRegister(DstReg) ||
465 TargetRegisterInfo::isPhysicalRegister(SrcReg))
466 return false;
467
Jakob Stoklund Olesen8eb99052012-06-19 21:10:18 +0000468 if (MRI->hasOneNonDBGUse(SrcReg))
Bill Wendlingca678352010-08-09 23:59:04 +0000469 // No other uses.
470 return false;
471
Jakob Stoklund Olesen2f06a652012-05-20 18:42:55 +0000472 // Ensure DstReg can get a register class that actually supports
473 // sub-registers. Don't change the class until we commit.
474 const TargetRegisterClass *DstRC = MRI->getRegClass(DstReg);
Eric Christopher92b4bcb2014-10-14 07:17:20 +0000475 DstRC = TRI->getSubClassWithSubReg(DstRC, SubIdx);
Jakob Stoklund Olesen2f06a652012-05-20 18:42:55 +0000476 if (!DstRC)
477 return false;
478
Jakob Stoklund Olesen0f855e42012-06-19 21:14:34 +0000479 // The ext instr may be operating on a sub-register of SrcReg as well.
480 // PPC::EXTSW is a 32 -> 64-bit sign extension, but it reads a 64-bit
481 // register.
482 // If UseSrcSubIdx is Set, SubIdx also applies to SrcReg, and only uses of
483 // SrcReg:SubIdx should be replaced.
Eric Christopherd9134482014-08-04 21:25:23 +0000484 bool UseSrcSubIdx =
Eric Christopher92b4bcb2014-10-14 07:17:20 +0000485 TRI->getSubClassWithSubReg(MRI->getRegClass(SrcReg), SubIdx) != nullptr;
Jakob Stoklund Olesen0f855e42012-06-19 21:14:34 +0000486
Bill Wendlingca678352010-08-09 23:59:04 +0000487 // The source has other uses. See if we can replace the other uses with use of
488 // the result of the extension.
489 SmallPtrSet<MachineBasicBlock*, 4> ReachedBBs;
Owen Andersonb36376e2014-03-17 19:36:09 +0000490 for (MachineInstr &UI : MRI->use_nodbg_instructions(DstReg))
491 ReachedBBs.insert(UI.getParent());
Bill Wendlingca678352010-08-09 23:59:04 +0000492
493 // Uses that are in the same BB of uses of the result of the instruction.
494 SmallVector<MachineOperand*, 8> Uses;
495
496 // Uses that the result of the instruction can reach.
497 SmallVector<MachineOperand*, 8> ExtendedUses;
498
499 bool ExtendLife = true;
Owen Andersonb36376e2014-03-17 19:36:09 +0000500 for (MachineOperand &UseMO : MRI->use_nodbg_operands(SrcReg)) {
Owen Anderson16c6bf42014-03-13 23:12:04 +0000501 MachineInstr *UseMI = UseMO.getParent();
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000502 if (UseMI == &MI)
Bill Wendlingca678352010-08-09 23:59:04 +0000503 continue;
504
505 if (UseMI->isPHI()) {
506 ExtendLife = false;
507 continue;
508 }
509
Jakob Stoklund Olesen0f855e42012-06-19 21:14:34 +0000510 // Only accept uses of SrcReg:SubIdx.
511 if (UseSrcSubIdx && UseMO.getSubReg() != SubIdx)
512 continue;
513
Bill Wendlingca678352010-08-09 23:59:04 +0000514 // It's an error to translate this:
515 //
516 // %reg1025 = <sext> %reg1024
517 // ...
518 // %reg1026 = SUBREG_TO_REG 0, %reg1024, 4
519 //
520 // into this:
521 //
522 // %reg1025 = <sext> %reg1024
523 // ...
524 // %reg1027 = COPY %reg1025:4
525 // %reg1026 = SUBREG_TO_REG 0, %reg1027, 4
526 //
527 // The problem here is that SUBREG_TO_REG is there to assert that an
528 // implicit zext occurs. It doesn't insert a zext instruction. If we allow
529 // the COPY here, it will give us the value after the <sext>, not the
530 // original value of %reg1024 before <sext>.
531 if (UseMI->getOpcode() == TargetOpcode::SUBREG_TO_REG)
532 continue;
533
534 MachineBasicBlock *UseMBB = UseMI->getParent();
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000535 if (UseMBB == &MBB) {
Bill Wendlingca678352010-08-09 23:59:04 +0000536 // Local uses that come after the extension.
537 if (!LocalMIs.count(UseMI))
538 Uses.push_back(&UseMO);
539 } else if (ReachedBBs.count(UseMBB)) {
540 // Non-local uses where the result of the extension is used. Always
541 // replace these unless it's a PHI.
542 Uses.push_back(&UseMO);
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000543 } else if (Aggressive && DT->dominates(&MBB, UseMBB)) {
Bill Wendlingca678352010-08-09 23:59:04 +0000544 // We may want to extend the live range of the extension result in order
545 // to replace these uses.
546 ExtendedUses.push_back(&UseMO);
547 } else {
548 // Both will be live out of the def MBB anyway. Don't extend live range of
549 // the extension result.
550 ExtendLife = false;
551 break;
552 }
553 }
554
555 if (ExtendLife && !ExtendedUses.empty())
556 // Extend the liveness of the extension result.
Benjamin Kramer4f6ac162015-02-28 10:11:12 +0000557 Uses.append(ExtendedUses.begin(), ExtendedUses.end());
Bill Wendlingca678352010-08-09 23:59:04 +0000558
559 // Now replace all uses.
560 bool Changed = false;
561 if (!Uses.empty()) {
562 SmallPtrSet<MachineBasicBlock*, 4> PHIBBs;
563
564 // Look for PHI uses of the extended result, we don't want to extend the
565 // liveness of a PHI input. It breaks all kinds of assumptions down
566 // stream. A PHI use is expected to be the kill of its source values.
Owen Andersonb36376e2014-03-17 19:36:09 +0000567 for (MachineInstr &UI : MRI->use_nodbg_instructions(DstReg))
568 if (UI.isPHI())
569 PHIBBs.insert(UI.getParent());
Bill Wendlingca678352010-08-09 23:59:04 +0000570
571 const TargetRegisterClass *RC = MRI->getRegClass(SrcReg);
572 for (unsigned i = 0, e = Uses.size(); i != e; ++i) {
573 MachineOperand *UseMO = Uses[i];
574 MachineInstr *UseMI = UseMO->getParent();
575 MachineBasicBlock *UseMBB = UseMI->getParent();
576 if (PHIBBs.count(UseMBB))
577 continue;
578
Lang Hamesd5862ce2012-02-25 02:01:00 +0000579 // About to add uses of DstReg, clear DstReg's kill flags.
Jakob Stoklund Olesen2f06a652012-05-20 18:42:55 +0000580 if (!Changed) {
Lang Hamesd5862ce2012-02-25 02:01:00 +0000581 MRI->clearKillFlags(DstReg);
Jakob Stoklund Olesen2f06a652012-05-20 18:42:55 +0000582 MRI->constrainRegClass(DstReg, DstRC);
583 }
Lang Hamesd5862ce2012-02-25 02:01:00 +0000584
Bill Wendlingca678352010-08-09 23:59:04 +0000585 unsigned NewVR = MRI->createVirtualRegister(RC);
Jakob Stoklund Olesen0f855e42012-06-19 21:14:34 +0000586 MachineInstr *Copy = BuildMI(*UseMBB, UseMI, UseMI->getDebugLoc(),
587 TII->get(TargetOpcode::COPY), NewVR)
Bill Wendlingca678352010-08-09 23:59:04 +0000588 .addReg(DstReg, 0, SubIdx);
Jakob Stoklund Olesen0f855e42012-06-19 21:14:34 +0000589 // SubIdx applies to both SrcReg and DstReg when UseSrcSubIdx is set.
590 if (UseSrcSubIdx) {
591 Copy->getOperand(0).setSubReg(SubIdx);
592 Copy->getOperand(0).setIsUndef();
593 }
Bill Wendlingca678352010-08-09 23:59:04 +0000594 UseMO->setReg(NewVR);
595 ++NumReuse;
596 Changed = true;
597 }
598 }
599
600 return Changed;
601}
602
Sanjay Patel59309cc2015-12-29 18:14:06 +0000603/// If the instruction is a compare and the previous instruction it's comparing
604/// against already sets (or could be modified to set) the same flag as the
605/// compare, then we can remove the comparison and use the flag from the
606/// previous instruction.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000607bool PeepholeOptimizer::optimizeCmpInstr(MachineInstr &MI) {
Bill Wendlingca678352010-08-09 23:59:04 +0000608 // If this instruction is a comparison against zero and isn't comparing a
609 // physical register, we can try to optimize it.
Manman Ren6fa76dc2012-06-29 21:33:59 +0000610 unsigned SrcReg, SrcReg2;
Gabor Greifadbbb932010-09-21 12:01:15 +0000611 int CmpMask, CmpValue;
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000612 if (!TII->analyzeCompare(MI, SrcReg, SrcReg2, CmpMask, CmpValue) ||
Manman Ren6fa76dc2012-06-29 21:33:59 +0000613 TargetRegisterInfo::isPhysicalRegister(SrcReg) ||
614 (SrcReg2 != 0 && TargetRegisterInfo::isPhysicalRegister(SrcReg2)))
Bill Wendlingca678352010-08-09 23:59:04 +0000615 return false;
616
Bill Wendling27dddd12010-09-11 00:13:50 +0000617 // Attempt to optimize the comparison instruction.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000618 if (TII->optimizeCompareInstr(MI, SrcReg, SrcReg2, CmpMask, CmpValue, MRI)) {
Evan Chenge4b8ac92011-03-15 05:13:13 +0000619 ++NumCmps;
Bill Wendlingca678352010-08-09 23:59:04 +0000620 return true;
621 }
622
623 return false;
624}
625
Jakob Stoklund Olesen2382d322012-08-16 23:11:47 +0000626/// Optimize a select instruction.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000627bool PeepholeOptimizer::optimizeSelect(MachineInstr &MI,
Mehdi Amini22e59742015-01-13 07:07:13 +0000628 SmallPtrSetImpl<MachineInstr *> &LocalMIs) {
Jakob Stoklund Olesen2382d322012-08-16 23:11:47 +0000629 unsigned TrueOp = 0;
630 unsigned FalseOp = 0;
631 bool Optimizable = false;
632 SmallVector<MachineOperand, 4> Cond;
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000633 if (TII->analyzeSelect(MI, Cond, TrueOp, FalseOp, Optimizable))
Jakob Stoklund Olesen2382d322012-08-16 23:11:47 +0000634 return false;
635 if (!Optimizable)
636 return false;
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000637 if (!TII->optimizeSelect(MI, LocalMIs))
Jakob Stoklund Olesen2382d322012-08-16 23:11:47 +0000638 return false;
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000639 MI.eraseFromParent();
Jakob Stoklund Olesen2382d322012-08-16 23:11:47 +0000640 ++NumSelects;
641 return true;
642}
643
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000644/// Check if a simpler conditional branch can be generated.
645bool PeepholeOptimizer::optimizeCondBranch(MachineInstr &MI) {
646 return TII->optimizeCondBranch(MI);
Gerolf Hoflehnera4c96d02014-10-14 23:07:53 +0000647}
648
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000649/// Try to find the next source that share the same register file
Quentin Colombet03e43f82014-08-20 17:41:48 +0000650/// for the value defined by \p Reg and \p SubReg.
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000651/// When true is returned, the \p RewriteMap can be used by the client to
652/// retrieve all Def -> Use along the way up to the next source. Any found
653/// Use that is not itself a key for another entry, is the next source to
654/// use. During the search for the next source, multiple sources can be found
655/// given multiple incoming sources of a PHI instruction. In this case, we
656/// look in each PHI source for the next source; all found next sources must
657/// share the same register file as \p Reg and \p SubReg. The client should
658/// then be capable to rewrite all intermediate PHIs to get the next source.
Quentin Colombet03e43f82014-08-20 17:41:48 +0000659/// \return False if no alternative sources are available. True otherwise.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000660bool PeepholeOptimizer::findNextSource(RegSubRegPair RegSubReg,
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000661 RewriteMapTy &RewriteMap) {
Quentin Colombet03e43f82014-08-20 17:41:48 +0000662 // Do not try to find a new source for a physical register.
663 // So far we do not have any motivating example for doing that.
664 // Thus, instead of maintaining untested code, we will revisit that if
665 // that changes at some point.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000666 unsigned Reg = RegSubReg.Reg;
Quentin Colombet03e43f82014-08-20 17:41:48 +0000667 if (TargetRegisterInfo::isPhysicalRegister(Reg))
Quentin Colombetcf71c632013-09-13 18:26:31 +0000668 return false;
Bruno Cardoso Lopes38c02502015-07-29 17:46:47 +0000669 const TargetRegisterClass *DefRC = MRI->getRegClass(Reg);
Bruno Cardoso Lopes38c02502015-07-29 17:46:47 +0000670
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000671 SmallVector<RegSubRegPair, 4> SrcToLook;
672 RegSubRegPair CurSrcPair = RegSubReg;
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000673 SrcToLook.push_back(CurSrcPair);
Quentin Colombetcf71c632013-09-13 18:26:31 +0000674
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000675 unsigned PHICount = 0;
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000676 do {
677 CurSrcPair = SrcToLook.pop_back_val();
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000678 // As explained above, do not handle physical registers
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000679 if (TargetRegisterInfo::isPhysicalRegister(CurSrcPair.Reg))
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000680 return false;
Quentin Colombetcf71c632013-09-13 18:26:31 +0000681
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000682 ValueTracker ValTracker(CurSrcPair.Reg, CurSrcPair.SubReg, *MRI, TII);
Quentin Colombetcf71c632013-09-13 18:26:31 +0000683
Matthias Braun08abcac2018-01-11 21:57:03 +0000684 // Follow the chain of copies until we find a more suitable source, a phi
685 // or have to abort.
686 while (true) {
687 ValueTrackerResult Res = ValTracker.getNextSource();
688 // Abort at the end of a chain (without finding a suitable source).
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000689 if (!Res.isValid())
Matthias Braun08abcac2018-01-11 21:57:03 +0000690 return false;
Quentin Colombetcf71c632013-09-13 18:26:31 +0000691
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000692 // Insert the Def -> Use entry for the recently found source.
693 ValueTrackerResult CurSrcRes = RewriteMap.lookup(CurSrcPair);
694 if (CurSrcRes.isValid()) {
695 assert(CurSrcRes == Res && "ValueTrackerResult found must match");
696 // An existent entry with multiple sources is a PHI cycle we must avoid.
697 // Otherwise it's an entry with a valid next source we already found.
698 if (CurSrcRes.getNumSources() > 1) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000699 LLVM_DEBUG(dbgs()
700 << "findNextSource: found PHI cycle, aborting...\n");
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000701 return false;
702 }
703 break;
704 }
705 RewriteMap.insert(std::make_pair(CurSrcPair, Res));
706
707 // ValueTrackerResult usually have one source unless it's the result from
708 // a PHI instruction. Add the found PHI edges to be looked up further.
709 unsigned NumSrcs = Res.getNumSources();
710 if (NumSrcs > 1) {
711 PHICount++;
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000712 if (PHICount >= RewritePHILimit) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000713 LLVM_DEBUG(dbgs() << "findNextSource: PHI limit reached\n");
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000714 return false;
715 }
716
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000717 for (unsigned i = 0; i < NumSrcs; ++i)
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000718 SrcToLook.push_back(Res.getSrc(i));
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000719 break;
720 }
721
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000722 CurSrcPair = Res.getSrc(0);
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000723 // Do not extend the live-ranges of physical registers as they add
724 // constraints to the register allocator. Moreover, if we want to extend
725 // the live-range of a physical register, unlike SSA virtual register,
726 // we will have to check that they aren't redefine before the related use.
727 if (TargetRegisterInfo::isPhysicalRegister(CurSrcPair.Reg))
728 return false;
729
Matthias Braun08abcac2018-01-11 21:57:03 +0000730 // Keep following the chain if the value isn't any better yet.
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000731 const TargetRegisterClass *SrcRC = MRI->getRegClass(CurSrcPair.Reg);
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000732 if (!TRI->shouldRewriteCopySrc(DefRC, RegSubReg.SubReg, SrcRC,
733 CurSrcPair.SubReg))
Matthias Braun08abcac2018-01-11 21:57:03 +0000734 continue;
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000735
Matthias Braun08abcac2018-01-11 21:57:03 +0000736 // We currently cannot deal with subreg operands on PHI instructions
737 // (see insertPHI()).
738 if (PHICount > 0 && CurSrcPair.SubReg != 0)
739 continue;
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000740
Matthias Braun08abcac2018-01-11 21:57:03 +0000741 // We found a suitable source, and are done with this chain.
742 break;
743 }
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000744 } while (!SrcToLook.empty());
Quentin Colombetcf71c632013-09-13 18:26:31 +0000745
746 // If we did not find a more suitable source, there is nothing to optimize.
Rafael Espindola84921b92015-10-24 23:11:13 +0000747 return CurSrcPair.Reg != Reg;
Quentin Colombet03e43f82014-08-20 17:41:48 +0000748}
Quentin Colombetcf71c632013-09-13 18:26:31 +0000749
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000750/// Insert a PHI instruction with incoming edges \p SrcRegs that are
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000751/// guaranteed to have the same register class. This is necessary whenever we
752/// successfully traverse a PHI instruction and find suitable sources coming
753/// from its edges. By inserting a new PHI, we provide a rewritten PHI def
754/// suitable to be used in a new COPY instruction.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000755static MachineInstr &
756insertPHI(MachineRegisterInfo &MRI, const TargetInstrInfo &TII,
757 const SmallVectorImpl<RegSubRegPair> &SrcRegs,
758 MachineInstr &OrigPHI) {
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000759 assert(!SrcRegs.empty() && "No sources to create a PHI instruction?");
760
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000761 const TargetRegisterClass *NewRC = MRI.getRegClass(SrcRegs[0].Reg);
Matthias Braun08abcac2018-01-11 21:57:03 +0000762 // NewRC is only correct if no subregisters are involved. findNextSource()
763 // should have rejected those cases already.
764 assert(SrcRegs[0].SubReg == 0 && "should not have subreg operand");
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000765 unsigned NewVR = MRI.createVirtualRegister(NewRC);
766 MachineBasicBlock *MBB = OrigPHI.getParent();
767 MachineInstrBuilder MIB = BuildMI(*MBB, &OrigPHI, OrigPHI.getDebugLoc(),
768 TII.get(TargetOpcode::PHI), NewVR);
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000769
770 unsigned MBBOpIdx = 2;
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000771 for (const RegSubRegPair &RegPair : SrcRegs) {
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000772 MIB.addReg(RegPair.Reg, 0, RegPair.SubReg);
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000773 MIB.addMBB(OrigPHI.getOperand(MBBOpIdx).getMBB());
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000774 // Since we're extended the lifetime of RegPair.Reg, clear the
775 // kill flags to account for that and make RegPair.Reg reaches
776 // the new PHI.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000777 MRI.clearKillFlags(RegPair.Reg);
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000778 MBBOpIdx += 2;
779 }
780
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000781 return *MIB;
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +0000782}
783
Quentin Colombet03e43f82014-08-20 17:41:48 +0000784namespace {
Eugene Zelenko1804a772016-08-25 00:45:04 +0000785
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000786/// Interface to query instructions amenable to copy rewriting.
787class Rewriter {
Quentin Colombet03e43f82014-08-20 17:41:48 +0000788protected:
Quentin Colombet03e43f82014-08-20 17:41:48 +0000789 MachineInstr &CopyLike;
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000790 unsigned CurrentSrcIdx = 0; ///< The index of the source being rewritten.
Quentin Colombet03e43f82014-08-20 17:41:48 +0000791public:
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000792 Rewriter(MachineInstr &CopyLike) : CopyLike(CopyLike) {}
793 virtual ~Rewriter() {}
Quentin Colombet03e43f82014-08-20 17:41:48 +0000794
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000795 /// Get the next rewritable source (SrcReg, SrcSubReg) and
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000796 /// the related value that it affects (DstReg, DstSubReg).
Quentin Colombet03e43f82014-08-20 17:41:48 +0000797 /// A source is considered rewritable if its register class and the
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000798 /// register class of the related DstReg may not be register
Quentin Colombet03e43f82014-08-20 17:41:48 +0000799 /// coalescer friendly. In other words, given a copy-like instruction
800 /// not all the arguments may be returned at rewritable source, since
801 /// some arguments are none to be register coalescer friendly.
802 ///
803 /// Each call of this method moves the current source to the next
804 /// rewritable source.
805 /// For instance, let CopyLike be the instruction to rewrite.
806 /// CopyLike has one definition and one source:
807 /// dst.dstSubIdx = CopyLike src.srcSubIdx.
808 ///
809 /// The first call will give the first rewritable source, i.e.,
810 /// the only source this instruction has:
811 /// (SrcReg, SrcSubReg) = (src, srcSubIdx).
812 /// This source defines the whole definition, i.e.,
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000813 /// (DstReg, DstSubReg) = (dst, dstSubIdx).
Quentin Colombet03e43f82014-08-20 17:41:48 +0000814 ///
Matt Arsenault30991562015-09-09 00:38:33 +0000815 /// The second and subsequent calls will return false, as there is only one
Quentin Colombet03e43f82014-08-20 17:41:48 +0000816 /// rewritable source.
817 ///
818 /// \return True if a rewritable source has been found, false otherwise.
819 /// The output arguments are valid if and only if true is returned.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000820 virtual bool getNextRewritableSource(RegSubRegPair &Src,
821 RegSubRegPair &Dst) = 0;
822
823 /// Rewrite the current source with \p NewReg and \p NewSubReg if possible.
824 /// \return True if the rewriting was possible, false otherwise.
825 virtual bool RewriteCurrentSource(unsigned NewReg, unsigned NewSubReg) = 0;
826};
827
828/// Rewriter for COPY instructions.
829class CopyRewriter : public Rewriter {
830public:
831 CopyRewriter(MachineInstr &MI) : Rewriter(MI) {
832 assert(MI.isCopy() && "Expected copy instruction");
833 }
834 virtual ~CopyRewriter() = default;
835
836 bool getNextRewritableSource(RegSubRegPair &Src,
837 RegSubRegPair &Dst) override {
838 // CurrentSrcIdx > 0 means this function has already been called.
839 if (CurrentSrcIdx > 0)
Quentin Colombet03e43f82014-08-20 17:41:48 +0000840 return false;
841 // This is the first call to getNextRewritableSource.
842 // Move the CurrentSrcIdx to remember that we made that call.
843 CurrentSrcIdx = 1;
844 // The rewritable source is the argument.
845 const MachineOperand &MOSrc = CopyLike.getOperand(1);
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000846 Src = RegSubRegPair(MOSrc.getReg(), MOSrc.getSubReg());
Quentin Colombet03e43f82014-08-20 17:41:48 +0000847 // What we track are the alternative sources of the definition.
848 const MachineOperand &MODef = CopyLike.getOperand(0);
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000849 Dst = RegSubRegPair(MODef.getReg(), MODef.getSubReg());
Quentin Colombet03e43f82014-08-20 17:41:48 +0000850 return true;
851 }
852
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000853 bool RewriteCurrentSource(unsigned NewReg, unsigned NewSubReg) override {
854 if (CurrentSrcIdx != 1)
Quentin Colombet03e43f82014-08-20 17:41:48 +0000855 return false;
856 MachineOperand &MOSrc = CopyLike.getOperand(CurrentSrcIdx);
857 MOSrc.setReg(NewReg);
858 MOSrc.setSubReg(NewSubReg);
859 return true;
860 }
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000861};
862
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000863/// Helper class to rewrite uncoalescable copy like instructions
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000864/// into new COPY (coalescable friendly) instructions.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000865class UncoalescableRewriter : public Rewriter {
866 unsigned NumDefs; ///< Number of defs in the bitcast.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000867
868public:
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000869 UncoalescableRewriter(MachineInstr &MI) : Rewriter(MI) {
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000870 NumDefs = MI.getDesc().getNumDefs();
871 }
872
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000873 /// \see See Rewriter::getNextRewritableSource()
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000874 /// All such sources need to be considered rewritable in order to
875 /// rewrite a uncoalescable copy-like instruction. This method return
876 /// each definition that must be checked if rewritable.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000877 bool getNextRewritableSource(RegSubRegPair &Src,
878 RegSubRegPair &Dst) override {
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000879 // Find the next non-dead definition and continue from there.
880 if (CurrentSrcIdx == NumDefs)
881 return false;
882
883 while (CopyLike.getOperand(CurrentSrcIdx).isDead()) {
884 ++CurrentSrcIdx;
885 if (CurrentSrcIdx == NumDefs)
886 return false;
887 }
888
889 // What we track are the alternative sources of the definition.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000890 Src = RegSubRegPair(0, 0);
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000891 const MachineOperand &MODef = CopyLike.getOperand(CurrentSrcIdx);
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000892 Dst = RegSubRegPair(MODef.getReg(), MODef.getSubReg());
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000893
894 CurrentSrcIdx++;
895 return true;
896 }
897
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000898 bool RewriteCurrentSource(unsigned NewReg, unsigned NewSubReg) override {
899 return false;
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +0000900 }
Quentin Colombet03e43f82014-08-20 17:41:48 +0000901};
902
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000903/// Specialized rewriter for INSERT_SUBREG instruction.
904class InsertSubregRewriter : public Rewriter {
Quentin Colombet03e43f82014-08-20 17:41:48 +0000905public:
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000906 InsertSubregRewriter(MachineInstr &MI) : Rewriter(MI) {
Quentin Colombet03e43f82014-08-20 17:41:48 +0000907 assert(MI.isInsertSubreg() && "Invalid instruction");
908 }
909
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000910 /// \see See Rewriter::getNextRewritableSource()
Quentin Colombet03e43f82014-08-20 17:41:48 +0000911 /// Here CopyLike has the following form:
912 /// dst = INSERT_SUBREG Src1, Src2.src2SubIdx, subIdx.
913 /// Src1 has the same register class has dst, hence, there is
914 /// nothing to rewrite.
915 /// Src2.src2SubIdx, may not be register coalescer friendly.
916 /// Therefore, the first call to this method returns:
917 /// (SrcReg, SrcSubReg) = (Src2, src2SubIdx).
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000918 /// (DstReg, DstSubReg) = (dst, subIdx).
Quentin Colombet03e43f82014-08-20 17:41:48 +0000919 ///
920 /// Subsequence calls will return false.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000921 bool getNextRewritableSource(RegSubRegPair &Src,
922 RegSubRegPair &Dst) override {
Quentin Colombet03e43f82014-08-20 17:41:48 +0000923 // If we already get the only source we can rewrite, return false.
924 if (CurrentSrcIdx == 2)
925 return false;
926 // We are looking at v2 = INSERT_SUBREG v0, v1, sub0.
927 CurrentSrcIdx = 2;
928 const MachineOperand &MOInsertedReg = CopyLike.getOperand(2);
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000929 Src = RegSubRegPair(MOInsertedReg.getReg(), MOInsertedReg.getSubReg());
Quentin Colombet03e43f82014-08-20 17:41:48 +0000930 const MachineOperand &MODef = CopyLike.getOperand(0);
931
932 // We want to track something that is compatible with the
933 // partial definition.
Quentin Colombet03e43f82014-08-20 17:41:48 +0000934 if (MODef.getSubReg())
Matt Arsenault30991562015-09-09 00:38:33 +0000935 // Bail if we have to compose sub-register indices.
Quentin Colombet03e43f82014-08-20 17:41:48 +0000936 return false;
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000937 Dst = RegSubRegPair(MODef.getReg(),
938 (unsigned)CopyLike.getOperand(3).getImm());
Quentin Colombet03e43f82014-08-20 17:41:48 +0000939 return true;
940 }
Eugene Zelenko1804a772016-08-25 00:45:04 +0000941
Quentin Colombet03e43f82014-08-20 17:41:48 +0000942 bool RewriteCurrentSource(unsigned NewReg, unsigned NewSubReg) override {
943 if (CurrentSrcIdx != 2)
944 return false;
945 // We are rewriting the inserted reg.
946 MachineOperand &MO = CopyLike.getOperand(CurrentSrcIdx);
947 MO.setReg(NewReg);
948 MO.setSubReg(NewSubReg);
949 return true;
950 }
951};
952
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000953/// Specialized rewriter for EXTRACT_SUBREG instruction.
954class ExtractSubregRewriter : public Rewriter {
Quentin Colombet03e43f82014-08-20 17:41:48 +0000955 const TargetInstrInfo &TII;
956
957public:
958 ExtractSubregRewriter(MachineInstr &MI, const TargetInstrInfo &TII)
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000959 : Rewriter(MI), TII(TII) {
Quentin Colombet03e43f82014-08-20 17:41:48 +0000960 assert(MI.isExtractSubreg() && "Invalid instruction");
961 }
962
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000963 /// \see Rewriter::getNextRewritableSource()
Quentin Colombet03e43f82014-08-20 17:41:48 +0000964 /// Here CopyLike has the following form:
965 /// dst.dstSubIdx = EXTRACT_SUBREG Src, subIdx.
966 /// There is only one rewritable source: Src.subIdx,
967 /// which defines dst.dstSubIdx.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000968 bool getNextRewritableSource(RegSubRegPair &Src,
969 RegSubRegPair &Dst) override {
Quentin Colombet03e43f82014-08-20 17:41:48 +0000970 // If we already get the only source we can rewrite, return false.
971 if (CurrentSrcIdx == 1)
972 return false;
973 // We are looking at v1 = EXTRACT_SUBREG v0, sub0.
974 CurrentSrcIdx = 1;
975 const MachineOperand &MOExtractedReg = CopyLike.getOperand(1);
Matt Arsenault30991562015-09-09 00:38:33 +0000976 // If we have to compose sub-register indices, bail out.
Quentin Colombet03e43f82014-08-20 17:41:48 +0000977 if (MOExtractedReg.getSubReg())
978 return false;
979
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000980 Src = RegSubRegPair(MOExtractedReg.getReg(),
981 CopyLike.getOperand(2).getImm());
Quentin Colombet03e43f82014-08-20 17:41:48 +0000982
983 // We want to track something that is compatible with the definition.
984 const MachineOperand &MODef = CopyLike.getOperand(0);
Matthias Braunbfd9c4a2018-01-11 22:59:33 +0000985 Dst = RegSubRegPair(MODef.getReg(), MODef.getSubReg());
Quentin Colombet03e43f82014-08-20 17:41:48 +0000986 return true;
987 }
988
989 bool RewriteCurrentSource(unsigned NewReg, unsigned NewSubReg) override {
990 // The only source we can rewrite is the input register.
991 if (CurrentSrcIdx != 1)
992 return false;
993
994 CopyLike.getOperand(CurrentSrcIdx).setReg(NewReg);
995
996 // If we find a source that does not require to extract something,
997 // rewrite the operation with a copy.
998 if (!NewSubReg) {
999 // Move the current index to an invalid position.
1000 // We do not want another call to this method to be able
1001 // to do any change.
1002 CurrentSrcIdx = -1;
1003 // Rewrite the operation as a COPY.
1004 // Get rid of the sub-register index.
1005 CopyLike.RemoveOperand(2);
1006 // Morph the operation into a COPY.
1007 CopyLike.setDesc(TII.get(TargetOpcode::COPY));
1008 return true;
1009 }
1010 CopyLike.getOperand(CurrentSrcIdx + 1).setImm(NewSubReg);
1011 return true;
1012 }
1013};
1014
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001015/// Specialized rewriter for REG_SEQUENCE instruction.
1016class RegSequenceRewriter : public Rewriter {
Quentin Colombet03e43f82014-08-20 17:41:48 +00001017public:
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001018 RegSequenceRewriter(MachineInstr &MI) : Rewriter(MI) {
Quentin Colombet03e43f82014-08-20 17:41:48 +00001019 assert(MI.isRegSequence() && "Invalid instruction");
1020 }
1021
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001022 /// \see Rewriter::getNextRewritableSource()
Quentin Colombet03e43f82014-08-20 17:41:48 +00001023 /// Here CopyLike has the following form:
1024 /// dst = REG_SEQUENCE Src1.src1SubIdx, subIdx1, Src2.src2SubIdx, subIdx2.
1025 /// Each call will return a different source, walking all the available
1026 /// source.
1027 ///
1028 /// The first call returns:
1029 /// (SrcReg, SrcSubReg) = (Src1, src1SubIdx).
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001030 /// (DstReg, DstSubReg) = (dst, subIdx1).
Quentin Colombet03e43f82014-08-20 17:41:48 +00001031 ///
1032 /// The second call returns:
1033 /// (SrcReg, SrcSubReg) = (Src2, src2SubIdx).
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001034 /// (DstReg, DstSubReg) = (dst, subIdx2).
Quentin Colombet03e43f82014-08-20 17:41:48 +00001035 ///
1036 /// And so on, until all the sources have been traversed, then
1037 /// it returns false.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001038 bool getNextRewritableSource(RegSubRegPair &Src,
1039 RegSubRegPair &Dst) override {
Quentin Colombet03e43f82014-08-20 17:41:48 +00001040 // We are looking at v0 = REG_SEQUENCE v1, sub1, v2, sub2, etc.
1041
1042 // If this is the first call, move to the first argument.
1043 if (CurrentSrcIdx == 0) {
1044 CurrentSrcIdx = 1;
1045 } else {
1046 // Otherwise, move to the next argument and check that it is valid.
1047 CurrentSrcIdx += 2;
1048 if (CurrentSrcIdx >= CopyLike.getNumOperands())
1049 return false;
1050 }
1051 const MachineOperand &MOInsertedReg = CopyLike.getOperand(CurrentSrcIdx);
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001052 Src.Reg = MOInsertedReg.getReg();
Matt Arsenault30991562015-09-09 00:38:33 +00001053 // If we have to compose sub-register indices, bail out.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001054 if ((Src.SubReg = MOInsertedReg.getSubReg()))
Quentin Colombet03e43f82014-08-20 17:41:48 +00001055 return false;
1056
1057 // We want to track something that is compatible with the related
1058 // partial definition.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001059 Dst.SubReg = CopyLike.getOperand(CurrentSrcIdx + 1).getImm();
Quentin Colombet03e43f82014-08-20 17:41:48 +00001060
1061 const MachineOperand &MODef = CopyLike.getOperand(0);
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001062 Dst.Reg = MODef.getReg();
Matt Arsenault30991562015-09-09 00:38:33 +00001063 // If we have to compose sub-registers, bail.
Quentin Colombet03e43f82014-08-20 17:41:48 +00001064 return MODef.getSubReg() == 0;
1065 }
1066
1067 bool RewriteCurrentSource(unsigned NewReg, unsigned NewSubReg) override {
1068 // We cannot rewrite out of bound operands.
1069 // Moreover, rewritable sources are at odd positions.
1070 if ((CurrentSrcIdx & 1) != 1 || CurrentSrcIdx > CopyLike.getNumOperands())
1071 return false;
1072
1073 MachineOperand &MO = CopyLike.getOperand(CurrentSrcIdx);
1074 MO.setReg(NewReg);
1075 MO.setSubReg(NewSubReg);
1076 return true;
1077 }
1078};
Eugene Zelenko1804a772016-08-25 00:45:04 +00001079
Eugene Zelenko32a40562017-09-11 23:00:48 +00001080} // end anonymous namespace
Quentin Colombet03e43f82014-08-20 17:41:48 +00001081
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001082/// Get the appropriated Rewriter for \p MI.
1083/// \return A pointer to a dynamically allocated Rewriter or nullptr if no
1084/// rewriter works for \p MI.
1085static Rewriter *getCopyRewriter(MachineInstr &MI, const TargetInstrInfo &TII) {
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001086 // Handle uncoalescable copy-like instructions.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001087 if (MI.isBitcast() || MI.isRegSequenceLike() || MI.isInsertSubregLike() ||
1088 MI.isExtractSubregLike())
1089 return new UncoalescableRewriter(MI);
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001090
Quentin Colombet03e43f82014-08-20 17:41:48 +00001091 switch (MI.getOpcode()) {
1092 default:
1093 return nullptr;
1094 case TargetOpcode::COPY:
1095 return new CopyRewriter(MI);
1096 case TargetOpcode::INSERT_SUBREG:
1097 return new InsertSubregRewriter(MI);
1098 case TargetOpcode::EXTRACT_SUBREG:
1099 return new ExtractSubregRewriter(MI, TII);
1100 case TargetOpcode::REG_SEQUENCE:
1101 return new RegSequenceRewriter(MI);
1102 }
Quentin Colombet03e43f82014-08-20 17:41:48 +00001103}
1104
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001105/// Given a \p Def.Reg and Def.SubReg pair, use \p RewriteMap to find
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001106/// the new source to use for rewrite. If \p HandleMultipleSources is true and
1107/// multiple sources for a given \p Def are found along the way, we found a
1108/// PHI instructions that needs to be rewritten.
1109/// TODO: HandleMultipleSources should be removed once we test PHI handling
1110/// with coalescable copies.
1111static RegSubRegPair
1112getNewSource(MachineRegisterInfo *MRI, const TargetInstrInfo *TII,
1113 RegSubRegPair Def,
1114 const PeepholeOptimizer::RewriteMapTy &RewriteMap,
1115 bool HandleMultipleSources = true) {
1116 RegSubRegPair LookupSrc(Def.Reg, Def.SubReg);
1117 while (true) {
1118 ValueTrackerResult Res = RewriteMap.lookup(LookupSrc);
1119 // If there are no entries on the map, LookupSrc is the new source.
1120 if (!Res.isValid())
1121 return LookupSrc;
1122
1123 // There's only one source for this definition, keep searching...
1124 unsigned NumSrcs = Res.getNumSources();
1125 if (NumSrcs == 1) {
1126 LookupSrc.Reg = Res.getSrcReg(0);
1127 LookupSrc.SubReg = Res.getSrcSubReg(0);
1128 continue;
1129 }
1130
1131 // TODO: Remove once multiple srcs w/ coalescable copies are supported.
1132 if (!HandleMultipleSources)
1133 break;
1134
1135 // Multiple sources, recurse into each source to find a new source
1136 // for it. Then, rewrite the PHI accordingly to its new edges.
1137 SmallVector<RegSubRegPair, 4> NewPHISrcs;
1138 for (unsigned i = 0; i < NumSrcs; ++i) {
1139 RegSubRegPair PHISrc(Res.getSrcReg(i), Res.getSrcSubReg(i));
1140 NewPHISrcs.push_back(
1141 getNewSource(MRI, TII, PHISrc, RewriteMap, HandleMultipleSources));
1142 }
1143
1144 // Build the new PHI node and return its def register as the new source.
1145 MachineInstr &OrigPHI = const_cast<MachineInstr &>(*Res.getInst());
1146 MachineInstr &NewPHI = insertPHI(*MRI, *TII, NewPHISrcs, OrigPHI);
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001147 LLVM_DEBUG(dbgs() << "-- getNewSource\n");
1148 LLVM_DEBUG(dbgs() << " Replacing: " << OrigPHI);
1149 LLVM_DEBUG(dbgs() << " With: " << NewPHI);
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001150 const MachineOperand &MODef = NewPHI.getOperand(0);
1151 return RegSubRegPair(MODef.getReg(), MODef.getSubReg());
1152 }
1153
1154 return RegSubRegPair(0, 0);
1155}
1156
1157/// Optimize generic copy instructions to avoid cross register bank copy.
1158/// The optimization looks through a chain of copies and tries to find a source
1159/// that has a compatible register class.
1160/// Two register classes are considered to be compatible if they share the same
1161/// register bank.
Quentin Colombet03e43f82014-08-20 17:41:48 +00001162/// New copies issued by this optimization are register allocator
1163/// friendly. This optimization does not remove any copy as it may
Matt Arsenault30991562015-09-09 00:38:33 +00001164/// overconstrain the register allocator, but replaces some operands
Quentin Colombet03e43f82014-08-20 17:41:48 +00001165/// when possible.
1166/// \pre isCoalescableCopy(*MI) is true.
1167/// \return True, when \p MI has been rewritten. False otherwise.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001168bool PeepholeOptimizer::optimizeCoalescableCopy(MachineInstr &MI) {
1169 assert(isCoalescableCopy(MI) && "Invalid argument");
1170 assert(MI.getDesc().getNumDefs() == 1 &&
Quentin Colombet03e43f82014-08-20 17:41:48 +00001171 "Coalescer can understand multiple defs?!");
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001172 const MachineOperand &MODef = MI.getOperand(0);
Quentin Colombet03e43f82014-08-20 17:41:48 +00001173 // Do not rewrite physical definitions.
1174 if (TargetRegisterInfo::isPhysicalRegister(MODef.getReg()))
1175 return false;
1176
1177 bool Changed = false;
1178 // Get the right rewriter for the current copy.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001179 std::unique_ptr<Rewriter> CpyRewriter(getCopyRewriter(MI, *TII));
Matt Arsenault30991562015-09-09 00:38:33 +00001180 // If none exists, bail out.
Quentin Colombet03e43f82014-08-20 17:41:48 +00001181 if (!CpyRewriter)
1182 return false;
1183 // Rewrite each rewritable source.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001184 RegSubRegPair Src;
1185 RegSubRegPair TrackPair;
1186 while (CpyRewriter->getNextRewritableSource(Src, TrackPair)) {
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00001187 // Keep track of PHI nodes and its incoming edges when looking for sources.
1188 RewriteMapTy RewriteMap;
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001189 // Try to find a more suitable source. If we failed to do so, or get the
1190 // actual source, move to the next source.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001191 if (!findNextSource(TrackPair, RewriteMap))
Quentin Colombet03e43f82014-08-20 17:41:48 +00001192 continue;
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00001193
1194 // Get the new source to rewrite. TODO: Only enable handling of multiple
1195 // sources (PHIs) once we have a motivating example and testcases for it.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001196 RegSubRegPair NewSrc = getNewSource(MRI, TII, TrackPair, RewriteMap,
1197 /*HandleMultipleSources=*/false);
1198 if (Src.Reg == NewSrc.Reg || NewSrc.Reg == 0)
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00001199 continue;
1200
Quentin Colombet03e43f82014-08-20 17:41:48 +00001201 // Rewrite source.
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00001202 if (CpyRewriter->RewriteCurrentSource(NewSrc.Reg, NewSrc.SubReg)) {
Quentin Colombet6b363372014-08-21 21:34:06 +00001203 // We may have extended the live-range of NewSrc, account for that.
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00001204 MRI->clearKillFlags(NewSrc.Reg);
Quentin Colombet6b363372014-08-21 21:34:06 +00001205 Changed = true;
1206 }
Quentin Colombet03e43f82014-08-20 17:41:48 +00001207 }
1208 // TODO: We could have a clean-up method to tidy the instruction.
1209 // E.g., v0 = INSERT_SUBREG v1, v1.sub0, sub0
1210 // => v0 = COPY v1
1211 // Currently we haven't seen motivating example for that and we
1212 // want to avoid untested code.
David Blaikiedc3f01e2015-03-09 01:57:13 +00001213 NumRewrittenCopies += Changed;
Quentin Colombet03e43f82014-08-20 17:41:48 +00001214 return Changed;
1215}
1216
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001217/// Rewrite the source found through \p Def, by using the \p RewriteMap
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001218/// and create a new COPY instruction. More info about RewriteMap in
1219/// PeepholeOptimizer::findNextSource. Right now this is only used to handle
1220/// Uncoalescable copies, since they are copy like instructions that aren't
1221/// recognized by the register allocator.
1222MachineInstr &
1223PeepholeOptimizer::rewriteSource(MachineInstr &CopyLike,
1224 RegSubRegPair Def, RewriteMapTy &RewriteMap) {
1225 assert(!TargetRegisterInfo::isPhysicalRegister(Def.Reg) &&
1226 "We do not rewrite physical registers");
1227
1228 // Find the new source to use in the COPY rewrite.
1229 RegSubRegPair NewSrc = getNewSource(MRI, TII, Def, RewriteMap);
1230
1231 // Insert the COPY.
1232 const TargetRegisterClass *DefRC = MRI->getRegClass(Def.Reg);
1233 unsigned NewVReg = MRI->createVirtualRegister(DefRC);
1234
1235 MachineInstr *NewCopy =
1236 BuildMI(*CopyLike.getParent(), &CopyLike, CopyLike.getDebugLoc(),
1237 TII->get(TargetOpcode::COPY), NewVReg)
1238 .addReg(NewSrc.Reg, 0, NewSrc.SubReg);
1239
1240 if (Def.SubReg) {
1241 NewCopy->getOperand(0).setSubReg(Def.SubReg);
1242 NewCopy->getOperand(0).setIsUndef();
1243 }
1244
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001245 LLVM_DEBUG(dbgs() << "-- RewriteSource\n");
1246 LLVM_DEBUG(dbgs() << " Replacing: " << CopyLike);
1247 LLVM_DEBUG(dbgs() << " With: " << *NewCopy);
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001248 MRI->replaceRegWith(Def.Reg, NewVReg);
1249 MRI->clearKillFlags(NewVReg);
1250
1251 // We extended the lifetime of NewSrc.Reg, clear the kill flags to
1252 // account for that.
1253 MRI->clearKillFlags(NewSrc.Reg);
1254
1255 return *NewCopy;
1256}
1257
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001258/// Optimize copy-like instructions to create
Quentin Colombet03e43f82014-08-20 17:41:48 +00001259/// register coalescer friendly instruction.
1260/// The optimization tries to kill-off the \p MI by looking
1261/// through a chain of copies to find a source that has a compatible
1262/// register class.
1263/// If such a source is found, it replace \p MI by a generic COPY
1264/// operation.
1265/// \pre isUncoalescableCopy(*MI) is true.
1266/// \return True, when \p MI has been optimized. In that case, \p MI has
1267/// been removed from its parent.
1268/// All COPY instructions created, are inserted in \p LocalMIs.
1269bool PeepholeOptimizer::optimizeUncoalescableCopy(
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001270 MachineInstr &MI, SmallPtrSetImpl<MachineInstr *> &LocalMIs) {
1271 assert(isUncoalescableCopy(MI) && "Invalid argument");
1272 UncoalescableRewriter CpyRewriter(MI);
Quentin Colombet03e43f82014-08-20 17:41:48 +00001273
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001274 // Rewrite each rewritable source by generating new COPYs. This works
1275 // differently from optimizeCoalescableCopy since it first makes sure that all
1276 // definitions can be rewritten.
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00001277 RewriteMapTy RewriteMap;
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001278 RegSubRegPair Src;
1279 RegSubRegPair Def;
1280 SmallVector<RegSubRegPair, 4> RewritePairs;
1281 while (CpyRewriter.getNextRewritableSource(Src, Def)) {
Quentin Colombet03e43f82014-08-20 17:41:48 +00001282 // If a physical register is here, this is probably for a good reason.
1283 // Do not rewrite that.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001284 if (TargetRegisterInfo::isPhysicalRegister(Def.Reg))
Quentin Colombet03e43f82014-08-20 17:41:48 +00001285 return false;
1286
1287 // If we do not know how to rewrite this definition, there is no point
1288 // in trying to kill this instruction.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001289 if (!findNextSource(Def, RewriteMap))
Quentin Colombet03e43f82014-08-20 17:41:48 +00001290 return false;
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001291
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00001292 RewritePairs.push_back(Def);
Quentin Colombet03e43f82014-08-20 17:41:48 +00001293 }
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001294
Quentin Colombet03e43f82014-08-20 17:41:48 +00001295 // The change is possible for all defs, do it.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001296 for (const RegSubRegPair &Def : RewritePairs) {
Quentin Colombet03e43f82014-08-20 17:41:48 +00001297 // Rewrite the "copy" in a way the register coalescer understands.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001298 MachineInstr &NewCopy = rewriteSource(MI, Def, RewriteMap);
1299 LocalMIs.insert(&NewCopy);
Quentin Colombet03e43f82014-08-20 17:41:48 +00001300 }
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00001301
Quentin Colombet03e43f82014-08-20 17:41:48 +00001302 // MI is now dead.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001303 MI.eraseFromParent();
Quentin Colombet03e43f82014-08-20 17:41:48 +00001304 ++NumUncoalescableCopies;
Quentin Colombetcf71c632013-09-13 18:26:31 +00001305 return true;
1306}
1307
Sanjay Patel59309cc2015-12-29 18:14:06 +00001308/// Check whether MI is a candidate for folding into a later instruction.
1309/// We only fold loads to virtual registers and the virtual register defined
1310/// has a single use.
Lang Hames5dc14bd2014-04-02 22:59:58 +00001311bool PeepholeOptimizer::isLoadFoldable(
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001312 MachineInstr &MI, SmallSet<unsigned, 16> &FoldAsLoadDefCandidates) {
1313 if (!MI.canFoldAsLoad() || !MI.mayLoad())
Manman Renba8122c2012-08-02 19:37:32 +00001314 return false;
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001315 const MCInstrDesc &MCID = MI.getDesc();
Manman Renba8122c2012-08-02 19:37:32 +00001316 if (MCID.getNumDefs() != 1)
1317 return false;
1318
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001319 unsigned Reg = MI.getOperand(0).getReg();
Ekaterina Romanova8d620082014-03-13 18:47:12 +00001320 // To reduce compilation time, we check MRI->hasOneNonDBGUse when inserting
Manman Renba8122c2012-08-02 19:37:32 +00001321 // loads. It should be checked when processing uses of the load, since
1322 // uses can be removed during peephole.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001323 if (!MI.getOperand(0).getSubReg() &&
Manman Renba8122c2012-08-02 19:37:32 +00001324 TargetRegisterInfo::isVirtualRegister(Reg) &&
Ekaterina Romanova8d620082014-03-13 18:47:12 +00001325 MRI->hasOneNonDBGUse(Reg)) {
Lang Hames5dc14bd2014-04-02 22:59:58 +00001326 FoldAsLoadDefCandidates.insert(Reg);
Manman Renba8122c2012-08-02 19:37:32 +00001327 return true;
Manman Ren5759d012012-08-02 00:56:42 +00001328 }
1329 return false;
1330}
1331
Sanjay Patelb120ae92015-12-29 19:34:53 +00001332bool PeepholeOptimizer::isMoveImmediate(
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001333 MachineInstr &MI, SmallSet<unsigned, 4> &ImmDefRegs,
Sanjay Patelb120ae92015-12-29 19:34:53 +00001334 DenseMap<unsigned, MachineInstr *> &ImmDefMIs) {
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001335 const MCInstrDesc &MCID = MI.getDesc();
1336 if (!MI.isMoveImmediate())
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00001337 return false;
Evan Cheng6cc775f2011-06-28 19:10:37 +00001338 if (MCID.getNumDefs() != 1)
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00001339 return false;
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001340 unsigned Reg = MI.getOperand(0).getReg();
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00001341 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001342 ImmDefMIs.insert(std::make_pair(Reg, &MI));
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00001343 ImmDefRegs.insert(Reg);
1344 return true;
1345 }
Andrew Trick9e761992012-02-08 21:22:43 +00001346
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00001347 return false;
1348}
1349
Sanjay Patel59309cc2015-12-29 18:14:06 +00001350/// Try folding register operands that are defined by move immediate
1351/// instructions, i.e. a trivial constant folding optimization, if
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00001352/// and only if the def and use are in the same BB.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001353bool PeepholeOptimizer::foldImmediate(MachineInstr &MI,
1354 SmallSet<unsigned, 4> &ImmDefRegs,
Sanjay Patelb120ae92015-12-29 19:34:53 +00001355 DenseMap<unsigned, MachineInstr *> &ImmDefMIs) {
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001356 for (unsigned i = 0, e = MI.getDesc().getNumOperands(); i != e; ++i) {
1357 MachineOperand &MO = MI.getOperand(i);
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00001358 if (!MO.isReg() || MO.isDef())
1359 continue;
Dan Gohmandab313e2015-12-10 00:37:51 +00001360 // Ignore dead implicit defs.
1361 if (MO.isImplicit() && MO.isDead())
1362 continue;
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00001363 unsigned Reg = MO.getReg();
Jakob Stoklund Olesen2fb5b312011-01-10 02:58:51 +00001364 if (!TargetRegisterInfo::isVirtualRegister(Reg))
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00001365 continue;
1366 if (ImmDefRegs.count(Reg) == 0)
1367 continue;
1368 DenseMap<unsigned, MachineInstr*>::iterator II = ImmDefMIs.find(Reg);
JF Bastien1ac69942015-12-03 23:43:56 +00001369 assert(II != ImmDefMIs.end() && "couldn't find immediate definition");
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001370 if (TII->FoldImmediate(MI, *II->second, Reg, MRI)) {
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00001371 ++NumImmFold;
1372 return true;
1373 }
1374 }
1375 return false;
1376}
1377
Matt Arsenault10aa8072015-09-25 20:22:12 +00001378// FIXME: This is very simple and misses some cases which should be handled when
1379// motivating examples are found.
1380//
1381// The copy rewriting logic should look at uses as well as defs and be able to
1382// eliminate copies across blocks.
1383//
1384// Later copies that are subregister extracts will also not be eliminated since
1385// only the first copy is considered.
1386//
1387// e.g.
Francis Visoiu Mistrih93ef1452017-11-30 12:12:19 +00001388// %1 = COPY %0
1389// %2 = COPY %0:sub1
Matt Arsenault10aa8072015-09-25 20:22:12 +00001390//
Francis Visoiu Mistrih93ef1452017-11-30 12:12:19 +00001391// Should replace %2 uses with %1:sub1
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001392bool PeepholeOptimizer::foldRedundantCopy(MachineInstr &MI,
1393 SmallSet<unsigned, 4> &CopySrcRegs,
JF Bastien1ac69942015-12-03 23:43:56 +00001394 DenseMap<unsigned, MachineInstr *> &CopyMIs) {
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001395 assert(MI.isCopy() && "expected a COPY machine instruction");
Matt Arsenault10aa8072015-09-25 20:22:12 +00001396
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001397 unsigned SrcReg = MI.getOperand(1).getReg();
Matt Arsenault10aa8072015-09-25 20:22:12 +00001398 if (!TargetRegisterInfo::isVirtualRegister(SrcReg))
1399 return false;
1400
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001401 unsigned DstReg = MI.getOperand(0).getReg();
Matt Arsenault10aa8072015-09-25 20:22:12 +00001402 if (!TargetRegisterInfo::isVirtualRegister(DstReg))
1403 return false;
1404
1405 if (CopySrcRegs.insert(SrcReg).second) {
1406 // First copy of this reg seen.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001407 CopyMIs.insert(std::make_pair(SrcReg, &MI));
Matt Arsenault10aa8072015-09-25 20:22:12 +00001408 return false;
1409 }
1410
1411 MachineInstr *PrevCopy = CopyMIs.find(SrcReg)->second;
1412
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001413 unsigned SrcSubReg = MI.getOperand(1).getSubReg();
Matt Arsenault10aa8072015-09-25 20:22:12 +00001414 unsigned PrevSrcSubReg = PrevCopy->getOperand(1).getSubReg();
1415
1416 // Can't replace different subregister extracts.
1417 if (SrcSubReg != PrevSrcSubReg)
1418 return false;
1419
1420 unsigned PrevDstReg = PrevCopy->getOperand(0).getReg();
1421
1422 // Only replace if the copy register class is the same.
1423 //
1424 // TODO: If we have multiple copies to different register classes, we may want
1425 // to track multiple copies of the same source register.
1426 if (MRI->getRegClass(DstReg) != MRI->getRegClass(PrevDstReg))
1427 return false;
1428
1429 MRI->replaceRegWith(DstReg, PrevDstReg);
1430
1431 // Lifetime of the previous copy has been extended.
1432 MRI->clearKillFlags(PrevDstReg);
1433 return true;
1434}
1435
JF Bastien1ac69942015-12-03 23:43:56 +00001436bool PeepholeOptimizer::isNAPhysCopy(unsigned Reg) {
1437 return TargetRegisterInfo::isPhysicalRegister(Reg) &&
1438 !MRI->isAllocatable(Reg);
1439}
1440
1441bool PeepholeOptimizer::foldRedundantNAPhysCopy(
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001442 MachineInstr &MI, DenseMap<unsigned, MachineInstr *> &NAPhysToVirtMIs) {
1443 assert(MI.isCopy() && "expected a COPY machine instruction");
JF Bastien1ac69942015-12-03 23:43:56 +00001444
1445 if (DisableNAPhysCopyOpt)
1446 return false;
1447
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001448 unsigned DstReg = MI.getOperand(0).getReg();
1449 unsigned SrcReg = MI.getOperand(1).getReg();
JF Bastien1ac69942015-12-03 23:43:56 +00001450 if (isNAPhysCopy(SrcReg) && TargetRegisterInfo::isVirtualRegister(DstReg)) {
Francis Visoiu Mistrih9d7bb0c2017-11-28 17:15:09 +00001451 // %vreg = COPY %physreg
JF Bastien1ac69942015-12-03 23:43:56 +00001452 // Avoid using a datastructure which can track multiple live non-allocatable
1453 // phys->virt copies since LLVM doesn't seem to do this.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001454 NAPhysToVirtMIs.insert({SrcReg, &MI});
JF Bastien1ac69942015-12-03 23:43:56 +00001455 return false;
1456 }
1457
1458 if (!(TargetRegisterInfo::isVirtualRegister(SrcReg) && isNAPhysCopy(DstReg)))
1459 return false;
1460
Francis Visoiu Mistrih9d7bb0c2017-11-28 17:15:09 +00001461 // %physreg = COPY %vreg
JF Bastien1ac69942015-12-03 23:43:56 +00001462 auto PrevCopy = NAPhysToVirtMIs.find(DstReg);
1463 if (PrevCopy == NAPhysToVirtMIs.end()) {
1464 // We can't remove the copy: there was an intervening clobber of the
1465 // non-allocatable physical register after the copy to virtual.
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001466 LLVM_DEBUG(dbgs() << "NAPhysCopy: intervening clobber forbids erasing "
1467 << MI);
JF Bastien1ac69942015-12-03 23:43:56 +00001468 return false;
1469 }
1470
1471 unsigned PrevDstReg = PrevCopy->second->getOperand(0).getReg();
1472 if (PrevDstReg == SrcReg) {
1473 // Remove the virt->phys copy: we saw the virtual register definition, and
1474 // the non-allocatable physical register's state hasn't changed since then.
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001475 LLVM_DEBUG(dbgs() << "NAPhysCopy: erasing " << MI);
JF Bastien1ac69942015-12-03 23:43:56 +00001476 ++NumNAPhysCopies;
1477 return true;
1478 }
1479
1480 // Potential missed optimization opportunity: we saw a different virtual
1481 // register get a copy of the non-allocatable physical register, and we only
1482 // track one such copy. Avoid getting confused by this new non-allocatable
1483 // physical register definition, and remove it from the tracked copies.
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001484 LLVM_DEBUG(dbgs() << "NAPhysCopy: missed opportunity " << MI);
JF Bastien1ac69942015-12-03 23:43:56 +00001485 NAPhysToVirtMIs.erase(PrevCopy);
1486 return false;
1487}
1488
Taewook Oh0e35ea32017-06-29 23:11:24 +00001489/// \bried Returns true if \p MO is a virtual register operand.
1490static bool isVirtualRegisterOperand(MachineOperand &MO) {
1491 if (!MO.isReg())
1492 return false;
1493 return TargetRegisterInfo::isVirtualRegister(MO.getReg());
1494}
1495
1496bool PeepholeOptimizer::findTargetRecurrence(
1497 unsigned Reg, const SmallSet<unsigned, 2> &TargetRegs,
1498 RecurrenceCycle &RC) {
1499 // Recurrence found if Reg is in TargetRegs.
1500 if (TargetRegs.count(Reg))
1501 return true;
1502
1503 // TODO: Curerntly, we only allow the last instruction of the recurrence
1504 // cycle (the instruction that feeds the PHI instruction) to have more than
1505 // one uses to guarantee that commuting operands does not tie registers
1506 // with overlapping live range. Once we have actual live range info of
1507 // each register, this constraint can be relaxed.
1508 if (!MRI->hasOneNonDBGUse(Reg))
1509 return false;
1510
1511 // Give up if the reccurrence chain length is longer than the limit.
1512 if (RC.size() >= MaxRecurrenceChain)
1513 return false;
1514
1515 MachineInstr &MI = *(MRI->use_instr_nodbg_begin(Reg));
1516 unsigned Idx = MI.findRegisterUseOperandIdx(Reg);
1517
1518 // Only interested in recurrences whose instructions have only one def, which
1519 // is a virtual register.
1520 if (MI.getDesc().getNumDefs() != 1)
1521 return false;
1522
1523 MachineOperand &DefOp = MI.getOperand(0);
1524 if (!isVirtualRegisterOperand(DefOp))
1525 return false;
1526
1527 // Check if def operand of MI is tied to any use operand. We are only
1528 // interested in the case that all the instructions in the recurrence chain
1529 // have there def operand tied with one of the use operand.
1530 unsigned TiedUseIdx;
1531 if (!MI.isRegTiedToUseOperand(0, &TiedUseIdx))
1532 return false;
1533
1534 if (Idx == TiedUseIdx) {
1535 RC.push_back(RecurrenceInstr(&MI));
1536 return findTargetRecurrence(DefOp.getReg(), TargetRegs, RC);
1537 } else {
1538 // If Idx is not TiedUseIdx, check if Idx is commutable with TiedUseIdx.
1539 unsigned CommIdx = TargetInstrInfo::CommuteAnyOperandIndex;
1540 if (TII->findCommutedOpIndices(MI, Idx, CommIdx) && CommIdx == TiedUseIdx) {
1541 RC.push_back(RecurrenceInstr(&MI, Idx, CommIdx));
1542 return findTargetRecurrence(DefOp.getReg(), TargetRegs, RC);
1543 }
1544 }
1545
1546 return false;
1547}
1548
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001549/// Phi instructions will eventually be lowered to copy instructions.
1550/// If phi is in a loop header, a recurrence may formulated around the source
1551/// and destination of the phi. For such case commuting operands of the
1552/// instructions in the recurrence may enable coalescing of the copy instruction
1553/// generated from the phi. For example, if there is a recurrence of
Taewook Oh0e35ea32017-06-29 23:11:24 +00001554///
1555/// LoopHeader:
Francis Visoiu Mistrih93ef1452017-11-30 12:12:19 +00001556/// %1 = phi(%0, %100)
Taewook Oh0e35ea32017-06-29 23:11:24 +00001557/// LoopLatch:
Francis Visoiu Mistrih93ef1452017-11-30 12:12:19 +00001558/// %0<def, tied1> = ADD %2<def, tied0>, %1
Taewook Oh0e35ea32017-06-29 23:11:24 +00001559///
Francis Visoiu Mistrih93ef1452017-11-30 12:12:19 +00001560/// , the fact that %0 and %2 are in the same tied operands set makes
Taewook Oh0e35ea32017-06-29 23:11:24 +00001561/// the coalescing of copy instruction generated from the phi in
Francis Visoiu Mistrih93ef1452017-11-30 12:12:19 +00001562/// LoopHeader(i.e. %1 = COPY %0) impossible, because %1 and
1563/// %2 have overlapping live range. This introduces additional move
1564/// instruction to the final assembly. However, if we commute %2 and
1565/// %1 of ADD instruction, the redundant move instruction can be
Taewook Oh0e35ea32017-06-29 23:11:24 +00001566/// avoided.
1567bool PeepholeOptimizer::optimizeRecurrence(MachineInstr &PHI) {
1568 SmallSet<unsigned, 2> TargetRegs;
1569 for (unsigned Idx = 1; Idx < PHI.getNumOperands(); Idx += 2) {
1570 MachineOperand &MO = PHI.getOperand(Idx);
1571 assert(isVirtualRegisterOperand(MO) && "Invalid PHI instruction");
1572 TargetRegs.insert(MO.getReg());
1573 }
1574
1575 bool Changed = false;
1576 RecurrenceCycle RC;
1577 if (findTargetRecurrence(PHI.getOperand(0).getReg(), TargetRegs, RC)) {
1578 // Commutes operands of instructions in RC if necessary so that the copy to
1579 // be generated from PHI can be coalesced.
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001580 LLVM_DEBUG(dbgs() << "Optimize recurrence chain from " << PHI);
Taewook Oh0e35ea32017-06-29 23:11:24 +00001581 for (auto &RI : RC) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001582 LLVM_DEBUG(dbgs() << "\tInst: " << *(RI.getMI()));
Taewook Oh0e35ea32017-06-29 23:11:24 +00001583 auto CP = RI.getCommutePair();
1584 if (CP) {
1585 Changed = true;
1586 TII->commuteInstruction(*(RI.getMI()), false, (*CP).first,
1587 (*CP).second);
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001588 LLVM_DEBUG(dbgs() << "\t\tCommuted: " << *(RI.getMI()));
Taewook Oh0e35ea32017-06-29 23:11:24 +00001589 }
1590 }
1591 }
1592
1593 return Changed;
1594}
1595
Eric Christopher2181fb22014-10-15 21:06:25 +00001596bool PeepholeOptimizer::runOnMachineFunction(MachineFunction &MF) {
Matthias Braunf1caa282017-12-15 22:22:58 +00001597 if (skipFunction(MF.getFunction()))
Paul Robinson7c99ec52014-03-31 17:43:35 +00001598 return false;
1599
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001600 LLVM_DEBUG(dbgs() << "********** PEEPHOLE OPTIMIZER **********\n");
1601 LLVM_DEBUG(dbgs() << "********** Function: " << MF.getName() << '\n');
Craig Topper588ceec2012-12-17 03:56:00 +00001602
Evan Cheng2ce016c2010-11-15 21:20:45 +00001603 if (DisablePeephole)
1604 return false;
Andrew Trick9e761992012-02-08 21:22:43 +00001605
Eric Christopher2181fb22014-10-15 21:06:25 +00001606 TII = MF.getSubtarget().getInstrInfo();
1607 TRI = MF.getSubtarget().getRegisterInfo();
1608 MRI = &MF.getRegInfo();
Craig Topperc0196b12014-04-14 00:51:57 +00001609 DT = Aggressive ? &getAnalysis<MachineDominatorTree>() : nullptr;
Taewook Oh0e35ea32017-06-29 23:11:24 +00001610 MLI = &getAnalysis<MachineLoopInfo>();
Bill Wendlingca678352010-08-09 23:59:04 +00001611
1612 bool Changed = false;
1613
Sanjay Patelfaeee6f2015-12-29 18:30:09 +00001614 for (MachineBasicBlock &MBB : MF) {
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00001615 bool SeenMoveImm = false;
Mehdi Amini22e59742015-01-13 07:07:13 +00001616
1617 // During this forward scan, at some point it needs to answer the question
1618 // "given a pointer to an MI in the current BB, is it located before or
1619 // after the current instruction".
1620 // To perform this, the following set keeps track of the MIs already seen
1621 // during the scan, if a MI is not in the set, it is assumed to be located
1622 // after. Newly created MIs have to be inserted in the set as well.
Hans Wennborg941a5702014-08-11 02:50:43 +00001623 SmallPtrSet<MachineInstr*, 16> LocalMIs;
Lang Hames5dc14bd2014-04-02 22:59:58 +00001624 SmallSet<unsigned, 4> ImmDefRegs;
1625 DenseMap<unsigned, MachineInstr*> ImmDefMIs;
1626 SmallSet<unsigned, 16> FoldAsLoadDefCandidates;
Bill Wendlingca678352010-08-09 23:59:04 +00001627
JF Bastien1ac69942015-12-03 23:43:56 +00001628 // Track when a non-allocatable physical register is copied to a virtual
1629 // register so that useless moves can be removed.
1630 //
Francis Visoiu Mistrih9d7bb0c2017-11-28 17:15:09 +00001631 // %physreg is the map index; MI is the last valid `%vreg = COPY %physreg`
1632 // without any intervening re-definition of %physreg.
JF Bastien1ac69942015-12-03 23:43:56 +00001633 DenseMap<unsigned, MachineInstr *> NAPhysToVirtMIs;
1634
Matt Arsenault10aa8072015-09-25 20:22:12 +00001635 // Set of virtual registers that are copied from.
1636 SmallSet<unsigned, 4> CopySrcRegs;
1637 DenseMap<unsigned, MachineInstr *> CopySrcMIs;
1638
Taewook Oh0e35ea32017-06-29 23:11:24 +00001639 bool IsLoopHeader = MLI->isLoopHeader(&MBB);
1640
Sanjay Patelfaeee6f2015-12-29 18:30:09 +00001641 for (MachineBasicBlock::iterator MII = MBB.begin(), MIE = MBB.end();
1642 MII != MIE; ) {
Evan Cheng9bf3f8e2011-02-14 21:50:37 +00001643 MachineInstr *MI = &*MII;
Jakob Stoklund Olesen714f5952012-08-17 14:38:59 +00001644 // We may be erasing MI below, increment MII now.
1645 ++MII;
Evan Cheng2ce016c2010-11-15 21:20:45 +00001646 LocalMIs.insert(MI);
Bill Wendlingca678352010-08-09 23:59:04 +00001647
Shiva Chen801bf7e2018-05-09 02:42:00 +00001648 // Skip debug instructions. They should not affect this peephole optimization.
1649 if (MI->isDebugInstr())
Ekaterina Romanova8d620082014-03-13 18:47:12 +00001650 continue;
1651
Taewook Oh0e35ea32017-06-29 23:11:24 +00001652 if (MI->isPosition())
Evan Cheng2ce016c2010-11-15 21:20:45 +00001653 continue;
1654
Taewook Oh0e35ea32017-06-29 23:11:24 +00001655 if (IsLoopHeader && MI->isPHI()) {
1656 if (optimizeRecurrence(*MI)) {
1657 Changed = true;
1658 continue;
1659 }
1660 }
1661
JF Bastien1ac69942015-12-03 23:43:56 +00001662 if (!MI->isCopy()) {
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001663 for (const MachineOperand &MO : MI->operands()) {
JF Bastien1ac69942015-12-03 23:43:56 +00001664 // Visit all operands: definitions can be implicit or explicit.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001665 if (MO.isReg()) {
1666 unsigned Reg = MO.getReg();
1667 if (MO.isDef() && isNAPhysCopy(Reg)) {
JF Bastien1ac69942015-12-03 23:43:56 +00001668 const auto &Def = NAPhysToVirtMIs.find(Reg);
1669 if (Def != NAPhysToVirtMIs.end()) {
1670 // A new definition of the non-allocatable physical register
1671 // invalidates previous copies.
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001672 LLVM_DEBUG(dbgs()
1673 << "NAPhysCopy: invalidating because of " << *MI);
JF Bastien1ac69942015-12-03 23:43:56 +00001674 NAPhysToVirtMIs.erase(Def);
1675 }
1676 }
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001677 } else if (MO.isRegMask()) {
1678 const uint32_t *RegMask = MO.getRegMask();
JF Bastien1ac69942015-12-03 23:43:56 +00001679 for (auto &RegMI : NAPhysToVirtMIs) {
1680 unsigned Def = RegMI.first;
1681 if (MachineOperand::clobbersPhysReg(RegMask, Def)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001682 LLVM_DEBUG(dbgs()
1683 << "NAPhysCopy: invalidating because of " << *MI);
JF Bastien1ac69942015-12-03 23:43:56 +00001684 NAPhysToVirtMIs.erase(Def);
1685 }
1686 }
1687 }
1688 }
1689 }
1690
1691 if (MI->isImplicitDef() || MI->isKill())
1692 continue;
1693
1694 if (MI->isInlineAsm() || MI->hasUnmodeledSideEffects()) {
1695 // Blow away all non-allocatable physical registers knowledge since we
1696 // don't know what's correct anymore.
1697 //
1698 // FIXME: handle explicit asm clobbers.
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001699 LLVM_DEBUG(dbgs() << "NAPhysCopy: blowing away all info due to "
1700 << *MI);
JF Bastien1ac69942015-12-03 23:43:56 +00001701 NAPhysToVirtMIs.clear();
JF Bastien1ac69942015-12-03 23:43:56 +00001702 }
1703
Quentin Colombet03e43f82014-08-20 17:41:48 +00001704 if ((isUncoalescableCopy(*MI) &&
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001705 optimizeUncoalescableCopy(*MI, LocalMIs)) ||
1706 (MI->isCompare() && optimizeCmpInstr(*MI)) ||
1707 (MI->isSelect() && optimizeSelect(*MI, LocalMIs))) {
Jakob Stoklund Olesen2382d322012-08-16 23:11:47 +00001708 // MI is deleted.
1709 LocalMIs.erase(MI);
1710 Changed = true;
Jakob Stoklund Olesen2382d322012-08-16 23:11:47 +00001711 continue;
Evan Cheng9bf3f8e2011-02-14 21:50:37 +00001712 }
1713
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001714 if (MI->isConditionalBranch() && optimizeCondBranch(*MI)) {
Gerolf Hoflehnera4c96d02014-10-14 23:07:53 +00001715 Changed = true;
1716 continue;
1717 }
1718
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001719 if (isCoalescableCopy(*MI) && optimizeCoalescableCopy(*MI)) {
Quentin Colombet03e43f82014-08-20 17:41:48 +00001720 // MI is just rewritten.
1721 Changed = true;
1722 continue;
1723 }
1724
JF Bastien1ac69942015-12-03 23:43:56 +00001725 if (MI->isCopy() &&
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001726 (foldRedundantCopy(*MI, CopySrcRegs, CopySrcMIs) ||
1727 foldRedundantNAPhysCopy(*MI, NAPhysToVirtMIs))) {
Matt Arsenault10aa8072015-09-25 20:22:12 +00001728 LocalMIs.erase(MI);
1729 MI->eraseFromParent();
1730 Changed = true;
1731 continue;
1732 }
1733
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001734 if (isMoveImmediate(*MI, ImmDefRegs, ImmDefMIs)) {
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00001735 SeenMoveImm = true;
Bill Wendlingca678352010-08-09 23:59:04 +00001736 } else {
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001737 Changed |= optimizeExtInstr(*MI, MBB, LocalMIs);
Rafael Espindola048405f2012-10-15 18:21:07 +00001738 // optimizeExtInstr might have created new instructions after MI
1739 // and before the already incremented MII. Adjust MII so that the
1740 // next iteration sees the new instructions.
1741 MII = MI;
1742 ++MII;
Evan Cheng7f8ab6e2010-11-17 20:13:28 +00001743 if (SeenMoveImm)
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001744 Changed |= foldImmediate(*MI, ImmDefRegs, ImmDefMIs);
Bill Wendlingca678352010-08-09 23:59:04 +00001745 }
Evan Cheng98196b42011-02-15 05:00:24 +00001746
Manman Ren5759d012012-08-02 00:56:42 +00001747 // Check whether MI is a load candidate for folding into a later
1748 // instruction. If MI is not a candidate, check whether we can fold an
1749 // earlier load into MI.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001750 if (!isLoadFoldable(*MI, FoldAsLoadDefCandidates) &&
Lang Hames5dc14bd2014-04-02 22:59:58 +00001751 !FoldAsLoadDefCandidates.empty()) {
Philip Reames1f1bbac2016-12-13 01:38:41 +00001752
1753 // We visit each operand even after successfully folding a previous
1754 // one. This allows us to fold multiple loads into a single
1755 // instruction. We do assume that optimizeLoadInstr doesn't insert
1756 // foldable uses earlier in the argument list. Since we don't restart
1757 // iteration, we'd miss such cases.
Lang Hames5dc14bd2014-04-02 22:59:58 +00001758 const MCInstrDesc &MIDesc = MI->getDesc();
Philip Reames1f1bbac2016-12-13 01:38:41 +00001759 for (unsigned i = MIDesc.getNumDefs(); i != MI->getNumOperands();
Lang Hames5dc14bd2014-04-02 22:59:58 +00001760 ++i) {
1761 const MachineOperand &MOp = MI->getOperand(i);
1762 if (!MOp.isReg())
1763 continue;
Lang Hames3c0dc2a2014-04-03 05:03:20 +00001764 unsigned FoldAsLoadDefReg = MOp.getReg();
1765 if (FoldAsLoadDefCandidates.count(FoldAsLoadDefReg)) {
1766 // We need to fold load after optimizeCmpInstr, since
1767 // optimizeCmpInstr can enable folding by converting SUB to CMP.
1768 // Save FoldAsLoadDefReg because optimizeLoadInstr() resets it and
1769 // we need it for markUsesInDebugValueAsUndef().
1770 unsigned FoldedReg = FoldAsLoadDefReg;
Craig Topperc0196b12014-04-14 00:51:57 +00001771 MachineInstr *DefMI = nullptr;
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +00001772 if (MachineInstr *FoldMI =
1773 TII->optimizeLoadInstr(*MI, MRI, FoldAsLoadDefReg, DefMI)) {
Lang Hames5dc14bd2014-04-02 22:59:58 +00001774 // Update LocalMIs since we replaced MI with FoldMI and deleted
1775 // DefMI.
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001776 LLVM_DEBUG(dbgs() << "Replacing: " << *MI);
1777 LLVM_DEBUG(dbgs() << " With: " << *FoldMI);
Lang Hames5dc14bd2014-04-02 22:59:58 +00001778 LocalMIs.erase(MI);
1779 LocalMIs.erase(DefMI);
1780 LocalMIs.insert(FoldMI);
1781 MI->eraseFromParent();
1782 DefMI->eraseFromParent();
Lang Hames3c0dc2a2014-04-03 05:03:20 +00001783 MRI->markUsesInDebugValueAsUndef(FoldedReg);
1784 FoldAsLoadDefCandidates.erase(FoldedReg);
Lang Hames5dc14bd2014-04-02 22:59:58 +00001785 ++NumLoadFold;
Taewook Oh0e35ea32017-06-29 23:11:24 +00001786
Philip Reames1f1bbac2016-12-13 01:38:41 +00001787 // MI is replaced with FoldMI so we can continue trying to fold
Lang Hames5dc14bd2014-04-02 22:59:58 +00001788 Changed = true;
Philip Reames1f1bbac2016-12-13 01:38:41 +00001789 MI = FoldMI;
Lang Hames5dc14bd2014-04-02 22:59:58 +00001790 }
1791 }
Manman Ren5759d012012-08-02 00:56:42 +00001792 }
1793 }
Taewook Oh0e35ea32017-06-29 23:11:24 +00001794
Philip Reames1f1bbac2016-12-13 01:38:41 +00001795 // If we run into an instruction we can't fold across, discard
1796 // the load candidates. Note: We might be able to fold *into* this
1797 // instruction, so this needs to be after the folding logic.
1798 if (MI->isLoadFoldBarrier()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001799 LLVM_DEBUG(dbgs() << "Encountered load fold barrier on " << *MI);
Philip Reames1f1bbac2016-12-13 01:38:41 +00001800 FoldAsLoadDefCandidates.clear();
1801 }
Bill Wendlingca678352010-08-09 23:59:04 +00001802 }
1803 }
1804
1805 return Changed;
1806}
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001807
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001808ValueTrackerResult ValueTracker::getNextSourceFromCopy() {
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001809 assert(Def->isCopy() && "Invalid definition");
1810 // Copy instruction are supposed to be: Def = Src.
1811 // If someone breaks this assumption, bad things will happen everywhere.
Quentin Colombet03e43f82014-08-20 17:41:48 +00001812 assert(Def->getNumOperands() == 2 && "Invalid number of operands");
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001813
1814 if (Def->getOperand(DefIdx).getSubReg() != DefSubReg)
1815 // If we look for a different subreg, it means we want a subreg of src.
Matt Arsenault30991562015-09-09 00:38:33 +00001816 // Bails as we do not support composing subregs yet.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001817 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001818 // Otherwise, we want the whole source.
Quentin Colombet03e43f82014-08-20 17:41:48 +00001819 const MachineOperand &Src = Def->getOperand(1);
Matthias Braunea4359e2018-01-11 22:30:43 +00001820 if (Src.isUndef())
1821 return ValueTrackerResult();
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001822 return ValueTrackerResult(Src.getReg(), Src.getSubReg());
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001823}
1824
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001825ValueTrackerResult ValueTracker::getNextSourceFromBitcast() {
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001826 assert(Def->isBitcast() && "Invalid definition");
1827
1828 // Bail if there are effects that a plain copy will not expose.
1829 if (Def->hasUnmodeledSideEffects())
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001830 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001831
1832 // Bitcasts with more than one def are not supported.
1833 if (Def->getDesc().getNumDefs() != 1)
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001834 return ValueTrackerResult();
Matthias Braunba7d95d2017-01-09 21:38:17 +00001835 const MachineOperand DefOp = Def->getOperand(DefIdx);
1836 if (DefOp.getSubReg() != DefSubReg)
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001837 // If we look for a different subreg, it means we want a subreg of the src.
Matt Arsenault30991562015-09-09 00:38:33 +00001838 // Bails as we do not support composing subregs yet.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001839 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001840
Quentin Colombet03e43f82014-08-20 17:41:48 +00001841 unsigned SrcIdx = Def->getNumOperands();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001842 for (unsigned OpIdx = DefIdx + 1, EndOpIdx = SrcIdx; OpIdx != EndOpIdx;
1843 ++OpIdx) {
1844 const MachineOperand &MO = Def->getOperand(OpIdx);
1845 if (!MO.isReg() || !MO.getReg())
1846 continue;
Dan Gohmandab313e2015-12-10 00:37:51 +00001847 // Ignore dead implicit defs.
1848 if (MO.isImplicit() && MO.isDead())
1849 continue;
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001850 assert(!MO.isDef() && "We should have skipped all the definitions by now");
1851 if (SrcIdx != EndOpIdx)
1852 // Multiple sources?
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001853 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001854 SrcIdx = OpIdx;
1855 }
Matthias Braunba7d95d2017-01-09 21:38:17 +00001856
1857 // Stop when any user of the bitcast is a SUBREG_TO_REG, replacing with a COPY
1858 // will break the assumed guarantees for the upper bits.
1859 for (const MachineInstr &UseMI : MRI.use_nodbg_instructions(DefOp.getReg())) {
1860 if (UseMI.isSubregToReg())
1861 return ValueTrackerResult();
1862 }
1863
Quentin Colombet03e43f82014-08-20 17:41:48 +00001864 const MachineOperand &Src = Def->getOperand(SrcIdx);
Matthias Braunea4359e2018-01-11 22:30:43 +00001865 if (Src.isUndef())
1866 return ValueTrackerResult();
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001867 return ValueTrackerResult(Src.getReg(), Src.getSubReg());
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001868}
1869
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001870ValueTrackerResult ValueTracker::getNextSourceFromRegSequence() {
Quentin Colombet03e43f82014-08-20 17:41:48 +00001871 assert((Def->isRegSequence() || Def->isRegSequenceLike()) &&
1872 "Invalid definition");
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001873
1874 if (Def->getOperand(DefIdx).getSubReg())
Matt Arsenault30991562015-09-09 00:38:33 +00001875 // If we are composing subregs, bail out.
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001876 // The case we are checking is Def.<subreg> = REG_SEQUENCE.
1877 // This should almost never happen as the SSA property is tracked at
1878 // the register level (as opposed to the subreg level).
1879 // I.e.,
1880 // Def.sub0 =
1881 // Def.sub1 =
1882 // is a valid SSA representation for Def.sub0 and Def.sub1, but not for
1883 // Def. Thus, it must not be generated.
Quentin Colombet6d590d52014-07-01 16:23:44 +00001884 // However, some code could theoretically generates a single
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001885 // Def.sub0 (i.e, not defining the other subregs) and we would
1886 // have this case.
1887 // If we can ascertain (or force) that this never happens, we could
1888 // turn that into an assertion.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001889 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001890
Quentin Colombet03e43f82014-08-20 17:41:48 +00001891 if (!TII)
1892 // We could handle the REG_SEQUENCE here, but we do not want to
1893 // duplicate the code from the generic TII.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001894 return ValueTrackerResult();
Quentin Colombet03e43f82014-08-20 17:41:48 +00001895
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001896 SmallVector<RegSubRegPairAndIdx, 8> RegSeqInputRegs;
Quentin Colombet03e43f82014-08-20 17:41:48 +00001897 if (!TII->getRegSequenceInputs(*Def, DefIdx, RegSeqInputRegs))
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001898 return ValueTrackerResult();
Quentin Colombet03e43f82014-08-20 17:41:48 +00001899
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001900 // We are looking at:
1901 // Def = REG_SEQUENCE v0, sub0, v1, sub1, ...
1902 // Check if one of the operand defines the subreg we are interested in.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001903 for (const RegSubRegPairAndIdx &RegSeqInput : RegSeqInputRegs) {
Quentin Colombet03e43f82014-08-20 17:41:48 +00001904 if (RegSeqInput.SubIdx == DefSubReg) {
1905 if (RegSeqInput.SubReg)
Matt Arsenault30991562015-09-09 00:38:33 +00001906 // Bail if we have to compose sub registers.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001907 return ValueTrackerResult();
Quentin Colombet03e43f82014-08-20 17:41:48 +00001908
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001909 return ValueTrackerResult(RegSeqInput.Reg, RegSeqInput.SubReg);
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001910 }
1911 }
1912
1913 // If the subreg we are tracking is super-defined by another subreg,
1914 // we could follow this value. However, this would require to compose
1915 // the subreg and we do not do that for now.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001916 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001917}
1918
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001919ValueTrackerResult ValueTracker::getNextSourceFromInsertSubreg() {
Quentin Colombet68962302014-08-21 00:19:16 +00001920 assert((Def->isInsertSubreg() || Def->isInsertSubregLike()) &&
1921 "Invalid definition");
1922
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001923 if (Def->getOperand(DefIdx).getSubReg())
Matt Arsenault30991562015-09-09 00:38:33 +00001924 // If we are composing subreg, bail out.
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001925 // Same remark as getNextSourceFromRegSequence.
1926 // I.e., this may be turned into an assert.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001927 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001928
Quentin Colombet68962302014-08-21 00:19:16 +00001929 if (!TII)
1930 // We could handle the REG_SEQUENCE here, but we do not want to
1931 // duplicate the code from the generic TII.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001932 return ValueTrackerResult();
Quentin Colombet68962302014-08-21 00:19:16 +00001933
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001934 RegSubRegPair BaseReg;
1935 RegSubRegPairAndIdx InsertedReg;
Quentin Colombet68962302014-08-21 00:19:16 +00001936 if (!TII->getInsertSubregInputs(*Def, DefIdx, BaseReg, InsertedReg))
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001937 return ValueTrackerResult();
Quentin Colombet03e43f82014-08-20 17:41:48 +00001938
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001939 // We are looking at:
1940 // Def = INSERT_SUBREG v0, v1, sub1
1941 // There are two cases:
1942 // 1. DefSubReg == sub1, get v1.
1943 // 2. DefSubReg != sub1, the value may be available through v0.
1944
Quentin Colombet03e43f82014-08-20 17:41:48 +00001945 // #1 Check if the inserted register matches the required sub index.
1946 if (InsertedReg.SubIdx == DefSubReg) {
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001947 return ValueTrackerResult(InsertedReg.Reg, InsertedReg.SubReg);
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001948 }
1949 // #2 Otherwise, if the sub register we are looking for is not partial
1950 // defined by the inserted element, we can look through the main
1951 // register (v0).
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001952 const MachineOperand &MODef = Def->getOperand(DefIdx);
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001953 // If the result register (Def) and the base register (v0) do not
1954 // have the same register class or if we have to compose
Matt Arsenault30991562015-09-09 00:38:33 +00001955 // subregisters, bail out.
Quentin Colombet03e43f82014-08-20 17:41:48 +00001956 if (MRI.getRegClass(MODef.getReg()) != MRI.getRegClass(BaseReg.Reg) ||
1957 BaseReg.SubReg)
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001958 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001959
Quentin Colombet03e43f82014-08-20 17:41:48 +00001960 // Get the TRI and check if the inserted sub-register overlaps with the
1961 // sub-register we are tracking.
1962 const TargetRegisterInfo *TRI = MRI.getTargetRegisterInfo();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001963 if (!TRI ||
Krzysztof Parzyszek91b5cf82016-12-15 14:36:06 +00001964 !(TRI->getSubRegIndexLaneMask(DefSubReg) &
1965 TRI->getSubRegIndexLaneMask(InsertedReg.SubIdx)).none())
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001966 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001967 // At this point, the value is available in v0 via the same subreg
1968 // we used for Def.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001969 return ValueTrackerResult(BaseReg.Reg, DefSubReg);
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001970}
1971
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001972ValueTrackerResult ValueTracker::getNextSourceFromExtractSubreg() {
Quentin Colombet67639df2014-08-20 23:13:02 +00001973 assert((Def->isExtractSubreg() ||
1974 Def->isExtractSubregLike()) && "Invalid definition");
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001975 // We are looking at:
1976 // Def = EXTRACT_SUBREG v0, sub0
1977
Matt Arsenault30991562015-09-09 00:38:33 +00001978 // Bail if we have to compose sub registers.
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001979 // Indeed, if DefSubReg != 0, we would have to compose it with sub0.
1980 if (DefSubReg)
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001981 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001982
Quentin Colombet67639df2014-08-20 23:13:02 +00001983 if (!TII)
1984 // We could handle the EXTRACT_SUBREG here, but we do not want to
1985 // duplicate the code from the generic TII.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001986 return ValueTrackerResult();
Quentin Colombet67639df2014-08-20 23:13:02 +00001987
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00001988 RegSubRegPairAndIdx ExtractSubregInputReg;
Quentin Colombet67639df2014-08-20 23:13:02 +00001989 if (!TII->getExtractSubregInputs(*Def, DefIdx, ExtractSubregInputReg))
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001990 return ValueTrackerResult();
Quentin Colombet03e43f82014-08-20 17:41:48 +00001991
Matt Arsenault30991562015-09-09 00:38:33 +00001992 // Bail if we have to compose sub registers.
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001993 // Likewise, if v0.subreg != 0, we would have to compose v0.subreg with sub0.
Quentin Colombet03e43f82014-08-20 17:41:48 +00001994 if (ExtractSubregInputReg.SubReg)
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00001995 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001996 // Otherwise, the value is available in the v0.sub0.
Sanjay Patelb120ae92015-12-29 19:34:53 +00001997 return ValueTrackerResult(ExtractSubregInputReg.Reg,
1998 ExtractSubregInputReg.SubIdx);
Quentin Colombet1111e6f2014-07-01 14:33:36 +00001999}
2000
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002001ValueTrackerResult ValueTracker::getNextSourceFromSubregToReg() {
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002002 assert(Def->isSubregToReg() && "Invalid definition");
2003 // We are looking at:
2004 // Def = SUBREG_TO_REG Imm, v0, sub0
2005
Matt Arsenault30991562015-09-09 00:38:33 +00002006 // Bail if we have to compose sub registers.
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002007 // If DefSubReg != sub0, we would have to check that all the bits
2008 // we track are included in sub0 and if yes, we would have to
2009 // determine the right subreg in v0.
2010 if (DefSubReg != Def->getOperand(3).getImm())
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002011 return ValueTrackerResult();
Matt Arsenault30991562015-09-09 00:38:33 +00002012 // Bail if we have to compose sub registers.
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002013 // Likewise, if v0.subreg != 0, we would have to compose it with sub0.
2014 if (Def->getOperand(2).getSubReg())
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002015 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002016
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002017 return ValueTrackerResult(Def->getOperand(2).getReg(),
2018 Def->getOperand(3).getImm());
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002019}
2020
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00002021/// Explore each PHI incoming operand and return its sources.
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00002022ValueTrackerResult ValueTracker::getNextSourceFromPHI() {
2023 assert(Def->isPHI() && "Invalid definition");
2024 ValueTrackerResult Res;
2025
Matt Arsenault30991562015-09-09 00:38:33 +00002026 // If we look for a different subreg, bail as we do not support composing
2027 // subregs yet.
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00002028 if (Def->getOperand(0).getSubReg() != DefSubReg)
2029 return ValueTrackerResult();
2030
2031 // Return all register sources for PHI instructions.
2032 for (unsigned i = 1, e = Def->getNumOperands(); i < e; i += 2) {
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00002033 const MachineOperand &MO = Def->getOperand(i);
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00002034 assert(MO.isReg() && "Invalid PHI instruction");
Matthias Braunea4359e2018-01-11 22:30:43 +00002035 // We have no code to deal with undef operands. They shouldn't happen in
2036 // normal programs anyway.
2037 if (MO.isUndef())
2038 return ValueTrackerResult();
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00002039 Res.addSource(MO.getReg(), MO.getSubReg());
2040 }
2041
2042 return Res;
2043}
2044
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002045ValueTrackerResult ValueTracker::getNextSourceImpl() {
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002046 assert(Def && "This method needs a valid definition");
2047
Eric Liue617ade2016-07-04 12:10:08 +00002048 assert(((Def->getOperand(DefIdx).isDef() &&
2049 (DefIdx < Def->getDesc().getNumDefs() ||
2050 Def->getDesc().isVariadic())) ||
2051 Def->getOperand(DefIdx).isImplicit()) &&
2052 "Invalid DefIdx");
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002053 if (Def->isCopy())
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002054 return getNextSourceFromCopy();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002055 if (Def->isBitcast())
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002056 return getNextSourceFromBitcast();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002057 // All the remaining cases involve "complex" instructions.
Matt Arsenault30991562015-09-09 00:38:33 +00002058 // Bail if we did not ask for the advanced tracking.
Matthias Braunbfd9c4a2018-01-11 22:59:33 +00002059 if (DisableAdvCopyOpt)
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002060 return ValueTrackerResult();
Quentin Colombet03e43f82014-08-20 17:41:48 +00002061 if (Def->isRegSequence() || Def->isRegSequenceLike())
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002062 return getNextSourceFromRegSequence();
Quentin Colombet68962302014-08-21 00:19:16 +00002063 if (Def->isInsertSubreg() || Def->isInsertSubregLike())
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002064 return getNextSourceFromInsertSubreg();
Quentin Colombet67639df2014-08-20 23:13:02 +00002065 if (Def->isExtractSubreg() || Def->isExtractSubregLike())
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002066 return getNextSourceFromExtractSubreg();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002067 if (Def->isSubregToReg())
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002068 return getNextSourceFromSubregToReg();
Bruno Cardoso Lopes27fd0692015-08-19 18:53:36 +00002069 if (Def->isPHI())
2070 return getNextSourceFromPHI();
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002071 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002072}
2073
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002074ValueTrackerResult ValueTracker::getNextSource() {
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002075 // If we reach a point where we cannot move up in the use-def chain,
2076 // there is nothing we can get.
2077 if (!Def)
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002078 return ValueTrackerResult();
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002079
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002080 ValueTrackerResult Res = getNextSourceImpl();
2081 if (Res.isValid()) {
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002082 // Update definition, definition index, and subregister for the
2083 // next call of getNextSource.
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002084 // Update the current register.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002085 bool OneRegSrc = Res.getNumSources() == 1;
2086 if (OneRegSrc)
2087 Reg = Res.getSrcReg(0);
2088 // Update the result before moving up in the use-def chain
2089 // with the instruction containing the last found sources.
2090 Res.setInst(Def);
2091
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002092 // If we can still move up in the use-def chain, move to the next
Benjamin Kramerdf005cb2015-08-08 18:27:36 +00002093 // definition.
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002094 if (!TargetRegisterInfo::isPhysicalRegister(Reg) && OneRegSrc) {
Matthias Braunea4359e2018-01-11 22:30:43 +00002095 MachineRegisterInfo::def_iterator DI = MRI.def_begin(Reg);
2096 if (DI != MRI.def_end()) {
2097 Def = DI->getParent();
2098 DefIdx = DI.getOperandNo();
2099 DefSubReg = Res.getSrcSubReg(0);
2100 } else {
2101 Def = nullptr;
2102 }
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002103 return Res;
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002104 }
2105 }
2106 // If we end up here, this means we will not be able to find another source
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002107 // for the next iteration. Make sure any new call to getNextSource bails out
2108 // early by cutting the use-def chain.
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002109 Def = nullptr;
Bruno Cardoso Lopesf16ec122015-07-22 21:30:16 +00002110 return Res;
Quentin Colombet1111e6f2014-07-01 14:33:36 +00002111}