blob: c96c813b0c9b7a70225aaa837ca38c0916308282 [file] [log] [blame]
Alkis Evlogimenos725021c2003-12-18 13:06:04 +00001//===-- TwoAddressInstructionPass.cpp - Two-Address instruction pass ------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Alkis Evlogimenos725021c2003-12-18 13:06:04 +00007//
8//===----------------------------------------------------------------------===//
9//
Alkis Evlogimenos5e0e6712004-01-04 23:09:24 +000010// This file implements the TwoAddress instruction pass which is used
11// by most register allocators. Two-Address instructions are rewritten
12// from:
13//
14// A = B op C
15//
16// to:
17//
18// A = B
Alkis Evlogimenos32742642004-02-04 22:17:40 +000019// A op= C
Alkis Evlogimenos725021c2003-12-18 13:06:04 +000020//
Alkis Evlogimenos32742642004-02-04 22:17:40 +000021// Note that if a register allocator chooses to use this pass, that it
22// has to be capable of handling the non-SSA nature of these rewritten
23// virtual registers.
24//
25// It is also worth noting that the duplicate operand of the two
26// address instruction is removed.
Chris Lattnerd835aa62004-01-31 21:07:15 +000027//
Alkis Evlogimenos725021c2003-12-18 13:06:04 +000028//===----------------------------------------------------------------------===//
29
Chris Lattnerd835aa62004-01-31 21:07:15 +000030#include "llvm/CodeGen/Passes.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000031#include "llvm/ADT/BitVector.h"
32#include "llvm/ADT/DenseMap.h"
33#include "llvm/ADT/STLExtras.h"
34#include "llvm/ADT/SmallSet.h"
35#include "llvm/ADT/Statistic.h"
36#include "llvm/Analysis/AliasAnalysis.h"
Jakob Stoklund Olesen24bc5142012-08-03 22:58:34 +000037#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Alkis Evlogimenos725021c2003-12-18 13:06:04 +000038#include "llvm/CodeGen/LiveVariables.h"
Alkis Evlogimenos725021c2003-12-18 13:06:04 +000039#include "llvm/CodeGen/MachineFunctionPass.h"
40#include "llvm/CodeGen/MachineInstr.h"
Bob Wilsona55b8872010-06-15 05:56:31 +000041#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattnera10fff52007-12-31 04:13:23 +000042#include "llvm/CodeGen/MachineRegisterInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000043#include "llvm/IR/Function.h"
Evan Cheng30f44ad2011-11-14 19:48:55 +000044#include "llvm/MC/MCInstrItineraries.h"
Andrew Trick608a6982013-04-24 15:54:39 +000045#include "llvm/Support/CommandLine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000046#include "llvm/Support/Debug.h"
47#include "llvm/Support/ErrorHandling.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000048#include "llvm/Support/raw_ostream.h"
Alkis Evlogimenos725021c2003-12-18 13:06:04 +000049#include "llvm/Target/TargetInstrInfo.h"
50#include "llvm/Target/TargetMachine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000051#include "llvm/Target/TargetRegisterInfo.h"
Eric Christopherd9134482014-08-04 21:25:23 +000052#include "llvm/Target/TargetSubtargetInfo.h"
Alkis Evlogimenos725021c2003-12-18 13:06:04 +000053using namespace llvm;
54
Chandler Carruth1b9dde02014-04-22 02:02:50 +000055#define DEBUG_TYPE "twoaddrinstr"
56
Chris Lattneraee775a2006-12-19 22:41:21 +000057STATISTIC(NumTwoAddressInstrs, "Number of two-address instructions");
58STATISTIC(NumCommuted , "Number of instructions commuted to coalesce");
Evan Chengabda6652009-01-25 03:53:59 +000059STATISTIC(NumAggrCommuted , "Number of instructions aggressively commuted");
Chris Lattneraee775a2006-12-19 22:41:21 +000060STATISTIC(NumConvertedTo3Addr, "Number of instructions promoted to 3-address");
Evan Cheng5c26bde2008-03-13 06:37:55 +000061STATISTIC(Num3AddrSunk, "Number of 3-address instructions sunk");
Evan Cheng30f44ad2011-11-14 19:48:55 +000062STATISTIC(NumReSchedUps, "Number of instructions re-scheduled up");
63STATISTIC(NumReSchedDowns, "Number of instructions re-scheduled down");
Evan Cheng5c26bde2008-03-13 06:37:55 +000064
Andrew Trick608a6982013-04-24 15:54:39 +000065// Temporary flag to disable rescheduling.
66static cl::opt<bool>
67EnableRescheduling("twoaddr-reschedule",
Evan Chengf85a76f2013-05-02 02:07:32 +000068 cl::desc("Coalesce copies by rescheduling (default=true)"),
69 cl::init(true), cl::Hidden);
Andrew Trick608a6982013-04-24 15:54:39 +000070
Evan Cheng5c26bde2008-03-13 06:37:55 +000071namespace {
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +000072class TwoAddressInstructionPass : public MachineFunctionPass {
73 MachineFunction *MF;
74 const TargetInstrInfo *TII;
75 const TargetRegisterInfo *TRI;
76 const InstrItineraryData *InstrItins;
77 MachineRegisterInfo *MRI;
78 LiveVariables *LV;
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +000079 LiveIntervals *LIS;
80 AliasAnalysis *AA;
81 CodeGenOpt::Level OptLevel;
Evan Cheng5c26bde2008-03-13 06:37:55 +000082
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +000083 // The current basic block being processed.
84 MachineBasicBlock *MBB;
85
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +000086 // DistanceMap - Keep track the distance of a MI from the start of the
87 // current basic block.
88 DenseMap<MachineInstr*, unsigned> DistanceMap;
Evan Chengc2f95b52009-03-01 02:03:43 +000089
Jakob Stoklund Olesend788e322012-10-26 22:06:00 +000090 // Set of already processed instructions in the current block.
91 SmallPtrSet<MachineInstr*, 8> Processed;
92
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +000093 // SrcRegMap - A map from virtual registers to physical registers which are
94 // likely targets to be coalesced to due to copies from physical registers to
95 // virtual registers. e.g. v1024 = move r0.
96 DenseMap<unsigned, unsigned> SrcRegMap;
Evan Chengc2f95b52009-03-01 02:03:43 +000097
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +000098 // DstRegMap - A map from virtual registers to physical registers which are
99 // likely targets to be coalesced to due to copies to physical registers from
100 // virtual registers. e.g. r1 = move v1024.
101 DenseMap<unsigned, unsigned> DstRegMap;
Evan Chengc2f95b52009-03-01 02:03:43 +0000102
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +0000103 bool sink3AddrInstruction(MachineInstr *MI, unsigned Reg,
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +0000104 MachineBasicBlock::iterator OldPos);
Evan Chengc5618eb2008-06-18 07:49:14 +0000105
Eric Christopher28919132015-03-03 22:03:03 +0000106 bool isRevCopyChain(unsigned FromReg, unsigned ToReg, int Maxlen);
107
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +0000108 bool noUseAfterLastDef(unsigned Reg, unsigned Dist, unsigned &LastDef);
Evan Chengabda6652009-01-25 03:53:59 +0000109
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +0000110 bool isProfitableToCommute(unsigned regA, unsigned regB, unsigned regC,
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +0000111 MachineInstr *MI, unsigned Dist);
Evan Chengabda6652009-01-25 03:53:59 +0000112
Andrew Kaylor16c4da02015-09-28 20:33:22 +0000113 bool commuteInstruction(MachineInstr *MI,
114 unsigned RegBIdx, unsigned RegCIdx, unsigned Dist);
Evan Chengc2f95b52009-03-01 02:03:43 +0000115
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +0000116 bool isProfitableToConv3Addr(unsigned RegA, unsigned RegB);
Evan Cheng09f5be82009-03-30 21:34:07 +0000117
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +0000118 bool convertInstTo3Addr(MachineBasicBlock::iterator &mi,
119 MachineBasicBlock::iterator &nmi,
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +0000120 unsigned RegA, unsigned RegB, unsigned Dist);
Evan Cheng09f5be82009-03-30 21:34:07 +0000121
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +0000122 bool isDefTooClose(unsigned Reg, unsigned Dist, MachineInstr *MI);
Evan Cheng30f44ad2011-11-14 19:48:55 +0000123
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +0000124 bool rescheduleMIBelowKill(MachineBasicBlock::iterator &mi,
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +0000125 MachineBasicBlock::iterator &nmi,
126 unsigned Reg);
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +0000127 bool rescheduleKillAboveMI(MachineBasicBlock::iterator &mi,
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +0000128 MachineBasicBlock::iterator &nmi,
129 unsigned Reg);
130
131 bool tryInstructionTransform(MachineBasicBlock::iterator &mi,
Evan Cheng30f44ad2011-11-14 19:48:55 +0000132 MachineBasicBlock::iterator &nmi,
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +0000133 unsigned SrcIdx, unsigned DstIdx,
Cameron Zwarichf05c0cb2013-02-24 00:27:26 +0000134 unsigned Dist, bool shouldOnlyCommute);
Evan Cheng30f44ad2011-11-14 19:48:55 +0000135
Andrew Kaylor16c4da02015-09-28 20:33:22 +0000136 bool tryInstructionCommute(MachineInstr *MI,
137 unsigned DstOpIdx,
138 unsigned BaseOpIdx,
139 bool BaseOpKilled,
140 unsigned Dist);
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +0000141 void scanUses(unsigned DstReg);
Evan Cheng15fed7a2011-03-02 01:08:17 +0000142
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +0000143 void processCopy(MachineInstr *MI);
Bob Wilson5c7d9ca2009-09-03 20:58:42 +0000144
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +0000145 typedef SmallVector<std::pair<unsigned, unsigned>, 4> TiedPairList;
146 typedef SmallDenseMap<unsigned, TiedPairList> TiedOperandMap;
147 bool collectTiedOperands(MachineInstr *MI, TiedOperandMap&);
148 void processTiedPairs(MachineInstr *MI, TiedPairList&, unsigned &Dist);
Jakob Stoklund Olesenda2b6b32012-12-01 01:06:44 +0000149 void eliminateRegSequence(MachineBasicBlock::iterator&);
Jakob Stoklund Olesen1162a152012-08-03 23:25:45 +0000150
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +0000151public:
152 static char ID; // Pass identification, replacement for typeid
153 TwoAddressInstructionPass() : MachineFunctionPass(ID) {
154 initializeTwoAddressInstructionPassPass(*PassRegistry::getPassRegistry());
155 }
Evan Cheng1e4f5522010-05-17 23:24:12 +0000156
Craig Topper4584cd52014-03-07 09:26:03 +0000157 void getAnalysisUsage(AnalysisUsage &AU) const override {
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +0000158 AU.setPreservesCFG();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000159 AU.addRequired<AAResultsWrapperPass>();
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +0000160 AU.addPreserved<LiveVariables>();
161 AU.addPreserved<SlotIndexes>();
162 AU.addPreserved<LiveIntervals>();
163 AU.addPreservedID(MachineLoopInfoID);
164 AU.addPreservedID(MachineDominatorsID);
165 MachineFunctionPass::getAnalysisUsage(AU);
166 }
Devang Patel09f162c2007-05-01 21:15:47 +0000167
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +0000168 /// runOnMachineFunction - Pass entry point.
Craig Topper4584cd52014-03-07 09:26:03 +0000169 bool runOnMachineFunction(MachineFunction&) override;
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +0000170};
171} // end anonymous namespace
Alkis Evlogimenos725021c2003-12-18 13:06:04 +0000172
Dan Gohmand78c4002008-05-13 00:00:25 +0000173char TwoAddressInstructionPass::ID = 0;
Owen Anderson8ac477f2010-10-12 19:48:12 +0000174INITIALIZE_PASS_BEGIN(TwoAddressInstructionPass, "twoaddressinstruction",
175 "Two-Address instruction pass", false, false)
Chandler Carruth7b560d42015-09-09 17:55:00 +0000176INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass)
Owen Anderson8ac477f2010-10-12 19:48:12 +0000177INITIALIZE_PASS_END(TwoAddressInstructionPass, "twoaddressinstruction",
Owen Andersondf7a4f22010-10-07 22:25:06 +0000178 "Two-Address instruction pass", false, false)
Dan Gohmand78c4002008-05-13 00:00:25 +0000179
Owen Andersona7aed182010-08-06 18:33:48 +0000180char &llvm::TwoAddressInstructionPassID = TwoAddressInstructionPass::ID;
Alkis Evlogimenos71390902003-12-18 22:40:24 +0000181
Cameron Zwarich35c30502013-02-23 04:49:20 +0000182static bool isPlainlyKilled(MachineInstr *MI, unsigned Reg, LiveIntervals *LIS);
183
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +0000184/// sink3AddrInstruction - A two-address instruction has been converted to a
Evan Cheng5c26bde2008-03-13 06:37:55 +0000185/// three-address instruction to avoid clobbering a register. Try to sink it
Bill Wendling19e3c852008-05-10 00:12:52 +0000186/// past the instruction that would kill the above mentioned register to reduce
187/// register pressure.
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +0000188bool TwoAddressInstructionPass::
189sink3AddrInstruction(MachineInstr *MI, unsigned SavedReg,
190 MachineBasicBlock::iterator OldPos) {
Eli Friedman8a15a5a2011-09-23 22:41:57 +0000191 // FIXME: Shouldn't we be trying to do this before we three-addressify the
192 // instruction? After this transformation is done, we no longer need
193 // the instruction to be in three-address form.
194
Evan Cheng5c26bde2008-03-13 06:37:55 +0000195 // Check if it's safe to move this instruction.
196 bool SeenStore = true; // Be conservative.
Matthias Braun07066cc2015-05-19 21:22:20 +0000197 if (!MI->isSafeToMove(AA, SeenStore))
Evan Cheng5c26bde2008-03-13 06:37:55 +0000198 return false;
199
200 unsigned DefReg = 0;
201 SmallSet<unsigned, 4> UseRegs;
Bill Wendling19e3c852008-05-10 00:12:52 +0000202
Craig Topperda5168b2015-10-08 06:06:42 +0000203 for (const MachineOperand &MO : MI->operands()) {
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000204 if (!MO.isReg())
Evan Cheng5c26bde2008-03-13 06:37:55 +0000205 continue;
206 unsigned MOReg = MO.getReg();
207 if (!MOReg)
208 continue;
209 if (MO.isUse() && MOReg != SavedReg)
210 UseRegs.insert(MO.getReg());
211 if (!MO.isDef())
212 continue;
213 if (MO.isImplicit())
214 // Don't try to move it if it implicitly defines a register.
215 return false;
216 if (DefReg)
217 // For now, don't move any instructions that define multiple registers.
218 return false;
219 DefReg = MO.getReg();
220 }
221
222 // Find the instruction that kills SavedReg.
Craig Topperc0196b12014-04-14 00:51:57 +0000223 MachineInstr *KillMI = nullptr;
Cameron Zwarich35c30502013-02-23 04:49:20 +0000224 if (LIS) {
225 LiveInterval &LI = LIS->getInterval(SavedReg);
226 assert(LI.end() != LI.begin() &&
227 "Reg should not have empty live interval.");
228
229 SlotIndex MBBEndIdx = LIS->getMBBEndIdx(MBB).getPrevSlot();
230 LiveInterval::const_iterator I = LI.find(MBBEndIdx);
231 if (I != LI.end() && I->start < MBBEndIdx)
232 return false;
233
234 --I;
235 KillMI = LIS->getInstructionFromIndex(I->end);
236 }
237 if (!KillMI) {
Craig Topperda5168b2015-10-08 06:06:42 +0000238 for (MachineOperand &UseMO : MRI->use_nodbg_operands(SavedReg)) {
Cameron Zwarich35c30502013-02-23 04:49:20 +0000239 if (!UseMO.isKill())
240 continue;
241 KillMI = UseMO.getParent();
242 break;
243 }
Evan Cheng5c26bde2008-03-13 06:37:55 +0000244 }
Bill Wendling19e3c852008-05-10 00:12:52 +0000245
Eli Friedman8a15a5a2011-09-23 22:41:57 +0000246 // If we find the instruction that kills SavedReg, and it is in an
247 // appropriate location, we can try to sink the current instruction
248 // past it.
249 if (!KillMI || KillMI->getParent() != MBB || KillMI == MI ||
Jakob Stoklund Olesen420798c2012-08-09 22:08:26 +0000250 KillMI == OldPos || KillMI->isTerminator())
Evan Cheng5c26bde2008-03-13 06:37:55 +0000251 return false;
252
Bill Wendling19e3c852008-05-10 00:12:52 +0000253 // If any of the definitions are used by another instruction between the
254 // position and the kill use, then it's not safe to sink it.
Andrew Trick808a7a62012-02-03 05:12:30 +0000255 //
Bill Wendling19e3c852008-05-10 00:12:52 +0000256 // FIXME: This can be sped up if there is an easy way to query whether an
Evan Chengc5618eb2008-06-18 07:49:14 +0000257 // instruction is before or after another instruction. Then we can use
Bill Wendling19e3c852008-05-10 00:12:52 +0000258 // MachineRegisterInfo def / use instead.
Craig Topperc0196b12014-04-14 00:51:57 +0000259 MachineOperand *KillMO = nullptr;
Evan Cheng5c26bde2008-03-13 06:37:55 +0000260 MachineBasicBlock::iterator KillPos = KillMI;
261 ++KillPos;
Bill Wendling19e3c852008-05-10 00:12:52 +0000262
Evan Chengc5618eb2008-06-18 07:49:14 +0000263 unsigned NumVisited = 0;
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000264 for (MachineBasicBlock::iterator I = std::next(OldPos); I != KillPos; ++I) {
Evan Cheng5c26bde2008-03-13 06:37:55 +0000265 MachineInstr *OtherMI = I;
Dale Johannesen12565de2010-02-11 18:22:31 +0000266 // DBG_VALUE cannot be counted against the limit.
267 if (OtherMI->isDebugValue())
268 continue;
Evan Chengc5618eb2008-06-18 07:49:14 +0000269 if (NumVisited > 30) // FIXME: Arbitrary limit to reduce compile time cost.
270 return false;
271 ++NumVisited;
Evan Cheng5c26bde2008-03-13 06:37:55 +0000272 for (unsigned i = 0, e = OtherMI->getNumOperands(); i != e; ++i) {
273 MachineOperand &MO = OtherMI->getOperand(i);
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000274 if (!MO.isReg())
Evan Cheng5c26bde2008-03-13 06:37:55 +0000275 continue;
276 unsigned MOReg = MO.getReg();
277 if (!MOReg)
278 continue;
279 if (DefReg == MOReg)
280 return false;
Bill Wendling19e3c852008-05-10 00:12:52 +0000281
Cameron Zwarich35c30502013-02-23 04:49:20 +0000282 if (MO.isKill() || (LIS && isPlainlyKilled(OtherMI, MOReg, LIS))) {
Evan Cheng5c26bde2008-03-13 06:37:55 +0000283 if (OtherMI == KillMI && MOReg == SavedReg)
Evan Chengc5618eb2008-06-18 07:49:14 +0000284 // Save the operand that kills the register. We want to unset the kill
285 // marker if we can sink MI past it.
Evan Cheng5c26bde2008-03-13 06:37:55 +0000286 KillMO = &MO;
287 else if (UseRegs.count(MOReg))
288 // One of the uses is killed before the destination.
289 return false;
290 }
291 }
292 }
Jakob Stoklund Olesen420798c2012-08-09 22:08:26 +0000293 assert(KillMO && "Didn't find kill");
Evan Cheng5c26bde2008-03-13 06:37:55 +0000294
Cameron Zwarich35c30502013-02-23 04:49:20 +0000295 if (!LIS) {
296 // Update kill and LV information.
297 KillMO->setIsKill(false);
298 KillMO = MI->findRegisterUseOperand(SavedReg, false, TRI);
299 KillMO->setIsKill(true);
Andrew Trick808a7a62012-02-03 05:12:30 +0000300
Cameron Zwarich35c30502013-02-23 04:49:20 +0000301 if (LV)
302 LV->replaceKillInstruction(SavedReg, KillMI, MI);
303 }
Evan Cheng5c26bde2008-03-13 06:37:55 +0000304
305 // Move instruction to its destination.
306 MBB->remove(MI);
307 MBB->insert(KillPos, MI);
308
Jakob Stoklund Olesen24bc5142012-08-03 22:58:34 +0000309 if (LIS)
310 LIS->handleMove(MI);
311
Evan Cheng5c26bde2008-03-13 06:37:55 +0000312 ++Num3AddrSunk;
313 return true;
314}
315
Eric Christopher28919132015-03-03 22:03:03 +0000316/// getSingleDef -- return the MachineInstr* if it is the single def of the Reg
317/// in current BB.
318static MachineInstr *getSingleDef(unsigned Reg, MachineBasicBlock *BB,
319 const MachineRegisterInfo *MRI) {
320 MachineInstr *Ret = nullptr;
321 for (MachineInstr &DefMI : MRI->def_instructions(Reg)) {
322 if (DefMI.getParent() != BB || DefMI.isDebugValue())
323 continue;
324 if (!Ret)
325 Ret = &DefMI;
326 else if (Ret != &DefMI)
327 return nullptr;
328 }
329 return Ret;
330}
331
332/// Check if there is a reversed copy chain from FromReg to ToReg:
333/// %Tmp1 = copy %Tmp2;
334/// %FromReg = copy %Tmp1;
335/// %ToReg = add %FromReg ...
336/// %Tmp2 = copy %ToReg;
337/// MaxLen specifies the maximum length of the copy chain the func
338/// can walk through.
339bool TwoAddressInstructionPass::isRevCopyChain(unsigned FromReg, unsigned ToReg,
340 int Maxlen) {
341 unsigned TmpReg = FromReg;
342 for (int i = 0; i < Maxlen; i++) {
343 MachineInstr *Def = getSingleDef(TmpReg, MBB, MRI);
344 if (!Def || !Def->isCopy())
345 return false;
346
347 TmpReg = Def->getOperand(1).getReg();
348
349 if (TmpReg == ToReg)
350 return true;
351 }
352 return false;
353}
354
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +0000355/// noUseAfterLastDef - Return true if there are no intervening uses between the
Evan Chengabda6652009-01-25 03:53:59 +0000356/// last instruction in the MBB that defines the specified register and the
357/// two-address instruction which is being processed. It also returns the last
358/// def location by reference
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +0000359bool TwoAddressInstructionPass::noUseAfterLastDef(unsigned Reg, unsigned Dist,
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +0000360 unsigned &LastDef) {
Evan Chengabda6652009-01-25 03:53:59 +0000361 LastDef = 0;
362 unsigned LastUse = Dist;
Owen Andersonb36376e2014-03-17 19:36:09 +0000363 for (MachineOperand &MO : MRI->reg_operands(Reg)) {
Evan Chengabda6652009-01-25 03:53:59 +0000364 MachineInstr *MI = MO.getParent();
Chris Lattnerb06015a2010-02-09 19:54:29 +0000365 if (MI->getParent() != MBB || MI->isDebugValue())
Dale Johannesenc3adf442010-02-09 02:01:46 +0000366 continue;
Evan Chengabda6652009-01-25 03:53:59 +0000367 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(MI);
368 if (DI == DistanceMap.end())
369 continue;
370 if (MO.isUse() && DI->second < LastUse)
371 LastUse = DI->second;
372 if (MO.isDef() && DI->second > LastDef)
373 LastDef = DI->second;
374 }
375
376 return !(LastUse > LastDef && LastUse < Dist);
377}
378
Evan Chengc2f95b52009-03-01 02:03:43 +0000379/// isCopyToReg - Return true if the specified MI is a copy instruction or
380/// a extract_subreg instruction. It also returns the source and destination
381/// registers and whether they are physical registers by reference.
382static bool isCopyToReg(MachineInstr &MI, const TargetInstrInfo *TII,
383 unsigned &SrcReg, unsigned &DstReg,
384 bool &IsSrcPhys, bool &IsDstPhys) {
385 SrcReg = 0;
386 DstReg = 0;
Jakob Stoklund Olesen37c42a32010-07-16 04:45:42 +0000387 if (MI.isCopy()) {
388 DstReg = MI.getOperand(0).getReg();
389 SrcReg = MI.getOperand(1).getReg();
390 } else if (MI.isInsertSubreg() || MI.isSubregToReg()) {
391 DstReg = MI.getOperand(0).getReg();
392 SrcReg = MI.getOperand(2).getReg();
393 } else
394 return false;
Evan Chengc2f95b52009-03-01 02:03:43 +0000395
Jakob Stoklund Olesen37c42a32010-07-16 04:45:42 +0000396 IsSrcPhys = TargetRegisterInfo::isPhysicalRegister(SrcReg);
397 IsDstPhys = TargetRegisterInfo::isPhysicalRegister(DstReg);
398 return true;
Evan Chengc2f95b52009-03-01 02:03:43 +0000399}
400
Cameron Zwarichc8964782013-02-21 07:02:28 +0000401/// isPLainlyKilled - Test if the given register value, which is used by the
402// given instruction, is killed by the given instruction.
403static bool isPlainlyKilled(MachineInstr *MI, unsigned Reg,
404 LiveIntervals *LIS) {
405 if (LIS && TargetRegisterInfo::isVirtualRegister(Reg) &&
406 !LIS->isNotInMIMap(MI)) {
407 // FIXME: Sometimes tryInstructionTransform() will add instructions and
408 // test whether they can be folded before keeping them. In this case it
409 // sets a kill before recursively calling tryInstructionTransform() again.
410 // If there is no interval available, we assume that this instruction is
411 // one of those. A kill flag is manually inserted on the operand so the
412 // check below will handle it.
413 LiveInterval &LI = LIS->getInterval(Reg);
414 // This is to match the kill flag version where undefs don't have kill
415 // flags.
416 if (!LI.hasAtLeastOneValue())
417 return false;
418
419 SlotIndex useIdx = LIS->getInstructionIndex(MI);
420 LiveInterval::const_iterator I = LI.find(useIdx);
421 assert(I != LI.end() && "Reg must be live-in to use.");
Cameron Zwarich4e80d9e2013-02-23 04:49:22 +0000422 return !I->end.isBlock() && SlotIndex::isSameInstr(I->end, useIdx);
Cameron Zwarichc8964782013-02-21 07:02:28 +0000423 }
424
425 return MI->killsRegister(Reg);
426}
427
Dan Gohmanad3e5492009-04-08 00:15:30 +0000428/// isKilled - Test if the given register value, which is used by the given
429/// instruction, is killed by the given instruction. This looks through
430/// coalescable copies to see if the original value is potentially not killed.
431///
432/// For example, in this code:
433///
434/// %reg1034 = copy %reg1024
435/// %reg1035 = copy %reg1025<kill>
436/// %reg1036 = add %reg1034<kill>, %reg1035<kill>
437///
438/// %reg1034 is not considered to be killed, since it is copied from a
439/// register which is not killed. Treating it as not killed lets the
440/// normal heuristics commute the (two-address) add, which lets
441/// coalescing eliminate the extra copy.
442///
Cameron Zwarich384026b2013-02-21 22:58:42 +0000443/// If allowFalsePositives is true then likely kills are treated as kills even
444/// if it can't be proven that they are kills.
Dan Gohmanad3e5492009-04-08 00:15:30 +0000445static bool isKilled(MachineInstr &MI, unsigned Reg,
446 const MachineRegisterInfo *MRI,
Cameron Zwarich94b204b2013-02-21 04:33:02 +0000447 const TargetInstrInfo *TII,
Cameron Zwarich384026b2013-02-21 22:58:42 +0000448 LiveIntervals *LIS,
449 bool allowFalsePositives) {
Dan Gohmanad3e5492009-04-08 00:15:30 +0000450 MachineInstr *DefMI = &MI;
451 for (;;) {
Cameron Zwarich384026b2013-02-21 22:58:42 +0000452 // All uses of physical registers are likely to be kills.
453 if (TargetRegisterInfo::isPhysicalRegister(Reg) &&
454 (allowFalsePositives || MRI->hasOneUse(Reg)))
455 return true;
Cameron Zwarichc8964782013-02-21 07:02:28 +0000456 if (!isPlainlyKilled(DefMI, Reg, LIS))
Dan Gohmanad3e5492009-04-08 00:15:30 +0000457 return false;
458 if (TargetRegisterInfo::isPhysicalRegister(Reg))
459 return true;
460 MachineRegisterInfo::def_iterator Begin = MRI->def_begin(Reg);
461 // If there are multiple defs, we can't do a simple analysis, so just
462 // go with what the kill flag says.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000463 if (std::next(Begin) != MRI->def_end())
Dan Gohmanad3e5492009-04-08 00:15:30 +0000464 return true;
Owen Anderson16c6bf42014-03-13 23:12:04 +0000465 DefMI = Begin->getParent();
Dan Gohmanad3e5492009-04-08 00:15:30 +0000466 bool IsSrcPhys, IsDstPhys;
467 unsigned SrcReg, DstReg;
468 // If the def is something other than a copy, then it isn't going to
469 // be coalesced, so follow the kill flag.
470 if (!isCopyToReg(*DefMI, TII, SrcReg, DstReg, IsSrcPhys, IsDstPhys))
471 return true;
472 Reg = SrcReg;
473 }
474}
475
Evan Chengc2f95b52009-03-01 02:03:43 +0000476/// isTwoAddrUse - Return true if the specified MI uses the specified register
477/// as a two-address use. If so, return the destination register by reference.
478static bool isTwoAddrUse(MachineInstr &MI, unsigned Reg, unsigned &DstReg) {
Evan Chengf85a76f2013-05-02 02:07:32 +0000479 for (unsigned i = 0, NumOps = MI.getNumOperands(); i != NumOps; ++i) {
Evan Chengc2f95b52009-03-01 02:03:43 +0000480 const MachineOperand &MO = MI.getOperand(i);
481 if (!MO.isReg() || !MO.isUse() || MO.getReg() != Reg)
482 continue;
Evan Cheng1361cbb2009-03-19 20:30:06 +0000483 unsigned ti;
484 if (MI.isRegTiedToDefOperand(i, &ti)) {
Evan Chengc2f95b52009-03-01 02:03:43 +0000485 DstReg = MI.getOperand(ti).getReg();
486 return true;
487 }
488 }
489 return false;
490}
491
492/// findOnlyInterestingUse - Given a register, if has a single in-basic block
493/// use, return the use instruction if it's a copy or a two-address use.
494static
495MachineInstr *findOnlyInterestingUse(unsigned Reg, MachineBasicBlock *MBB,
496 MachineRegisterInfo *MRI,
497 const TargetInstrInfo *TII,
Evan Cheng97871832009-04-14 00:32:25 +0000498 bool &IsCopy,
Evan Chengc2f95b52009-03-01 02:03:43 +0000499 unsigned &DstReg, bool &IsDstPhys) {
Evan Chengf94d6832010-03-03 21:18:38 +0000500 if (!MRI->hasOneNonDBGUse(Reg))
501 // None or more than one use.
Craig Topperc0196b12014-04-14 00:51:57 +0000502 return nullptr;
Owen Anderson16c6bf42014-03-13 23:12:04 +0000503 MachineInstr &UseMI = *MRI->use_instr_nodbg_begin(Reg);
Evan Chengc2f95b52009-03-01 02:03:43 +0000504 if (UseMI.getParent() != MBB)
Craig Topperc0196b12014-04-14 00:51:57 +0000505 return nullptr;
Evan Chengc2f95b52009-03-01 02:03:43 +0000506 unsigned SrcReg;
507 bool IsSrcPhys;
Evan Cheng97871832009-04-14 00:32:25 +0000508 if (isCopyToReg(UseMI, TII, SrcReg, DstReg, IsSrcPhys, IsDstPhys)) {
509 IsCopy = true;
Evan Chengc2f95b52009-03-01 02:03:43 +0000510 return &UseMI;
Evan Cheng97871832009-04-14 00:32:25 +0000511 }
Evan Chengc2f95b52009-03-01 02:03:43 +0000512 IsDstPhys = false;
Evan Cheng97871832009-04-14 00:32:25 +0000513 if (isTwoAddrUse(UseMI, Reg, DstReg)) {
514 IsDstPhys = TargetRegisterInfo::isPhysicalRegister(DstReg);
Evan Chengc2f95b52009-03-01 02:03:43 +0000515 return &UseMI;
Evan Cheng97871832009-04-14 00:32:25 +0000516 }
Craig Topperc0196b12014-04-14 00:51:57 +0000517 return nullptr;
Evan Chengc2f95b52009-03-01 02:03:43 +0000518}
519
520/// getMappedReg - Return the physical register the specified virtual register
521/// might be mapped to.
522static unsigned
523getMappedReg(unsigned Reg, DenseMap<unsigned, unsigned> &RegMap) {
524 while (TargetRegisterInfo::isVirtualRegister(Reg)) {
525 DenseMap<unsigned, unsigned>::iterator SI = RegMap.find(Reg);
526 if (SI == RegMap.end())
527 return 0;
528 Reg = SI->second;
529 }
530 if (TargetRegisterInfo::isPhysicalRegister(Reg))
531 return Reg;
532 return 0;
533}
534
535/// regsAreCompatible - Return true if the two registers are equal or aliased.
536///
537static bool
538regsAreCompatible(unsigned RegA, unsigned RegB, const TargetRegisterInfo *TRI) {
539 if (RegA == RegB)
540 return true;
541 if (!RegA || !RegB)
542 return false;
543 return TRI->regsOverlap(RegA, RegB);
544}
545
546
Manman Rencc1dc6d2012-07-25 18:28:13 +0000547/// isProfitableToCommute - Return true if it's potentially profitable to commute
Evan Chengabda6652009-01-25 03:53:59 +0000548/// the two-address instruction that's being processed.
549bool
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +0000550TwoAddressInstructionPass::
551isProfitableToCommute(unsigned regA, unsigned regB, unsigned regC,
552 MachineInstr *MI, unsigned Dist) {
Evan Cheng822ddde2011-11-16 18:44:48 +0000553 if (OptLevel == CodeGenOpt::None)
554 return false;
555
Evan Chengabda6652009-01-25 03:53:59 +0000556 // Determine if it's profitable to commute this two address instruction. In
557 // general, we want no uses between this instruction and the definition of
558 // the two-address register.
559 // e.g.
560 // %reg1028<def> = EXTRACT_SUBREG %reg1027<kill>, 1
561 // %reg1029<def> = MOV8rr %reg1028
562 // %reg1029<def> = SHR8ri %reg1029, 7, %EFLAGS<imp-def,dead>
563 // insert => %reg1030<def> = MOV8rr %reg1028
564 // %reg1030<def> = ADD8rr %reg1028<kill>, %reg1029<kill>, %EFLAGS<imp-def,dead>
565 // In this case, it might not be possible to coalesce the second MOV8rr
566 // instruction if the first one is coalesced. So it would be profitable to
567 // commute it:
568 // %reg1028<def> = EXTRACT_SUBREG %reg1027<kill>, 1
569 // %reg1029<def> = MOV8rr %reg1028
570 // %reg1029<def> = SHR8ri %reg1029, 7, %EFLAGS<imp-def,dead>
571 // insert => %reg1030<def> = MOV8rr %reg1029
Andrew Trick808a7a62012-02-03 05:12:30 +0000572 // %reg1030<def> = ADD8rr %reg1029<kill>, %reg1028<kill>, %EFLAGS<imp-def,dead>
Evan Chengabda6652009-01-25 03:53:59 +0000573
Cameron Zwarich9e722ae2013-02-21 07:02:30 +0000574 if (!isPlainlyKilled(MI, regC, LIS))
Evan Chengabda6652009-01-25 03:53:59 +0000575 return false;
576
577 // Ok, we have something like:
578 // %reg1030<def> = ADD8rr %reg1028<kill>, %reg1029<kill>, %EFLAGS<imp-def,dead>
579 // let's see if it's worth commuting it.
580
Evan Chengc2f95b52009-03-01 02:03:43 +0000581 // Look for situations like this:
582 // %reg1024<def> = MOV r1
583 // %reg1025<def> = MOV r0
584 // %reg1026<def> = ADD %reg1024, %reg1025
585 // r0 = MOV %reg1026
586 // Commute the ADD to hopefully eliminate an otherwise unavoidable copy.
Evan Chengb64e7b72012-05-03 01:45:13 +0000587 unsigned ToRegA = getMappedReg(regA, DstRegMap);
588 if (ToRegA) {
589 unsigned FromRegB = getMappedReg(regB, SrcRegMap);
590 unsigned FromRegC = getMappedReg(regC, SrcRegMap);
Craig Topper12f0d9e2014-11-05 06:43:02 +0000591 bool CompB = FromRegB && regsAreCompatible(FromRegB, ToRegA, TRI);
592 bool CompC = FromRegC && regsAreCompatible(FromRegC, ToRegA, TRI);
593
594 // Compute if any of the following are true:
595 // -RegB is not tied to a register and RegC is compatible with RegA.
596 // -RegB is tied to the wrong physical register, but RegC is.
597 // -RegB is tied to the wrong physical register, and RegC isn't tied.
598 if ((!FromRegB && CompC) || (FromRegB && !CompB && (!FromRegC || CompC)))
599 return true;
600 // Don't compute if any of the following are true:
601 // -RegC is not tied to a register and RegB is compatible with RegA.
602 // -RegC is tied to the wrong physical register, but RegB is.
603 // -RegC is tied to the wrong physical register, and RegB isn't tied.
604 if ((!FromRegC && CompB) || (FromRegC && !CompC && (!FromRegB || CompB)))
605 return false;
Evan Chengb64e7b72012-05-03 01:45:13 +0000606 }
Evan Chengc2f95b52009-03-01 02:03:43 +0000607
Evan Chengabda6652009-01-25 03:53:59 +0000608 // If there is a use of regC between its last def (could be livein) and this
609 // instruction, then bail.
610 unsigned LastDefC = 0;
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +0000611 if (!noUseAfterLastDef(regC, Dist, LastDefC))
Evan Chengabda6652009-01-25 03:53:59 +0000612 return false;
613
614 // If there is a use of regB between its last def (could be livein) and this
615 // instruction, then go ahead and make this transformation.
616 unsigned LastDefB = 0;
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +0000617 if (!noUseAfterLastDef(regB, Dist, LastDefB))
Evan Chengabda6652009-01-25 03:53:59 +0000618 return true;
619
Eric Christopher28919132015-03-03 22:03:03 +0000620 // Look for situation like this:
621 // %reg101 = MOV %reg100
622 // %reg102 = ...
623 // %reg103 = ADD %reg102, %reg101
624 // ... = %reg103 ...
625 // %reg100 = MOV %reg103
626 // If there is a reversed copy chain from reg101 to reg103, commute the ADD
627 // to eliminate an otherwise unavoidable copy.
628 // FIXME:
629 // We can extend the logic further: If an pair of operands in an insn has
630 // been merged, the insn could be regarded as a virtual copy, and the virtual
631 // copy could also be used to construct a copy chain.
632 // To more generally minimize register copies, ideally the logic of two addr
633 // instruction pass should be integrated with register allocation pass where
634 // interference graph is available.
635 if (isRevCopyChain(regC, regA, 3))
636 return true;
637
638 if (isRevCopyChain(regB, regA, 3))
639 return false;
640
Evan Chengabda6652009-01-25 03:53:59 +0000641 // Since there are no intervening uses for both registers, then commute
642 // if the def of regC is closer. Its live interval is shorter.
643 return LastDefB && LastDefC && LastDefC > LastDefB;
644}
645
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +0000646/// commuteInstruction - Commute a two-address instruction and update the basic
Evan Cheng6d897062009-01-23 23:27:33 +0000647/// block, distance map, and live variables if needed. Return true if it is
648/// successful.
Andrew Kaylor16c4da02015-09-28 20:33:22 +0000649bool TwoAddressInstructionPass::commuteInstruction(MachineInstr *MI,
650 unsigned RegBIdx,
651 unsigned RegCIdx,
652 unsigned Dist) {
653 unsigned RegC = MI->getOperand(RegCIdx).getReg();
David Greeneac9f8192010-01-05 01:24:21 +0000654 DEBUG(dbgs() << "2addr: COMMUTING : " << *MI);
Andrew Kaylor16c4da02015-09-28 20:33:22 +0000655 MachineInstr *NewMI = TII->commuteInstruction(MI, false, RegBIdx, RegCIdx);
Evan Cheng6d897062009-01-23 23:27:33 +0000656
Craig Topperc0196b12014-04-14 00:51:57 +0000657 if (NewMI == nullptr) {
David Greeneac9f8192010-01-05 01:24:21 +0000658 DEBUG(dbgs() << "2addr: COMMUTING FAILED!\n");
Evan Cheng6d897062009-01-23 23:27:33 +0000659 return false;
660 }
661
David Greeneac9f8192010-01-05 01:24:21 +0000662 DEBUG(dbgs() << "2addr: COMMUTED TO: " << *NewMI);
Cameron Zwariche6907bc2013-02-23 23:13:28 +0000663 assert(NewMI == MI &&
664 "TargetInstrInfo::commuteInstruction() should not return a new "
665 "instruction unless it was requested.");
Evan Chengc2f95b52009-03-01 02:03:43 +0000666
667 // Update source register map.
668 unsigned FromRegC = getMappedReg(RegC, SrcRegMap);
669 if (FromRegC) {
670 unsigned RegA = MI->getOperand(0).getReg();
671 SrcRegMap[RegA] = FromRegC;
672 }
673
Evan Cheng6d897062009-01-23 23:27:33 +0000674 return true;
675}
676
Evan Cheng09f5be82009-03-30 21:34:07 +0000677/// isProfitableToConv3Addr - Return true if it is profitable to convert the
678/// given 2-address instruction to a 3-address one.
679bool
Evan Cheng15fed7a2011-03-02 01:08:17 +0000680TwoAddressInstructionPass::isProfitableToConv3Addr(unsigned RegA,unsigned RegB){
Evan Cheng09f5be82009-03-30 21:34:07 +0000681 // Look for situations like this:
682 // %reg1024<def> = MOV r1
683 // %reg1025<def> = MOV r0
684 // %reg1026<def> = ADD %reg1024, %reg1025
685 // r2 = MOV %reg1026
686 // Turn ADD into a 3-address instruction to avoid a copy.
Evan Cheng15fed7a2011-03-02 01:08:17 +0000687 unsigned FromRegB = getMappedReg(RegB, SrcRegMap);
688 if (!FromRegB)
689 return false;
Evan Cheng09f5be82009-03-30 21:34:07 +0000690 unsigned ToRegA = getMappedReg(RegA, DstRegMap);
Evan Cheng15fed7a2011-03-02 01:08:17 +0000691 return (ToRegA && !regsAreCompatible(FromRegB, ToRegA, TRI));
Evan Cheng09f5be82009-03-30 21:34:07 +0000692}
693
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +0000694/// convertInstTo3Addr - Convert the specified two-address instruction into a
Evan Cheng09f5be82009-03-30 21:34:07 +0000695/// three address one. Return true if this transformation was successful.
696bool
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +0000697TwoAddressInstructionPass::convertInstTo3Addr(MachineBasicBlock::iterator &mi,
Evan Cheng09f5be82009-03-30 21:34:07 +0000698 MachineBasicBlock::iterator &nmi,
Evan Chengd4fcc052011-02-10 02:20:55 +0000699 unsigned RegA, unsigned RegB,
700 unsigned Dist) {
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +0000701 // FIXME: Why does convertToThreeAddress() need an iterator reference?
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000702 MachineFunction::iterator MFI = MBB->getIterator();
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +0000703 MachineInstr *NewMI = TII->convertToThreeAddress(MFI, mi, LV);
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000704 assert(MBB->getIterator() == MFI &&
705 "convertToThreeAddress changed iterator reference");
Jakob Stoklund Olesen1dfe4fc2012-10-26 23:05:13 +0000706 if (!NewMI)
707 return false;
Evan Cheng09f5be82009-03-30 21:34:07 +0000708
Jakob Stoklund Olesen1dfe4fc2012-10-26 23:05:13 +0000709 DEBUG(dbgs() << "2addr: CONVERTING 2-ADDR: " << *mi);
710 DEBUG(dbgs() << "2addr: TO 3-ADDR: " << *NewMI);
711 bool Sunk = false;
Jakob Stoklund Olesen24bc5142012-08-03 22:58:34 +0000712
Cameron Zwarich2ad3ca32013-02-20 22:10:02 +0000713 if (LIS)
714 LIS->ReplaceMachineInstrInMaps(mi, NewMI);
Evan Cheng09f5be82009-03-30 21:34:07 +0000715
Jakob Stoklund Olesen1dfe4fc2012-10-26 23:05:13 +0000716 if (NewMI->findRegisterUseOperand(RegB, false, TRI))
717 // FIXME: Temporary workaround. If the new instruction doesn't
718 // uses RegB, convertToThreeAddress must have created more
719 // then one instruction.
720 Sunk = sink3AddrInstruction(NewMI, RegB, mi);
Evan Cheng09f5be82009-03-30 21:34:07 +0000721
Jakob Stoklund Olesen1dfe4fc2012-10-26 23:05:13 +0000722 MBB->erase(mi); // Nuke the old inst.
Evan Chengd4fcc052011-02-10 02:20:55 +0000723
Jakob Stoklund Olesen1dfe4fc2012-10-26 23:05:13 +0000724 if (!Sunk) {
725 DistanceMap.insert(std::make_pair(NewMI, Dist));
726 mi = NewMI;
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000727 nmi = std::next(mi);
Evan Cheng09f5be82009-03-30 21:34:07 +0000728 }
729
Jakob Stoklund Olesen1dfe4fc2012-10-26 23:05:13 +0000730 // Update source and destination register maps.
731 SrcRegMap.erase(RegA);
732 DstRegMap.erase(RegB);
733 return true;
Evan Cheng09f5be82009-03-30 21:34:07 +0000734}
735
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +0000736/// scanUses - Scan forward recursively for only uses, update maps if the use
Evan Cheng15fed7a2011-03-02 01:08:17 +0000737/// is a copy or a two-address instruction.
738void
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +0000739TwoAddressInstructionPass::scanUses(unsigned DstReg) {
Evan Cheng15fed7a2011-03-02 01:08:17 +0000740 SmallVector<unsigned, 4> VirtRegPairs;
741 bool IsDstPhys;
742 bool IsCopy = false;
743 unsigned NewReg = 0;
744 unsigned Reg = DstReg;
745 while (MachineInstr *UseMI = findOnlyInterestingUse(Reg, MBB, MRI, TII,IsCopy,
746 NewReg, IsDstPhys)) {
David Blaikie70573dc2014-11-19 07:49:26 +0000747 if (IsCopy && !Processed.insert(UseMI).second)
Evan Cheng15fed7a2011-03-02 01:08:17 +0000748 break;
749
750 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(UseMI);
751 if (DI != DistanceMap.end())
752 // Earlier in the same MBB.Reached via a back edge.
753 break;
754
755 if (IsDstPhys) {
756 VirtRegPairs.push_back(NewReg);
757 break;
758 }
759 bool isNew = SrcRegMap.insert(std::make_pair(NewReg, Reg)).second;
760 if (!isNew)
761 assert(SrcRegMap[NewReg] == Reg && "Can't map to two src registers!");
762 VirtRegPairs.push_back(NewReg);
763 Reg = NewReg;
764 }
765
766 if (!VirtRegPairs.empty()) {
767 unsigned ToReg = VirtRegPairs.back();
768 VirtRegPairs.pop_back();
769 while (!VirtRegPairs.empty()) {
770 unsigned FromReg = VirtRegPairs.back();
771 VirtRegPairs.pop_back();
772 bool isNew = DstRegMap.insert(std::make_pair(FromReg, ToReg)).second;
773 if (!isNew)
774 assert(DstRegMap[FromReg] == ToReg &&"Can't map to two dst registers!");
775 ToReg = FromReg;
776 }
777 bool isNew = DstRegMap.insert(std::make_pair(DstReg, ToReg)).second;
778 if (!isNew)
779 assert(DstRegMap[DstReg] == ToReg && "Can't map to two dst registers!");
780 }
781}
782
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +0000783/// processCopy - If the specified instruction is not yet processed, process it
Evan Chengc2f95b52009-03-01 02:03:43 +0000784/// if it's a copy. For a copy instruction, we find the physical registers the
785/// source and destination registers might be mapped to. These are kept in
786/// point-to maps used to determine future optimizations. e.g.
787/// v1024 = mov r0
788/// v1025 = mov r1
789/// v1026 = add v1024, v1025
790/// r1 = mov r1026
791/// If 'add' is a two-address instruction, v1024, v1026 are both potentially
792/// coalesced to r0 (from the input side). v1025 is mapped to r1. v1026 is
793/// potentially joined with r1 on the output side. It's worthwhile to commute
794/// 'add' to eliminate a copy.
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +0000795void TwoAddressInstructionPass::processCopy(MachineInstr *MI) {
Evan Chengc2f95b52009-03-01 02:03:43 +0000796 if (Processed.count(MI))
797 return;
798
799 bool IsSrcPhys, IsDstPhys;
800 unsigned SrcReg, DstReg;
801 if (!isCopyToReg(*MI, TII, SrcReg, DstReg, IsSrcPhys, IsDstPhys))
802 return;
803
804 if (IsDstPhys && !IsSrcPhys)
805 DstRegMap.insert(std::make_pair(SrcReg, DstReg));
806 else if (!IsDstPhys && IsSrcPhys) {
Evan Chengf0843802009-04-13 20:04:24 +0000807 bool isNew = SrcRegMap.insert(std::make_pair(DstReg, SrcReg)).second;
808 if (!isNew)
809 assert(SrcRegMap[DstReg] == SrcReg &&
810 "Can't map to two src physical registers!");
Evan Chengc2f95b52009-03-01 02:03:43 +0000811
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +0000812 scanUses(DstReg);
Evan Chengc2f95b52009-03-01 02:03:43 +0000813 }
814
815 Processed.insert(MI);
Evan Cheng15fed7a2011-03-02 01:08:17 +0000816 return;
Evan Chengc2f95b52009-03-01 02:03:43 +0000817}
818
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +0000819/// rescheduleMIBelowKill - If there is one more local instruction that reads
Evan Cheng30f44ad2011-11-14 19:48:55 +0000820/// 'Reg' and it kills 'Reg, consider moving the instruction below the kill
821/// instruction in order to eliminate the need for the copy.
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +0000822bool TwoAddressInstructionPass::
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +0000823rescheduleMIBelowKill(MachineBasicBlock::iterator &mi,
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +0000824 MachineBasicBlock::iterator &nmi,
825 unsigned Reg) {
Cameron Zwarich7d13fb42013-02-23 04:49:13 +0000826 // Bail immediately if we don't have LV or LIS available. We use them to find
827 // kills efficiently.
828 if (!LV && !LIS)
Chandler Carruthdb5536f2012-07-15 03:29:46 +0000829 return false;
830
Evan Cheng30f44ad2011-11-14 19:48:55 +0000831 MachineInstr *MI = &*mi;
Andrew Trick808a7a62012-02-03 05:12:30 +0000832 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(MI);
Evan Cheng30f44ad2011-11-14 19:48:55 +0000833 if (DI == DistanceMap.end())
834 // Must be created from unfolded load. Don't waste time trying this.
835 return false;
836
Craig Topperc0196b12014-04-14 00:51:57 +0000837 MachineInstr *KillMI = nullptr;
Cameron Zwarich7d13fb42013-02-23 04:49:13 +0000838 if (LIS) {
839 LiveInterval &LI = LIS->getInterval(Reg);
840 assert(LI.end() != LI.begin() &&
841 "Reg should not have empty live interval.");
842
843 SlotIndex MBBEndIdx = LIS->getMBBEndIdx(MBB).getPrevSlot();
844 LiveInterval::const_iterator I = LI.find(MBBEndIdx);
845 if (I != LI.end() && I->start < MBBEndIdx)
846 return false;
847
848 --I;
849 KillMI = LIS->getInstructionFromIndex(I->end);
850 } else {
851 KillMI = LV->getVarInfo(Reg).findKill(MBB);
852 }
Chandler Carruthdb5536f2012-07-15 03:29:46 +0000853 if (!KillMI || MI == KillMI || KillMI->isCopy() || KillMI->isCopyLike())
Evan Cheng30f44ad2011-11-14 19:48:55 +0000854 // Don't mess with copies, they may be coalesced later.
855 return false;
856
Evan Cheng7f8e5632011-12-07 07:15:52 +0000857 if (KillMI->hasUnmodeledSideEffects() || KillMI->isCall() ||
858 KillMI->isBranch() || KillMI->isTerminator())
Evan Cheng30f44ad2011-11-14 19:48:55 +0000859 // Don't move pass calls, etc.
860 return false;
861
862 unsigned DstReg;
863 if (isTwoAddrUse(*KillMI, Reg, DstReg))
864 return false;
865
Evan Cheng7098c4e2011-11-15 06:26:51 +0000866 bool SeenStore = true;
Matthias Braun07066cc2015-05-19 21:22:20 +0000867 if (!MI->isSafeToMove(AA, SeenStore))
Evan Cheng30f44ad2011-11-14 19:48:55 +0000868 return false;
869
870 if (TII->getInstrLatency(InstrItins, MI) > 1)
871 // FIXME: Needs more sophisticated heuristics.
872 return false;
873
874 SmallSet<unsigned, 2> Uses;
Evan Chengb8c55a52011-11-16 03:47:42 +0000875 SmallSet<unsigned, 2> Kills;
Evan Cheng30f44ad2011-11-14 19:48:55 +0000876 SmallSet<unsigned, 2> Defs;
877 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
878 const MachineOperand &MO = MI->getOperand(i);
879 if (!MO.isReg())
880 continue;
881 unsigned MOReg = MO.getReg();
882 if (!MOReg)
883 continue;
884 if (MO.isDef())
885 Defs.insert(MOReg);
Evan Chengb8c55a52011-11-16 03:47:42 +0000886 else {
Evan Cheng30f44ad2011-11-14 19:48:55 +0000887 Uses.insert(MOReg);
Cameron Zwarich7d13fb42013-02-23 04:49:13 +0000888 if (MOReg != Reg && (MO.isKill() ||
889 (LIS && isPlainlyKilled(MI, MOReg, LIS))))
Evan Chengb8c55a52011-11-16 03:47:42 +0000890 Kills.insert(MOReg);
891 }
Evan Cheng30f44ad2011-11-14 19:48:55 +0000892 }
893
894 // Move the copies connected to MI down as well.
Cameron Zwarich7d13fb42013-02-23 04:49:13 +0000895 MachineBasicBlock::iterator Begin = MI;
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000896 MachineBasicBlock::iterator AfterMI = std::next(Begin);
Cameron Zwarich7d13fb42013-02-23 04:49:13 +0000897
898 MachineBasicBlock::iterator End = AfterMI;
899 while (End->isCopy() && Defs.count(End->getOperand(1).getReg())) {
900 Defs.insert(End->getOperand(0).getReg());
901 ++End;
Evan Cheng30f44ad2011-11-14 19:48:55 +0000902 }
903
904 // Check if the reschedule will not break depedencies.
905 unsigned NumVisited = 0;
906 MachineBasicBlock::iterator KillPos = KillMI;
907 ++KillPos;
Cameron Zwarich7d13fb42013-02-23 04:49:13 +0000908 for (MachineBasicBlock::iterator I = End; I != KillPos; ++I) {
Evan Cheng30f44ad2011-11-14 19:48:55 +0000909 MachineInstr *OtherMI = I;
910 // DBG_VALUE cannot be counted against the limit.
911 if (OtherMI->isDebugValue())
912 continue;
913 if (NumVisited > 10) // FIXME: Arbitrary limit to reduce compile time cost.
914 return false;
915 ++NumVisited;
Evan Cheng7f8e5632011-12-07 07:15:52 +0000916 if (OtherMI->hasUnmodeledSideEffects() || OtherMI->isCall() ||
917 OtherMI->isBranch() || OtherMI->isTerminator())
Evan Cheng30f44ad2011-11-14 19:48:55 +0000918 // Don't move pass calls, etc.
919 return false;
920 for (unsigned i = 0, e = OtherMI->getNumOperands(); i != e; ++i) {
921 const MachineOperand &MO = OtherMI->getOperand(i);
922 if (!MO.isReg())
923 continue;
924 unsigned MOReg = MO.getReg();
925 if (!MOReg)
926 continue;
927 if (MO.isDef()) {
928 if (Uses.count(MOReg))
929 // Physical register use would be clobbered.
930 return false;
931 if (!MO.isDead() && Defs.count(MOReg))
932 // May clobber a physical register def.
933 // FIXME: This may be too conservative. It's ok if the instruction
934 // is sunken completely below the use.
935 return false;
936 } else {
937 if (Defs.count(MOReg))
938 return false;
Cameron Zwarich7d13fb42013-02-23 04:49:13 +0000939 bool isKill = MO.isKill() ||
940 (LIS && isPlainlyKilled(OtherMI, MOReg, LIS));
Evan Chengb8c55a52011-11-16 03:47:42 +0000941 if (MOReg != Reg &&
Cameron Zwarich7d13fb42013-02-23 04:49:13 +0000942 ((isKill && Uses.count(MOReg)) || Kills.count(MOReg)))
Evan Cheng30f44ad2011-11-14 19:48:55 +0000943 // Don't want to extend other live ranges and update kills.
944 return false;
Cameron Zwarich7d13fb42013-02-23 04:49:13 +0000945 if (MOReg == Reg && !isKill)
Chandler Carruthdb5536f2012-07-15 03:29:46 +0000946 // We can't schedule across a use of the register in question.
947 return false;
948 // Ensure that if this is register in question, its the kill we expect.
949 assert((MOReg != Reg || OtherMI == KillMI) &&
950 "Found multiple kills of a register in a basic block");
Evan Cheng30f44ad2011-11-14 19:48:55 +0000951 }
952 }
953 }
954
955 // Move debug info as well.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000956 while (Begin != MBB->begin() && std::prev(Begin)->isDebugValue())
Cameron Zwarich7d13fb42013-02-23 04:49:13 +0000957 --Begin;
958
959 nmi = End;
960 MachineBasicBlock::iterator InsertPos = KillPos;
961 if (LIS) {
962 // We have to move the copies first so that the MBB is still well-formed
963 // when calling handleMove().
964 for (MachineBasicBlock::iterator MBBI = AfterMI; MBBI != End;) {
965 MachineInstr *CopyMI = MBBI;
966 ++MBBI;
967 MBB->splice(InsertPos, MBB, CopyMI);
968 LIS->handleMove(CopyMI);
969 InsertPos = CopyMI;
970 }
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000971 End = std::next(MachineBasicBlock::iterator(MI));
Cameron Zwarich7d13fb42013-02-23 04:49:13 +0000972 }
Evan Cheng30f44ad2011-11-14 19:48:55 +0000973
974 // Copies following MI may have been moved as well.
Cameron Zwarich7d13fb42013-02-23 04:49:13 +0000975 MBB->splice(InsertPos, MBB, Begin, End);
Evan Cheng30f44ad2011-11-14 19:48:55 +0000976 DistanceMap.erase(DI);
977
Chandler Carruthdb5536f2012-07-15 03:29:46 +0000978 // Update live variables
Cameron Zwarich7d13fb42013-02-23 04:49:13 +0000979 if (LIS) {
Jakob Stoklund Olesen24bc5142012-08-03 22:58:34 +0000980 LIS->handleMove(MI);
Cameron Zwarich7d13fb42013-02-23 04:49:13 +0000981 } else {
982 LV->removeVirtualRegisterKilled(Reg, KillMI);
983 LV->addVirtualRegisterKilled(Reg, MI);
984 }
Evan Cheng30f44ad2011-11-14 19:48:55 +0000985
Jakob Stoklund Olesen0ef03112012-07-17 17:57:23 +0000986 DEBUG(dbgs() << "\trescheduled below kill: " << *KillMI);
Evan Cheng30f44ad2011-11-14 19:48:55 +0000987 return true;
988}
989
990/// isDefTooClose - Return true if the re-scheduling will put the given
991/// instruction too close to the defs of its register dependencies.
992bool TwoAddressInstructionPass::isDefTooClose(unsigned Reg, unsigned Dist,
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +0000993 MachineInstr *MI) {
Owen Andersonb36376e2014-03-17 19:36:09 +0000994 for (MachineInstr &DefMI : MRI->def_instructions(Reg)) {
995 if (DefMI.getParent() != MBB || DefMI.isCopy() || DefMI.isCopyLike())
Evan Cheng30f44ad2011-11-14 19:48:55 +0000996 continue;
Owen Andersonb36376e2014-03-17 19:36:09 +0000997 if (&DefMI == MI)
Evan Cheng30f44ad2011-11-14 19:48:55 +0000998 return true; // MI is defining something KillMI uses
Owen Andersonb36376e2014-03-17 19:36:09 +0000999 DenseMap<MachineInstr*, unsigned>::iterator DDI = DistanceMap.find(&DefMI);
Evan Cheng30f44ad2011-11-14 19:48:55 +00001000 if (DDI == DistanceMap.end())
1001 return true; // Below MI
1002 unsigned DefDist = DDI->second;
1003 assert(Dist > DefDist && "Visited def already?");
Owen Andersonb36376e2014-03-17 19:36:09 +00001004 if (TII->getInstrLatency(InstrItins, &DefMI) > (Dist - DefDist))
Evan Cheng30f44ad2011-11-14 19:48:55 +00001005 return true;
1006 }
1007 return false;
1008}
1009
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +00001010/// rescheduleKillAboveMI - If there is one more local instruction that reads
Evan Cheng30f44ad2011-11-14 19:48:55 +00001011/// 'Reg' and it kills 'Reg, consider moving the kill instruction above the
1012/// current two-address instruction in order to eliminate the need for the
1013/// copy.
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +00001014bool TwoAddressInstructionPass::
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +00001015rescheduleKillAboveMI(MachineBasicBlock::iterator &mi,
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +00001016 MachineBasicBlock::iterator &nmi,
1017 unsigned Reg) {
Cameron Zwarich7d13fb42013-02-23 04:49:13 +00001018 // Bail immediately if we don't have LV or LIS available. We use them to find
1019 // kills efficiently.
1020 if (!LV && !LIS)
Chandler Carruthdb5536f2012-07-15 03:29:46 +00001021 return false;
1022
Evan Cheng30f44ad2011-11-14 19:48:55 +00001023 MachineInstr *MI = &*mi;
1024 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(MI);
1025 if (DI == DistanceMap.end())
1026 // Must be created from unfolded load. Don't waste time trying this.
1027 return false;
1028
Craig Topperc0196b12014-04-14 00:51:57 +00001029 MachineInstr *KillMI = nullptr;
Cameron Zwarich7d13fb42013-02-23 04:49:13 +00001030 if (LIS) {
1031 LiveInterval &LI = LIS->getInterval(Reg);
1032 assert(LI.end() != LI.begin() &&
1033 "Reg should not have empty live interval.");
1034
1035 SlotIndex MBBEndIdx = LIS->getMBBEndIdx(MBB).getPrevSlot();
1036 LiveInterval::const_iterator I = LI.find(MBBEndIdx);
1037 if (I != LI.end() && I->start < MBBEndIdx)
1038 return false;
1039
1040 --I;
1041 KillMI = LIS->getInstructionFromIndex(I->end);
1042 } else {
1043 KillMI = LV->getVarInfo(Reg).findKill(MBB);
1044 }
Chandler Carruthdb5536f2012-07-15 03:29:46 +00001045 if (!KillMI || MI == KillMI || KillMI->isCopy() || KillMI->isCopyLike())
Evan Cheng30f44ad2011-11-14 19:48:55 +00001046 // Don't mess with copies, they may be coalesced later.
1047 return false;
1048
1049 unsigned DstReg;
1050 if (isTwoAddrUse(*KillMI, Reg, DstReg))
1051 return false;
1052
Evan Cheng7098c4e2011-11-15 06:26:51 +00001053 bool SeenStore = true;
Matthias Braun07066cc2015-05-19 21:22:20 +00001054 if (!KillMI->isSafeToMove(AA, SeenStore))
Evan Cheng30f44ad2011-11-14 19:48:55 +00001055 return false;
1056
1057 SmallSet<unsigned, 2> Uses;
1058 SmallSet<unsigned, 2> Kills;
1059 SmallSet<unsigned, 2> Defs;
1060 SmallSet<unsigned, 2> LiveDefs;
1061 for (unsigned i = 0, e = KillMI->getNumOperands(); i != e; ++i) {
1062 const MachineOperand &MO = KillMI->getOperand(i);
1063 if (!MO.isReg())
1064 continue;
1065 unsigned MOReg = MO.getReg();
1066 if (MO.isUse()) {
1067 if (!MOReg)
1068 continue;
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +00001069 if (isDefTooClose(MOReg, DI->second, MI))
Evan Cheng30f44ad2011-11-14 19:48:55 +00001070 return false;
Cameron Zwarich7d13fb42013-02-23 04:49:13 +00001071 bool isKill = MO.isKill() || (LIS && isPlainlyKilled(KillMI, MOReg, LIS));
1072 if (MOReg == Reg && !isKill)
Chandler Carruthdb5536f2012-07-15 03:29:46 +00001073 return false;
Evan Cheng30f44ad2011-11-14 19:48:55 +00001074 Uses.insert(MOReg);
Cameron Zwarich7d13fb42013-02-23 04:49:13 +00001075 if (isKill && MOReg != Reg)
Evan Cheng30f44ad2011-11-14 19:48:55 +00001076 Kills.insert(MOReg);
1077 } else if (TargetRegisterInfo::isPhysicalRegister(MOReg)) {
1078 Defs.insert(MOReg);
1079 if (!MO.isDead())
1080 LiveDefs.insert(MOReg);
1081 }
1082 }
1083
1084 // Check if the reschedule will not break depedencies.
1085 unsigned NumVisited = 0;
1086 MachineBasicBlock::iterator KillPos = KillMI;
1087 for (MachineBasicBlock::iterator I = mi; I != KillPos; ++I) {
1088 MachineInstr *OtherMI = I;
1089 // DBG_VALUE cannot be counted against the limit.
1090 if (OtherMI->isDebugValue())
1091 continue;
1092 if (NumVisited > 10) // FIXME: Arbitrary limit to reduce compile time cost.
1093 return false;
1094 ++NumVisited;
Evan Cheng7f8e5632011-12-07 07:15:52 +00001095 if (OtherMI->hasUnmodeledSideEffects() || OtherMI->isCall() ||
1096 OtherMI->isBranch() || OtherMI->isTerminator())
Evan Cheng30f44ad2011-11-14 19:48:55 +00001097 // Don't move pass calls, etc.
1098 return false;
Evan Cheng9ddd69a2011-11-16 03:05:12 +00001099 SmallVector<unsigned, 2> OtherDefs;
Evan Cheng30f44ad2011-11-14 19:48:55 +00001100 for (unsigned i = 0, e = OtherMI->getNumOperands(); i != e; ++i) {
1101 const MachineOperand &MO = OtherMI->getOperand(i);
1102 if (!MO.isReg())
1103 continue;
1104 unsigned MOReg = MO.getReg();
1105 if (!MOReg)
1106 continue;
1107 if (MO.isUse()) {
1108 if (Defs.count(MOReg))
1109 // Moving KillMI can clobber the physical register if the def has
1110 // not been seen.
1111 return false;
1112 if (Kills.count(MOReg))
1113 // Don't want to extend other live ranges and update kills.
1114 return false;
Cameron Zwarich7d13fb42013-02-23 04:49:13 +00001115 if (OtherMI != MI && MOReg == Reg &&
1116 !(MO.isKill() || (LIS && isPlainlyKilled(OtherMI, MOReg, LIS))))
Chandler Carruthdb5536f2012-07-15 03:29:46 +00001117 // We can't schedule across a use of the register in question.
1118 return false;
Evan Cheng30f44ad2011-11-14 19:48:55 +00001119 } else {
Evan Cheng9ddd69a2011-11-16 03:05:12 +00001120 OtherDefs.push_back(MOReg);
Evan Cheng30f44ad2011-11-14 19:48:55 +00001121 }
1122 }
Evan Cheng9ddd69a2011-11-16 03:05:12 +00001123
1124 for (unsigned i = 0, e = OtherDefs.size(); i != e; ++i) {
1125 unsigned MOReg = OtherDefs[i];
1126 if (Uses.count(MOReg))
1127 return false;
1128 if (TargetRegisterInfo::isPhysicalRegister(MOReg) &&
1129 LiveDefs.count(MOReg))
1130 return false;
1131 // Physical register def is seen.
1132 Defs.erase(MOReg);
1133 }
Evan Cheng30f44ad2011-11-14 19:48:55 +00001134 }
1135
1136 // Move the old kill above MI, don't forget to move debug info as well.
1137 MachineBasicBlock::iterator InsertPos = mi;
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001138 while (InsertPos != MBB->begin() && std::prev(InsertPos)->isDebugValue())
Evan Chengf2fc5082011-11-14 21:11:15 +00001139 --InsertPos;
Evan Cheng30f44ad2011-11-14 19:48:55 +00001140 MachineBasicBlock::iterator From = KillMI;
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001141 MachineBasicBlock::iterator To = std::next(From);
1142 while (std::prev(From)->isDebugValue())
Evan Cheng30f44ad2011-11-14 19:48:55 +00001143 --From;
1144 MBB->splice(InsertPos, MBB, From, To);
1145
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001146 nmi = std::prev(InsertPos); // Backtrack so we process the moved instr.
Evan Cheng30f44ad2011-11-14 19:48:55 +00001147 DistanceMap.erase(DI);
1148
Chandler Carruthdb5536f2012-07-15 03:29:46 +00001149 // Update live variables
Cameron Zwarich7d13fb42013-02-23 04:49:13 +00001150 if (LIS) {
Jakob Stoklund Olesen24bc5142012-08-03 22:58:34 +00001151 LIS->handleMove(KillMI);
Cameron Zwarich7d13fb42013-02-23 04:49:13 +00001152 } else {
1153 LV->removeVirtualRegisterKilled(Reg, KillMI);
1154 LV->addVirtualRegisterKilled(Reg, MI);
1155 }
Chandler Carruthdb5536f2012-07-15 03:29:46 +00001156
Jakob Stoklund Olesen0ef03112012-07-17 17:57:23 +00001157 DEBUG(dbgs() << "\trescheduled kill: " << *KillMI);
Evan Cheng30f44ad2011-11-14 19:48:55 +00001158 return true;
1159}
1160
Andrew Kaylor16c4da02015-09-28 20:33:22 +00001161/// Tries to commute the operand 'BaseOpIdx' and some other operand in the
1162/// given machine instruction to improve opportunities for coalescing and
1163/// elimination of a register to register copy.
1164///
1165/// 'DstOpIdx' specifies the index of MI def operand.
1166/// 'BaseOpKilled' specifies if the register associated with 'BaseOpIdx'
1167/// operand is killed by the given instruction.
1168/// The 'Dist' arguments provides the distance of MI from the start of the
1169/// current basic block and it is used to determine if it is profitable
1170/// to commute operands in the instruction.
1171///
1172/// Returns true if the transformation happened. Otherwise, returns false.
1173bool TwoAddressInstructionPass::tryInstructionCommute(MachineInstr *MI,
1174 unsigned DstOpIdx,
1175 unsigned BaseOpIdx,
1176 bool BaseOpKilled,
1177 unsigned Dist) {
1178 unsigned DstOpReg = MI->getOperand(DstOpIdx).getReg();
1179 unsigned BaseOpReg = MI->getOperand(BaseOpIdx).getReg();
1180 unsigned OpsNum = MI->getDesc().getNumOperands();
1181 unsigned OtherOpIdx = MI->getDesc().getNumDefs();
1182 for (; OtherOpIdx < OpsNum; OtherOpIdx++) {
1183 // The call of findCommutedOpIndices below only checks if BaseOpIdx
1184 // and OtherOpIdx are commutable, it does not really searches for
1185 // other commutable operands and does not change the values of passed
1186 // variables.
1187 if (OtherOpIdx == BaseOpIdx ||
1188 !TII->findCommutedOpIndices(MI, BaseOpIdx, OtherOpIdx))
1189 continue;
1190
1191 unsigned OtherOpReg = MI->getOperand(OtherOpIdx).getReg();
1192 bool AggressiveCommute = false;
1193
1194 // If OtherOp dies but BaseOp does not, swap the OtherOp and BaseOp
1195 // operands. This makes the live ranges of DstOp and OtherOp joinable.
1196 bool DoCommute =
1197 !BaseOpKilled && isKilled(*MI, OtherOpReg, MRI, TII, LIS, false);
1198
1199 if (!DoCommute &&
1200 isProfitableToCommute(DstOpReg, BaseOpReg, OtherOpReg, MI, Dist)) {
1201 DoCommute = true;
1202 AggressiveCommute = true;
1203 }
1204
1205 // If it's profitable to commute, try to do so.
1206 if (DoCommute && commuteInstruction(MI, BaseOpIdx, OtherOpIdx, Dist)) {
1207 ++NumCommuted;
1208 if (AggressiveCommute)
1209 ++NumAggrCommuted;
1210 return true;
1211 }
1212 }
1213 return false;
1214}
1215
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +00001216/// tryInstructionTransform - For the case where an instruction has a single
Bob Wilson5c7d9ca2009-09-03 20:58:42 +00001217/// pair of tied register operands, attempt some transformations that may
1218/// either eliminate the tied operands or improve the opportunities for
Lang Hames3ad11ff2012-04-09 20:17:30 +00001219/// coalescing away the register copy. Returns true if no copy needs to be
1220/// inserted to untie mi's operands (either because they were untied, or
Cameron Zwarichf05c0cb2013-02-24 00:27:26 +00001221/// because mi was rescheduled, and will be visited again later). If the
1222/// shouldOnlyCommute flag is true, only instruction commutation is attempted.
Bob Wilson5c7d9ca2009-09-03 20:58:42 +00001223bool TwoAddressInstructionPass::
Jakob Stoklund Olesen112a44d2012-10-26 21:12:49 +00001224tryInstructionTransform(MachineBasicBlock::iterator &mi,
Bob Wilson5c7d9ca2009-09-03 20:58:42 +00001225 MachineBasicBlock::iterator &nmi,
Cameron Zwarichf05c0cb2013-02-24 00:27:26 +00001226 unsigned SrcIdx, unsigned DstIdx,
1227 unsigned Dist, bool shouldOnlyCommute) {
Evan Cheng822ddde2011-11-16 18:44:48 +00001228 if (OptLevel == CodeGenOpt::None)
1229 return false;
1230
Evan Cheng30f44ad2011-11-14 19:48:55 +00001231 MachineInstr &MI = *mi;
Evan Cheng30f44ad2011-11-14 19:48:55 +00001232 unsigned regA = MI.getOperand(DstIdx).getReg();
1233 unsigned regB = MI.getOperand(SrcIdx).getReg();
Bob Wilson5c7d9ca2009-09-03 20:58:42 +00001234
1235 assert(TargetRegisterInfo::isVirtualRegister(regB) &&
1236 "cannot make instruction into two-address form");
Cameron Zwarich384026b2013-02-21 22:58:42 +00001237 bool regBKilled = isKilled(MI, regB, MRI, TII, LIS, true);
Bob Wilson5c7d9ca2009-09-03 20:58:42 +00001238
Evan Chengb64e7b72012-05-03 01:45:13 +00001239 if (TargetRegisterInfo::isVirtualRegister(regA))
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +00001240 scanUses(regA);
Evan Chengb64e7b72012-05-03 01:45:13 +00001241
Andrew Kaylor16c4da02015-09-28 20:33:22 +00001242 bool Commuted = tryInstructionCommute(&MI, DstIdx, SrcIdx, regBKilled, Dist);
Bob Wilson5c7d9ca2009-09-03 20:58:42 +00001243
Quentin Colombet9729fb32015-07-01 23:12:13 +00001244 // If the instruction is convertible to 3 Addr, instead
1245 // of returning try 3 Addr transformation aggresively and
1246 // use this variable to check later. Because it might be better.
1247 // For example, we can just use `leal (%rsi,%rdi), %eax` and `ret`
1248 // instead of the following code.
NAKAMURA Takumi84965032015-09-22 11:14:12 +00001249 // addl %esi, %edi
1250 // movl %edi, %eax
Quentin Colombet9729fb32015-07-01 23:12:13 +00001251 // ret
Andrew Kaylor16c4da02015-09-28 20:33:22 +00001252 if (Commuted && !MI.isConvertibleTo3Addr())
1253 return false;
Bob Wilson5c7d9ca2009-09-03 20:58:42 +00001254
Cameron Zwarichf05c0cb2013-02-24 00:27:26 +00001255 if (shouldOnlyCommute)
1256 return false;
1257
Evan Cheng30f44ad2011-11-14 19:48:55 +00001258 // If there is one more use of regB later in the same MBB, consider
1259 // re-schedule this MI below it.
Quentin Colombet40dd5102015-07-06 20:12:54 +00001260 if (!Commuted && EnableRescheduling && rescheduleMIBelowKill(mi, nmi, regB)) {
Evan Cheng30f44ad2011-11-14 19:48:55 +00001261 ++NumReSchedDowns;
Lang Hames3ad11ff2012-04-09 20:17:30 +00001262 return true;
Evan Cheng30f44ad2011-11-14 19:48:55 +00001263 }
1264
Craig Topper2c4068f2015-10-06 05:39:59 +00001265 // If we commuted, regB may have changed so we should re-sample it to avoid
1266 // confusing the three address conversion below.
1267 if (Commuted) {
1268 regB = MI.getOperand(SrcIdx).getReg();
1269 regBKilled = isKilled(MI, regB, MRI, TII, LIS, true);
1270 }
1271
Evan Cheng7f8e5632011-12-07 07:15:52 +00001272 if (MI.isConvertibleTo3Addr()) {
Bob Wilson5c7d9ca2009-09-03 20:58:42 +00001273 // This instruction is potentially convertible to a true
1274 // three-address instruction. Check if it is profitable.
Evan Cheng15fed7a2011-03-02 01:08:17 +00001275 if (!regBKilled || isProfitableToConv3Addr(regA, regB)) {
Bob Wilson5c7d9ca2009-09-03 20:58:42 +00001276 // Try to convert it.
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +00001277 if (convertInstTo3Addr(mi, nmi, regA, regB, Dist)) {
Bob Wilson5c7d9ca2009-09-03 20:58:42 +00001278 ++NumConvertedTo3Addr;
1279 return true; // Done with this instruction.
1280 }
1281 }
1282 }
Dan Gohman3c1b3c62010-06-21 22:17:20 +00001283
Quentin Colombet9729fb32015-07-01 23:12:13 +00001284 // Return if it is commuted but 3 addr conversion is failed.
Quentin Colombet40dd5102015-07-06 20:12:54 +00001285 if (Commuted)
Quentin Colombet9729fb32015-07-01 23:12:13 +00001286 return false;
1287
Evan Cheng30f44ad2011-11-14 19:48:55 +00001288 // If there is one more use of regB later in the same MBB, consider
1289 // re-schedule it before this MI if it's legal.
Andrew Trick608a6982013-04-24 15:54:39 +00001290 if (EnableRescheduling && rescheduleKillAboveMI(mi, nmi, regB)) {
Evan Cheng30f44ad2011-11-14 19:48:55 +00001291 ++NumReSchedUps;
Lang Hames3ad11ff2012-04-09 20:17:30 +00001292 return true;
Evan Cheng30f44ad2011-11-14 19:48:55 +00001293 }
1294
Dan Gohman3c1b3c62010-06-21 22:17:20 +00001295 // If this is an instruction with a load folded into it, try unfolding
1296 // the load, e.g. avoid this:
1297 // movq %rdx, %rcx
1298 // addq (%rax), %rcx
1299 // in favor of this:
1300 // movq (%rax), %rcx
1301 // addq %rdx, %rcx
1302 // because it's preferable to schedule a load than a register copy.
Evan Cheng7f8e5632011-12-07 07:15:52 +00001303 if (MI.mayLoad() && !regBKilled) {
Dan Gohman3c1b3c62010-06-21 22:17:20 +00001304 // Determine if a load can be unfolded.
1305 unsigned LoadRegIndex;
1306 unsigned NewOpc =
Evan Cheng30f44ad2011-11-14 19:48:55 +00001307 TII->getOpcodeAfterMemoryUnfold(MI.getOpcode(),
Dan Gohman3c1b3c62010-06-21 22:17:20 +00001308 /*UnfoldLoad=*/true,
1309 /*UnfoldStore=*/false,
1310 &LoadRegIndex);
1311 if (NewOpc != 0) {
Evan Cheng6cc775f2011-06-28 19:10:37 +00001312 const MCInstrDesc &UnfoldMCID = TII->get(NewOpc);
1313 if (UnfoldMCID.getNumDefs() == 1) {
Dan Gohman3c1b3c62010-06-21 22:17:20 +00001314 // Unfold the load.
Evan Cheng30f44ad2011-11-14 19:48:55 +00001315 DEBUG(dbgs() << "2addr: UNFOLDING: " << MI);
Dan Gohman3c1b3c62010-06-21 22:17:20 +00001316 const TargetRegisterClass *RC =
Andrew Trick32aea352012-05-03 01:14:37 +00001317 TRI->getAllocatableClass(
Jakob Stoklund Olesen1162a152012-08-03 23:25:45 +00001318 TII->getRegClass(UnfoldMCID, LoadRegIndex, TRI, *MF));
Dan Gohman3c1b3c62010-06-21 22:17:20 +00001319 unsigned Reg = MRI->createVirtualRegister(RC);
1320 SmallVector<MachineInstr *, 2> NewMIs;
Jakob Stoklund Olesen1162a152012-08-03 23:25:45 +00001321 if (!TII->unfoldMemoryOperand(*MF, &MI, Reg,
Evan Cheng0ce84482010-07-02 20:36:18 +00001322 /*UnfoldLoad=*/true,/*UnfoldStore=*/false,
1323 NewMIs)) {
1324 DEBUG(dbgs() << "2addr: ABANDONING UNFOLD\n");
1325 return false;
1326 }
Dan Gohman3c1b3c62010-06-21 22:17:20 +00001327 assert(NewMIs.size() == 2 &&
1328 "Unfolded a load into multiple instructions!");
1329 // The load was previously folded, so this is the only use.
1330 NewMIs[1]->addRegisterKilled(Reg, TRI);
1331
1332 // Tentatively insert the instructions into the block so that they
1333 // look "normal" to the transformation logic.
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +00001334 MBB->insert(mi, NewMIs[0]);
1335 MBB->insert(mi, NewMIs[1]);
Dan Gohman3c1b3c62010-06-21 22:17:20 +00001336
1337 DEBUG(dbgs() << "2addr: NEW LOAD: " << *NewMIs[0]
1338 << "2addr: NEW INST: " << *NewMIs[1]);
1339
1340 // Transform the instruction, now that it no longer has a load.
1341 unsigned NewDstIdx = NewMIs[1]->findRegisterDefOperandIdx(regA);
1342 unsigned NewSrcIdx = NewMIs[1]->findRegisterUseOperandIdx(regB);
1343 MachineBasicBlock::iterator NewMI = NewMIs[1];
Cameron Zwarich6868f382013-02-24 00:27:29 +00001344 bool TransformResult =
Cameron Zwarichf05c0cb2013-02-24 00:27:26 +00001345 tryInstructionTransform(NewMI, mi, NewSrcIdx, NewDstIdx, Dist, true);
Cameron Zwarich1b4c64c2013-02-24 01:26:05 +00001346 (void)TransformResult;
Cameron Zwarich6868f382013-02-24 00:27:29 +00001347 assert(!TransformResult &&
1348 "tryInstructionTransform() should return false.");
1349 if (NewMIs[1]->getOperand(NewSrcIdx).isKill()) {
Dan Gohman3c1b3c62010-06-21 22:17:20 +00001350 // Success, or at least we made an improvement. Keep the unfolded
1351 // instructions and discard the original.
1352 if (LV) {
Evan Cheng30f44ad2011-11-14 19:48:55 +00001353 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
1354 MachineOperand &MO = MI.getOperand(i);
Andrew Trick808a7a62012-02-03 05:12:30 +00001355 if (MO.isReg() &&
Dan Gohman851e4782010-06-22 00:32:04 +00001356 TargetRegisterInfo::isVirtualRegister(MO.getReg())) {
1357 if (MO.isUse()) {
Dan Gohman2370e2f2010-06-22 02:07:21 +00001358 if (MO.isKill()) {
1359 if (NewMIs[0]->killsRegister(MO.getReg()))
Evan Cheng30f44ad2011-11-14 19:48:55 +00001360 LV->replaceKillInstruction(MO.getReg(), &MI, NewMIs[0]);
Dan Gohman2370e2f2010-06-22 02:07:21 +00001361 else {
1362 assert(NewMIs[1]->killsRegister(MO.getReg()) &&
1363 "Kill missing after load unfold!");
Evan Cheng30f44ad2011-11-14 19:48:55 +00001364 LV->replaceKillInstruction(MO.getReg(), &MI, NewMIs[1]);
Dan Gohman2370e2f2010-06-22 02:07:21 +00001365 }
1366 }
Evan Cheng30f44ad2011-11-14 19:48:55 +00001367 } else if (LV->removeVirtualRegisterDead(MO.getReg(), &MI)) {
Dan Gohman2370e2f2010-06-22 02:07:21 +00001368 if (NewMIs[1]->registerDefIsDead(MO.getReg()))
1369 LV->addVirtualRegisterDead(MO.getReg(), NewMIs[1]);
1370 else {
1371 assert(NewMIs[0]->registerDefIsDead(MO.getReg()) &&
1372 "Dead flag missing after load unfold!");
1373 LV->addVirtualRegisterDead(MO.getReg(), NewMIs[0]);
1374 }
1375 }
Dan Gohman851e4782010-06-22 00:32:04 +00001376 }
Dan Gohman3c1b3c62010-06-21 22:17:20 +00001377 }
1378 LV->addVirtualRegisterKilled(Reg, NewMIs[1]);
1379 }
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001380
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001381 SmallVector<unsigned, 4> OrigRegs;
1382 if (LIS) {
Craig Topperda5168b2015-10-08 06:06:42 +00001383 for (const MachineOperand &MO : MI.operands()) {
1384 if (MO.isReg())
1385 OrigRegs.push_back(MO.getReg());
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001386 }
1387 }
1388
Evan Cheng30f44ad2011-11-14 19:48:55 +00001389 MI.eraseFromParent();
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001390
1391 // Update LiveIntervals.
Cameron Zwarichcaad7e12013-02-20 22:10:00 +00001392 if (LIS) {
1393 MachineBasicBlock::iterator Begin(NewMIs[0]);
1394 MachineBasicBlock::iterator End(NewMIs[1]);
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001395 LIS->repairIntervalsInRange(MBB, Begin, End, OrigRegs);
Cameron Zwarichcaad7e12013-02-20 22:10:00 +00001396 }
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001397
Dan Gohman3c1b3c62010-06-21 22:17:20 +00001398 mi = NewMIs[1];
Dan Gohman3c1b3c62010-06-21 22:17:20 +00001399 } else {
1400 // Transforming didn't eliminate the tie and didn't lead to an
1401 // improvement. Clean up the unfolded instructions and keep the
1402 // original.
1403 DEBUG(dbgs() << "2addr: ABANDONING UNFOLD\n");
1404 NewMIs[0]->eraseFromParent();
1405 NewMIs[1]->eraseFromParent();
1406 }
1407 }
1408 }
1409 }
1410
Bob Wilson5c7d9ca2009-09-03 20:58:42 +00001411 return false;
1412}
1413
Jakob Stoklund Olesen1162a152012-08-03 23:25:45 +00001414// Collect tied operands of MI that need to be handled.
1415// Rewrite trivial cases immediately.
1416// Return true if any tied operands where found, including the trivial ones.
1417bool TwoAddressInstructionPass::
1418collectTiedOperands(MachineInstr *MI, TiedOperandMap &TiedOperands) {
1419 const MCInstrDesc &MCID = MI->getDesc();
1420 bool AnyOps = false;
Jakob Stoklund Olesenade363e2012-09-04 22:59:30 +00001421 unsigned NumOps = MI->getNumOperands();
Jakob Stoklund Olesen1162a152012-08-03 23:25:45 +00001422
1423 for (unsigned SrcIdx = 0; SrcIdx < NumOps; ++SrcIdx) {
1424 unsigned DstIdx = 0;
1425 if (!MI->isRegTiedToDefOperand(SrcIdx, &DstIdx))
1426 continue;
1427 AnyOps = true;
Jakob Stoklund Olesenfbf45dc2012-08-07 22:47:06 +00001428 MachineOperand &SrcMO = MI->getOperand(SrcIdx);
1429 MachineOperand &DstMO = MI->getOperand(DstIdx);
1430 unsigned SrcReg = SrcMO.getReg();
1431 unsigned DstReg = DstMO.getReg();
1432 // Tied constraint already satisfied?
1433 if (SrcReg == DstReg)
1434 continue;
Jakob Stoklund Olesen1162a152012-08-03 23:25:45 +00001435
Jakob Stoklund Olesenfbf45dc2012-08-07 22:47:06 +00001436 assert(SrcReg && SrcMO.isUse() && "two address instruction invalid");
Jakob Stoklund Olesen1162a152012-08-03 23:25:45 +00001437
1438 // Deal with <undef> uses immediately - simply rewrite the src operand.
Andrew Tricke3398282013-12-17 04:50:45 +00001439 if (SrcMO.isUndef() && !DstMO.getSubReg()) {
Jakob Stoklund Olesen1162a152012-08-03 23:25:45 +00001440 // Constrain the DstReg register class if required.
1441 if (TargetRegisterInfo::isVirtualRegister(DstReg))
1442 if (const TargetRegisterClass *RC = TII->getRegClass(MCID, SrcIdx,
1443 TRI, *MF))
1444 MRI->constrainRegClass(DstReg, RC);
Jakob Stoklund Olesenfbf45dc2012-08-07 22:47:06 +00001445 SrcMO.setReg(DstReg);
Andrew Tricke3398282013-12-17 04:50:45 +00001446 SrcMO.setSubReg(0);
Jakob Stoklund Olesen1162a152012-08-03 23:25:45 +00001447 DEBUG(dbgs() << "\t\trewrite undef:\t" << *MI);
1448 continue;
1449 }
Jakob Stoklund Olesenfbf45dc2012-08-07 22:47:06 +00001450 TiedOperands[SrcReg].push_back(std::make_pair(SrcIdx, DstIdx));
Jakob Stoklund Olesen1162a152012-08-03 23:25:45 +00001451 }
1452 return AnyOps;
1453}
1454
Jakob Stoklund Olesena0c72ec2012-08-03 23:57:58 +00001455// Process a list of tied MI operands that all use the same source register.
1456// The tied pairs are of the form (SrcIdx, DstIdx).
1457void
1458TwoAddressInstructionPass::processTiedPairs(MachineInstr *MI,
1459 TiedPairList &TiedPairs,
1460 unsigned &Dist) {
1461 bool IsEarlyClobber = false;
Cameron Zwarich2991feb2013-02-20 06:46:46 +00001462 for (unsigned tpi = 0, tpe = TiedPairs.size(); tpi != tpe; ++tpi) {
1463 const MachineOperand &DstMO = MI->getOperand(TiedPairs[tpi].second);
1464 IsEarlyClobber |= DstMO.isEarlyClobber();
1465 }
1466
Jakob Stoklund Olesena0c72ec2012-08-03 23:57:58 +00001467 bool RemovedKillFlag = false;
1468 bool AllUsesCopied = true;
1469 unsigned LastCopiedReg = 0;
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001470 SlotIndex LastCopyIdx;
Jakob Stoklund Olesena0c72ec2012-08-03 23:57:58 +00001471 unsigned RegB = 0;
Andrew Tricke3398282013-12-17 04:50:45 +00001472 unsigned SubRegB = 0;
Jakob Stoklund Olesena0c72ec2012-08-03 23:57:58 +00001473 for (unsigned tpi = 0, tpe = TiedPairs.size(); tpi != tpe; ++tpi) {
1474 unsigned SrcIdx = TiedPairs[tpi].first;
1475 unsigned DstIdx = TiedPairs[tpi].second;
1476
1477 const MachineOperand &DstMO = MI->getOperand(DstIdx);
1478 unsigned RegA = DstMO.getReg();
Jakob Stoklund Olesena0c72ec2012-08-03 23:57:58 +00001479
1480 // Grab RegB from the instruction because it may have changed if the
1481 // instruction was commuted.
1482 RegB = MI->getOperand(SrcIdx).getReg();
Andrew Tricke3398282013-12-17 04:50:45 +00001483 SubRegB = MI->getOperand(SrcIdx).getSubReg();
Jakob Stoklund Olesena0c72ec2012-08-03 23:57:58 +00001484
1485 if (RegA == RegB) {
1486 // The register is tied to multiple destinations (or else we would
1487 // not have continued this far), but this use of the register
1488 // already matches the tied destination. Leave it.
1489 AllUsesCopied = false;
1490 continue;
1491 }
1492 LastCopiedReg = RegA;
1493
1494 assert(TargetRegisterInfo::isVirtualRegister(RegB) &&
1495 "cannot make instruction into two-address form");
1496
1497#ifndef NDEBUG
1498 // First, verify that we don't have a use of "a" in the instruction
1499 // (a = b + a for example) because our transformation will not
1500 // work. This should never occur because we are in SSA form.
1501 for (unsigned i = 0; i != MI->getNumOperands(); ++i)
1502 assert(i == DstIdx ||
1503 !MI->getOperand(i).isReg() ||
1504 MI->getOperand(i).getReg() != RegA);
1505#endif
1506
1507 // Emit a copy.
Andrew Tricke3398282013-12-17 04:50:45 +00001508 MachineInstrBuilder MIB = BuildMI(*MI->getParent(), MI, MI->getDebugLoc(),
1509 TII->get(TargetOpcode::COPY), RegA);
1510 // If this operand is folding a truncation, the truncation now moves to the
1511 // copy so that the register classes remain valid for the operands.
1512 MIB.addReg(RegB, 0, SubRegB);
1513 const TargetRegisterClass *RC = MRI->getRegClass(RegB);
1514 if (SubRegB) {
1515 if (TargetRegisterInfo::isVirtualRegister(RegA)) {
1516 assert(TRI->getMatchingSuperRegClass(RC, MRI->getRegClass(RegA),
1517 SubRegB) &&
1518 "tied subregister must be a truncation");
1519 // The superreg class will not be used to constrain the subreg class.
Craig Topperc0196b12014-04-14 00:51:57 +00001520 RC = nullptr;
Andrew Tricke3398282013-12-17 04:50:45 +00001521 }
1522 else {
1523 assert(TRI->getMatchingSuperReg(RegA, SubRegB, MRI->getRegClass(RegB))
1524 && "tied subregister must be a truncation");
1525 }
1526 }
Jakob Stoklund Olesena0c72ec2012-08-03 23:57:58 +00001527
1528 // Update DistanceMap.
1529 MachineBasicBlock::iterator PrevMI = MI;
1530 --PrevMI;
1531 DistanceMap.insert(std::make_pair(PrevMI, Dist));
1532 DistanceMap[MI] = ++Dist;
1533
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001534 if (LIS) {
1535 LastCopyIdx = LIS->InsertMachineInstrInMaps(PrevMI).getRegSlot();
1536
1537 if (TargetRegisterInfo::isVirtualRegister(RegA)) {
1538 LiveInterval &LI = LIS->getInterval(RegA);
1539 VNInfo *VNI = LI.getNextValue(LastCopyIdx, LIS->getVNInfoAllocator());
1540 SlotIndex endIdx =
1541 LIS->getInstructionIndex(MI).getRegSlot(IsEarlyClobber);
Matthias Braun13ddb7c2013-10-10 21:28:43 +00001542 LI.addSegment(LiveInterval::Segment(LastCopyIdx, endIdx, VNI));
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001543 }
1544 }
Jakob Stoklund Olesena0c72ec2012-08-03 23:57:58 +00001545
Andrew Tricke3398282013-12-17 04:50:45 +00001546 DEBUG(dbgs() << "\t\tprepend:\t" << *MIB);
Jakob Stoklund Olesena0c72ec2012-08-03 23:57:58 +00001547
1548 MachineOperand &MO = MI->getOperand(SrcIdx);
1549 assert(MO.isReg() && MO.getReg() == RegB && MO.isUse() &&
1550 "inconsistent operand info for 2-reg pass");
1551 if (MO.isKill()) {
1552 MO.setIsKill(false);
1553 RemovedKillFlag = true;
1554 }
1555
1556 // Make sure regA is a legal regclass for the SrcIdx operand.
1557 if (TargetRegisterInfo::isVirtualRegister(RegA) &&
1558 TargetRegisterInfo::isVirtualRegister(RegB))
Andrew Tricke3398282013-12-17 04:50:45 +00001559 MRI->constrainRegClass(RegA, RC);
Jakob Stoklund Olesena0c72ec2012-08-03 23:57:58 +00001560 MO.setReg(RegA);
Andrew Tricke3398282013-12-17 04:50:45 +00001561 // The getMatchingSuper asserts guarantee that the register class projected
1562 // by SubRegB is compatible with RegA with no subregister. So regardless of
1563 // whether the dest oper writes a subreg, the source oper should not.
1564 MO.setSubReg(0);
Jakob Stoklund Olesena0c72ec2012-08-03 23:57:58 +00001565
1566 // Propagate SrcRegMap.
1567 SrcRegMap[RegA] = RegB;
1568 }
1569
Jakob Stoklund Olesena0c72ec2012-08-03 23:57:58 +00001570 if (AllUsesCopied) {
1571 if (!IsEarlyClobber) {
1572 // Replace other (un-tied) uses of regB with LastCopiedReg.
1573 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1574 MachineOperand &MO = MI->getOperand(i);
Andrew Tricke3398282013-12-17 04:50:45 +00001575 if (MO.isReg() && MO.getReg() == RegB && MO.getSubReg() == SubRegB &&
1576 MO.isUse()) {
Jakob Stoklund Olesena0c72ec2012-08-03 23:57:58 +00001577 if (MO.isKill()) {
1578 MO.setIsKill(false);
1579 RemovedKillFlag = true;
1580 }
1581 MO.setReg(LastCopiedReg);
Andrew Tricke3398282013-12-17 04:50:45 +00001582 MO.setSubReg(0);
Jakob Stoklund Olesena0c72ec2012-08-03 23:57:58 +00001583 }
1584 }
1585 }
1586
1587 // Update live variables for regB.
1588 if (RemovedKillFlag && LV && LV->getVarInfo(RegB).removeKill(MI)) {
1589 MachineBasicBlock::iterator PrevMI = MI;
1590 --PrevMI;
1591 LV->addVirtualRegisterKilled(RegB, PrevMI);
1592 }
1593
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001594 // Update LiveIntervals.
1595 if (LIS) {
1596 LiveInterval &LI = LIS->getInterval(RegB);
1597 SlotIndex MIIdx = LIS->getInstructionIndex(MI);
1598 LiveInterval::const_iterator I = LI.find(MIIdx);
1599 assert(I != LI.end() && "RegB must be live-in to use.");
1600
1601 SlotIndex UseIdx = MIIdx.getRegSlot(IsEarlyClobber);
1602 if (I->end == UseIdx)
Matthias Braun13ddb7c2013-10-10 21:28:43 +00001603 LI.removeSegment(LastCopyIdx, UseIdx);
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001604 }
1605
Jakob Stoklund Olesena0c72ec2012-08-03 23:57:58 +00001606 } else if (RemovedKillFlag) {
1607 // Some tied uses of regB matched their destination registers, so
1608 // regB is still used in this instruction, but a kill flag was
1609 // removed from a different tied use of regB, so now we need to add
1610 // a kill flag to one of the remaining uses of regB.
1611 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1612 MachineOperand &MO = MI->getOperand(i);
1613 if (MO.isReg() && MO.getReg() == RegB && MO.isUse()) {
1614 MO.setIsKill(true);
1615 break;
1616 }
1617 }
1618 }
Jakob Stoklund Olesena0c72ec2012-08-03 23:57:58 +00001619}
1620
Bill Wendling19e3c852008-05-10 00:12:52 +00001621/// runOnMachineFunction - Reduce two-address instructions to two operands.
Alkis Evlogimenos725021c2003-12-18 13:06:04 +00001622///
Jakob Stoklund Olesen1162a152012-08-03 23:25:45 +00001623bool TwoAddressInstructionPass::runOnMachineFunction(MachineFunction &Func) {
1624 MF = &Func;
1625 const TargetMachine &TM = MF->getTarget();
1626 MRI = &MF->getRegInfo();
Eric Christopher33726202015-01-27 08:48:42 +00001627 TII = MF->getSubtarget().getInstrInfo();
1628 TRI = MF->getSubtarget().getRegisterInfo();
1629 InstrItins = MF->getSubtarget().getInstrItineraryData();
Duncan Sands5a913d62009-01-28 13:14:17 +00001630 LV = getAnalysisIfAvailable<LiveVariables>();
Jakob Stoklund Olesen24bc5142012-08-03 22:58:34 +00001631 LIS = getAnalysisIfAvailable<LiveIntervals>();
Chandler Carruth7b560d42015-09-09 17:55:00 +00001632 AA = &getAnalysis<AAResultsWrapperPass>().getAAResults();
Evan Cheng822ddde2011-11-16 18:44:48 +00001633 OptLevel = TM.getOptLevel();
Alkis Evlogimenos725021c2003-12-18 13:06:04 +00001634
Misha Brukman6dd644e2004-07-22 15:26:23 +00001635 bool MadeChange = false;
Alkis Evlogimenos725021c2003-12-18 13:06:04 +00001636
David Greeneac9f8192010-01-05 01:24:21 +00001637 DEBUG(dbgs() << "********** REWRITING TWO-ADDR INSTRS **********\n");
Andrew Trick808a7a62012-02-03 05:12:30 +00001638 DEBUG(dbgs() << "********** Function: "
Craig Toppera538d832012-08-22 06:07:19 +00001639 << MF->getName() << '\n');
Alkis Evlogimenos26583db2004-02-18 00:35:06 +00001640
Jakob Stoklund Olesen9760f042011-07-29 22:51:22 +00001641 // This pass takes the function out of SSA form.
1642 MRI->leaveSSA();
1643
Jakob Stoklund Olesen1162a152012-08-03 23:25:45 +00001644 TiedOperandMap TiedOperands;
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +00001645 for (MachineFunction::iterator MBBI = MF->begin(), MBBE = MF->end();
1646 MBBI != MBBE; ++MBBI) {
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +00001647 MBB = &*MBBI;
Evan Chengc5618eb2008-06-18 07:49:14 +00001648 unsigned Dist = 0;
1649 DistanceMap.clear();
Evan Chengc2f95b52009-03-01 02:03:43 +00001650 SrcRegMap.clear();
1651 DstRegMap.clear();
1652 Processed.clear();
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +00001653 for (MachineBasicBlock::iterator mi = MBB->begin(), me = MBB->end();
Evan Cheng58324102008-03-27 01:27:25 +00001654 mi != me; ) {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001655 MachineBasicBlock::iterator nmi = std::next(mi);
Dale Johannesen8bba1602010-02-10 21:47:48 +00001656 if (mi->isDebugValue()) {
1657 mi = nmi;
1658 continue;
1659 }
Evan Cheng77be42a2010-03-23 20:36:12 +00001660
Jakob Stoklund Olesenda2b6b32012-12-01 01:06:44 +00001661 // Expand REG_SEQUENCE instructions. This will position mi at the first
1662 // expanded instruction.
Evan Cheng4b6abd82010-05-05 18:45:40 +00001663 if (mi->isRegSequence())
Jakob Stoklund Olesenda2b6b32012-12-01 01:06:44 +00001664 eliminateRegSequence(mi);
Evan Cheng4b6abd82010-05-05 18:45:40 +00001665
Evan Chengc5618eb2008-06-18 07:49:14 +00001666 DistanceMap.insert(std::make_pair(mi, ++Dist));
Evan Chengc2f95b52009-03-01 02:03:43 +00001667
Jakob Stoklund Olesen7fa17d42012-10-26 23:05:10 +00001668 processCopy(&*mi);
Evan Chengc2f95b52009-03-01 02:03:43 +00001669
Bob Wilson5c7d9ca2009-09-03 20:58:42 +00001670 // First scan through all the tied register uses in this instruction
1671 // and record a list of pairs of tied operands for each register.
Jakob Stoklund Olesen1162a152012-08-03 23:25:45 +00001672 if (!collectTiedOperands(mi, TiedOperands)) {
1673 mi = nmi;
1674 continue;
Bob Wilson5c7d9ca2009-09-03 20:58:42 +00001675 }
Alkis Evlogimenos725021c2003-12-18 13:06:04 +00001676
Jakob Stoklund Olesen1162a152012-08-03 23:25:45 +00001677 ++NumTwoAddressInstrs;
Jakob Stoklund Olesena0c72ec2012-08-03 23:57:58 +00001678 MadeChange = true;
Jakob Stoklund Olesen1162a152012-08-03 23:25:45 +00001679 DEBUG(dbgs() << '\t' << *mi);
1680
Chandler Carruth985454e2012-07-18 18:58:22 +00001681 // If the instruction has a single pair of tied operands, try some
1682 // transformations that may either eliminate the tied operands or
1683 // improve the opportunities for coalescing away the register copy.
1684 if (TiedOperands.size() == 1) {
Craig Topperb94011f2013-07-14 04:42:23 +00001685 SmallVectorImpl<std::pair<unsigned, unsigned> > &TiedPairs
Chandler Carruth985454e2012-07-18 18:58:22 +00001686 = TiedOperands.begin()->second;
1687 if (TiedPairs.size() == 1) {
1688 unsigned SrcIdx = TiedPairs[0].first;
1689 unsigned DstIdx = TiedPairs[0].second;
1690 unsigned SrcReg = mi->getOperand(SrcIdx).getReg();
1691 unsigned DstReg = mi->getOperand(DstIdx).getReg();
1692 if (SrcReg != DstReg &&
Cameron Zwarichf05c0cb2013-02-24 00:27:26 +00001693 tryInstructionTransform(mi, nmi, SrcIdx, DstIdx, Dist, false)) {
NAKAMURA Takumi84965032015-09-22 11:14:12 +00001694 // The tied operands have been eliminated or shifted further down
1695 // the block to ease elimination. Continue processing with 'nmi'.
Chandler Carruth985454e2012-07-18 18:58:22 +00001696 TiedOperands.clear();
1697 mi = nmi;
1698 continue;
1699 }
1700 }
1701 }
1702
Bob Wilson5c7d9ca2009-09-03 20:58:42 +00001703 // Now iterate over the information collected above.
Craig Topperda5168b2015-10-08 06:06:42 +00001704 for (auto &TO : TiedOperands) {
1705 processTiedPairs(mi, TO.second, Dist);
David Greeneac9f8192010-01-05 01:24:21 +00001706 DEBUG(dbgs() << "\t\trewrite to:\t" << *mi);
Jakob Stoklund Olesen6b556f82012-06-25 03:27:12 +00001707 }
Bill Wendling19e3c852008-05-10 00:12:52 +00001708
Jakob Stoklund Olesen6b556f82012-06-25 03:27:12 +00001709 // Rewrite INSERT_SUBREG as COPY now that we no longer need SSA form.
1710 if (mi->isInsertSubreg()) {
1711 // From %reg = INSERT_SUBREG %reg, %subreg, subidx
1712 // To %reg:subidx = COPY %subreg
1713 unsigned SubIdx = mi->getOperand(3).getImm();
1714 mi->RemoveOperand(3);
1715 assert(mi->getOperand(0).getSubReg() == 0 && "Unexpected subreg idx");
1716 mi->getOperand(0).setSubReg(SubIdx);
1717 mi->getOperand(0).setIsUndef(mi->getOperand(1).isUndef());
1718 mi->RemoveOperand(1);
1719 mi->setDesc(TII->get(TargetOpcode::COPY));
1720 DEBUG(dbgs() << "\t\tconvert to:\t" << *mi);
Jakob Stoklund Olesen70ee3ec2010-07-06 23:26:25 +00001721 }
1722
Bob Wilson5c7d9ca2009-09-03 20:58:42 +00001723 // Clear TiedOperands here instead of at the top of the loop
1724 // since most instructions do not have tied operands.
1725 TiedOperands.clear();
Evan Cheng58324102008-03-27 01:27:25 +00001726 mi = nmi;
Misha Brukman6dd644e2004-07-22 15:26:23 +00001727 }
1728 }
1729
Cameron Zwarich36735812013-02-20 06:46:34 +00001730 if (LIS)
1731 MF->verify(this, "After two-address instruction pass");
1732
Misha Brukman6dd644e2004-07-22 15:26:23 +00001733 return MadeChange;
Alkis Evlogimenos725021c2003-12-18 13:06:04 +00001734}
Evan Cheng4b6abd82010-05-05 18:45:40 +00001735
Jakob Stoklund Olesenda2b6b32012-12-01 01:06:44 +00001736/// Eliminate a REG_SEQUENCE instruction as part of the de-ssa process.
Evan Cheng4b6abd82010-05-05 18:45:40 +00001737///
Jakob Stoklund Olesenda2b6b32012-12-01 01:06:44 +00001738/// The instruction is turned into a sequence of sub-register copies:
1739///
1740/// %dst = REG_SEQUENCE %v1, ssub0, %v2, ssub1
1741///
1742/// Becomes:
1743///
1744/// %dst:ssub0<def,undef> = COPY %v1
1745/// %dst:ssub1<def> = COPY %v2
1746///
1747void TwoAddressInstructionPass::
1748eliminateRegSequence(MachineBasicBlock::iterator &MBBI) {
1749 MachineInstr *MI = MBBI;
1750 unsigned DstReg = MI->getOperand(0).getReg();
1751 if (MI->getOperand(0).getSubReg() ||
1752 TargetRegisterInfo::isPhysicalRegister(DstReg) ||
1753 !(MI->getNumOperands() & 1)) {
1754 DEBUG(dbgs() << "Illegal REG_SEQUENCE instruction:" << *MI);
Craig Topperc0196b12014-04-14 00:51:57 +00001755 llvm_unreachable(nullptr);
Evan Cheng4b6abd82010-05-05 18:45:40 +00001756 }
1757
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001758 SmallVector<unsigned, 4> OrigRegs;
1759 if (LIS) {
1760 OrigRegs.push_back(MI->getOperand(0).getReg());
1761 for (unsigned i = 1, e = MI->getNumOperands(); i < e; i += 2)
1762 OrigRegs.push_back(MI->getOperand(i).getReg());
1763 }
1764
Jakob Stoklund Olesenda2b6b32012-12-01 01:06:44 +00001765 bool DefEmitted = false;
1766 for (unsigned i = 1, e = MI->getNumOperands(); i < e; i += 2) {
1767 MachineOperand &UseMO = MI->getOperand(i);
1768 unsigned SrcReg = UseMO.getReg();
1769 unsigned SubIdx = MI->getOperand(i+1).getImm();
1770 // Nothing needs to be inserted for <undef> operands.
1771 if (UseMO.isUndef())
1772 continue;
1773
1774 // Defer any kill flag to the last operand using SrcReg. Otherwise, we
1775 // might insert a COPY that uses SrcReg after is was killed.
1776 bool isKill = UseMO.isKill();
1777 if (isKill)
1778 for (unsigned j = i + 2; j < e; j += 2)
1779 if (MI->getOperand(j).getReg() == SrcReg) {
1780 MI->getOperand(j).setIsKill();
1781 UseMO.setIsKill(false);
1782 isKill = false;
1783 break;
1784 }
1785
1786 // Insert the sub-register copy.
1787 MachineInstr *CopyMI = BuildMI(*MI->getParent(), MI, MI->getDebugLoc(),
1788 TII->get(TargetOpcode::COPY))
1789 .addReg(DstReg, RegState::Define, SubIdx)
1790 .addOperand(UseMO);
1791
1792 // The first def needs an <undef> flag because there is no live register
1793 // before it.
1794 if (!DefEmitted) {
1795 CopyMI->getOperand(0).setIsUndef(true);
1796 // Return an iterator pointing to the first inserted instr.
1797 MBBI = CopyMI;
1798 }
1799 DefEmitted = true;
1800
1801 // Update LiveVariables' kill info.
1802 if (LV && isKill && !TargetRegisterInfo::isPhysicalRegister(SrcReg))
1803 LV->replaceKillInstruction(SrcReg, MI, CopyMI);
1804
1805 DEBUG(dbgs() << "Inserted: " << *CopyMI);
1806 }
1807
David Blaikie9db062e2013-02-20 07:39:20 +00001808 MachineBasicBlock::iterator EndMBBI =
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001809 std::next(MachineBasicBlock::iterator(MI));
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001810
Jakob Stoklund Olesenda2b6b32012-12-01 01:06:44 +00001811 if (!DefEmitted) {
1812 DEBUG(dbgs() << "Turned: " << *MI << " into an IMPLICIT_DEF");
1813 MI->setDesc(TII->get(TargetOpcode::IMPLICIT_DEF));
1814 for (int j = MI->getNumOperands() - 1, ee = 0; j > ee; --j)
1815 MI->RemoveOperand(j);
1816 } else {
1817 DEBUG(dbgs() << "Eliminated: " << *MI);
1818 MI->eraseFromParent();
1819 }
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001820
1821 // Udpate LiveIntervals.
Cameron Zwarichcaad7e12013-02-20 22:10:00 +00001822 if (LIS)
Cameron Zwarich8e60d4d2013-02-20 06:46:48 +00001823 LIS->repairIntervalsInRange(MBB, MBBI, EndMBBI, OrigRegs);
Evan Cheng4b6abd82010-05-05 18:45:40 +00001824}