blob: 998c396924bc38d5872653019485f7f0c09ec59b [file] [log] [blame]
Alexey Samsonov414b6fb2014-04-30 21:34:11 +00001//===-- llvm/CodeGen/AsmPrinter/DbgValueHistoryCalculator.cpp -------------===//
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#include "DbgValueHistoryCalculator.h"
Alexey Samsonovdfcaf9c2014-05-20 18:34:54 +000011#include "llvm/ADT/SmallVector.h"
Alexey Samsonov414b6fb2014-04-30 21:34:11 +000012#include "llvm/CodeGen/MachineBasicBlock.h"
13#include "llvm/CodeGen/MachineFunction.h"
Adrian Prantlb1416832014-08-01 22:11:58 +000014#include "llvm/IR/DebugInfo.h"
Alexey Samsonov414b6fb2014-04-30 21:34:11 +000015#include "llvm/Support/Debug.h"
16#include "llvm/Target/TargetRegisterInfo.h"
Alexey Samsonovdfcaf9c2014-05-20 18:34:54 +000017#include <algorithm>
18#include <map>
Alexey Samsonov8000e272014-06-09 21:53:47 +000019#include <set>
Alexey Samsonov414b6fb2014-04-30 21:34:11 +000020
21#define DEBUG_TYPE "dwarfdebug"
22
23namespace llvm {
24
Alexey Samsonovdfcaf9c2014-05-20 18:34:54 +000025// \brief If @MI is a DBG_VALUE with debug value described by a
26// defined register, returns the number of this register.
27// In the other case, returns 0.
28static unsigned isDescribedByReg(const MachineInstr &MI) {
29 assert(MI.isDebugValue());
Adrian Prantlb458dc22014-10-01 18:10:54 +000030 assert(MI.getNumOperands() == 3);
Alexey Samsonovdfcaf9c2014-05-20 18:34:54 +000031 // If location of variable is described using a register (directly or
32 // indirecltly), this register is always a first operand.
33 return MI.getOperand(0).isReg() ? MI.getOperand(0).getReg() : 0;
34}
35
Alexey Samsonovbb2990d2014-05-27 23:09:50 +000036void DbgValueHistoryMap::startInstrRange(const MDNode *Var,
37 const MachineInstr &MI) {
38 // Instruction range should start with a DBG_VALUE instruction for the
39 // variable.
Adrian Prantlb458dc22014-10-01 18:10:54 +000040 assert(MI.isDebugValue() && getEntireVariable(MI.getDebugVariable()) == Var);
Alexey Samsonovbb2990d2014-05-27 23:09:50 +000041 auto &Ranges = VarInstrRanges[Var];
42 if (!Ranges.empty() && Ranges.back().second == nullptr &&
43 Ranges.back().first->isIdenticalTo(&MI)) {
44 DEBUG(dbgs() << "Coalescing identical DBG_VALUE entries:\n"
45 << "\t" << Ranges.back().first << "\t" << MI << "\n");
46 return;
47 }
48 Ranges.push_back(std::make_pair(&MI, nullptr));
49}
50
51void DbgValueHistoryMap::endInstrRange(const MDNode *Var,
52 const MachineInstr &MI) {
53 auto &Ranges = VarInstrRanges[Var];
54 // Verify that the current instruction range is not yet closed.
55 assert(!Ranges.empty() && Ranges.back().second == nullptr);
56 // For now, instruction ranges are not allowed to cross basic block
57 // boundaries.
58 assert(Ranges.back().first->getParent() == MI.getParent());
59 Ranges.back().second = &MI;
60}
61
62unsigned DbgValueHistoryMap::getRegisterForVar(const MDNode *Var) const {
63 const auto &I = VarInstrRanges.find(Var);
64 if (I == VarInstrRanges.end())
65 return 0;
66 const auto &Ranges = I->second;
67 if (Ranges.empty() || Ranges.back().second != nullptr)
68 return 0;
69 return isDescribedByReg(*Ranges.back().first);
70}
71
72namespace {
73// Maps physreg numbers to the variables they describe.
74typedef std::map<unsigned, SmallVector<const MDNode *, 1>> RegDescribedVarsMap;
75}
76
Alexey Samsonovdfcaf9c2014-05-20 18:34:54 +000077// \brief Claim that @Var is not described by @RegNo anymore.
78static void dropRegDescribedVar(RegDescribedVarsMap &RegVars,
79 unsigned RegNo, const MDNode *Var) {
80 const auto &I = RegVars.find(RegNo);
81 assert(RegNo != 0U && I != RegVars.end());
82 auto &VarSet = I->second;
83 const auto &VarPos = std::find(VarSet.begin(), VarSet.end(), Var);
84 assert(VarPos != VarSet.end());
85 VarSet.erase(VarPos);
86 // Don't keep empty sets in a map to keep it as small as possible.
87 if (VarSet.empty())
88 RegVars.erase(I);
89}
90
91// \brief Claim that @Var is now described by @RegNo.
92static void addRegDescribedVar(RegDescribedVarsMap &RegVars,
93 unsigned RegNo, const MDNode *Var) {
94 assert(RegNo != 0U);
Alexey Samsonovbb2990d2014-05-27 23:09:50 +000095 auto &VarSet = RegVars[RegNo];
96 assert(std::find(VarSet.begin(), VarSet.end(), Var) == VarSet.end());
97 VarSet.push_back(Var);
Alexey Samsonovdfcaf9c2014-05-20 18:34:54 +000098}
99
100// \brief Terminate the location range for variables described by register
101// @RegNo by inserting @ClobberingInstr to their history.
102static void clobberRegisterUses(RegDescribedVarsMap &RegVars, unsigned RegNo,
103 DbgValueHistoryMap &HistMap,
104 const MachineInstr &ClobberingInstr) {
105 const auto &I = RegVars.find(RegNo);
106 if (I == RegVars.end())
107 return;
108 // Iterate over all variables described by this register and add this
109 // instruction to their history, clobbering it.
110 for (const auto &Var : I->second)
Alexey Samsonovbb2990d2014-05-27 23:09:50 +0000111 HistMap.endInstrRange(Var, ClobberingInstr);
Alexey Samsonovdfcaf9c2014-05-20 18:34:54 +0000112 RegVars.erase(I);
113}
114
Adrian Prantl364d1312014-08-06 18:41:24 +0000115// \brief Collect all registers clobbered by @MI and apply the functor
116// @Func to their RegNo.
117// @Func should be a functor with a void(unsigned) signature. We're
118// not using std::function here for performance reasons. It has a
119// small but measurable impact. By using a functor instead of a
120// std::set& here, we can avoid the overhead of constructing
121// temporaries in calculateDbgValueHistory, which has a significant
122// performance impact.
123template<typename Callable>
124static void applyToClobberedRegisters(const MachineInstr &MI,
Alexey Samsonov8000e272014-06-09 21:53:47 +0000125 const TargetRegisterInfo *TRI,
Adrian Prantl364d1312014-08-06 18:41:24 +0000126 Callable Func) {
Alexey Samsonovdfcaf9c2014-05-20 18:34:54 +0000127 for (const MachineOperand &MO : MI.operands()) {
128 if (!MO.isReg() || !MO.isDef() || !MO.getReg())
129 continue;
Alexey Samsonov8000e272014-06-09 21:53:47 +0000130 for (MCRegAliasIterator AI(MO.getReg(), TRI, true); AI.isValid(); ++AI)
Adrian Prantl364d1312014-08-06 18:41:24 +0000131 Func(*AI);
Alexey Samsonovdfcaf9c2014-05-20 18:34:54 +0000132 }
133}
134
Alexey Samsonov8000e272014-06-09 21:53:47 +0000135// \brief Returns the first instruction in @MBB which corresponds to
136// the function epilogue, or nullptr if @MBB doesn't contain an epilogue.
137static const MachineInstr *getFirstEpilogueInst(const MachineBasicBlock &MBB) {
138 auto LastMI = MBB.getLastNonDebugInstr();
139 if (LastMI == MBB.end() || !LastMI->isReturn())
140 return nullptr;
141 // Assume that epilogue starts with instruction having the same debug location
142 // as the return instruction.
143 DebugLoc LastLoc = LastMI->getDebugLoc();
144 auto Res = LastMI;
145 for (MachineBasicBlock::const_reverse_iterator I(std::next(LastMI)); I != MBB.rend();
146 ++I) {
147 if (I->getDebugLoc() != LastLoc)
148 return Res;
149 Res = std::prev(I.base());
150 }
151 // If all instructions have the same debug location, assume whole MBB is
152 // an epilogue.
153 return MBB.begin();
154}
155
156// \brief Collect registers that are modified in the function body (their
Adrian Prantl364d1312014-08-06 18:41:24 +0000157// contents is changed outside of the prologue and epilogue).
Alexey Samsonov8000e272014-06-09 21:53:47 +0000158static void collectChangingRegs(const MachineFunction *MF,
159 const TargetRegisterInfo *TRI,
160 std::set<unsigned> &Regs) {
161 for (const auto &MBB : *MF) {
162 auto FirstEpilogueInst = getFirstEpilogueInst(MBB);
Adrian Prantle2d63752014-08-06 18:41:19 +0000163
Alexey Samsonov8000e272014-06-09 21:53:47 +0000164 for (const auto &MI : MBB) {
Adrian Prantle2d63752014-08-06 18:41:19 +0000165 if (&MI == FirstEpilogueInst)
166 break;
167 if (!MI.getFlag(MachineInstr::FrameSetup))
Adrian Prantl364d1312014-08-06 18:41:24 +0000168 applyToClobberedRegisters(MI, TRI, [&](unsigned r) { Regs.insert(r); });
Alexey Samsonov8000e272014-06-09 21:53:47 +0000169 }
170 }
Alexey Samsonovdfcaf9c2014-05-20 18:34:54 +0000171}
172
Alexey Samsonov414b6fb2014-04-30 21:34:11 +0000173void calculateDbgValueHistory(const MachineFunction *MF,
174 const TargetRegisterInfo *TRI,
175 DbgValueHistoryMap &Result) {
Alexey Samsonov8000e272014-06-09 21:53:47 +0000176 std::set<unsigned> ChangingRegs;
177 collectChangingRegs(MF, TRI, ChangingRegs);
Alexey Samsonov414b6fb2014-04-30 21:34:11 +0000178
Alexey Samsonov8000e272014-06-09 21:53:47 +0000179 RegDescribedVarsMap RegVars;
Alexey Samsonovdfcaf9c2014-05-20 18:34:54 +0000180 for (const auto &MBB : *MF) {
181 for (const auto &MI : MBB) {
182 if (!MI.isDebugValue()) {
183 // Not a DBG_VALUE instruction. It may clobber registers which describe
184 // some variables.
Adrian Prantl364d1312014-08-06 18:41:24 +0000185 applyToClobberedRegisters(MI, TRI, [&](unsigned RegNo) {
Alexey Samsonov8000e272014-06-09 21:53:47 +0000186 if (ChangingRegs.count(RegNo))
187 clobberRegisterUses(RegVars, RegNo, Result, MI);
Adrian Prantl364d1312014-08-06 18:41:24 +0000188 });
Alexey Samsonovdfcaf9c2014-05-20 18:34:54 +0000189 continue;
Alexey Samsonov414b6fb2014-04-30 21:34:11 +0000190 }
Alexey Samsonov414b6fb2014-04-30 21:34:11 +0000191
Alexey Samsonovf0e0cca2014-05-27 22:35:00 +0000192 assert(MI.getNumOperands() > 1 && "Invalid DBG_VALUE instruction!");
Adrian Prantlb1416832014-08-01 22:11:58 +0000193 // Use the base variable (without any DW_OP_piece expressions)
194 // as index into History. The full variables including the
195 // piece expressions are attached to the MI.
Adrian Prantlb458dc22014-10-01 18:10:54 +0000196 DIVariable Var = getEntireVariable(MI.getDebugVariable());
Alexey Samsonov414b6fb2014-04-30 21:34:11 +0000197
Alexey Samsonovbb2990d2014-05-27 23:09:50 +0000198 if (unsigned PrevReg = Result.getRegisterForVar(Var))
199 dropRegDescribedVar(RegVars, PrevReg, Var);
Alexey Samsonovdfcaf9c2014-05-20 18:34:54 +0000200
Alexey Samsonovbb2990d2014-05-27 23:09:50 +0000201 Result.startInstrRange(Var, MI);
202
203 if (unsigned NewReg = isDescribedByReg(MI))
204 addRegDescribedVar(RegVars, NewReg, Var);
Alexey Samsonov414b6fb2014-04-30 21:34:11 +0000205 }
Alexey Samsonovdfcaf9c2014-05-20 18:34:54 +0000206
207 // Make sure locations for register-described variables are valid only
208 // until the end of the basic block (unless it's the last basic block, in
209 // which case let their liveness run off to the end of the function).
Alexey Samsonov8000e272014-06-09 21:53:47 +0000210 if (!MBB.empty() && &MBB != &MF->back()) {
211 for (unsigned RegNo : ChangingRegs)
212 clobberRegisterUses(RegVars, RegNo, Result, MBB.back());
213 }
Alexey Samsonov414b6fb2014-04-30 21:34:11 +0000214 }
215}
216
217}