RegAllocFast.cpp revision 6565a709702995fa8a5e659269d6cda134383be7
1//===-- RegAllocFast.cpp - A fast register allocator for debug code -------===//
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 register allocator allocates registers to a basic block at a time,
11// attempting to keep values in registers and reusing registers as appropriate.
12//
13//===----------------------------------------------------------------------===//
14
15#define DEBUG_TYPE "regalloc"
16#include "RegisterClassInfo.h"
17#include "llvm/BasicBlock.h"
18#include "llvm/CodeGen/MachineFunctionPass.h"
19#include "llvm/CodeGen/MachineInstr.h"
20#include "llvm/CodeGen/MachineInstrBuilder.h"
21#include "llvm/CodeGen/MachineFrameInfo.h"
22#include "llvm/CodeGen/MachineRegisterInfo.h"
23#include "llvm/CodeGen/Passes.h"
24#include "llvm/CodeGen/RegAllocRegistry.h"
25#include "llvm/Target/TargetInstrInfo.h"
26#include "llvm/Target/TargetMachine.h"
27#include "llvm/Support/CommandLine.h"
28#include "llvm/Support/Debug.h"
29#include "llvm/Support/ErrorHandling.h"
30#include "llvm/Support/raw_ostream.h"
31#include "llvm/ADT/DenseMap.h"
32#include "llvm/ADT/IndexedMap.h"
33#include "llvm/ADT/SmallSet.h"
34#include "llvm/ADT/SmallVector.h"
35#include "llvm/ADT/SparseSet.h"
36#include "llvm/ADT/Statistic.h"
37#include "llvm/ADT/STLExtras.h"
38#include <algorithm>
39using namespace llvm;
40
41STATISTIC(NumStores, "Number of stores added");
42STATISTIC(NumLoads , "Number of loads added");
43STATISTIC(NumCopies, "Number of copies coalesced");
44
45static RegisterRegAlloc
46  fastRegAlloc("fast", "fast register allocator", createFastRegisterAllocator);
47
48namespace {
49  class RAFast : public MachineFunctionPass {
50  public:
51    static char ID;
52    RAFast() : MachineFunctionPass(ID), StackSlotForVirtReg(-1),
53               isBulkSpilling(false) {}
54  private:
55    const TargetMachine *TM;
56    MachineFunction *MF;
57    MachineRegisterInfo *MRI;
58    const TargetRegisterInfo *TRI;
59    const TargetInstrInfo *TII;
60    RegisterClassInfo RegClassInfo;
61
62    // Basic block currently being allocated.
63    MachineBasicBlock *MBB;
64
65    // StackSlotForVirtReg - Maps virtual regs to the frame index where these
66    // values are spilled.
67    IndexedMap<int, VirtReg2IndexFunctor> StackSlotForVirtReg;
68
69    // Everything we know about a live virtual register.
70    struct LiveReg {
71      MachineInstr *LastUse;    // Last instr to use reg.
72      unsigned VirtReg;         // Virtual register number.
73      unsigned PhysReg;         // Currently held here.
74      unsigned short LastOpNum; // OpNum on LastUse.
75      bool Dirty;               // Register needs spill.
76
77      explicit LiveReg(unsigned v)
78        : LastUse(0), VirtReg(v), PhysReg(0), LastOpNum(0), Dirty(false) {}
79
80      unsigned getSparseSetIndex() const {
81        return TargetRegisterInfo::virtReg2Index(VirtReg);
82      }
83    };
84
85    typedef SparseSet<LiveReg> LiveRegMap;
86
87    // LiveVirtRegs - This map contains entries for each virtual register
88    // that is currently available in a physical register.
89    LiveRegMap LiveVirtRegs;
90
91    DenseMap<unsigned, SmallVector<MachineInstr *, 4> > LiveDbgValueMap;
92
93    // RegState - Track the state of a physical register.
94    enum RegState {
95      // A disabled register is not available for allocation, but an alias may
96      // be in use. A register can only be moved out of the disabled state if
97      // all aliases are disabled.
98      regDisabled,
99
100      // A free register is not currently in use and can be allocated
101      // immediately without checking aliases.
102      regFree,
103
104      // A reserved register has been assigned explicitly (e.g., setting up a
105      // call parameter), and it remains reserved until it is used.
106      regReserved
107
108      // A register state may also be a virtual register number, indication that
109      // the physical register is currently allocated to a virtual register. In
110      // that case, LiveVirtRegs contains the inverse mapping.
111    };
112
113    // PhysRegState - One of the RegState enums, or a virtreg.
114    std::vector<unsigned> PhysRegState;
115
116    // UsedInInstr - BitVector of physregs that are used in the current
117    // instruction, and so cannot be allocated.
118    BitVector UsedInInstr;
119
120    // SkippedInstrs - Descriptors of instructions whose clobber list was
121    // ignored because all registers were spilled. It is still necessary to
122    // mark all the clobbered registers as used by the function.
123    SmallPtrSet<const MCInstrDesc*, 4> SkippedInstrs;
124
125    // isBulkSpilling - This flag is set when LiveRegMap will be cleared
126    // completely after spilling all live registers. LiveRegMap entries should
127    // not be erased.
128    bool isBulkSpilling;
129
130    enum {
131      spillClean = 1,
132      spillDirty = 100,
133      spillImpossible = ~0u
134    };
135  public:
136    virtual const char *getPassName() const {
137      return "Fast Register Allocator";
138    }
139
140    virtual void getAnalysisUsage(AnalysisUsage &AU) const {
141      AU.setPreservesCFG();
142      MachineFunctionPass::getAnalysisUsage(AU);
143    }
144
145  private:
146    bool runOnMachineFunction(MachineFunction &Fn);
147    void AllocateBasicBlock();
148    void handleThroughOperands(MachineInstr *MI,
149                               SmallVectorImpl<unsigned> &VirtDead);
150    int getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC);
151    bool isLastUseOfLocalReg(MachineOperand&);
152
153    void addKillFlag(const LiveReg&);
154    void killVirtReg(LiveRegMap::iterator);
155    void killVirtReg(unsigned VirtReg);
156    void spillVirtReg(MachineBasicBlock::iterator MI, LiveRegMap::iterator);
157    void spillVirtReg(MachineBasicBlock::iterator MI, unsigned VirtReg);
158
159    void usePhysReg(MachineOperand&);
160    void definePhysReg(MachineInstr *MI, unsigned PhysReg, RegState NewState);
161    unsigned calcSpillCost(unsigned PhysReg) const;
162    void assignVirtToPhysReg(LiveReg&, unsigned PhysReg);
163    LiveRegMap::iterator findLiveVirtReg(unsigned VirtReg) {
164      return LiveVirtRegs.find(TargetRegisterInfo::virtReg2Index(VirtReg));
165    }
166    LiveRegMap::const_iterator findLiveVirtReg(unsigned VirtReg) const {
167      return LiveVirtRegs.find(TargetRegisterInfo::virtReg2Index(VirtReg));
168    }
169    LiveRegMap::iterator assignVirtToPhysReg(unsigned VReg, unsigned PhysReg);
170    LiveRegMap::iterator allocVirtReg(MachineInstr *MI, LiveRegMap::iterator,
171                                      unsigned Hint);
172    LiveRegMap::iterator defineVirtReg(MachineInstr *MI, unsigned OpNum,
173                                       unsigned VirtReg, unsigned Hint);
174    LiveRegMap::iterator reloadVirtReg(MachineInstr *MI, unsigned OpNum,
175                                       unsigned VirtReg, unsigned Hint);
176    void spillAll(MachineInstr *MI);
177    bool setPhysReg(MachineInstr *MI, unsigned OpNum, unsigned PhysReg);
178    void addRetOperands(MachineBasicBlock *MBB);
179  };
180  char RAFast::ID = 0;
181}
182
183/// getStackSpaceFor - This allocates space for the specified virtual register
184/// to be held on the stack.
185int RAFast::getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC) {
186  // Find the location Reg would belong...
187  int SS = StackSlotForVirtReg[VirtReg];
188  if (SS != -1)
189    return SS;          // Already has space allocated?
190
191  // Allocate a new stack object for this spill location...
192  int FrameIdx = MF->getFrameInfo()->CreateSpillStackObject(RC->getSize(),
193                                                            RC->getAlignment());
194
195  // Assign the slot.
196  StackSlotForVirtReg[VirtReg] = FrameIdx;
197  return FrameIdx;
198}
199
200/// isLastUseOfLocalReg - Return true if MO is the only remaining reference to
201/// its virtual register, and it is guaranteed to be a block-local register.
202///
203bool RAFast::isLastUseOfLocalReg(MachineOperand &MO) {
204  // Check for non-debug uses or defs following MO.
205  // This is the most likely way to fail - fast path it.
206  MachineOperand *Next = &MO;
207  while ((Next = Next->getNextOperandForReg()))
208    if (!Next->isDebug())
209      return false;
210
211  // If the register has ever been spilled or reloaded, we conservatively assume
212  // it is a global register used in multiple blocks.
213  if (StackSlotForVirtReg[MO.getReg()] != -1)
214    return false;
215
216  // Check that the use/def chain has exactly one operand - MO.
217  return &MRI->reg_nodbg_begin(MO.getReg()).getOperand() == &MO;
218}
219
220/// addKillFlag - Set kill flags on last use of a virtual register.
221void RAFast::addKillFlag(const LiveReg &LR) {
222  if (!LR.LastUse) return;
223  MachineOperand &MO = LR.LastUse->getOperand(LR.LastOpNum);
224  if (MO.isUse() && !LR.LastUse->isRegTiedToDefOperand(LR.LastOpNum)) {
225    if (MO.getReg() == LR.PhysReg)
226      MO.setIsKill();
227    else
228      LR.LastUse->addRegisterKilled(LR.PhysReg, TRI, true);
229  }
230}
231
232/// killVirtReg - Mark virtreg as no longer available.
233void RAFast::killVirtReg(LiveRegMap::iterator LRI) {
234  addKillFlag(*LRI);
235  assert(PhysRegState[LRI->PhysReg] == LRI->VirtReg &&
236         "Broken RegState mapping");
237  PhysRegState[LRI->PhysReg] = regFree;
238  // Erase from LiveVirtRegs unless we're spilling in bulk.
239  if (!isBulkSpilling)
240    LiveVirtRegs.erase(LRI);
241}
242
243/// killVirtReg - Mark virtreg as no longer available.
244void RAFast::killVirtReg(unsigned VirtReg) {
245  assert(TargetRegisterInfo::isVirtualRegister(VirtReg) &&
246         "killVirtReg needs a virtual register");
247  LiveRegMap::iterator LRI = findLiveVirtReg(VirtReg);
248  if (LRI != LiveVirtRegs.end())
249    killVirtReg(LRI);
250}
251
252/// spillVirtReg - This method spills the value specified by VirtReg into the
253/// corresponding stack slot if needed.
254void RAFast::spillVirtReg(MachineBasicBlock::iterator MI, unsigned VirtReg) {
255  assert(TargetRegisterInfo::isVirtualRegister(VirtReg) &&
256         "Spilling a physical register is illegal!");
257  LiveRegMap::iterator LRI = findLiveVirtReg(VirtReg);
258  assert(LRI != LiveVirtRegs.end() && "Spilling unmapped virtual register");
259  spillVirtReg(MI, LRI);
260}
261
262/// spillVirtReg - Do the actual work of spilling.
263void RAFast::spillVirtReg(MachineBasicBlock::iterator MI,
264                          LiveRegMap::iterator LRI) {
265  LiveReg &LR = *LRI;
266  assert(PhysRegState[LR.PhysReg] == LRI->VirtReg && "Broken RegState mapping");
267
268  if (LR.Dirty) {
269    // If this physreg is used by the instruction, we want to kill it on the
270    // instruction, not on the spill.
271    bool SpillKill = LR.LastUse != MI;
272    LR.Dirty = false;
273    DEBUG(dbgs() << "Spilling " << PrintReg(LRI->VirtReg, TRI)
274                 << " in " << PrintReg(LR.PhysReg, TRI));
275    const TargetRegisterClass *RC = MRI->getRegClass(LRI->VirtReg);
276    int FI = getStackSpaceFor(LRI->VirtReg, RC);
277    DEBUG(dbgs() << " to stack slot #" << FI << "\n");
278    TII->storeRegToStackSlot(*MBB, MI, LR.PhysReg, SpillKill, FI, RC, TRI);
279    ++NumStores;   // Update statistics
280
281    // If this register is used by DBG_VALUE then insert new DBG_VALUE to
282    // identify spilled location as the place to find corresponding variable's
283    // value.
284    SmallVector<MachineInstr *, 4> &LRIDbgValues =
285      LiveDbgValueMap[LRI->VirtReg];
286    for (unsigned li = 0, le = LRIDbgValues.size(); li != le; ++li) {
287      MachineInstr *DBG = LRIDbgValues[li];
288      const MDNode *MDPtr =
289        DBG->getOperand(DBG->getNumOperands()-1).getMetadata();
290      int64_t Offset = 0;
291      if (DBG->getOperand(1).isImm())
292        Offset = DBG->getOperand(1).getImm();
293      DebugLoc DL;
294      if (MI == MBB->end()) {
295        // If MI is at basic block end then use last instruction's location.
296        MachineBasicBlock::iterator EI = MI;
297        DL = (--EI)->getDebugLoc();
298      }
299      else
300        DL = MI->getDebugLoc();
301      if (MachineInstr *NewDV =
302          TII->emitFrameIndexDebugValue(*MF, FI, Offset, MDPtr, DL)) {
303        MachineBasicBlock *MBB = DBG->getParent();
304        MBB->insert(MI, NewDV);
305        DEBUG(dbgs() << "Inserting debug info due to spill:" << "\n" << *NewDV);
306      }
307    }
308    // Now this register is spilled there is should not be any DBG_VALUE
309    // pointing to this register because they are all pointing to spilled value
310    // now.
311    LRIDbgValues.clear();
312    if (SpillKill)
313      LR.LastUse = 0; // Don't kill register again
314  }
315  killVirtReg(LRI);
316}
317
318/// spillAll - Spill all dirty virtregs without killing them.
319void RAFast::spillAll(MachineInstr *MI) {
320  if (LiveVirtRegs.empty()) return;
321  isBulkSpilling = true;
322  // The LiveRegMap is keyed by an unsigned (the virtreg number), so the order
323  // of spilling here is deterministic, if arbitrary.
324  for (LiveRegMap::iterator i = LiveVirtRegs.begin(), e = LiveVirtRegs.end();
325       i != e; ++i)
326    spillVirtReg(MI, i);
327  LiveVirtRegs.clear();
328  isBulkSpilling = false;
329}
330
331/// usePhysReg - Handle the direct use of a physical register.
332/// Check that the register is not used by a virtreg.
333/// Kill the physreg, marking it free.
334/// This may add implicit kills to MO->getParent() and invalidate MO.
335void RAFast::usePhysReg(MachineOperand &MO) {
336  unsigned PhysReg = MO.getReg();
337  assert(TargetRegisterInfo::isPhysicalRegister(PhysReg) &&
338         "Bad usePhysReg operand");
339
340  switch (PhysRegState[PhysReg]) {
341  case regDisabled:
342    break;
343  case regReserved:
344    PhysRegState[PhysReg] = regFree;
345    // Fall through
346  case regFree:
347    UsedInInstr.set(PhysReg);
348    MO.setIsKill();
349    return;
350  default:
351    // The physreg was allocated to a virtual register. That means the value we
352    // wanted has been clobbered.
353    llvm_unreachable("Instruction uses an allocated register");
354  }
355
356  // Maybe a superregister is reserved?
357  for (const uint16_t *AS = TRI->getAliasSet(PhysReg);
358       unsigned Alias = *AS; ++AS) {
359    switch (PhysRegState[Alias]) {
360    case regDisabled:
361      break;
362    case regReserved:
363      assert(TRI->isSuperRegister(PhysReg, Alias) &&
364             "Instruction is not using a subregister of a reserved register");
365      // Leave the superregister in the working set.
366      PhysRegState[Alias] = regFree;
367      UsedInInstr.set(Alias);
368      MO.getParent()->addRegisterKilled(Alias, TRI, true);
369      return;
370    case regFree:
371      if (TRI->isSuperRegister(PhysReg, Alias)) {
372        // Leave the superregister in the working set.
373        UsedInInstr.set(Alias);
374        MO.getParent()->addRegisterKilled(Alias, TRI, true);
375        return;
376      }
377      // Some other alias was in the working set - clear it.
378      PhysRegState[Alias] = regDisabled;
379      break;
380    default:
381      llvm_unreachable("Instruction uses an alias of an allocated register");
382    }
383  }
384
385  // All aliases are disabled, bring register into working set.
386  PhysRegState[PhysReg] = regFree;
387  UsedInInstr.set(PhysReg);
388  MO.setIsKill();
389}
390
391/// definePhysReg - Mark PhysReg as reserved or free after spilling any
392/// virtregs. This is very similar to defineVirtReg except the physreg is
393/// reserved instead of allocated.
394void RAFast::definePhysReg(MachineInstr *MI, unsigned PhysReg,
395                           RegState NewState) {
396  UsedInInstr.set(PhysReg);
397  switch (unsigned VirtReg = PhysRegState[PhysReg]) {
398  case regDisabled:
399    break;
400  default:
401    spillVirtReg(MI, VirtReg);
402    // Fall through.
403  case regFree:
404  case regReserved:
405    PhysRegState[PhysReg] = NewState;
406    return;
407  }
408
409  // This is a disabled register, disable all aliases.
410  PhysRegState[PhysReg] = NewState;
411  for (const uint16_t *AS = TRI->getAliasSet(PhysReg);
412       unsigned Alias = *AS; ++AS) {
413    switch (unsigned VirtReg = PhysRegState[Alias]) {
414    case regDisabled:
415      break;
416    default:
417      spillVirtReg(MI, VirtReg);
418      // Fall through.
419    case regFree:
420    case regReserved:
421      PhysRegState[Alias] = regDisabled;
422      if (TRI->isSuperRegister(PhysReg, Alias))
423        return;
424      break;
425    }
426  }
427}
428
429
430// calcSpillCost - Return the cost of spilling clearing out PhysReg and
431// aliases so it is free for allocation.
432// Returns 0 when PhysReg is free or disabled with all aliases disabled - it
433// can be allocated directly.
434// Returns spillImpossible when PhysReg or an alias can't be spilled.
435unsigned RAFast::calcSpillCost(unsigned PhysReg) const {
436  if (UsedInInstr.test(PhysReg)) {
437    DEBUG(dbgs() << PrintReg(PhysReg, TRI) << " is already used in instr.\n");
438    return spillImpossible;
439  }
440  switch (unsigned VirtReg = PhysRegState[PhysReg]) {
441  case regDisabled:
442    break;
443  case regFree:
444    return 0;
445  case regReserved:
446    DEBUG(dbgs() << PrintReg(VirtReg, TRI) << " corresponding "
447                 << PrintReg(PhysReg, TRI) << " is reserved already.\n");
448    return spillImpossible;
449  default: {
450    LiveRegMap::const_iterator I = findLiveVirtReg(VirtReg);
451    assert(I != LiveVirtRegs.end() && "Missing VirtReg entry");
452    return I->Dirty ? spillDirty : spillClean;
453  }
454  }
455
456  // This is a disabled register, add up cost of aliases.
457  DEBUG(dbgs() << PrintReg(PhysReg, TRI) << " is disabled.\n");
458  unsigned Cost = 0;
459  for (const uint16_t *AS = TRI->getAliasSet(PhysReg);
460       unsigned Alias = *AS; ++AS) {
461    if (UsedInInstr.test(Alias))
462      return spillImpossible;
463    switch (unsigned VirtReg = PhysRegState[Alias]) {
464    case regDisabled:
465      break;
466    case regFree:
467      ++Cost;
468      break;
469    case regReserved:
470      return spillImpossible;
471    default: {
472      LiveRegMap::const_iterator I = findLiveVirtReg(VirtReg);
473      assert(I != LiveVirtRegs.end() && "Missing VirtReg entry");
474      Cost += I->Dirty ? spillDirty : spillClean;
475      break;
476    }
477    }
478  }
479  return Cost;
480}
481
482
483/// assignVirtToPhysReg - This method updates local state so that we know
484/// that PhysReg is the proper container for VirtReg now.  The physical
485/// register must not be used for anything else when this is called.
486///
487void RAFast::assignVirtToPhysReg(LiveReg &LR, unsigned PhysReg) {
488  DEBUG(dbgs() << "Assigning " << PrintReg(LR.VirtReg, TRI) << " to "
489               << PrintReg(PhysReg, TRI) << "\n");
490  PhysRegState[PhysReg] = LR.VirtReg;
491  assert(!LR.PhysReg && "Already assigned a physreg");
492  LR.PhysReg = PhysReg;
493}
494
495RAFast::LiveRegMap::iterator
496RAFast::assignVirtToPhysReg(unsigned VirtReg, unsigned PhysReg) {
497  LiveRegMap::iterator LRI = findLiveVirtReg(VirtReg);
498  assert(LRI != LiveVirtRegs.end() && "VirtReg disappeared");
499  assignVirtToPhysReg(*LRI, PhysReg);
500  return LRI;
501}
502
503/// allocVirtReg - Allocate a physical register for VirtReg.
504RAFast::LiveRegMap::iterator RAFast::allocVirtReg(MachineInstr *MI,
505                                                  LiveRegMap::iterator LRI,
506                                                  unsigned Hint) {
507  const unsigned VirtReg = LRI->VirtReg;
508
509  assert(TargetRegisterInfo::isVirtualRegister(VirtReg) &&
510         "Can only allocate virtual registers");
511
512  const TargetRegisterClass *RC = MRI->getRegClass(VirtReg);
513
514  // Ignore invalid hints.
515  if (Hint && (!TargetRegisterInfo::isPhysicalRegister(Hint) ||
516               !RC->contains(Hint) || !RegClassInfo.isAllocatable(Hint)))
517    Hint = 0;
518
519  // Take hint when possible.
520  if (Hint) {
521    // Ignore the hint if we would have to spill a dirty register.
522    unsigned Cost = calcSpillCost(Hint);
523    if (Cost < spillDirty) {
524      if (Cost)
525        definePhysReg(MI, Hint, regFree);
526      // definePhysReg may kill virtual registers and modify LiveVirtRegs.
527      // That invalidates LRI, so run a new lookup for VirtReg.
528      return assignVirtToPhysReg(VirtReg, Hint);
529    }
530  }
531
532  ArrayRef<unsigned> AO = RegClassInfo.getOrder(RC);
533
534  // First try to find a completely free register.
535  for (ArrayRef<unsigned>::iterator I = AO.begin(), E = AO.end(); I != E; ++I) {
536    unsigned PhysReg = *I;
537    if (PhysRegState[PhysReg] == regFree && !UsedInInstr.test(PhysReg)) {
538      assignVirtToPhysReg(*LRI, PhysReg);
539      return LRI;
540    }
541  }
542
543  DEBUG(dbgs() << "Allocating " << PrintReg(VirtReg) << " from "
544               << RC->getName() << "\n");
545
546  unsigned BestReg = 0, BestCost = spillImpossible;
547  for (ArrayRef<unsigned>::iterator I = AO.begin(), E = AO.end(); I != E; ++I) {
548    unsigned Cost = calcSpillCost(*I);
549    DEBUG(dbgs() << "\tRegister: " << PrintReg(*I, TRI) << "\n");
550    DEBUG(dbgs() << "\tCost: " << Cost << "\n");
551    DEBUG(dbgs() << "\tBestCost: " << BestCost << "\n");
552    // Cost is 0 when all aliases are already disabled.
553    if (Cost == 0) {
554      assignVirtToPhysReg(*LRI, *I);
555      return LRI;
556    }
557    if (Cost < BestCost)
558      BestReg = *I, BestCost = Cost;
559  }
560
561  if (BestReg) {
562    definePhysReg(MI, BestReg, regFree);
563    // definePhysReg may kill virtual registers and modify LiveVirtRegs.
564    // That invalidates LRI, so run a new lookup for VirtReg.
565    return assignVirtToPhysReg(VirtReg, BestReg);
566  }
567
568  // Nothing we can do. Report an error and keep going with a bad allocation.
569  MI->emitError("ran out of registers during register allocation");
570  definePhysReg(MI, *AO.begin(), regFree);
571  return assignVirtToPhysReg(VirtReg, *AO.begin());
572}
573
574/// defineVirtReg - Allocate a register for VirtReg and mark it as dirty.
575RAFast::LiveRegMap::iterator
576RAFast::defineVirtReg(MachineInstr *MI, unsigned OpNum,
577                      unsigned VirtReg, unsigned Hint) {
578  assert(TargetRegisterInfo::isVirtualRegister(VirtReg) &&
579         "Not a virtual register");
580  LiveRegMap::iterator LRI;
581  bool New;
582  tie(LRI, New) = LiveVirtRegs.insert(LiveReg(VirtReg));
583  if (New) {
584    // If there is no hint, peek at the only use of this register.
585    if ((!Hint || !TargetRegisterInfo::isPhysicalRegister(Hint)) &&
586        MRI->hasOneNonDBGUse(VirtReg)) {
587      const MachineInstr &UseMI = *MRI->use_nodbg_begin(VirtReg);
588      // It's a copy, use the destination register as a hint.
589      if (UseMI.isCopyLike())
590        Hint = UseMI.getOperand(0).getReg();
591    }
592    LRI = allocVirtReg(MI, LRI, Hint);
593  } else if (LRI->LastUse) {
594    // Redefining a live register - kill at the last use, unless it is this
595    // instruction defining VirtReg multiple times.
596    if (LRI->LastUse != MI || LRI->LastUse->getOperand(LRI->LastOpNum).isUse())
597      addKillFlag(*LRI);
598  }
599  assert(LRI->PhysReg && "Register not assigned");
600  LRI->LastUse = MI;
601  LRI->LastOpNum = OpNum;
602  LRI->Dirty = true;
603  UsedInInstr.set(LRI->PhysReg);
604  return LRI;
605}
606
607/// reloadVirtReg - Make sure VirtReg is available in a physreg and return it.
608RAFast::LiveRegMap::iterator
609RAFast::reloadVirtReg(MachineInstr *MI, unsigned OpNum,
610                      unsigned VirtReg, unsigned Hint) {
611  assert(TargetRegisterInfo::isVirtualRegister(VirtReg) &&
612         "Not a virtual register");
613  LiveRegMap::iterator LRI;
614  bool New;
615  tie(LRI, New) = LiveVirtRegs.insert(LiveReg(VirtReg));
616  MachineOperand &MO = MI->getOperand(OpNum);
617  if (New) {
618    LRI = allocVirtReg(MI, LRI, Hint);
619    const TargetRegisterClass *RC = MRI->getRegClass(VirtReg);
620    int FrameIndex = getStackSpaceFor(VirtReg, RC);
621    DEBUG(dbgs() << "Reloading " << PrintReg(VirtReg, TRI) << " into "
622                 << PrintReg(LRI->PhysReg, TRI) << "\n");
623    TII->loadRegFromStackSlot(*MBB, MI, LRI->PhysReg, FrameIndex, RC, TRI);
624    ++NumLoads;
625  } else if (LRI->Dirty) {
626    if (isLastUseOfLocalReg(MO)) {
627      DEBUG(dbgs() << "Killing last use: " << MO << "\n");
628      if (MO.isUse())
629        MO.setIsKill();
630      else
631        MO.setIsDead();
632    } else if (MO.isKill()) {
633      DEBUG(dbgs() << "Clearing dubious kill: " << MO << "\n");
634      MO.setIsKill(false);
635    } else if (MO.isDead()) {
636      DEBUG(dbgs() << "Clearing dubious dead: " << MO << "\n");
637      MO.setIsDead(false);
638    }
639  } else if (MO.isKill()) {
640    // We must remove kill flags from uses of reloaded registers because the
641    // register would be killed immediately, and there might be a second use:
642    //   %foo = OR %x<kill>, %x
643    // This would cause a second reload of %x into a different register.
644    DEBUG(dbgs() << "Clearing clean kill: " << MO << "\n");
645    MO.setIsKill(false);
646  } else if (MO.isDead()) {
647    DEBUG(dbgs() << "Clearing clean dead: " << MO << "\n");
648    MO.setIsDead(false);
649  }
650  assert(LRI->PhysReg && "Register not assigned");
651  LRI->LastUse = MI;
652  LRI->LastOpNum = OpNum;
653  UsedInInstr.set(LRI->PhysReg);
654  return LRI;
655}
656
657// setPhysReg - Change operand OpNum in MI the refer the PhysReg, considering
658// subregs. This may invalidate any operand pointers.
659// Return true if the operand kills its register.
660bool RAFast::setPhysReg(MachineInstr *MI, unsigned OpNum, unsigned PhysReg) {
661  MachineOperand &MO = MI->getOperand(OpNum);
662  bool Dead = MO.isDead();
663  if (!MO.getSubReg()) {
664    MO.setReg(PhysReg);
665    return MO.isKill() || Dead;
666  }
667
668  // Handle subregister index.
669  MO.setReg(PhysReg ? TRI->getSubReg(PhysReg, MO.getSubReg()) : 0);
670  MO.setSubReg(0);
671
672  // A kill flag implies killing the full register. Add corresponding super
673  // register kill.
674  if (MO.isKill()) {
675    MI->addRegisterKilled(PhysReg, TRI, true);
676    return true;
677  }
678
679  // A <def,read-undef> of a sub-register requires an implicit def of the full
680  // register.
681  if (MO.isDef() && MO.isUndef())
682    MI->addRegisterDefined(PhysReg, TRI);
683
684  return Dead;
685}
686
687// Handle special instruction operand like early clobbers and tied ops when
688// there are additional physreg defines.
689void RAFast::handleThroughOperands(MachineInstr *MI,
690                                   SmallVectorImpl<unsigned> &VirtDead) {
691  DEBUG(dbgs() << "Scanning for through registers:");
692  SmallSet<unsigned, 8> ThroughRegs;
693  for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
694    MachineOperand &MO = MI->getOperand(i);
695    if (!MO.isReg()) continue;
696    unsigned Reg = MO.getReg();
697    if (!TargetRegisterInfo::isVirtualRegister(Reg))
698      continue;
699    if (MO.isEarlyClobber() || MI->isRegTiedToDefOperand(i) ||
700        (MO.getSubReg() && MI->readsVirtualRegister(Reg))) {
701      if (ThroughRegs.insert(Reg))
702        DEBUG(dbgs() << ' ' << PrintReg(Reg));
703    }
704  }
705
706  // If any physreg defines collide with preallocated through registers,
707  // we must spill and reallocate.
708  DEBUG(dbgs() << "\nChecking for physdef collisions.\n");
709  for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
710    MachineOperand &MO = MI->getOperand(i);
711    if (!MO.isReg() || !MO.isDef()) continue;
712    unsigned Reg = MO.getReg();
713    if (!Reg || !TargetRegisterInfo::isPhysicalRegister(Reg)) continue;
714    UsedInInstr.set(Reg);
715    if (ThroughRegs.count(PhysRegState[Reg]))
716      definePhysReg(MI, Reg, regFree);
717    for (const uint16_t *AS = TRI->getAliasSet(Reg); *AS; ++AS) {
718      UsedInInstr.set(*AS);
719      if (ThroughRegs.count(PhysRegState[*AS]))
720        definePhysReg(MI, *AS, regFree);
721    }
722  }
723
724  SmallVector<unsigned, 8> PartialDefs;
725  DEBUG(dbgs() << "Allocating tied uses.\n");
726  for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
727    MachineOperand &MO = MI->getOperand(i);
728    if (!MO.isReg()) continue;
729    unsigned Reg = MO.getReg();
730    if (!TargetRegisterInfo::isVirtualRegister(Reg)) continue;
731    if (MO.isUse()) {
732      unsigned DefIdx = 0;
733      if (!MI->isRegTiedToDefOperand(i, &DefIdx)) continue;
734      DEBUG(dbgs() << "Operand " << i << "("<< MO << ") is tied to operand "
735        << DefIdx << ".\n");
736      LiveRegMap::iterator LRI = reloadVirtReg(MI, i, Reg, 0);
737      unsigned PhysReg = LRI->PhysReg;
738      setPhysReg(MI, i, PhysReg);
739      // Note: we don't update the def operand yet. That would cause the normal
740      // def-scan to attempt spilling.
741    } else if (MO.getSubReg() && MI->readsVirtualRegister(Reg)) {
742      DEBUG(dbgs() << "Partial redefine: " << MO << "\n");
743      // Reload the register, but don't assign to the operand just yet.
744      // That would confuse the later phys-def processing pass.
745      LiveRegMap::iterator LRI = reloadVirtReg(MI, i, Reg, 0);
746      PartialDefs.push_back(LRI->PhysReg);
747    }
748  }
749
750  DEBUG(dbgs() << "Allocating early clobbers.\n");
751  for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
752    MachineOperand &MO = MI->getOperand(i);
753    if (!MO.isReg()) continue;
754    unsigned Reg = MO.getReg();
755    if (!TargetRegisterInfo::isVirtualRegister(Reg)) continue;
756    if (!MO.isEarlyClobber())
757      continue;
758    // Note: defineVirtReg may invalidate MO.
759    LiveRegMap::iterator LRI = defineVirtReg(MI, i, Reg, 0);
760    unsigned PhysReg = LRI->PhysReg;
761    if (setPhysReg(MI, i, PhysReg))
762      VirtDead.push_back(Reg);
763  }
764
765  // Restore UsedInInstr to a state usable for allocating normal virtual uses.
766  UsedInInstr.reset();
767  for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
768    MachineOperand &MO = MI->getOperand(i);
769    if (!MO.isReg() || (MO.isDef() && !MO.isEarlyClobber())) continue;
770    unsigned Reg = MO.getReg();
771    if (!Reg || !TargetRegisterInfo::isPhysicalRegister(Reg)) continue;
772    DEBUG(dbgs() << "\tSetting " << PrintReg(Reg, TRI)
773                 << " as used in instr\n");
774    UsedInInstr.set(Reg);
775  }
776
777  // Also mark PartialDefs as used to avoid reallocation.
778  for (unsigned i = 0, e = PartialDefs.size(); i != e; ++i)
779    UsedInInstr.set(PartialDefs[i]);
780}
781
782/// addRetOperand - ensure that a return instruction has an operand for each
783/// value live out of the function.
784///
785/// Things marked both call and return are tail calls; do not do this for them.
786/// The tail callee need not take the same registers as input that it produces
787/// as output, and there are dependencies for its input registers elsewhere.
788///
789/// FIXME: This should be done as part of instruction selection, and this helper
790/// should be deleted. Until then, we use custom logic here to create the proper
791/// operand under all circumstances. We can't use addRegisterKilled because that
792/// doesn't make sense for undefined values. We can't simply avoid calling it
793/// for undefined values, because we must ensure that the operand always exists.
794void RAFast::addRetOperands(MachineBasicBlock *MBB) {
795  if (MBB->empty() || !MBB->back().isReturn() || MBB->back().isCall())
796    return;
797
798  MachineInstr *MI = &MBB->back();
799
800  for (MachineRegisterInfo::liveout_iterator
801         I = MBB->getParent()->getRegInfo().liveout_begin(),
802         E = MBB->getParent()->getRegInfo().liveout_end(); I != E; ++I) {
803    unsigned Reg = *I;
804    assert(TargetRegisterInfo::isPhysicalRegister(Reg) &&
805           "Cannot have a live-out virtual register.");
806
807    bool hasDef = PhysRegState[Reg] == regReserved;
808
809    // Check if this register already has an operand.
810    bool Found = false;
811    for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
812      MachineOperand &MO = MI->getOperand(i);
813      if (!MO.isReg() || !MO.isUse())
814        continue;
815
816      unsigned OperReg = MO.getReg();
817      if (!TargetRegisterInfo::isPhysicalRegister(OperReg))
818        continue;
819
820      if (OperReg == Reg || TRI->isSuperRegister(OperReg, Reg)) {
821        // If the ret already has an operand for this physreg or a superset,
822        // don't duplicate it. Set the kill flag if the value is defined.
823        if (hasDef && !MO.isKill())
824          MO.setIsKill();
825        Found = true;
826        break;
827      }
828    }
829    if (!Found)
830      MI->addOperand(MachineOperand::CreateReg(Reg,
831                                               false /*IsDef*/,
832                                               true  /*IsImp*/,
833                                               hasDef/*IsKill*/));
834  }
835}
836
837void RAFast::AllocateBasicBlock() {
838  DEBUG(dbgs() << "\nAllocating " << *MBB);
839
840  PhysRegState.assign(TRI->getNumRegs(), regDisabled);
841  assert(LiveVirtRegs.empty() && "Mapping not cleared from last block?");
842
843  MachineBasicBlock::iterator MII = MBB->begin();
844
845  // Add live-in registers as live.
846  for (MachineBasicBlock::livein_iterator I = MBB->livein_begin(),
847         E = MBB->livein_end(); I != E; ++I)
848    if (RegClassInfo.isAllocatable(*I))
849      definePhysReg(MII, *I, regReserved);
850
851  SmallVector<unsigned, 8> VirtDead;
852  SmallVector<MachineInstr*, 32> Coalesced;
853
854  // Otherwise, sequentially allocate each instruction in the MBB.
855  while (MII != MBB->end()) {
856    MachineInstr *MI = MII++;
857    const MCInstrDesc &MCID = MI->getDesc();
858    DEBUG({
859        dbgs() << "\n>> " << *MI << "Regs:";
860        for (unsigned Reg = 1, E = TRI->getNumRegs(); Reg != E; ++Reg) {
861          if (PhysRegState[Reg] == regDisabled) continue;
862          dbgs() << " " << TRI->getName(Reg);
863          switch(PhysRegState[Reg]) {
864          case regFree:
865            break;
866          case regReserved:
867            dbgs() << "*";
868            break;
869          default: {
870            dbgs() << '=' << PrintReg(PhysRegState[Reg]);
871            LiveRegMap::iterator I = findLiveVirtReg(PhysRegState[Reg]);
872            assert(I != LiveVirtRegs.end() && "Missing VirtReg entry");
873            if (I->Dirty)
874              dbgs() << "*";
875            assert(I->PhysReg == Reg && "Bad inverse map");
876            break;
877          }
878          }
879        }
880        dbgs() << '\n';
881        // Check that LiveVirtRegs is the inverse.
882        for (LiveRegMap::iterator i = LiveVirtRegs.begin(),
883             e = LiveVirtRegs.end(); i != e; ++i) {
884           assert(TargetRegisterInfo::isVirtualRegister(i->VirtReg) &&
885                  "Bad map key");
886           assert(TargetRegisterInfo::isPhysicalRegister(i->PhysReg) &&
887                  "Bad map value");
888           assert(PhysRegState[i->PhysReg] == i->VirtReg && "Bad inverse map");
889        }
890      });
891
892    // Debug values are not allowed to change codegen in any way.
893    if (MI->isDebugValue()) {
894      bool ScanDbgValue = true;
895      while (ScanDbgValue) {
896        ScanDbgValue = false;
897        for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
898          MachineOperand &MO = MI->getOperand(i);
899          if (!MO.isReg()) continue;
900          unsigned Reg = MO.getReg();
901          if (!TargetRegisterInfo::isVirtualRegister(Reg)) continue;
902          LiveRegMap::iterator LRI = findLiveVirtReg(Reg);
903          if (LRI != LiveVirtRegs.end())
904            setPhysReg(MI, i, LRI->PhysReg);
905          else {
906            int SS = StackSlotForVirtReg[Reg];
907            if (SS == -1) {
908              // We can't allocate a physreg for a DebugValue, sorry!
909              DEBUG(dbgs() << "Unable to allocate vreg used by DBG_VALUE");
910              MO.setReg(0);
911            }
912            else {
913              // Modify DBG_VALUE now that the value is in a spill slot.
914              int64_t Offset = MI->getOperand(1).getImm();
915              const MDNode *MDPtr =
916                MI->getOperand(MI->getNumOperands()-1).getMetadata();
917              DebugLoc DL = MI->getDebugLoc();
918              if (MachineInstr *NewDV =
919                  TII->emitFrameIndexDebugValue(*MF, SS, Offset, MDPtr, DL)) {
920                DEBUG(dbgs() << "Modifying debug info due to spill:" <<
921                      "\t" << *MI);
922                MachineBasicBlock *MBB = MI->getParent();
923                MBB->insert(MBB->erase(MI), NewDV);
924                // Scan NewDV operands from the beginning.
925                MI = NewDV;
926                ScanDbgValue = true;
927                break;
928              } else {
929                // We can't allocate a physreg for a DebugValue; sorry!
930                DEBUG(dbgs() << "Unable to allocate vreg used by DBG_VALUE");
931                MO.setReg(0);
932              }
933            }
934          }
935          LiveDbgValueMap[Reg].push_back(MI);
936        }
937      }
938      // Next instruction.
939      continue;
940    }
941
942    // If this is a copy, we may be able to coalesce.
943    unsigned CopySrc = 0, CopyDst = 0, CopySrcSub = 0, CopyDstSub = 0;
944    if (MI->isCopy()) {
945      CopyDst = MI->getOperand(0).getReg();
946      CopySrc = MI->getOperand(1).getReg();
947      CopyDstSub = MI->getOperand(0).getSubReg();
948      CopySrcSub = MI->getOperand(1).getSubReg();
949    }
950
951    // Track registers used by instruction.
952    UsedInInstr.reset();
953
954    // First scan.
955    // Mark physreg uses and early clobbers as used.
956    // Find the end of the virtreg operands
957    unsigned VirtOpEnd = 0;
958    bool hasTiedOps = false;
959    bool hasEarlyClobbers = false;
960    bool hasPartialRedefs = false;
961    bool hasPhysDefs = false;
962    for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
963      MachineOperand &MO = MI->getOperand(i);
964      if (!MO.isReg()) continue;
965      unsigned Reg = MO.getReg();
966      if (!Reg) continue;
967      if (TargetRegisterInfo::isVirtualRegister(Reg)) {
968        VirtOpEnd = i+1;
969        if (MO.isUse()) {
970          hasTiedOps = hasTiedOps ||
971                              MCID.getOperandConstraint(i, MCOI::TIED_TO) != -1;
972        } else {
973          if (MO.isEarlyClobber())
974            hasEarlyClobbers = true;
975          if (MO.getSubReg() && MI->readsVirtualRegister(Reg))
976            hasPartialRedefs = true;
977        }
978        continue;
979      }
980      if (!RegClassInfo.isAllocatable(Reg)) continue;
981      if (MO.isUse()) {
982        usePhysReg(MO);
983      } else if (MO.isEarlyClobber()) {
984        definePhysReg(MI, Reg, (MO.isImplicit() || MO.isDead()) ?
985                               regFree : regReserved);
986        hasEarlyClobbers = true;
987      } else
988        hasPhysDefs = true;
989    }
990
991    // The instruction may have virtual register operands that must be allocated
992    // the same register at use-time and def-time: early clobbers and tied
993    // operands. If there are also physical defs, these registers must avoid
994    // both physical defs and uses, making them more constrained than normal
995    // operands.
996    // Similarly, if there are multiple defs and tied operands, we must make
997    // sure the same register is allocated to uses and defs.
998    // We didn't detect inline asm tied operands above, so just make this extra
999    // pass for all inline asm.
1000    if (MI->isInlineAsm() || hasEarlyClobbers || hasPartialRedefs ||
1001        (hasTiedOps && (hasPhysDefs || MCID.getNumDefs() > 1))) {
1002      handleThroughOperands(MI, VirtDead);
1003      // Don't attempt coalescing when we have funny stuff going on.
1004      CopyDst = 0;
1005      // Pretend we have early clobbers so the use operands get marked below.
1006      // This is not necessary for the common case of a single tied use.
1007      hasEarlyClobbers = true;
1008    }
1009
1010    // Second scan.
1011    // Allocate virtreg uses.
1012    for (unsigned i = 0; i != VirtOpEnd; ++i) {
1013      MachineOperand &MO = MI->getOperand(i);
1014      if (!MO.isReg()) continue;
1015      unsigned Reg = MO.getReg();
1016      if (!TargetRegisterInfo::isVirtualRegister(Reg)) continue;
1017      if (MO.isUse()) {
1018        LiveRegMap::iterator LRI = reloadVirtReg(MI, i, Reg, CopyDst);
1019        unsigned PhysReg = LRI->PhysReg;
1020        CopySrc = (CopySrc == Reg || CopySrc == PhysReg) ? PhysReg : 0;
1021        if (setPhysReg(MI, i, PhysReg))
1022          killVirtReg(LRI);
1023      }
1024    }
1025
1026    MRI->addPhysRegsUsed(UsedInInstr);
1027
1028    // Track registers defined by instruction - early clobbers and tied uses at
1029    // this point.
1030    UsedInInstr.reset();
1031    if (hasEarlyClobbers) {
1032      for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
1033        MachineOperand &MO = MI->getOperand(i);
1034        if (!MO.isReg()) continue;
1035        unsigned Reg = MO.getReg();
1036        if (!Reg || !TargetRegisterInfo::isPhysicalRegister(Reg)) continue;
1037        // Look for physreg defs and tied uses.
1038        if (!MO.isDef() && !MI->isRegTiedToDefOperand(i)) continue;
1039        UsedInInstr.set(Reg);
1040        for (const uint16_t *AS = TRI->getAliasSet(Reg); *AS; ++AS)
1041          UsedInInstr.set(*AS);
1042      }
1043    }
1044
1045    unsigned DefOpEnd = MI->getNumOperands();
1046    if (MI->isCall()) {
1047      // Spill all virtregs before a call. This serves two purposes: 1. If an
1048      // exception is thrown, the landing pad is going to expect to find
1049      // registers in their spill slots, and 2. we don't have to wade through
1050      // all the <imp-def> operands on the call instruction.
1051      DefOpEnd = VirtOpEnd;
1052      DEBUG(dbgs() << "  Spilling remaining registers before call.\n");
1053      spillAll(MI);
1054
1055      // The imp-defs are skipped below, but we still need to mark those
1056      // registers as used by the function.
1057      SkippedInstrs.insert(&MCID);
1058    }
1059
1060    // Third scan.
1061    // Allocate defs and collect dead defs.
1062    for (unsigned i = 0; i != DefOpEnd; ++i) {
1063      MachineOperand &MO = MI->getOperand(i);
1064      if (!MO.isReg() || !MO.isDef() || !MO.getReg() || MO.isEarlyClobber())
1065        continue;
1066      unsigned Reg = MO.getReg();
1067
1068      if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
1069        if (!RegClassInfo.isAllocatable(Reg)) continue;
1070        definePhysReg(MI, Reg, (MO.isImplicit() || MO.isDead()) ?
1071                               regFree : regReserved);
1072        continue;
1073      }
1074      LiveRegMap::iterator LRI = defineVirtReg(MI, i, Reg, CopySrc);
1075      unsigned PhysReg = LRI->PhysReg;
1076      if (setPhysReg(MI, i, PhysReg)) {
1077        VirtDead.push_back(Reg);
1078        CopyDst = 0; // cancel coalescing;
1079      } else
1080        CopyDst = (CopyDst == Reg || CopyDst == PhysReg) ? PhysReg : 0;
1081    }
1082
1083    // Kill dead defs after the scan to ensure that multiple defs of the same
1084    // register are allocated identically. We didn't need to do this for uses
1085    // because we are crerating our own kill flags, and they are always at the
1086    // last use.
1087    for (unsigned i = 0, e = VirtDead.size(); i != e; ++i)
1088      killVirtReg(VirtDead[i]);
1089    VirtDead.clear();
1090
1091    MRI->addPhysRegsUsed(UsedInInstr);
1092
1093    if (CopyDst && CopyDst == CopySrc && CopyDstSub == CopySrcSub) {
1094      DEBUG(dbgs() << "-- coalescing: " << *MI);
1095      Coalesced.push_back(MI);
1096    } else {
1097      DEBUG(dbgs() << "<< " << *MI);
1098    }
1099  }
1100
1101  // Spill all physical registers holding virtual registers now.
1102  DEBUG(dbgs() << "Spilling live registers at end of block.\n");
1103  spillAll(MBB->getFirstTerminator());
1104
1105  // Erase all the coalesced copies. We are delaying it until now because
1106  // LiveVirtRegs might refer to the instrs.
1107  for (unsigned i = 0, e = Coalesced.size(); i != e; ++i)
1108    MBB->erase(Coalesced[i]);
1109  NumCopies += Coalesced.size();
1110
1111  // addRetOperands must run after we've seen all defs in this block.
1112  addRetOperands(MBB);
1113
1114  DEBUG(MBB->dump());
1115}
1116
1117/// runOnMachineFunction - Register allocate the whole function
1118///
1119bool RAFast::runOnMachineFunction(MachineFunction &Fn) {
1120  DEBUG(dbgs() << "********** FAST REGISTER ALLOCATION **********\n"
1121               << "********** Function: "
1122               << ((Value*)Fn.getFunction())->getName() << '\n');
1123  MF = &Fn;
1124  MRI = &MF->getRegInfo();
1125  TM = &Fn.getTarget();
1126  TRI = TM->getRegisterInfo();
1127  TII = TM->getInstrInfo();
1128  MRI->freezeReservedRegs(Fn);
1129  RegClassInfo.runOnMachineFunction(Fn);
1130  UsedInInstr.resize(TRI->getNumRegs());
1131
1132  assert(!MRI->isSSA() && "regalloc requires leaving SSA");
1133
1134  // initialize the virtual->physical register map to have a 'null'
1135  // mapping for all virtual registers
1136  StackSlotForVirtReg.resize(MRI->getNumVirtRegs());
1137  LiveVirtRegs.setUniverse(MRI->getNumVirtRegs());
1138
1139  // Loop over all of the basic blocks, eliminating virtual register references
1140  for (MachineFunction::iterator MBBi = Fn.begin(), MBBe = Fn.end();
1141       MBBi != MBBe; ++MBBi) {
1142    MBB = &*MBBi;
1143    AllocateBasicBlock();
1144  }
1145
1146  // Add the clobber lists for all the instructions we skipped earlier.
1147  for (SmallPtrSet<const MCInstrDesc*, 4>::const_iterator
1148       I = SkippedInstrs.begin(), E = SkippedInstrs.end(); I != E; ++I)
1149    if (const uint16_t *Defs = (*I)->getImplicitDefs())
1150      while (*Defs)
1151        MRI->setPhysRegUsed(*Defs++);
1152
1153  // All machine operands and other references to virtual registers have been
1154  // replaced. Remove the virtual registers.
1155  MRI->clearVirtRegs();
1156
1157  SkippedInstrs.clear();
1158  StackSlotForVirtReg.clear();
1159  LiveDbgValueMap.clear();
1160  return true;
1161}
1162
1163FunctionPass *llvm::createFastRegisterAllocator() {
1164  return new RAFast();
1165}
1166