blob: a5a0f5bdcc22bab04d8efae21488bb640b4bbf5e [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 Gohmana70dca12009-10-09 23:27:56 +000037#include "llvm/Analysis/AliasAnalysis.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000038#include "llvm/Target/TargetRegisterInfo.h"
Alkis Evlogimenos71499de2003-12-18 13:06:04 +000039#include "llvm/Target/TargetInstrInfo.h"
40#include "llvm/Target/TargetMachine.h"
Owen Anderson95dad832008-10-07 20:22:28 +000041#include "llvm/Target/TargetOptions.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000042#include "llvm/Support/Compiler.h"
Evan Cheng875357d2008-03-13 06:37:55 +000043#include "llvm/Support/Debug.h"
Evan Cheng7543e582008-06-18 07:49:14 +000044#include "llvm/ADT/BitVector.h"
45#include "llvm/ADT/DenseMap.h"
Dan Gohmand68a0762009-01-05 17:59:02 +000046#include "llvm/ADT/SmallSet.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000047#include "llvm/ADT/Statistic.h"
48#include "llvm/ADT/STLExtras.h"
Alkis Evlogimenos71499de2003-12-18 13:06:04 +000049using namespace llvm;
50
Chris Lattnercd3245a2006-12-19 22:41:21 +000051STATISTIC(NumTwoAddressInstrs, "Number of two-address instructions");
52STATISTIC(NumCommuted , "Number of instructions commuted to coalesce");
Evan Chengd498c8f2009-01-25 03:53:59 +000053STATISTIC(NumAggrCommuted , "Number of instructions aggressively commuted");
Chris Lattnercd3245a2006-12-19 22:41:21 +000054STATISTIC(NumConvertedTo3Addr, "Number of instructions promoted to 3-address");
Evan Cheng875357d2008-03-13 06:37:55 +000055STATISTIC(Num3AddrSunk, "Number of 3-address instructions sunk");
Evan Cheng7543e582008-06-18 07:49:14 +000056STATISTIC(NumReMats, "Number of instructions re-materialized");
Evan Cheng28c7ce32009-02-21 03:14:25 +000057STATISTIC(NumDeletes, "Number of dead instructions deleted");
Evan Cheng875357d2008-03-13 06:37:55 +000058
59namespace {
Bill Wendling637980e2008-05-10 00:12:52 +000060 class VISIBILITY_HIDDEN TwoAddressInstructionPass
61 : public MachineFunctionPass {
Evan Cheng875357d2008-03-13 06:37:55 +000062 const TargetInstrInfo *TII;
63 const TargetRegisterInfo *TRI;
64 MachineRegisterInfo *MRI;
65 LiveVariables *LV;
Dan Gohmana70dca12009-10-09 23:27:56 +000066 AliasAnalysis *AA;
Evan Cheng875357d2008-03-13 06:37:55 +000067
Evan Cheng870b8072009-03-01 02:03:43 +000068 // DistanceMap - Keep track the distance of a MI from the start of the
69 // current basic block.
70 DenseMap<MachineInstr*, unsigned> DistanceMap;
71
72 // SrcRegMap - A map from virtual registers to physical registers which
73 // are likely targets to be coalesced to due to copies from physical
74 // registers to virtual registers. e.g. v1024 = move r0.
75 DenseMap<unsigned, unsigned> SrcRegMap;
76
77 // DstRegMap - A map from virtual registers to physical registers which
78 // are likely targets to be coalesced to due to copies to physical
79 // registers from virtual registers. e.g. r1 = move v1024.
80 DenseMap<unsigned, unsigned> DstRegMap;
81
Bill Wendling637980e2008-05-10 00:12:52 +000082 bool Sink3AddrInstruction(MachineBasicBlock *MBB, MachineInstr *MI,
83 unsigned Reg,
84 MachineBasicBlock::iterator OldPos);
Evan Cheng7543e582008-06-18 07:49:14 +000085
Evan Cheng7543e582008-06-18 07:49:14 +000086 bool isProfitableToReMat(unsigned Reg, const TargetRegisterClass *RC,
Evan Cheng601ca4b2008-06-25 01:16:38 +000087 MachineInstr *MI, MachineInstr *DefMI,
Evan Cheng870b8072009-03-01 02:03:43 +000088 MachineBasicBlock *MBB, unsigned Loc);
Evan Cheng81913712009-01-23 23:27:33 +000089
Evan Chengd498c8f2009-01-25 03:53:59 +000090 bool NoUseAfterLastDef(unsigned Reg, MachineBasicBlock *MBB, unsigned Dist,
Evan Chengd498c8f2009-01-25 03:53:59 +000091 unsigned &LastDef);
92
Evan Chenge9ccb3a2009-04-28 02:12:36 +000093 MachineInstr *FindLastUseInMBB(unsigned Reg, MachineBasicBlock *MBB,
94 unsigned Dist);
95
Evan Chengd498c8f2009-01-25 03:53:59 +000096 bool isProfitableToCommute(unsigned regB, unsigned regC,
97 MachineInstr *MI, MachineBasicBlock *MBB,
Evan Cheng870b8072009-03-01 02:03:43 +000098 unsigned Dist);
Evan Chengd498c8f2009-01-25 03:53:59 +000099
Evan Cheng81913712009-01-23 23:27:33 +0000100 bool CommuteInstruction(MachineBasicBlock::iterator &mi,
101 MachineFunction::iterator &mbbi,
Evan Cheng870b8072009-03-01 02:03:43 +0000102 unsigned RegB, unsigned RegC, unsigned Dist);
103
Evan Chenge6f350d2009-03-30 21:34:07 +0000104 bool isProfitableToConv3Addr(unsigned RegA);
105
106 bool ConvertInstTo3Addr(MachineBasicBlock::iterator &mi,
107 MachineBasicBlock::iterator &nmi,
108 MachineFunction::iterator &mbbi,
109 unsigned RegB, unsigned Dist);
110
Bob Wilson326f4382009-09-01 22:51:08 +0000111 typedef std::pair<std::pair<unsigned, bool>, MachineInstr*> NewKill;
112 bool canUpdateDeletedKills(SmallVector<unsigned, 4> &Kills,
113 SmallVector<NewKill, 4> &NewKills,
114 MachineBasicBlock *MBB, unsigned Dist);
115 bool DeleteUnusedInstr(MachineBasicBlock::iterator &mi,
116 MachineBasicBlock::iterator &nmi,
117 MachineFunction::iterator &mbbi,
118 unsigned regB, unsigned regBIdx, unsigned Dist);
119
Bob Wilsoncc80df92009-09-03 20:58:42 +0000120 bool TryInstructionTransform(MachineBasicBlock::iterator &mi,
121 MachineBasicBlock::iterator &nmi,
122 MachineFunction::iterator &mbbi,
123 unsigned SrcIdx, unsigned DstIdx,
124 unsigned Dist);
125
Evan Cheng870b8072009-03-01 02:03:43 +0000126 void ProcessCopy(MachineInstr *MI, MachineBasicBlock *MBB,
127 SmallPtrSet<MachineInstr*, 8> &Processed);
Evan Cheng3a3cce52009-08-07 00:28:58 +0000128
Evan Cheng875357d2008-03-13 06:37:55 +0000129 public:
Nick Lewyckyecd94c82007-05-06 13:37:16 +0000130 static char ID; // Pass identification, replacement for typeid
Dan Gohmanae73dc12008-09-04 17:05:41 +0000131 TwoAddressInstructionPass() : MachineFunctionPass(&ID) {}
Devang Patel794fd752007-05-01 21:15:47 +0000132
Bill Wendling637980e2008-05-10 00:12:52 +0000133 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman845012e2009-07-31 23:37:33 +0000134 AU.setPreservesCFG();
Dan Gohmana70dca12009-10-09 23:27:56 +0000135 AU.addRequired<AliasAnalysis>();
Bill Wendling637980e2008-05-10 00:12:52 +0000136 AU.addPreserved<LiveVariables>();
137 AU.addPreservedID(MachineLoopInfoID);
138 AU.addPreservedID(MachineDominatorsID);
Owen Anderson95dad832008-10-07 20:22:28 +0000139 if (StrongPHIElim)
140 AU.addPreservedID(StrongPHIEliminationID);
141 else
142 AU.addPreservedID(PHIEliminationID);
Bill Wendling637980e2008-05-10 00:12:52 +0000143 MachineFunctionPass::getAnalysisUsage(AU);
144 }
Alkis Evlogimenos4c080862003-12-18 22:40:24 +0000145
Bill Wendling637980e2008-05-10 00:12:52 +0000146 /// runOnMachineFunction - Pass entry point.
Misha Brukman75fa4e42004-07-22 15:26:23 +0000147 bool runOnMachineFunction(MachineFunction&);
148 };
Chris Lattnerd74ea2b2006-05-24 17:04:05 +0000149}
Alkis Evlogimenos71499de2003-12-18 13:06:04 +0000150
Dan Gohman844731a2008-05-13 00:00:25 +0000151char TwoAddressInstructionPass::ID = 0;
152static RegisterPass<TwoAddressInstructionPass>
153X("twoaddressinstruction", "Two-Address instruction pass");
154
Dan Gohman6ddba2b2008-05-13 02:05:11 +0000155const PassInfo *const llvm::TwoAddressInstructionPassID = &X;
Alkis Evlogimenos4c080862003-12-18 22:40:24 +0000156
Evan Cheng875357d2008-03-13 06:37:55 +0000157/// Sink3AddrInstruction - A two-address instruction has been converted to a
158/// three-address instruction to avoid clobbering a register. Try to sink it
Bill Wendling637980e2008-05-10 00:12:52 +0000159/// past the instruction that would kill the above mentioned register to reduce
160/// register pressure.
Evan Cheng875357d2008-03-13 06:37:55 +0000161bool TwoAddressInstructionPass::Sink3AddrInstruction(MachineBasicBlock *MBB,
162 MachineInstr *MI, unsigned SavedReg,
163 MachineBasicBlock::iterator OldPos) {
164 // Check if it's safe to move this instruction.
165 bool SeenStore = true; // Be conservative.
Dan Gohmana70dca12009-10-09 23:27:56 +0000166 if (!MI->isSafeToMove(TII, SeenStore, AA))
Evan Cheng875357d2008-03-13 06:37:55 +0000167 return false;
168
169 unsigned DefReg = 0;
170 SmallSet<unsigned, 4> UseRegs;
Bill Wendling637980e2008-05-10 00:12:52 +0000171
Evan Cheng875357d2008-03-13 06:37:55 +0000172 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
173 const MachineOperand &MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000174 if (!MO.isReg())
Evan Cheng875357d2008-03-13 06:37:55 +0000175 continue;
176 unsigned MOReg = MO.getReg();
177 if (!MOReg)
178 continue;
179 if (MO.isUse() && MOReg != SavedReg)
180 UseRegs.insert(MO.getReg());
181 if (!MO.isDef())
182 continue;
183 if (MO.isImplicit())
184 // Don't try to move it if it implicitly defines a register.
185 return false;
186 if (DefReg)
187 // For now, don't move any instructions that define multiple registers.
188 return false;
189 DefReg = MO.getReg();
190 }
191
192 // Find the instruction that kills SavedReg.
193 MachineInstr *KillMI = NULL;
194 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(SavedReg),
195 UE = MRI->use_end(); UI != UE; ++UI) {
196 MachineOperand &UseMO = UI.getOperand();
197 if (!UseMO.isKill())
198 continue;
199 KillMI = UseMO.getParent();
200 break;
201 }
Bill Wendling637980e2008-05-10 00:12:52 +0000202
Dan Gohman97121ba2009-04-08 00:15:30 +0000203 if (!KillMI || KillMI->getParent() != MBB || KillMI == MI)
Evan Cheng875357d2008-03-13 06:37:55 +0000204 return false;
205
Bill Wendling637980e2008-05-10 00:12:52 +0000206 // If any of the definitions are used by another instruction between the
207 // position and the kill use, then it's not safe to sink it.
208 //
209 // FIXME: This can be sped up if there is an easy way to query whether an
Evan Cheng7543e582008-06-18 07:49:14 +0000210 // instruction is before or after another instruction. Then we can use
Bill Wendling637980e2008-05-10 00:12:52 +0000211 // MachineRegisterInfo def / use instead.
Evan Cheng875357d2008-03-13 06:37:55 +0000212 MachineOperand *KillMO = NULL;
213 MachineBasicBlock::iterator KillPos = KillMI;
214 ++KillPos;
Bill Wendling637980e2008-05-10 00:12:52 +0000215
Evan Cheng7543e582008-06-18 07:49:14 +0000216 unsigned NumVisited = 0;
Evan Cheng875357d2008-03-13 06:37:55 +0000217 for (MachineBasicBlock::iterator I = next(OldPos); I != KillPos; ++I) {
218 MachineInstr *OtherMI = I;
Evan Cheng7543e582008-06-18 07:49:14 +0000219 if (NumVisited > 30) // FIXME: Arbitrary limit to reduce compile time cost.
220 return false;
221 ++NumVisited;
Evan Cheng875357d2008-03-13 06:37:55 +0000222 for (unsigned i = 0, e = OtherMI->getNumOperands(); i != e; ++i) {
223 MachineOperand &MO = OtherMI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000224 if (!MO.isReg())
Evan Cheng875357d2008-03-13 06:37:55 +0000225 continue;
226 unsigned MOReg = MO.getReg();
227 if (!MOReg)
228 continue;
229 if (DefReg == MOReg)
230 return false;
Bill Wendling637980e2008-05-10 00:12:52 +0000231
Evan Cheng875357d2008-03-13 06:37:55 +0000232 if (MO.isKill()) {
233 if (OtherMI == KillMI && MOReg == SavedReg)
Evan Cheng7543e582008-06-18 07:49:14 +0000234 // Save the operand that kills the register. We want to unset the kill
235 // marker if we can sink MI past it.
Evan Cheng875357d2008-03-13 06:37:55 +0000236 KillMO = &MO;
237 else if (UseRegs.count(MOReg))
238 // One of the uses is killed before the destination.
239 return false;
240 }
241 }
242 }
243
Evan Cheng875357d2008-03-13 06:37:55 +0000244 // Update kill and LV information.
245 KillMO->setIsKill(false);
246 KillMO = MI->findRegisterUseOperand(SavedReg, false, TRI);
247 KillMO->setIsKill(true);
Owen Anderson802af112008-07-02 21:28:58 +0000248
Evan Cheng9f1c8312008-07-03 09:09:37 +0000249 if (LV)
250 LV->replaceKillInstruction(SavedReg, KillMI, MI);
Evan Cheng875357d2008-03-13 06:37:55 +0000251
252 // Move instruction to its destination.
253 MBB->remove(MI);
254 MBB->insert(KillPos, MI);
255
256 ++Num3AddrSunk;
257 return true;
258}
259
Evan Cheng7543e582008-06-18 07:49:14 +0000260/// isTwoAddrUse - Return true if the specified MI is using the specified
261/// register as a two-address operand.
262static bool isTwoAddrUse(MachineInstr *UseMI, unsigned Reg) {
263 const TargetInstrDesc &TID = UseMI->getDesc();
264 for (unsigned i = 0, e = TID.getNumOperands(); i != e; ++i) {
265 MachineOperand &MO = UseMI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000266 if (MO.isReg() && MO.getReg() == Reg &&
Evan Chenga24752f2009-03-19 20:30:06 +0000267 (MO.isDef() || UseMI->isRegTiedToDefOperand(i)))
Evan Cheng7543e582008-06-18 07:49:14 +0000268 // Earlier use is a two-address one.
269 return true;
270 }
271 return false;
272}
273
274/// isProfitableToReMat - Return true if the heuristics determines it is likely
275/// to be profitable to re-materialize the definition of Reg rather than copy
276/// the register.
277bool
278TwoAddressInstructionPass::isProfitableToReMat(unsigned Reg,
Evan Cheng870b8072009-03-01 02:03:43 +0000279 const TargetRegisterClass *RC,
280 MachineInstr *MI, MachineInstr *DefMI,
281 MachineBasicBlock *MBB, unsigned Loc) {
Evan Cheng7543e582008-06-18 07:49:14 +0000282 bool OtherUse = false;
283 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(Reg),
284 UE = MRI->use_end(); UI != UE; ++UI) {
285 MachineOperand &UseMO = UI.getOperand();
Evan Cheng7543e582008-06-18 07:49:14 +0000286 MachineInstr *UseMI = UseMO.getParent();
Evan Cheng601ca4b2008-06-25 01:16:38 +0000287 MachineBasicBlock *UseMBB = UseMI->getParent();
288 if (UseMBB == MBB) {
289 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(UseMI);
290 if (DI != DistanceMap.end() && DI->second == Loc)
291 continue; // Current use.
292 OtherUse = true;
293 // There is at least one other use in the MBB that will clobber the
294 // register.
295 if (isTwoAddrUse(UseMI, Reg))
296 return true;
297 }
Evan Cheng7543e582008-06-18 07:49:14 +0000298 }
Evan Cheng601ca4b2008-06-25 01:16:38 +0000299
300 // If other uses in MBB are not two-address uses, then don't remat.
301 if (OtherUse)
302 return false;
303
304 // No other uses in the same block, remat if it's defined in the same
305 // block so it does not unnecessarily extend the live range.
306 return MBB == DefMI->getParent();
Evan Cheng7543e582008-06-18 07:49:14 +0000307}
308
Evan Chengd498c8f2009-01-25 03:53:59 +0000309/// NoUseAfterLastDef - Return true if there are no intervening uses between the
310/// last instruction in the MBB that defines the specified register and the
311/// two-address instruction which is being processed. It also returns the last
312/// def location by reference
313bool TwoAddressInstructionPass::NoUseAfterLastDef(unsigned Reg,
Evan Cheng870b8072009-03-01 02:03:43 +0000314 MachineBasicBlock *MBB, unsigned Dist,
315 unsigned &LastDef) {
Evan Chengd498c8f2009-01-25 03:53:59 +0000316 LastDef = 0;
317 unsigned LastUse = Dist;
318 for (MachineRegisterInfo::reg_iterator I = MRI->reg_begin(Reg),
319 E = MRI->reg_end(); I != E; ++I) {
320 MachineOperand &MO = I.getOperand();
321 MachineInstr *MI = MO.getParent();
322 if (MI->getParent() != MBB)
323 continue;
324 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(MI);
325 if (DI == DistanceMap.end())
326 continue;
327 if (MO.isUse() && DI->second < LastUse)
328 LastUse = DI->second;
329 if (MO.isDef() && DI->second > LastDef)
330 LastDef = DI->second;
331 }
332
333 return !(LastUse > LastDef && LastUse < Dist);
334}
335
Evan Chenge9ccb3a2009-04-28 02:12:36 +0000336MachineInstr *TwoAddressInstructionPass::FindLastUseInMBB(unsigned Reg,
337 MachineBasicBlock *MBB,
338 unsigned Dist) {
Lang Hamesa7c9dea2009-05-14 04:26:30 +0000339 unsigned LastUseDist = 0;
Evan Chenge9ccb3a2009-04-28 02:12:36 +0000340 MachineInstr *LastUse = 0;
341 for (MachineRegisterInfo::reg_iterator I = MRI->reg_begin(Reg),
342 E = MRI->reg_end(); I != E; ++I) {
343 MachineOperand &MO = I.getOperand();
344 MachineInstr *MI = MO.getParent();
345 if (MI->getParent() != MBB)
346 continue;
347 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(MI);
348 if (DI == DistanceMap.end())
349 continue;
Lang Hamesa7c9dea2009-05-14 04:26:30 +0000350 if (DI->second >= Dist)
351 continue;
352
353 if (MO.isUse() && DI->second > LastUseDist) {
Evan Chenge9ccb3a2009-04-28 02:12:36 +0000354 LastUse = DI->first;
355 LastUseDist = DI->second;
356 }
357 }
358 return LastUse;
359}
360
Evan Cheng870b8072009-03-01 02:03:43 +0000361/// isCopyToReg - Return true if the specified MI is a copy instruction or
362/// a extract_subreg instruction. It also returns the source and destination
363/// registers and whether they are physical registers by reference.
364static bool isCopyToReg(MachineInstr &MI, const TargetInstrInfo *TII,
365 unsigned &SrcReg, unsigned &DstReg,
366 bool &IsSrcPhys, bool &IsDstPhys) {
367 SrcReg = 0;
368 DstReg = 0;
369 unsigned SrcSubIdx, DstSubIdx;
370 if (!TII->isMoveInstr(MI, SrcReg, DstReg, SrcSubIdx, DstSubIdx)) {
371 if (MI.getOpcode() == TargetInstrInfo::EXTRACT_SUBREG) {
372 DstReg = MI.getOperand(0).getReg();
373 SrcReg = MI.getOperand(1).getReg();
374 } else if (MI.getOpcode() == TargetInstrInfo::INSERT_SUBREG) {
375 DstReg = MI.getOperand(0).getReg();
376 SrcReg = MI.getOperand(2).getReg();
Dan Gohman97121ba2009-04-08 00:15:30 +0000377 } else if (MI.getOpcode() == TargetInstrInfo::SUBREG_TO_REG) {
378 DstReg = MI.getOperand(0).getReg();
379 SrcReg = MI.getOperand(2).getReg();
Evan Cheng870b8072009-03-01 02:03:43 +0000380 }
381 }
382
383 if (DstReg) {
384 IsSrcPhys = TargetRegisterInfo::isPhysicalRegister(SrcReg);
385 IsDstPhys = TargetRegisterInfo::isPhysicalRegister(DstReg);
386 return true;
387 }
388 return false;
389}
390
Dan Gohman97121ba2009-04-08 00:15:30 +0000391/// isKilled - Test if the given register value, which is used by the given
392/// instruction, is killed by the given instruction. This looks through
393/// coalescable copies to see if the original value is potentially not killed.
394///
395/// For example, in this code:
396///
397/// %reg1034 = copy %reg1024
398/// %reg1035 = copy %reg1025<kill>
399/// %reg1036 = add %reg1034<kill>, %reg1035<kill>
400///
401/// %reg1034 is not considered to be killed, since it is copied from a
402/// register which is not killed. Treating it as not killed lets the
403/// normal heuristics commute the (two-address) add, which lets
404/// coalescing eliminate the extra copy.
405///
406static bool isKilled(MachineInstr &MI, unsigned Reg,
407 const MachineRegisterInfo *MRI,
408 const TargetInstrInfo *TII) {
409 MachineInstr *DefMI = &MI;
410 for (;;) {
411 if (!DefMI->killsRegister(Reg))
412 return false;
413 if (TargetRegisterInfo::isPhysicalRegister(Reg))
414 return true;
415 MachineRegisterInfo::def_iterator Begin = MRI->def_begin(Reg);
416 // If there are multiple defs, we can't do a simple analysis, so just
417 // go with what the kill flag says.
418 if (next(Begin) != MRI->def_end())
419 return true;
420 DefMI = &*Begin;
421 bool IsSrcPhys, IsDstPhys;
422 unsigned SrcReg, DstReg;
423 // If the def is something other than a copy, then it isn't going to
424 // be coalesced, so follow the kill flag.
425 if (!isCopyToReg(*DefMI, TII, SrcReg, DstReg, IsSrcPhys, IsDstPhys))
426 return true;
427 Reg = SrcReg;
428 }
429}
430
Evan Cheng870b8072009-03-01 02:03:43 +0000431/// isTwoAddrUse - Return true if the specified MI uses the specified register
432/// as a two-address use. If so, return the destination register by reference.
433static bool isTwoAddrUse(MachineInstr &MI, unsigned Reg, unsigned &DstReg) {
434 const TargetInstrDesc &TID = MI.getDesc();
Evan Chenge6f350d2009-03-30 21:34:07 +0000435 unsigned NumOps = (MI.getOpcode() == TargetInstrInfo::INLINEASM)
436 ? MI.getNumOperands() : TID.getNumOperands();
437 for (unsigned i = 0; i != NumOps; ++i) {
Evan Cheng870b8072009-03-01 02:03:43 +0000438 const MachineOperand &MO = MI.getOperand(i);
439 if (!MO.isReg() || !MO.isUse() || MO.getReg() != Reg)
440 continue;
Evan Chenga24752f2009-03-19 20:30:06 +0000441 unsigned ti;
442 if (MI.isRegTiedToDefOperand(i, &ti)) {
Evan Cheng870b8072009-03-01 02:03:43 +0000443 DstReg = MI.getOperand(ti).getReg();
444 return true;
445 }
446 }
447 return false;
448}
449
450/// findOnlyInterestingUse - Given a register, if has a single in-basic block
451/// use, return the use instruction if it's a copy or a two-address use.
452static
453MachineInstr *findOnlyInterestingUse(unsigned Reg, MachineBasicBlock *MBB,
454 MachineRegisterInfo *MRI,
455 const TargetInstrInfo *TII,
Evan Cheng87d696a2009-04-14 00:32:25 +0000456 bool &IsCopy,
Evan Cheng870b8072009-03-01 02:03:43 +0000457 unsigned &DstReg, bool &IsDstPhys) {
458 MachineRegisterInfo::use_iterator UI = MRI->use_begin(Reg);
459 if (UI == MRI->use_end())
460 return 0;
461 MachineInstr &UseMI = *UI;
462 if (++UI != MRI->use_end())
463 // More than one use.
464 return 0;
465 if (UseMI.getParent() != MBB)
466 return 0;
467 unsigned SrcReg;
468 bool IsSrcPhys;
Evan Cheng87d696a2009-04-14 00:32:25 +0000469 if (isCopyToReg(UseMI, TII, SrcReg, DstReg, IsSrcPhys, IsDstPhys)) {
470 IsCopy = true;
Evan Cheng870b8072009-03-01 02:03:43 +0000471 return &UseMI;
Evan Cheng87d696a2009-04-14 00:32:25 +0000472 }
Evan Cheng870b8072009-03-01 02:03:43 +0000473 IsDstPhys = false;
Evan Cheng87d696a2009-04-14 00:32:25 +0000474 if (isTwoAddrUse(UseMI, Reg, DstReg)) {
475 IsDstPhys = TargetRegisterInfo::isPhysicalRegister(DstReg);
Evan Cheng870b8072009-03-01 02:03:43 +0000476 return &UseMI;
Evan Cheng87d696a2009-04-14 00:32:25 +0000477 }
Evan Cheng870b8072009-03-01 02:03:43 +0000478 return 0;
479}
480
481/// getMappedReg - Return the physical register the specified virtual register
482/// might be mapped to.
483static unsigned
484getMappedReg(unsigned Reg, DenseMap<unsigned, unsigned> &RegMap) {
485 while (TargetRegisterInfo::isVirtualRegister(Reg)) {
486 DenseMap<unsigned, unsigned>::iterator SI = RegMap.find(Reg);
487 if (SI == RegMap.end())
488 return 0;
489 Reg = SI->second;
490 }
491 if (TargetRegisterInfo::isPhysicalRegister(Reg))
492 return Reg;
493 return 0;
494}
495
496/// regsAreCompatible - Return true if the two registers are equal or aliased.
497///
498static bool
499regsAreCompatible(unsigned RegA, unsigned RegB, const TargetRegisterInfo *TRI) {
500 if (RegA == RegB)
501 return true;
502 if (!RegA || !RegB)
503 return false;
504 return TRI->regsOverlap(RegA, RegB);
505}
506
507
Evan Chengd498c8f2009-01-25 03:53:59 +0000508/// isProfitableToReMat - Return true if it's potentially profitable to commute
509/// the two-address instruction that's being processed.
510bool
511TwoAddressInstructionPass::isProfitableToCommute(unsigned regB, unsigned regC,
Evan Cheng870b8072009-03-01 02:03:43 +0000512 MachineInstr *MI, MachineBasicBlock *MBB,
513 unsigned Dist) {
Evan Chengd498c8f2009-01-25 03:53:59 +0000514 // Determine if it's profitable to commute this two address instruction. In
515 // general, we want no uses between this instruction and the definition of
516 // the two-address register.
517 // e.g.
518 // %reg1028<def> = EXTRACT_SUBREG %reg1027<kill>, 1
519 // %reg1029<def> = MOV8rr %reg1028
520 // %reg1029<def> = SHR8ri %reg1029, 7, %EFLAGS<imp-def,dead>
521 // insert => %reg1030<def> = MOV8rr %reg1028
522 // %reg1030<def> = ADD8rr %reg1028<kill>, %reg1029<kill>, %EFLAGS<imp-def,dead>
523 // In this case, it might not be possible to coalesce the second MOV8rr
524 // instruction if the first one is coalesced. So it would be profitable to
525 // commute it:
526 // %reg1028<def> = EXTRACT_SUBREG %reg1027<kill>, 1
527 // %reg1029<def> = MOV8rr %reg1028
528 // %reg1029<def> = SHR8ri %reg1029, 7, %EFLAGS<imp-def,dead>
529 // insert => %reg1030<def> = MOV8rr %reg1029
530 // %reg1030<def> = ADD8rr %reg1029<kill>, %reg1028<kill>, %EFLAGS<imp-def,dead>
531
532 if (!MI->killsRegister(regC))
533 return false;
534
535 // Ok, we have something like:
536 // %reg1030<def> = ADD8rr %reg1028<kill>, %reg1029<kill>, %EFLAGS<imp-def,dead>
537 // let's see if it's worth commuting it.
538
Evan Cheng870b8072009-03-01 02:03:43 +0000539 // Look for situations like this:
540 // %reg1024<def> = MOV r1
541 // %reg1025<def> = MOV r0
542 // %reg1026<def> = ADD %reg1024, %reg1025
543 // r0 = MOV %reg1026
544 // Commute the ADD to hopefully eliminate an otherwise unavoidable copy.
545 unsigned FromRegB = getMappedReg(regB, SrcRegMap);
546 unsigned FromRegC = getMappedReg(regC, SrcRegMap);
547 unsigned ToRegB = getMappedReg(regB, DstRegMap);
548 unsigned ToRegC = getMappedReg(regC, DstRegMap);
549 if (!regsAreCompatible(FromRegB, ToRegB, TRI) &&
550 (regsAreCompatible(FromRegB, ToRegC, TRI) ||
551 regsAreCompatible(FromRegC, ToRegB, TRI)))
552 return true;
553
Evan Chengd498c8f2009-01-25 03:53:59 +0000554 // If there is a use of regC between its last def (could be livein) and this
555 // instruction, then bail.
556 unsigned LastDefC = 0;
Evan Cheng870b8072009-03-01 02:03:43 +0000557 if (!NoUseAfterLastDef(regC, MBB, Dist, LastDefC))
Evan Chengd498c8f2009-01-25 03:53:59 +0000558 return false;
559
560 // If there is a use of regB between its last def (could be livein) and this
561 // instruction, then go ahead and make this transformation.
562 unsigned LastDefB = 0;
Evan Cheng870b8072009-03-01 02:03:43 +0000563 if (!NoUseAfterLastDef(regB, MBB, Dist, LastDefB))
Evan Chengd498c8f2009-01-25 03:53:59 +0000564 return true;
565
566 // Since there are no intervening uses for both registers, then commute
567 // if the def of regC is closer. Its live interval is shorter.
568 return LastDefB && LastDefC && LastDefC > LastDefB;
569}
570
Evan Cheng81913712009-01-23 23:27:33 +0000571/// CommuteInstruction - Commute a two-address instruction and update the basic
572/// block, distance map, and live variables if needed. Return true if it is
573/// successful.
574bool
575TwoAddressInstructionPass::CommuteInstruction(MachineBasicBlock::iterator &mi,
Evan Cheng870b8072009-03-01 02:03:43 +0000576 MachineFunction::iterator &mbbi,
577 unsigned RegB, unsigned RegC, unsigned Dist) {
Evan Cheng81913712009-01-23 23:27:33 +0000578 MachineInstr *MI = mi;
Chris Lattner6456d382009-08-23 03:20:44 +0000579 DEBUG(errs() << "2addr: COMMUTING : " << *MI);
Evan Cheng81913712009-01-23 23:27:33 +0000580 MachineInstr *NewMI = TII->commuteInstruction(MI);
581
582 if (NewMI == 0) {
Chris Lattner6456d382009-08-23 03:20:44 +0000583 DEBUG(errs() << "2addr: COMMUTING FAILED!\n");
Evan Cheng81913712009-01-23 23:27:33 +0000584 return false;
585 }
586
Chris Lattner6456d382009-08-23 03:20:44 +0000587 DEBUG(errs() << "2addr: COMMUTED TO: " << *NewMI);
Evan Cheng81913712009-01-23 23:27:33 +0000588 // If the instruction changed to commute it, update livevar.
589 if (NewMI != MI) {
590 if (LV)
591 // Update live variables
592 LV->replaceKillInstruction(RegC, MI, NewMI);
593
594 mbbi->insert(mi, NewMI); // Insert the new inst
595 mbbi->erase(mi); // Nuke the old inst.
596 mi = NewMI;
597 DistanceMap.insert(std::make_pair(NewMI, Dist));
598 }
Evan Cheng870b8072009-03-01 02:03:43 +0000599
600 // Update source register map.
601 unsigned FromRegC = getMappedReg(RegC, SrcRegMap);
602 if (FromRegC) {
603 unsigned RegA = MI->getOperand(0).getReg();
604 SrcRegMap[RegA] = FromRegC;
605 }
606
Evan Cheng81913712009-01-23 23:27:33 +0000607 return true;
608}
609
Evan Chenge6f350d2009-03-30 21:34:07 +0000610/// isProfitableToConv3Addr - Return true if it is profitable to convert the
611/// given 2-address instruction to a 3-address one.
612bool
613TwoAddressInstructionPass::isProfitableToConv3Addr(unsigned RegA) {
614 // Look for situations like this:
615 // %reg1024<def> = MOV r1
616 // %reg1025<def> = MOV r0
617 // %reg1026<def> = ADD %reg1024, %reg1025
618 // r2 = MOV %reg1026
619 // Turn ADD into a 3-address instruction to avoid a copy.
620 unsigned FromRegA = getMappedReg(RegA, SrcRegMap);
621 unsigned ToRegA = getMappedReg(RegA, DstRegMap);
622 return (FromRegA && ToRegA && !regsAreCompatible(FromRegA, ToRegA, TRI));
623}
624
625/// ConvertInstTo3Addr - Convert the specified two-address instruction into a
626/// three address one. Return true if this transformation was successful.
627bool
628TwoAddressInstructionPass::ConvertInstTo3Addr(MachineBasicBlock::iterator &mi,
629 MachineBasicBlock::iterator &nmi,
630 MachineFunction::iterator &mbbi,
631 unsigned RegB, unsigned Dist) {
632 MachineInstr *NewMI = TII->convertToThreeAddress(mbbi, mi, LV);
633 if (NewMI) {
Chris Lattner6456d382009-08-23 03:20:44 +0000634 DEBUG(errs() << "2addr: CONVERTING 2-ADDR: " << *mi);
635 DEBUG(errs() << "2addr: TO 3-ADDR: " << *NewMI);
Evan Chenge6f350d2009-03-30 21:34:07 +0000636 bool Sunk = false;
637
638 if (NewMI->findRegisterUseOperand(RegB, false, TRI))
639 // FIXME: Temporary workaround. If the new instruction doesn't
640 // uses RegB, convertToThreeAddress must have created more
641 // then one instruction.
642 Sunk = Sink3AddrInstruction(mbbi, NewMI, RegB, mi);
643
644 mbbi->erase(mi); // Nuke the old inst.
645
646 if (!Sunk) {
647 DistanceMap.insert(std::make_pair(NewMI, Dist));
648 mi = NewMI;
649 nmi = next(mi);
650 }
651 return true;
652 }
653
654 return false;
655}
656
Evan Cheng870b8072009-03-01 02:03:43 +0000657/// ProcessCopy - If the specified instruction is not yet processed, process it
658/// if it's a copy. For a copy instruction, we find the physical registers the
659/// source and destination registers might be mapped to. These are kept in
660/// point-to maps used to determine future optimizations. e.g.
661/// v1024 = mov r0
662/// v1025 = mov r1
663/// v1026 = add v1024, v1025
664/// r1 = mov r1026
665/// If 'add' is a two-address instruction, v1024, v1026 are both potentially
666/// coalesced to r0 (from the input side). v1025 is mapped to r1. v1026 is
667/// potentially joined with r1 on the output side. It's worthwhile to commute
668/// 'add' to eliminate a copy.
669void TwoAddressInstructionPass::ProcessCopy(MachineInstr *MI,
670 MachineBasicBlock *MBB,
671 SmallPtrSet<MachineInstr*, 8> &Processed) {
672 if (Processed.count(MI))
673 return;
674
675 bool IsSrcPhys, IsDstPhys;
676 unsigned SrcReg, DstReg;
677 if (!isCopyToReg(*MI, TII, SrcReg, DstReg, IsSrcPhys, IsDstPhys))
678 return;
679
680 if (IsDstPhys && !IsSrcPhys)
681 DstRegMap.insert(std::make_pair(SrcReg, DstReg));
682 else if (!IsDstPhys && IsSrcPhys) {
Evan Cheng3005ed62009-04-13 20:04:24 +0000683 bool isNew = SrcRegMap.insert(std::make_pair(DstReg, SrcReg)).second;
684 if (!isNew)
685 assert(SrcRegMap[DstReg] == SrcReg &&
686 "Can't map to two src physical registers!");
Evan Cheng870b8072009-03-01 02:03:43 +0000687
688 SmallVector<unsigned, 4> VirtRegPairs;
Evan Cheng87d696a2009-04-14 00:32:25 +0000689 bool IsCopy = false;
Evan Cheng870b8072009-03-01 02:03:43 +0000690 unsigned NewReg = 0;
691 while (MachineInstr *UseMI = findOnlyInterestingUse(DstReg, MBB, MRI,TII,
Evan Cheng87d696a2009-04-14 00:32:25 +0000692 IsCopy, NewReg, IsDstPhys)) {
693 if (IsCopy) {
694 if (!Processed.insert(UseMI))
Evan Cheng870b8072009-03-01 02:03:43 +0000695 break;
696 }
697
698 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(UseMI);
699 if (DI != DistanceMap.end())
700 // Earlier in the same MBB.Reached via a back edge.
701 break;
702
703 if (IsDstPhys) {
704 VirtRegPairs.push_back(NewReg);
705 break;
706 }
707 bool isNew = SrcRegMap.insert(std::make_pair(NewReg, DstReg)).second;
Evan Cheng3005ed62009-04-13 20:04:24 +0000708 if (!isNew)
Evan Cheng87d696a2009-04-14 00:32:25 +0000709 assert(SrcRegMap[NewReg] == DstReg &&
710 "Can't map to two src physical registers!");
Evan Cheng870b8072009-03-01 02:03:43 +0000711 VirtRegPairs.push_back(NewReg);
712 DstReg = NewReg;
713 }
714
715 if (!VirtRegPairs.empty()) {
716 unsigned ToReg = VirtRegPairs.back();
717 VirtRegPairs.pop_back();
718 while (!VirtRegPairs.empty()) {
719 unsigned FromReg = VirtRegPairs.back();
720 VirtRegPairs.pop_back();
721 bool isNew = DstRegMap.insert(std::make_pair(FromReg, ToReg)).second;
Evan Cheng3005ed62009-04-13 20:04:24 +0000722 if (!isNew)
723 assert(DstRegMap[FromReg] == ToReg &&
724 "Can't map to two dst physical registers!");
Evan Cheng870b8072009-03-01 02:03:43 +0000725 ToReg = FromReg;
726 }
727 }
728 }
729
730 Processed.insert(MI);
731}
732
Evan Cheng28c7ce32009-02-21 03:14:25 +0000733/// isSafeToDelete - If the specified instruction does not produce any side
734/// effects and all of its defs are dead, then it's safe to delete.
Evan Chenge9ccb3a2009-04-28 02:12:36 +0000735static bool isSafeToDelete(MachineInstr *MI, unsigned Reg,
736 const TargetInstrInfo *TII,
737 SmallVector<unsigned, 4> &Kills) {
Evan Cheng28c7ce32009-02-21 03:14:25 +0000738 const TargetInstrDesc &TID = MI->getDesc();
739 if (TID.mayStore() || TID.isCall())
740 return false;
741 if (TID.isTerminator() || TID.hasUnmodeledSideEffects())
742 return false;
743
744 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
745 MachineOperand &MO = MI->getOperand(i);
Evan Chenge9ccb3a2009-04-28 02:12:36 +0000746 if (!MO.isReg())
Evan Cheng28c7ce32009-02-21 03:14:25 +0000747 continue;
Evan Chenge9ccb3a2009-04-28 02:12:36 +0000748 if (MO.isDef() && !MO.isDead())
Evan Cheng28c7ce32009-02-21 03:14:25 +0000749 return false;
Evan Chenge9ccb3a2009-04-28 02:12:36 +0000750 if (MO.isUse() && MO.getReg() != Reg && MO.isKill())
751 Kills.push_back(MO.getReg());
Evan Cheng28c7ce32009-02-21 03:14:25 +0000752 }
753
754 return true;
755}
756
Bob Wilson326f4382009-09-01 22:51:08 +0000757/// canUpdateDeletedKills - Check if all the registers listed in Kills are
758/// killed by instructions in MBB preceding the current instruction at
759/// position Dist. If so, return true and record information about the
760/// preceding kills in NewKills.
761bool TwoAddressInstructionPass::
762canUpdateDeletedKills(SmallVector<unsigned, 4> &Kills,
763 SmallVector<NewKill, 4> &NewKills,
764 MachineBasicBlock *MBB, unsigned Dist) {
765 while (!Kills.empty()) {
766 unsigned Kill = Kills.back();
767 Kills.pop_back();
768 if (TargetRegisterInfo::isPhysicalRegister(Kill))
769 return false;
770
771 MachineInstr *LastKill = FindLastUseInMBB(Kill, MBB, Dist);
772 if (!LastKill)
773 return false;
774
775 bool isModRef = LastKill->modifiesRegister(Kill);
776 NewKills.push_back(std::make_pair(std::make_pair(Kill, isModRef),
777 LastKill));
778 }
779 return true;
780}
781
782/// DeleteUnusedInstr - If an instruction with a tied register operand can
783/// be safely deleted, just delete it.
784bool
785TwoAddressInstructionPass::DeleteUnusedInstr(MachineBasicBlock::iterator &mi,
786 MachineBasicBlock::iterator &nmi,
787 MachineFunction::iterator &mbbi,
788 unsigned regB, unsigned regBIdx,
789 unsigned Dist) {
790 // Check if the instruction has no side effects and if all its defs are dead.
791 SmallVector<unsigned, 4> Kills;
792 if (!isSafeToDelete(mi, regB, TII, Kills))
793 return false;
794
795 // If this instruction kills some virtual registers, we need to
796 // update the kill information. If it's not possible to do so,
797 // then bail out.
798 SmallVector<NewKill, 4> NewKills;
799 if (!canUpdateDeletedKills(Kills, NewKills, &*mbbi, Dist))
800 return false;
801
802 if (LV) {
803 while (!NewKills.empty()) {
804 MachineInstr *NewKill = NewKills.back().second;
805 unsigned Kill = NewKills.back().first.first;
806 bool isDead = NewKills.back().first.second;
807 NewKills.pop_back();
808 if (LV->removeVirtualRegisterKilled(Kill, mi)) {
809 if (isDead)
810 LV->addVirtualRegisterDead(Kill, NewKill);
811 else
812 LV->addVirtualRegisterKilled(Kill, NewKill);
813 }
814 }
815
816 // If regB was marked as a kill, update its Kills list.
817 if (mi->getOperand(regBIdx).isKill())
818 LV->removeVirtualRegisterKilled(regB, mi);
819 }
820
821 mbbi->erase(mi); // Nuke the old inst.
822 mi = nmi;
823 return true;
824}
825
Bob Wilsoncc80df92009-09-03 20:58:42 +0000826/// TryInstructionTransform - For the case where an instruction has a single
827/// pair of tied register operands, attempt some transformations that may
828/// either eliminate the tied operands or improve the opportunities for
829/// coalescing away the register copy. Returns true if the tied operands
830/// are eliminated altogether.
831bool TwoAddressInstructionPass::
832TryInstructionTransform(MachineBasicBlock::iterator &mi,
833 MachineBasicBlock::iterator &nmi,
834 MachineFunction::iterator &mbbi,
835 unsigned SrcIdx, unsigned DstIdx, unsigned Dist) {
836 const TargetInstrDesc &TID = mi->getDesc();
837 unsigned regA = mi->getOperand(DstIdx).getReg();
838 unsigned regB = mi->getOperand(SrcIdx).getReg();
839
840 assert(TargetRegisterInfo::isVirtualRegister(regB) &&
841 "cannot make instruction into two-address form");
842
843 // If regA is dead and the instruction can be deleted, just delete
844 // it so it doesn't clobber regB.
845 bool regBKilled = isKilled(*mi, regB, MRI, TII);
846 if (!regBKilled && mi->getOperand(DstIdx).isDead() &&
847 DeleteUnusedInstr(mi, nmi, mbbi, regB, SrcIdx, Dist)) {
848 ++NumDeletes;
849 return true; // Done with this instruction.
850 }
851
852 // Check if it is profitable to commute the operands.
853 unsigned SrcOp1, SrcOp2;
854 unsigned regC = 0;
855 unsigned regCIdx = ~0U;
856 bool TryCommute = false;
857 bool AggressiveCommute = false;
858 if (TID.isCommutable() && mi->getNumOperands() >= 3 &&
859 TII->findCommutedOpIndices(mi, SrcOp1, SrcOp2)) {
860 if (SrcIdx == SrcOp1)
861 regCIdx = SrcOp2;
862 else if (SrcIdx == SrcOp2)
863 regCIdx = SrcOp1;
864
865 if (regCIdx != ~0U) {
866 regC = mi->getOperand(regCIdx).getReg();
867 if (!regBKilled && isKilled(*mi, regC, MRI, TII))
868 // If C dies but B does not, swap the B and C operands.
869 // This makes the live ranges of A and C joinable.
870 TryCommute = true;
871 else if (isProfitableToCommute(regB, regC, mi, mbbi, Dist)) {
872 TryCommute = true;
873 AggressiveCommute = true;
874 }
875 }
876 }
877
878 // If it's profitable to commute, try to do so.
879 if (TryCommute && CommuteInstruction(mi, mbbi, regB, regC, Dist)) {
880 ++NumCommuted;
881 if (AggressiveCommute)
882 ++NumAggrCommuted;
883 return false;
884 }
885
886 if (TID.isConvertibleTo3Addr()) {
887 // This instruction is potentially convertible to a true
888 // three-address instruction. Check if it is profitable.
889 if (!regBKilled || isProfitableToConv3Addr(regA)) {
890 // Try to convert it.
891 if (ConvertInstTo3Addr(mi, nmi, mbbi, regB, Dist)) {
892 ++NumConvertedTo3Addr;
893 return true; // Done with this instruction.
894 }
895 }
896 }
897 return false;
898}
899
Bill Wendling637980e2008-05-10 00:12:52 +0000900/// runOnMachineFunction - Reduce two-address instructions to two operands.
Alkis Evlogimenos71499de2003-12-18 13:06:04 +0000901///
Chris Lattner163c1e72004-01-31 21:14:04 +0000902bool TwoAddressInstructionPass::runOnMachineFunction(MachineFunction &MF) {
Chris Lattner6456d382009-08-23 03:20:44 +0000903 DEBUG(errs() << "Machine Function\n");
Misha Brukman75fa4e42004-07-22 15:26:23 +0000904 const TargetMachine &TM = MF.getTarget();
Evan Cheng875357d2008-03-13 06:37:55 +0000905 MRI = &MF.getRegInfo();
906 TII = TM.getInstrInfo();
907 TRI = TM.getRegisterInfo();
Duncan Sands1465d612009-01-28 13:14:17 +0000908 LV = getAnalysisIfAvailable<LiveVariables>();
Dan Gohmana70dca12009-10-09 23:27:56 +0000909 AA = &getAnalysis<AliasAnalysis>();
Alkis Evlogimenos71499de2003-12-18 13:06:04 +0000910
Misha Brukman75fa4e42004-07-22 15:26:23 +0000911 bool MadeChange = false;
Alkis Evlogimenos71499de2003-12-18 13:06:04 +0000912
Chris Lattner6456d382009-08-23 03:20:44 +0000913 DEBUG(errs() << "********** REWRITING TWO-ADDR INSTRS **********\n");
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000914 DEBUG(errs() << "********** Function: "
915 << MF.getFunction()->getName() << '\n');
Alkis Evlogimenos3a9986f2004-02-18 00:35:06 +0000916
Evan Cheng7543e582008-06-18 07:49:14 +0000917 // ReMatRegs - Keep track of the registers whose def's are remat'ed.
918 BitVector ReMatRegs;
919 ReMatRegs.resize(MRI->getLastVirtReg()+1);
920
Bob Wilsoncc80df92009-09-03 20:58:42 +0000921 typedef DenseMap<unsigned, SmallVector<std::pair<unsigned, unsigned>, 4> >
922 TiedOperandMap;
923 TiedOperandMap TiedOperands(4);
924
Evan Cheng870b8072009-03-01 02:03:43 +0000925 SmallPtrSet<MachineInstr*, 8> Processed;
Misha Brukman75fa4e42004-07-22 15:26:23 +0000926 for (MachineFunction::iterator mbbi = MF.begin(), mbbe = MF.end();
927 mbbi != mbbe; ++mbbi) {
Evan Cheng7543e582008-06-18 07:49:14 +0000928 unsigned Dist = 0;
929 DistanceMap.clear();
Evan Cheng870b8072009-03-01 02:03:43 +0000930 SrcRegMap.clear();
931 DstRegMap.clear();
932 Processed.clear();
Misha Brukman75fa4e42004-07-22 15:26:23 +0000933 for (MachineBasicBlock::iterator mi = mbbi->begin(), me = mbbi->end();
Evan Cheng7a963fa2008-03-27 01:27:25 +0000934 mi != me; ) {
935 MachineBasicBlock::iterator nmi = next(mi);
Chris Lattner749c6f62008-01-07 07:27:27 +0000936 const TargetInstrDesc &TID = mi->getDesc();
Evan Cheng360c2dd2006-11-01 23:06:55 +0000937 bool FirstTied = true;
Bill Wendling637980e2008-05-10 00:12:52 +0000938
Evan Cheng7543e582008-06-18 07:49:14 +0000939 DistanceMap.insert(std::make_pair(mi, ++Dist));
Evan Cheng870b8072009-03-01 02:03:43 +0000940
941 ProcessCopy(&*mi, &*mbbi, Processed);
942
Bob Wilsoncc80df92009-09-03 20:58:42 +0000943 // First scan through all the tied register uses in this instruction
944 // and record a list of pairs of tied operands for each register.
Evan Chengfb112882009-03-23 08:01:15 +0000945 unsigned NumOps = (mi->getOpcode() == TargetInstrInfo::INLINEASM)
946 ? mi->getNumOperands() : TID.getNumOperands();
Bob Wilsoncc80df92009-09-03 20:58:42 +0000947 for (unsigned SrcIdx = 0; SrcIdx < NumOps; ++SrcIdx) {
948 unsigned DstIdx = 0;
949 if (!mi->isRegTiedToDefOperand(SrcIdx, &DstIdx))
Evan Cheng360c2dd2006-11-01 23:06:55 +0000950 continue;
Alkis Evlogimenos71499de2003-12-18 13:06:04 +0000951
Evan Cheng360c2dd2006-11-01 23:06:55 +0000952 if (FirstTied) {
Bob Wilsoncc80df92009-09-03 20:58:42 +0000953 FirstTied = false;
Evan Cheng360c2dd2006-11-01 23:06:55 +0000954 ++NumTwoAddressInstrs;
Chris Lattner6456d382009-08-23 03:20:44 +0000955 DEBUG(errs() << '\t' << *mi);
Evan Cheng360c2dd2006-11-01 23:06:55 +0000956 }
Bill Wendling637980e2008-05-10 00:12:52 +0000957
Bob Wilsoncc80df92009-09-03 20:58:42 +0000958 assert(mi->getOperand(SrcIdx).isReg() &&
959 mi->getOperand(SrcIdx).getReg() &&
960 mi->getOperand(SrcIdx).isUse() &&
961 "two address instruction invalid");
Alkis Evlogimenos71499de2003-12-18 13:06:04 +0000962
Bob Wilsoncc80df92009-09-03 20:58:42 +0000963 unsigned regB = mi->getOperand(SrcIdx).getReg();
964 TiedOperandMap::iterator OI = TiedOperands.find(regB);
965 if (OI == TiedOperands.end()) {
966 SmallVector<std::pair<unsigned, unsigned>, 4> TiedPair;
967 OI = TiedOperands.insert(std::make_pair(regB, TiedPair)).first;
968 }
969 OI->second.push_back(std::make_pair(SrcIdx, DstIdx));
970 }
Alkis Evlogimenos71499de2003-12-18 13:06:04 +0000971
Bob Wilsoncc80df92009-09-03 20:58:42 +0000972 // Now iterate over the information collected above.
973 for (TiedOperandMap::iterator OI = TiedOperands.begin(),
974 OE = TiedOperands.end(); OI != OE; ++OI) {
975 SmallVector<std::pair<unsigned, unsigned>, 4> &TiedPairs = OI->second;
Evan Cheng360c2dd2006-11-01 23:06:55 +0000976
Bob Wilsoncc80df92009-09-03 20:58:42 +0000977 // If the instruction has a single pair of tied operands, try some
978 // transformations that may either eliminate the tied operands or
979 // improve the opportunities for coalescing away the register copy.
980 if (TiedOperands.size() == 1 && TiedPairs.size() == 1) {
981 unsigned SrcIdx = TiedPairs[0].first;
982 unsigned DstIdx = TiedPairs[0].second;
Bob Wilson43449792009-08-31 21:54:55 +0000983
Bob Wilsoncc80df92009-09-03 20:58:42 +0000984 // If the registers are already equal, nothing needs to be done.
985 if (mi->getOperand(SrcIdx).getReg() ==
986 mi->getOperand(DstIdx).getReg())
987 break; // Done with this instruction.
988
989 if (TryInstructionTransform(mi, nmi, mbbi, SrcIdx, DstIdx, Dist))
990 break; // The tied operands have been eliminated.
991 }
992
993 bool RemovedKillFlag = false;
994 bool AllUsesCopied = true;
995 unsigned LastCopiedReg = 0;
996 unsigned regB = OI->first;
997 for (unsigned tpi = 0, tpe = TiedPairs.size(); tpi != tpe; ++tpi) {
998 unsigned SrcIdx = TiedPairs[tpi].first;
999 unsigned DstIdx = TiedPairs[tpi].second;
1000 unsigned regA = mi->getOperand(DstIdx).getReg();
1001 // Grab regB from the instruction because it may have changed if the
1002 // instruction was commuted.
1003 regB = mi->getOperand(SrcIdx).getReg();
1004
1005 if (regA == regB) {
1006 // The register is tied to multiple destinations (or else we would
1007 // not have continued this far), but this use of the register
1008 // already matches the tied destination. Leave it.
1009 AllUsesCopied = false;
1010 continue;
1011 }
1012 LastCopiedReg = regA;
1013
1014 assert(TargetRegisterInfo::isVirtualRegister(regB) &&
1015 "cannot make instruction into two-address form");
Chris Lattner6b507672004-01-31 21:21:43 +00001016
Chris Lattner1e313632004-07-21 23:17:57 +00001017#ifndef NDEBUG
Bob Wilsoncc80df92009-09-03 20:58:42 +00001018 // First, verify that we don't have a use of "a" in the instruction
1019 // (a = b + a for example) because our transformation will not
1020 // work. This should never occur because we are in SSA form.
1021 for (unsigned i = 0; i != mi->getNumOperands(); ++i)
1022 assert(i == DstIdx ||
1023 !mi->getOperand(i).isReg() ||
1024 mi->getOperand(i).getReg() != regA);
Chris Lattner1e313632004-07-21 23:17:57 +00001025#endif
Alkis Evlogimenos14be6402004-02-04 22:17:40 +00001026
Bob Wilsoncc80df92009-09-03 20:58:42 +00001027 // Emit a copy or rematerialize the definition.
1028 const TargetRegisterClass *rc = MRI->getRegClass(regB);
1029 MachineInstr *DefMI = MRI->getVRegDef(regB);
1030 // If it's safe and profitable, remat the definition instead of
1031 // copying it.
1032 if (DefMI &&
1033 DefMI->getDesc().isAsCheapAsAMove() &&
Dan Gohmana70dca12009-10-09 23:27:56 +00001034 DefMI->isSafeToReMat(TII, regB, AA) &&
Bob Wilsoncc80df92009-09-03 20:58:42 +00001035 isProfitableToReMat(regB, rc, mi, DefMI, mbbi, Dist)){
1036 DEBUG(errs() << "2addr: REMATTING : " << *DefMI << "\n");
1037 unsigned regASubIdx = mi->getOperand(DstIdx).getSubReg();
1038 TII->reMaterialize(*mbbi, mi, regA, regASubIdx, DefMI);
1039 ReMatRegs.set(regB);
1040 ++NumReMats;
Bob Wilson71124f62009-09-01 04:18:40 +00001041 } else {
Bob Wilsoncc80df92009-09-03 20:58:42 +00001042 bool Emitted = TII->copyRegToReg(*mbbi, mi, regA, regB, rc, rc);
1043 (void)Emitted;
1044 assert(Emitted && "Unable to issue a copy instruction!\n");
1045 }
1046
1047 MachineBasicBlock::iterator prevMI = prior(mi);
1048 // Update DistanceMap.
1049 DistanceMap.insert(std::make_pair(prevMI, Dist));
1050 DistanceMap[mi] = ++Dist;
1051
1052 DEBUG(errs() << "\t\tprepend:\t" << *prevMI);
1053
1054 MachineOperand &MO = mi->getOperand(SrcIdx);
1055 assert(MO.isReg() && MO.getReg() == regB && MO.isUse() &&
1056 "inconsistent operand info for 2-reg pass");
1057 if (MO.isKill()) {
1058 MO.setIsKill(false);
1059 RemovedKillFlag = true;
1060 }
1061 MO.setReg(regA);
1062 }
1063
1064 if (AllUsesCopied) {
1065 // Replace other (un-tied) uses of regB with LastCopiedReg.
1066 for (unsigned i = 0, e = mi->getNumOperands(); i != e; ++i) {
1067 MachineOperand &MO = mi->getOperand(i);
1068 if (MO.isReg() && MO.getReg() == regB && MO.isUse()) {
1069 if (MO.isKill()) {
1070 MO.setIsKill(false);
1071 RemovedKillFlag = true;
1072 }
1073 MO.setReg(LastCopiedReg);
1074 }
1075 }
1076
1077 // Update live variables for regB.
1078 if (RemovedKillFlag && LV && LV->getVarInfo(regB).removeKill(mi))
1079 LV->addVirtualRegisterKilled(regB, prior(mi));
1080
1081 } else if (RemovedKillFlag) {
1082 // Some tied uses of regB matched their destination registers, so
1083 // regB is still used in this instruction, but a kill flag was
1084 // removed from a different tied use of regB, so now we need to add
1085 // a kill flag to one of the remaining uses of regB.
1086 for (unsigned i = 0, e = mi->getNumOperands(); i != e; ++i) {
1087 MachineOperand &MO = mi->getOperand(i);
1088 if (MO.isReg() && MO.getReg() == regB && MO.isUse()) {
1089 MO.setIsKill(true);
1090 break;
Bob Wilson71124f62009-09-01 04:18:40 +00001091 }
1092 }
Bob Wilson43449792009-08-31 21:54:55 +00001093 }
Bob Wilsoncc80df92009-09-03 20:58:42 +00001094
Bob Wilson43449792009-08-31 21:54:55 +00001095 MadeChange = true;
1096
1097 DEBUG(errs() << "\t\trewrite to:\t" << *mi);
Misha Brukman75fa4e42004-07-22 15:26:23 +00001098 }
Bill Wendling637980e2008-05-10 00:12:52 +00001099
Bob Wilsoncc80df92009-09-03 20:58:42 +00001100 // Clear TiedOperands here instead of at the top of the loop
1101 // since most instructions do not have tied operands.
1102 TiedOperands.clear();
Evan Cheng7a963fa2008-03-27 01:27:25 +00001103 mi = nmi;
Misha Brukman75fa4e42004-07-22 15:26:23 +00001104 }
1105 }
1106
Evan Cheng601ca4b2008-06-25 01:16:38 +00001107 // Some remat'ed instructions are dead.
1108 int VReg = ReMatRegs.find_first();
1109 while (VReg != -1) {
1110 if (MRI->use_empty(VReg)) {
1111 MachineInstr *DefMI = MRI->getVRegDef(VReg);
1112 DefMI->eraseFromParent();
Bill Wendlinga16157a2008-05-26 05:49:49 +00001113 }
Evan Cheng601ca4b2008-06-25 01:16:38 +00001114 VReg = ReMatRegs.find_next(VReg);
Bill Wendling48f7f232008-05-26 05:18:34 +00001115 }
1116
Misha Brukman75fa4e42004-07-22 15:26:23 +00001117 return MadeChange;
Alkis Evlogimenos71499de2003-12-18 13:06:04 +00001118}