blob: 49d436c43b695bff40d91136717058a9755425f7 [file] [log] [blame]
Vikram TV859ad292015-12-16 11:09:48 +00001//===------ LiveDebugValues.cpp - Tracking Debug Value MIs ----------------===//
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 pass implements a data flow analysis that propagates debug location
11/// information by inserting additional DBG_VALUE instructions into the machine
12/// instruction stream. The pass internally builds debug location liveness
13/// ranges to determine the points where additional DBG_VALUEs need to be
14/// inserted.
15///
16/// This is a separate pass from DbgValueHistoryCalculator to facilitate
17/// testing and improve modularity.
18///
19//===----------------------------------------------------------------------===//
20
21#include "llvm/ADT/Statistic.h"
22#include "llvm/ADT/SmallVector.h"
23#include "llvm/CodeGen/MachineFunction.h"
24#include "llvm/CodeGen/MachineFunctionPass.h"
25#include "llvm/CodeGen/MachineInstrBuilder.h"
26#include "llvm/CodeGen/Passes.h"
27#include "llvm/Support/CommandLine.h"
28#include "llvm/Support/Debug.h"
29#include "llvm/Support/raw_ostream.h"
30#include "llvm/Target/TargetInstrInfo.h"
31#include "llvm/Target/TargetRegisterInfo.h"
32#include "llvm/Target/TargetSubtargetInfo.h"
33#include <deque>
34#include <list>
35
36using namespace llvm;
37
38#define DEBUG_TYPE "live-debug-values"
39
40STATISTIC(NumInserted, "Number of DBG_VALUE instructions inserted");
41
42namespace {
43
44class LiveDebugValues : public MachineFunctionPass {
45
46private:
47 const TargetRegisterInfo *TRI;
48 const TargetInstrInfo *TII;
49
50 typedef std::pair<const DILocalVariable *, const DILocation *>
51 InlinedVariable;
52
53 /// A potentially inlined instance of a variable.
54 struct DebugVariable {
55 const DILocalVariable *Var;
56 const DILocation *InlinedAt;
57
58 DebugVariable(const DILocalVariable *_var, const DILocation *_inlinedAt)
59 : Var(_var), InlinedAt(_inlinedAt) {}
60
61 bool operator==(const DebugVariable &DV) const {
62 return (Var == DV.Var) && (InlinedAt == DV.InlinedAt);
63 }
64 };
65
66 /// Member variables and functions for Range Extension across basic blocks.
67 struct VarLoc {
68 DebugVariable Var;
69 const MachineInstr *MI; // MachineInstr should be a DBG_VALUE instr.
70
71 VarLoc(DebugVariable _var, const MachineInstr *_mi) : Var(_var), MI(_mi) {}
72
73 bool operator==(const VarLoc &V) const;
74 };
75
76 typedef std::list<VarLoc> VarLocList;
77 typedef SmallDenseMap<const MachineBasicBlock *, VarLocList> VarLocInMBB;
78
79 bool OLChanged; // OutgoingLocs got changed for this bb.
80 bool MBBJoined; // The MBB was joined.
81
82 void transferDebugValue(MachineInstr &MI, VarLocList &OpenRanges);
83 void transferRegisterDef(MachineInstr &MI, VarLocList &OpenRanges);
84 void transferTerminatorInst(MachineInstr &MI, VarLocList &OpenRanges,
85 VarLocInMBB &OutLocs);
86 void transfer(MachineInstr &MI, VarLocList &OpenRanges, VarLocInMBB &OutLocs);
87
88 void join(MachineBasicBlock &MBB, VarLocInMBB &OutLocs, VarLocInMBB &InLocs);
89
90 bool ExtendRanges(MachineFunction &MF);
91
92public:
93 static char ID;
94
95 /// Default construct and initialize the pass.
96 LiveDebugValues();
97
98 /// Tell the pass manager which passes we depend on and what
99 /// information we preserve.
100 void getAnalysisUsage(AnalysisUsage &AU) const override;
101
102 /// Print to ostream with a message.
103 void printVarLocInMBB(const VarLocInMBB &V, const char *msg,
104 raw_ostream &Out) const;
105
106 /// Calculate the liveness information for the given machine function.
107 bool runOnMachineFunction(MachineFunction &MF) override;
108};
109} // namespace
110
111//===----------------------------------------------------------------------===//
112// Implementation
113//===----------------------------------------------------------------------===//
114
115char LiveDebugValues::ID = 0;
116char &llvm::LiveDebugValuesID = LiveDebugValues::ID;
117INITIALIZE_PASS(LiveDebugValues, "livedebugvalues", "Live DEBUG_VALUE analysis",
118 false, false)
119
120/// Default construct and initialize the pass.
121LiveDebugValues::LiveDebugValues() : MachineFunctionPass(ID) {
122 initializeLiveDebugValuesPass(*PassRegistry::getPassRegistry());
123}
124
125/// Tell the pass manager which passes we depend on and what information we
126/// preserve.
127void LiveDebugValues::getAnalysisUsage(AnalysisUsage &AU) const {
128 MachineFunctionPass::getAnalysisUsage(AU);
129}
130
131// \brief If @MI is a DBG_VALUE with debug value described by a defined
132// register, returns the number of this register. In the other case, returns 0.
133static unsigned isDescribedByReg(const MachineInstr &MI) {
134 assert(MI.isDebugValue());
135 assert(MI.getNumOperands() == 4);
136 // If location of variable is described using a register (directly or
137 // indirecltly), this register is always a first operand.
138 return MI.getOperand(0).isReg() ? MI.getOperand(0).getReg() : 0;
139}
140
141// \brief This function takes two DBG_VALUE instructions and returns true
142// if their offsets are equal; otherwise returns false.
143static bool areOffsetsEqual(const MachineInstr &MI1, const MachineInstr &MI2) {
144 assert(MI1.isDebugValue());
145 assert(MI1.getNumOperands() == 4);
146
147 assert(MI2.isDebugValue());
148 assert(MI2.getNumOperands() == 4);
149
150 if (!MI1.isIndirectDebugValue() && !MI2.isIndirectDebugValue())
151 return true;
152
153 // Check if both MIs are indirect and they are equal.
154 if (MI1.isIndirectDebugValue() && MI2.isIndirectDebugValue())
155 return MI1.getOperand(1).getImm() == MI2.getOperand(1).getImm();
156
157 return false;
158}
159
160//===----------------------------------------------------------------------===//
161// Debug Range Extension Implementation
162//===----------------------------------------------------------------------===//
163
164void LiveDebugValues::printVarLocInMBB(const VarLocInMBB &V, const char *msg,
165 raw_ostream &Out) const {
166 Out << "Printing " << msg << ":\n";
167 for (const auto &L : V) {
168 Out << "MBB: " << L.first->getName() << ":\n";
169 for (const auto &VLL : L.second) {
170 Out << " Var: " << VLL.Var.Var->getName();
171 Out << " MI: ";
172 (*VLL.MI).dump();
173 Out << "\n";
174 }
175 }
176 Out << "\n";
177}
178
179bool LiveDebugValues::VarLoc::operator==(const VarLoc &V) const {
180 return (Var == V.Var) && (isDescribedByReg(*MI) == isDescribedByReg(*V.MI)) &&
181 (areOffsetsEqual(*MI, *V.MI));
182}
183
184/// End all previous ranges related to @MI and start a new range from @MI
185/// if it is a DBG_VALUE instr.
186void LiveDebugValues::transferDebugValue(MachineInstr &MI,
187 VarLocList &OpenRanges) {
188 if (!MI.isDebugValue())
189 return;
190 const DILocalVariable *RawVar = MI.getDebugVariable();
191 assert(RawVar->isValidLocationForIntrinsic(MI.getDebugLoc()) &&
192 "Expected inlined-at fields to agree");
193 DebugVariable Var(RawVar, MI.getDebugLoc()->getInlinedAt());
194
195 // End all previous ranges of Var.
196 OpenRanges.erase(
197 std::remove_if(OpenRanges.begin(), OpenRanges.end(),
198 [&](const VarLoc &V) { return (Var == V.Var); }),
199 OpenRanges.end());
200
201 // Add Var to OpenRanges from this DBG_VALUE.
202 // TODO: Currently handles DBG_VALUE which has only reg as location.
203 if (isDescribedByReg(MI)) {
204 VarLoc V(Var, &MI);
205 OpenRanges.push_back(std::move(V));
206 }
207}
208
209/// A definition of a register may mark the end of a range.
210void LiveDebugValues::transferRegisterDef(MachineInstr &MI,
211 VarLocList &OpenRanges) {
212 for (const MachineOperand &MO : MI.operands()) {
213 if (!(MO.isReg() && MO.isDef() && MO.getReg() &&
214 TRI->isPhysicalRegister(MO.getReg())))
215 continue;
216 // Remove ranges of all aliased registers.
217 for (MCRegAliasIterator RAI(MO.getReg(), TRI, true); RAI.isValid(); ++RAI)
218 OpenRanges.erase(std::remove_if(OpenRanges.begin(), OpenRanges.end(),
219 [&](const VarLoc &V) {
220 return (*RAI ==
221 isDescribedByReg(*V.MI));
222 }),
223 OpenRanges.end());
224 }
225}
226
227/// Terminate all open ranges at the end of the current basic block.
228void LiveDebugValues::transferTerminatorInst(MachineInstr &MI,
229 VarLocList &OpenRanges,
230 VarLocInMBB &OutLocs) {
231 const MachineBasicBlock *CurMBB = MI.getParent();
232 if (!(MI.isTerminator() || (&MI == &CurMBB->instr_back())))
233 return;
234
235 if (OpenRanges.empty())
236 return;
237
Alexey Samsonov117b1042016-01-07 23:38:45 +0000238 VarLocList &VLL = OutLocs[CurMBB];
Vikram TV859ad292015-12-16 11:09:48 +0000239
240 for (auto OR : OpenRanges) {
241 // Copy OpenRanges to OutLocs, if not already present.
242 assert(OR.MI->isDebugValue());
243 DEBUG(dbgs() << "Add to OutLocs: "; OR.MI->dump(););
244 if (std::find_if(VLL.begin(), VLL.end(),
245 [&](const VarLoc &V) { return (OR == V); }) == VLL.end()) {
246 VLL.push_back(std::move(OR));
247 OLChanged = true;
248 }
249 }
250 OpenRanges.clear();
251}
252
253/// This routine creates OpenRanges and OutLocs.
254void LiveDebugValues::transfer(MachineInstr &MI, VarLocList &OpenRanges,
255 VarLocInMBB &OutLocs) {
256 transferDebugValue(MI, OpenRanges);
257 transferRegisterDef(MI, OpenRanges);
258 transferTerminatorInst(MI, OpenRanges, OutLocs);
259}
260
261/// This routine joins the analysis results of all incoming edges in @MBB by
262/// inserting a new DBG_VALUE instruction at the start of the @MBB - if the same
263/// source variable in all the predecessors of @MBB reside in the same location.
264void LiveDebugValues::join(MachineBasicBlock &MBB, VarLocInMBB &OutLocs,
265 VarLocInMBB &InLocs) {
266 DEBUG(dbgs() << "join MBB: " << MBB.getName() << "\n");
267
268 MBBJoined = false;
269
270 VarLocList InLocsT; // Temporary incoming locations.
271
272 // For all predecessors of this MBB, find the set of VarLocs that can be
273 // joined.
274 for (auto p : MBB.predecessors()) {
275 auto OL = OutLocs.find(p);
276 // Join is null in case of empty OutLocs from any of the pred.
277 if (OL == OutLocs.end())
278 return;
279
280 // Just copy over the Out locs to incoming locs for the first predecessor.
281 if (p == *MBB.pred_begin()) {
282 InLocsT = OL->second;
283 continue;
284 }
285
286 // Join with this predecessor.
287 VarLocList &VLL = OL->second;
288 InLocsT.erase(std::remove_if(InLocsT.begin(), InLocsT.end(),
289 [&](VarLoc &ILT) {
290 return (std::find_if(VLL.begin(), VLL.end(),
291 [&](const VarLoc &V) {
292 return (ILT == V);
293 }) == VLL.end());
294 }),
295 InLocsT.end());
296 }
297
298 if (InLocsT.empty())
299 return;
300
Alexey Samsonov117b1042016-01-07 23:38:45 +0000301 VarLocList &ILL = InLocs[&MBB];
Vikram TV859ad292015-12-16 11:09:48 +0000302
303 // Insert DBG_VALUE instructions, if not already inserted.
304 for (auto ILT : InLocsT) {
305 if (std::find_if(ILL.begin(), ILL.end(), [&](const VarLoc &I) {
306 return (ILT == I);
307 }) == ILL.end()) {
308 // This VarLoc is not found in InLocs i.e. it is not yet inserted. So, a
309 // new range is started for the var from the mbb's beginning by inserting
310 // a new DBG_VALUE. transfer() will end this range however appropriate.
311 const MachineInstr *DMI = ILT.MI;
312 MachineInstr *MI =
313 BuildMI(MBB, MBB.instr_begin(), DMI->getDebugLoc(), DMI->getDesc(),
314 DMI->isIndirectDebugValue(), DMI->getOperand(0).getReg(), 0,
315 DMI->getDebugVariable(), DMI->getDebugExpression());
316 if (DMI->isIndirectDebugValue())
317 MI->getOperand(1).setImm(DMI->getOperand(1).getImm());
318 DEBUG(dbgs() << "Inserted: "; MI->dump(););
319 ++NumInserted;
320 MBBJoined = true; // rerun transfer().
321
322 VarLoc V(ILT.Var, MI);
323 ILL.push_back(std::move(V));
324 }
325 }
326}
327
328/// Calculate the liveness information for the given machine function and
329/// extend ranges across basic blocks.
330bool LiveDebugValues::ExtendRanges(MachineFunction &MF) {
331
332 DEBUG(dbgs() << "\nDebug Range Extension\n");
333
334 bool Changed = false;
335 OLChanged = MBBJoined = false;
336
337 VarLocList OpenRanges; // Ranges that are open until end of bb.
338 VarLocInMBB OutLocs; // Ranges that exist beyond bb.
339 VarLocInMBB InLocs; // Ranges that are incoming after joining.
340
341 std::deque<MachineBasicBlock *> BBWorklist;
342
343 // Initialize every mbb with OutLocs.
344 for (auto &MBB : MF)
345 for (auto &MI : MBB)
346 transfer(MI, OpenRanges, OutLocs);
347 DEBUG(printVarLocInMBB(OutLocs, "OutLocs after initialization", dbgs()));
348
349 // Construct a worklist of MBBs.
350 for (auto &MBB : MF)
351 BBWorklist.push_back(&MBB);
352
353 // Perform join() and transfer() using the worklist until the ranges converge
354 // Ranges have converged when the worklist is empty.
355 while (!BBWorklist.empty()) {
356 MachineBasicBlock *MBB = BBWorklist.front();
357 BBWorklist.pop_front();
358
359 join(*MBB, OutLocs, InLocs);
360
361 if (MBBJoined) {
362 Changed = true;
363 for (auto &MI : *MBB)
364 transfer(MI, OpenRanges, OutLocs);
365 DEBUG(printVarLocInMBB(OutLocs, "OutLocs after propagating", dbgs()));
366 DEBUG(printVarLocInMBB(InLocs, "InLocs after propagating", dbgs()));
367
368 if (OLChanged) {
369 OLChanged = false;
370 for (auto s : MBB->successors())
371 if (std::find(BBWorklist.begin(), BBWorklist.end(), s) ==
372 BBWorklist.end()) // add if not already present.
373 BBWorklist.push_back(s);
374 }
375 }
376 }
377 DEBUG(printVarLocInMBB(OutLocs, "Final OutLocs", dbgs()));
378 DEBUG(printVarLocInMBB(InLocs, "Final InLocs", dbgs()));
379 return Changed;
380}
381
382bool LiveDebugValues::runOnMachineFunction(MachineFunction &MF) {
383 TRI = MF.getSubtarget().getRegisterInfo();
384 TII = MF.getSubtarget().getInstrInfo();
385
386 bool Changed = false;
387
388 Changed |= ExtendRanges(MF);
389
390 return Changed;
391}