1 //===--- LivePhysRegs.cpp - Live Physical Register Set --------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements the LivePhysRegs utility for tracking liveness of
11 // physical registers across machine instructions in forward or backward order.
12 // A more detailed description can be found in the corresponding header file.
14 //===----------------------------------------------------------------------===//
16 #include "llvm/CodeGen/LivePhysRegs.h"
17 #include "llvm/CodeGen/MachineFrameInfo.h"
18 #include "llvm/CodeGen/MachineFunction.h"
19 #include "llvm/CodeGen/MachineInstrBundle.h"
20 #include "llvm/CodeGen/MachineRegisterInfo.h"
21 #include "llvm/Config/llvm-config.h"
22 #include "llvm/Support/Debug.h"
23 #include "llvm/Support/raw_ostream.h"
27 /// Remove all registers from the set that get clobbered by the register
29 /// The clobbers set will be the list of live registers clobbered
31 void LivePhysRegs::removeRegsInMask(const MachineOperand
&MO
,
32 SmallVectorImpl
<std::pair
<MCPhysReg
, const MachineOperand
*>> *Clobbers
) {
33 RegisterSet::iterator LRI
= LiveRegs
.begin();
34 while (LRI
!= LiveRegs
.end()) {
35 if (MO
.clobbersPhysReg(*LRI
)) {
37 Clobbers
->push_back(std::make_pair(*LRI
, &MO
));
38 LRI
= LiveRegs
.erase(LRI
);
44 /// Remove defined registers and regmask kills from the set.
45 void LivePhysRegs::removeDefs(const MachineInstr
&MI
) {
46 for (ConstMIBundleOperands
O(MI
); O
.isValid(); ++O
) {
48 if (!O
->isDef() || O
->isDebug())
50 unsigned Reg
= O
->getReg();
51 if (!TargetRegisterInfo::isPhysicalRegister(Reg
))
54 } else if (O
->isRegMask())
59 /// Add uses to the set.
60 void LivePhysRegs::addUses(const MachineInstr
&MI
) {
61 for (ConstMIBundleOperands
O(MI
); O
.isValid(); ++O
) {
62 if (!O
->isReg() || !O
->readsReg() || O
->isDebug())
64 unsigned Reg
= O
->getReg();
65 if (!TargetRegisterInfo::isPhysicalRegister(Reg
))
71 /// Simulates liveness when stepping backwards over an instruction(bundle):
72 /// Remove Defs, add uses. This is the recommended way of calculating liveness.
73 void LivePhysRegs::stepBackward(const MachineInstr
&MI
) {
74 // Remove defined registers and regmask kills from the set.
77 // Add uses to the set.
81 /// Simulates liveness when stepping forward over an instruction(bundle): Remove
82 /// killed-uses, add defs. This is the not recommended way, because it depends
83 /// on accurate kill flags. If possible use stepBackward() instead of this
85 void LivePhysRegs::stepForward(const MachineInstr
&MI
,
86 SmallVectorImpl
<std::pair
<MCPhysReg
, const MachineOperand
*>> &Clobbers
) {
87 // Remove killed registers from the set.
88 for (ConstMIBundleOperands
O(MI
); O
.isValid(); ++O
) {
89 if (O
->isReg() && !O
->isDebug()) {
90 unsigned Reg
= O
->getReg();
91 if (!TargetRegisterInfo::isPhysicalRegister(Reg
))
94 // Note, dead defs are still recorded. The caller should decide how to
96 Clobbers
.push_back(std::make_pair(Reg
, &*O
));
103 } else if (O
->isRegMask())
104 removeRegsInMask(*O
, &Clobbers
);
107 // Add defs to the set.
108 for (auto Reg
: Clobbers
) {
109 // Skip dead defs and registers clobbered by regmasks. They shouldn't
110 // be added to the set.
111 if (Reg
.second
->isReg() && Reg
.second
->isDead())
113 if (Reg
.second
->isRegMask() &&
114 MachineOperand::clobbersPhysReg(Reg
.second
->getRegMask(), Reg
.first
))
120 /// Prin the currently live registers to OS.
121 void LivePhysRegs::print(raw_ostream
&OS
) const {
122 OS
<< "Live Registers:";
124 OS
<< " (uninitialized)\n";
133 for (const_iterator I
= begin(), E
= end(); I
!= E
; ++I
)
134 OS
<< " " << printReg(*I
, TRI
);
138 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
139 LLVM_DUMP_METHOD
void LivePhysRegs::dump() const {
140 dbgs() << " " << *this;
144 bool LivePhysRegs::available(const MachineRegisterInfo
&MRI
,
145 MCPhysReg Reg
) const {
146 if (LiveRegs
.count(Reg
))
148 if (MRI
.isReserved(Reg
))
150 for (MCRegAliasIterator
R(Reg
, TRI
, false); R
.isValid(); ++R
) {
151 if (LiveRegs
.count(*R
))
157 /// Add live-in registers of basic block \p MBB to \p LiveRegs.
158 void LivePhysRegs::addBlockLiveIns(const MachineBasicBlock
&MBB
) {
159 for (const auto &LI
: MBB
.liveins()) {
160 MCPhysReg Reg
= LI
.PhysReg
;
161 LaneBitmask Mask
= LI
.LaneMask
;
162 MCSubRegIndexIterator
S(Reg
, TRI
);
163 assert(Mask
.any() && "Invalid livein mask");
164 if (Mask
.all() || !S
.isValid()) {
168 for (; S
.isValid(); ++S
) {
169 unsigned SI
= S
.getSubRegIndex();
170 if ((Mask
& TRI
->getSubRegIndexLaneMask(SI
)).any())
171 addReg(S
.getSubReg());
176 /// Adds all callee saved registers to \p LiveRegs.
177 static void addCalleeSavedRegs(LivePhysRegs
&LiveRegs
,
178 const MachineFunction
&MF
) {
179 const MachineRegisterInfo
&MRI
= MF
.getRegInfo();
180 for (const MCPhysReg
*CSR
= MRI
.getCalleeSavedRegs(); CSR
&& *CSR
; ++CSR
)
181 LiveRegs
.addReg(*CSR
);
184 void LivePhysRegs::addPristines(const MachineFunction
&MF
) {
185 const MachineFrameInfo
&MFI
= MF
.getFrameInfo();
186 if (!MFI
.isCalleeSavedInfoValid())
188 /// This function will usually be called on an empty object, handle this
189 /// as a special case.
191 /// Add all callee saved regs, then remove the ones that are saved and
193 addCalleeSavedRegs(*this, MF
);
194 /// Remove the ones that are not saved/restored; they are pristine.
195 for (const CalleeSavedInfo
&Info
: MFI
.getCalleeSavedInfo())
196 removeReg(Info
.getReg());
199 /// If a callee-saved register that is not pristine is already present
200 /// in the set, we should make sure that it stays in it. Precompute the
201 /// set of pristine registers in a separate object.
202 /// Add all callee saved regs, then remove the ones that are saved+restored.
203 LivePhysRegs
Pristine(*TRI
);
204 addCalleeSavedRegs(Pristine
, MF
);
205 /// Remove the ones that are not saved/restored; they are pristine.
206 for (const CalleeSavedInfo
&Info
: MFI
.getCalleeSavedInfo())
207 Pristine
.removeReg(Info
.getReg());
208 for (MCPhysReg R
: Pristine
)
212 void LivePhysRegs::addLiveOutsNoPristines(const MachineBasicBlock
&MBB
) {
213 // To get the live-outs we simply merge the live-ins of all successors.
214 for (const MachineBasicBlock
*Succ
: MBB
.successors())
215 addBlockLiveIns(*Succ
);
216 if (MBB
.isReturnBlock()) {
217 // Return blocks are a special case because we currently don't mark up
218 // return instructions completely: specifically, there is no explicit
219 // use for callee-saved registers. So we add all callee saved registers
220 // that are saved and restored (somewhere). This does not include
221 // callee saved registers that are unused and hence not saved and
222 // restored; they are called pristine.
223 // FIXME: PEI should add explicit markings to return instructions
224 // instead of implicitly handling them here.
225 const MachineFunction
&MF
= *MBB
.getParent();
226 const MachineFrameInfo
&MFI
= MF
.getFrameInfo();
227 if (MFI
.isCalleeSavedInfoValid()) {
228 for (const CalleeSavedInfo
&Info
: MFI
.getCalleeSavedInfo())
229 if (Info
.isRestored())
230 addReg(Info
.getReg());
235 void LivePhysRegs::addLiveOuts(const MachineBasicBlock
&MBB
) {
236 const MachineFunction
&MF
= *MBB
.getParent();
238 addLiveOutsNoPristines(MBB
);
241 void LivePhysRegs::addLiveIns(const MachineBasicBlock
&MBB
) {
242 const MachineFunction
&MF
= *MBB
.getParent();
244 addBlockLiveIns(MBB
);
247 void llvm::computeLiveIns(LivePhysRegs
&LiveRegs
,
248 const MachineBasicBlock
&MBB
) {
249 const MachineFunction
&MF
= *MBB
.getParent();
250 const MachineRegisterInfo
&MRI
= MF
.getRegInfo();
251 const TargetRegisterInfo
&TRI
= *MRI
.getTargetRegisterInfo();
253 LiveRegs
.addLiveOutsNoPristines(MBB
);
254 for (const MachineInstr
&MI
: make_range(MBB
.rbegin(), MBB
.rend()))
255 LiveRegs
.stepBackward(MI
);
258 void llvm::addLiveIns(MachineBasicBlock
&MBB
, const LivePhysRegs
&LiveRegs
) {
259 assert(MBB
.livein_empty() && "Expected empty live-in list");
260 const MachineFunction
&MF
= *MBB
.getParent();
261 const MachineRegisterInfo
&MRI
= MF
.getRegInfo();
262 const TargetRegisterInfo
&TRI
= *MRI
.getTargetRegisterInfo();
263 for (MCPhysReg Reg
: LiveRegs
) {
264 if (MRI
.isReserved(Reg
))
266 // Skip the register if we are about to add one of its super registers.
267 bool ContainsSuperReg
= false;
268 for (MCSuperRegIterator
SReg(Reg
, &TRI
); SReg
.isValid(); ++SReg
) {
269 if (LiveRegs
.contains(*SReg
) && !MRI
.isReserved(*SReg
)) {
270 ContainsSuperReg
= true;
274 if (ContainsSuperReg
)
280 void llvm::recomputeLivenessFlags(MachineBasicBlock
&MBB
) {
281 const MachineFunction
&MF
= *MBB
.getParent();
282 const MachineRegisterInfo
&MRI
= MF
.getRegInfo();
283 const TargetRegisterInfo
&TRI
= *MRI
.getTargetRegisterInfo();
285 // We walk through the block backwards and start with the live outs.
286 LivePhysRegs LiveRegs
;
288 LiveRegs
.addLiveOutsNoPristines(MBB
);
290 for (MachineInstr
&MI
: make_range(MBB
.rbegin(), MBB
.rend())) {
291 // Recompute dead flags.
292 for (MIBundleOperands
MO(MI
); MO
.isValid(); ++MO
) {
293 if (!MO
->isReg() || !MO
->isDef() || MO
->isDebug())
296 unsigned Reg
= MO
->getReg();
299 assert(TargetRegisterInfo::isPhysicalRegister(Reg
));
301 bool IsNotLive
= LiveRegs
.available(MRI
, Reg
);
302 MO
->setIsDead(IsNotLive
);
305 // Step backward over defs.
306 LiveRegs
.removeDefs(MI
);
308 // Recompute kill flags.
309 for (MIBundleOperands
MO(MI
); MO
.isValid(); ++MO
) {
310 if (!MO
->isReg() || !MO
->readsReg() || MO
->isDebug())
313 unsigned Reg
= MO
->getReg();
316 assert(TargetRegisterInfo::isPhysicalRegister(Reg
));
318 bool IsNotLive
= LiveRegs
.available(MRI
, Reg
);
319 MO
->setIsKill(IsNotLive
);
322 // Complete the stepbackward.
323 LiveRegs
.addUses(MI
);
327 void llvm::computeAndAddLiveIns(LivePhysRegs
&LiveRegs
,
328 MachineBasicBlock
&MBB
) {
329 computeLiveIns(LiveRegs
, MBB
);
330 addLiveIns(MBB
, LiveRegs
);