blob: d4108fb0d76b411eea1e3bed1ea0ed5893e06b35 [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,
Cameron Zwarich214df422013-02-21 04:33:02 +0000350 const TargetInstrInfo *TII,
351 LiveIntervals *LIS) {
Dan Gohman97121ba2009-04-08 00:15:30 +0000352 MachineInstr *DefMI = &MI;
353 for (;;) {
Cameron Zwarich214df422013-02-21 04:33:02 +0000354 if (LIS && TargetRegisterInfo::isVirtualRegister(Reg) &&
355 !LIS->isNotInMIMap(DefMI)) {
356 // FIXME: Sometimes tryInstructionTransform() will add instructions and
357 // test whether they can be folded before keeping them. In this case it
358 // sets a kill before recursively calling tryInstructionTransform() again.
359 // If there is no interval available, we assume that this instruction is
360 // one of those. A kill flag is manually inserted on the operand so the
361 // check below will handle it.
362 LiveInterval &LI = LIS->getInterval(Reg);
363 // This is to match the kill flag version where undefs don't have kill
364 // flags.
365 if (!LI.hasAtLeastOneValue())
366 return false;
367
368 SlotIndex useIdx = LIS->getInstructionIndex(DefMI);
369 LiveInterval::const_iterator I = LI.find(useIdx);
370 assert(I != LI.end() && "Reg must be live-in to use.");
371 if (!SlotIndex::isSameInstr(I->end, useIdx))
372 return false;
373 } else if (!DefMI->killsRegister(Reg)) {
Dan Gohman97121ba2009-04-08 00:15:30 +0000374 return false;
Cameron Zwarich214df422013-02-21 04:33:02 +0000375 }
376
Dan Gohman97121ba2009-04-08 00:15:30 +0000377 if (TargetRegisterInfo::isPhysicalRegister(Reg))
378 return true;
379 MachineRegisterInfo::def_iterator Begin = MRI->def_begin(Reg);
380 // If there are multiple defs, we can't do a simple analysis, so just
381 // go with what the kill flag says.
Chris Lattner7896c9f2009-12-03 00:50:42 +0000382 if (llvm::next(Begin) != MRI->def_end())
Dan Gohman97121ba2009-04-08 00:15:30 +0000383 return true;
384 DefMI = &*Begin;
385 bool IsSrcPhys, IsDstPhys;
386 unsigned SrcReg, DstReg;
387 // If the def is something other than a copy, then it isn't going to
388 // be coalesced, so follow the kill flag.
389 if (!isCopyToReg(*DefMI, TII, SrcReg, DstReg, IsSrcPhys, IsDstPhys))
390 return true;
391 Reg = SrcReg;
392 }
393}
394
Evan Cheng870b8072009-03-01 02:03:43 +0000395/// isTwoAddrUse - Return true if the specified MI uses the specified register
396/// as a two-address use. If so, return the destination register by reference.
397static bool isTwoAddrUse(MachineInstr &MI, unsigned Reg, unsigned &DstReg) {
Evan Chenge837dea2011-06-28 19:10:37 +0000398 const MCInstrDesc &MCID = MI.getDesc();
399 unsigned NumOps = MI.isInlineAsm()
400 ? MI.getNumOperands() : MCID.getNumOperands();
Evan Chenge6f350d2009-03-30 21:34:07 +0000401 for (unsigned i = 0; i != NumOps; ++i) {
Evan Cheng870b8072009-03-01 02:03:43 +0000402 const MachineOperand &MO = MI.getOperand(i);
403 if (!MO.isReg() || !MO.isUse() || MO.getReg() != Reg)
404 continue;
Evan Chenga24752f2009-03-19 20:30:06 +0000405 unsigned ti;
406 if (MI.isRegTiedToDefOperand(i, &ti)) {
Evan Cheng870b8072009-03-01 02:03:43 +0000407 DstReg = MI.getOperand(ti).getReg();
408 return true;
409 }
410 }
411 return false;
412}
413
414/// findOnlyInterestingUse - Given a register, if has a single in-basic block
415/// use, return the use instruction if it's a copy or a two-address use.
416static
417MachineInstr *findOnlyInterestingUse(unsigned Reg, MachineBasicBlock *MBB,
418 MachineRegisterInfo *MRI,
419 const TargetInstrInfo *TII,
Evan Cheng87d696a2009-04-14 00:32:25 +0000420 bool &IsCopy,
Evan Cheng870b8072009-03-01 02:03:43 +0000421 unsigned &DstReg, bool &IsDstPhys) {
Evan Cheng1423c702010-03-03 21:18:38 +0000422 if (!MRI->hasOneNonDBGUse(Reg))
423 // None or more than one use.
Evan Cheng870b8072009-03-01 02:03:43 +0000424 return 0;
Evan Cheng1423c702010-03-03 21:18:38 +0000425 MachineInstr &UseMI = *MRI->use_nodbg_begin(Reg);
Evan Cheng870b8072009-03-01 02:03:43 +0000426 if (UseMI.getParent() != MBB)
427 return 0;
428 unsigned SrcReg;
429 bool IsSrcPhys;
Evan Cheng87d696a2009-04-14 00:32:25 +0000430 if (isCopyToReg(UseMI, TII, SrcReg, DstReg, IsSrcPhys, IsDstPhys)) {
431 IsCopy = true;
Evan Cheng870b8072009-03-01 02:03:43 +0000432 return &UseMI;
Evan Cheng87d696a2009-04-14 00:32:25 +0000433 }
Evan Cheng870b8072009-03-01 02:03:43 +0000434 IsDstPhys = false;
Evan Cheng87d696a2009-04-14 00:32:25 +0000435 if (isTwoAddrUse(UseMI, Reg, DstReg)) {
436 IsDstPhys = TargetRegisterInfo::isPhysicalRegister(DstReg);
Evan Cheng870b8072009-03-01 02:03:43 +0000437 return &UseMI;
Evan Cheng87d696a2009-04-14 00:32:25 +0000438 }
Evan Cheng870b8072009-03-01 02:03:43 +0000439 return 0;
440}
441
442/// getMappedReg - Return the physical register the specified virtual register
443/// might be mapped to.
444static unsigned
445getMappedReg(unsigned Reg, DenseMap<unsigned, unsigned> &RegMap) {
446 while (TargetRegisterInfo::isVirtualRegister(Reg)) {
447 DenseMap<unsigned, unsigned>::iterator SI = RegMap.find(Reg);
448 if (SI == RegMap.end())
449 return 0;
450 Reg = SI->second;
451 }
452 if (TargetRegisterInfo::isPhysicalRegister(Reg))
453 return Reg;
454 return 0;
455}
456
457/// regsAreCompatible - Return true if the two registers are equal or aliased.
458///
459static bool
460regsAreCompatible(unsigned RegA, unsigned RegB, const TargetRegisterInfo *TRI) {
461 if (RegA == RegB)
462 return true;
463 if (!RegA || !RegB)
464 return false;
465 return TRI->regsOverlap(RegA, RegB);
466}
467
468
Manman Rend68e8cd2012-07-25 18:28:13 +0000469/// isProfitableToCommute - Return true if it's potentially profitable to commute
Evan Chengd498c8f2009-01-25 03:53:59 +0000470/// the two-address instruction that's being processed.
471bool
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000472TwoAddressInstructionPass::
473isProfitableToCommute(unsigned regA, unsigned regB, unsigned regC,
474 MachineInstr *MI, unsigned Dist) {
Evan Chengc3aa7c52011-11-16 18:44:48 +0000475 if (OptLevel == CodeGenOpt::None)
476 return false;
477
Evan Chengd498c8f2009-01-25 03:53:59 +0000478 // Determine if it's profitable to commute this two address instruction. In
479 // general, we want no uses between this instruction and the definition of
480 // the two-address register.
481 // e.g.
482 // %reg1028<def> = EXTRACT_SUBREG %reg1027<kill>, 1
483 // %reg1029<def> = MOV8rr %reg1028
484 // %reg1029<def> = SHR8ri %reg1029, 7, %EFLAGS<imp-def,dead>
485 // insert => %reg1030<def> = MOV8rr %reg1028
486 // %reg1030<def> = ADD8rr %reg1028<kill>, %reg1029<kill>, %EFLAGS<imp-def,dead>
487 // In this case, it might not be possible to coalesce the second MOV8rr
488 // instruction if the first one is coalesced. So it would be profitable to
489 // commute it:
490 // %reg1028<def> = EXTRACT_SUBREG %reg1027<kill>, 1
491 // %reg1029<def> = MOV8rr %reg1028
492 // %reg1029<def> = SHR8ri %reg1029, 7, %EFLAGS<imp-def,dead>
493 // insert => %reg1030<def> = MOV8rr %reg1029
Andrew Trick8247e0d2012-02-03 05:12:30 +0000494 // %reg1030<def> = ADD8rr %reg1029<kill>, %reg1028<kill>, %EFLAGS<imp-def,dead>
Evan Chengd498c8f2009-01-25 03:53:59 +0000495
496 if (!MI->killsRegister(regC))
497 return false;
498
499 // Ok, we have something like:
500 // %reg1030<def> = ADD8rr %reg1028<kill>, %reg1029<kill>, %EFLAGS<imp-def,dead>
501 // let's see if it's worth commuting it.
502
Evan Cheng870b8072009-03-01 02:03:43 +0000503 // Look for situations like this:
504 // %reg1024<def> = MOV r1
505 // %reg1025<def> = MOV r0
506 // %reg1026<def> = ADD %reg1024, %reg1025
507 // r0 = MOV %reg1026
508 // Commute the ADD to hopefully eliminate an otherwise unavoidable copy.
Evan Chengd99d68b2012-05-03 01:45:13 +0000509 unsigned ToRegA = getMappedReg(regA, DstRegMap);
510 if (ToRegA) {
511 unsigned FromRegB = getMappedReg(regB, SrcRegMap);
512 unsigned FromRegC = getMappedReg(regC, SrcRegMap);
513 bool BComp = !FromRegB || regsAreCompatible(FromRegB, ToRegA, TRI);
514 bool CComp = !FromRegC || regsAreCompatible(FromRegC, ToRegA, TRI);
515 if (BComp != CComp)
516 return !BComp && CComp;
517 }
Evan Cheng870b8072009-03-01 02:03:43 +0000518
Evan Chengd498c8f2009-01-25 03:53:59 +0000519 // If there is a use of regC between its last def (could be livein) and this
520 // instruction, then bail.
521 unsigned LastDefC = 0;
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000522 if (!noUseAfterLastDef(regC, Dist, LastDefC))
Evan Chengd498c8f2009-01-25 03:53:59 +0000523 return false;
524
525 // If there is a use of regB between its last def (could be livein) and this
526 // instruction, then go ahead and make this transformation.
527 unsigned LastDefB = 0;
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000528 if (!noUseAfterLastDef(regB, Dist, LastDefB))
Evan Chengd498c8f2009-01-25 03:53:59 +0000529 return true;
530
531 // Since there are no intervening uses for both registers, then commute
532 // if the def of regC is closer. Its live interval is shorter.
533 return LastDefB && LastDefC && LastDefC > LastDefB;
534}
535
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000536/// commuteInstruction - Commute a two-address instruction and update the basic
Evan Cheng81913712009-01-23 23:27:33 +0000537/// block, distance map, and live variables if needed. Return true if it is
538/// successful.
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000539bool TwoAddressInstructionPass::
540commuteInstruction(MachineBasicBlock::iterator &mi,
541 unsigned RegB, unsigned RegC, unsigned Dist) {
Evan Cheng81913712009-01-23 23:27:33 +0000542 MachineInstr *MI = mi;
David Greeneeb00b182010-01-05 01:24:21 +0000543 DEBUG(dbgs() << "2addr: COMMUTING : " << *MI);
Evan Cheng81913712009-01-23 23:27:33 +0000544 MachineInstr *NewMI = TII->commuteInstruction(MI);
545
546 if (NewMI == 0) {
David Greeneeb00b182010-01-05 01:24:21 +0000547 DEBUG(dbgs() << "2addr: COMMUTING FAILED!\n");
Evan Cheng81913712009-01-23 23:27:33 +0000548 return false;
549 }
550
David Greeneeb00b182010-01-05 01:24:21 +0000551 DEBUG(dbgs() << "2addr: COMMUTED TO: " << *NewMI);
Evan Cheng81913712009-01-23 23:27:33 +0000552 // If the instruction changed to commute it, update livevar.
553 if (NewMI != MI) {
554 if (LV)
555 // Update live variables
556 LV->replaceKillInstruction(RegC, MI, NewMI);
Cameron Zwarich61892882013-02-20 22:10:02 +0000557 if (LIS)
558 LIS->ReplaceMachineInstrInMaps(MI, NewMI);
Evan Cheng81913712009-01-23 23:27:33 +0000559
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000560 MBB->insert(mi, NewMI); // Insert the new inst
561 MBB->erase(mi); // Nuke the old inst.
Evan Cheng81913712009-01-23 23:27:33 +0000562 mi = NewMI;
563 DistanceMap.insert(std::make_pair(NewMI, Dist));
564 }
Evan Cheng870b8072009-03-01 02:03:43 +0000565
566 // Update source register map.
567 unsigned FromRegC = getMappedReg(RegC, SrcRegMap);
568 if (FromRegC) {
569 unsigned RegA = MI->getOperand(0).getReg();
570 SrcRegMap[RegA] = FromRegC;
571 }
572
Evan Cheng81913712009-01-23 23:27:33 +0000573 return true;
574}
575
Evan Chenge6f350d2009-03-30 21:34:07 +0000576/// isProfitableToConv3Addr - Return true if it is profitable to convert the
577/// given 2-address instruction to a 3-address one.
578bool
Evan Chengf06e6c22011-03-02 01:08:17 +0000579TwoAddressInstructionPass::isProfitableToConv3Addr(unsigned RegA,unsigned RegB){
Evan Chenge6f350d2009-03-30 21:34:07 +0000580 // Look for situations like this:
581 // %reg1024<def> = MOV r1
582 // %reg1025<def> = MOV r0
583 // %reg1026<def> = ADD %reg1024, %reg1025
584 // r2 = MOV %reg1026
585 // Turn ADD into a 3-address instruction to avoid a copy.
Evan Chengf06e6c22011-03-02 01:08:17 +0000586 unsigned FromRegB = getMappedReg(RegB, SrcRegMap);
587 if (!FromRegB)
588 return false;
Evan Chenge6f350d2009-03-30 21:34:07 +0000589 unsigned ToRegA = getMappedReg(RegA, DstRegMap);
Evan Chengf06e6c22011-03-02 01:08:17 +0000590 return (ToRegA && !regsAreCompatible(FromRegB, ToRegA, TRI));
Evan Chenge6f350d2009-03-30 21:34:07 +0000591}
592
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000593/// convertInstTo3Addr - Convert the specified two-address instruction into a
Evan Chenge6f350d2009-03-30 21:34:07 +0000594/// three address one. Return true if this transformation was successful.
595bool
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000596TwoAddressInstructionPass::convertInstTo3Addr(MachineBasicBlock::iterator &mi,
Evan Chenge6f350d2009-03-30 21:34:07 +0000597 MachineBasicBlock::iterator &nmi,
Evan Cheng4d96c632011-02-10 02:20:55 +0000598 unsigned RegA, unsigned RegB,
599 unsigned Dist) {
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000600 // FIXME: Why does convertToThreeAddress() need an iterator reference?
601 MachineFunction::iterator MFI = MBB;
602 MachineInstr *NewMI = TII->convertToThreeAddress(MFI, mi, LV);
603 assert(MBB == MFI && "convertToThreeAddress changed iterator reference");
Jakob Stoklund Olesen96e6da42012-10-26 23:05:13 +0000604 if (!NewMI)
605 return false;
Evan Chenge6f350d2009-03-30 21:34:07 +0000606
Jakob Stoklund Olesen96e6da42012-10-26 23:05:13 +0000607 DEBUG(dbgs() << "2addr: CONVERTING 2-ADDR: " << *mi);
608 DEBUG(dbgs() << "2addr: TO 3-ADDR: " << *NewMI);
609 bool Sunk = false;
Jakob Stoklund Olesen5bfdedf2012-08-03 22:58:34 +0000610
Cameron Zwarich61892882013-02-20 22:10:02 +0000611 if (LIS)
612 LIS->ReplaceMachineInstrInMaps(mi, NewMI);
Evan Chenge6f350d2009-03-30 21:34:07 +0000613
Jakob Stoklund Olesen96e6da42012-10-26 23:05:13 +0000614 if (NewMI->findRegisterUseOperand(RegB, false, TRI))
615 // FIXME: Temporary workaround. If the new instruction doesn't
616 // uses RegB, convertToThreeAddress must have created more
617 // then one instruction.
618 Sunk = sink3AddrInstruction(NewMI, RegB, mi);
Evan Chenge6f350d2009-03-30 21:34:07 +0000619
Jakob Stoklund Olesen96e6da42012-10-26 23:05:13 +0000620 MBB->erase(mi); // Nuke the old inst.
Evan Cheng4d96c632011-02-10 02:20:55 +0000621
Jakob Stoklund Olesen96e6da42012-10-26 23:05:13 +0000622 if (!Sunk) {
623 DistanceMap.insert(std::make_pair(NewMI, Dist));
624 mi = NewMI;
625 nmi = llvm::next(mi);
Evan Chenge6f350d2009-03-30 21:34:07 +0000626 }
627
Jakob Stoklund Olesen96e6da42012-10-26 23:05:13 +0000628 // Update source and destination register maps.
629 SrcRegMap.erase(RegA);
630 DstRegMap.erase(RegB);
631 return true;
Evan Chenge6f350d2009-03-30 21:34:07 +0000632}
633
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000634/// scanUses - Scan forward recursively for only uses, update maps if the use
Evan Chengf06e6c22011-03-02 01:08:17 +0000635/// is a copy or a two-address instruction.
636void
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000637TwoAddressInstructionPass::scanUses(unsigned DstReg) {
Evan Chengf06e6c22011-03-02 01:08:17 +0000638 SmallVector<unsigned, 4> VirtRegPairs;
639 bool IsDstPhys;
640 bool IsCopy = false;
641 unsigned NewReg = 0;
642 unsigned Reg = DstReg;
643 while (MachineInstr *UseMI = findOnlyInterestingUse(Reg, MBB, MRI, TII,IsCopy,
644 NewReg, IsDstPhys)) {
645 if (IsCopy && !Processed.insert(UseMI))
646 break;
647
648 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(UseMI);
649 if (DI != DistanceMap.end())
650 // Earlier in the same MBB.Reached via a back edge.
651 break;
652
653 if (IsDstPhys) {
654 VirtRegPairs.push_back(NewReg);
655 break;
656 }
657 bool isNew = SrcRegMap.insert(std::make_pair(NewReg, Reg)).second;
658 if (!isNew)
659 assert(SrcRegMap[NewReg] == Reg && "Can't map to two src registers!");
660 VirtRegPairs.push_back(NewReg);
661 Reg = NewReg;
662 }
663
664 if (!VirtRegPairs.empty()) {
665 unsigned ToReg = VirtRegPairs.back();
666 VirtRegPairs.pop_back();
667 while (!VirtRegPairs.empty()) {
668 unsigned FromReg = VirtRegPairs.back();
669 VirtRegPairs.pop_back();
670 bool isNew = DstRegMap.insert(std::make_pair(FromReg, ToReg)).second;
671 if (!isNew)
672 assert(DstRegMap[FromReg] == ToReg &&"Can't map to two dst registers!");
673 ToReg = FromReg;
674 }
675 bool isNew = DstRegMap.insert(std::make_pair(DstReg, ToReg)).second;
676 if (!isNew)
677 assert(DstRegMap[DstReg] == ToReg && "Can't map to two dst registers!");
678 }
679}
680
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000681/// processCopy - If the specified instruction is not yet processed, process it
Evan Cheng870b8072009-03-01 02:03:43 +0000682/// if it's a copy. For a copy instruction, we find the physical registers the
683/// source and destination registers might be mapped to. These are kept in
684/// point-to maps used to determine future optimizations. e.g.
685/// v1024 = mov r0
686/// v1025 = mov r1
687/// v1026 = add v1024, v1025
688/// r1 = mov r1026
689/// If 'add' is a two-address instruction, v1024, v1026 are both potentially
690/// coalesced to r0 (from the input side). v1025 is mapped to r1. v1026 is
691/// potentially joined with r1 on the output side. It's worthwhile to commute
692/// 'add' to eliminate a copy.
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000693void TwoAddressInstructionPass::processCopy(MachineInstr *MI) {
Evan Cheng870b8072009-03-01 02:03:43 +0000694 if (Processed.count(MI))
695 return;
696
697 bool IsSrcPhys, IsDstPhys;
698 unsigned SrcReg, DstReg;
699 if (!isCopyToReg(*MI, TII, SrcReg, DstReg, IsSrcPhys, IsDstPhys))
700 return;
701
702 if (IsDstPhys && !IsSrcPhys)
703 DstRegMap.insert(std::make_pair(SrcReg, DstReg));
704 else if (!IsDstPhys && IsSrcPhys) {
Evan Cheng3005ed62009-04-13 20:04:24 +0000705 bool isNew = SrcRegMap.insert(std::make_pair(DstReg, SrcReg)).second;
706 if (!isNew)
707 assert(SrcRegMap[DstReg] == SrcReg &&
708 "Can't map to two src physical registers!");
Evan Cheng870b8072009-03-01 02:03:43 +0000709
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000710 scanUses(DstReg);
Evan Cheng870b8072009-03-01 02:03:43 +0000711 }
712
713 Processed.insert(MI);
Evan Chengf06e6c22011-03-02 01:08:17 +0000714 return;
Evan Cheng870b8072009-03-01 02:03:43 +0000715}
716
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000717/// rescheduleMIBelowKill - If there is one more local instruction that reads
Evan Cheng2a4410d2011-11-14 19:48:55 +0000718/// 'Reg' and it kills 'Reg, consider moving the instruction below the kill
719/// instruction in order to eliminate the need for the copy.
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000720bool TwoAddressInstructionPass::
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000721rescheduleMIBelowKill(MachineBasicBlock::iterator &mi,
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000722 MachineBasicBlock::iterator &nmi,
723 unsigned Reg) {
Chandler Carruth7d532c82012-07-15 03:29:46 +0000724 // Bail immediately if we don't have LV available. We use it to find kills
725 // efficiently.
726 if (!LV)
727 return false;
728
Evan Cheng2a4410d2011-11-14 19:48:55 +0000729 MachineInstr *MI = &*mi;
Andrew Trick8247e0d2012-02-03 05:12:30 +0000730 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(MI);
Evan Cheng2a4410d2011-11-14 19:48:55 +0000731 if (DI == DistanceMap.end())
732 // Must be created from unfolded load. Don't waste time trying this.
733 return false;
734
Chandler Carruth7d532c82012-07-15 03:29:46 +0000735 MachineInstr *KillMI = LV->getVarInfo(Reg).findKill(MBB);
736 if (!KillMI || MI == KillMI || KillMI->isCopy() || KillMI->isCopyLike())
Evan Cheng2a4410d2011-11-14 19:48:55 +0000737 // Don't mess with copies, they may be coalesced later.
738 return false;
739
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000740 if (KillMI->hasUnmodeledSideEffects() || KillMI->isCall() ||
741 KillMI->isBranch() || KillMI->isTerminator())
Evan Cheng2a4410d2011-11-14 19:48:55 +0000742 // Don't move pass calls, etc.
743 return false;
744
745 unsigned DstReg;
746 if (isTwoAddrUse(*KillMI, Reg, DstReg))
747 return false;
748
Evan Chengf1784182011-11-15 06:26:51 +0000749 bool SeenStore = true;
Evan Cheng2a4410d2011-11-14 19:48:55 +0000750 if (!MI->isSafeToMove(TII, AA, SeenStore))
751 return false;
752
753 if (TII->getInstrLatency(InstrItins, MI) > 1)
754 // FIXME: Needs more sophisticated heuristics.
755 return false;
756
757 SmallSet<unsigned, 2> Uses;
Evan Cheng9bad88a2011-11-16 03:47:42 +0000758 SmallSet<unsigned, 2> Kills;
Evan Cheng2a4410d2011-11-14 19:48:55 +0000759 SmallSet<unsigned, 2> Defs;
760 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
761 const MachineOperand &MO = MI->getOperand(i);
762 if (!MO.isReg())
763 continue;
764 unsigned MOReg = MO.getReg();
765 if (!MOReg)
766 continue;
767 if (MO.isDef())
768 Defs.insert(MOReg);
Evan Cheng9bad88a2011-11-16 03:47:42 +0000769 else {
Evan Cheng2a4410d2011-11-14 19:48:55 +0000770 Uses.insert(MOReg);
Evan Cheng9bad88a2011-11-16 03:47:42 +0000771 if (MO.isKill() && MOReg != Reg)
772 Kills.insert(MOReg);
773 }
Evan Cheng2a4410d2011-11-14 19:48:55 +0000774 }
775
776 // Move the copies connected to MI down as well.
777 MachineBasicBlock::iterator From = MI;
778 MachineBasicBlock::iterator To = llvm::next(From);
779 while (To->isCopy() && Defs.count(To->getOperand(1).getReg())) {
780 Defs.insert(To->getOperand(0).getReg());
781 ++To;
782 }
783
784 // Check if the reschedule will not break depedencies.
785 unsigned NumVisited = 0;
786 MachineBasicBlock::iterator KillPos = KillMI;
787 ++KillPos;
788 for (MachineBasicBlock::iterator I = To; I != KillPos; ++I) {
789 MachineInstr *OtherMI = I;
790 // DBG_VALUE cannot be counted against the limit.
791 if (OtherMI->isDebugValue())
792 continue;
793 if (NumVisited > 10) // FIXME: Arbitrary limit to reduce compile time cost.
794 return false;
795 ++NumVisited;
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000796 if (OtherMI->hasUnmodeledSideEffects() || OtherMI->isCall() ||
797 OtherMI->isBranch() || OtherMI->isTerminator())
Evan Cheng2a4410d2011-11-14 19:48:55 +0000798 // Don't move pass calls, etc.
799 return false;
800 for (unsigned i = 0, e = OtherMI->getNumOperands(); i != e; ++i) {
801 const MachineOperand &MO = OtherMI->getOperand(i);
802 if (!MO.isReg())
803 continue;
804 unsigned MOReg = MO.getReg();
805 if (!MOReg)
806 continue;
807 if (MO.isDef()) {
808 if (Uses.count(MOReg))
809 // Physical register use would be clobbered.
810 return false;
811 if (!MO.isDead() && Defs.count(MOReg))
812 // May clobber a physical register def.
813 // FIXME: This may be too conservative. It's ok if the instruction
814 // is sunken completely below the use.
815 return false;
816 } else {
817 if (Defs.count(MOReg))
818 return false;
Evan Cheng9bad88a2011-11-16 03:47:42 +0000819 if (MOReg != Reg &&
820 ((MO.isKill() && Uses.count(MOReg)) || Kills.count(MOReg)))
Evan Cheng2a4410d2011-11-14 19:48:55 +0000821 // Don't want to extend other live ranges and update kills.
822 return false;
Chandler Carruth7d532c82012-07-15 03:29:46 +0000823 if (MOReg == Reg && !MO.isKill())
824 // We can't schedule across a use of the register in question.
825 return false;
826 // Ensure that if this is register in question, its the kill we expect.
827 assert((MOReg != Reg || OtherMI == KillMI) &&
828 "Found multiple kills of a register in a basic block");
Evan Cheng2a4410d2011-11-14 19:48:55 +0000829 }
830 }
831 }
832
833 // Move debug info as well.
Evan Cheng8aee7d82011-11-14 21:11:15 +0000834 while (From != MBB->begin() && llvm::prior(From)->isDebugValue())
835 --From;
Evan Cheng2a4410d2011-11-14 19:48:55 +0000836
837 // Copies following MI may have been moved as well.
838 nmi = To;
839 MBB->splice(KillPos, MBB, From, To);
840 DistanceMap.erase(DI);
841
Chandler Carruth7d532c82012-07-15 03:29:46 +0000842 // Update live variables
843 LV->removeVirtualRegisterKilled(Reg, KillMI);
844 LV->addVirtualRegisterKilled(Reg, MI);
Jakob Stoklund Olesen5bfdedf2012-08-03 22:58:34 +0000845 if (LIS)
846 LIS->handleMove(MI);
Evan Cheng2a4410d2011-11-14 19:48:55 +0000847
Jakob Stoklund Olesena532bce2012-07-17 17:57:23 +0000848 DEBUG(dbgs() << "\trescheduled below kill: " << *KillMI);
Evan Cheng2a4410d2011-11-14 19:48:55 +0000849 return true;
850}
851
852/// isDefTooClose - Return true if the re-scheduling will put the given
853/// instruction too close to the defs of its register dependencies.
854bool TwoAddressInstructionPass::isDefTooClose(unsigned Reg, unsigned Dist,
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000855 MachineInstr *MI) {
Evan Cheng2a4410d2011-11-14 19:48:55 +0000856 for (MachineRegisterInfo::def_iterator DI = MRI->def_begin(Reg),
857 DE = MRI->def_end(); DI != DE; ++DI) {
858 MachineInstr *DefMI = &*DI;
859 if (DefMI->getParent() != MBB || DefMI->isCopy() || DefMI->isCopyLike())
860 continue;
861 if (DefMI == MI)
862 return true; // MI is defining something KillMI uses
863 DenseMap<MachineInstr*, unsigned>::iterator DDI = DistanceMap.find(DefMI);
864 if (DDI == DistanceMap.end())
865 return true; // Below MI
866 unsigned DefDist = DDI->second;
867 assert(Dist > DefDist && "Visited def already?");
Andrew Trickb7e02892012-06-05 21:11:27 +0000868 if (TII->getInstrLatency(InstrItins, DefMI) > (Dist - DefDist))
Evan Cheng2a4410d2011-11-14 19:48:55 +0000869 return true;
870 }
871 return false;
872}
873
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000874/// rescheduleKillAboveMI - If there is one more local instruction that reads
Evan Cheng2a4410d2011-11-14 19:48:55 +0000875/// 'Reg' and it kills 'Reg, consider moving the kill instruction above the
876/// current two-address instruction in order to eliminate the need for the
877/// copy.
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000878bool TwoAddressInstructionPass::
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000879rescheduleKillAboveMI(MachineBasicBlock::iterator &mi,
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +0000880 MachineBasicBlock::iterator &nmi,
881 unsigned Reg) {
Chandler Carruth7d532c82012-07-15 03:29:46 +0000882 // Bail immediately if we don't have LV available. We use it to find kills
883 // efficiently.
884 if (!LV)
885 return false;
886
Evan Cheng2a4410d2011-11-14 19:48:55 +0000887 MachineInstr *MI = &*mi;
888 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(MI);
889 if (DI == DistanceMap.end())
890 // Must be created from unfolded load. Don't waste time trying this.
891 return false;
892
Chandler Carruth7d532c82012-07-15 03:29:46 +0000893 MachineInstr *KillMI = LV->getVarInfo(Reg).findKill(MBB);
894 if (!KillMI || MI == KillMI || KillMI->isCopy() || KillMI->isCopyLike())
Evan Cheng2a4410d2011-11-14 19:48:55 +0000895 // Don't mess with copies, they may be coalesced later.
896 return false;
897
898 unsigned DstReg;
899 if (isTwoAddrUse(*KillMI, Reg, DstReg))
900 return false;
901
Evan Chengf1784182011-11-15 06:26:51 +0000902 bool SeenStore = true;
Evan Cheng2a4410d2011-11-14 19:48:55 +0000903 if (!KillMI->isSafeToMove(TII, AA, SeenStore))
904 return false;
905
906 SmallSet<unsigned, 2> Uses;
907 SmallSet<unsigned, 2> Kills;
908 SmallSet<unsigned, 2> Defs;
909 SmallSet<unsigned, 2> LiveDefs;
910 for (unsigned i = 0, e = KillMI->getNumOperands(); i != e; ++i) {
911 const MachineOperand &MO = KillMI->getOperand(i);
912 if (!MO.isReg())
913 continue;
914 unsigned MOReg = MO.getReg();
915 if (MO.isUse()) {
916 if (!MOReg)
917 continue;
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +0000918 if (isDefTooClose(MOReg, DI->second, MI))
Evan Cheng2a4410d2011-11-14 19:48:55 +0000919 return false;
Chandler Carruth7d532c82012-07-15 03:29:46 +0000920 if (MOReg == Reg && !MO.isKill())
921 return false;
Evan Cheng2a4410d2011-11-14 19:48:55 +0000922 Uses.insert(MOReg);
923 if (MO.isKill() && MOReg != Reg)
924 Kills.insert(MOReg);
925 } else if (TargetRegisterInfo::isPhysicalRegister(MOReg)) {
926 Defs.insert(MOReg);
927 if (!MO.isDead())
928 LiveDefs.insert(MOReg);
929 }
930 }
931
932 // Check if the reschedule will not break depedencies.
933 unsigned NumVisited = 0;
934 MachineBasicBlock::iterator KillPos = KillMI;
935 for (MachineBasicBlock::iterator I = mi; I != KillPos; ++I) {
936 MachineInstr *OtherMI = I;
937 // DBG_VALUE cannot be counted against the limit.
938 if (OtherMI->isDebugValue())
939 continue;
940 if (NumVisited > 10) // FIXME: Arbitrary limit to reduce compile time cost.
941 return false;
942 ++NumVisited;
Evan Cheng5a96b3d2011-12-07 07:15:52 +0000943 if (OtherMI->hasUnmodeledSideEffects() || OtherMI->isCall() ||
944 OtherMI->isBranch() || OtherMI->isTerminator())
Evan Cheng2a4410d2011-11-14 19:48:55 +0000945 // Don't move pass calls, etc.
946 return false;
Evan Chengae7db7a2011-11-16 03:05:12 +0000947 SmallVector<unsigned, 2> OtherDefs;
Evan Cheng2a4410d2011-11-14 19:48:55 +0000948 for (unsigned i = 0, e = OtherMI->getNumOperands(); i != e; ++i) {
949 const MachineOperand &MO = OtherMI->getOperand(i);
950 if (!MO.isReg())
951 continue;
952 unsigned MOReg = MO.getReg();
953 if (!MOReg)
954 continue;
955 if (MO.isUse()) {
956 if (Defs.count(MOReg))
957 // Moving KillMI can clobber the physical register if the def has
958 // not been seen.
959 return false;
960 if (Kills.count(MOReg))
961 // Don't want to extend other live ranges and update kills.
962 return false;
Chandler Carruth7d532c82012-07-15 03:29:46 +0000963 if (OtherMI != MI && MOReg == Reg && !MO.isKill())
964 // We can't schedule across a use of the register in question.
965 return false;
Evan Cheng2a4410d2011-11-14 19:48:55 +0000966 } else {
Evan Chengae7db7a2011-11-16 03:05:12 +0000967 OtherDefs.push_back(MOReg);
Evan Cheng2a4410d2011-11-14 19:48:55 +0000968 }
969 }
Evan Chengae7db7a2011-11-16 03:05:12 +0000970
971 for (unsigned i = 0, e = OtherDefs.size(); i != e; ++i) {
972 unsigned MOReg = OtherDefs[i];
973 if (Uses.count(MOReg))
974 return false;
975 if (TargetRegisterInfo::isPhysicalRegister(MOReg) &&
976 LiveDefs.count(MOReg))
977 return false;
978 // Physical register def is seen.
979 Defs.erase(MOReg);
980 }
Evan Cheng2a4410d2011-11-14 19:48:55 +0000981 }
982
983 // Move the old kill above MI, don't forget to move debug info as well.
984 MachineBasicBlock::iterator InsertPos = mi;
Evan Cheng8aee7d82011-11-14 21:11:15 +0000985 while (InsertPos != MBB->begin() && llvm::prior(InsertPos)->isDebugValue())
986 --InsertPos;
Evan Cheng2a4410d2011-11-14 19:48:55 +0000987 MachineBasicBlock::iterator From = KillMI;
988 MachineBasicBlock::iterator To = llvm::next(From);
989 while (llvm::prior(From)->isDebugValue())
990 --From;
991 MBB->splice(InsertPos, MBB, From, To);
992
Evan Cheng2bee6a82011-11-16 03:33:08 +0000993 nmi = llvm::prior(InsertPos); // Backtrack so we process the moved instr.
Evan Cheng2a4410d2011-11-14 19:48:55 +0000994 DistanceMap.erase(DI);
995
Chandler Carruth7d532c82012-07-15 03:29:46 +0000996 // Update live variables
997 LV->removeVirtualRegisterKilled(Reg, KillMI);
998 LV->addVirtualRegisterKilled(Reg, MI);
Jakob Stoklund Olesen5bfdedf2012-08-03 22:58:34 +0000999 if (LIS)
1000 LIS->handleMove(KillMI);
Chandler Carruth7d532c82012-07-15 03:29:46 +00001001
Jakob Stoklund Olesena532bce2012-07-17 17:57:23 +00001002 DEBUG(dbgs() << "\trescheduled kill: " << *KillMI);
Evan Cheng2a4410d2011-11-14 19:48:55 +00001003 return true;
1004}
1005
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +00001006/// tryInstructionTransform - For the case where an instruction has a single
Bob Wilsoncc80df92009-09-03 20:58:42 +00001007/// pair of tied register operands, attempt some transformations that may
1008/// either eliminate the tied operands or improve the opportunities for
Lang Hamesf31ceaf2012-04-09 20:17:30 +00001009/// coalescing away the register copy. Returns true if no copy needs to be
1010/// inserted to untie mi's operands (either because they were untied, or
1011/// because mi was rescheduled, and will be visited again later).
Bob Wilsoncc80df92009-09-03 20:58:42 +00001012bool TwoAddressInstructionPass::
Jakob Stoklund Olesen6db89362012-10-26 21:12:49 +00001013tryInstructionTransform(MachineBasicBlock::iterator &mi,
Bob Wilsoncc80df92009-09-03 20:58:42 +00001014 MachineBasicBlock::iterator &nmi,
Jakob Stoklund Olesen002ef572012-10-26 22:06:00 +00001015 unsigned SrcIdx, unsigned DstIdx, unsigned Dist) {
Evan Chengc3aa7c52011-11-16 18:44:48 +00001016 if (OptLevel == CodeGenOpt::None)
1017 return false;
1018
Evan Cheng2a4410d2011-11-14 19:48:55 +00001019 MachineInstr &MI = *mi;
Evan Cheng2a4410d2011-11-14 19:48:55 +00001020 unsigned regA = MI.getOperand(DstIdx).getReg();
1021 unsigned regB = MI.getOperand(SrcIdx).getReg();
Bob Wilsoncc80df92009-09-03 20:58:42 +00001022
1023 assert(TargetRegisterInfo::isVirtualRegister(regB) &&
1024 "cannot make instruction into two-address form");
Cameron Zwarich214df422013-02-21 04:33:02 +00001025 bool regBKilled = isKilled(MI, regB, MRI, TII, LIS);
Bob Wilsoncc80df92009-09-03 20:58:42 +00001026
Evan Chengd99d68b2012-05-03 01:45:13 +00001027 if (TargetRegisterInfo::isVirtualRegister(regA))
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +00001028 scanUses(regA);
Evan Chengd99d68b2012-05-03 01:45:13 +00001029
Bob Wilsoncc80df92009-09-03 20:58:42 +00001030 // Check if it is profitable to commute the operands.
1031 unsigned SrcOp1, SrcOp2;
1032 unsigned regC = 0;
1033 unsigned regCIdx = ~0U;
1034 bool TryCommute = false;
1035 bool AggressiveCommute = false;
Evan Cheng5a96b3d2011-12-07 07:15:52 +00001036 if (MI.isCommutable() && MI.getNumOperands() >= 3 &&
Evan Cheng2a4410d2011-11-14 19:48:55 +00001037 TII->findCommutedOpIndices(&MI, SrcOp1, SrcOp2)) {
Bob Wilsoncc80df92009-09-03 20:58:42 +00001038 if (SrcIdx == SrcOp1)
1039 regCIdx = SrcOp2;
1040 else if (SrcIdx == SrcOp2)
1041 regCIdx = SrcOp1;
1042
1043 if (regCIdx != ~0U) {
Evan Cheng2a4410d2011-11-14 19:48:55 +00001044 regC = MI.getOperand(regCIdx).getReg();
Cameron Zwarich214df422013-02-21 04:33:02 +00001045 if (!regBKilled && isKilled(MI, regC, MRI, TII, LIS))
Bob Wilsoncc80df92009-09-03 20:58:42 +00001046 // If C dies but B does not, swap the B and C operands.
1047 // This makes the live ranges of A and C joinable.
1048 TryCommute = true;
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +00001049 else if (isProfitableToCommute(regA, regB, regC, &MI, Dist)) {
Bob Wilsoncc80df92009-09-03 20:58:42 +00001050 TryCommute = true;
1051 AggressiveCommute = true;
1052 }
1053 }
1054 }
1055
1056 // If it's profitable to commute, try to do so.
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +00001057 if (TryCommute && commuteInstruction(mi, regB, regC, Dist)) {
Bob Wilsoncc80df92009-09-03 20:58:42 +00001058 ++NumCommuted;
1059 if (AggressiveCommute)
1060 ++NumAggrCommuted;
1061 return false;
1062 }
1063
Evan Cheng2a4410d2011-11-14 19:48:55 +00001064 // If there is one more use of regB later in the same MBB, consider
1065 // re-schedule this MI below it.
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +00001066 if (rescheduleMIBelowKill(mi, nmi, regB)) {
Evan Cheng2a4410d2011-11-14 19:48:55 +00001067 ++NumReSchedDowns;
Lang Hamesf31ceaf2012-04-09 20:17:30 +00001068 return true;
Evan Cheng2a4410d2011-11-14 19:48:55 +00001069 }
1070
Evan Cheng5a96b3d2011-12-07 07:15:52 +00001071 if (MI.isConvertibleTo3Addr()) {
Bob Wilsoncc80df92009-09-03 20:58:42 +00001072 // This instruction is potentially convertible to a true
1073 // three-address instruction. Check if it is profitable.
Evan Chengf06e6c22011-03-02 01:08:17 +00001074 if (!regBKilled || isProfitableToConv3Addr(regA, regB)) {
Bob Wilsoncc80df92009-09-03 20:58:42 +00001075 // Try to convert it.
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +00001076 if (convertInstTo3Addr(mi, nmi, regA, regB, Dist)) {
Bob Wilsoncc80df92009-09-03 20:58:42 +00001077 ++NumConvertedTo3Addr;
1078 return true; // Done with this instruction.
1079 }
1080 }
1081 }
Dan Gohman584fedf2010-06-21 22:17:20 +00001082
Evan Cheng2a4410d2011-11-14 19:48:55 +00001083 // If there is one more use of regB later in the same MBB, consider
1084 // re-schedule it before this MI if it's legal.
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +00001085 if (rescheduleKillAboveMI(mi, nmi, regB)) {
Evan Cheng2a4410d2011-11-14 19:48:55 +00001086 ++NumReSchedUps;
Lang Hamesf31ceaf2012-04-09 20:17:30 +00001087 return true;
Evan Cheng2a4410d2011-11-14 19:48:55 +00001088 }
1089
Dan Gohman584fedf2010-06-21 22:17:20 +00001090 // If this is an instruction with a load folded into it, try unfolding
1091 // the load, e.g. avoid this:
1092 // movq %rdx, %rcx
1093 // addq (%rax), %rcx
1094 // in favor of this:
1095 // movq (%rax), %rcx
1096 // addq %rdx, %rcx
1097 // because it's preferable to schedule a load than a register copy.
Evan Cheng5a96b3d2011-12-07 07:15:52 +00001098 if (MI.mayLoad() && !regBKilled) {
Dan Gohman584fedf2010-06-21 22:17:20 +00001099 // Determine if a load can be unfolded.
1100 unsigned LoadRegIndex;
1101 unsigned NewOpc =
Evan Cheng2a4410d2011-11-14 19:48:55 +00001102 TII->getOpcodeAfterMemoryUnfold(MI.getOpcode(),
Dan Gohman584fedf2010-06-21 22:17:20 +00001103 /*UnfoldLoad=*/true,
1104 /*UnfoldStore=*/false,
1105 &LoadRegIndex);
1106 if (NewOpc != 0) {
Evan Chenge837dea2011-06-28 19:10:37 +00001107 const MCInstrDesc &UnfoldMCID = TII->get(NewOpc);
1108 if (UnfoldMCID.getNumDefs() == 1) {
Dan Gohman584fedf2010-06-21 22:17:20 +00001109 // Unfold the load.
Evan Cheng2a4410d2011-11-14 19:48:55 +00001110 DEBUG(dbgs() << "2addr: UNFOLDING: " << MI);
Dan Gohman584fedf2010-06-21 22:17:20 +00001111 const TargetRegisterClass *RC =
Andrew Trickf12f6df2012-05-03 01:14:37 +00001112 TRI->getAllocatableClass(
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001113 TII->getRegClass(UnfoldMCID, LoadRegIndex, TRI, *MF));
Dan Gohman584fedf2010-06-21 22:17:20 +00001114 unsigned Reg = MRI->createVirtualRegister(RC);
1115 SmallVector<MachineInstr *, 2> NewMIs;
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001116 if (!TII->unfoldMemoryOperand(*MF, &MI, Reg,
Evan Cheng98ec91e2010-07-02 20:36:18 +00001117 /*UnfoldLoad=*/true,/*UnfoldStore=*/false,
1118 NewMIs)) {
1119 DEBUG(dbgs() << "2addr: ABANDONING UNFOLD\n");
1120 return false;
1121 }
Dan Gohman584fedf2010-06-21 22:17:20 +00001122 assert(NewMIs.size() == 2 &&
1123 "Unfolded a load into multiple instructions!");
1124 // The load was previously folded, so this is the only use.
1125 NewMIs[1]->addRegisterKilled(Reg, TRI);
1126
1127 // Tentatively insert the instructions into the block so that they
1128 // look "normal" to the transformation logic.
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +00001129 MBB->insert(mi, NewMIs[0]);
1130 MBB->insert(mi, NewMIs[1]);
Dan Gohman584fedf2010-06-21 22:17:20 +00001131
1132 DEBUG(dbgs() << "2addr: NEW LOAD: " << *NewMIs[0]
1133 << "2addr: NEW INST: " << *NewMIs[1]);
1134
1135 // Transform the instruction, now that it no longer has a load.
1136 unsigned NewDstIdx = NewMIs[1]->findRegisterDefOperandIdx(regA);
1137 unsigned NewSrcIdx = NewMIs[1]->findRegisterUseOperandIdx(regB);
1138 MachineBasicBlock::iterator NewMI = NewMIs[1];
1139 bool TransformSuccess =
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +00001140 tryInstructionTransform(NewMI, mi, NewSrcIdx, NewDstIdx, Dist);
Dan Gohman584fedf2010-06-21 22:17:20 +00001141 if (TransformSuccess ||
1142 NewMIs[1]->getOperand(NewSrcIdx).isKill()) {
1143 // Success, or at least we made an improvement. Keep the unfolded
1144 // instructions and discard the original.
1145 if (LV) {
Evan Cheng2a4410d2011-11-14 19:48:55 +00001146 for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
1147 MachineOperand &MO = MI.getOperand(i);
Andrew Trick8247e0d2012-02-03 05:12:30 +00001148 if (MO.isReg() &&
Dan Gohman7aa7bc72010-06-22 00:32:04 +00001149 TargetRegisterInfo::isVirtualRegister(MO.getReg())) {
1150 if (MO.isUse()) {
Dan Gohmancc1ca982010-06-22 02:07:21 +00001151 if (MO.isKill()) {
1152 if (NewMIs[0]->killsRegister(MO.getReg()))
Evan Cheng2a4410d2011-11-14 19:48:55 +00001153 LV->replaceKillInstruction(MO.getReg(), &MI, NewMIs[0]);
Dan Gohmancc1ca982010-06-22 02:07:21 +00001154 else {
1155 assert(NewMIs[1]->killsRegister(MO.getReg()) &&
1156 "Kill missing after load unfold!");
Evan Cheng2a4410d2011-11-14 19:48:55 +00001157 LV->replaceKillInstruction(MO.getReg(), &MI, NewMIs[1]);
Dan Gohmancc1ca982010-06-22 02:07:21 +00001158 }
1159 }
Evan Cheng2a4410d2011-11-14 19:48:55 +00001160 } else if (LV->removeVirtualRegisterDead(MO.getReg(), &MI)) {
Dan Gohmancc1ca982010-06-22 02:07:21 +00001161 if (NewMIs[1]->registerDefIsDead(MO.getReg()))
1162 LV->addVirtualRegisterDead(MO.getReg(), NewMIs[1]);
1163 else {
1164 assert(NewMIs[0]->registerDefIsDead(MO.getReg()) &&
1165 "Dead flag missing after load unfold!");
1166 LV->addVirtualRegisterDead(MO.getReg(), NewMIs[0]);
1167 }
1168 }
Dan Gohman7aa7bc72010-06-22 00:32:04 +00001169 }
Dan Gohman584fedf2010-06-21 22:17:20 +00001170 }
1171 LV->addVirtualRegisterKilled(Reg, NewMIs[1]);
1172 }
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001173
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001174 SmallVector<unsigned, 4> OrigRegs;
1175 if (LIS) {
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001176 for (MachineInstr::const_mop_iterator MOI = MI.operands_begin(),
1177 MOE = MI.operands_end(); MOI != MOE; ++MOI) {
1178 if (MOI->isReg())
1179 OrigRegs.push_back(MOI->getReg());
1180 }
1181 }
1182
Evan Cheng2a4410d2011-11-14 19:48:55 +00001183 MI.eraseFromParent();
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001184
1185 // Update LiveIntervals.
Cameron Zwarichc5b61352013-02-20 22:10:00 +00001186 if (LIS) {
1187 MachineBasicBlock::iterator Begin(NewMIs[0]);
1188 MachineBasicBlock::iterator End(NewMIs[1]);
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001189 LIS->repairIntervalsInRange(MBB, Begin, End, OrigRegs);
Cameron Zwarichc5b61352013-02-20 22:10:00 +00001190 }
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001191
Dan Gohman584fedf2010-06-21 22:17:20 +00001192 mi = NewMIs[1];
1193 if (TransformSuccess)
1194 return true;
1195 } else {
1196 // Transforming didn't eliminate the tie and didn't lead to an
1197 // improvement. Clean up the unfolded instructions and keep the
1198 // original.
1199 DEBUG(dbgs() << "2addr: ABANDONING UNFOLD\n");
1200 NewMIs[0]->eraseFromParent();
1201 NewMIs[1]->eraseFromParent();
1202 }
1203 }
1204 }
1205 }
1206
Bob Wilsoncc80df92009-09-03 20:58:42 +00001207 return false;
1208}
1209
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001210// Collect tied operands of MI that need to be handled.
1211// Rewrite trivial cases immediately.
1212// Return true if any tied operands where found, including the trivial ones.
1213bool TwoAddressInstructionPass::
1214collectTiedOperands(MachineInstr *MI, TiedOperandMap &TiedOperands) {
1215 const MCInstrDesc &MCID = MI->getDesc();
1216 bool AnyOps = false;
Jakob Stoklund Olesenf363ebd2012-09-04 22:59:30 +00001217 unsigned NumOps = MI->getNumOperands();
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001218
1219 for (unsigned SrcIdx = 0; SrcIdx < NumOps; ++SrcIdx) {
1220 unsigned DstIdx = 0;
1221 if (!MI->isRegTiedToDefOperand(SrcIdx, &DstIdx))
1222 continue;
1223 AnyOps = true;
Jakob Stoklund Olesen8c5c0732012-08-07 22:47:06 +00001224 MachineOperand &SrcMO = MI->getOperand(SrcIdx);
1225 MachineOperand &DstMO = MI->getOperand(DstIdx);
1226 unsigned SrcReg = SrcMO.getReg();
1227 unsigned DstReg = DstMO.getReg();
1228 // Tied constraint already satisfied?
1229 if (SrcReg == DstReg)
1230 continue;
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001231
Jakob Stoklund Olesen8c5c0732012-08-07 22:47:06 +00001232 assert(SrcReg && SrcMO.isUse() && "two address instruction invalid");
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001233
1234 // Deal with <undef> uses immediately - simply rewrite the src operand.
Jakob Stoklund Olesen8c5c0732012-08-07 22:47:06 +00001235 if (SrcMO.isUndef()) {
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001236 // Constrain the DstReg register class if required.
1237 if (TargetRegisterInfo::isVirtualRegister(DstReg))
1238 if (const TargetRegisterClass *RC = TII->getRegClass(MCID, SrcIdx,
1239 TRI, *MF))
1240 MRI->constrainRegClass(DstReg, RC);
Jakob Stoklund Olesen8c5c0732012-08-07 22:47:06 +00001241 SrcMO.setReg(DstReg);
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001242 DEBUG(dbgs() << "\t\trewrite undef:\t" << *MI);
1243 continue;
1244 }
Jakob Stoklund Olesen8c5c0732012-08-07 22:47:06 +00001245 TiedOperands[SrcReg].push_back(std::make_pair(SrcIdx, DstIdx));
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001246 }
1247 return AnyOps;
1248}
1249
Jakob Stoklund Olesenae52fad2012-08-03 23:57:58 +00001250// Process a list of tied MI operands that all use the same source register.
1251// The tied pairs are of the form (SrcIdx, DstIdx).
1252void
1253TwoAddressInstructionPass::processTiedPairs(MachineInstr *MI,
1254 TiedPairList &TiedPairs,
1255 unsigned &Dist) {
1256 bool IsEarlyClobber = false;
Cameron Zwarich6cf93d72013-02-20 06:46:46 +00001257 for (unsigned tpi = 0, tpe = TiedPairs.size(); tpi != tpe; ++tpi) {
1258 const MachineOperand &DstMO = MI->getOperand(TiedPairs[tpi].second);
1259 IsEarlyClobber |= DstMO.isEarlyClobber();
1260 }
1261
Jakob Stoklund Olesenae52fad2012-08-03 23:57:58 +00001262 bool RemovedKillFlag = false;
1263 bool AllUsesCopied = true;
1264 unsigned LastCopiedReg = 0;
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001265 SlotIndex LastCopyIdx;
Jakob Stoklund Olesenae52fad2012-08-03 23:57:58 +00001266 unsigned RegB = 0;
1267 for (unsigned tpi = 0, tpe = TiedPairs.size(); tpi != tpe; ++tpi) {
1268 unsigned SrcIdx = TiedPairs[tpi].first;
1269 unsigned DstIdx = TiedPairs[tpi].second;
1270
1271 const MachineOperand &DstMO = MI->getOperand(DstIdx);
1272 unsigned RegA = DstMO.getReg();
Jakob Stoklund Olesenae52fad2012-08-03 23:57:58 +00001273
1274 // Grab RegB from the instruction because it may have changed if the
1275 // instruction was commuted.
1276 RegB = MI->getOperand(SrcIdx).getReg();
1277
1278 if (RegA == RegB) {
1279 // The register is tied to multiple destinations (or else we would
1280 // not have continued this far), but this use of the register
1281 // already matches the tied destination. Leave it.
1282 AllUsesCopied = false;
1283 continue;
1284 }
1285 LastCopiedReg = RegA;
1286
1287 assert(TargetRegisterInfo::isVirtualRegister(RegB) &&
1288 "cannot make instruction into two-address form");
1289
1290#ifndef NDEBUG
1291 // First, verify that we don't have a use of "a" in the instruction
1292 // (a = b + a for example) because our transformation will not
1293 // work. This should never occur because we are in SSA form.
1294 for (unsigned i = 0; i != MI->getNumOperands(); ++i)
1295 assert(i == DstIdx ||
1296 !MI->getOperand(i).isReg() ||
1297 MI->getOperand(i).getReg() != RegA);
1298#endif
1299
1300 // Emit a copy.
1301 BuildMI(*MI->getParent(), MI, MI->getDebugLoc(),
1302 TII->get(TargetOpcode::COPY), RegA).addReg(RegB);
1303
1304 // Update DistanceMap.
1305 MachineBasicBlock::iterator PrevMI = MI;
1306 --PrevMI;
1307 DistanceMap.insert(std::make_pair(PrevMI, Dist));
1308 DistanceMap[MI] = ++Dist;
1309
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001310 if (LIS) {
1311 LastCopyIdx = LIS->InsertMachineInstrInMaps(PrevMI).getRegSlot();
1312
1313 if (TargetRegisterInfo::isVirtualRegister(RegA)) {
1314 LiveInterval &LI = LIS->getInterval(RegA);
1315 VNInfo *VNI = LI.getNextValue(LastCopyIdx, LIS->getVNInfoAllocator());
1316 SlotIndex endIdx =
1317 LIS->getInstructionIndex(MI).getRegSlot(IsEarlyClobber);
1318 LI.addRange(LiveRange(LastCopyIdx, endIdx, VNI));
1319 }
1320 }
Jakob Stoklund Olesenae52fad2012-08-03 23:57:58 +00001321
1322 DEBUG(dbgs() << "\t\tprepend:\t" << *PrevMI);
1323
1324 MachineOperand &MO = MI->getOperand(SrcIdx);
1325 assert(MO.isReg() && MO.getReg() == RegB && MO.isUse() &&
1326 "inconsistent operand info for 2-reg pass");
1327 if (MO.isKill()) {
1328 MO.setIsKill(false);
1329 RemovedKillFlag = true;
1330 }
1331
1332 // Make sure regA is a legal regclass for the SrcIdx operand.
1333 if (TargetRegisterInfo::isVirtualRegister(RegA) &&
1334 TargetRegisterInfo::isVirtualRegister(RegB))
1335 MRI->constrainRegClass(RegA, MRI->getRegClass(RegB));
1336
1337 MO.setReg(RegA);
1338
1339 // Propagate SrcRegMap.
1340 SrcRegMap[RegA] = RegB;
1341 }
1342
1343
1344 if (AllUsesCopied) {
1345 if (!IsEarlyClobber) {
1346 // Replace other (un-tied) uses of regB with LastCopiedReg.
1347 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1348 MachineOperand &MO = MI->getOperand(i);
1349 if (MO.isReg() && MO.getReg() == RegB && MO.isUse()) {
1350 if (MO.isKill()) {
1351 MO.setIsKill(false);
1352 RemovedKillFlag = true;
1353 }
1354 MO.setReg(LastCopiedReg);
1355 }
1356 }
1357 }
1358
1359 // Update live variables for regB.
1360 if (RemovedKillFlag && LV && LV->getVarInfo(RegB).removeKill(MI)) {
1361 MachineBasicBlock::iterator PrevMI = MI;
1362 --PrevMI;
1363 LV->addVirtualRegisterKilled(RegB, PrevMI);
1364 }
1365
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001366 // Update LiveIntervals.
1367 if (LIS) {
1368 LiveInterval &LI = LIS->getInterval(RegB);
1369 SlotIndex MIIdx = LIS->getInstructionIndex(MI);
1370 LiveInterval::const_iterator I = LI.find(MIIdx);
1371 assert(I != LI.end() && "RegB must be live-in to use.");
1372
1373 SlotIndex UseIdx = MIIdx.getRegSlot(IsEarlyClobber);
1374 if (I->end == UseIdx)
1375 LI.removeRange(LastCopyIdx, UseIdx);
1376 }
1377
Jakob Stoklund Olesenae52fad2012-08-03 23:57:58 +00001378 } else if (RemovedKillFlag) {
1379 // Some tied uses of regB matched their destination registers, so
1380 // regB is still used in this instruction, but a kill flag was
1381 // removed from a different tied use of regB, so now we need to add
1382 // a kill flag to one of the remaining uses of regB.
1383 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1384 MachineOperand &MO = MI->getOperand(i);
1385 if (MO.isReg() && MO.getReg() == RegB && MO.isUse()) {
1386 MO.setIsKill(true);
1387 break;
1388 }
1389 }
1390 }
Jakob Stoklund Olesenae52fad2012-08-03 23:57:58 +00001391}
1392
Bill Wendling637980e2008-05-10 00:12:52 +00001393/// runOnMachineFunction - Reduce two-address instructions to two operands.
Alkis Evlogimenos71499de2003-12-18 13:06:04 +00001394///
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001395bool TwoAddressInstructionPass::runOnMachineFunction(MachineFunction &Func) {
1396 MF = &Func;
1397 const TargetMachine &TM = MF->getTarget();
1398 MRI = &MF->getRegInfo();
Evan Cheng875357d2008-03-13 06:37:55 +00001399 TII = TM.getInstrInfo();
1400 TRI = TM.getRegisterInfo();
Evan Cheng2a4410d2011-11-14 19:48:55 +00001401 InstrItins = TM.getInstrItineraryData();
Duncan Sands1465d612009-01-28 13:14:17 +00001402 LV = getAnalysisIfAvailable<LiveVariables>();
Jakob Stoklund Olesen5bfdedf2012-08-03 22:58:34 +00001403 LIS = getAnalysisIfAvailable<LiveIntervals>();
Dan Gohmana70dca12009-10-09 23:27:56 +00001404 AA = &getAnalysis<AliasAnalysis>();
Evan Chengc3aa7c52011-11-16 18:44:48 +00001405 OptLevel = TM.getOptLevel();
Alkis Evlogimenos71499de2003-12-18 13:06:04 +00001406
Misha Brukman75fa4e42004-07-22 15:26:23 +00001407 bool MadeChange = false;
Alkis Evlogimenos71499de2003-12-18 13:06:04 +00001408
David Greeneeb00b182010-01-05 01:24:21 +00001409 DEBUG(dbgs() << "********** REWRITING TWO-ADDR INSTRS **********\n");
Andrew Trick8247e0d2012-02-03 05:12:30 +00001410 DEBUG(dbgs() << "********** Function: "
Craig Topper96601ca2012-08-22 06:07:19 +00001411 << MF->getName() << '\n');
Alkis Evlogimenos3a9986f2004-02-18 00:35:06 +00001412
Jakob Stoklund Olesen73e7dce2011-07-29 22:51:22 +00001413 // This pass takes the function out of SSA form.
1414 MRI->leaveSSA();
1415
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001416 TiedOperandMap TiedOperands;
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +00001417 for (MachineFunction::iterator MBBI = MF->begin(), MBBE = MF->end();
1418 MBBI != MBBE; ++MBBI) {
1419 MBB = MBBI;
Evan Cheng7543e582008-06-18 07:49:14 +00001420 unsigned Dist = 0;
1421 DistanceMap.clear();
Evan Cheng870b8072009-03-01 02:03:43 +00001422 SrcRegMap.clear();
1423 DstRegMap.clear();
1424 Processed.clear();
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +00001425 for (MachineBasicBlock::iterator mi = MBB->begin(), me = MBB->end();
Evan Cheng7a963fa2008-03-27 01:27:25 +00001426 mi != me; ) {
Chris Lattner7896c9f2009-12-03 00:50:42 +00001427 MachineBasicBlock::iterator nmi = llvm::next(mi);
Dale Johannesenb8ff9342010-02-10 21:47:48 +00001428 if (mi->isDebugValue()) {
1429 mi = nmi;
1430 continue;
1431 }
Evan Chengf1250ee2010-03-23 20:36:12 +00001432
Jakob Stoklund Olesen8c3dccd2012-12-01 01:06:44 +00001433 // Expand REG_SEQUENCE instructions. This will position mi at the first
1434 // expanded instruction.
Evan Cheng3d720fb2010-05-05 18:45:40 +00001435 if (mi->isRegSequence())
Jakob Stoklund Olesen8c3dccd2012-12-01 01:06:44 +00001436 eliminateRegSequence(mi);
Evan Cheng3d720fb2010-05-05 18:45:40 +00001437
Evan Cheng7543e582008-06-18 07:49:14 +00001438 DistanceMap.insert(std::make_pair(mi, ++Dist));
Evan Cheng870b8072009-03-01 02:03:43 +00001439
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +00001440 processCopy(&*mi);
Evan Cheng870b8072009-03-01 02:03:43 +00001441
Bob Wilsoncc80df92009-09-03 20:58:42 +00001442 // First scan through all the tied register uses in this instruction
1443 // and record a list of pairs of tied operands for each register.
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001444 if (!collectTiedOperands(mi, TiedOperands)) {
1445 mi = nmi;
1446 continue;
Bob Wilsoncc80df92009-09-03 20:58:42 +00001447 }
Alkis Evlogimenos71499de2003-12-18 13:06:04 +00001448
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001449 ++NumTwoAddressInstrs;
Jakob Stoklund Olesenae52fad2012-08-03 23:57:58 +00001450 MadeChange = true;
Jakob Stoklund Olesen6ac80662012-08-03 23:25:45 +00001451 DEBUG(dbgs() << '\t' << *mi);
1452
Chandler Carruth32d75be2012-07-18 18:58:22 +00001453 // If the instruction has a single pair of tied operands, try some
1454 // transformations that may either eliminate the tied operands or
1455 // improve the opportunities for coalescing away the register copy.
1456 if (TiedOperands.size() == 1) {
1457 SmallVector<std::pair<unsigned, unsigned>, 4> &TiedPairs
1458 = TiedOperands.begin()->second;
1459 if (TiedPairs.size() == 1) {
1460 unsigned SrcIdx = TiedPairs[0].first;
1461 unsigned DstIdx = TiedPairs[0].second;
1462 unsigned SrcReg = mi->getOperand(SrcIdx).getReg();
1463 unsigned DstReg = mi->getOperand(DstIdx).getReg();
1464 if (SrcReg != DstReg &&
Jakob Stoklund Olesen0de4fd22012-10-26 23:05:10 +00001465 tryInstructionTransform(mi, nmi, SrcIdx, DstIdx, Dist)) {
Chandler Carruth32d75be2012-07-18 18:58:22 +00001466 // The tied operands have been eliminated or shifted further down the
1467 // block to ease elimination. Continue processing with 'nmi'.
1468 TiedOperands.clear();
1469 mi = nmi;
1470 continue;
1471 }
1472 }
1473 }
1474
Bob Wilsoncc80df92009-09-03 20:58:42 +00001475 // Now iterate over the information collected above.
1476 for (TiedOperandMap::iterator OI = TiedOperands.begin(),
1477 OE = TiedOperands.end(); OI != OE; ++OI) {
Jakob Stoklund Olesenae52fad2012-08-03 23:57:58 +00001478 processTiedPairs(mi, OI->second, Dist);
David Greeneeb00b182010-01-05 01:24:21 +00001479 DEBUG(dbgs() << "\t\trewrite to:\t" << *mi);
Jakob Stoklund Olesen351c8812012-06-25 03:27:12 +00001480 }
Bill Wendling637980e2008-05-10 00:12:52 +00001481
Jakob Stoklund Olesen351c8812012-06-25 03:27:12 +00001482 // Rewrite INSERT_SUBREG as COPY now that we no longer need SSA form.
1483 if (mi->isInsertSubreg()) {
1484 // From %reg = INSERT_SUBREG %reg, %subreg, subidx
1485 // To %reg:subidx = COPY %subreg
1486 unsigned SubIdx = mi->getOperand(3).getImm();
1487 mi->RemoveOperand(3);
1488 assert(mi->getOperand(0).getSubReg() == 0 && "Unexpected subreg idx");
1489 mi->getOperand(0).setSubReg(SubIdx);
1490 mi->getOperand(0).setIsUndef(mi->getOperand(1).isUndef());
1491 mi->RemoveOperand(1);
1492 mi->setDesc(TII->get(TargetOpcode::COPY));
1493 DEBUG(dbgs() << "\t\tconvert to:\t" << *mi);
Jakob Stoklund Olesened2185e2010-07-06 23:26:25 +00001494 }
1495
Bob Wilsoncc80df92009-09-03 20:58:42 +00001496 // Clear TiedOperands here instead of at the top of the loop
1497 // since most instructions do not have tied operands.
1498 TiedOperands.clear();
Evan Cheng7a963fa2008-03-27 01:27:25 +00001499 mi = nmi;
Misha Brukman75fa4e42004-07-22 15:26:23 +00001500 }
1501 }
1502
Cameron Zwarich767e0432013-02-20 06:46:34 +00001503 if (LIS)
1504 MF->verify(this, "After two-address instruction pass");
1505
Misha Brukman75fa4e42004-07-22 15:26:23 +00001506 return MadeChange;
Alkis Evlogimenos71499de2003-12-18 13:06:04 +00001507}
Evan Cheng3d720fb2010-05-05 18:45:40 +00001508
Jakob Stoklund Olesen8c3dccd2012-12-01 01:06:44 +00001509/// Eliminate a REG_SEQUENCE instruction as part of the de-ssa process.
Evan Cheng3d720fb2010-05-05 18:45:40 +00001510///
Jakob Stoklund Olesen8c3dccd2012-12-01 01:06:44 +00001511/// The instruction is turned into a sequence of sub-register copies:
1512///
1513/// %dst = REG_SEQUENCE %v1, ssub0, %v2, ssub1
1514///
1515/// Becomes:
1516///
1517/// %dst:ssub0<def,undef> = COPY %v1
1518/// %dst:ssub1<def> = COPY %v2
1519///
1520void TwoAddressInstructionPass::
1521eliminateRegSequence(MachineBasicBlock::iterator &MBBI) {
1522 MachineInstr *MI = MBBI;
1523 unsigned DstReg = MI->getOperand(0).getReg();
1524 if (MI->getOperand(0).getSubReg() ||
1525 TargetRegisterInfo::isPhysicalRegister(DstReg) ||
1526 !(MI->getNumOperands() & 1)) {
1527 DEBUG(dbgs() << "Illegal REG_SEQUENCE instruction:" << *MI);
1528 llvm_unreachable(0);
Evan Cheng3d720fb2010-05-05 18:45:40 +00001529 }
1530
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001531 SmallVector<unsigned, 4> OrigRegs;
1532 if (LIS) {
1533 OrigRegs.push_back(MI->getOperand(0).getReg());
1534 for (unsigned i = 1, e = MI->getNumOperands(); i < e; i += 2)
1535 OrigRegs.push_back(MI->getOperand(i).getReg());
1536 }
1537
Jakob Stoklund Olesen8c3dccd2012-12-01 01:06:44 +00001538 bool DefEmitted = false;
1539 for (unsigned i = 1, e = MI->getNumOperands(); i < e; i += 2) {
1540 MachineOperand &UseMO = MI->getOperand(i);
1541 unsigned SrcReg = UseMO.getReg();
1542 unsigned SubIdx = MI->getOperand(i+1).getImm();
1543 // Nothing needs to be inserted for <undef> operands.
1544 if (UseMO.isUndef())
1545 continue;
1546
1547 // Defer any kill flag to the last operand using SrcReg. Otherwise, we
1548 // might insert a COPY that uses SrcReg after is was killed.
1549 bool isKill = UseMO.isKill();
1550 if (isKill)
1551 for (unsigned j = i + 2; j < e; j += 2)
1552 if (MI->getOperand(j).getReg() == SrcReg) {
1553 MI->getOperand(j).setIsKill();
1554 UseMO.setIsKill(false);
1555 isKill = false;
1556 break;
1557 }
1558
1559 // Insert the sub-register copy.
1560 MachineInstr *CopyMI = BuildMI(*MI->getParent(), MI, MI->getDebugLoc(),
1561 TII->get(TargetOpcode::COPY))
1562 .addReg(DstReg, RegState::Define, SubIdx)
1563 .addOperand(UseMO);
1564
1565 // The first def needs an <undef> flag because there is no live register
1566 // before it.
1567 if (!DefEmitted) {
1568 CopyMI->getOperand(0).setIsUndef(true);
1569 // Return an iterator pointing to the first inserted instr.
1570 MBBI = CopyMI;
1571 }
1572 DefEmitted = true;
1573
1574 // Update LiveVariables' kill info.
1575 if (LV && isKill && !TargetRegisterInfo::isPhysicalRegister(SrcReg))
1576 LV->replaceKillInstruction(SrcReg, MI, CopyMI);
1577
1578 DEBUG(dbgs() << "Inserted: " << *CopyMI);
1579 }
1580
David Blaikiefdf45172013-02-20 07:39:20 +00001581 MachineBasicBlock::iterator EndMBBI =
1582 llvm::next(MachineBasicBlock::iterator(MI));
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001583
Jakob Stoklund Olesen8c3dccd2012-12-01 01:06:44 +00001584 if (!DefEmitted) {
1585 DEBUG(dbgs() << "Turned: " << *MI << " into an IMPLICIT_DEF");
1586 MI->setDesc(TII->get(TargetOpcode::IMPLICIT_DEF));
1587 for (int j = MI->getNumOperands() - 1, ee = 0; j > ee; --j)
1588 MI->RemoveOperand(j);
1589 } else {
1590 DEBUG(dbgs() << "Eliminated: " << *MI);
1591 MI->eraseFromParent();
1592 }
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001593
1594 // Udpate LiveIntervals.
Cameron Zwarichc5b61352013-02-20 22:10:00 +00001595 if (LIS)
Cameron Zwarich9030fc22013-02-20 06:46:48 +00001596 LIS->repairIntervalsInRange(MBB, MBBI, EndMBBI, OrigRegs);
Evan Cheng3d720fb2010-05-05 18:45:40 +00001597}