blob: b6369275051faed35ccb43b0349bfa62615ff1e3 [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()) {
80 if (!O->isDead())
Pete Cooper7605e372015-05-05 20:14:22 +000081 Clobbers.push_back(std::make_pair(Reg, &*O));
Juergen Ributzka310034e2013-12-14 06:52:56 +000082 } else {
83 if (!O->isKill())
84 continue;
85 assert(O->isUse());
86 removeReg(Reg);
87 }
88 } else if (O->isRegMask())
Pete Cooper7605e372015-05-05 20:14:22 +000089 removeRegsInMask(*O, &Clobbers);
Juergen Ributzka310034e2013-12-14 06:52:56 +000090 }
91
92 // Add defs to the set.
Pete Cooper7605e372015-05-05 20:14:22 +000093 for (auto Reg : Clobbers)
94 addReg(Reg.first);
Juergen Ributzka310034e2013-12-14 06:52:56 +000095}
96
97/// Prin the currently live registers to OS.
98void LivePhysRegs::print(raw_ostream &OS) const {
99 OS << "Live Registers:";
100 if (!TRI) {
101 OS << " (uninitialized)\n";
102 return;
103 }
104
105 if (empty()) {
106 OS << " (empty)\n";
107 return;
108 }
109
110 for (const_iterator I = begin(), E = end(); I != E; ++I)
111 OS << " " << PrintReg(*I, TRI);
112 OS << "\n";
113}
114
115/// Dumps the currently live registers to the debug output.
116void LivePhysRegs::dump() const {
117#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
118 dbgs() << " " << *this;
119#endif
120}