blob: 8c3971dee144b8bd67003c35769ffd1f0a423486 [file] [log] [blame]
Andrew Trick14e8d712010-10-22 23:09:15 +00001//===-- 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
Andrew Trick14e8d712010-10-22 23:09:15 +000040#include "llvm/ADT/OwningPtr.h"
Andrew Trick14e8d712010-10-22 23:09:15 +000041
42namespace llvm {
43
Andrew Tricke16eecc2010-10-26 18:34:01 +000044template<typename T> class SmallVectorImpl;
45class TargetRegisterInfo;
Andrew Trick14e8d712010-10-22 23:09:15 +000046class VirtRegMap;
Andrew Tricke16eecc2010-10-26 18:34:01 +000047class LiveIntervals;
Andrew Trickf4baeaf2010-11-10 19:18:47 +000048class Spiller;
Andrew Tricke16eecc2010-10-26 18:34:01 +000049
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;
Andrew Trick14e8d712010-10-22 23:09:15 +000064
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:
Andrew Trick14e8d712010-10-22 23:09:15 +000074 // 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
Andrew Tricke141a492010-11-08 18:02:08 +000098 // 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
Andrew Trick14e8d712010-10-22 23:09:15 +0000102 RegAllocBase(): tri_(0), vrm_(0), lis_(0) {}
103
Andrew Trickf4331062010-10-22 23:33:19 +0000104 virtual ~RegAllocBase() {}
105
Andrew Trick14e8d712010-10-22 23:09:15 +0000106 // A RegAlloc pass should call this before allocatePhysRegs.
107 void init(const TargetRegisterInfo &tri, VirtRegMap &vrm, LiveIntervals &lis);
108
Andrew Tricke16eecc2010-10-26 18:34:01 +0000109 // 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();
Andrew Trick14e8d712010-10-22 23:09:15 +0000116
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000117 // Get a temporary reference to a Spiller instance.
118 virtual Spiller &spiller() = 0;
119
Andrew Trick14e8d712010-10-22 23:09:15 +0000120 // A RegAlloc pass should override this to provide the allocation heuristics.
Andrew Tricke16eecc2010-10-26 18:34:01 +0000121 // 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
Andrew Trick14e8d712010-10-22 23:09:15 +0000123 // converge quickly toward fully spilled live ranges.
124 virtual unsigned selectOrSplit(LiveInterval &lvr,
Andrew Tricke16eecc2010-10-26 18:34:01 +0000125 SmallVectorImpl<LiveInterval*> &splitLVRs) = 0;
Andrew Trick14e8d712010-10-22 23:09:15 +0000126
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
Andrew Tricke141a492010-11-08 18:02:08 +0000131 // 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
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000135 // 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
Andrew Trick071d1c02010-11-09 21:04:34 +0000141#ifndef NDEBUG
142 // Verify each LiveIntervalUnion.
143 void verify();
144#endif
145
Andrew Trick14e8d712010-10-22 23:09:15 +0000146private:
Andrew Tricke16eecc2010-10-26 18:34:01 +0000147 void seedLiveVirtRegs(LiveVirtRegQueue &lvrQ);
Andrew Trickf4baeaf2010-11-10 19:18:47 +0000148
149 void spillReg(unsigned reg, SmallVectorImpl<LiveInterval*> &splitLVRs);
Andrew Trick14e8d712010-10-22 23:09:15 +0000150};
151
Andrew Trick14e8d712010-10-22 23:09:15 +0000152} // end namespace llvm
153
154#endif // !defined(LLVM_CODEGEN_REGALLOCBASE)