Add a LiveRangeEdit delegate callback before shrinking a live range.
[oota-llvm.git] / lib / CodeGen / LiveRangeEdit.h
1 //===---- LiveRangeEdit.h - Basic tools for split and spill -----*- 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 // The LiveRangeEdit class represents changes done to a virtual register when it
11 // is spilled or split.
12 //
13 // The parent register is never changed. Instead, a number of new virtual
14 // registers are created and added to the newRegs vector.
15 //
16 //===----------------------------------------------------------------------===//
17
18 #ifndef LLVM_CODEGEN_LIVERANGEEDIT_H
19 #define LLVM_CODEGEN_LIVERANGEEDIT_H
20
21 #include "llvm/CodeGen/LiveInterval.h"
22 #include "llvm/ADT/SmallPtrSet.h"
23
24 namespace llvm {
25
26 class AliasAnalysis;
27 class LiveIntervals;
28 class MachineRegisterInfo;
29 class VirtRegMap;
30
31 class LiveRangeEdit {
32 public:
33   /// Callback methods for LiveRangeEdit owners.
34   struct Delegate {
35     /// Called immediately before erasing a dead machine instruction.
36     virtual void LRE_WillEraseInstruction(MachineInstr *MI) {}
37
38     /// Called when a virtual register is no longer used. Return false to defer
39     /// its deletion from LiveIntervals.
40     virtual bool LRE_CanEraseVirtReg(unsigned) { return true; }
41
42     /// Called before shrinking the live range of a virtual register.
43     virtual void LRE_WillShrinkVirtReg(unsigned) {}
44
45     virtual ~Delegate() {}
46   };
47
48 private:
49   LiveInterval &parent_;
50   SmallVectorImpl<LiveInterval*> &newRegs_;
51   Delegate *const delegate_;
52   const SmallVectorImpl<LiveInterval*> *uselessRegs_;
53
54   /// firstNew_ - Index of the first register added to newRegs_.
55   const unsigned firstNew_;
56
57   /// scannedRemattable_ - true when remattable values have been identified.
58   bool scannedRemattable_;
59
60   /// remattable_ - Values defined by remattable instructions as identified by
61   /// tii.isTriviallyReMaterializable().
62   SmallPtrSet<const VNInfo*,4> remattable_;
63
64   /// rematted_ - Values that were actually rematted, and so need to have their
65   /// live range trimmed or entirely removed.
66   SmallPtrSet<const VNInfo*,4> rematted_;
67
68   /// scanRemattable - Identify the parent_ values that may rematerialize.
69   void scanRemattable(LiveIntervals &lis,
70                       const TargetInstrInfo &tii,
71                       AliasAnalysis *aa);
72
73   /// allUsesAvailableAt - Return true if all registers used by OrigMI at
74   /// OrigIdx are also available with the same value at UseIdx.
75   bool allUsesAvailableAt(const MachineInstr *OrigMI, SlotIndex OrigIdx,
76                           SlotIndex UseIdx, LiveIntervals &lis);
77
78 public:
79   /// Create a LiveRangeEdit for breaking down parent into smaller pieces.
80   /// @param parent The register being spilled or split.
81   /// @param newRegs List to receive any new registers created. This needn't be
82   ///                empty initially, any existing registers are ignored.
83   /// @param uselessRegs List of registers that can't be used when
84   ///        rematerializing values because they are about to be removed.
85   LiveRangeEdit(LiveInterval &parent,
86                 SmallVectorImpl<LiveInterval*> &newRegs,
87                 Delegate *delegate = 0,
88                 const SmallVectorImpl<LiveInterval*> *uselessRegs = 0)
89     : parent_(parent), newRegs_(newRegs),
90       delegate_(delegate),
91       uselessRegs_(uselessRegs),
92       firstNew_(newRegs.size()),
93       scannedRemattable_(false) {}
94
95   LiveInterval &getParent() const { return parent_; }
96   unsigned getReg() const { return parent_.reg; }
97
98   /// Iterator for accessing the new registers added by this edit.
99   typedef SmallVectorImpl<LiveInterval*>::const_iterator iterator;
100   iterator begin() const { return newRegs_.begin()+firstNew_; }
101   iterator end() const { return newRegs_.end(); }
102   unsigned size() const { return newRegs_.size()-firstNew_; }
103   bool empty() const { return size() == 0; }
104   LiveInterval *get(unsigned idx) const { return newRegs_[idx+firstNew_]; }
105
106   /// FIXME: Temporary accessors until we can get rid of
107   /// LiveIntervals::AddIntervalsForSpills
108   SmallVectorImpl<LiveInterval*> *getNewVRegs() { return &newRegs_; }
109   const SmallVectorImpl<LiveInterval*> *getUselessVRegs() {
110     return uselessRegs_;
111   }
112
113   /// create - Create a new register with the same class and stack slot as
114   /// parent.
115   LiveInterval &create(MachineRegisterInfo&, LiveIntervals&, VirtRegMap&);
116
117   /// anyRematerializable - Return true if any parent values may be
118   /// rematerializable.
119   /// This function must be called before any rematerialization is attempted.
120   bool anyRematerializable(LiveIntervals&, const TargetInstrInfo&,
121                            AliasAnalysis*);
122
123   /// Remat - Information needed to rematerialize at a specific location.
124   struct Remat {
125     VNInfo *ParentVNI;      // parent_'s value at the remat location.
126     MachineInstr *OrigMI;   // Instruction defining ParentVNI.
127     explicit Remat(VNInfo *ParentVNI) : ParentVNI(ParentVNI), OrigMI(0) {}
128   };
129
130   /// canRematerializeAt - Determine if ParentVNI can be rematerialized at
131   /// UseIdx. It is assumed that parent_.getVNINfoAt(UseIdx) == ParentVNI.
132   /// When cheapAsAMove is set, only cheap remats are allowed.
133   bool canRematerializeAt(Remat &RM,
134                           SlotIndex UseIdx,
135                           bool cheapAsAMove,
136                           LiveIntervals &lis);
137
138   /// rematerializeAt - Rematerialize RM.ParentVNI into DestReg by inserting an
139   /// instruction into MBB before MI. The new instruction is mapped, but
140   /// liveness is not updated.
141   /// Return the SlotIndex of the new instruction.
142   SlotIndex rematerializeAt(MachineBasicBlock &MBB,
143                             MachineBasicBlock::iterator MI,
144                             unsigned DestReg,
145                             const Remat &RM,
146                             LiveIntervals&,
147                             const TargetInstrInfo&,
148                             const TargetRegisterInfo&);
149
150   /// markRematerialized - explicitly mark a value as rematerialized after doing
151   /// it manually.
152   void markRematerialized(const VNInfo *ParentVNI) {
153     rematted_.insert(ParentVNI);
154   }
155
156   /// didRematerialize - Return true if ParentVNI was rematerialized anywhere.
157   bool didRematerialize(const VNInfo *ParentVNI) const {
158     return rematted_.count(ParentVNI);
159   }
160
161   /// eraseVirtReg - Notify the delegate that Reg is no longer in use, and try
162   /// to erase it from LIS.
163   void eraseVirtReg(unsigned Reg, LiveIntervals &LIS);
164
165   /// eliminateDeadDefs - Try to delete machine instructions that are now dead
166   /// (allDefsAreDead returns true). This may cause live intervals to be trimmed
167   /// and further dead efs to be eliminated.
168   void eliminateDeadDefs(SmallVectorImpl<MachineInstr*> &Dead,
169                          LiveIntervals&,
170                          const TargetInstrInfo&);
171
172 };
173
174 }
175
176 #endif