blob: d2e5288d34b6cfb5f8b2ea28f04d1d47861445fe [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"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000040#include "llvm/Support/Compiler.h"
Evan Cheng875357d2008-03-13 06:37:55 +000041#include "llvm/Support/Debug.h"
Evan Cheng7543e582008-06-18 07:49:14 +000042#include "llvm/ADT/BitVector.h"
43#include "llvm/ADT/DenseMap.h"
Bill Wendling48f7f232008-05-26 05:18:34 +000044#include "llvm/ADT/SmallPtrSet.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000045#include "llvm/ADT/Statistic.h"
46#include "llvm/ADT/STLExtras.h"
Alkis Evlogimenos71499de2003-12-18 13:06:04 +000047using namespace llvm;
48
Chris Lattnercd3245a2006-12-19 22:41:21 +000049STATISTIC(NumTwoAddressInstrs, "Number of two-address instructions");
50STATISTIC(NumCommuted , "Number of instructions commuted to coalesce");
51STATISTIC(NumConvertedTo3Addr, "Number of instructions promoted to 3-address");
Evan Cheng875357d2008-03-13 06:37:55 +000052STATISTIC(Num3AddrSunk, "Number of 3-address instructions sunk");
Evan Cheng7543e582008-06-18 07:49:14 +000053STATISTIC(NumReMats, "Number of instructions re-materialized");
Evan Cheng875357d2008-03-13 06:37:55 +000054
55namespace {
Bill Wendling637980e2008-05-10 00:12:52 +000056 class VISIBILITY_HIDDEN TwoAddressInstructionPass
57 : public MachineFunctionPass {
Evan Cheng875357d2008-03-13 06:37:55 +000058 const TargetInstrInfo *TII;
59 const TargetRegisterInfo *TRI;
60 MachineRegisterInfo *MRI;
61 LiveVariables *LV;
62
Bill Wendling637980e2008-05-10 00:12:52 +000063 bool Sink3AddrInstruction(MachineBasicBlock *MBB, MachineInstr *MI,
64 unsigned Reg,
65 MachineBasicBlock::iterator OldPos);
Evan Cheng7543e582008-06-18 07:49:14 +000066
67 bool isSafeToReMat(unsigned DstReg, MachineInstr *MI);
68 bool isProfitableToReMat(unsigned Reg, const TargetRegisterClass *RC,
Evan Cheng601ca4b2008-06-25 01:16:38 +000069 MachineInstr *MI, MachineInstr *DefMI,
70 MachineBasicBlock *MBB, unsigned Loc,
Evan Cheng7543e582008-06-18 07:49:14 +000071 DenseMap<MachineInstr*, unsigned> &DistanceMap);
Evan Cheng875357d2008-03-13 06:37:55 +000072 public:
Nick Lewyckyecd94c82007-05-06 13:37:16 +000073 static char ID; // Pass identification, replacement for typeid
Devang Patel794fd752007-05-01 21:15:47 +000074 TwoAddressInstructionPass() : MachineFunctionPass((intptr_t)&ID) {}
75
Bill Wendling637980e2008-05-10 00:12:52 +000076 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Bill Wendling637980e2008-05-10 00:12:52 +000077 AU.addPreserved<LiveVariables>();
78 AU.addPreservedID(MachineLoopInfoID);
79 AU.addPreservedID(MachineDominatorsID);
80 AU.addPreservedID(PHIEliminationID);
81 MachineFunctionPass::getAnalysisUsage(AU);
82 }
Alkis Evlogimenos4c080862003-12-18 22:40:24 +000083
Bill Wendling637980e2008-05-10 00:12:52 +000084 /// runOnMachineFunction - Pass entry point.
Misha Brukman75fa4e42004-07-22 15:26:23 +000085 bool runOnMachineFunction(MachineFunction&);
86 };
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000087}
Alkis Evlogimenos71499de2003-12-18 13:06:04 +000088
Dan Gohman844731a2008-05-13 00:00:25 +000089char TwoAddressInstructionPass::ID = 0;
90static RegisterPass<TwoAddressInstructionPass>
91X("twoaddressinstruction", "Two-Address instruction pass");
92
Dan Gohman6ddba2b2008-05-13 02:05:11 +000093const PassInfo *const llvm::TwoAddressInstructionPassID = &X;
Alkis Evlogimenos4c080862003-12-18 22:40:24 +000094
Evan Cheng875357d2008-03-13 06:37:55 +000095/// Sink3AddrInstruction - A two-address instruction has been converted to a
96/// three-address instruction to avoid clobbering a register. Try to sink it
Bill Wendling637980e2008-05-10 00:12:52 +000097/// past the instruction that would kill the above mentioned register to reduce
98/// register pressure.
Evan Cheng875357d2008-03-13 06:37:55 +000099bool TwoAddressInstructionPass::Sink3AddrInstruction(MachineBasicBlock *MBB,
100 MachineInstr *MI, unsigned SavedReg,
101 MachineBasicBlock::iterator OldPos) {
102 // Check if it's safe to move this instruction.
103 bool SeenStore = true; // Be conservative.
104 if (!MI->isSafeToMove(TII, SeenStore))
105 return false;
106
107 unsigned DefReg = 0;
108 SmallSet<unsigned, 4> UseRegs;
Bill Wendling637980e2008-05-10 00:12:52 +0000109
Evan Cheng875357d2008-03-13 06:37:55 +0000110 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
111 const MachineOperand &MO = MI->getOperand(i);
112 if (!MO.isRegister())
113 continue;
114 unsigned MOReg = MO.getReg();
115 if (!MOReg)
116 continue;
117 if (MO.isUse() && MOReg != SavedReg)
118 UseRegs.insert(MO.getReg());
119 if (!MO.isDef())
120 continue;
121 if (MO.isImplicit())
122 // Don't try to move it if it implicitly defines a register.
123 return false;
124 if (DefReg)
125 // For now, don't move any instructions that define multiple registers.
126 return false;
127 DefReg = MO.getReg();
128 }
129
130 // Find the instruction that kills SavedReg.
131 MachineInstr *KillMI = NULL;
132 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(SavedReg),
133 UE = MRI->use_end(); UI != UE; ++UI) {
134 MachineOperand &UseMO = UI.getOperand();
135 if (!UseMO.isKill())
136 continue;
137 KillMI = UseMO.getParent();
138 break;
139 }
Bill Wendling637980e2008-05-10 00:12:52 +0000140
Evan Cheng875357d2008-03-13 06:37:55 +0000141 if (!KillMI || KillMI->getParent() != MBB)
142 return false;
143
Bill Wendling637980e2008-05-10 00:12:52 +0000144 // If any of the definitions are used by another instruction between the
145 // position and the kill use, then it's not safe to sink it.
146 //
147 // FIXME: This can be sped up if there is an easy way to query whether an
Evan Cheng7543e582008-06-18 07:49:14 +0000148 // instruction is before or after another instruction. Then we can use
Bill Wendling637980e2008-05-10 00:12:52 +0000149 // MachineRegisterInfo def / use instead.
Evan Cheng875357d2008-03-13 06:37:55 +0000150 MachineOperand *KillMO = NULL;
151 MachineBasicBlock::iterator KillPos = KillMI;
152 ++KillPos;
Bill Wendling637980e2008-05-10 00:12:52 +0000153
Evan Cheng7543e582008-06-18 07:49:14 +0000154 unsigned NumVisited = 0;
Evan Cheng875357d2008-03-13 06:37:55 +0000155 for (MachineBasicBlock::iterator I = next(OldPos); I != KillPos; ++I) {
156 MachineInstr *OtherMI = I;
Evan Cheng7543e582008-06-18 07:49:14 +0000157 if (NumVisited > 30) // FIXME: Arbitrary limit to reduce compile time cost.
158 return false;
159 ++NumVisited;
Evan Cheng875357d2008-03-13 06:37:55 +0000160 for (unsigned i = 0, e = OtherMI->getNumOperands(); i != e; ++i) {
161 MachineOperand &MO = OtherMI->getOperand(i);
162 if (!MO.isRegister())
163 continue;
164 unsigned MOReg = MO.getReg();
165 if (!MOReg)
166 continue;
167 if (DefReg == MOReg)
168 return false;
Bill Wendling637980e2008-05-10 00:12:52 +0000169
Evan Cheng875357d2008-03-13 06:37:55 +0000170 if (MO.isKill()) {
171 if (OtherMI == KillMI && MOReg == SavedReg)
Evan Cheng7543e582008-06-18 07:49:14 +0000172 // Save the operand that kills the register. We want to unset the kill
173 // marker if we can sink MI past it.
Evan Cheng875357d2008-03-13 06:37:55 +0000174 KillMO = &MO;
175 else if (UseRegs.count(MOReg))
176 // One of the uses is killed before the destination.
177 return false;
178 }
179 }
180 }
181
Evan Cheng875357d2008-03-13 06:37:55 +0000182 // Update kill and LV information.
183 KillMO->setIsKill(false);
184 KillMO = MI->findRegisterUseOperand(SavedReg, false, TRI);
185 KillMO->setIsKill(true);
Owen Anderson802af112008-07-02 21:28:58 +0000186
187 if (LV) {
188 LiveVariables::VarInfo& VarInfo = LV->getVarInfo(SavedReg);
189 VarInfo.removeKill(KillMI);
190 VarInfo.Kills.push_back(MI);
191 }
Evan Cheng875357d2008-03-13 06:37:55 +0000192
193 // Move instruction to its destination.
194 MBB->remove(MI);
195 MBB->insert(KillPos, MI);
196
197 ++Num3AddrSunk;
198 return true;
199}
200
Evan Cheng7543e582008-06-18 07:49:14 +0000201/// isSafeToReMat - Return true if it's safe to rematerialize the specified
202/// instruction which defined the specified register instead of copying it.
203bool
204TwoAddressInstructionPass::isSafeToReMat(unsigned DstReg, MachineInstr *MI) {
205 const TargetInstrDesc &TID = MI->getDesc();
206 if (!TID.isAsCheapAsAMove())
207 return false;
208 bool SawStore = false;
209 if (!MI->isSafeToMove(TII, SawStore))
210 return false;
211 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
212 MachineOperand &MO = MI->getOperand(i);
213 if (!MO.isRegister())
214 continue;
215 // FIXME: For now, do not remat any instruction with register operands.
216 // Later on, we can loosen the restriction is the register operands have
217 // not been modified between the def and use. Note, this is different from
218 // MachineSink because the code in no longer in two-address form (at least
219 // partially).
220 if (MO.isUse())
221 return false;
222 else if (!MO.isDead() && MO.getReg() != DstReg)
223 return false;
224 }
225 return true;
226}
227
228/// isTwoAddrUse - Return true if the specified MI is using the specified
229/// register as a two-address operand.
230static bool isTwoAddrUse(MachineInstr *UseMI, unsigned Reg) {
231 const TargetInstrDesc &TID = UseMI->getDesc();
232 for (unsigned i = 0, e = TID.getNumOperands(); i != e; ++i) {
233 MachineOperand &MO = UseMI->getOperand(i);
Evan Cheng32a3ac72008-06-19 06:17:19 +0000234 if (MO.isRegister() && MO.getReg() == Reg &&
Evan Cheng7543e582008-06-18 07:49:14 +0000235 (MO.isDef() || TID.getOperandConstraint(i, TOI::TIED_TO) != -1))
236 // Earlier use is a two-address one.
237 return true;
238 }
239 return false;
240}
241
242/// isProfitableToReMat - Return true if the heuristics determines it is likely
243/// to be profitable to re-materialize the definition of Reg rather than copy
244/// the register.
245bool
246TwoAddressInstructionPass::isProfitableToReMat(unsigned Reg,
247 const TargetRegisterClass *RC,
Evan Cheng601ca4b2008-06-25 01:16:38 +0000248 MachineInstr *MI, MachineInstr *DefMI,
249 MachineBasicBlock *MBB, unsigned Loc,
250 DenseMap<MachineInstr*, unsigned> &DistanceMap){
Evan Cheng7543e582008-06-18 07:49:14 +0000251 bool OtherUse = false;
252 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(Reg),
253 UE = MRI->use_end(); UI != UE; ++UI) {
254 MachineOperand &UseMO = UI.getOperand();
255 if (!UseMO.isUse())
256 continue;
257 MachineInstr *UseMI = UseMO.getParent();
Evan Cheng601ca4b2008-06-25 01:16:38 +0000258 MachineBasicBlock *UseMBB = UseMI->getParent();
259 if (UseMBB == MBB) {
260 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(UseMI);
261 if (DI != DistanceMap.end() && DI->second == Loc)
262 continue; // Current use.
263 OtherUse = true;
264 // There is at least one other use in the MBB that will clobber the
265 // register.
266 if (isTwoAddrUse(UseMI, Reg))
267 return true;
268 }
Evan Cheng7543e582008-06-18 07:49:14 +0000269 }
Evan Cheng601ca4b2008-06-25 01:16:38 +0000270
271 // If other uses in MBB are not two-address uses, then don't remat.
272 if (OtherUse)
273 return false;
274
275 // No other uses in the same block, remat if it's defined in the same
276 // block so it does not unnecessarily extend the live range.
277 return MBB == DefMI->getParent();
Evan Cheng7543e582008-06-18 07:49:14 +0000278}
279
Bill Wendling637980e2008-05-10 00:12:52 +0000280/// runOnMachineFunction - Reduce two-address instructions to two operands.
Alkis Evlogimenos71499de2003-12-18 13:06:04 +0000281///
Chris Lattner163c1e72004-01-31 21:14:04 +0000282bool TwoAddressInstructionPass::runOnMachineFunction(MachineFunction &MF) {
Bill Wendlinga09362e2006-11-28 22:48:48 +0000283 DOUT << "Machine Function\n";
Misha Brukman75fa4e42004-07-22 15:26:23 +0000284 const TargetMachine &TM = MF.getTarget();
Evan Cheng875357d2008-03-13 06:37:55 +0000285 MRI = &MF.getRegInfo();
286 TII = TM.getInstrInfo();
287 TRI = TM.getRegisterInfo();
Owen Anderson802af112008-07-02 21:28:58 +0000288 LV = getAnalysisToUpdate<LiveVariables>();
Alkis Evlogimenos71499de2003-12-18 13:06:04 +0000289
Misha Brukman75fa4e42004-07-22 15:26:23 +0000290 bool MadeChange = false;
Alkis Evlogimenos71499de2003-12-18 13:06:04 +0000291
Bill Wendlinga09362e2006-11-28 22:48:48 +0000292 DOUT << "********** REWRITING TWO-ADDR INSTRS **********\n";
293 DOUT << "********** Function: " << MF.getFunction()->getName() << '\n';
Alkis Evlogimenos3a9986f2004-02-18 00:35:06 +0000294
Evan Cheng7543e582008-06-18 07:49:14 +0000295 // ReMatRegs - Keep track of the registers whose def's are remat'ed.
296 BitVector ReMatRegs;
297 ReMatRegs.resize(MRI->getLastVirtReg()+1);
298
299 // DistanceMap - Keep track the distance of a MI from the start of the
300 // current basic block.
301 DenseMap<MachineInstr*, unsigned> DistanceMap;
Bill Wendling48f7f232008-05-26 05:18:34 +0000302
Misha Brukman75fa4e42004-07-22 15:26:23 +0000303 for (MachineFunction::iterator mbbi = MF.begin(), mbbe = MF.end();
304 mbbi != mbbe; ++mbbi) {
Evan Cheng7543e582008-06-18 07:49:14 +0000305 unsigned Dist = 0;
306 DistanceMap.clear();
Misha Brukman75fa4e42004-07-22 15:26:23 +0000307 for (MachineBasicBlock::iterator mi = mbbi->begin(), me = mbbi->end();
Evan Cheng7a963fa2008-03-27 01:27:25 +0000308 mi != me; ) {
309 MachineBasicBlock::iterator nmi = next(mi);
Chris Lattner749c6f62008-01-07 07:27:27 +0000310 const TargetInstrDesc &TID = mi->getDesc();
Evan Cheng360c2dd2006-11-01 23:06:55 +0000311 bool FirstTied = true;
Bill Wendling637980e2008-05-10 00:12:52 +0000312
Evan Cheng7543e582008-06-18 07:49:14 +0000313 DistanceMap.insert(std::make_pair(mi, ++Dist));
Chris Lattner749c6f62008-01-07 07:27:27 +0000314 for (unsigned si = 1, e = TID.getNumOperands(); si < e; ++si) {
315 int ti = TID.getOperandConstraint(si, TOI::TIED_TO);
Evan Cheng360c2dd2006-11-01 23:06:55 +0000316 if (ti == -1)
317 continue;
Alkis Evlogimenos71499de2003-12-18 13:06:04 +0000318
Evan Cheng360c2dd2006-11-01 23:06:55 +0000319 if (FirstTied) {
320 ++NumTwoAddressInstrs;
Bill Wendlingbcd24982006-12-07 20:28:15 +0000321 DOUT << '\t'; DEBUG(mi->print(*cerr.stream(), &TM));
Evan Cheng360c2dd2006-11-01 23:06:55 +0000322 }
Bill Wendling637980e2008-05-10 00:12:52 +0000323
Evan Cheng360c2dd2006-11-01 23:06:55 +0000324 FirstTied = false;
Alkis Evlogimenos71499de2003-12-18 13:06:04 +0000325
Evan Cheng360c2dd2006-11-01 23:06:55 +0000326 assert(mi->getOperand(si).isRegister() && mi->getOperand(si).getReg() &&
327 mi->getOperand(si).isUse() && "two address instruction invalid");
Alkis Evlogimenos71499de2003-12-18 13:06:04 +0000328
Bill Wendling637980e2008-05-10 00:12:52 +0000329 // If the two operands are the same we just remove the use
Evan Cheng360c2dd2006-11-01 23:06:55 +0000330 // and mark the def as def&use, otherwise we have to insert a copy.
331 if (mi->getOperand(ti).getReg() != mi->getOperand(si).getReg()) {
Bill Wendling637980e2008-05-10 00:12:52 +0000332 // Rewrite:
Evan Cheng360c2dd2006-11-01 23:06:55 +0000333 // a = b op c
334 // to:
335 // a = b
336 // a = a op c
337 unsigned regA = mi->getOperand(ti).getReg();
338 unsigned regB = mi->getOperand(si).getReg();
339
Dan Gohman6f0d0242008-02-10 18:45:23 +0000340 assert(TargetRegisterInfo::isVirtualRegister(regA) &&
341 TargetRegisterInfo::isVirtualRegister(regB) &&
Evan Cheng360c2dd2006-11-01 23:06:55 +0000342 "cannot update physical register live information");
Chris Lattner6b507672004-01-31 21:21:43 +0000343
Chris Lattner1e313632004-07-21 23:17:57 +0000344#ifndef NDEBUG
Evan Cheng360c2dd2006-11-01 23:06:55 +0000345 // First, verify that we don't have a use of a in the instruction (a =
346 // b + a for example) because our transformation will not work. This
347 // should never occur because we are in SSA form.
348 for (unsigned i = 0; i != mi->getNumOperands(); ++i)
349 assert((int)i == ti ||
350 !mi->getOperand(i).isRegister() ||
351 mi->getOperand(i).getReg() != regA);
Chris Lattner1e313632004-07-21 23:17:57 +0000352#endif
Alkis Evlogimenos14be6402004-02-04 22:17:40 +0000353
Evan Cheng360c2dd2006-11-01 23:06:55 +0000354 // If this instruction is not the killing user of B, see if we can
355 // rearrange the code to make it so. Making it the killing user will
356 // allow us to coalesce A and B together, eliminating the copy we are
357 // about to insert.
Evan Cheng6130f662008-03-05 00:59:57 +0000358 if (!mi->killsRegister(regB)) {
Evan Cheng360c2dd2006-11-01 23:06:55 +0000359 // If this instruction is commutative, check to see if C dies. If
360 // so, swap the B and C operands. This makes the live ranges of A
361 // and C joinable.
362 // FIXME: This code also works for A := B op C instructions.
Chris Lattner749c6f62008-01-07 07:27:27 +0000363 if (TID.isCommutable() && mi->getNumOperands() >= 3) {
Evan Cheng360c2dd2006-11-01 23:06:55 +0000364 assert(mi->getOperand(3-si).isRegister() &&
365 "Not a proper commutative instruction!");
366 unsigned regC = mi->getOperand(3-si).getReg();
Bill Wendling637980e2008-05-10 00:12:52 +0000367
Evan Cheng6130f662008-03-05 00:59:57 +0000368 if (mi->killsRegister(regC)) {
Bill Wendlinga09362e2006-11-28 22:48:48 +0000369 DOUT << "2addr: COMMUTING : " << *mi;
Evan Cheng875357d2008-03-13 06:37:55 +0000370 MachineInstr *NewMI = TII->commuteInstruction(mi);
Bill Wendling637980e2008-05-10 00:12:52 +0000371
Evan Cheng360c2dd2006-11-01 23:06:55 +0000372 if (NewMI == 0) {
Bill Wendlinga09362e2006-11-28 22:48:48 +0000373 DOUT << "2addr: COMMUTING FAILED!\n";
Evan Cheng360c2dd2006-11-01 23:06:55 +0000374 } else {
Bill Wendlinga09362e2006-11-28 22:48:48 +0000375 DOUT << "2addr: COMMUTED TO: " << *NewMI;
Evan Cheng360c2dd2006-11-01 23:06:55 +0000376 // If the instruction changed to commute it, update livevar.
377 if (NewMI != mi) {
Owen Anderson802af112008-07-02 21:28:58 +0000378 if (LV) {
379 // Update live variables
380 LV->instructionChanged(mi, NewMI);
Owen Anderson802af112008-07-02 21:28:58 +0000381 }
382
Evan Cheng360c2dd2006-11-01 23:06:55 +0000383 mbbi->insert(mi, NewMI); // Insert the new inst
384 mbbi->erase(mi); // Nuke the old inst.
385 mi = NewMI;
Evan Cheng7543e582008-06-18 07:49:14 +0000386 DistanceMap.insert(std::make_pair(NewMI, Dist));
Evan Cheng360c2dd2006-11-01 23:06:55 +0000387 }
388
389 ++NumCommuted;
390 regB = regC;
391 goto InstructionRearranged;
Misha Brukmanedf128a2005-04-21 22:36:52 +0000392 }
Chris Lattnerc71d6942005-01-19 07:08:42 +0000393 }
Chris Lattnercfa0f2e2005-01-02 02:34:12 +0000394 }
Evan Cheng360c2dd2006-11-01 23:06:55 +0000395
396 // If this instruction is potentially convertible to a true
397 // three-address instruction,
Chris Lattner749c6f62008-01-07 07:27:27 +0000398 if (TID.isConvertibleTo3Addr()) {
Evan Cheng360c2dd2006-11-01 23:06:55 +0000399 // FIXME: This assumes there are no more operands which are tied
400 // to another register.
401#ifndef NDEBUG
Bill Wendling637980e2008-05-10 00:12:52 +0000402 for (unsigned i = si + 1, e = TID.getNumOperands(); i < e; ++i)
Chris Lattner749c6f62008-01-07 07:27:27 +0000403 assert(TID.getOperandConstraint(i, TOI::TIED_TO) == -1);
Evan Cheng360c2dd2006-11-01 23:06:55 +0000404#endif
405
Owen Andersonf660c172008-07-02 23:41:07 +0000406 MachineInstr *NewMI = TII->convertToThreeAddress(mbbi, mi, LV);
Evan Cheng7543e582008-06-18 07:49:14 +0000407 if (NewMI) {
Bill Wendlinga09362e2006-11-28 22:48:48 +0000408 DOUT << "2addr: CONVERTING 2-ADDR: " << *mi;
Evan Cheng7543e582008-06-18 07:49:14 +0000409 DOUT << "2addr: TO 3-ADDR: " << *NewMI;
Evan Cheng0099ae22008-03-13 07:56:58 +0000410 bool Sunk = false;
Bill Wendling637980e2008-05-10 00:12:52 +0000411
Evan Cheng7543e582008-06-18 07:49:14 +0000412 if (NewMI->findRegisterUseOperand(regB, false, TRI))
Evan Cheng0099ae22008-03-13 07:56:58 +0000413 // FIXME: Temporary workaround. If the new instruction doesn't
414 // uses regB, convertToThreeAddress must have created more
415 // then one instruction.
Evan Cheng7543e582008-06-18 07:49:14 +0000416 Sunk = Sink3AddrInstruction(mbbi, NewMI, regB, mi);
Bill Wendling637980e2008-05-10 00:12:52 +0000417
418 mbbi->erase(mi); // Nuke the old inst.
419
Evan Cheng7a963fa2008-03-27 01:27:25 +0000420 if (!Sunk) {
Evan Cheng7543e582008-06-18 07:49:14 +0000421 DistanceMap.insert(std::make_pair(NewMI, Dist));
422 mi = NewMI;
Evan Cheng7a963fa2008-03-27 01:27:25 +0000423 nmi = next(mi);
424 }
Bill Wendling637980e2008-05-10 00:12:52 +0000425
Evan Cheng360c2dd2006-11-01 23:06:55 +0000426 ++NumConvertedTo3Addr;
Bill Wendling637980e2008-05-10 00:12:52 +0000427 break; // Done with this instruction.
Evan Cheng360c2dd2006-11-01 23:06:55 +0000428 }
Evan Chengb9d5e7c2007-10-20 04:01:47 +0000429 }
Chris Lattnercfa0f2e2005-01-02 02:34:12 +0000430 }
Evan Cheng360c2dd2006-11-01 23:06:55 +0000431
432 InstructionRearranged:
Evan Cheng7543e582008-06-18 07:49:14 +0000433 const TargetRegisterClass* rc = MRI->getRegClass(regA);
434 MachineInstr *DefMI = MRI->getVRegDef(regB);
435 // If it's safe and profitable, remat the definition instead of
436 // copying it.
Evan Cheng601ca4b2008-06-25 01:16:38 +0000437 if (DefMI &&
Evan Cheng7543e582008-06-18 07:49:14 +0000438 isSafeToReMat(regB, DefMI) &&
Evan Cheng601ca4b2008-06-25 01:16:38 +0000439 isProfitableToReMat(regB, rc, mi, DefMI, mbbi, Dist,DistanceMap)){
Evan Cheng7543e582008-06-18 07:49:14 +0000440 DEBUG(cerr << "2addr: REMATTING : " << *DefMI << "\n");
441 TII->reMaterialize(*mbbi, mi, regA, DefMI);
442 ReMatRegs.set(regB);
443 ++NumReMats;
Bill Wendling48f7f232008-05-26 05:18:34 +0000444 } else {
445 TII->copyRegToReg(*mbbi, mi, regA, regB, rc, rc);
446 }
Evan Cheng360c2dd2006-11-01 23:06:55 +0000447
448 MachineBasicBlock::iterator prevMi = prior(mi);
Bill Wendlingbcd24982006-12-07 20:28:15 +0000449 DOUT << "\t\tprepend:\t"; DEBUG(prevMi->print(*cerr.stream(), &TM));
Evan Cheng360c2dd2006-11-01 23:06:55 +0000450
Bill Wendling637980e2008-05-10 00:12:52 +0000451 // Update live variables for regB.
Owen Anderson802af112008-07-02 21:28:58 +0000452 if (LV) {
453 LiveVariables::VarInfo& varInfoB = LV->getVarInfo(regB);
Bill Wendling637980e2008-05-10 00:12:52 +0000454
Owen Anderson802af112008-07-02 21:28:58 +0000455 // regB is used in this BB.
456 varInfoB.UsedBlocks[mbbi->getNumber()] = true;
Bill Wendling637980e2008-05-10 00:12:52 +0000457
Owen Anderson802af112008-07-02 21:28:58 +0000458 if (LV->removeVirtualRegisterKilled(regB, mbbi, mi))
459 LV->addVirtualRegisterKilled(regB, prevMi);
Evan Cheng360c2dd2006-11-01 23:06:55 +0000460
Owen Anderson802af112008-07-02 21:28:58 +0000461 if (LV->removeVirtualRegisterDead(regB, mbbi, mi))
462 LV->addVirtualRegisterDead(regB, prevMi);
Owen Anderson802af112008-07-02 21:28:58 +0000463 }
464
Bill Wendling637980e2008-05-10 00:12:52 +0000465 // Replace all occurences of regB with regA.
Evan Cheng360c2dd2006-11-01 23:06:55 +0000466 for (unsigned i = 0, e = mi->getNumOperands(); i != e; ++i) {
467 if (mi->getOperand(i).isRegister() &&
468 mi->getOperand(i).getReg() == regB)
469 mi->getOperand(i).setReg(regA);
470 }
Chris Lattnercfa0f2e2005-01-02 02:34:12 +0000471 }
Alkis Evlogimenos14be6402004-02-04 22:17:40 +0000472
Evan Cheng360c2dd2006-11-01 23:06:55 +0000473 assert(mi->getOperand(ti).isDef() && mi->getOperand(si).isUse());
474 mi->getOperand(ti).setReg(mi->getOperand(si).getReg());
475 MadeChange = true;
Alkis Evlogimenos14be6402004-02-04 22:17:40 +0000476
Bill Wendlingbcd24982006-12-07 20:28:15 +0000477 DOUT << "\t\trewrite to:\t"; DEBUG(mi->print(*cerr.stream(), &TM));
Misha Brukman75fa4e42004-07-22 15:26:23 +0000478 }
Bill Wendling637980e2008-05-10 00:12:52 +0000479
Evan Cheng7a963fa2008-03-27 01:27:25 +0000480 mi = nmi;
Misha Brukman75fa4e42004-07-22 15:26:23 +0000481 }
482 }
483
Evan Cheng601ca4b2008-06-25 01:16:38 +0000484 // Some remat'ed instructions are dead.
485 int VReg = ReMatRegs.find_first();
486 while (VReg != -1) {
487 if (MRI->use_empty(VReg)) {
488 MachineInstr *DefMI = MRI->getVRegDef(VReg);
489 DefMI->eraseFromParent();
Bill Wendlinga16157a2008-05-26 05:49:49 +0000490 }
Evan Cheng601ca4b2008-06-25 01:16:38 +0000491 VReg = ReMatRegs.find_next(VReg);
Bill Wendling48f7f232008-05-26 05:18:34 +0000492 }
493
Misha Brukman75fa4e42004-07-22 15:26:23 +0000494 return MadeChange;
Alkis Evlogimenos71499de2003-12-18 13:06:04 +0000495}