Reintroduce VirtRegRewriter.
[oota-llvm.git] / lib / CodeGen / VirtRegMap.cpp
1 //===-- llvm/CodeGen/VirtRegMap.cpp - Virtual Register Map ----------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the VirtRegMap class.
11 //
12 // It also contains implementations of the Spiller interface, which, given a
13 // virtual register map and a machine function, eliminates all virtual
14 // references by replacing them with physical register references - adding spill
15 // code as necessary.
16 //
17 //===----------------------------------------------------------------------===//
18
19 #define DEBUG_TYPE "regalloc"
20 #include "VirtRegMap.h"
21 #include "LiveDebugVariables.h"
22 #include "llvm/Function.h"
23 #include "llvm/CodeGen/LiveIntervalAnalysis.h"
24 #include "llvm/CodeGen/MachineFrameInfo.h"
25 #include "llvm/CodeGen/MachineFunction.h"
26 #include "llvm/CodeGen/MachineInstrBuilder.h"
27 #include "llvm/CodeGen/MachineRegisterInfo.h"
28 #include "llvm/CodeGen/Passes.h"
29 #include "llvm/Target/TargetMachine.h"
30 #include "llvm/Target/TargetInstrInfo.h"
31 #include "llvm/Target/TargetRegisterInfo.h"
32 #include "llvm/Support/CommandLine.h"
33 #include "llvm/Support/Compiler.h"
34 #include "llvm/Support/Debug.h"
35 #include "llvm/Support/raw_ostream.h"
36 #include "llvm/ADT/Statistic.h"
37 #include "llvm/ADT/STLExtras.h"
38 #include <algorithm>
39 using namespace llvm;
40
41 STATISTIC(NumSpillSlots, "Number of spill slots allocated");
42 STATISTIC(NumIdCopies,   "Number of identity moves eliminated after rewriting");
43
44 //===----------------------------------------------------------------------===//
45 //  VirtRegMap implementation
46 //===----------------------------------------------------------------------===//
47
48 char VirtRegMap::ID = 0;
49
50 INITIALIZE_PASS(VirtRegMap, "virtregmap", "Virtual Register Map", false, false)
51
52 bool VirtRegMap::runOnMachineFunction(MachineFunction &mf) {
53   MRI = &mf.getRegInfo();
54   TII = mf.getTarget().getInstrInfo();
55   TRI = mf.getTarget().getRegisterInfo();
56   MF = &mf;
57
58   Virt2PhysMap.clear();
59   Virt2StackSlotMap.clear();
60   Virt2SplitMap.clear();
61
62   grow();
63   return false;
64 }
65
66 void VirtRegMap::grow() {
67   unsigned NumRegs = MF->getRegInfo().getNumVirtRegs();
68   Virt2PhysMap.resize(NumRegs);
69   Virt2StackSlotMap.resize(NumRegs);
70   Virt2SplitMap.resize(NumRegs);
71 }
72
73 unsigned VirtRegMap::createSpillSlot(const TargetRegisterClass *RC) {
74   int SS = MF->getFrameInfo()->CreateSpillStackObject(RC->getSize(),
75                                                       RC->getAlignment());
76   ++NumSpillSlots;
77   return SS;
78 }
79
80 unsigned VirtRegMap::getRegAllocPref(unsigned virtReg) {
81   std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(virtReg);
82   unsigned physReg = Hint.second;
83   if (TargetRegisterInfo::isVirtualRegister(physReg) && hasPhys(physReg))
84     physReg = getPhys(physReg);
85   if (Hint.first == 0)
86     return (TargetRegisterInfo::isPhysicalRegister(physReg))
87       ? physReg : 0;
88   return TRI->ResolveRegAllocHint(Hint.first, physReg, *MF);
89 }
90
91 int VirtRegMap::assignVirt2StackSlot(unsigned virtReg) {
92   assert(TargetRegisterInfo::isVirtualRegister(virtReg));
93   assert(Virt2StackSlotMap[virtReg] == NO_STACK_SLOT &&
94          "attempt to assign stack slot to already spilled register");
95   const TargetRegisterClass* RC = MF->getRegInfo().getRegClass(virtReg);
96   return Virt2StackSlotMap[virtReg] = createSpillSlot(RC);
97 }
98
99 void VirtRegMap::assignVirt2StackSlot(unsigned virtReg, int SS) {
100   assert(TargetRegisterInfo::isVirtualRegister(virtReg));
101   assert(Virt2StackSlotMap[virtReg] == NO_STACK_SLOT &&
102          "attempt to assign stack slot to already spilled register");
103   assert((SS >= 0 ||
104           (SS >= MF->getFrameInfo()->getObjectIndexBegin())) &&
105          "illegal fixed frame index");
106   Virt2StackSlotMap[virtReg] = SS;
107 }
108
109 void VirtRegMap::print(raw_ostream &OS, const Module*) const {
110   OS << "********** REGISTER MAP **********\n";
111   for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
112     unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
113     if (Virt2PhysMap[Reg] != (unsigned)VirtRegMap::NO_PHYS_REG) {
114       OS << '[' << PrintReg(Reg, TRI) << " -> "
115          << PrintReg(Virt2PhysMap[Reg], TRI) << "] "
116          << MRI->getRegClass(Reg)->getName() << "\n";
117     }
118   }
119
120   for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
121     unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
122     if (Virt2StackSlotMap[Reg] != VirtRegMap::NO_STACK_SLOT) {
123       OS << '[' << PrintReg(Reg, TRI) << " -> fi#" << Virt2StackSlotMap[Reg]
124          << "] " << MRI->getRegClass(Reg)->getName() << "\n";
125     }
126   }
127   OS << '\n';
128 }
129
130 void VirtRegMap::dump() const {
131   print(dbgs());
132 }
133
134 //===----------------------------------------------------------------------===//
135 //                              VirtRegRewriter
136 //===----------------------------------------------------------------------===//
137 //
138 // The VirtRegRewriter is the last of the register allocator passes.
139 // It rewrites virtual registers to physical registers as specified in the
140 // VirtRegMap analysis. It also updates live-in information on basic blocks
141 // according to LiveIntervals.
142 //
143 namespace {
144 class VirtRegRewriter : public MachineFunctionPass {
145   MachineFunction *MF;
146   const TargetMachine *TM;
147   const TargetRegisterInfo *TRI;
148   const TargetInstrInfo *TII;
149   MachineRegisterInfo *MRI;
150   SlotIndexes *Indexes;
151   LiveIntervals *LIS;
152   VirtRegMap *VRM;
153
154   void rewrite();
155   void addMBBLiveIns();
156 public:
157   static char ID;
158   VirtRegRewriter() : MachineFunctionPass(ID) {}
159
160   virtual void getAnalysisUsage(AnalysisUsage &AU) const;
161
162   virtual bool runOnMachineFunction(MachineFunction&);
163 };
164 } // end anonymous namespace
165
166 char &llvm::VirtRegRewriterID = VirtRegRewriter::ID;
167
168 INITIALIZE_PASS_BEGIN(VirtRegRewriter, "virtregrewriter",
169                       "Virtual Register Rewriter", false, false)
170 INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
171 INITIALIZE_PASS_DEPENDENCY(LiveIntervals)
172 INITIALIZE_PASS_DEPENDENCY(LiveDebugVariables)
173 INITIALIZE_PASS_DEPENDENCY(VirtRegMap)
174 INITIALIZE_PASS_END(VirtRegRewriter, "virtregrewriter",
175                     "Virtual Register Rewriter", false, false)
176
177 char VirtRegRewriter::ID = 0;
178
179 void VirtRegRewriter::getAnalysisUsage(AnalysisUsage &AU) const {
180   AU.setPreservesCFG();
181   AU.addRequired<LiveIntervals>();
182   AU.addRequired<SlotIndexes>();
183   AU.addPreserved<SlotIndexes>();
184   AU.addRequired<LiveDebugVariables>();
185   AU.addRequired<VirtRegMap>();
186   MachineFunctionPass::getAnalysisUsage(AU);
187 }
188
189 bool VirtRegRewriter::runOnMachineFunction(MachineFunction &fn) {
190   MF = &fn;
191   TM = &MF->getTarget();
192   TRI = TM->getRegisterInfo();
193   TII = TM->getInstrInfo();
194   MRI = &MF->getRegInfo();
195   Indexes = &getAnalysis<SlotIndexes>();
196   LIS = &getAnalysis<LiveIntervals>();
197   VRM = &getAnalysis<VirtRegMap>();
198   DEBUG(dbgs() << "********** REWRITE VIRTUAL REGISTERS **********\n"
199                << "********** Function: "
200                << MF->getFunction()->getName() << '\n');
201   DEBUG(VRM->dump());
202
203   // Add kill flags while we still have virtual registers.
204   LIS->addKillFlags();
205
206   // Rewrite virtual registers.
207   rewrite();
208
209   // Write out new DBG_VALUE instructions.
210   getAnalysis<LiveDebugVariables>().emitDebugValues(VRM);
211
212   // All machine operands and other references to virtual registers have been
213   // replaced. Remove the virtual registers and release all the transient data.
214   VRM->clearAllVirt();
215   MRI->clearVirtRegs();
216   return true;
217 }
218
219 void VirtRegRewriter::rewrite() {
220   SmallVector<unsigned, 8> SuperDeads;
221   SmallVector<unsigned, 8> SuperDefs;
222   SmallVector<unsigned, 8> SuperKills;
223 #ifndef NDEBUG
224   BitVector Reserved = TRI->getReservedRegs(*MF);
225 #endif
226
227   for (MachineFunction::iterator MBBI = MF->begin(), MBBE = MF->end();
228        MBBI != MBBE; ++MBBI) {
229     DEBUG(MBBI->print(dbgs(), Indexes));
230     for (MachineBasicBlock::instr_iterator
231            MII = MBBI->instr_begin(), MIE = MBBI->instr_end(); MII != MIE;) {
232       MachineInstr *MI = MII;
233       ++MII;
234
235       for (MachineInstr::mop_iterator MOI = MI->operands_begin(),
236            MOE = MI->operands_end(); MOI != MOE; ++MOI) {
237         MachineOperand &MO = *MOI;
238
239         // Make sure MRI knows about registers clobbered by regmasks.
240         if (MO.isRegMask())
241           MRI->addPhysRegsUsedFromRegMask(MO.getRegMask());
242
243         if (!MO.isReg() || !TargetRegisterInfo::isVirtualRegister(MO.getReg()))
244           continue;
245         unsigned VirtReg = MO.getReg();
246         unsigned PhysReg = VRM->getPhys(VirtReg);
247         assert(PhysReg != VirtRegMap::NO_PHYS_REG &&
248                "Instruction uses unmapped VirtReg");
249         assert(!Reserved.test(PhysReg) && "Reserved register assignment");
250
251         // Preserve semantics of sub-register operands.
252         if (MO.getSubReg()) {
253           // A virtual register kill refers to the whole register, so we may
254           // have to add <imp-use,kill> operands for the super-register.  A
255           // partial redef always kills and redefines the super-register.
256           if (MO.readsReg() && (MO.isDef() || MO.isKill()))
257             SuperKills.push_back(PhysReg);
258
259           if (MO.isDef()) {
260             // The <def,undef> flag only makes sense for sub-register defs, and
261             // we are substituting a full physreg.  An <imp-use,kill> operand
262             // from the SuperKills list will represent the partial read of the
263             // super-register.
264             MO.setIsUndef(false);
265
266             // Also add implicit defs for the super-register.
267             if (MO.isDead())
268               SuperDeads.push_back(PhysReg);
269             else
270               SuperDefs.push_back(PhysReg);
271           }
272
273           // PhysReg operands cannot have subregister indexes.
274           PhysReg = TRI->getSubReg(PhysReg, MO.getSubReg());
275           assert(PhysReg && "Invalid SubReg for physical register");
276           MO.setSubReg(0);
277         }
278         // Rewrite. Note we could have used MachineOperand::substPhysReg(), but
279         // we need the inlining here.
280         MO.setReg(PhysReg);
281       }
282
283       // Add any missing super-register kills after rewriting the whole
284       // instruction.
285       while (!SuperKills.empty())
286         MI->addRegisterKilled(SuperKills.pop_back_val(), TRI, true);
287
288       while (!SuperDeads.empty())
289         MI->addRegisterDead(SuperDeads.pop_back_val(), TRI, true);
290
291       while (!SuperDefs.empty())
292         MI->addRegisterDefined(SuperDefs.pop_back_val(), TRI);
293
294       DEBUG(dbgs() << "> " << *MI);
295
296       // Finally, remove any identity copies.
297       if (MI->isIdentityCopy()) {
298         ++NumIdCopies;
299         if (MI->getNumOperands() == 2) {
300           DEBUG(dbgs() << "Deleting identity copy.\n");
301           if (Indexes)
302             Indexes->removeMachineInstrFromMaps(MI);
303           // It's safe to erase MI because MII has already been incremented.
304           MI->eraseFromParent();
305         } else {
306           // Transform identity copy to a KILL to deal with subregisters.
307           MI->setDesc(TII->get(TargetOpcode::KILL));
308           DEBUG(dbgs() << "Identity copy: " << *MI);
309         }
310       }
311     }
312   }
313
314   // Tell MRI about physical registers in use.
315   for (unsigned Reg = 1, RegE = TRI->getNumRegs(); Reg != RegE; ++Reg)
316     if (!MRI->reg_nodbg_empty(Reg))
317       MRI->setPhysRegUsed(Reg);
318 }