1 //===-- TwoAddressInstructionPass.cpp - Two-Address instruction pass ------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements the TwoAddress instruction pass which is used
11 // by most register allocators. Two-Address instructions are rewritten
21 // 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
25 // It is also worth noting that the duplicate operand of the two
26 // address instruction is removed.
28 //===----------------------------------------------------------------------===//
30 #define DEBUG_TYPE "twoaddrinstr"
31 #include "llvm/CodeGen/Passes.h"
32 #include "llvm/Function.h"
33 #include "llvm/CodeGen/LiveVariables.h"
34 #include "llvm/CodeGen/MachineFunctionPass.h"
35 #include "llvm/CodeGen/MachineInstr.h"
36 #include "llvm/CodeGen/MachineRegisterInfo.h"
37 #include "llvm/Target/TargetRegisterInfo.h"
38 #include "llvm/Target/TargetInstrInfo.h"
39 #include "llvm/Target/TargetMachine.h"
40 #include "llvm/Target/TargetOptions.h"
41 #include "llvm/Support/Compiler.h"
42 #include "llvm/Support/Debug.h"
43 #include "llvm/ADT/BitVector.h"
44 #include "llvm/ADT/DenseMap.h"
45 #include "llvm/ADT/SmallSet.h"
46 #include "llvm/ADT/Statistic.h"
47 #include "llvm/ADT/STLExtras.h"
50 STATISTIC(NumTwoAddressInstrs, "Number of two-address instructions");
51 STATISTIC(NumCommuted , "Number of instructions commuted to coalesce");
52 STATISTIC(NumAggrCommuted , "Number of instructions aggressively commuted");
53 STATISTIC(NumConvertedTo3Addr, "Number of instructions promoted to 3-address");
54 STATISTIC(Num3AddrSunk, "Number of 3-address instructions sunk");
55 STATISTIC(NumReMats, "Number of instructions re-materialized");
56 STATISTIC(NumDeletes, "Number of dead instructions deleted");
59 class VISIBILITY_HIDDEN TwoAddressInstructionPass
60 : public MachineFunctionPass {
61 const TargetInstrInfo *TII;
62 const TargetRegisterInfo *TRI;
63 MachineRegisterInfo *MRI;
66 // DistanceMap - Keep track the distance of a MI from the start of the
67 // current basic block.
68 DenseMap<MachineInstr*, unsigned> DistanceMap;
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;
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;
80 bool Sink3AddrInstruction(MachineBasicBlock *MBB, MachineInstr *MI,
82 MachineBasicBlock::iterator OldPos);
84 bool isProfitableToReMat(unsigned Reg, const TargetRegisterClass *RC,
85 MachineInstr *MI, MachineInstr *DefMI,
86 MachineBasicBlock *MBB, unsigned Loc);
88 bool NoUseAfterLastDef(unsigned Reg, MachineBasicBlock *MBB, unsigned Dist,
91 MachineInstr *FindLastUseInMBB(unsigned Reg, MachineBasicBlock *MBB,
94 bool isProfitableToCommute(unsigned regB, unsigned regC,
95 MachineInstr *MI, MachineBasicBlock *MBB,
98 bool CommuteInstruction(MachineBasicBlock::iterator &mi,
99 MachineFunction::iterator &mbbi,
100 unsigned RegB, unsigned RegC, unsigned Dist);
102 bool isProfitableToConv3Addr(unsigned RegA);
104 bool ConvertInstTo3Addr(MachineBasicBlock::iterator &mi,
105 MachineBasicBlock::iterator &nmi,
106 MachineFunction::iterator &mbbi,
107 unsigned RegB, unsigned Dist);
109 void ProcessCopy(MachineInstr *MI, MachineBasicBlock *MBB,
110 SmallPtrSet<MachineInstr*, 8> &Processed);
112 static char ID; // Pass identification, replacement for typeid
113 TwoAddressInstructionPass() : MachineFunctionPass(&ID) {}
115 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
116 AU.addPreserved<LiveVariables>();
117 AU.addPreservedID(MachineLoopInfoID);
118 AU.addPreservedID(MachineDominatorsID);
120 AU.addPreservedID(StrongPHIEliminationID);
122 AU.addPreservedID(PHIEliminationID);
123 MachineFunctionPass::getAnalysisUsage(AU);
126 /// runOnMachineFunction - Pass entry point.
127 bool runOnMachineFunction(MachineFunction&);
131 char TwoAddressInstructionPass::ID = 0;
132 static RegisterPass<TwoAddressInstructionPass>
133 X("twoaddressinstruction", "Two-Address instruction pass");
135 const PassInfo *const llvm::TwoAddressInstructionPassID = &X;
137 /// Sink3AddrInstruction - A two-address instruction has been converted to a
138 /// three-address instruction to avoid clobbering a register. Try to sink it
139 /// past the instruction that would kill the above mentioned register to reduce
140 /// register pressure.
141 bool 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))
150 SmallSet<unsigned, 4> UseRegs;
152 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
153 const MachineOperand &MO = MI->getOperand(i);
156 unsigned MOReg = MO.getReg();
159 if (MO.isUse() && MOReg != SavedReg)
160 UseRegs.insert(MO.getReg());
164 // Don't try to move it if it implicitly defines a register.
167 // For now, don't move any instructions that define multiple registers.
169 DefReg = MO.getReg();
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();
179 KillMI = UseMO.getParent();
183 if (!KillMI || KillMI->getParent() != MBB || KillMI == MI)
186 // 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.
189 // FIXME: This can be sped up if there is an easy way to query whether an
190 // instruction is before or after another instruction. Then we can use
191 // MachineRegisterInfo def / use instead.
192 MachineOperand *KillMO = NULL;
193 MachineBasicBlock::iterator KillPos = KillMI;
196 unsigned NumVisited = 0;
197 for (MachineBasicBlock::iterator I = next(OldPos); I != KillPos; ++I) {
198 MachineInstr *OtherMI = I;
199 if (NumVisited > 30) // FIXME: Arbitrary limit to reduce compile time cost.
202 for (unsigned i = 0, e = OtherMI->getNumOperands(); i != e; ++i) {
203 MachineOperand &MO = OtherMI->getOperand(i);
206 unsigned MOReg = MO.getReg();
213 if (OtherMI == KillMI && MOReg == SavedReg)
214 // Save the operand that kills the register. We want to unset the kill
215 // marker if we can sink MI past it.
217 else if (UseRegs.count(MOReg))
218 // One of the uses is killed before the destination.
224 // Update kill and LV information.
225 KillMO->setIsKill(false);
226 KillMO = MI->findRegisterUseOperand(SavedReg, false, TRI);
227 KillMO->setIsKill(true);
230 LV->replaceKillInstruction(SavedReg, KillMI, MI);
232 // Move instruction to its destination.
234 MBB->insert(KillPos, MI);
240 /// isTwoAddrUse - Return true if the specified MI is using the specified
241 /// register as a two-address operand.
242 static 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);
246 if (MO.isReg() && MO.getReg() == Reg &&
247 (MO.isDef() || UseMI->isRegTiedToDefOperand(i)))
248 // Earlier use is a two-address one.
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
258 TwoAddressInstructionPass::isProfitableToReMat(unsigned Reg,
259 const TargetRegisterClass *RC,
260 MachineInstr *MI, MachineInstr *DefMI,
261 MachineBasicBlock *MBB, unsigned Loc) {
262 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();
266 MachineInstr *UseMI = UseMO.getParent();
267 MachineBasicBlock *UseMBB = UseMI->getParent();
269 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(UseMI);
270 if (DI != DistanceMap.end() && DI->second == Loc)
271 continue; // Current use.
273 // There is at least one other use in the MBB that will clobber the
275 if (isTwoAddrUse(UseMI, Reg))
280 // If other uses in MBB are not two-address uses, then don't remat.
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();
289 /// 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
293 bool TwoAddressInstructionPass::NoUseAfterLastDef(unsigned Reg,
294 MachineBasicBlock *MBB, unsigned Dist,
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)
304 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(MI);
305 if (DI == DistanceMap.end())
307 if (MO.isUse() && DI->second < LastUse)
308 LastUse = DI->second;
309 if (MO.isDef() && DI->second > LastDef)
310 LastDef = DI->second;
313 return !(LastUse > LastDef && LastUse < Dist);
316 MachineInstr *TwoAddressInstructionPass::FindLastUseInMBB(unsigned Reg,
317 MachineBasicBlock *MBB,
319 unsigned LastUseDist = 0;
320 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)
327 DenseMap<MachineInstr*, unsigned>::iterator DI = DistanceMap.find(MI);
328 if (DI == DistanceMap.end())
330 if (DI->second >= Dist)
333 if (MO.isUse() && DI->second > LastUseDist) {
335 LastUseDist = DI->second;
341 /// 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.
344 static bool isCopyToReg(MachineInstr &MI, const TargetInstrInfo *TII,
345 unsigned &SrcReg, unsigned &DstReg,
346 bool &IsSrcPhys, bool &IsDstPhys) {
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();
357 } else if (MI.getOpcode() == TargetInstrInfo::SUBREG_TO_REG) {
358 DstReg = MI.getOperand(0).getReg();
359 SrcReg = MI.getOperand(2).getReg();
364 IsSrcPhys = TargetRegisterInfo::isPhysicalRegister(SrcReg);
365 IsDstPhys = TargetRegisterInfo::isPhysicalRegister(DstReg);
371 /// 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.
375 /// For example, in this code:
377 /// %reg1034 = copy %reg1024
378 /// %reg1035 = copy %reg1025<kill>
379 /// %reg1036 = add %reg1034<kill>, %reg1035<kill>
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.
386 static bool isKilled(MachineInstr &MI, unsigned Reg,
387 const MachineRegisterInfo *MRI,
388 const TargetInstrInfo *TII) {
389 MachineInstr *DefMI = &MI;
391 if (!DefMI->killsRegister(Reg))
393 if (TargetRegisterInfo::isPhysicalRegister(Reg))
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())
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))
411 /// 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.
413 static bool isTwoAddrUse(MachineInstr &MI, unsigned Reg, unsigned &DstReg) {
414 const TargetInstrDesc &TID = MI.getDesc();
415 unsigned NumOps = (MI.getOpcode() == TargetInstrInfo::INLINEASM)
416 ? MI.getNumOperands() : TID.getNumOperands();
417 for (unsigned i = 0; i != NumOps; ++i) {
418 const MachineOperand &MO = MI.getOperand(i);
419 if (!MO.isReg() || !MO.isUse() || MO.getReg() != Reg)
422 if (MI.isRegTiedToDefOperand(i, &ti)) {
423 DstReg = MI.getOperand(ti).getReg();
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.
433 MachineInstr *findOnlyInterestingUse(unsigned Reg, MachineBasicBlock *MBB,
434 MachineRegisterInfo *MRI,
435 const TargetInstrInfo *TII,
437 unsigned &DstReg, bool &IsDstPhys) {
438 MachineRegisterInfo::use_iterator UI = MRI->use_begin(Reg);
439 if (UI == MRI->use_end())
441 MachineInstr &UseMI = *UI;
442 if (++UI != MRI->use_end())
443 // More than one use.
445 if (UseMI.getParent() != MBB)
449 if (isCopyToReg(UseMI, TII, SrcReg, DstReg, IsSrcPhys, IsDstPhys)) {
454 if (isTwoAddrUse(UseMI, Reg, DstReg)) {
455 IsDstPhys = TargetRegisterInfo::isPhysicalRegister(DstReg);
461 /// getMappedReg - Return the physical register the specified virtual register
462 /// might be mapped to.
464 getMappedReg(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())
471 if (TargetRegisterInfo::isPhysicalRegister(Reg))
476 /// regsAreCompatible - Return true if the two registers are equal or aliased.
479 regsAreCompatible(unsigned RegA, unsigned RegB, const TargetRegisterInfo *TRI) {
484 return TRI->regsOverlap(RegA, RegB);
488 /// isProfitableToReMat - Return true if it's potentially profitable to commute
489 /// the two-address instruction that's being processed.
491 TwoAddressInstructionPass::isProfitableToCommute(unsigned regB, unsigned regC,
492 MachineInstr *MI, MachineBasicBlock *MBB,
494 // 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.
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
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>
512 if (!MI->killsRegister(regC))
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.
519 // Look for situations like this:
520 // %reg1024<def> = MOV r1
521 // %reg1025<def> = MOV r0
522 // %reg1026<def> = ADD %reg1024, %reg1025
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)))
534 // If there is a use of regC between its last def (could be livein) and this
535 // instruction, then bail.
536 unsigned LastDefC = 0;
537 if (!NoUseAfterLastDef(regC, MBB, Dist, LastDefC))
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;
543 if (!NoUseAfterLastDef(regB, MBB, Dist, LastDefB))
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;
551 /// CommuteInstruction - Commute a two-address instruction and update the basic
552 /// block, distance map, and live variables if needed. Return true if it is
555 TwoAddressInstructionPass::CommuteInstruction(MachineBasicBlock::iterator &mi,
556 MachineFunction::iterator &mbbi,
557 unsigned RegB, unsigned RegC, unsigned Dist) {
558 MachineInstr *MI = mi;
559 DOUT << "2addr: COMMUTING : " << *MI;
560 MachineInstr *NewMI = TII->commuteInstruction(MI);
563 DOUT << "2addr: COMMUTING FAILED!\n";
567 DOUT << "2addr: COMMUTED TO: " << *NewMI;
568 // If the instruction changed to commute it, update livevar.
571 // Update live variables
572 LV->replaceKillInstruction(RegC, MI, NewMI);
574 mbbi->insert(mi, NewMI); // Insert the new inst
575 mbbi->erase(mi); // Nuke the old inst.
577 DistanceMap.insert(std::make_pair(NewMI, Dist));
580 // Update source register map.
581 unsigned FromRegC = getMappedReg(RegC, SrcRegMap);
583 unsigned RegA = MI->getOperand(0).getReg();
584 SrcRegMap[RegA] = FromRegC;
590 /// isProfitableToConv3Addr - Return true if it is profitable to convert the
591 /// given 2-address instruction to a 3-address one.
593 TwoAddressInstructionPass::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
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));
605 /// ConvertInstTo3Addr - Convert the specified two-address instruction into a
606 /// three address one. Return true if this transformation was successful.
608 TwoAddressInstructionPass::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);
614 DOUT << "2addr: CONVERTING 2-ADDR: " << *mi;
615 DOUT << "2addr: TO 3-ADDR: " << *NewMI;
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);
624 mbbi->erase(mi); // Nuke the old inst.
627 DistanceMap.insert(std::make_pair(NewMI, Dist));
637 /// 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.
643 /// v1026 = add v1024, v1025
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.
649 void TwoAddressInstructionPass::ProcessCopy(MachineInstr *MI,
650 MachineBasicBlock *MBB,
651 SmallPtrSet<MachineInstr*, 8> &Processed) {
652 if (Processed.count(MI))
655 bool IsSrcPhys, IsDstPhys;
656 unsigned SrcReg, DstReg;
657 if (!isCopyToReg(*MI, TII, SrcReg, DstReg, IsSrcPhys, IsDstPhys))
660 if (IsDstPhys && !IsSrcPhys)
661 DstRegMap.insert(std::make_pair(SrcReg, DstReg));
662 else if (!IsDstPhys && IsSrcPhys) {
663 bool isNew = SrcRegMap.insert(std::make_pair(DstReg, SrcReg)).second;
665 assert(SrcRegMap[DstReg] == SrcReg &&
666 "Can't map to two src physical registers!");
668 SmallVector<unsigned, 4> VirtRegPairs;
671 while (MachineInstr *UseMI = findOnlyInterestingUse(DstReg, MBB, MRI,TII,
672 IsCopy, NewReg, IsDstPhys)) {
674 if (!Processed.insert(UseMI))
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.
684 VirtRegPairs.push_back(NewReg);
687 bool isNew = SrcRegMap.insert(std::make_pair(NewReg, DstReg)).second;
689 assert(SrcRegMap[NewReg] == DstReg &&
690 "Can't map to two src physical registers!");
691 VirtRegPairs.push_back(NewReg);
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;
703 assert(DstRegMap[FromReg] == ToReg &&
704 "Can't map to two dst physical registers!");
710 Processed.insert(MI);
713 /// 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.
715 static bool isSafeToDelete(MachineInstr *MI, unsigned Reg,
716 const TargetInstrInfo *TII,
717 SmallVector<unsigned, 4> &Kills) {
718 const TargetInstrDesc &TID = MI->getDesc();
719 if (TID.mayStore() || TID.isCall())
721 if (TID.isTerminator() || TID.hasUnmodeledSideEffects())
724 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
725 MachineOperand &MO = MI->getOperand(i);
728 if (MO.isDef() && !MO.isDead())
730 if (MO.isUse() && MO.getReg() != Reg && MO.isKill())
731 Kills.push_back(MO.getReg());
737 /// runOnMachineFunction - Reduce two-address instructions to two operands.
739 bool TwoAddressInstructionPass::runOnMachineFunction(MachineFunction &MF) {
740 DOUT << "Machine Function\n";
741 const TargetMachine &TM = MF.getTarget();
742 MRI = &MF.getRegInfo();
743 TII = TM.getInstrInfo();
744 TRI = TM.getRegisterInfo();
745 LV = getAnalysisIfAvailable<LiveVariables>();
747 bool MadeChange = false;
749 DOUT << "********** REWRITING TWO-ADDR INSTRS **********\n";
750 DOUT << "********** Function: " << MF.getFunction()->getName() << '\n';
752 // ReMatRegs - Keep track of the registers whose def's are remat'ed.
754 ReMatRegs.resize(MRI->getLastVirtReg()+1);
756 SmallPtrSet<MachineInstr*, 8> Processed;
757 for (MachineFunction::iterator mbbi = MF.begin(), mbbe = MF.end();
758 mbbi != mbbe; ++mbbi) {
764 for (MachineBasicBlock::iterator mi = mbbi->begin(), me = mbbi->end();
766 MachineBasicBlock::iterator nmi = next(mi);
767 const TargetInstrDesc &TID = mi->getDesc();
768 bool FirstTied = true;
770 DistanceMap.insert(std::make_pair(mi, ++Dist));
772 ProcessCopy(&*mi, &*mbbi, Processed);
774 unsigned NumOps = (mi->getOpcode() == TargetInstrInfo::INLINEASM)
775 ? mi->getNumOperands() : TID.getNumOperands();
776 for (unsigned si = 0; si < NumOps; ++si) {
778 if (!mi->isRegTiedToDefOperand(si, &ti))
782 ++NumTwoAddressInstrs;
783 DOUT << '\t'; DEBUG(mi->print(*cerr.stream(), &TM));
788 assert(mi->getOperand(si).isReg() && mi->getOperand(si).getReg() &&
789 mi->getOperand(si).isUse() && "two address instruction invalid");
791 // If the two operands are the same we just remove the use
792 // and mark the def as def&use, otherwise we have to insert a copy.
793 if (mi->getOperand(ti).getReg() != mi->getOperand(si).getReg()) {
799 unsigned regA = mi->getOperand(ti).getReg();
800 unsigned regB = mi->getOperand(si).getReg();
802 assert(TargetRegisterInfo::isVirtualRegister(regB) &&
803 "cannot update physical register live information");
806 // First, verify that we don't have a use of a in the instruction (a =
807 // b + a for example) because our transformation will not work. This
808 // should never occur because we are in SSA form.
809 for (unsigned i = 0; i != mi->getNumOperands(); ++i)
811 !mi->getOperand(i).isReg() ||
812 mi->getOperand(i).getReg() != regA);
815 // If this instruction is not the killing user of B, see if we can
816 // rearrange the code to make it so. Making it the killing user will
817 // allow us to coalesce A and B together, eliminating the copy we are
819 if (!isKilled(*mi, regB, MRI, TII)) {
820 // If regA is dead and the instruction can be deleted, just delete
821 // it so it doesn't clobber regB.
822 SmallVector<unsigned, 4> Kills;
823 if (mi->getOperand(ti).isDead() &&
824 isSafeToDelete(mi, regB, TII, Kills)) {
825 SmallVector<std::pair<std::pair<unsigned, bool>
826 ,MachineInstr*>, 4> NewKills;
827 bool ReallySafe = true;
828 // If this instruction kills some virtual registers, we need
829 // update the kill information. If it's not possible to do so,
831 while (!Kills.empty()) {
832 unsigned Kill = Kills.back();
834 if (TargetRegisterInfo::isPhysicalRegister(Kill)) {
838 MachineInstr *LastKill = FindLastUseInMBB(Kill, &*mbbi, Dist);
840 bool isModRef = LastKill->modifiesRegister(Kill);
841 NewKills.push_back(std::make_pair(std::make_pair(Kill,isModRef),
851 while (!NewKills.empty()) {
852 MachineInstr *NewKill = NewKills.back().second;
853 unsigned Kill = NewKills.back().first.first;
854 bool isDead = NewKills.back().first.second;
856 if (LV->removeVirtualRegisterKilled(Kill, mi)) {
858 LV->addVirtualRegisterDead(Kill, NewKill);
860 LV->addVirtualRegisterKilled(Kill, NewKill);
865 // We're really going to nuke the old inst. If regB was marked
866 // as a kill we need to update its Kills list.
867 if (mi->getOperand(si).isKill())
868 LV->removeVirtualRegisterKilled(regB, mi);
870 mbbi->erase(mi); // Nuke the old inst.
873 break; // Done with this instruction.
877 // If this instruction is commutative, check to see if C dies. If
878 // so, swap the B and C operands. This makes the live ranges of A
880 // FIXME: This code also works for A := B op C instructions.
881 if (TID.isCommutable() && mi->getNumOperands() >= 3) {
882 assert(mi->getOperand(3-si).isReg() &&
883 "Not a proper commutative instruction!");
884 unsigned regC = mi->getOperand(3-si).getReg();
885 if (isKilled(*mi, regC, MRI, TII)) {
886 if (CommuteInstruction(mi, mbbi, regB, regC, Dist)) {
889 goto InstructionRearranged;
894 // If this instruction is potentially convertible to a true
895 // three-address instruction,
896 if (TID.isConvertibleTo3Addr()) {
897 // FIXME: This assumes there are no more operands which are tied
898 // to another register.
900 for (unsigned i = si + 1, e = TID.getNumOperands(); i < e; ++i)
901 assert(TID.getOperandConstraint(i, TOI::TIED_TO) == -1);
904 if (ConvertInstTo3Addr(mi, nmi, mbbi, regB, Dist)) {
905 ++NumConvertedTo3Addr;
906 break; // Done with this instruction.
911 // If it's profitable to commute the instruction, do so.
912 if (TID.isCommutable() && mi->getNumOperands() >= 3) {
913 unsigned regC = mi->getOperand(3-si).getReg();
914 if (isProfitableToCommute(regB, regC, mi, mbbi, Dist))
915 if (CommuteInstruction(mi, mbbi, regB, regC, Dist)) {
919 goto InstructionRearranged;
923 // If it's profitable to convert the 2-address instruction to a
924 // 3-address one, do so.
925 if (TID.isConvertibleTo3Addr() && isProfitableToConv3Addr(regA)) {
926 if (ConvertInstTo3Addr(mi, nmi, mbbi, regB, Dist)) {
927 ++NumConvertedTo3Addr;
928 break; // Done with this instruction.
932 InstructionRearranged:
933 const TargetRegisterClass* rc = MRI->getRegClass(regB);
934 MachineInstr *DefMI = MRI->getVRegDef(regB);
935 // If it's safe and profitable, remat the definition instead of
938 DefMI->getDesc().isAsCheapAsAMove() &&
939 DefMI->isSafeToReMat(TII, regB) &&
940 isProfitableToReMat(regB, rc, mi, DefMI, mbbi, Dist)){
941 DEBUG(cerr << "2addr: REMATTING : " << *DefMI << "\n");
942 TII->reMaterialize(*mbbi, mi, regA, DefMI);
946 bool Emitted = TII->copyRegToReg(*mbbi, mi, regA, regB, rc, rc);
948 assert(Emitted && "Unable to issue a copy instruction!\n");
951 MachineBasicBlock::iterator prevMI = prior(mi);
952 // Update DistanceMap.
953 DistanceMap.insert(std::make_pair(prevMI, Dist));
954 DistanceMap[mi] = ++Dist;
956 // Update live variables for regB.
958 if (LV->removeVirtualRegisterKilled(regB, mi))
959 LV->addVirtualRegisterKilled(regB, prevMI);
961 if (LV->removeVirtualRegisterDead(regB, mi))
962 LV->addVirtualRegisterDead(regB, prevMI);
965 DOUT << "\t\tprepend:\t"; DEBUG(prevMI->print(*cerr.stream(), &TM));
967 // Replace all occurences of regB with regA.
968 for (unsigned i = 0, e = mi->getNumOperands(); i != e; ++i) {
969 if (mi->getOperand(i).isReg() &&
970 mi->getOperand(i).getReg() == regB)
971 mi->getOperand(i).setReg(regA);
975 assert(mi->getOperand(ti).isDef() && mi->getOperand(si).isUse());
976 mi->getOperand(ti).setReg(mi->getOperand(si).getReg());
979 DOUT << "\t\trewrite to:\t"; DEBUG(mi->print(*cerr.stream(), &TM));
986 // Some remat'ed instructions are dead.
987 int VReg = ReMatRegs.find_first();
989 if (MRI->use_empty(VReg)) {
990 MachineInstr *DefMI = MRI->getVRegDef(VReg);
991 DefMI->eraseFromParent();
993 VReg = ReMatRegs.find_next(VReg);