blob: 45d2a1b37384cf3d6bd8cf08551d0e1ed9adb1e9 [file] [log] [blame]
Alkis Evlogimenos71499de2003-12-18 13:06:04 +00001//===-- TwoAddressInstructionPass.cpp - Two-Address instruction pass ------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-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 Evlogimenos71499de2003-12-18 13:06:04 +00007//
8//===----------------------------------------------------------------------===//
9//
Alkis Evlogimenos50c047d2004-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 Evlogimenos14be6402004-02-04 22:17:40 +000019// A op= C
Alkis Evlogimenos71499de2003-12-18 13:06:04 +000020//
Alkis Evlogimenos14be6402004-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 Lattnerbd91c1c2004-01-31 21:07:15 +000027//
Alkis Evlogimenos71499de2003-12-18 13:06:04 +000028//===----------------------------------------------------------------------===//
29
30#define DEBUG_TYPE "twoaddrinstr"
Chris Lattnerbd91c1c2004-01-31 21:07:15 +000031#include "llvm/CodeGen/Passes.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000032#include "llvm/ADT/BitVector.h"
33#include "llvm/ADT/DenseMap.h"
34#include "llvm/ADT/STLExtras.h"
35#include "llvm/ADT/SmallSet.h"
36#include "llvm/ADT/Statistic.h"
37#include "llvm/Analysis/AliasAnalysis.h"
Jakob Stoklund Olesen5bfdedf2012-08-03 22:58:34 +000038#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Alkis Evlogimenos71499de2003-12-18 13:06:04 +000039#include "llvm/CodeGen/LiveVariables.h"
Alkis Evlogimenos71499de2003-12-18 13:06:04 +000040#include "llvm/CodeGen/MachineFunctionPass.h"
41#include "llvm/CodeGen/MachineInstr.h"
Bob Wilson852a7e32010-06-15 05:56:31 +000042#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000043#include "llvm/CodeGen/MachineRegisterInfo.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000044#include "llvm/IR/Function.h"
Evan Cheng2a4410d2011-11-14 19:48:55 +000045#include "llvm/MC/MCInstrItineraries.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000046#include "llvm/Support/Debug.h"
47#include "llvm/Support/ErrorHandling.h"
Alkis Evlogimenos71499de2003-12-18 13:06:04 +000048#include "llvm/Target/TargetInstrInfo.h"
49#include "llvm/Target/TargetMachine.h"
Owen Anderson95dad832008-10-07 20:22:28 +000050#include "llvm/Target/TargetOptions.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000051#include "llvm/Target/TargetRegisterInfo.h"
Alkis Evlogimenos71499de2003-12-18 13:06:04 +000052using namespace llvm;
53
Chris Lattnercd3245a2006-12-19 22:41:21 +000054STATISTIC(NumTwoAddressInstrs, "Number of two-address instructions");
55STATISTIC(NumCommuted , "Number of instructions commuted to coalesce");
Evan Chengd498c8f2009-01-25 03:53:59 +000056STATISTIC(NumAggrCommuted , "Number of instructions aggressively commuted");
Chris Lattnercd3245a2006-12-19 22:41:21 +000057STATISTIC(NumConvertedTo3Addr, "Number of instructions promoted to 3-address");
Evan Cheng875357d2008-03-13 06:37:55 +000058STATISTIC(Num3AddrSunk, "Number of 3-address instructions sunk");
Evan Cheng2a4410d2011-11-14 19:48:55 +000059STATISTIC(NumReSchedUps, "Number of instructions re-scheduled up");
60STATISTIC(NumReSchedDowns, "Number of instructions re-scheduled down");
Evan Cheng875357d2008-03-13 06:37:55 +000061
62namespace {
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +000063class TwoAddressInstructionPass : public MachineFunctionPass {
64 MachineFunction *MF;
65 const TargetInstrInfo *TII;
66 const TargetRegisterInfo *TRI;
67 const InstrItineraryData *InstrItins;
68 MachineRegisterInfo *MRI;
69 LiveVariables *LV;
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +000070 LiveIntervals *LIS;
71 AliasAnalysis *AA;
72 CodeGenOpt::Level OptLevel;
Evan Cheng875357d2008-03-13 06:37:55 +000073
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +000074 // The current basic block being processed.
75 MachineBasicBlock *MBB;
76
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +000077 // DistanceMap - Keep track the distance of a MI from the start of the
78 // current basic block.
79 DenseMap<MachineInstr*, unsigned> DistanceMap;
Evan Cheng870b8072009-03-01 02:03:43 +000080
Jakob Stoklund Olesen002ef572012-10-26 22:06:00 +000081 // Set of already processed instructions in the current block.
82 SmallPtrSet<MachineInstr*, 8> Processed;
83
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +000084 // SrcRegMap - A map from virtual registers to physical registers which are
85 // likely targets to be coalesced to due to copies from physical registers to
86 // virtual registers. e.g. v1024 = move r0.
87 DenseMap<unsigned, unsigned> SrcRegMap;
Evan Cheng870b8072009-03-01 02:03:43 +000088
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +000089 // DstRegMap - A map from virtual registers to physical registers which are
90 // likely targets to be coalesced to due to copies to physical registers from
91 // virtual registers. e.g. r1 = move v1024.
92 DenseMap<unsigned, unsigned> DstRegMap;
Evan Cheng870b8072009-03-01 02:03:43 +000093
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +000094 bool sink3AddrInstruction(MachineInstr *MI, unsigned Reg,
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +000095 MachineBasicBlock::iterator OldPos);
Evan Cheng7543e582008-06-18 07:49:14 +000096
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +000097 bool noUseAfterLastDef(unsigned Reg, unsigned Dist, unsigned &LastDef);
Evan Chengd498c8f2009-01-25 03:53:59 +000098
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +000099 bool isProfitableToCommute(unsigned regA, unsigned regB, unsigned regC,
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000100 MachineInstr *MI, unsigned Dist);
Evan Chengd498c8f2009-01-25 03:53:59 +0000101
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000102 bool commuteInstruction(MachineBasicBlock::iterator &mi,
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000103 unsigned RegB, unsigned RegC, unsigned Dist);
Evan Cheng870b8072009-03-01 02:03:43 +0000104
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000105 bool isProfitableToConv3Addr(unsigned RegA, unsigned RegB);
Evan Chenge6f350d2009-03-30 21:34:07 +0000106
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000107 bool convertInstTo3Addr(MachineBasicBlock::iterator &mi,
108 MachineBasicBlock::iterator &nmi,
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000109 unsigned RegA, unsigned RegB, unsigned Dist);
Evan Chenge6f350d2009-03-30 21:34:07 +0000110
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000111 bool isDefTooClose(unsigned Reg, unsigned Dist, MachineInstr *MI);
Evan Cheng2a4410d2011-11-14 19:48:55 +0000112
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000113 bool rescheduleMIBelowKill(MachineBasicBlock::iterator &mi,
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000114 MachineBasicBlock::iterator &nmi,
115 unsigned Reg);
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000116 bool rescheduleKillAboveMI(MachineBasicBlock::iterator &mi,
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000117 MachineBasicBlock::iterator &nmi,
118 unsigned Reg);
119
120 bool tryInstructionTransform(MachineBasicBlock::iterator &mi,
Evan Cheng2a4410d2011-11-14 19:48:55 +0000121 MachineBasicBlock::iterator &nmi,
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000122 unsigned SrcIdx, unsigned DstIdx,
Jakob Stoklund Olesen002ef572012-10-26 22:06:00 +0000123 unsigned Dist);
Evan Cheng2a4410d2011-11-14 19:48:55 +0000124
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000125 void scanUses(unsigned DstReg);
Evan Chengf06e6c22011-03-02 01:08:17 +0000126
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000127 void processCopy(MachineInstr *MI);
Bob Wilsoncc80df92009-09-03 20:58:42 +0000128
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000129 typedef SmallVector<std::pair<unsigned, unsigned>, 4> TiedPairList;
130 typedef SmallDenseMap<unsigned, TiedPairList> TiedOperandMap;
131 bool collectTiedOperands(MachineInstr *MI, TiedOperandMap&);
132 void processTiedPairs(MachineInstr *MI, TiedPairList&, unsigned &Dist);
Jakob Stoklund Olesen8c3dccd2012-12-01 01:06:44 +0000133 void eliminateRegSequence(MachineBasicBlock::iterator&);
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +0000134
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000135public:
136 static char ID; // Pass identification, replacement for typeid
137 TwoAddressInstructionPass() : MachineFunctionPass(ID) {
138 initializeTwoAddressInstructionPassPass(*PassRegistry::getPassRegistry());
139 }
Evan Chengc6dcce32010-05-17 23:24:12 +0000140
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000141 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
142 AU.setPreservesCFG();
143 AU.addRequired<AliasAnalysis>();
144 AU.addPreserved<LiveVariables>();
145 AU.addPreserved<SlotIndexes>();
146 AU.addPreserved<LiveIntervals>();
147 AU.addPreservedID(MachineLoopInfoID);
148 AU.addPreservedID(MachineDominatorsID);
149 MachineFunctionPass::getAnalysisUsage(AU);
150 }
Devang Patel794fd752007-05-01 21:15:47 +0000151
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000152 /// runOnMachineFunction - Pass entry point.
153 bool runOnMachineFunction(MachineFunction&);
154};
155} // end anonymous namespace
Alkis Evlogimenos71499de2003-12-18 13:06:04 +0000156
Dan Gohman844731a2008-05-13 00:00:25 +0000157char TwoAddressInstructionPass::ID = 0;
Owen Anderson2ab36d32010-10-12 19:48:12 +0000158INITIALIZE_PASS_BEGIN(TwoAddressInstructionPass, "twoaddressinstruction",
159 "Two-Address instruction pass", false, false)
160INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
161INITIALIZE_PASS_END(TwoAddressInstructionPass, "twoaddressinstruction",
Owen Andersonce665bd2010-10-07 22:25:06 +0000162 "Two-Address instruction pass", false, false)
Dan Gohman844731a2008-05-13 00:00:25 +0000163
Owen Anderson90c579d2010-08-06 18:33:48 +0000164char &llvm::TwoAddressInstructionPassID = TwoAddressInstructionPass::ID;
Alkis Evlogimenos4c080862003-12-18 22:40:24 +0000165
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000166/// sink3AddrInstruction - A two-address instruction has been converted to a
Evan Cheng875357d2008-03-13 06:37:55 +0000167/// three-address instruction to avoid clobbering a register. Try to sink it
Bill Wendling637980e2008-05-10 00:12:52 +0000168/// past the instruction that would kill the above mentioned register to reduce
169/// register pressure.
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000170bool TwoAddressInstructionPass::
171sink3AddrInstruction(MachineInstr *MI, unsigned SavedReg,
172 MachineBasicBlock::iterator OldPos) {
Eli Friedmanbde81d52011-09-23 22:41:57 +0000173 // FIXME: Shouldn't we be trying to do this before we three-addressify the
174 // instruction? After this transformation is done, we no longer need
175 // the instruction to be in three-address form.
176
Evan Cheng875357d2008-03-13 06:37:55 +0000177 // Check if it's safe to move this instruction.
178 bool SeenStore = true; // Be conservative.
Evan Chengac1abde2010-03-02 19:03:01 +0000179 if (!MI->isSafeToMove(TII, AA, SeenStore))
Evan Cheng875357d2008-03-13 06:37:55 +0000180 return false;
181
182 unsigned DefReg = 0;
183 SmallSet<unsigned, 4> UseRegs;
Bill Wendling637980e2008-05-10 00:12:52 +0000184
Evan Cheng875357d2008-03-13 06:37:55 +0000185 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
186 const MachineOperand &MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000187 if (!MO.isReg())
Evan Cheng875357d2008-03-13 06:37:55 +0000188 continue;
189 unsigned MOReg = MO.getReg();
190 if (!MOReg)
191 continue;
192 if (MO.isUse() && MOReg != SavedReg)
193 UseRegs.insert(MO.getReg());
194 if (!MO.isDef())
195 continue;
196 if (MO.isImplicit())
197 // Don't try to move it if it implicitly defines a register.
198 return false;
199 if (DefReg)
200 // For now, don't move any instructions that define multiple registers.
201 return false;
202 DefReg = MO.getReg();
203 }
204
205 // Find the instruction that kills SavedReg.
206 MachineInstr *KillMI = NULL;
Evan Chengf1250ee2010-03-23 20:36:12 +0000207 for (MachineRegisterInfo::use_nodbg_iterator
208 UI = MRI->use_nodbg_begin(SavedReg),
209 UE = MRI->use_nodbg_end(); UI != UE; ++UI) {
Evan Cheng875357d2008-03-13 06:37:55 +0000210 MachineOperand &UseMO = UI.getOperand();
211 if (!UseMO.isKill())
212 continue;
213 KillMI = UseMO.getParent();
214 break;
215 }
Bill Wendling637980e2008-05-10 00:12:52 +0000216
Eli Friedmanbde81d52011-09-23 22:41:57 +0000217 // If we find the instruction that kills SavedReg, and it is in an
218 // appropriate location, we can try to sink the current instruction
219 // past it.
220 if (!KillMI || KillMI->getParent() != MBB || KillMI == MI ||
Jakob Stoklund Olesen988069e2012-08-09 22:08:26 +0000221 KillMI == OldPos || KillMI->isTerminator())
Evan Cheng875357d2008-03-13 06:37:55 +0000222 return false;
223
Bill Wendling637980e2008-05-10 00:12:52 +0000224 // If any of the definitions are used by another instruction between the
225 // position and the kill use, then it's not safe to sink it.
Andrew Trick8247e0d2012-02-03 05:12:30 +0000226 //
Bill Wendling637980e2008-05-10 00:12:52 +0000227 // FIXME: This can be sped up if there is an easy way to query whether an
Evan Cheng7543e582008-06-18 07:49:14 +0000228 // instruction is before or after another instruction. Then we can use
Bill Wendling637980e2008-05-10 00:12:52 +0000229 // MachineRegisterInfo def / use instead.
Evan Cheng875357d2008-03-13 06:37:55 +0000230 MachineOperand *KillMO = NULL;
231 MachineBasicBlock::iterator KillPos = KillMI;
232 ++KillPos;
Bill Wendling637980e2008-05-10 00:12:52 +0000233
Evan Cheng7543e582008-06-18 07:49:14 +0000234 unsigned NumVisited = 0;
Chris Lattner7896c9f2009-12-03 00:50:42 +0000235 for (MachineBasicBlock::iterator I = llvm::next(OldPos); I != KillPos; ++I) {
Evan Cheng875357d2008-03-13 06:37:55 +0000236 MachineInstr *OtherMI = I;
Dale Johannesen3bfef032010-02-11 18:22:31 +0000237 // DBG_VALUE cannot be counted against the limit.
238 if (OtherMI->isDebugValue())
239 continue;
Evan Cheng7543e582008-06-18 07:49:14 +0000240 if (NumVisited > 30) // FIXME: Arbitrary limit to reduce compile time cost.
241 return false;
242 ++NumVisited;
Evan Cheng875357d2008-03-13 06:37:55 +0000243 for (unsigned i = 0, e = OtherMI->getNumOperands(); i != e; ++i) {
244 MachineOperand &MO = OtherMI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000245 if (!MO.isReg())
Evan Cheng875357d2008-03-13 06:37:55 +0000246 continue;
247 unsigned MOReg = MO.getReg();
248 if (!MOReg)
249 continue;
250 if (DefReg == MOReg)
251 return false;
Bill Wendling637980e2008-05-10 00:12:52 +0000252
Evan Cheng875357d2008-03-13 06:37:55 +0000253 if (MO.isKill()) {
254 if (OtherMI == KillMI && MOReg == SavedReg)
Evan Cheng7543e582008-06-18 07:49:14 +0000255 // Save the operand that kills the register. We want to unset the kill
256 // marker if we can sink MI past it.
Evan Cheng875357d2008-03-13 06:37:55 +0000257 KillMO = &MO;
258 else if (UseRegs.count(MOReg))
259 // One of the uses is killed before the destination.
260 return false;
261 }
262 }
263 }
Jakob Stoklund Olesen988069e2012-08-09 22:08:26 +0000264 assert(KillMO && "Didn't find kill");
Evan Cheng875357d2008-03-13 06:37:55 +0000265
Evan Cheng875357d2008-03-13 06:37:55 +0000266 // Update kill and LV information.
267 KillMO->setIsKill(false);
268 KillMO = MI->findRegisterUseOperand(SavedReg, false, TRI);
269 KillMO->setIsKill(true);
Andrew Trick8247e0d2012-02-03 05:12:30 +0000270
Evan Cheng9f1c8312008-07-03 09:09:37 +0000271 if (LV)
272 LV->replaceKillInstruction(SavedReg, KillMI, MI);
Evan Cheng875357d2008-03-13 06:37:55 +0000273
274 // Move instruction to its destination.
275 MBB->remove(MI);
276 MBB->insert(KillPos, MI);
277
Jakob Stoklund Olesen5bfdedf2012-08-03 22:58:34 +0000278 if (LIS)
279 LIS->handleMove(MI);
280
Evan Cheng875357d2008-03-13 06:37:55 +0000281 ++Num3AddrSunk;
282 return true;
283}
284
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000285/// noUseAfterLastDef - Return true if there are no intervening uses between the
Evan Chengd498c8f2009-01-25 03:53:59 +0000286/// last instruction in the MBB that defines the specified register and the
287/// two-address instruction which is being processed. It also returns the last
288/// def location by reference
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000289bool TwoAddressInstructionPass::noUseAfterLastDef(unsigned Reg, unsigned Dist,
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000290 unsigned &LastDef) {
Evan Chengd498c8f2009-01-25 03:53:59 +0000291 LastDef = 0;
292 unsigned LastUse = Dist;
293 for (MachineRegisterInfo::reg_iterator I = MRI->reg_begin(Reg),
294 E = MRI->reg_end(); I != E; ++I) {
295 MachineOperand &MO = I.getOperand();
296 MachineInstr *MI = MO.getParent();
Chris Lattner518bb532010-02-09 19:54:29 +0000297 if (MI->getParent() != MBB || MI->isDebugValue())
Dale Johannesend94998f2010-02-09 02:01:46 +0000298 continue;
Evan Chengd498c8f2009-01-25 03:53:59 +0000299 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(MI);
300 if (DI == DistanceMap.end())
301 continue;
302 if (MO.isUse() && DI->second < LastUse)
303 LastUse = DI->second;
304 if (MO.isDef() && DI->second > LastDef)
305 LastDef = DI->second;
306 }
307
308 return !(LastUse > LastDef && LastUse < Dist);
309}
310
Evan Cheng870b8072009-03-01 02:03:43 +0000311/// isCopyToReg - Return true if the specified MI is a copy instruction or
312/// a extract_subreg instruction. It also returns the source and destination
313/// registers and whether they are physical registers by reference.
314static bool isCopyToReg(MachineInstr &MI, const TargetInstrInfo *TII,
315 unsigned &SrcReg, unsigned &DstReg,
316 bool &IsSrcPhys, bool &IsDstPhys) {
317 SrcReg = 0;
318 DstReg = 0;
Jakob Stoklund Olesen04c528a2010-07-16 04:45:42 +0000319 if (MI.isCopy()) {
320 DstReg = MI.getOperand(0).getReg();
321 SrcReg = MI.getOperand(1).getReg();
322 } else if (MI.isInsertSubreg() || MI.isSubregToReg()) {
323 DstReg = MI.getOperand(0).getReg();
324 SrcReg = MI.getOperand(2).getReg();
325 } else
326 return false;
Evan Cheng870b8072009-03-01 02:03:43 +0000327
Jakob Stoklund Olesen04c528a2010-07-16 04:45:42 +0000328 IsSrcPhys = TargetRegisterInfo::isPhysicalRegister(SrcReg);
329 IsDstPhys = TargetRegisterInfo::isPhysicalRegister(DstReg);
330 return true;
Evan Cheng870b8072009-03-01 02:03:43 +0000331}
332
Dan Gohman97121ba2009-04-08 00:15:30 +0000333/// isKilled - Test if the given register value, which is used by the given
334/// instruction, is killed by the given instruction. This looks through
335/// coalescable copies to see if the original value is potentially not killed.
336///
337/// For example, in this code:
338///
339/// %reg1034 = copy %reg1024
340/// %reg1035 = copy %reg1025<kill>
341/// %reg1036 = add %reg1034<kill>, %reg1035<kill>
342///
343/// %reg1034 is not considered to be killed, since it is copied from a
344/// register which is not killed. Treating it as not killed lets the
345/// normal heuristics commute the (two-address) add, which lets
346/// coalescing eliminate the extra copy.
347///
348static bool isKilled(MachineInstr &MI, unsigned Reg,
349 const MachineRegisterInfo *MRI,
350 const TargetInstrInfo *TII) {
351 MachineInstr *DefMI = &MI;
352 for (;;) {
353 if (!DefMI->killsRegister(Reg))
354 return false;
355 if (TargetRegisterInfo::isPhysicalRegister(Reg))
356 return true;
357 MachineRegisterInfo::def_iterator Begin = MRI->def_begin(Reg);
358 // If there are multiple defs, we can't do a simple analysis, so just
359 // go with what the kill flag says.
Chris Lattner7896c9f2009-12-03 00:50:42 +0000360 if (llvm::next(Begin) != MRI->def_end())
Dan Gohman97121ba2009-04-08 00:15:30 +0000361 return true;
362 DefMI = &*Begin;
363 bool IsSrcPhys, IsDstPhys;
364 unsigned SrcReg, DstReg;
365 // If the def is something other than a copy, then it isn't going to
366 // be coalesced, so follow the kill flag.
367 if (!isCopyToReg(*DefMI, TII, SrcReg, DstReg, IsSrcPhys, IsDstPhys))
368 return true;
369 Reg = SrcReg;
370 }
371}
372
Evan Cheng870b8072009-03-01 02:03:43 +0000373/// isTwoAddrUse - Return true if the specified MI uses the specified register
374/// as a two-address use. If so, return the destination register by reference.
375static bool isTwoAddrUse(MachineInstr &MI, unsigned Reg, unsigned &DstReg) {
Evan Chenge837dea2011-06-28 19:10:37 +0000376 const MCInstrDesc &MCID = MI.getDesc();
377 unsigned NumOps = MI.isInlineAsm()
378 ? MI.getNumOperands() : MCID.getNumOperands();
Evan Chenge6f350d2009-03-30 21:34:07 +0000379 for (unsigned i = 0; i != NumOps; ++i) {
Evan Cheng870b8072009-03-01 02:03:43 +0000380 const MachineOperand &MO = MI.getOperand(i);
381 if (!MO.isReg() || !MO.isUse() || MO.getReg() != Reg)
382 continue;
Evan Chenga24752f2009-03-19 20:30:06 +0000383 unsigned ti;
384 if (MI.isRegTiedToDefOperand(i, &ti)) {
Evan Cheng870b8072009-03-01 02:03:43 +0000385 DstReg = MI.getOperand(ti).getReg();
386 return true;
387 }
388 }
389 return false;
390}
391
392/// findOnlyInterestingUse - Given a register, if has a single in-basic block
393/// use, return the use instruction if it's a copy or a two-address use.
394static
395MachineInstr *findOnlyInterestingUse(unsigned Reg, MachineBasicBlock *MBB,
396 MachineRegisterInfo *MRI,
397 const TargetInstrInfo *TII,
Evan Cheng87d696a2009-04-14 00:32:25 +0000398 bool &IsCopy,
Evan Cheng870b8072009-03-01 02:03:43 +0000399 unsigned &DstReg, bool &IsDstPhys) {
Evan Cheng1423c702010-03-03 21:18:38 +0000400 if (!MRI->hasOneNonDBGUse(Reg))
401 // None or more than one use.
Evan Cheng870b8072009-03-01 02:03:43 +0000402 return 0;
Evan Cheng1423c702010-03-03 21:18:38 +0000403 MachineInstr &UseMI = *MRI->use_nodbg_begin(Reg);
Evan Cheng870b8072009-03-01 02:03:43 +0000404 if (UseMI.getParent() != MBB)
405 return 0;
406 unsigned SrcReg;
407 bool IsSrcPhys;
Evan Cheng87d696a2009-04-14 00:32:25 +0000408 if (isCopyToReg(UseMI, TII, SrcReg, DstReg, IsSrcPhys, IsDstPhys)) {
409 IsCopy = true;
Evan Cheng870b8072009-03-01 02:03:43 +0000410 return &UseMI;
Evan Cheng87d696a2009-04-14 00:32:25 +0000411 }
Evan Cheng870b8072009-03-01 02:03:43 +0000412 IsDstPhys = false;
Evan Cheng87d696a2009-04-14 00:32:25 +0000413 if (isTwoAddrUse(UseMI, Reg, DstReg)) {
414 IsDstPhys = TargetRegisterInfo::isPhysicalRegister(DstReg);
Evan Cheng870b8072009-03-01 02:03:43 +0000415 return &UseMI;
Evan Cheng87d696a2009-04-14 00:32:25 +0000416 }
Evan Cheng870b8072009-03-01 02:03:43 +0000417 return 0;
418}
419
420/// getMappedReg - Return the physical register the specified virtual register
421/// might be mapped to.
422static unsigned
423getMappedReg(unsigned Reg, DenseMap<unsigned, unsigned> &RegMap) {
424 while (TargetRegisterInfo::isVirtualRegister(Reg)) {
425 DenseMap<unsigned, unsigned>::iterator SI = RegMap.find(Reg);
426 if (SI == RegMap.end())
427 return 0;
428 Reg = SI->second;
429 }
430 if (TargetRegisterInfo::isPhysicalRegister(Reg))
431 return Reg;
432 return 0;
433}
434
435/// regsAreCompatible - Return true if the two registers are equal or aliased.
436///
437static bool
438regsAreCompatible(unsigned RegA, unsigned RegB, const TargetRegisterInfo *TRI) {
439 if (RegA == RegB)
440 return true;
441 if (!RegA || !RegB)
442 return false;
443 return TRI->regsOverlap(RegA, RegB);
444}
445
446
Manman Rend68e8cd2012-07-25 18:28:13 +0000447/// isProfitableToCommute - Return true if it's potentially profitable to commute
Evan Chengd498c8f2009-01-25 03:53:59 +0000448/// the two-address instruction that's being processed.
449bool
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000450TwoAddressInstructionPass::
451isProfitableToCommute(unsigned regA, unsigned regB, unsigned regC,
452 MachineInstr *MI, unsigned Dist) {
Evan Chengc3aa7c52011-11-16 18:44:48 +0000453 if (OptLevel == CodeGenOpt::None)
454 return false;
455
Evan Chengd498c8f2009-01-25 03:53:59 +0000456 // Determine if it's profitable to commute this two address instruction. In
457 // general, we want no uses between this instruction and the definition of
458 // the two-address register.
459 // e.g.
460 // %reg1028<def> = EXTRACT_SUBREG %reg1027<kill>, 1
461 // %reg1029<def> = MOV8rr %reg1028
462 // %reg1029<def> = SHR8ri %reg1029, 7, %EFLAGS<imp-def,dead>
463 // insert => %reg1030<def> = MOV8rr %reg1028
464 // %reg1030<def> = ADD8rr %reg1028<kill>, %reg1029<kill>, %EFLAGS<imp-def,dead>
465 // In this case, it might not be possible to coalesce the second MOV8rr
466 // instruction if the first one is coalesced. So it would be profitable to
467 // commute it:
468 // %reg1028<def> = EXTRACT_SUBREG %reg1027<kill>, 1
469 // %reg1029<def> = MOV8rr %reg1028
470 // %reg1029<def> = SHR8ri %reg1029, 7, %EFLAGS<imp-def,dead>
471 // insert => %reg1030<def> = MOV8rr %reg1029
Andrew Trick8247e0d2012-02-03 05:12:30 +0000472 // %reg1030<def> = ADD8rr %reg1029<kill>, %reg1028<kill>, %EFLAGS<imp-def,dead>
Evan Chengd498c8f2009-01-25 03:53:59 +0000473
474 if (!MI->killsRegister(regC))
475 return false;
476
477 // Ok, we have something like:
478 // %reg1030<def> = ADD8rr %reg1028<kill>, %reg1029<kill>, %EFLAGS<imp-def,dead>
479 // let's see if it's worth commuting it.
480
Evan Cheng870b8072009-03-01 02:03:43 +0000481 // Look for situations like this:
482 // %reg1024<def> = MOV r1
483 // %reg1025<def> = MOV r0
484 // %reg1026<def> = ADD %reg1024, %reg1025
485 // r0 = MOV %reg1026
486 // Commute the ADD to hopefully eliminate an otherwise unavoidable copy.
Evan Chengd99d68b2012-05-03 01:45:13 +0000487 unsigned ToRegA = getMappedReg(regA, DstRegMap);
488 if (ToRegA) {
489 unsigned FromRegB = getMappedReg(regB, SrcRegMap);
490 unsigned FromRegC = getMappedReg(regC, SrcRegMap);
491 bool BComp = !FromRegB || regsAreCompatible(FromRegB, ToRegA, TRI);
492 bool CComp = !FromRegC || regsAreCompatible(FromRegC, ToRegA, TRI);
493 if (BComp != CComp)
494 return !BComp && CComp;
495 }
Evan Cheng870b8072009-03-01 02:03:43 +0000496
Evan Chengd498c8f2009-01-25 03:53:59 +0000497 // If there is a use of regC between its last def (could be livein) and this
498 // instruction, then bail.
499 unsigned LastDefC = 0;
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000500 if (!noUseAfterLastDef(regC, Dist, LastDefC))
Evan Chengd498c8f2009-01-25 03:53:59 +0000501 return false;
502
503 // If there is a use of regB between its last def (could be livein) and this
504 // instruction, then go ahead and make this transformation.
505 unsigned LastDefB = 0;
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000506 if (!noUseAfterLastDef(regB, Dist, LastDefB))
Evan Chengd498c8f2009-01-25 03:53:59 +0000507 return true;
508
509 // Since there are no intervening uses for both registers, then commute
510 // if the def of regC is closer. Its live interval is shorter.
511 return LastDefB && LastDefC && LastDefC > LastDefB;
512}
513
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000514/// commuteInstruction - Commute a two-address instruction and update the basic
Evan Cheng81913712009-01-23 23:27:33 +0000515/// block, distance map, and live variables if needed. Return true if it is
516/// successful.
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000517bool TwoAddressInstructionPass::
518commuteInstruction(MachineBasicBlock::iterator &mi,
519 unsigned RegB, unsigned RegC, unsigned Dist) {
Evan Cheng81913712009-01-23 23:27:33 +0000520 MachineInstr *MI = mi;
David Greeneeb00b182010-01-05 01:24:21 +0000521 DEBUG(dbgs() << "2addr: COMMUTING : " << *MI);
Evan Cheng81913712009-01-23 23:27:33 +0000522 MachineInstr *NewMI = TII->commuteInstruction(MI);
523
524 if (NewMI == 0) {
David Greeneeb00b182010-01-05 01:24:21 +0000525 DEBUG(dbgs() << "2addr: COMMUTING FAILED!\n");
Evan Cheng81913712009-01-23 23:27:33 +0000526 return false;
527 }
528
David Greeneeb00b182010-01-05 01:24:21 +0000529 DEBUG(dbgs() << "2addr: COMMUTED TO: " << *NewMI);
Evan Cheng81913712009-01-23 23:27:33 +0000530 // If the instruction changed to commute it, update livevar.
531 if (NewMI != MI) {
532 if (LV)
533 // Update live variables
534 LV->replaceKillInstruction(RegC, MI, NewMI);
Cameron Zwarich61892882013-02-20 22:10:02 +0000535 if (LIS)
536 LIS->ReplaceMachineInstrInMaps(MI, NewMI);
Evan Cheng81913712009-01-23 23:27:33 +0000537
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000538 MBB->insert(mi, NewMI); // Insert the new inst
539 MBB->erase(mi); // Nuke the old inst.
Evan Cheng81913712009-01-23 23:27:33 +0000540 mi = NewMI;
541 DistanceMap.insert(std::make_pair(NewMI, Dist));
542 }
Evan Cheng870b8072009-03-01 02:03:43 +0000543
544 // Update source register map.
545 unsigned FromRegC = getMappedReg(RegC, SrcRegMap);
546 if (FromRegC) {
547 unsigned RegA = MI->getOperand(0).getReg();
548 SrcRegMap[RegA] = FromRegC;
549 }
550
Evan Cheng81913712009-01-23 23:27:33 +0000551 return true;
552}
553
Evan Chenge6f350d2009-03-30 21:34:07 +0000554/// isProfitableToConv3Addr - Return true if it is profitable to convert the
555/// given 2-address instruction to a 3-address one.
556bool
Evan Chengf06e6c22011-03-02 01:08:17 +0000557TwoAddressInstructionPass::isProfitableToConv3Addr(unsigned RegA,unsigned RegB){
Evan Chenge6f350d2009-03-30 21:34:07 +0000558 // Look for situations like this:
559 // %reg1024<def> = MOV r1
560 // %reg1025<def> = MOV r0
561 // %reg1026<def> = ADD %reg1024, %reg1025
562 // r2 = MOV %reg1026
563 // Turn ADD into a 3-address instruction to avoid a copy.
Evan Chengf06e6c22011-03-02 01:08:17 +0000564 unsigned FromRegB = getMappedReg(RegB, SrcRegMap);
565 if (!FromRegB)
566 return false;
Evan Chenge6f350d2009-03-30 21:34:07 +0000567 unsigned ToRegA = getMappedReg(RegA, DstRegMap);
Evan Chengf06e6c22011-03-02 01:08:17 +0000568 return (ToRegA && !regsAreCompatible(FromRegB, ToRegA, TRI));
Evan Chenge6f350d2009-03-30 21:34:07 +0000569}
570
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000571/// convertInstTo3Addr - Convert the specified two-address instruction into a
Evan Chenge6f350d2009-03-30 21:34:07 +0000572/// three address one. Return true if this transformation was successful.
573bool
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000574TwoAddressInstructionPass::convertInstTo3Addr(MachineBasicBlock::iterator &mi,
Evan Chenge6f350d2009-03-30 21:34:07 +0000575 MachineBasicBlock::iterator &nmi,
Evan Cheng4d96c632011-02-10 02:20:55 +0000576 unsigned RegA, unsigned RegB,
577 unsigned Dist) {
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000578 // FIXME: Why does convertToThreeAddress() need an iterator reference?
579 MachineFunction::iterator MFI = MBB;
580 MachineInstr *NewMI = TII->convertToThreeAddress(MFI, mi, LV);
581 assert(MBB == MFI && "convertToThreeAddress changed iterator reference");
Jakob Stoklund Olesen96e6da42012-10-26 23:05:13 +0000582 if (!NewMI)
583 return false;
Evan Chenge6f350d2009-03-30 21:34:07 +0000584
Jakob Stoklund Olesen96e6da42012-10-26 23:05:13 +0000585 DEBUG(dbgs() << "2addr: CONVERTING 2-ADDR: " << *mi);
586 DEBUG(dbgs() << "2addr: TO 3-ADDR: " << *NewMI);
587 bool Sunk = false;
Jakob Stoklund Olesen5bfdedf2012-08-03 22:58:34 +0000588
Cameron Zwarich61892882013-02-20 22:10:02 +0000589 if (LIS)
590 LIS->ReplaceMachineInstrInMaps(mi, NewMI);
Evan Chenge6f350d2009-03-30 21:34:07 +0000591
Jakob Stoklund Olesen96e6da42012-10-26 23:05:13 +0000592 if (NewMI->findRegisterUseOperand(RegB, false, TRI))
593 // FIXME: Temporary workaround. If the new instruction doesn't
594 // uses RegB, convertToThreeAddress must have created more
595 // then one instruction.
596 Sunk = sink3AddrInstruction(NewMI, RegB, mi);
Evan Chenge6f350d2009-03-30 21:34:07 +0000597
Jakob Stoklund Olesen96e6da42012-10-26 23:05:13 +0000598 MBB->erase(mi); // Nuke the old inst.
Evan Cheng4d96c632011-02-10 02:20:55 +0000599
Jakob Stoklund Olesen96e6da42012-10-26 23:05:13 +0000600 if (!Sunk) {
601 DistanceMap.insert(std::make_pair(NewMI, Dist));
602 mi = NewMI;
603 nmi = llvm::next(mi);
Evan Chenge6f350d2009-03-30 21:34:07 +0000604 }
605
Jakob Stoklund Olesen96e6da42012-10-26 23:05:13 +0000606 // Update source and destination register maps.
607 SrcRegMap.erase(RegA);
608 DstRegMap.erase(RegB);
609 return true;
Evan Chenge6f350d2009-03-30 21:34:07 +0000610}
611
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000612/// scanUses - Scan forward recursively for only uses, update maps if the use
Evan Chengf06e6c22011-03-02 01:08:17 +0000613/// is a copy or a two-address instruction.
614void
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000615TwoAddressInstructionPass::scanUses(unsigned DstReg) {
Evan Chengf06e6c22011-03-02 01:08:17 +0000616 SmallVector<unsigned, 4> VirtRegPairs;
617 bool IsDstPhys;
618 bool IsCopy = false;
619 unsigned NewReg = 0;
620 unsigned Reg = DstReg;
621 while (MachineInstr *UseMI = findOnlyInterestingUse(Reg, MBB, MRI, TII,IsCopy,
622 NewReg, IsDstPhys)) {
623 if (IsCopy && !Processed.insert(UseMI))
624 break;
625
626 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(UseMI);
627 if (DI != DistanceMap.end())
628 // Earlier in the same MBB.Reached via a back edge.
629 break;
630
631 if (IsDstPhys) {
632 VirtRegPairs.push_back(NewReg);
633 break;
634 }
635 bool isNew = SrcRegMap.insert(std::make_pair(NewReg, Reg)).second;
636 if (!isNew)
637 assert(SrcRegMap[NewReg] == Reg && "Can't map to two src registers!");
638 VirtRegPairs.push_back(NewReg);
639 Reg = NewReg;
640 }
641
642 if (!VirtRegPairs.empty()) {
643 unsigned ToReg = VirtRegPairs.back();
644 VirtRegPairs.pop_back();
645 while (!VirtRegPairs.empty()) {
646 unsigned FromReg = VirtRegPairs.back();
647 VirtRegPairs.pop_back();
648 bool isNew = DstRegMap.insert(std::make_pair(FromReg, ToReg)).second;
649 if (!isNew)
650 assert(DstRegMap[FromReg] == ToReg &&"Can't map to two dst registers!");
651 ToReg = FromReg;
652 }
653 bool isNew = DstRegMap.insert(std::make_pair(DstReg, ToReg)).second;
654 if (!isNew)
655 assert(DstRegMap[DstReg] == ToReg && "Can't map to two dst registers!");
656 }
657}
658
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000659/// processCopy - If the specified instruction is not yet processed, process it
Evan Cheng870b8072009-03-01 02:03:43 +0000660/// if it's a copy. For a copy instruction, we find the physical registers the
661/// source and destination registers might be mapped to. These are kept in
662/// point-to maps used to determine future optimizations. e.g.
663/// v1024 = mov r0
664/// v1025 = mov r1
665/// v1026 = add v1024, v1025
666/// r1 = mov r1026
667/// If 'add' is a two-address instruction, v1024, v1026 are both potentially
668/// coalesced to r0 (from the input side). v1025 is mapped to r1. v1026 is
669/// potentially joined with r1 on the output side. It's worthwhile to commute
670/// 'add' to eliminate a copy.
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000671void TwoAddressInstructionPass::processCopy(MachineInstr *MI) {
Evan Cheng870b8072009-03-01 02:03:43 +0000672 if (Processed.count(MI))
673 return;
674
675 bool IsSrcPhys, IsDstPhys;
676 unsigned SrcReg, DstReg;
677 if (!isCopyToReg(*MI, TII, SrcReg, DstReg, IsSrcPhys, IsDstPhys))
678 return;
679
680 if (IsDstPhys && !IsSrcPhys)
681 DstRegMap.insert(std::make_pair(SrcReg, DstReg));
682 else if (!IsDstPhys && IsSrcPhys) {
Evan Cheng3005ed62009-04-13 20:04:24 +0000683 bool isNew = SrcRegMap.insert(std::make_pair(DstReg, SrcReg)).second;
684 if (!isNew)
685 assert(SrcRegMap[DstReg] == SrcReg &&
686 "Can't map to two src physical registers!");
Evan Cheng870b8072009-03-01 02:03:43 +0000687
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000688 scanUses(DstReg);
Evan Cheng870b8072009-03-01 02:03:43 +0000689 }
690
691 Processed.insert(MI);
Evan Chengf06e6c22011-03-02 01:08:17 +0000692 return;
Evan Cheng870b8072009-03-01 02:03:43 +0000693}
694
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000695/// rescheduleMIBelowKill - If there is one more local instruction that reads
Evan Cheng2a4410d2011-11-14 19:48:55 +0000696/// 'Reg' and it kills 'Reg, consider moving the instruction below the kill
697/// instruction in order to eliminate the need for the copy.
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000698bool TwoAddressInstructionPass::
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000699rescheduleMIBelowKill(MachineBasicBlock::iterator &mi,
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000700 MachineBasicBlock::iterator &nmi,
701 unsigned Reg) {
Chandler Carruth7d532c82012-07-15 03:29:46 +0000702 // Bail immediately if we don't have LV available. We use it to find kills
703 // efficiently.
704 if (!LV)
705 return false;
706
Evan Cheng2a4410d2011-11-14 19:48:55 +0000707 MachineInstr *MI = &*mi;
Andrew Trick8247e0d2012-02-03 05:12:30 +0000708 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(MI);
Evan Cheng2a4410d2011-11-14 19:48:55 +0000709 if (DI == DistanceMap.end())
710 // Must be created from unfolded load. Don't waste time trying this.
711 return false;
712
Chandler Carruth7d532c82012-07-15 03:29:46 +0000713 MachineInstr *KillMI = LV->getVarInfo(Reg).findKill(MBB);
714 if (!KillMI || MI == KillMI || KillMI->isCopy() || KillMI->isCopyLike())
Evan Cheng2a4410d2011-11-14 19:48:55 +0000715 // Don't mess with copies, they may be coalesced later.
716 return false;
717
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000718 if (KillMI->hasUnmodeledSideEffects() || KillMI->isCall() ||
719 KillMI->isBranch() || KillMI->isTerminator())
Evan Cheng2a4410d2011-11-14 19:48:55 +0000720 // Don't move pass calls, etc.
721 return false;
722
723 unsigned DstReg;
724 if (isTwoAddrUse(*KillMI, Reg, DstReg))
725 return false;
726
Evan Chengf1784182011-11-15 06:26:51 +0000727 bool SeenStore = true;
Evan Cheng2a4410d2011-11-14 19:48:55 +0000728 if (!MI->isSafeToMove(TII, AA, SeenStore))
729 return false;
730
731 if (TII->getInstrLatency(InstrItins, MI) > 1)
732 // FIXME: Needs more sophisticated heuristics.
733 return false;
734
735 SmallSet<unsigned, 2> Uses;
Evan Cheng9bad88a2011-11-16 03:47:42 +0000736 SmallSet<unsigned, 2> Kills;
Evan Cheng2a4410d2011-11-14 19:48:55 +0000737 SmallSet<unsigned, 2> Defs;
738 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
739 const MachineOperand &MO = MI->getOperand(i);
740 if (!MO.isReg())
741 continue;
742 unsigned MOReg = MO.getReg();
743 if (!MOReg)
744 continue;
745 if (MO.isDef())
746 Defs.insert(MOReg);
Evan Cheng9bad88a2011-11-16 03:47:42 +0000747 else {
Evan Cheng2a4410d2011-11-14 19:48:55 +0000748 Uses.insert(MOReg);
Evan Cheng9bad88a2011-11-16 03:47:42 +0000749 if (MO.isKill() && MOReg != Reg)
750 Kills.insert(MOReg);
751 }
Evan Cheng2a4410d2011-11-14 19:48:55 +0000752 }
753
754 // Move the copies connected to MI down as well.
755 MachineBasicBlock::iterator From = MI;
756 MachineBasicBlock::iterator To = llvm::next(From);
757 while (To->isCopy() && Defs.count(To->getOperand(1).getReg())) {
758 Defs.insert(To->getOperand(0).getReg());
759 ++To;
760 }
761
762 // Check if the reschedule will not break depedencies.
763 unsigned NumVisited = 0;
764 MachineBasicBlock::iterator KillPos = KillMI;
765 ++KillPos;
766 for (MachineBasicBlock::iterator I = To; I != KillPos; ++I) {
767 MachineInstr *OtherMI = I;
768 // DBG_VALUE cannot be counted against the limit.
769 if (OtherMI->isDebugValue())
770 continue;
771 if (NumVisited > 10) // FIXME: Arbitrary limit to reduce compile time cost.
772 return false;
773 ++NumVisited;
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000774 if (OtherMI->hasUnmodeledSideEffects() || OtherMI->isCall() ||
775 OtherMI->isBranch() || OtherMI->isTerminator())
Evan Cheng2a4410d2011-11-14 19:48:55 +0000776 // Don't move pass calls, etc.
777 return false;
778 for (unsigned i = 0, e = OtherMI->getNumOperands(); i != e; ++i) {
779 const MachineOperand &MO = OtherMI->getOperand(i);
780 if (!MO.isReg())
781 continue;
782 unsigned MOReg = MO.getReg();
783 if (!MOReg)
784 continue;
785 if (MO.isDef()) {
786 if (Uses.count(MOReg))
787 // Physical register use would be clobbered.
788 return false;
789 if (!MO.isDead() && Defs.count(MOReg))
790 // May clobber a physical register def.
791 // FIXME: This may be too conservative. It's ok if the instruction
792 // is sunken completely below the use.
793 return false;
794 } else {
795 if (Defs.count(MOReg))
796 return false;
Evan Cheng9bad88a2011-11-16 03:47:42 +0000797 if (MOReg != Reg &&
798 ((MO.isKill() && Uses.count(MOReg)) || Kills.count(MOReg)))
Evan Cheng2a4410d2011-11-14 19:48:55 +0000799 // Don't want to extend other live ranges and update kills.
800 return false;
Chandler Carruth7d532c82012-07-15 03:29:46 +0000801 if (MOReg == Reg && !MO.isKill())
802 // We can't schedule across a use of the register in question.
803 return false;
804 // Ensure that if this is register in question, its the kill we expect.
805 assert((MOReg != Reg || OtherMI == KillMI) &&
806 "Found multiple kills of a register in a basic block");
Evan Cheng2a4410d2011-11-14 19:48:55 +0000807 }
808 }
809 }
810
811 // Move debug info as well.
Evan Cheng8aee7d82011-11-14 21:11:15 +0000812 while (From != MBB->begin() && llvm::prior(From)->isDebugValue())
813 --From;
Evan Cheng2a4410d2011-11-14 19:48:55 +0000814
815 // Copies following MI may have been moved as well.
816 nmi = To;
817 MBB->splice(KillPos, MBB, From, To);
818 DistanceMap.erase(DI);
819
Chandler Carruth7d532c82012-07-15 03:29:46 +0000820 // Update live variables
821 LV->removeVirtualRegisterKilled(Reg, KillMI);
822 LV->addVirtualRegisterKilled(Reg, MI);
Jakob Stoklund Olesen5bfdedf2012-08-03 22:58:34 +0000823 if (LIS)
824 LIS->handleMove(MI);
Evan Cheng2a4410d2011-11-14 19:48:55 +0000825
Jakob Stoklund Olesena532bce2012-07-17 17:57:23 +0000826 DEBUG(dbgs() << "\trescheduled below kill: " << *KillMI);
Evan Cheng2a4410d2011-11-14 19:48:55 +0000827 return true;
828}
829
830/// isDefTooClose - Return true if the re-scheduling will put the given
831/// instruction too close to the defs of its register dependencies.
832bool TwoAddressInstructionPass::isDefTooClose(unsigned Reg, unsigned Dist,
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000833 MachineInstr *MI) {
Evan Cheng2a4410d2011-11-14 19:48:55 +0000834 for (MachineRegisterInfo::def_iterator DI = MRI->def_begin(Reg),
835 DE = MRI->def_end(); DI != DE; ++DI) {
836 MachineInstr *DefMI = &*DI;
837 if (DefMI->getParent() != MBB || DefMI->isCopy() || DefMI->isCopyLike())
838 continue;
839 if (DefMI == MI)
840 return true; // MI is defining something KillMI uses
841 DenseMap<MachineInstr*, unsigned>::iterator DDI = DistanceMap.find(DefMI);
842 if (DDI == DistanceMap.end())
843 return true; // Below MI
844 unsigned DefDist = DDI->second;
845 assert(Dist > DefDist && "Visited def already?");
Andrew Trickb7e02892012-06-05 21:11:27 +0000846 if (TII->getInstrLatency(InstrItins, DefMI) > (Dist - DefDist))
Evan Cheng2a4410d2011-11-14 19:48:55 +0000847 return true;
848 }
849 return false;
850}
851
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000852/// rescheduleKillAboveMI - If there is one more local instruction that reads
Evan Cheng2a4410d2011-11-14 19:48:55 +0000853/// 'Reg' and it kills 'Reg, consider moving the kill instruction above the
854/// current two-address instruction in order to eliminate the need for the
855/// copy.
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000856bool TwoAddressInstructionPass::
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000857rescheduleKillAboveMI(MachineBasicBlock::iterator &mi,
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000858 MachineBasicBlock::iterator &nmi,
859 unsigned Reg) {
Chandler Carruth7d532c82012-07-15 03:29:46 +0000860 // Bail immediately if we don't have LV available. We use it to find kills
861 // efficiently.
862 if (!LV)
863 return false;
864
Evan Cheng2a4410d2011-11-14 19:48:55 +0000865 MachineInstr *MI = &*mi;
866 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(MI);
867 if (DI == DistanceMap.end())
868 // Must be created from unfolded load. Don't waste time trying this.
869 return false;
870
Chandler Carruth7d532c82012-07-15 03:29:46 +0000871 MachineInstr *KillMI = LV->getVarInfo(Reg).findKill(MBB);
872 if (!KillMI || MI == KillMI || KillMI->isCopy() || KillMI->isCopyLike())
Evan Cheng2a4410d2011-11-14 19:48:55 +0000873 // Don't mess with copies, they may be coalesced later.
874 return false;
875
876 unsigned DstReg;
877 if (isTwoAddrUse(*KillMI, Reg, DstReg))
878 return false;
879
Evan Chengf1784182011-11-15 06:26:51 +0000880 bool SeenStore = true;
Evan Cheng2a4410d2011-11-14 19:48:55 +0000881 if (!KillMI->isSafeToMove(TII, AA, SeenStore))
882 return false;
883
884 SmallSet<unsigned, 2> Uses;
885 SmallSet<unsigned, 2> Kills;
886 SmallSet<unsigned, 2> Defs;
887 SmallSet<unsigned, 2> LiveDefs;
888 for (unsigned i = 0, e = KillMI->getNumOperands(); i != e; ++i) {
889 const MachineOperand &MO = KillMI->getOperand(i);
890 if (!MO.isReg())
891 continue;
892 unsigned MOReg = MO.getReg();
893 if (MO.isUse()) {
894 if (!MOReg)
895 continue;
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000896 if (isDefTooClose(MOReg, DI->second, MI))
Evan Cheng2a4410d2011-11-14 19:48:55 +0000897 return false;
Chandler Carruth7d532c82012-07-15 03:29:46 +0000898 if (MOReg == Reg && !MO.isKill())
899 return false;
Evan Cheng2a4410d2011-11-14 19:48:55 +0000900 Uses.insert(MOReg);
901 if (MO.isKill() && MOReg != Reg)
902 Kills.insert(MOReg);
903 } else if (TargetRegisterInfo::isPhysicalRegister(MOReg)) {
904 Defs.insert(MOReg);
905 if (!MO.isDead())
906 LiveDefs.insert(MOReg);
907 }
908 }
909
910 // Check if the reschedule will not break depedencies.
911 unsigned NumVisited = 0;
912 MachineBasicBlock::iterator KillPos = KillMI;
913 for (MachineBasicBlock::iterator I = mi; I != KillPos; ++I) {
914 MachineInstr *OtherMI = I;
915 // DBG_VALUE cannot be counted against the limit.
916 if (OtherMI->isDebugValue())
917 continue;
918 if (NumVisited > 10) // FIXME: Arbitrary limit to reduce compile time cost.
919 return false;
920 ++NumVisited;
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000921 if (OtherMI->hasUnmodeledSideEffects() || OtherMI->isCall() ||
922 OtherMI->isBranch() || OtherMI->isTerminator())
Evan Cheng2a4410d2011-11-14 19:48:55 +0000923 // Don't move pass calls, etc.
924 return false;
Evan Chengae7db7a2011-11-16 03:05:12 +0000925 SmallVector<unsigned, 2> OtherDefs;
Evan Cheng2a4410d2011-11-14 19:48:55 +0000926 for (unsigned i = 0, e = OtherMI->getNumOperands(); i != e; ++i) {
927 const MachineOperand &MO = OtherMI->getOperand(i);
928 if (!MO.isReg())
929 continue;
930 unsigned MOReg = MO.getReg();
931 if (!MOReg)
932 continue;
933 if (MO.isUse()) {
934 if (Defs.count(MOReg))
935 // Moving KillMI can clobber the physical register if the def has
936 // not been seen.
937 return false;
938 if (Kills.count(MOReg))
939 // Don't want to extend other live ranges and update kills.
940 return false;
Chandler Carruth7d532c82012-07-15 03:29:46 +0000941 if (OtherMI != MI && MOReg == Reg && !MO.isKill())
942 // We can't schedule across a use of the register in question.
943 return false;
Evan Cheng2a4410d2011-11-14 19:48:55 +0000944 } else {
Evan Chengae7db7a2011-11-16 03:05:12 +0000945 OtherDefs.push_back(MOReg);
Evan Cheng2a4410d2011-11-14 19:48:55 +0000946 }
947 }
Evan Chengae7db7a2011-11-16 03:05:12 +0000948
949 for (unsigned i = 0, e = OtherDefs.size(); i != e; ++i) {
950 unsigned MOReg = OtherDefs[i];
951 if (Uses.count(MOReg))
952 return false;
953 if (TargetRegisterInfo::isPhysicalRegister(MOReg) &&
954 LiveDefs.count(MOReg))
955 return false;
956 // Physical register def is seen.
957 Defs.erase(MOReg);
958 }
Evan Cheng2a4410d2011-11-14 19:48:55 +0000959 }
960
961 // Move the old kill above MI, don't forget to move debug info as well.
962 MachineBasicBlock::iterator InsertPos = mi;
Evan Cheng8aee7d82011-11-14 21:11:15 +0000963 while (InsertPos != MBB->begin() && llvm::prior(InsertPos)->isDebugValue())
964 --InsertPos;
Evan Cheng2a4410d2011-11-14 19:48:55 +0000965 MachineBasicBlock::iterator From = KillMI;
966 MachineBasicBlock::iterator To = llvm::next(From);
967 while (llvm::prior(From)->isDebugValue())
968 --From;
969 MBB->splice(InsertPos, MBB, From, To);
970
Evan Cheng2bee6a82011-11-16 03:33:08 +0000971 nmi = llvm::prior(InsertPos); // Backtrack so we process the moved instr.
Evan Cheng2a4410d2011-11-14 19:48:55 +0000972 DistanceMap.erase(DI);
973
Chandler Carruth7d532c82012-07-15 03:29:46 +0000974 // Update live variables
975 LV->removeVirtualRegisterKilled(Reg, KillMI);
976 LV->addVirtualRegisterKilled(Reg, MI);
Jakob Stoklund Olesen5bfdedf2012-08-03 22:58:34 +0000977 if (LIS)
978 LIS->handleMove(KillMI);
Chandler Carruth7d532c82012-07-15 03:29:46 +0000979
Jakob Stoklund Olesena532bce2012-07-17 17:57:23 +0000980 DEBUG(dbgs() << "\trescheduled kill: " << *KillMI);
Evan Cheng2a4410d2011-11-14 19:48:55 +0000981 return true;
982}
983
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000984/// tryInstructionTransform - For the case where an instruction has a single
Bob Wilsoncc80df92009-09-03 20:58:42 +0000985/// pair of tied register operands, attempt some transformations that may
986/// either eliminate the tied operands or improve the opportunities for
Lang Hamesf31ceaf2012-04-09 20:17:30 +0000987/// coalescing away the register copy. Returns true if no copy needs to be
988/// inserted to untie mi's operands (either because they were untied, or
989/// because mi was rescheduled, and will be visited again later).
Bob Wilsoncc80df92009-09-03 20:58:42 +0000990bool TwoAddressInstructionPass::
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000991tryInstructionTransform(MachineBasicBlock::iterator &mi,
Bob Wilsoncc80df92009-09-03 20:58:42 +0000992 MachineBasicBlock::iterator &nmi,
Jakob Stoklund Olesen002ef572012-10-26 22:06:00 +0000993 unsigned SrcIdx, unsigned DstIdx, unsigned Dist) {
Evan Chengc3aa7c52011-11-16 18:44:48 +0000994 if (OptLevel == CodeGenOpt::None)
995 return false;
996
Evan Cheng2a4410d2011-11-14 19:48:55 +0000997 MachineInstr &MI = *mi;
Evan Cheng2a4410d2011-11-14 19:48:55 +0000998 unsigned regA = MI.getOperand(DstIdx).getReg();
999 unsigned regB = MI.getOperand(SrcIdx).getReg();
Bob Wilsoncc80df92009-09-03 20:58:42 +00001000
1001 assert(TargetRegisterInfo::isVirtualRegister(regB) &&
1002 "cannot make instruction into two-address form");
Evan Cheng2a4410d2011-11-14 19:48:55 +00001003 bool regBKilled = isKilled(MI, regB, MRI, TII);
Bob Wilsoncc80df92009-09-03 20:58:42 +00001004
Evan Chengd99d68b2012-05-03 01:45:13 +00001005 if (TargetRegisterInfo::isVirtualRegister(regA))
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +00001006 scanUses(regA);
Evan Chengd99d68b2012-05-03 01:45:13 +00001007
Bob Wilsoncc80df92009-09-03 20:58:42 +00001008 // Check if it is profitable to commute the operands.
1009 unsigned SrcOp1, SrcOp2;
1010 unsigned regC = 0;
1011 unsigned regCIdx = ~0U;
1012 bool TryCommute = false;
1013 bool AggressiveCommute = false;
Evan Cheng5a96b3d2011-12-07 07:15:52 +00001014 if (MI.isCommutable() && MI.getNumOperands() >= 3 &&
Evan Cheng2a4410d2011-11-14 19:48:55 +00001015 TII->findCommutedOpIndices(&MI, SrcOp1, SrcOp2)) {
Bob Wilsoncc80df92009-09-03 20:58:42 +00001016 if (SrcIdx == SrcOp1)
1017 regCIdx = SrcOp2;
1018 else if (SrcIdx == SrcOp2)
1019 regCIdx = SrcOp1;
1020
1021 if (regCIdx != ~0U) {
Evan Cheng2a4410d2011-11-14 19:48:55 +00001022 regC = MI.getOperand(regCIdx).getReg();
1023 if (!regBKilled && isKilled(MI, regC, MRI, TII))
Bob Wilsoncc80df92009-09-03 20:58:42 +00001024 // If C dies but B does not, swap the B and C operands.
1025 // This makes the live ranges of A and C joinable.
1026 TryCommute = true;
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +00001027 else if (isProfitableToCommute(regA, regB, regC, &MI, Dist)) {
Bob Wilsoncc80df92009-09-03 20:58:42 +00001028 TryCommute = true;
1029 AggressiveCommute = true;
1030 }
1031 }
1032 }
1033
1034 // If it's profitable to commute, try to do so.
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +00001035 if (TryCommute && commuteInstruction(mi, regB, regC, Dist)) {
Bob Wilsoncc80df92009-09-03 20:58:42 +00001036 ++NumCommuted;
1037 if (AggressiveCommute)
1038 ++NumAggrCommuted;
1039 return false;
1040 }
1041
Evan Cheng2a4410d2011-11-14 19:48:55 +00001042 // If there is one more use of regB later in the same MBB, consider
1043 // re-schedule this MI below it.
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +00001044 if (rescheduleMIBelowKill(mi, nmi, regB)) {
Evan Cheng2a4410d2011-11-14 19:48:55 +00001045 ++NumReSchedDowns;
Lang Hamesf31ceaf2012-04-09 20:17:30 +00001046 return true;
Evan Cheng2a4410d2011-11-14 19:48:55 +00001047 }
1048
Evan Cheng5a96b3d2011-12-07 07:15:52 +00001049 if (MI.isConvertibleTo3Addr()) {
Bob Wilsoncc80df92009-09-03 20:58:42 +00001050 // This instruction is potentially convertible to a true
1051 // three-address instruction. Check if it is profitable.
Evan Chengf06e6c22011-03-02 01:08:17 +00001052 if (!regBKilled || isProfitableToConv3Addr(regA, regB)) {
Bob Wilsoncc80df92009-09-03 20:58:42 +00001053 // Try to convert it.
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +00001054 if (convertInstTo3Addr(mi, nmi, regA, regB, Dist)) {
Bob Wilsoncc80df92009-09-03 20:58:42 +00001055 ++NumConvertedTo3Addr;
1056 return true; // Done with this instruction.
1057 }
1058 }
1059 }
Dan Gohman584fedf2010-06-21 22:17:20 +00001060
Evan Cheng2a4410d2011-11-14 19:48:55 +00001061 // If there is one more use of regB later in the same MBB, consider
1062 // re-schedule it before this MI if it's legal.
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +00001063 if (rescheduleKillAboveMI(mi, nmi, regB)) {
Evan Cheng2a4410d2011-11-14 19:48:55 +00001064 ++NumReSchedUps;
Lang Hamesf31ceaf2012-04-09 20:17:30 +00001065 return true;
Evan Cheng2a4410d2011-11-14 19:48:55 +00001066 }
1067
Dan Gohman584fedf2010-06-21 22:17:20 +00001068 // If this is an instruction with a load folded into it, try unfolding
1069 // the load, e.g. avoid this:
1070 // movq %rdx, %rcx
1071 // addq (%rax), %rcx
1072 // in favor of this:
1073 // movq (%rax), %rcx
1074 // addq %rdx, %rcx
1075 // because it's preferable to schedule a load than a register copy.
Evan Cheng5a96b3d2011-12-07 07:15:52 +00001076 if (MI.mayLoad() && !regBKilled) {
Dan Gohman584fedf2010-06-21 22:17:20 +00001077 // Determine if a load can be unfolded.
1078 unsigned LoadRegIndex;
1079 unsigned NewOpc =
Evan Cheng2a4410d2011-11-14 19:48:55 +00001080 TII->getOpcodeAfterMemoryUnfold(MI.getOpcode(),
Dan Gohman584fedf2010-06-21 22:17:20 +00001081 /*UnfoldLoad=*/true,
1082 /*UnfoldStore=*/false,
1083 &LoadRegIndex);
1084 if (NewOpc != 0) {
Evan Chenge837dea2011-06-28 19:10:37 +00001085 const MCInstrDesc &UnfoldMCID = TII->get(NewOpc);
1086 if (UnfoldMCID.getNumDefs() == 1) {
Dan Gohman584fedf2010-06-21 22:17:20 +00001087 // Unfold the load.
Evan Cheng2a4410d2011-11-14 19:48:55 +00001088 DEBUG(dbgs() << "2addr: UNFOLDING: " << MI);
Dan Gohman584fedf2010-06-21 22:17:20 +00001089 const TargetRegisterClass *RC =
Andrew Trickf12f6df2012-05-03 01:14:37 +00001090 TRI->getAllocatableClass(
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001091 TII->getRegClass(UnfoldMCID, LoadRegIndex, TRI, *MF));
Dan Gohman584fedf2010-06-21 22:17:20 +00001092 unsigned Reg = MRI->createVirtualRegister(RC);
1093 SmallVector<MachineInstr *, 2> NewMIs;
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001094 if (!TII->unfoldMemoryOperand(*MF, &MI, Reg,
Evan Cheng98ec91e2010-07-02 20:36:18 +00001095 /*UnfoldLoad=*/true,/*UnfoldStore=*/false,
1096 NewMIs)) {
1097 DEBUG(dbgs() << "2addr: ABANDONING UNFOLD\n");
1098 return false;
1099 }
Dan Gohman584fedf2010-06-21 22:17:20 +00001100 assert(NewMIs.size() == 2 &&
1101 "Unfolded a load into multiple instructions!");
1102 // The load was previously folded, so this is the only use.
1103 NewMIs[1]->addRegisterKilled(Reg, TRI);
1104
1105 // Tentatively insert the instructions into the block so that they
1106 // look "normal" to the transformation logic.
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +00001107 MBB->insert(mi, NewMIs[0]);
1108 MBB->insert(mi, NewMIs[1]);
Dan Gohman584fedf2010-06-21 22:17:20 +00001109
1110 DEBUG(dbgs() << "2addr: NEW LOAD: " << *NewMIs[0]
1111 << "2addr: NEW INST: " << *NewMIs[1]);
1112
1113 // Transform the instruction, now that it no longer has a load.
1114 unsigned NewDstIdx = NewMIs[1]->findRegisterDefOperandIdx(regA);
1115 unsigned NewSrcIdx = NewMIs[1]->findRegisterUseOperandIdx(regB);
1116 MachineBasicBlock::iterator NewMI = NewMIs[1];
1117 bool TransformSuccess =
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +00001118 tryInstructionTransform(NewMI, mi, NewSrcIdx, NewDstIdx, Dist);
Dan Gohman584fedf2010-06-21 22:17:20 +00001119 if (TransformSuccess ||
1120 NewMIs[1]->getOperand(NewSrcIdx).isKill()) {
1121 // Success, or at least we made an improvement. Keep the unfolded
1122 // instructions and discard the original.
1123 if (LV) {
Evan Cheng2a4410d2011-11-14 19:48:55 +00001124 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
1125 MachineOperand &MO = MI.getOperand(i);
Andrew Trick8247e0d2012-02-03 05:12:30 +00001126 if (MO.isReg() &&
Dan Gohman7aa7bc72010-06-22 00:32:04 +00001127 TargetRegisterInfo::isVirtualRegister(MO.getReg())) {
1128 if (MO.isUse()) {
Dan Gohmancc1ca982010-06-22 02:07:21 +00001129 if (MO.isKill()) {
1130 if (NewMIs[0]->killsRegister(MO.getReg()))
Evan Cheng2a4410d2011-11-14 19:48:55 +00001131 LV->replaceKillInstruction(MO.getReg(), &MI, NewMIs[0]);
Dan Gohmancc1ca982010-06-22 02:07:21 +00001132 else {
1133 assert(NewMIs[1]->killsRegister(MO.getReg()) &&
1134 "Kill missing after load unfold!");
Evan Cheng2a4410d2011-11-14 19:48:55 +00001135 LV->replaceKillInstruction(MO.getReg(), &MI, NewMIs[1]);
Dan Gohmancc1ca982010-06-22 02:07:21 +00001136 }
1137 }
Evan Cheng2a4410d2011-11-14 19:48:55 +00001138 } else if (LV->removeVirtualRegisterDead(MO.getReg(), &MI)) {
Dan Gohmancc1ca982010-06-22 02:07:21 +00001139 if (NewMIs[1]->registerDefIsDead(MO.getReg()))
1140 LV->addVirtualRegisterDead(MO.getReg(), NewMIs[1]);
1141 else {
1142 assert(NewMIs[0]->registerDefIsDead(MO.getReg()) &&
1143 "Dead flag missing after load unfold!");
1144 LV->addVirtualRegisterDead(MO.getReg(), NewMIs[0]);
1145 }
1146 }
Dan Gohman7aa7bc72010-06-22 00:32:04 +00001147 }
Dan Gohman584fedf2010-06-21 22:17:20 +00001148 }
1149 LV->addVirtualRegisterKilled(Reg, NewMIs[1]);
1150 }
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001151
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001152 SmallVector<unsigned, 4> OrigRegs;
1153 if (LIS) {
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001154 for (MachineInstr::const_mop_iterator MOI = MI.operands_begin(),
1155 MOE = MI.operands_end(); MOI != MOE; ++MOI) {
1156 if (MOI->isReg())
1157 OrigRegs.push_back(MOI->getReg());
1158 }
1159 }
1160
Evan Cheng2a4410d2011-11-14 19:48:55 +00001161 MI.eraseFromParent();
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001162
1163 // Update LiveIntervals.
Cameron Zwarichc5b61352013-02-20 22:10:00 +00001164 if (LIS) {
1165 MachineBasicBlock::iterator Begin(NewMIs[0]);
1166 MachineBasicBlock::iterator End(NewMIs[1]);
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001167 LIS->repairIntervalsInRange(MBB, Begin, End, OrigRegs);
Cameron Zwarichc5b61352013-02-20 22:10:00 +00001168 }
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001169
Dan Gohman584fedf2010-06-21 22:17:20 +00001170 mi = NewMIs[1];
1171 if (TransformSuccess)
1172 return true;
1173 } else {
1174 // Transforming didn't eliminate the tie and didn't lead to an
1175 // improvement. Clean up the unfolded instructions and keep the
1176 // original.
1177 DEBUG(dbgs() << "2addr: ABANDONING UNFOLD\n");
1178 NewMIs[0]->eraseFromParent();
1179 NewMIs[1]->eraseFromParent();
1180 }
1181 }
1182 }
1183 }
1184
Bob Wilsoncc80df92009-09-03 20:58:42 +00001185 return false;
1186}
1187
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001188// Collect tied operands of MI that need to be handled.
1189// Rewrite trivial cases immediately.
1190// Return true if any tied operands where found, including the trivial ones.
1191bool TwoAddressInstructionPass::
1192collectTiedOperands(MachineInstr *MI, TiedOperandMap &TiedOperands) {
1193 const MCInstrDesc &MCID = MI->getDesc();
1194 bool AnyOps = false;
Jakob Stoklund Olesenf363ebd2012-09-04 22:59:30 +00001195 unsigned NumOps = MI->getNumOperands();
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001196
1197 for (unsigned SrcIdx = 0; SrcIdx < NumOps; ++SrcIdx) {
1198 unsigned DstIdx = 0;
1199 if (!MI->isRegTiedToDefOperand(SrcIdx, &DstIdx))
1200 continue;
1201 AnyOps = true;
Jakob Stoklund Olesen8c5c0732012-08-07 22:47:06 +00001202 MachineOperand &SrcMO = MI->getOperand(SrcIdx);
1203 MachineOperand &DstMO = MI->getOperand(DstIdx);
1204 unsigned SrcReg = SrcMO.getReg();
1205 unsigned DstReg = DstMO.getReg();
1206 // Tied constraint already satisfied?
1207 if (SrcReg == DstReg)
1208 continue;
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001209
Jakob Stoklund Olesen8c5c0732012-08-07 22:47:06 +00001210 assert(SrcReg && SrcMO.isUse() && "two address instruction invalid");
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001211
1212 // Deal with <undef> uses immediately - simply rewrite the src operand.
Jakob Stoklund Olesen8c5c0732012-08-07 22:47:06 +00001213 if (SrcMO.isUndef()) {
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001214 // Constrain the DstReg register class if required.
1215 if (TargetRegisterInfo::isVirtualRegister(DstReg))
1216 if (const TargetRegisterClass *RC = TII->getRegClass(MCID, SrcIdx,
1217 TRI, *MF))
1218 MRI->constrainRegClass(DstReg, RC);
Jakob Stoklund Olesen8c5c0732012-08-07 22:47:06 +00001219 SrcMO.setReg(DstReg);
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001220 DEBUG(dbgs() << "\t\trewrite undef:\t" << *MI);
1221 continue;
1222 }
Jakob Stoklund Olesen8c5c0732012-08-07 22:47:06 +00001223 TiedOperands[SrcReg].push_back(std::make_pair(SrcIdx, DstIdx));
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001224 }
1225 return AnyOps;
1226}
1227
Jakob Stoklund Olesenae52fad2012-08-03 23:57:58 +00001228// Process a list of tied MI operands that all use the same source register.
1229// The tied pairs are of the form (SrcIdx, DstIdx).
1230void
1231TwoAddressInstructionPass::processTiedPairs(MachineInstr *MI,
1232 TiedPairList &TiedPairs,
1233 unsigned &Dist) {
1234 bool IsEarlyClobber = false;
Cameron Zwarich6cf93d72013-02-20 06:46:46 +00001235 for (unsigned tpi = 0, tpe = TiedPairs.size(); tpi != tpe; ++tpi) {
1236 const MachineOperand &DstMO = MI->getOperand(TiedPairs[tpi].second);
1237 IsEarlyClobber |= DstMO.isEarlyClobber();
1238 }
1239
Jakob Stoklund Olesenae52fad2012-08-03 23:57:58 +00001240 bool RemovedKillFlag = false;
1241 bool AllUsesCopied = true;
1242 unsigned LastCopiedReg = 0;
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001243 SlotIndex LastCopyIdx;
Jakob Stoklund Olesenae52fad2012-08-03 23:57:58 +00001244 unsigned RegB = 0;
1245 for (unsigned tpi = 0, tpe = TiedPairs.size(); tpi != tpe; ++tpi) {
1246 unsigned SrcIdx = TiedPairs[tpi].first;
1247 unsigned DstIdx = TiedPairs[tpi].second;
1248
1249 const MachineOperand &DstMO = MI->getOperand(DstIdx);
1250 unsigned RegA = DstMO.getReg();
Jakob Stoklund Olesenae52fad2012-08-03 23:57:58 +00001251
1252 // Grab RegB from the instruction because it may have changed if the
1253 // instruction was commuted.
1254 RegB = MI->getOperand(SrcIdx).getReg();
1255
1256 if (RegA == RegB) {
1257 // The register is tied to multiple destinations (or else we would
1258 // not have continued this far), but this use of the register
1259 // already matches the tied destination. Leave it.
1260 AllUsesCopied = false;
1261 continue;
1262 }
1263 LastCopiedReg = RegA;
1264
1265 assert(TargetRegisterInfo::isVirtualRegister(RegB) &&
1266 "cannot make instruction into two-address form");
1267
1268#ifndef NDEBUG
1269 // First, verify that we don't have a use of "a" in the instruction
1270 // (a = b + a for example) because our transformation will not
1271 // work. This should never occur because we are in SSA form.
1272 for (unsigned i = 0; i != MI->getNumOperands(); ++i)
1273 assert(i == DstIdx ||
1274 !MI->getOperand(i).isReg() ||
1275 MI->getOperand(i).getReg() != RegA);
1276#endif
1277
1278 // Emit a copy.
1279 BuildMI(*MI->getParent(), MI, MI->getDebugLoc(),
1280 TII->get(TargetOpcode::COPY), RegA).addReg(RegB);
1281
1282 // Update DistanceMap.
1283 MachineBasicBlock::iterator PrevMI = MI;
1284 --PrevMI;
1285 DistanceMap.insert(std::make_pair(PrevMI, Dist));
1286 DistanceMap[MI] = ++Dist;
1287
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001288 if (LIS) {
1289 LastCopyIdx = LIS->InsertMachineInstrInMaps(PrevMI).getRegSlot();
1290
1291 if (TargetRegisterInfo::isVirtualRegister(RegA)) {
1292 LiveInterval &LI = LIS->getInterval(RegA);
1293 VNInfo *VNI = LI.getNextValue(LastCopyIdx, LIS->getVNInfoAllocator());
1294 SlotIndex endIdx =
1295 LIS->getInstructionIndex(MI).getRegSlot(IsEarlyClobber);
1296 LI.addRange(LiveRange(LastCopyIdx, endIdx, VNI));
1297 }
1298 }
Jakob Stoklund Olesenae52fad2012-08-03 23:57:58 +00001299
1300 DEBUG(dbgs() << "\t\tprepend:\t" << *PrevMI);
1301
1302 MachineOperand &MO = MI->getOperand(SrcIdx);
1303 assert(MO.isReg() && MO.getReg() == RegB && MO.isUse() &&
1304 "inconsistent operand info for 2-reg pass");
1305 if (MO.isKill()) {
1306 MO.setIsKill(false);
1307 RemovedKillFlag = true;
1308 }
1309
1310 // Make sure regA is a legal regclass for the SrcIdx operand.
1311 if (TargetRegisterInfo::isVirtualRegister(RegA) &&
1312 TargetRegisterInfo::isVirtualRegister(RegB))
1313 MRI->constrainRegClass(RegA, MRI->getRegClass(RegB));
1314
1315 MO.setReg(RegA);
1316
1317 // Propagate SrcRegMap.
1318 SrcRegMap[RegA] = RegB;
1319 }
1320
1321
1322 if (AllUsesCopied) {
1323 if (!IsEarlyClobber) {
1324 // Replace other (un-tied) uses of regB with LastCopiedReg.
1325 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1326 MachineOperand &MO = MI->getOperand(i);
1327 if (MO.isReg() && MO.getReg() == RegB && MO.isUse()) {
1328 if (MO.isKill()) {
1329 MO.setIsKill(false);
1330 RemovedKillFlag = true;
1331 }
1332 MO.setReg(LastCopiedReg);
1333 }
1334 }
1335 }
1336
1337 // Update live variables for regB.
1338 if (RemovedKillFlag && LV && LV->getVarInfo(RegB).removeKill(MI)) {
1339 MachineBasicBlock::iterator PrevMI = MI;
1340 --PrevMI;
1341 LV->addVirtualRegisterKilled(RegB, PrevMI);
1342 }
1343
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001344 // Update LiveIntervals.
1345 if (LIS) {
1346 LiveInterval &LI = LIS->getInterval(RegB);
1347 SlotIndex MIIdx = LIS->getInstructionIndex(MI);
1348 LiveInterval::const_iterator I = LI.find(MIIdx);
1349 assert(I != LI.end() && "RegB must be live-in to use.");
1350
1351 SlotIndex UseIdx = MIIdx.getRegSlot(IsEarlyClobber);
1352 if (I->end == UseIdx)
1353 LI.removeRange(LastCopyIdx, UseIdx);
1354 }
1355
Jakob Stoklund Olesenae52fad2012-08-03 23:57:58 +00001356 } else if (RemovedKillFlag) {
1357 // Some tied uses of regB matched their destination registers, so
1358 // regB is still used in this instruction, but a kill flag was
1359 // removed from a different tied use of regB, so now we need to add
1360 // a kill flag to one of the remaining uses of regB.
1361 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1362 MachineOperand &MO = MI->getOperand(i);
1363 if (MO.isReg() && MO.getReg() == RegB && MO.isUse()) {
1364 MO.setIsKill(true);
1365 break;
1366 }
1367 }
1368 }
Jakob Stoklund Olesenae52fad2012-08-03 23:57:58 +00001369}
1370
Bill Wendling637980e2008-05-10 00:12:52 +00001371/// runOnMachineFunction - Reduce two-address instructions to two operands.
Alkis Evlogimenos71499de2003-12-18 13:06:04 +00001372///
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001373bool TwoAddressInstructionPass::runOnMachineFunction(MachineFunction &Func) {
1374 MF = &Func;
1375 const TargetMachine &TM = MF->getTarget();
1376 MRI = &MF->getRegInfo();
Evan Cheng875357d2008-03-13 06:37:55 +00001377 TII = TM.getInstrInfo();
1378 TRI = TM.getRegisterInfo();
Evan Cheng2a4410d2011-11-14 19:48:55 +00001379 InstrItins = TM.getInstrItineraryData();
Duncan Sands1465d612009-01-28 13:14:17 +00001380 LV = getAnalysisIfAvailable<LiveVariables>();
Jakob Stoklund Olesen5bfdedf2012-08-03 22:58:34 +00001381 LIS = getAnalysisIfAvailable<LiveIntervals>();
Dan Gohmana70dca12009-10-09 23:27:56 +00001382 AA = &getAnalysis<AliasAnalysis>();
Evan Chengc3aa7c52011-11-16 18:44:48 +00001383 OptLevel = TM.getOptLevel();
Alkis Evlogimenos71499de2003-12-18 13:06:04 +00001384
Misha Brukman75fa4e42004-07-22 15:26:23 +00001385 bool MadeChange = false;
Alkis Evlogimenos71499de2003-12-18 13:06:04 +00001386
David Greeneeb00b182010-01-05 01:24:21 +00001387 DEBUG(dbgs() << "********** REWRITING TWO-ADDR INSTRS **********\n");
Andrew Trick8247e0d2012-02-03 05:12:30 +00001388 DEBUG(dbgs() << "********** Function: "
Craig Topper96601ca2012-08-22 06:07:19 +00001389 << MF->getName() << '\n');
Alkis Evlogimenos3a9986f2004-02-18 00:35:06 +00001390
Jakob Stoklund Olesen73e7dce2011-07-29 22:51:22 +00001391 // This pass takes the function out of SSA form.
1392 MRI->leaveSSA();
1393
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001394 TiedOperandMap TiedOperands;
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +00001395 for (MachineFunction::iterator MBBI = MF->begin(), MBBE = MF->end();
1396 MBBI != MBBE; ++MBBI) {
1397 MBB = MBBI;
Evan Cheng7543e582008-06-18 07:49:14 +00001398 unsigned Dist = 0;
1399 DistanceMap.clear();
Evan Cheng870b8072009-03-01 02:03:43 +00001400 SrcRegMap.clear();
1401 DstRegMap.clear();
1402 Processed.clear();
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +00001403 for (MachineBasicBlock::iterator mi = MBB->begin(), me = MBB->end();
Evan Cheng7a963fa2008-03-27 01:27:25 +00001404 mi != me; ) {
Chris Lattner7896c9f2009-12-03 00:50:42 +00001405 MachineBasicBlock::iterator nmi = llvm::next(mi);
Dale Johannesenb8ff9342010-02-10 21:47:48 +00001406 if (mi->isDebugValue()) {
1407 mi = nmi;
1408 continue;
1409 }
Evan Chengf1250ee2010-03-23 20:36:12 +00001410
Jakob Stoklund Olesen8c3dccd2012-12-01 01:06:44 +00001411 // Expand REG_SEQUENCE instructions. This will position mi at the first
1412 // expanded instruction.
Evan Cheng3d720fb2010-05-05 18:45:40 +00001413 if (mi->isRegSequence())
Jakob Stoklund Olesen8c3dccd2012-12-01 01:06:44 +00001414 eliminateRegSequence(mi);
Evan Cheng3d720fb2010-05-05 18:45:40 +00001415
Evan Cheng7543e582008-06-18 07:49:14 +00001416 DistanceMap.insert(std::make_pair(mi, ++Dist));
Evan Cheng870b8072009-03-01 02:03:43 +00001417
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +00001418 processCopy(&*mi);
Evan Cheng870b8072009-03-01 02:03:43 +00001419
Bob Wilsoncc80df92009-09-03 20:58:42 +00001420 // First scan through all the tied register uses in this instruction
1421 // and record a list of pairs of tied operands for each register.
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001422 if (!collectTiedOperands(mi, TiedOperands)) {
1423 mi = nmi;
1424 continue;
Bob Wilsoncc80df92009-09-03 20:58:42 +00001425 }
Alkis Evlogimenos71499de2003-12-18 13:06:04 +00001426
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001427 ++NumTwoAddressInstrs;
Jakob Stoklund Olesenae52fad2012-08-03 23:57:58 +00001428 MadeChange = true;
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001429 DEBUG(dbgs() << '\t' << *mi);
1430
Chandler Carruth32d75be2012-07-18 18:58:22 +00001431 // If the instruction has a single pair of tied operands, try some
1432 // transformations that may either eliminate the tied operands or
1433 // improve the opportunities for coalescing away the register copy.
1434 if (TiedOperands.size() == 1) {
1435 SmallVector<std::pair<unsigned, unsigned>, 4> &TiedPairs
1436 = TiedOperands.begin()->second;
1437 if (TiedPairs.size() == 1) {
1438 unsigned SrcIdx = TiedPairs[0].first;
1439 unsigned DstIdx = TiedPairs[0].second;
1440 unsigned SrcReg = mi->getOperand(SrcIdx).getReg();
1441 unsigned DstReg = mi->getOperand(DstIdx).getReg();
1442 if (SrcReg != DstReg &&
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +00001443 tryInstructionTransform(mi, nmi, SrcIdx, DstIdx, Dist)) {
Chandler Carruth32d75be2012-07-18 18:58:22 +00001444 // The tied operands have been eliminated or shifted further down the
1445 // block to ease elimination. Continue processing with 'nmi'.
1446 TiedOperands.clear();
1447 mi = nmi;
1448 continue;
1449 }
1450 }
1451 }
1452
Bob Wilsoncc80df92009-09-03 20:58:42 +00001453 // Now iterate over the information collected above.
1454 for (TiedOperandMap::iterator OI = TiedOperands.begin(),
1455 OE = TiedOperands.end(); OI != OE; ++OI) {
Jakob Stoklund Olesenae52fad2012-08-03 23:57:58 +00001456 processTiedPairs(mi, OI->second, Dist);
David Greeneeb00b182010-01-05 01:24:21 +00001457 DEBUG(dbgs() << "\t\trewrite to:\t" << *mi);
Jakob Stoklund Olesen351c8812012-06-25 03:27:12 +00001458 }
Bill Wendling637980e2008-05-10 00:12:52 +00001459
Jakob Stoklund Olesen351c8812012-06-25 03:27:12 +00001460 // Rewrite INSERT_SUBREG as COPY now that we no longer need SSA form.
1461 if (mi->isInsertSubreg()) {
1462 // From %reg = INSERT_SUBREG %reg, %subreg, subidx
1463 // To %reg:subidx = COPY %subreg
1464 unsigned SubIdx = mi->getOperand(3).getImm();
1465 mi->RemoveOperand(3);
1466 assert(mi->getOperand(0).getSubReg() == 0 && "Unexpected subreg idx");
1467 mi->getOperand(0).setSubReg(SubIdx);
1468 mi->getOperand(0).setIsUndef(mi->getOperand(1).isUndef());
1469 mi->RemoveOperand(1);
1470 mi->setDesc(TII->get(TargetOpcode::COPY));
1471 DEBUG(dbgs() << "\t\tconvert to:\t" << *mi);
Jakob Stoklund Olesened2185e2010-07-06 23:26:25 +00001472 }
1473
Bob Wilsoncc80df92009-09-03 20:58:42 +00001474 // Clear TiedOperands here instead of at the top of the loop
1475 // since most instructions do not have tied operands.
1476 TiedOperands.clear();
Evan Cheng7a963fa2008-03-27 01:27:25 +00001477 mi = nmi;
Misha Brukman75fa4e42004-07-22 15:26:23 +00001478 }
1479 }
1480
Cameron Zwarich767e0432013-02-20 06:46:34 +00001481 if (LIS)
1482 MF->verify(this, "After two-address instruction pass");
1483
Misha Brukman75fa4e42004-07-22 15:26:23 +00001484 return MadeChange;
Alkis Evlogimenos71499de2003-12-18 13:06:04 +00001485}
Evan Cheng3d720fb2010-05-05 18:45:40 +00001486
Jakob Stoklund Olesen8c3dccd2012-12-01 01:06:44 +00001487/// Eliminate a REG_SEQUENCE instruction as part of the de-ssa process.
Evan Cheng3d720fb2010-05-05 18:45:40 +00001488///
Jakob Stoklund Olesen8c3dccd2012-12-01 01:06:44 +00001489/// The instruction is turned into a sequence of sub-register copies:
1490///
1491/// %dst = REG_SEQUENCE %v1, ssub0, %v2, ssub1
1492///
1493/// Becomes:
1494///
1495/// %dst:ssub0<def,undef> = COPY %v1
1496/// %dst:ssub1<def> = COPY %v2
1497///
1498void TwoAddressInstructionPass::
1499eliminateRegSequence(MachineBasicBlock::iterator &MBBI) {
1500 MachineInstr *MI = MBBI;
1501 unsigned DstReg = MI->getOperand(0).getReg();
1502 if (MI->getOperand(0).getSubReg() ||
1503 TargetRegisterInfo::isPhysicalRegister(DstReg) ||
1504 !(MI->getNumOperands() & 1)) {
1505 DEBUG(dbgs() << "Illegal REG_SEQUENCE instruction:" << *MI);
1506 llvm_unreachable(0);
Evan Cheng3d720fb2010-05-05 18:45:40 +00001507 }
1508
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001509 SmallVector<unsigned, 4> OrigRegs;
1510 if (LIS) {
1511 OrigRegs.push_back(MI->getOperand(0).getReg());
1512 for (unsigned i = 1, e = MI->getNumOperands(); i < e; i += 2)
1513 OrigRegs.push_back(MI->getOperand(i).getReg());
1514 }
1515
Jakob Stoklund Olesen8c3dccd2012-12-01 01:06:44 +00001516 bool DefEmitted = false;
1517 for (unsigned i = 1, e = MI->getNumOperands(); i < e; i += 2) {
1518 MachineOperand &UseMO = MI->getOperand(i);
1519 unsigned SrcReg = UseMO.getReg();
1520 unsigned SubIdx = MI->getOperand(i+1).getImm();
1521 // Nothing needs to be inserted for <undef> operands.
1522 if (UseMO.isUndef())
1523 continue;
1524
1525 // Defer any kill flag to the last operand using SrcReg. Otherwise, we
1526 // might insert a COPY that uses SrcReg after is was killed.
1527 bool isKill = UseMO.isKill();
1528 if (isKill)
1529 for (unsigned j = i + 2; j < e; j += 2)
1530 if (MI->getOperand(j).getReg() == SrcReg) {
1531 MI->getOperand(j).setIsKill();
1532 UseMO.setIsKill(false);
1533 isKill = false;
1534 break;
1535 }
1536
1537 // Insert the sub-register copy.
1538 MachineInstr *CopyMI = BuildMI(*MI->getParent(), MI, MI->getDebugLoc(),
1539 TII->get(TargetOpcode::COPY))
1540 .addReg(DstReg, RegState::Define, SubIdx)
1541 .addOperand(UseMO);
1542
1543 // The first def needs an <undef> flag because there is no live register
1544 // before it.
1545 if (!DefEmitted) {
1546 CopyMI->getOperand(0).setIsUndef(true);
1547 // Return an iterator pointing to the first inserted instr.
1548 MBBI = CopyMI;
1549 }
1550 DefEmitted = true;
1551
1552 // Update LiveVariables' kill info.
1553 if (LV && isKill && !TargetRegisterInfo::isPhysicalRegister(SrcReg))
1554 LV->replaceKillInstruction(SrcReg, MI, CopyMI);
1555
1556 DEBUG(dbgs() << "Inserted: " << *CopyMI);
1557 }
1558
David Blaikiefdf45172013-02-20 07:39:20 +00001559 MachineBasicBlock::iterator EndMBBI =
1560 llvm::next(MachineBasicBlock::iterator(MI));
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001561
Jakob Stoklund Olesen8c3dccd2012-12-01 01:06:44 +00001562 if (!DefEmitted) {
1563 DEBUG(dbgs() << "Turned: " << *MI << " into an IMPLICIT_DEF");
1564 MI->setDesc(TII->get(TargetOpcode::IMPLICIT_DEF));
1565 for (int j = MI->getNumOperands() - 1, ee = 0; j > ee; --j)
1566 MI->RemoveOperand(j);
1567 } else {
1568 DEBUG(dbgs() << "Eliminated: " << *MI);
1569 MI->eraseFromParent();
1570 }
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001571
1572 // Udpate LiveIntervals.
Cameron Zwarichc5b61352013-02-20 22:10:00 +00001573 if (LIS)
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001574 LIS->repairIntervalsInRange(MBB, MBBI, EndMBBI, OrigRegs);
Evan Cheng3d720fb2010-05-05 18:45:40 +00001575}