blob: ebdf9cf4468b8dfa44660a1dc4a13f8f882509f2 [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"
Chris Lattner1e313632004-07-21 23:17:57 +000032#include "llvm/Function.h"
Alkis Evlogimenos71499de2003-12-18 13:06:04 +000033#include "llvm/CodeGen/LiveVariables.h"
Alkis Evlogimenos71499de2003-12-18 13:06:04 +000034#include "llvm/CodeGen/MachineFunctionPass.h"
35#include "llvm/CodeGen/MachineInstr.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000036#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000037#include "llvm/Target/TargetRegisterInfo.h"
Alkis Evlogimenos71499de2003-12-18 13:06:04 +000038#include "llvm/Target/TargetInstrInfo.h"
39#include "llvm/Target/TargetMachine.h"
Owen Anderson95dad832008-10-07 20:22:28 +000040#include "llvm/Target/TargetOptions.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000041#include "llvm/Support/Compiler.h"
Evan Cheng875357d2008-03-13 06:37:55 +000042#include "llvm/Support/Debug.h"
Evan Cheng7543e582008-06-18 07:49:14 +000043#include "llvm/ADT/BitVector.h"
44#include "llvm/ADT/DenseMap.h"
Dan Gohmand68a0762009-01-05 17:59:02 +000045#include "llvm/ADT/SmallSet.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000046#include "llvm/ADT/Statistic.h"
47#include "llvm/ADT/STLExtras.h"
Alkis Evlogimenos71499de2003-12-18 13:06:04 +000048using namespace llvm;
49
Chris Lattnercd3245a2006-12-19 22:41:21 +000050STATISTIC(NumTwoAddressInstrs, "Number of two-address instructions");
51STATISTIC(NumCommuted , "Number of instructions commuted to coalesce");
Evan Chengd498c8f2009-01-25 03:53:59 +000052STATISTIC(NumAggrCommuted , "Number of instructions aggressively commuted");
Chris Lattnercd3245a2006-12-19 22:41:21 +000053STATISTIC(NumConvertedTo3Addr, "Number of instructions promoted to 3-address");
Evan Cheng875357d2008-03-13 06:37:55 +000054STATISTIC(Num3AddrSunk, "Number of 3-address instructions sunk");
Evan Cheng7543e582008-06-18 07:49:14 +000055STATISTIC(NumReMats, "Number of instructions re-materialized");
Evan Cheng28c7ce32009-02-21 03:14:25 +000056STATISTIC(NumDeletes, "Number of dead instructions deleted");
Evan Cheng875357d2008-03-13 06:37:55 +000057
58namespace {
Bill Wendling637980e2008-05-10 00:12:52 +000059 class VISIBILITY_HIDDEN TwoAddressInstructionPass
60 : public MachineFunctionPass {
Evan Cheng875357d2008-03-13 06:37:55 +000061 const TargetInstrInfo *TII;
62 const TargetRegisterInfo *TRI;
63 MachineRegisterInfo *MRI;
64 LiveVariables *LV;
65
Evan Cheng870b8072009-03-01 02:03:43 +000066 // DistanceMap - Keep track the distance of a MI from the start of the
67 // current basic block.
68 DenseMap<MachineInstr*, unsigned> DistanceMap;
69
70 // SrcRegMap - A map from virtual registers to physical registers which
71 // are likely targets to be coalesced to due to copies from physical
72 // registers to virtual registers. e.g. v1024 = move r0.
73 DenseMap<unsigned, unsigned> SrcRegMap;
74
75 // DstRegMap - A map from virtual registers to physical registers which
76 // are likely targets to be coalesced to due to copies to physical
77 // registers from virtual registers. e.g. r1 = move v1024.
78 DenseMap<unsigned, unsigned> DstRegMap;
79
Bill Wendling637980e2008-05-10 00:12:52 +000080 bool Sink3AddrInstruction(MachineBasicBlock *MBB, MachineInstr *MI,
81 unsigned Reg,
82 MachineBasicBlock::iterator OldPos);
Evan Cheng7543e582008-06-18 07:49:14 +000083
Evan Cheng7543e582008-06-18 07:49:14 +000084 bool isProfitableToReMat(unsigned Reg, const TargetRegisterClass *RC,
Evan Cheng601ca4b2008-06-25 01:16:38 +000085 MachineInstr *MI, MachineInstr *DefMI,
Evan Cheng870b8072009-03-01 02:03:43 +000086 MachineBasicBlock *MBB, unsigned Loc);
Evan Cheng81913712009-01-23 23:27:33 +000087
Evan Chengd498c8f2009-01-25 03:53:59 +000088 bool NoUseAfterLastDef(unsigned Reg, MachineBasicBlock *MBB, unsigned Dist,
Evan Chengd498c8f2009-01-25 03:53:59 +000089 unsigned &LastDef);
90
Evan Chenge9ccb3a2009-04-28 02:12:36 +000091 MachineInstr *FindLastUseInMBB(unsigned Reg, MachineBasicBlock *MBB,
92 unsigned Dist);
93
Evan Chengd498c8f2009-01-25 03:53:59 +000094 bool isProfitableToCommute(unsigned regB, unsigned regC,
95 MachineInstr *MI, MachineBasicBlock *MBB,
Evan Cheng870b8072009-03-01 02:03:43 +000096 unsigned Dist);
Evan Chengd498c8f2009-01-25 03:53:59 +000097
Evan Cheng81913712009-01-23 23:27:33 +000098 bool CommuteInstruction(MachineBasicBlock::iterator &mi,
99 MachineFunction::iterator &mbbi,
Evan Cheng870b8072009-03-01 02:03:43 +0000100 unsigned RegB, unsigned RegC, unsigned Dist);
101
Evan Chenge6f350d2009-03-30 21:34:07 +0000102 bool isProfitableToConv3Addr(unsigned RegA);
103
104 bool ConvertInstTo3Addr(MachineBasicBlock::iterator &mi,
105 MachineBasicBlock::iterator &nmi,
106 MachineFunction::iterator &mbbi,
107 unsigned RegB, unsigned Dist);
108
Evan Cheng870b8072009-03-01 02:03:43 +0000109 void ProcessCopy(MachineInstr *MI, MachineBasicBlock *MBB,
110 SmallPtrSet<MachineInstr*, 8> &Processed);
Evan Cheng875357d2008-03-13 06:37:55 +0000111 public:
Nick Lewyckyecd94c82007-05-06 13:37:16 +0000112 static char ID; // Pass identification, replacement for typeid
Dan Gohmanae73dc12008-09-04 17:05:41 +0000113 TwoAddressInstructionPass() : MachineFunctionPass(&ID) {}
Devang Patel794fd752007-05-01 21:15:47 +0000114
Bill Wendling637980e2008-05-10 00:12:52 +0000115 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Bill Wendling637980e2008-05-10 00:12:52 +0000116 AU.addPreserved<LiveVariables>();
117 AU.addPreservedID(MachineLoopInfoID);
118 AU.addPreservedID(MachineDominatorsID);
Owen Anderson95dad832008-10-07 20:22:28 +0000119 if (StrongPHIElim)
120 AU.addPreservedID(StrongPHIEliminationID);
121 else
122 AU.addPreservedID(PHIEliminationID);
Bill Wendling637980e2008-05-10 00:12:52 +0000123 MachineFunctionPass::getAnalysisUsage(AU);
124 }
Alkis Evlogimenos4c080862003-12-18 22:40:24 +0000125
Bill Wendling637980e2008-05-10 00:12:52 +0000126 /// runOnMachineFunction - Pass entry point.
Misha Brukman75fa4e42004-07-22 15:26:23 +0000127 bool runOnMachineFunction(MachineFunction&);
128 };
Chris Lattnerd74ea2b2006-05-24 17:04:05 +0000129}
Alkis Evlogimenos71499de2003-12-18 13:06:04 +0000130
Dan Gohman844731a2008-05-13 00:00:25 +0000131char TwoAddressInstructionPass::ID = 0;
132static RegisterPass<TwoAddressInstructionPass>
133X("twoaddressinstruction", "Two-Address instruction pass");
134
Dan Gohman6ddba2b2008-05-13 02:05:11 +0000135const PassInfo *const llvm::TwoAddressInstructionPassID = &X;
Alkis Evlogimenos4c080862003-12-18 22:40:24 +0000136
Evan Cheng875357d2008-03-13 06:37:55 +0000137/// Sink3AddrInstruction - A two-address instruction has been converted to a
138/// three-address instruction to avoid clobbering a register. Try to sink it
Bill Wendling637980e2008-05-10 00:12:52 +0000139/// past the instruction that would kill the above mentioned register to reduce
140/// register pressure.
Evan Cheng875357d2008-03-13 06:37:55 +0000141bool TwoAddressInstructionPass::Sink3AddrInstruction(MachineBasicBlock *MBB,
142 MachineInstr *MI, unsigned SavedReg,
143 MachineBasicBlock::iterator OldPos) {
144 // Check if it's safe to move this instruction.
145 bool SeenStore = true; // Be conservative.
146 if (!MI->isSafeToMove(TII, SeenStore))
147 return false;
148
149 unsigned DefReg = 0;
150 SmallSet<unsigned, 4> UseRegs;
Bill Wendling637980e2008-05-10 00:12:52 +0000151
Evan Cheng875357d2008-03-13 06:37:55 +0000152 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
153 const MachineOperand &MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000154 if (!MO.isReg())
Evan Cheng875357d2008-03-13 06:37:55 +0000155 continue;
156 unsigned MOReg = MO.getReg();
157 if (!MOReg)
158 continue;
159 if (MO.isUse() && MOReg != SavedReg)
160 UseRegs.insert(MO.getReg());
161 if (!MO.isDef())
162 continue;
163 if (MO.isImplicit())
164 // Don't try to move it if it implicitly defines a register.
165 return false;
166 if (DefReg)
167 // For now, don't move any instructions that define multiple registers.
168 return false;
169 DefReg = MO.getReg();
170 }
171
172 // Find the instruction that kills SavedReg.
173 MachineInstr *KillMI = NULL;
174 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(SavedReg),
175 UE = MRI->use_end(); UI != UE; ++UI) {
176 MachineOperand &UseMO = UI.getOperand();
177 if (!UseMO.isKill())
178 continue;
179 KillMI = UseMO.getParent();
180 break;
181 }
Bill Wendling637980e2008-05-10 00:12:52 +0000182
Dan Gohman97121ba2009-04-08 00:15:30 +0000183 if (!KillMI || KillMI->getParent() != MBB || KillMI == MI)
Evan Cheng875357d2008-03-13 06:37:55 +0000184 return false;
185
Bill Wendling637980e2008-05-10 00:12:52 +0000186 // If any of the definitions are used by another instruction between the
187 // position and the kill use, then it's not safe to sink it.
188 //
189 // FIXME: This can be sped up if there is an easy way to query whether an
Evan Cheng7543e582008-06-18 07:49:14 +0000190 // instruction is before or after another instruction. Then we can use
Bill Wendling637980e2008-05-10 00:12:52 +0000191 // MachineRegisterInfo def / use instead.
Evan Cheng875357d2008-03-13 06:37:55 +0000192 MachineOperand *KillMO = NULL;
193 MachineBasicBlock::iterator KillPos = KillMI;
194 ++KillPos;
Bill Wendling637980e2008-05-10 00:12:52 +0000195
Evan Cheng7543e582008-06-18 07:49:14 +0000196 unsigned NumVisited = 0;
Evan Cheng875357d2008-03-13 06:37:55 +0000197 for (MachineBasicBlock::iterator I = next(OldPos); I != KillPos; ++I) {
198 MachineInstr *OtherMI = I;
Evan Cheng7543e582008-06-18 07:49:14 +0000199 if (NumVisited > 30) // FIXME: Arbitrary limit to reduce compile time cost.
200 return false;
201 ++NumVisited;
Evan Cheng875357d2008-03-13 06:37:55 +0000202 for (unsigned i = 0, e = OtherMI->getNumOperands(); i != e; ++i) {
203 MachineOperand &MO = OtherMI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000204 if (!MO.isReg())
Evan Cheng875357d2008-03-13 06:37:55 +0000205 continue;
206 unsigned MOReg = MO.getReg();
207 if (!MOReg)
208 continue;
209 if (DefReg == MOReg)
210 return false;
Bill Wendling637980e2008-05-10 00:12:52 +0000211
Evan Cheng875357d2008-03-13 06:37:55 +0000212 if (MO.isKill()) {
213 if (OtherMI == KillMI && MOReg == SavedReg)
Evan Cheng7543e582008-06-18 07:49:14 +0000214 // Save the operand that kills the register. We want to unset the kill
215 // marker if we can sink MI past it.
Evan Cheng875357d2008-03-13 06:37:55 +0000216 KillMO = &MO;
217 else if (UseRegs.count(MOReg))
218 // One of the uses is killed before the destination.
219 return false;
220 }
221 }
222 }
223
Evan Cheng875357d2008-03-13 06:37:55 +0000224 // Update kill and LV information.
225 KillMO->setIsKill(false);
226 KillMO = MI->findRegisterUseOperand(SavedReg, false, TRI);
227 KillMO->setIsKill(true);
Owen Anderson802af112008-07-02 21:28:58 +0000228
Evan Cheng9f1c8312008-07-03 09:09:37 +0000229 if (LV)
230 LV->replaceKillInstruction(SavedReg, KillMI, MI);
Evan Cheng875357d2008-03-13 06:37:55 +0000231
232 // Move instruction to its destination.
233 MBB->remove(MI);
234 MBB->insert(KillPos, MI);
235
236 ++Num3AddrSunk;
237 return true;
238}
239
Evan Cheng7543e582008-06-18 07:49:14 +0000240/// isTwoAddrUse - Return true if the specified MI is using the specified
241/// register as a two-address operand.
242static bool isTwoAddrUse(MachineInstr *UseMI, unsigned Reg) {
243 const TargetInstrDesc &TID = UseMI->getDesc();
244 for (unsigned i = 0, e = TID.getNumOperands(); i != e; ++i) {
245 MachineOperand &MO = UseMI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000246 if (MO.isReg() && MO.getReg() == Reg &&
Evan Chenga24752f2009-03-19 20:30:06 +0000247 (MO.isDef() || UseMI->isRegTiedToDefOperand(i)))
Evan Cheng7543e582008-06-18 07:49:14 +0000248 // Earlier use is a two-address one.
249 return true;
250 }
251 return false;
252}
253
254/// isProfitableToReMat - Return true if the heuristics determines it is likely
255/// to be profitable to re-materialize the definition of Reg rather than copy
256/// the register.
257bool
258TwoAddressInstructionPass::isProfitableToReMat(unsigned Reg,
Evan Cheng870b8072009-03-01 02:03:43 +0000259 const TargetRegisterClass *RC,
260 MachineInstr *MI, MachineInstr *DefMI,
261 MachineBasicBlock *MBB, unsigned Loc) {
Evan Cheng7543e582008-06-18 07:49:14 +0000262 bool OtherUse = false;
263 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(Reg),
264 UE = MRI->use_end(); UI != UE; ++UI) {
265 MachineOperand &UseMO = UI.getOperand();
Evan Cheng7543e582008-06-18 07:49:14 +0000266 MachineInstr *UseMI = UseMO.getParent();
Evan Cheng601ca4b2008-06-25 01:16:38 +0000267 MachineBasicBlock *UseMBB = UseMI->getParent();
268 if (UseMBB == MBB) {
269 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(UseMI);
270 if (DI != DistanceMap.end() && DI->second == Loc)
271 continue; // Current use.
272 OtherUse = true;
273 // There is at least one other use in the MBB that will clobber the
274 // register.
275 if (isTwoAddrUse(UseMI, Reg))
276 return true;
277 }
Evan Cheng7543e582008-06-18 07:49:14 +0000278 }
Evan Cheng601ca4b2008-06-25 01:16:38 +0000279
280 // If other uses in MBB are not two-address uses, then don't remat.
281 if (OtherUse)
282 return false;
283
284 // No other uses in the same block, remat if it's defined in the same
285 // block so it does not unnecessarily extend the live range.
286 return MBB == DefMI->getParent();
Evan Cheng7543e582008-06-18 07:49:14 +0000287}
288
Evan Chengd498c8f2009-01-25 03:53:59 +0000289/// NoUseAfterLastDef - Return true if there are no intervening uses between the
290/// last instruction in the MBB that defines the specified register and the
291/// two-address instruction which is being processed. It also returns the last
292/// def location by reference
293bool TwoAddressInstructionPass::NoUseAfterLastDef(unsigned Reg,
Evan Cheng870b8072009-03-01 02:03:43 +0000294 MachineBasicBlock *MBB, unsigned Dist,
295 unsigned &LastDef) {
Evan Chengd498c8f2009-01-25 03:53:59 +0000296 LastDef = 0;
297 unsigned LastUse = Dist;
298 for (MachineRegisterInfo::reg_iterator I = MRI->reg_begin(Reg),
299 E = MRI->reg_end(); I != E; ++I) {
300 MachineOperand &MO = I.getOperand();
301 MachineInstr *MI = MO.getParent();
302 if (MI->getParent() != MBB)
303 continue;
304 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(MI);
305 if (DI == DistanceMap.end())
306 continue;
307 if (MO.isUse() && DI->second < LastUse)
308 LastUse = DI->second;
309 if (MO.isDef() && DI->second > LastDef)
310 LastDef = DI->second;
311 }
312
313 return !(LastUse > LastDef && LastUse < Dist);
314}
315
Evan Chenge9ccb3a2009-04-28 02:12:36 +0000316MachineInstr *TwoAddressInstructionPass::FindLastUseInMBB(unsigned Reg,
317 MachineBasicBlock *MBB,
318 unsigned Dist) {
Lang Hamesa7c9dea2009-05-14 04:26:30 +0000319 unsigned LastUseDist = 0;
Evan Chenge9ccb3a2009-04-28 02:12:36 +0000320 MachineInstr *LastUse = 0;
321 for (MachineRegisterInfo::reg_iterator I = MRI->reg_begin(Reg),
322 E = MRI->reg_end(); I != E; ++I) {
323 MachineOperand &MO = I.getOperand();
324 MachineInstr *MI = MO.getParent();
325 if (MI->getParent() != MBB)
326 continue;
327 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(MI);
328 if (DI == DistanceMap.end())
329 continue;
Lang Hamesa7c9dea2009-05-14 04:26:30 +0000330 if (DI->second >= Dist)
331 continue;
332
333 if (MO.isUse() && DI->second > LastUseDist) {
Evan Chenge9ccb3a2009-04-28 02:12:36 +0000334 LastUse = DI->first;
335 LastUseDist = DI->second;
336 }
337 }
338 return LastUse;
339}
340
Evan Cheng870b8072009-03-01 02:03:43 +0000341/// isCopyToReg - Return true if the specified MI is a copy instruction or
342/// a extract_subreg instruction. It also returns the source and destination
343/// registers and whether they are physical registers by reference.
344static bool isCopyToReg(MachineInstr &MI, const TargetInstrInfo *TII,
345 unsigned &SrcReg, unsigned &DstReg,
346 bool &IsSrcPhys, bool &IsDstPhys) {
347 SrcReg = 0;
348 DstReg = 0;
349 unsigned SrcSubIdx, DstSubIdx;
350 if (!TII->isMoveInstr(MI, SrcReg, DstReg, SrcSubIdx, DstSubIdx)) {
351 if (MI.getOpcode() == TargetInstrInfo::EXTRACT_SUBREG) {
352 DstReg = MI.getOperand(0).getReg();
353 SrcReg = MI.getOperand(1).getReg();
354 } else if (MI.getOpcode() == TargetInstrInfo::INSERT_SUBREG) {
355 DstReg = MI.getOperand(0).getReg();
356 SrcReg = MI.getOperand(2).getReg();
Dan Gohman97121ba2009-04-08 00:15:30 +0000357 } else if (MI.getOpcode() == TargetInstrInfo::SUBREG_TO_REG) {
358 DstReg = MI.getOperand(0).getReg();
359 SrcReg = MI.getOperand(2).getReg();
Evan Cheng870b8072009-03-01 02:03:43 +0000360 }
361 }
362
363 if (DstReg) {
364 IsSrcPhys = TargetRegisterInfo::isPhysicalRegister(SrcReg);
365 IsDstPhys = TargetRegisterInfo::isPhysicalRegister(DstReg);
366 return true;
367 }
368 return false;
369}
370
Dan Gohman97121ba2009-04-08 00:15:30 +0000371/// isKilled - Test if the given register value, which is used by the given
372/// instruction, is killed by the given instruction. This looks through
373/// coalescable copies to see if the original value is potentially not killed.
374///
375/// For example, in this code:
376///
377/// %reg1034 = copy %reg1024
378/// %reg1035 = copy %reg1025<kill>
379/// %reg1036 = add %reg1034<kill>, %reg1035<kill>
380///
381/// %reg1034 is not considered to be killed, since it is copied from a
382/// register which is not killed. Treating it as not killed lets the
383/// normal heuristics commute the (two-address) add, which lets
384/// coalescing eliminate the extra copy.
385///
386static bool isKilled(MachineInstr &MI, unsigned Reg,
387 const MachineRegisterInfo *MRI,
388 const TargetInstrInfo *TII) {
389 MachineInstr *DefMI = &MI;
390 for (;;) {
391 if (!DefMI->killsRegister(Reg))
392 return false;
393 if (TargetRegisterInfo::isPhysicalRegister(Reg))
394 return true;
395 MachineRegisterInfo::def_iterator Begin = MRI->def_begin(Reg);
396 // If there are multiple defs, we can't do a simple analysis, so just
397 // go with what the kill flag says.
398 if (next(Begin) != MRI->def_end())
399 return true;
400 DefMI = &*Begin;
401 bool IsSrcPhys, IsDstPhys;
402 unsigned SrcReg, DstReg;
403 // If the def is something other than a copy, then it isn't going to
404 // be coalesced, so follow the kill flag.
405 if (!isCopyToReg(*DefMI, TII, SrcReg, DstReg, IsSrcPhys, IsDstPhys))
406 return true;
407 Reg = SrcReg;
408 }
409}
410
Evan Cheng870b8072009-03-01 02:03:43 +0000411/// isTwoAddrUse - Return true if the specified MI uses the specified register
412/// as a two-address use. If so, return the destination register by reference.
413static bool isTwoAddrUse(MachineInstr &MI, unsigned Reg, unsigned &DstReg) {
414 const TargetInstrDesc &TID = MI.getDesc();
Evan Chenge6f350d2009-03-30 21:34:07 +0000415 unsigned NumOps = (MI.getOpcode() == TargetInstrInfo::INLINEASM)
416 ? MI.getNumOperands() : TID.getNumOperands();
417 for (unsigned i = 0; i != NumOps; ++i) {
Evan Cheng870b8072009-03-01 02:03:43 +0000418 const MachineOperand &MO = MI.getOperand(i);
419 if (!MO.isReg() || !MO.isUse() || MO.getReg() != Reg)
420 continue;
Evan Chenga24752f2009-03-19 20:30:06 +0000421 unsigned ti;
422 if (MI.isRegTiedToDefOperand(i, &ti)) {
Evan Cheng870b8072009-03-01 02:03:43 +0000423 DstReg = MI.getOperand(ti).getReg();
424 return true;
425 }
426 }
427 return false;
428}
429
430/// findOnlyInterestingUse - Given a register, if has a single in-basic block
431/// use, return the use instruction if it's a copy or a two-address use.
432static
433MachineInstr *findOnlyInterestingUse(unsigned Reg, MachineBasicBlock *MBB,
434 MachineRegisterInfo *MRI,
435 const TargetInstrInfo *TII,
Evan Cheng87d696a2009-04-14 00:32:25 +0000436 bool &IsCopy,
Evan Cheng870b8072009-03-01 02:03:43 +0000437 unsigned &DstReg, bool &IsDstPhys) {
438 MachineRegisterInfo::use_iterator UI = MRI->use_begin(Reg);
439 if (UI == MRI->use_end())
440 return 0;
441 MachineInstr &UseMI = *UI;
442 if (++UI != MRI->use_end())
443 // More than one use.
444 return 0;
445 if (UseMI.getParent() != MBB)
446 return 0;
447 unsigned SrcReg;
448 bool IsSrcPhys;
Evan Cheng87d696a2009-04-14 00:32:25 +0000449 if (isCopyToReg(UseMI, TII, SrcReg, DstReg, IsSrcPhys, IsDstPhys)) {
450 IsCopy = true;
Evan Cheng870b8072009-03-01 02:03:43 +0000451 return &UseMI;
Evan Cheng87d696a2009-04-14 00:32:25 +0000452 }
Evan Cheng870b8072009-03-01 02:03:43 +0000453 IsDstPhys = false;
Evan Cheng87d696a2009-04-14 00:32:25 +0000454 if (isTwoAddrUse(UseMI, Reg, DstReg)) {
455 IsDstPhys = TargetRegisterInfo::isPhysicalRegister(DstReg);
Evan Cheng870b8072009-03-01 02:03:43 +0000456 return &UseMI;
Evan Cheng87d696a2009-04-14 00:32:25 +0000457 }
Evan Cheng870b8072009-03-01 02:03:43 +0000458 return 0;
459}
460
461/// getMappedReg - Return the physical register the specified virtual register
462/// might be mapped to.
463static unsigned
464getMappedReg(unsigned Reg, DenseMap<unsigned, unsigned> &RegMap) {
465 while (TargetRegisterInfo::isVirtualRegister(Reg)) {
466 DenseMap<unsigned, unsigned>::iterator SI = RegMap.find(Reg);
467 if (SI == RegMap.end())
468 return 0;
469 Reg = SI->second;
470 }
471 if (TargetRegisterInfo::isPhysicalRegister(Reg))
472 return Reg;
473 return 0;
474}
475
476/// regsAreCompatible - Return true if the two registers are equal or aliased.
477///
478static bool
479regsAreCompatible(unsigned RegA, unsigned RegB, const TargetRegisterInfo *TRI) {
480 if (RegA == RegB)
481 return true;
482 if (!RegA || !RegB)
483 return false;
484 return TRI->regsOverlap(RegA, RegB);
485}
486
487
Evan Chengd498c8f2009-01-25 03:53:59 +0000488/// isProfitableToReMat - Return true if it's potentially profitable to commute
489/// the two-address instruction that's being processed.
490bool
491TwoAddressInstructionPass::isProfitableToCommute(unsigned regB, unsigned regC,
Evan Cheng870b8072009-03-01 02:03:43 +0000492 MachineInstr *MI, MachineBasicBlock *MBB,
493 unsigned Dist) {
Evan Chengd498c8f2009-01-25 03:53:59 +0000494 // Determine if it's profitable to commute this two address instruction. In
495 // general, we want no uses between this instruction and the definition of
496 // the two-address register.
497 // e.g.
498 // %reg1028<def> = EXTRACT_SUBREG %reg1027<kill>, 1
499 // %reg1029<def> = MOV8rr %reg1028
500 // %reg1029<def> = SHR8ri %reg1029, 7, %EFLAGS<imp-def,dead>
501 // insert => %reg1030<def> = MOV8rr %reg1028
502 // %reg1030<def> = ADD8rr %reg1028<kill>, %reg1029<kill>, %EFLAGS<imp-def,dead>
503 // In this case, it might not be possible to coalesce the second MOV8rr
504 // instruction if the first one is coalesced. So it would be profitable to
505 // commute it:
506 // %reg1028<def> = EXTRACT_SUBREG %reg1027<kill>, 1
507 // %reg1029<def> = MOV8rr %reg1028
508 // %reg1029<def> = SHR8ri %reg1029, 7, %EFLAGS<imp-def,dead>
509 // insert => %reg1030<def> = MOV8rr %reg1029
510 // %reg1030<def> = ADD8rr %reg1029<kill>, %reg1028<kill>, %EFLAGS<imp-def,dead>
511
512 if (!MI->killsRegister(regC))
513 return false;
514
515 // Ok, we have something like:
516 // %reg1030<def> = ADD8rr %reg1028<kill>, %reg1029<kill>, %EFLAGS<imp-def,dead>
517 // let's see if it's worth commuting it.
518
Evan Cheng870b8072009-03-01 02:03:43 +0000519 // Look for situations like this:
520 // %reg1024<def> = MOV r1
521 // %reg1025<def> = MOV r0
522 // %reg1026<def> = ADD %reg1024, %reg1025
523 // r0 = MOV %reg1026
524 // Commute the ADD to hopefully eliminate an otherwise unavoidable copy.
525 unsigned FromRegB = getMappedReg(regB, SrcRegMap);
526 unsigned FromRegC = getMappedReg(regC, SrcRegMap);
527 unsigned ToRegB = getMappedReg(regB, DstRegMap);
528 unsigned ToRegC = getMappedReg(regC, DstRegMap);
529 if (!regsAreCompatible(FromRegB, ToRegB, TRI) &&
530 (regsAreCompatible(FromRegB, ToRegC, TRI) ||
531 regsAreCompatible(FromRegC, ToRegB, TRI)))
532 return true;
533
Evan Chengd498c8f2009-01-25 03:53:59 +0000534 // If there is a use of regC between its last def (could be livein) and this
535 // instruction, then bail.
536 unsigned LastDefC = 0;
Evan Cheng870b8072009-03-01 02:03:43 +0000537 if (!NoUseAfterLastDef(regC, MBB, Dist, LastDefC))
Evan Chengd498c8f2009-01-25 03:53:59 +0000538 return false;
539
540 // If there is a use of regB between its last def (could be livein) and this
541 // instruction, then go ahead and make this transformation.
542 unsigned LastDefB = 0;
Evan Cheng870b8072009-03-01 02:03:43 +0000543 if (!NoUseAfterLastDef(regB, MBB, Dist, LastDefB))
Evan Chengd498c8f2009-01-25 03:53:59 +0000544 return true;
545
546 // Since there are no intervening uses for both registers, then commute
547 // if the def of regC is closer. Its live interval is shorter.
548 return LastDefB && LastDefC && LastDefC > LastDefB;
549}
550
Evan Cheng81913712009-01-23 23:27:33 +0000551/// CommuteInstruction - Commute a two-address instruction and update the basic
552/// block, distance map, and live variables if needed. Return true if it is
553/// successful.
554bool
555TwoAddressInstructionPass::CommuteInstruction(MachineBasicBlock::iterator &mi,
Evan Cheng870b8072009-03-01 02:03:43 +0000556 MachineFunction::iterator &mbbi,
557 unsigned RegB, unsigned RegC, unsigned Dist) {
Evan Cheng81913712009-01-23 23:27:33 +0000558 MachineInstr *MI = mi;
559 DOUT << "2addr: COMMUTING : " << *MI;
560 MachineInstr *NewMI = TII->commuteInstruction(MI);
561
562 if (NewMI == 0) {
563 DOUT << "2addr: COMMUTING FAILED!\n";
564 return false;
565 }
566
567 DOUT << "2addr: COMMUTED TO: " << *NewMI;
568 // If the instruction changed to commute it, update livevar.
569 if (NewMI != MI) {
570 if (LV)
571 // Update live variables
572 LV->replaceKillInstruction(RegC, MI, NewMI);
573
574 mbbi->insert(mi, NewMI); // Insert the new inst
575 mbbi->erase(mi); // Nuke the old inst.
576 mi = NewMI;
577 DistanceMap.insert(std::make_pair(NewMI, Dist));
578 }
Evan Cheng870b8072009-03-01 02:03:43 +0000579
580 // Update source register map.
581 unsigned FromRegC = getMappedReg(RegC, SrcRegMap);
582 if (FromRegC) {
583 unsigned RegA = MI->getOperand(0).getReg();
584 SrcRegMap[RegA] = FromRegC;
585 }
586
Evan Cheng81913712009-01-23 23:27:33 +0000587 return true;
588}
589
Evan Chenge6f350d2009-03-30 21:34:07 +0000590/// isProfitableToConv3Addr - Return true if it is profitable to convert the
591/// given 2-address instruction to a 3-address one.
592bool
593TwoAddressInstructionPass::isProfitableToConv3Addr(unsigned RegA) {
594 // Look for situations like this:
595 // %reg1024<def> = MOV r1
596 // %reg1025<def> = MOV r0
597 // %reg1026<def> = ADD %reg1024, %reg1025
598 // r2 = MOV %reg1026
599 // Turn ADD into a 3-address instruction to avoid a copy.
600 unsigned FromRegA = getMappedReg(RegA, SrcRegMap);
601 unsigned ToRegA = getMappedReg(RegA, DstRegMap);
602 return (FromRegA && ToRegA && !regsAreCompatible(FromRegA, ToRegA, TRI));
603}
604
605/// ConvertInstTo3Addr - Convert the specified two-address instruction into a
606/// three address one. Return true if this transformation was successful.
607bool
608TwoAddressInstructionPass::ConvertInstTo3Addr(MachineBasicBlock::iterator &mi,
609 MachineBasicBlock::iterator &nmi,
610 MachineFunction::iterator &mbbi,
611 unsigned RegB, unsigned Dist) {
612 MachineInstr *NewMI = TII->convertToThreeAddress(mbbi, mi, LV);
613 if (NewMI) {
614 DOUT << "2addr: CONVERTING 2-ADDR: " << *mi;
615 DOUT << "2addr: TO 3-ADDR: " << *NewMI;
616 bool Sunk = false;
617
618 if (NewMI->findRegisterUseOperand(RegB, false, TRI))
619 // FIXME: Temporary workaround. If the new instruction doesn't
620 // uses RegB, convertToThreeAddress must have created more
621 // then one instruction.
622 Sunk = Sink3AddrInstruction(mbbi, NewMI, RegB, mi);
623
624 mbbi->erase(mi); // Nuke the old inst.
625
626 if (!Sunk) {
627 DistanceMap.insert(std::make_pair(NewMI, Dist));
628 mi = NewMI;
629 nmi = next(mi);
630 }
631 return true;
632 }
633
634 return false;
635}
636
Evan Cheng870b8072009-03-01 02:03:43 +0000637/// ProcessCopy - If the specified instruction is not yet processed, process it
638/// if it's a copy. For a copy instruction, we find the physical registers the
639/// source and destination registers might be mapped to. These are kept in
640/// point-to maps used to determine future optimizations. e.g.
641/// v1024 = mov r0
642/// v1025 = mov r1
643/// v1026 = add v1024, v1025
644/// r1 = mov r1026
645/// If 'add' is a two-address instruction, v1024, v1026 are both potentially
646/// coalesced to r0 (from the input side). v1025 is mapped to r1. v1026 is
647/// potentially joined with r1 on the output side. It's worthwhile to commute
648/// 'add' to eliminate a copy.
649void TwoAddressInstructionPass::ProcessCopy(MachineInstr *MI,
650 MachineBasicBlock *MBB,
651 SmallPtrSet<MachineInstr*, 8> &Processed) {
652 if (Processed.count(MI))
653 return;
654
655 bool IsSrcPhys, IsDstPhys;
656 unsigned SrcReg, DstReg;
657 if (!isCopyToReg(*MI, TII, SrcReg, DstReg, IsSrcPhys, IsDstPhys))
658 return;
659
660 if (IsDstPhys && !IsSrcPhys)
661 DstRegMap.insert(std::make_pair(SrcReg, DstReg));
662 else if (!IsDstPhys && IsSrcPhys) {
Evan Cheng3005ed62009-04-13 20:04:24 +0000663 bool isNew = SrcRegMap.insert(std::make_pair(DstReg, SrcReg)).second;
664 if (!isNew)
665 assert(SrcRegMap[DstReg] == SrcReg &&
666 "Can't map to two src physical registers!");
Evan Cheng870b8072009-03-01 02:03:43 +0000667
668 SmallVector<unsigned, 4> VirtRegPairs;
Evan Cheng87d696a2009-04-14 00:32:25 +0000669 bool IsCopy = false;
Evan Cheng870b8072009-03-01 02:03:43 +0000670 unsigned NewReg = 0;
671 while (MachineInstr *UseMI = findOnlyInterestingUse(DstReg, MBB, MRI,TII,
Evan Cheng87d696a2009-04-14 00:32:25 +0000672 IsCopy, NewReg, IsDstPhys)) {
673 if (IsCopy) {
674 if (!Processed.insert(UseMI))
Evan Cheng870b8072009-03-01 02:03:43 +0000675 break;
676 }
677
678 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(UseMI);
679 if (DI != DistanceMap.end())
680 // Earlier in the same MBB.Reached via a back edge.
681 break;
682
683 if (IsDstPhys) {
684 VirtRegPairs.push_back(NewReg);
685 break;
686 }
687 bool isNew = SrcRegMap.insert(std::make_pair(NewReg, DstReg)).second;
Evan Cheng3005ed62009-04-13 20:04:24 +0000688 if (!isNew)
Evan Cheng87d696a2009-04-14 00:32:25 +0000689 assert(SrcRegMap[NewReg] == DstReg &&
690 "Can't map to two src physical registers!");
Evan Cheng870b8072009-03-01 02:03:43 +0000691 VirtRegPairs.push_back(NewReg);
692 DstReg = NewReg;
693 }
694
695 if (!VirtRegPairs.empty()) {
696 unsigned ToReg = VirtRegPairs.back();
697 VirtRegPairs.pop_back();
698 while (!VirtRegPairs.empty()) {
699 unsigned FromReg = VirtRegPairs.back();
700 VirtRegPairs.pop_back();
701 bool isNew = DstRegMap.insert(std::make_pair(FromReg, ToReg)).second;
Evan Cheng3005ed62009-04-13 20:04:24 +0000702 if (!isNew)
703 assert(DstRegMap[FromReg] == ToReg &&
704 "Can't map to two dst physical registers!");
Evan Cheng870b8072009-03-01 02:03:43 +0000705 ToReg = FromReg;
706 }
707 }
708 }
709
710 Processed.insert(MI);
711}
712
Evan Cheng28c7ce32009-02-21 03:14:25 +0000713/// isSafeToDelete - If the specified instruction does not produce any side
714/// effects and all of its defs are dead, then it's safe to delete.
Evan Chenge9ccb3a2009-04-28 02:12:36 +0000715static bool isSafeToDelete(MachineInstr *MI, unsigned Reg,
716 const TargetInstrInfo *TII,
717 SmallVector<unsigned, 4> &Kills) {
Evan Cheng28c7ce32009-02-21 03:14:25 +0000718 const TargetInstrDesc &TID = MI->getDesc();
719 if (TID.mayStore() || TID.isCall())
720 return false;
721 if (TID.isTerminator() || TID.hasUnmodeledSideEffects())
722 return false;
723
724 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
725 MachineOperand &MO = MI->getOperand(i);
Evan Chenge9ccb3a2009-04-28 02:12:36 +0000726 if (!MO.isReg())
Evan Cheng28c7ce32009-02-21 03:14:25 +0000727 continue;
Evan Chenge9ccb3a2009-04-28 02:12:36 +0000728 if (MO.isDef() && !MO.isDead())
Evan Cheng28c7ce32009-02-21 03:14:25 +0000729 return false;
Evan Chenge9ccb3a2009-04-28 02:12:36 +0000730 if (MO.isUse() && MO.getReg() != Reg && MO.isKill())
731 Kills.push_back(MO.getReg());
Evan Cheng28c7ce32009-02-21 03:14:25 +0000732 }
733
734 return true;
735}
736
Bill Wendling637980e2008-05-10 00:12:52 +0000737/// runOnMachineFunction - Reduce two-address instructions to two operands.
Alkis Evlogimenos71499de2003-12-18 13:06:04 +0000738///
Chris Lattner163c1e72004-01-31 21:14:04 +0000739bool TwoAddressInstructionPass::runOnMachineFunction(MachineFunction &MF) {
Bill Wendlinga09362e2006-11-28 22:48:48 +0000740 DOUT << "Machine Function\n";
Misha Brukman75fa4e42004-07-22 15:26:23 +0000741 const TargetMachine &TM = MF.getTarget();
Evan Cheng875357d2008-03-13 06:37:55 +0000742 MRI = &MF.getRegInfo();
743 TII = TM.getInstrInfo();
744 TRI = TM.getRegisterInfo();
Duncan Sands1465d612009-01-28 13:14:17 +0000745 LV = getAnalysisIfAvailable<LiveVariables>();
Alkis Evlogimenos71499de2003-12-18 13:06:04 +0000746
Misha Brukman75fa4e42004-07-22 15:26:23 +0000747 bool MadeChange = false;
Alkis Evlogimenos71499de2003-12-18 13:06:04 +0000748
Bill Wendlinga09362e2006-11-28 22:48:48 +0000749 DOUT << "********** REWRITING TWO-ADDR INSTRS **********\n";
750 DOUT << "********** Function: " << MF.getFunction()->getName() << '\n';
Alkis Evlogimenos3a9986f2004-02-18 00:35:06 +0000751
Evan Cheng7543e582008-06-18 07:49:14 +0000752 // ReMatRegs - Keep track of the registers whose def's are remat'ed.
753 BitVector ReMatRegs;
754 ReMatRegs.resize(MRI->getLastVirtReg()+1);
755
Evan Cheng870b8072009-03-01 02:03:43 +0000756 SmallPtrSet<MachineInstr*, 8> Processed;
Misha Brukman75fa4e42004-07-22 15:26:23 +0000757 for (MachineFunction::iterator mbbi = MF.begin(), mbbe = MF.end();
758 mbbi != mbbe; ++mbbi) {
Evan Cheng7543e582008-06-18 07:49:14 +0000759 unsigned Dist = 0;
760 DistanceMap.clear();
Evan Cheng870b8072009-03-01 02:03:43 +0000761 SrcRegMap.clear();
762 DstRegMap.clear();
763 Processed.clear();
Misha Brukman75fa4e42004-07-22 15:26:23 +0000764 for (MachineBasicBlock::iterator mi = mbbi->begin(), me = mbbi->end();
Evan Cheng7a963fa2008-03-27 01:27:25 +0000765 mi != me; ) {
766 MachineBasicBlock::iterator nmi = next(mi);
Chris Lattner749c6f62008-01-07 07:27:27 +0000767 const TargetInstrDesc &TID = mi->getDesc();
Evan Cheng360c2dd2006-11-01 23:06:55 +0000768 bool FirstTied = true;
Bill Wendling637980e2008-05-10 00:12:52 +0000769
Evan Cheng7543e582008-06-18 07:49:14 +0000770 DistanceMap.insert(std::make_pair(mi, ++Dist));
Evan Cheng870b8072009-03-01 02:03:43 +0000771
772 ProcessCopy(&*mi, &*mbbi, Processed);
773
Evan Chengfb112882009-03-23 08:01:15 +0000774 unsigned NumOps = (mi->getOpcode() == TargetInstrInfo::INLINEASM)
775 ? mi->getNumOperands() : TID.getNumOperands();
776 for (unsigned si = 0; si < NumOps; ++si) {
Evan Chenga24752f2009-03-19 20:30:06 +0000777 unsigned ti = 0;
778 if (!mi->isRegTiedToDefOperand(si, &ti))
Evan Cheng360c2dd2006-11-01 23:06:55 +0000779 continue;
Alkis Evlogimenos71499de2003-12-18 13:06:04 +0000780
Evan Cheng360c2dd2006-11-01 23:06:55 +0000781 if (FirstTied) {
782 ++NumTwoAddressInstrs;
Bill Wendlingbcd24982006-12-07 20:28:15 +0000783 DOUT << '\t'; DEBUG(mi->print(*cerr.stream(), &TM));
Evan Cheng360c2dd2006-11-01 23:06:55 +0000784 }
Bill Wendling637980e2008-05-10 00:12:52 +0000785
Evan Cheng360c2dd2006-11-01 23:06:55 +0000786 FirstTied = false;
Alkis Evlogimenos71499de2003-12-18 13:06:04 +0000787
Dan Gohmand735b802008-10-03 15:45:36 +0000788 assert(mi->getOperand(si).isReg() && mi->getOperand(si).getReg() &&
Evan Cheng360c2dd2006-11-01 23:06:55 +0000789 mi->getOperand(si).isUse() && "two address instruction invalid");
Alkis Evlogimenos71499de2003-12-18 13:06:04 +0000790
Bill Wendling637980e2008-05-10 00:12:52 +0000791 // If the two operands are the same we just remove the use
Evan Cheng360c2dd2006-11-01 23:06:55 +0000792 // and mark the def as def&use, otherwise we have to insert a copy.
793 if (mi->getOperand(ti).getReg() != mi->getOperand(si).getReg()) {
Bill Wendling637980e2008-05-10 00:12:52 +0000794 // Rewrite:
Evan Cheng360c2dd2006-11-01 23:06:55 +0000795 // a = b op c
796 // to:
797 // a = b
798 // a = a op c
799 unsigned regA = mi->getOperand(ti).getReg();
800 unsigned regB = mi->getOperand(si).getReg();
Evan Cheng37844532009-07-16 09:20:10 +0000801 unsigned regASubIdx = mi->getOperand(ti).getSubReg();
Evan Cheng360c2dd2006-11-01 23:06:55 +0000802
Evan Chengfb112882009-03-23 08:01:15 +0000803 assert(TargetRegisterInfo::isVirtualRegister(regB) &&
Evan Cheng360c2dd2006-11-01 23:06:55 +0000804 "cannot update physical register live information");
Chris Lattner6b507672004-01-31 21:21:43 +0000805
Chris Lattner1e313632004-07-21 23:17:57 +0000806#ifndef NDEBUG
Evan Cheng360c2dd2006-11-01 23:06:55 +0000807 // First, verify that we don't have a use of a in the instruction (a =
808 // b + a for example) because our transformation will not work. This
809 // should never occur because we are in SSA form.
810 for (unsigned i = 0; i != mi->getNumOperands(); ++i)
Evan Chenga24752f2009-03-19 20:30:06 +0000811 assert(i == ti ||
Dan Gohmand735b802008-10-03 15:45:36 +0000812 !mi->getOperand(i).isReg() ||
Evan Cheng360c2dd2006-11-01 23:06:55 +0000813 mi->getOperand(i).getReg() != regA);
Chris Lattner1e313632004-07-21 23:17:57 +0000814#endif
Alkis Evlogimenos14be6402004-02-04 22:17:40 +0000815
Evan Cheng360c2dd2006-11-01 23:06:55 +0000816 // If this instruction is not the killing user of B, see if we can
817 // rearrange the code to make it so. Making it the killing user will
818 // allow us to coalesce A and B together, eliminating the copy we are
819 // about to insert.
Dan Gohman97121ba2009-04-08 00:15:30 +0000820 if (!isKilled(*mi, regB, MRI, TII)) {
Evan Cheng28c7ce32009-02-21 03:14:25 +0000821 // If regA is dead and the instruction can be deleted, just delete
822 // it so it doesn't clobber regB.
Evan Chenge9ccb3a2009-04-28 02:12:36 +0000823 SmallVector<unsigned, 4> Kills;
824 if (mi->getOperand(ti).isDead() &&
825 isSafeToDelete(mi, regB, TII, Kills)) {
826 SmallVector<std::pair<std::pair<unsigned, bool>
827 ,MachineInstr*>, 4> NewKills;
828 bool ReallySafe = true;
829 // If this instruction kills some virtual registers, we need
830 // update the kill information. If it's not possible to do so,
831 // then bail out.
832 while (!Kills.empty()) {
833 unsigned Kill = Kills.back();
834 Kills.pop_back();
835 if (TargetRegisterInfo::isPhysicalRegister(Kill)) {
836 ReallySafe = false;
837 break;
838 }
839 MachineInstr *LastKill = FindLastUseInMBB(Kill, &*mbbi, Dist);
840 if (LastKill) {
841 bool isModRef = LastKill->modifiesRegister(Kill);
842 NewKills.push_back(std::make_pair(std::make_pair(Kill,isModRef),
843 LastKill));
844 } else {
845 ReallySafe = false;
846 break;
847 }
848 }
849
850 if (ReallySafe) {
851 if (LV) {
852 while (!NewKills.empty()) {
853 MachineInstr *NewKill = NewKills.back().second;
854 unsigned Kill = NewKills.back().first.first;
855 bool isDead = NewKills.back().first.second;
856 NewKills.pop_back();
857 if (LV->removeVirtualRegisterKilled(Kill, mi)) {
858 if (isDead)
859 LV->addVirtualRegisterDead(Kill, NewKill);
860 else
861 LV->addVirtualRegisterKilled(Kill, NewKill);
862 }
863 }
864 }
Lang Hames60dc7342009-05-13 04:18:47 +0000865
866 // We're really going to nuke the old inst. If regB was marked
867 // as a kill we need to update its Kills list.
868 if (mi->getOperand(si).isKill())
869 LV->removeVirtualRegisterKilled(regB, mi);
870
Evan Chenge9ccb3a2009-04-28 02:12:36 +0000871 mbbi->erase(mi); // Nuke the old inst.
872 mi = nmi;
873 ++NumDeletes;
874 break; // Done with this instruction.
875 }
Evan Cheng28c7ce32009-02-21 03:14:25 +0000876 }
877
Evan Cheng360c2dd2006-11-01 23:06:55 +0000878 // If this instruction is commutative, check to see if C dies. If
879 // so, swap the B and C operands. This makes the live ranges of A
880 // and C joinable.
881 // FIXME: This code also works for A := B op C instructions.
Evan Cheng33d04742009-07-20 21:16:08 +0000882 unsigned SrcOp1, SrcOp2;
883 if (TID.isCommutable() && mi->getNumOperands() >= 3 &&
884 TII->findCommutedOpIndices(mi, SrcOp1, SrcOp2)) {
885 unsigned regC = 0;
886 if (si == SrcOp1)
887 regC = mi->getOperand(SrcOp2).getReg();
888 else if (si == SrcOp2)
889 regC = mi->getOperand(SrcOp1).getReg();
Dan Gohman97121ba2009-04-08 00:15:30 +0000890 if (isKilled(*mi, regC, MRI, TII)) {
Evan Cheng870b8072009-03-01 02:03:43 +0000891 if (CommuteInstruction(mi, mbbi, regB, regC, Dist)) {
Evan Cheng360c2dd2006-11-01 23:06:55 +0000892 ++NumCommuted;
893 regB = regC;
894 goto InstructionRearranged;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000895 }
Chris Lattnerc71d6942005-01-19 07:08:42 +0000896 }
Chris Lattnercfa0f2e2005-01-02 02:34:12 +0000897 }
Evan Cheng360c2dd2006-11-01 23:06:55 +0000898
899 // If this instruction is potentially convertible to a true
900 // three-address instruction,
Chris Lattner749c6f62008-01-07 07:27:27 +0000901 if (TID.isConvertibleTo3Addr()) {
Evan Cheng360c2dd2006-11-01 23:06:55 +0000902 // FIXME: This assumes there are no more operands which are tied
903 // to another register.
904#ifndef NDEBUG
Bill Wendling637980e2008-05-10 00:12:52 +0000905 for (unsigned i = si + 1, e = TID.getNumOperands(); i < e; ++i)
Chris Lattner749c6f62008-01-07 07:27:27 +0000906 assert(TID.getOperandConstraint(i, TOI::TIED_TO) == -1);
Evan Cheng360c2dd2006-11-01 23:06:55 +0000907#endif
908
Evan Chenge6f350d2009-03-30 21:34:07 +0000909 if (ConvertInstTo3Addr(mi, nmi, mbbi, regB, Dist)) {
Evan Cheng360c2dd2006-11-01 23:06:55 +0000910 ++NumConvertedTo3Addr;
Bill Wendling637980e2008-05-10 00:12:52 +0000911 break; // Done with this instruction.
Evan Cheng360c2dd2006-11-01 23:06:55 +0000912 }
Evan Chengb9d5e7c2007-10-20 04:01:47 +0000913 }
Chris Lattnercfa0f2e2005-01-02 02:34:12 +0000914 }
Evan Cheng360c2dd2006-11-01 23:06:55 +0000915
Evan Chengd498c8f2009-01-25 03:53:59 +0000916 // If it's profitable to commute the instruction, do so.
Evan Chengebfc1772009-07-11 00:04:23 +0000917 unsigned SrcOp1, SrcOp2;
918 if (TID.isCommutable() && mi->getNumOperands() >= 3 &&
919 TII->findCommutedOpIndices(mi, SrcOp1, SrcOp2)) {
920 unsigned regC = 0;
921 if (si == SrcOp1)
922 regC = mi->getOperand(SrcOp2).getReg();
923 else if (si == SrcOp2)
924 regC = mi->getOperand(SrcOp1).getReg();
925
926 if (regC && isProfitableToCommute(regB, regC, mi, mbbi, Dist))
Evan Cheng870b8072009-03-01 02:03:43 +0000927 if (CommuteInstruction(mi, mbbi, regB, regC, Dist)) {
Evan Chengd498c8f2009-01-25 03:53:59 +0000928 ++NumAggrCommuted;
929 ++NumCommuted;
930 regB = regC;
Evan Chenge6f350d2009-03-30 21:34:07 +0000931 goto InstructionRearranged;
Evan Chengd498c8f2009-01-25 03:53:59 +0000932 }
933 }
934
Evan Chenge6f350d2009-03-30 21:34:07 +0000935 // If it's profitable to convert the 2-address instruction to a
936 // 3-address one, do so.
937 if (TID.isConvertibleTo3Addr() && isProfitableToConv3Addr(regA)) {
938 if (ConvertInstTo3Addr(mi, nmi, mbbi, regB, Dist)) {
939 ++NumConvertedTo3Addr;
940 break; // Done with this instruction.
941 }
942 }
943
Evan Cheng360c2dd2006-11-01 23:06:55 +0000944 InstructionRearranged:
Evan Chengfb112882009-03-23 08:01:15 +0000945 const TargetRegisterClass* rc = MRI->getRegClass(regB);
Evan Cheng7543e582008-06-18 07:49:14 +0000946 MachineInstr *DefMI = MRI->getVRegDef(regB);
947 // If it's safe and profitable, remat the definition instead of
948 // copying it.
Evan Cheng601ca4b2008-06-25 01:16:38 +0000949 if (DefMI &&
Evan Cheng8763c1c2008-08-27 20:58:54 +0000950 DefMI->getDesc().isAsCheapAsAMove() &&
Evan Chengdf3b9932008-08-27 20:33:50 +0000951 DefMI->isSafeToReMat(TII, regB) &&
Evan Cheng870b8072009-03-01 02:03:43 +0000952 isProfitableToReMat(regB, rc, mi, DefMI, mbbi, Dist)){
Evan Cheng7543e582008-06-18 07:49:14 +0000953 DEBUG(cerr << "2addr: REMATTING : " << *DefMI << "\n");
Evan Cheng37844532009-07-16 09:20:10 +0000954 TII->reMaterialize(*mbbi, mi, regA, regASubIdx, DefMI);
Evan Cheng7543e582008-06-18 07:49:14 +0000955 ReMatRegs.set(regB);
956 ++NumReMats;
Bill Wendling48f7f232008-05-26 05:18:34 +0000957 } else {
Dan Gohman6ed0e202009-04-13 15:16:56 +0000958 bool Emitted = TII->copyRegToReg(*mbbi, mi, regA, regB, rc, rc);
Mike Stump1e8f0722009-05-08 22:53:06 +0000959 (void)Emitted;
Dan Gohman6ed0e202009-04-13 15:16:56 +0000960 assert(Emitted && "Unable to issue a copy instruction!\n");
Bill Wendling48f7f232008-05-26 05:18:34 +0000961 }
Evan Cheng360c2dd2006-11-01 23:06:55 +0000962
Evan Chengd498c8f2009-01-25 03:53:59 +0000963 MachineBasicBlock::iterator prevMI = prior(mi);
964 // Update DistanceMap.
965 DistanceMap.insert(std::make_pair(prevMI, Dist));
966 DistanceMap[mi] = ++Dist;
Evan Cheng360c2dd2006-11-01 23:06:55 +0000967
Bill Wendling637980e2008-05-10 00:12:52 +0000968 // Update live variables for regB.
Owen Anderson802af112008-07-02 21:28:58 +0000969 if (LV) {
Evan Cheng9f1c8312008-07-03 09:09:37 +0000970 if (LV->removeVirtualRegisterKilled(regB, mi))
Evan Chengd498c8f2009-01-25 03:53:59 +0000971 LV->addVirtualRegisterKilled(regB, prevMI);
Evan Cheng360c2dd2006-11-01 23:06:55 +0000972
Evan Cheng9f1c8312008-07-03 09:09:37 +0000973 if (LV->removeVirtualRegisterDead(regB, mi))
Evan Chengd498c8f2009-01-25 03:53:59 +0000974 LV->addVirtualRegisterDead(regB, prevMI);
Owen Anderson802af112008-07-02 21:28:58 +0000975 }
Dan Gohman2d9716f2008-11-12 17:15:19 +0000976
Evan Chengd498c8f2009-01-25 03:53:59 +0000977 DOUT << "\t\tprepend:\t"; DEBUG(prevMI->print(*cerr.stream(), &TM));
Owen Anderson802af112008-07-02 21:28:58 +0000978
Bill Wendling637980e2008-05-10 00:12:52 +0000979 // Replace all occurences of regB with regA.
Evan Cheng360c2dd2006-11-01 23:06:55 +0000980 for (unsigned i = 0, e = mi->getNumOperands(); i != e; ++i) {
Dan Gohmand735b802008-10-03 15:45:36 +0000981 if (mi->getOperand(i).isReg() &&
Evan Cheng360c2dd2006-11-01 23:06:55 +0000982 mi->getOperand(i).getReg() == regB)
983 mi->getOperand(i).setReg(regA);
984 }
Chris Lattnercfa0f2e2005-01-02 02:34:12 +0000985 }
Alkis Evlogimenos14be6402004-02-04 22:17:40 +0000986
Evan Cheng360c2dd2006-11-01 23:06:55 +0000987 assert(mi->getOperand(ti).isDef() && mi->getOperand(si).isUse());
988 mi->getOperand(ti).setReg(mi->getOperand(si).getReg());
989 MadeChange = true;
Alkis Evlogimenos14be6402004-02-04 22:17:40 +0000990
Bill Wendlingbcd24982006-12-07 20:28:15 +0000991 DOUT << "\t\trewrite to:\t"; DEBUG(mi->print(*cerr.stream(), &TM));
Misha Brukman75fa4e42004-07-22 15:26:23 +0000992 }
Bill Wendling637980e2008-05-10 00:12:52 +0000993
Evan Cheng7a963fa2008-03-27 01:27:25 +0000994 mi = nmi;
Misha Brukman75fa4e42004-07-22 15:26:23 +0000995 }
996 }
997
Evan Cheng601ca4b2008-06-25 01:16:38 +0000998 // Some remat'ed instructions are dead.
999 int VReg = ReMatRegs.find_first();
1000 while (VReg != -1) {
1001 if (MRI->use_empty(VReg)) {
1002 MachineInstr *DefMI = MRI->getVRegDef(VReg);
1003 DefMI->eraseFromParent();
Bill Wendlinga16157a2008-05-26 05:49:49 +00001004 }
Evan Cheng601ca4b2008-06-25 01:16:38 +00001005 VReg = ReMatRegs.find_next(VReg);
Bill Wendling48f7f232008-05-26 05:18:34 +00001006 }
1007
Misha Brukman75fa4e42004-07-22 15:26:23 +00001008 return MadeChange;
Alkis Evlogimenos71499de2003-12-18 13:06:04 +00001009}