blob: eef7643367fb672af63538cec3a6759f7659cc03 [file] [log] [blame]
Juergen Ributzka310034e2013-12-14 06:52:56 +00001//===--- LivePhysRegs.cpp - Live Physical Register Set --------------------===//
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 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.
13//
14//===----------------------------------------------------------------------===//
15
16#include "llvm/CodeGen/LivePhysRegs.h"
17#include "llvm/CodeGen/MachineInstrBundle.h"
18#include "llvm/Support/Debug.h"
Benjamin Kramerde9f0902015-03-23 18:23:08 +000019#include "llvm/Support/raw_ostream.h"
Juergen Ributzka310034e2013-12-14 06:52:56 +000020using namespace llvm;
21
22
23/// \brief Remove all registers from the set that get clobbered by the register
24/// mask.
Pete Cooper7605e372015-05-05 20:14:22 +000025/// The clobbers set will be the list of live registers clobbered
26/// by the regmask.
27void LivePhysRegs::removeRegsInMask(const MachineOperand &MO,
28 SmallVectorImpl<std::pair<unsigned, const MachineOperand*>> *Clobbers) {
Juergen Ributzka310034e2013-12-14 06:52:56 +000029 SparseSet<unsigned>::iterator LRI = LiveRegs.begin();
30 while (LRI != LiveRegs.end()) {
Pete Cooper7605e372015-05-05 20:14:22 +000031 if (MO.clobbersPhysReg(*LRI)) {
32 if (Clobbers)
33 Clobbers->push_back(std::make_pair(*LRI, &MO));
Juergen Ributzka310034e2013-12-14 06:52:56 +000034 LRI = LiveRegs.erase(LRI);
Pete Cooper7605e372015-05-05 20:14:22 +000035 } else
Juergen Ributzka310034e2013-12-14 06:52:56 +000036 ++LRI;
37 }
38}
39
40/// Simulates liveness when stepping backwards over an instruction(bundle):
41/// Remove Defs, add uses. This is the recommended way of calculating liveness.
42void LivePhysRegs::stepBackward(const MachineInstr &MI) {
43 // Remove defined registers and regmask kills from the set.
44 for (ConstMIBundleOperands O(&MI); O.isValid(); ++O) {
45 if (O->isReg()) {
46 if (!O->isDef())
47 continue;
48 unsigned Reg = O->getReg();
49 if (Reg == 0)
50 continue;
51 removeReg(Reg);
52 } else if (O->isRegMask())
Pete Cooper7605e372015-05-05 20:14:22 +000053 removeRegsInMask(*O, nullptr);
Juergen Ributzka310034e2013-12-14 06:52:56 +000054 }
55
56 // Add uses to the set.
57 for (ConstMIBundleOperands O(&MI); O.isValid(); ++O) {
58 if (!O->isReg() || !O->readsReg() || O->isUndef())
59 continue;
60 unsigned Reg = O->getReg();
61 if (Reg == 0)
62 continue;
63 addReg(Reg);
64 }
65}
66
67/// Simulates liveness when stepping forward over an instruction(bundle): Remove
68/// killed-uses, add defs. This is the not recommended way, because it depends
69/// on accurate kill flags. If possible use stepBackwards() instead of this
70/// function.
Pete Cooper7605e372015-05-05 20:14:22 +000071void LivePhysRegs::stepForward(const MachineInstr &MI,
72 SmallVectorImpl<std::pair<unsigned, const MachineOperand*>> &Clobbers) {
Juergen Ributzka310034e2013-12-14 06:52:56 +000073 // Remove killed registers from the set.
74 for (ConstMIBundleOperands O(&MI); O.isValid(); ++O) {
75 if (O->isReg()) {
76 unsigned Reg = O->getReg();
77 if (Reg == 0)
78 continue;
79 if (O->isDef()) {
Pete Cooper27483912015-05-06 22:51:04 +000080 // Note, dead defs are still recorded. The caller should decide how to
81 // handle them.
82 Clobbers.push_back(std::make_pair(Reg, &*O));
Juergen Ributzka310034e2013-12-14 06:52:56 +000083 } else {
84 if (!O->isKill())
85 continue;
86 assert(O->isUse());
87 removeReg(Reg);
88 }
89 } else if (O->isRegMask())
Pete Cooper7605e372015-05-05 20:14:22 +000090 removeRegsInMask(*O, &Clobbers);
Juergen Ributzka310034e2013-12-14 06:52:56 +000091 }
92
93 // Add defs to the set.
Pete Cooper27483912015-05-06 22:51:04 +000094 for (auto Reg : Clobbers) {
95 // Skip dead defs. They shouldn't be added to the set.
96 if (Reg.second->isReg() && Reg.second->isDead())
97 continue;
Pete Cooper7605e372015-05-05 20:14:22 +000098 addReg(Reg.first);
Pete Cooper27483912015-05-06 22:51:04 +000099 }
Juergen Ributzka310034e2013-12-14 06:52:56 +0000100}
101
102/// Prin the currently live registers to OS.
103void LivePhysRegs::print(raw_ostream &OS) const {
104 OS << "Live Registers:";
105 if (!TRI) {
106 OS << " (uninitialized)\n";
107 return;
108 }
109
110 if (empty()) {
111 OS << " (empty)\n";
112 return;
113 }
114
115 for (const_iterator I = begin(), E = end(); I != E; ++I)
116 OS << " " << PrintReg(*I, TRI);
117 OS << "\n";
118}
119
120/// Dumps the currently live registers to the debug output.
121void LivePhysRegs::dump() const {
122#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
123 dbgs() << " " << *this;
124#endif
125}