RegAllocBase.h revision f4baeaf8485f01beda46d29fd55753199dc68070
1//===-- RegAllocBase.h - basic regalloc interface and driver --*- C++ -*---===//
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 defines the RegAllocBase class, which is the skeleton of a basic
11// register allocation algorithm and interface for extending it. It provides the
12// building blocks on which to construct other experimental allocators and test
13// the validity of two principles:
14//
15// - If virtual and physical register liveness is modeled using intervals, then
16// on-the-fly interference checking is cheap. Furthermore, interferences can be
17// lazily cached and reused.
18//
19// - Register allocation complexity, and generated code performance is
20// determined by the effectiveness of live range splitting rather than optimal
21// coloring.
22//
23// Following the first principle, interfering checking revolves around the
24// LiveIntervalUnion data structure.
25//
26// To fulfill the second principle, the basic allocator provides a driver for
27// incremental splitting. It essentially punts on the problem of register
28// coloring, instead driving the assignment of virtual to physical registers by
29// the cost of splitting. The basic allocator allows for heuristic reassignment
30// of registers, if a more sophisticated allocator chooses to do that.
31//
32// This framework provides a way to engineer the compile time vs. code
33// quality trade-off without relying a particular theoretical solver.
34//
35//===----------------------------------------------------------------------===//
36
37#ifndef LLVM_CODEGEN_REGALLOCBASE
38#define LLVM_CODEGEN_REGALLOCBASE
39
40#include "llvm/ADT/OwningPtr.h"
41
42namespace llvm {
43
44template<typename T> class SmallVectorImpl;
45class TargetRegisterInfo;
46class VirtRegMap;
47class LiveIntervals;
48class Spiller;
49
50// Heuristic that determines the priority of assigning virtual to physical
51// registers. The main impact of the heuristic is expected to be compile time.
52// The default is to simply compare spill weights.
53struct LessSpillWeightPriority
54  : public std::binary_function<LiveInterval,LiveInterval, bool> {
55  bool operator()(const LiveInterval *left, const LiveInterval *right) const {
56    return left->weight < right->weight;
57  }
58};
59
60// Forward declare a priority queue of live virtual registers. If an
61// implementation needs to prioritize by anything other than spill weight, then
62// this will become an abstract base class with virtual calls to push/get.
63class LiveVirtRegQueue;
64
65/// RegAllocBase provides the register allocation driver and interface that can
66/// be extended to add interesting heuristics.
67///
68/// More sophisticated allocators must override the selectOrSplit() method to
69/// implement live range splitting and must specify a comparator to determine
70/// register assignment priority. LessSpillWeightPriority is provided as a
71/// standard comparator.
72class RegAllocBase {
73protected:
74  // Array of LiveIntervalUnions indexed by physical register.
75  class LIUArray {
76    unsigned nRegs_;
77    OwningArrayPtr<LiveIntervalUnion> array_;
78  public:
79    LIUArray(): nRegs_(0) {}
80
81    unsigned numRegs() const { return nRegs_; }
82
83    void init(unsigned nRegs);
84
85    void clear();
86
87    LiveIntervalUnion& operator[](unsigned physReg) {
88      assert(physReg <  nRegs_ && "physReg out of bounds");
89      return array_[physReg];
90    }
91  };
92
93  const TargetRegisterInfo *tri_;
94  VirtRegMap *vrm_;
95  LiveIntervals *lis_;
96  LIUArray physReg2liu_;
97
98  // Current queries, one per physreg. They must be reinitialized each time we
99  // query on a new live virtual register.
100  OwningArrayPtr<LiveIntervalUnion::Query> queries_;
101
102  RegAllocBase(): tri_(0), vrm_(0), lis_(0) {}
103
104  virtual ~RegAllocBase() {}
105
106  // A RegAlloc pass should call this before allocatePhysRegs.
107  void init(const TargetRegisterInfo &tri, VirtRegMap &vrm, LiveIntervals &lis);
108
109  // The top-level driver. The output is a VirtRegMap that us updated with
110  // physical register assignments.
111  //
112  // If an implementation wants to override the LiveInterval comparator, we
113  // should modify this interface to allow passing in an instance derived from
114  // LiveVirtRegQueue.
115  void allocatePhysRegs();
116
117  // Get a temporary reference to a Spiller instance.
118  virtual Spiller &spiller() = 0;
119
120  // A RegAlloc pass should override this to provide the allocation heuristics.
121  // Each call must guarantee forward progess by returning an available PhysReg
122  // or new set of split live virtual registers. It is up to the splitter to
123  // converge quickly toward fully spilled live ranges.
124  virtual unsigned selectOrSplit(LiveInterval &lvr,
125                                 SmallVectorImpl<LiveInterval*> &splitLVRs) = 0;
126
127  // A RegAlloc pass should call this when PassManager releases its memory.
128  virtual void releaseMemory();
129
130  // Helper for checking interference between a live virtual register and a
131  // physical register, including all its register aliases. If an interference
132  // exists, return the interfering register, which may be preg or an alias.
133  unsigned checkPhysRegInterference(LiveInterval& lvr, unsigned preg);
134
135  // Helper for spilling all live virtual registers currently unified under preg
136  // that interfere with the most recently queried lvr.  Return true if spilling
137  // was successful, and append any new spilled/split intervals to splitLVRs.
138  bool spillInterferences(unsigned preg,
139                          SmallVectorImpl<LiveInterval*> &splitLVRs);
140
141#ifndef NDEBUG
142  // Verify each LiveIntervalUnion.
143  void verify();
144#endif
145
146private:
147  void seedLiveVirtRegs(LiveVirtRegQueue &lvrQ);
148
149  void spillReg(unsigned reg, SmallVectorImpl<LiveInterval*> &splitLVRs);
150};
151
152} // end namespace llvm
153
154#endif // !defined(LLVM_CODEGEN_REGALLOCBASE)
155