blob: fc0ebea2d36c1fe0d3dfdbb8d52f8bb6f4403d93 [file] [log] [blame]
Eugene Zelenko2de563a2017-08-24 21:21:39 +00001//===- LiveDebugValues.cpp - Tracking Debug Value MIs ---------------------===//
Vikram TVb1415e72015-12-16 11:09:48 +00002//
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
Eugene Zelenko2de563a2017-08-24 21:21:39 +000021#include "llvm/ADT/DenseMap.h"
Daniel Berlind046f202016-01-10 18:08:32 +000022#include "llvm/ADT/PostOrderIterator.h"
23#include "llvm/ADT/SmallPtrSet.h"
Eugene Zelenko2de563a2017-08-24 21:21:39 +000024#include "llvm/ADT/SmallVector.h"
Adrian Prantl82629e72016-05-25 22:21:12 +000025#include "llvm/ADT/SparseBitVector.h"
Mehdi Aminif6071e12016-04-18 09:17:29 +000026#include "llvm/ADT/Statistic.h"
Adrian Prantl82629e72016-05-25 22:21:12 +000027#include "llvm/ADT/UniqueVector.h"
Adrian Prantlb835e6e2016-09-28 17:51:14 +000028#include "llvm/CodeGen/LexicalScopes.h"
Eugene Zelenko2de563a2017-08-24 21:21:39 +000029#include "llvm/CodeGen/MachineBasicBlock.h"
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +000030#include "llvm/CodeGen/MachineFrameInfo.h"
Vikram TVb1415e72015-12-16 11:09:48 +000031#include "llvm/CodeGen/MachineFunction.h"
32#include "llvm/CodeGen/MachineFunctionPass.h"
Eugene Zelenko2de563a2017-08-24 21:21:39 +000033#include "llvm/CodeGen/MachineInstr.h"
Vikram TVb1415e72015-12-16 11:09:48 +000034#include "llvm/CodeGen/MachineInstrBuilder.h"
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +000035#include "llvm/CodeGen/MachineMemOperand.h"
Eugene Zelenko2de563a2017-08-24 21:21:39 +000036#include "llvm/CodeGen/MachineOperand.h"
37#include "llvm/CodeGen/PseudoSourceValue.h"
David Blaikie48319232017-11-08 01:01:31 +000038#include "llvm/CodeGen/TargetFrameLowering.h"
39#include "llvm/CodeGen/TargetInstrInfo.h"
David Blaikiee3a9b4c2017-11-17 01:07:10 +000040#include "llvm/CodeGen/TargetLowering.h"
41#include "llvm/CodeGen/TargetRegisterInfo.h"
42#include "llvm/CodeGen/TargetSubtargetInfo.h"
Petar Jovanovicb76c4532018-07-13 08:24:26 +000043#include "llvm/CodeGen/RegisterScavenging.h"
Nico Weber0f38c602018-04-30 14:59:11 +000044#include "llvm/Config/llvm-config.h"
Eugene Zelenko2de563a2017-08-24 21:21:39 +000045#include "llvm/IR/DebugInfoMetadata.h"
46#include "llvm/IR/DebugLoc.h"
47#include "llvm/IR/Function.h"
48#include "llvm/IR/Module.h"
49#include "llvm/MC/MCRegisterInfo.h"
50#include "llvm/Pass.h"
51#include "llvm/Support/Casting.h"
52#include "llvm/Support/Compiler.h"
Vikram TVb1415e72015-12-16 11:09:48 +000053#include "llvm/Support/Debug.h"
54#include "llvm/Support/raw_ostream.h"
Eugene Zelenko2de563a2017-08-24 21:21:39 +000055#include <algorithm>
56#include <cassert>
57#include <cstdint>
58#include <functional>
Mehdi Aminif6071e12016-04-18 09:17:29 +000059#include <queue>
Eugene Zelenko2de563a2017-08-24 21:21:39 +000060#include <utility>
61#include <vector>
Vikram TVb1415e72015-12-16 11:09:48 +000062
63using namespace llvm;
64
Matthias Braun94c49042017-05-25 21:26:32 +000065#define DEBUG_TYPE "livedebugvalues"
Vikram TVb1415e72015-12-16 11:09:48 +000066
67STATISTIC(NumInserted, "Number of DBG_VALUE instructions inserted");
68
Adrian Prantl26b584c2018-05-01 15:54:18 +000069// If @MI is a DBG_VALUE with debug value described by a defined
Adrian Prantl82629e72016-05-25 22:21:12 +000070// register, returns the number of this register. In the other case, returns 0.
Adrian Prantlaa8d7632016-05-25 22:37:29 +000071static unsigned isDbgValueDescribedByReg(const MachineInstr &MI) {
Adrian Prantl82629e72016-05-25 22:21:12 +000072 assert(MI.isDebugValue() && "expected a DBG_VALUE");
73 assert(MI.getNumOperands() == 4 && "malformed DBG_VALUE");
74 // If location of variable is described using a register (directly
75 // or indirectly), this register is always a first operand.
76 return MI.getOperand(0).isReg() ? MI.getOperand(0).getReg() : 0;
77}
78
Eugene Zelenko2de563a2017-08-24 21:21:39 +000079namespace {
Vikram TVb1415e72015-12-16 11:09:48 +000080
Eugene Zelenko2de563a2017-08-24 21:21:39 +000081class LiveDebugValues : public MachineFunctionPass {
Vikram TVb1415e72015-12-16 11:09:48 +000082private:
83 const TargetRegisterInfo *TRI;
84 const TargetInstrInfo *TII;
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +000085 const TargetFrameLowering *TFI;
Petar Jovanovicb76c4532018-07-13 08:24:26 +000086 BitVector CalleeSavedRegs;
Adrian Prantlb835e6e2016-09-28 17:51:14 +000087 LexicalScopes LS;
88
89 /// Keeps track of lexical scopes associated with a user value's source
90 /// location.
91 class UserValueScopes {
92 DebugLoc DL;
93 LexicalScopes &LS;
94 SmallPtrSet<const MachineBasicBlock *, 4> LBlocks;
95
96 public:
97 UserValueScopes(DebugLoc D, LexicalScopes &L) : DL(std::move(D)), LS(L) {}
98
99 /// Return true if current scope dominates at least one machine
100 /// instruction in a given machine basic block.
101 bool dominates(MachineBasicBlock *MBB) {
102 if (LBlocks.empty())
103 LS.getMachineBasicBlocks(DL, LBlocks);
104 return LBlocks.count(MBB) != 0 || LS.dominates(DL, MBB);
105 }
106 };
Vikram TVb1415e72015-12-16 11:09:48 +0000107
Adrian Prantl514970f2016-05-26 21:42:47 +0000108 /// Based on std::pair so it can be used as an index into a DenseMap.
Eugene Zelenko2de563a2017-08-24 21:21:39 +0000109 using DebugVariableBase =
110 std::pair<const DILocalVariable *, const DILocation *>;
Vikram TVb1415e72015-12-16 11:09:48 +0000111 /// A potentially inlined instance of a variable.
Adrian Prantl514970f2016-05-26 21:42:47 +0000112 struct DebugVariable : public DebugVariableBase {
113 DebugVariable(const DILocalVariable *Var, const DILocation *InlinedAt)
114 : DebugVariableBase(Var, InlinedAt) {}
Vikram TVb1415e72015-12-16 11:09:48 +0000115
Eugene Zelenko2de563a2017-08-24 21:21:39 +0000116 const DILocalVariable *getVar() const { return this->first; }
117 const DILocation *getInlinedAt() const { return this->second; }
Vikram TVb1415e72015-12-16 11:09:48 +0000118
Adrian Prantl82629e72016-05-25 22:21:12 +0000119 bool operator<(const DebugVariable &DV) const {
Adrian Prantl514970f2016-05-26 21:42:47 +0000120 if (getVar() == DV.getVar())
121 return getInlinedAt() < DV.getInlinedAt();
122 return getVar() < DV.getVar();
Vikram TVb1415e72015-12-16 11:09:48 +0000123 }
124 };
125
Adrian Prantl82629e72016-05-25 22:21:12 +0000126 /// A pair of debug variable and value location.
Vikram TVb1415e72015-12-16 11:09:48 +0000127 struct VarLoc {
Adrian Prantl82629e72016-05-25 22:21:12 +0000128 const DebugVariable Var;
129 const MachineInstr &MI; ///< Only used for cloning a new DBG_VALUE.
Adrian Prantlb835e6e2016-09-28 17:51:14 +0000130 mutable UserValueScopes UVS;
Eugene Zelenko2de563a2017-08-24 21:21:39 +0000131 enum { InvalidKind = 0, RegisterKind } Kind = InvalidKind;
Vikram TVb1415e72015-12-16 11:09:48 +0000132
Adrian Prantl82629e72016-05-25 22:21:12 +0000133 /// The value location. Stored separately to avoid repeatedly
134 /// extracting it from MI.
135 union {
Adrian Prantlb2a9fcd2017-07-28 23:25:51 +0000136 uint64_t RegNo;
Adrian Prantl82629e72016-05-25 22:21:12 +0000137 uint64_t Hash;
138 } Loc;
139
Adrian Prantlb835e6e2016-09-28 17:51:14 +0000140 VarLoc(const MachineInstr &MI, LexicalScopes &LS)
Adrian Prantl82629e72016-05-25 22:21:12 +0000141 : Var(MI.getDebugVariable(), MI.getDebugLoc()->getInlinedAt()), MI(MI),
Eugene Zelenko2de563a2017-08-24 21:21:39 +0000142 UVS(MI.getDebugLoc(), LS) {
Adrian Prantl82629e72016-05-25 22:21:12 +0000143 static_assert((sizeof(Loc) == sizeof(uint64_t)),
144 "hash does not cover all members of Loc");
145 assert(MI.isDebugValue() && "not a DBG_VALUE");
146 assert(MI.getNumOperands() == 4 && "malformed DBG_VALUE");
Adrian Prantlaa8d7632016-05-25 22:37:29 +0000147 if (int RegNo = isDbgValueDescribedByReg(MI)) {
Adrian Prantl82629e72016-05-25 22:21:12 +0000148 Kind = RegisterKind;
Adrian Prantlb2a9fcd2017-07-28 23:25:51 +0000149 Loc.RegNo = RegNo;
Adrian Prantl82629e72016-05-25 22:21:12 +0000150 }
151 }
152
153 /// If this variable is described by a register, return it,
154 /// otherwise return 0.
155 unsigned isDescribedByReg() const {
156 if (Kind == RegisterKind)
Adrian Prantlb2a9fcd2017-07-28 23:25:51 +0000157 return Loc.RegNo;
Adrian Prantl82629e72016-05-25 22:21:12 +0000158 return 0;
159 }
160
Adrian Prantlb835e6e2016-09-28 17:51:14 +0000161 /// Determine whether the lexical scope of this value's debug location
162 /// dominates MBB.
163 bool dominates(MachineBasicBlock &MBB) const { return UVS.dominates(&MBB); }
164
Aaron Ballman1d03d382017-10-15 14:32:27 +0000165#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Matthias Braun0439ed62017-01-28 06:53:55 +0000166 LLVM_DUMP_METHOD void dump() const { MI.dump(); }
167#endif
Adrian Prantl82629e72016-05-25 22:21:12 +0000168
169 bool operator==(const VarLoc &Other) const {
170 return Var == Other.Var && Loc.Hash == Other.Loc.Hash;
171 }
172
Adrian Prantl514970f2016-05-26 21:42:47 +0000173 /// This operator guarantees that VarLocs are sorted by Variable first.
Adrian Prantl82629e72016-05-25 22:21:12 +0000174 bool operator<(const VarLoc &Other) const {
175 if (Var == Other.Var)
176 return Loc.Hash < Other.Loc.Hash;
177 return Var < Other.Var;
178 }
Vikram TVb1415e72015-12-16 11:09:48 +0000179 };
180
Eugene Zelenko2de563a2017-08-24 21:21:39 +0000181 using VarLocMap = UniqueVector<VarLoc>;
182 using VarLocSet = SparseBitVector<>;
183 using VarLocInMBB = SmallDenseMap<const MachineBasicBlock *, VarLocSet>;
Petar Jovanovicb76c4532018-07-13 08:24:26 +0000184 struct TransferDebugPair {
185 MachineInstr *TransferInst;
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +0000186 MachineInstr *DebugInst;
187 };
Petar Jovanovicb76c4532018-07-13 08:24:26 +0000188 using TransferMap = SmallVector<TransferDebugPair, 4>;
Vikram TVb1415e72015-12-16 11:09:48 +0000189
Adrian Prantl514970f2016-05-26 21:42:47 +0000190 /// This holds the working set of currently open ranges. For fast
191 /// access, this is done both as a set of VarLocIDs, and a map of
192 /// DebugVariable to recent VarLocID. Note that a DBG_VALUE ends all
193 /// previous open ranges for the same variable.
194 class OpenRangesSet {
195 VarLocSet VarLocs;
196 SmallDenseMap<DebugVariableBase, unsigned, 8> Vars;
197
198 public:
199 const VarLocSet &getVarLocs() const { return VarLocs; }
200
201 /// Terminate all open ranges for Var by removing it from the set.
202 void erase(DebugVariable Var) {
203 auto It = Vars.find(Var);
204 if (It != Vars.end()) {
205 unsigned ID = It->second;
206 VarLocs.reset(ID);
207 Vars.erase(It);
208 }
209 }
210
211 /// Terminate all open ranges listed in \c KillSet by removing
212 /// them from the set.
213 void erase(const VarLocSet &KillSet, const VarLocMap &VarLocIDs) {
214 VarLocs.intersectWithComplement(KillSet);
215 for (unsigned ID : KillSet)
216 Vars.erase(VarLocIDs[ID].Var);
217 }
218
219 /// Insert a new range into the set.
220 void insert(unsigned VarLocID, DebugVariableBase Var) {
221 VarLocs.set(VarLocID);
222 Vars.insert({Var, VarLocID});
223 }
224
225 /// Empty the set.
226 void clear() {
227 VarLocs.clear();
228 Vars.clear();
229 }
230
231 /// Return whether the set is empty or not.
232 bool empty() const {
233 assert(Vars.empty() == VarLocs.empty() && "open ranges are inconsistent");
234 return VarLocs.empty();
235 }
236 };
237
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +0000238 bool isSpillInstruction(const MachineInstr &MI, MachineFunction *MF,
239 unsigned &Reg);
240 int extractSpillBaseRegAndOffset(const MachineInstr &MI, unsigned &Reg);
Petar Jovanovicb76c4532018-07-13 08:24:26 +0000241 void insertTransferDebugPair(MachineInstr &MI, OpenRangesSet &OpenRanges,
242 TransferMap &Transfers, VarLocMap &VarLocIDs,
243 unsigned OldVarID, unsigned NewReg = 0);
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +0000244
Adrian Prantl514970f2016-05-26 21:42:47 +0000245 void transferDebugValue(const MachineInstr &MI, OpenRangesSet &OpenRanges,
Adrian Prantl82629e72016-05-25 22:21:12 +0000246 VarLocMap &VarLocIDs);
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +0000247 void transferSpillInst(MachineInstr &MI, OpenRangesSet &OpenRanges,
Petar Jovanovicb76c4532018-07-13 08:24:26 +0000248 VarLocMap &VarLocIDs, TransferMap &Transfers);
249 void transferRegisterCopy(MachineInstr &MI, OpenRangesSet &OpenRanges,
250 VarLocMap &VarLocIDs, TransferMap &Transfers);
Adrian Prantl514970f2016-05-26 21:42:47 +0000251 void transferRegisterDef(MachineInstr &MI, OpenRangesSet &OpenRanges,
Adrian Prantl82629e72016-05-25 22:21:12 +0000252 const VarLocMap &VarLocIDs);
Adrian Prantl514970f2016-05-26 21:42:47 +0000253 bool transferTerminatorInst(MachineInstr &MI, OpenRangesSet &OpenRanges,
Adrian Prantl82629e72016-05-25 22:21:12 +0000254 VarLocInMBB &OutLocs, const VarLocMap &VarLocIDs);
Petar Jovanovicb76c4532018-07-13 08:24:26 +0000255 bool process(MachineInstr &MI, OpenRangesSet &OpenRanges,
256 VarLocInMBB &OutLocs, VarLocMap &VarLocIDs,
257 TransferMap &Transfers, bool transferChanges);
Vikram TVb1415e72015-12-16 11:09:48 +0000258
Adrian Prantl82629e72016-05-25 22:21:12 +0000259 bool join(MachineBasicBlock &MBB, VarLocInMBB &OutLocs, VarLocInMBB &InLocs,
Keith Walker275a9fe2016-09-27 16:46:07 +0000260 const VarLocMap &VarLocIDs,
Vedant Kumara01d5b82018-10-05 21:44:15 +0000261 SmallPtrSet<const MachineBasicBlock *, 16> &Visited,
262 SmallPtrSetImpl<const MachineBasicBlock *> &ArtificialBlocks);
Vikram TVb1415e72015-12-16 11:09:48 +0000263
264 bool ExtendRanges(MachineFunction &MF);
265
266public:
267 static char ID;
268
269 /// Default construct and initialize the pass.
270 LiveDebugValues();
271
272 /// Tell the pass manager which passes we depend on and what
273 /// information we preserve.
274 void getAnalysisUsage(AnalysisUsage &AU) const override;
275
Derek Schufffadd1132016-03-28 17:05:30 +0000276 MachineFunctionProperties getRequiredProperties() const override {
277 return MachineFunctionProperties().set(
Matthias Braun690a3cb2016-08-25 01:27:13 +0000278 MachineFunctionProperties::Property::NoVRegs);
Derek Schufffadd1132016-03-28 17:05:30 +0000279 }
280
Vikram TVb1415e72015-12-16 11:09:48 +0000281 /// Print to ostream with a message.
Adrian Prantl82629e72016-05-25 22:21:12 +0000282 void printVarLocInMBB(const MachineFunction &MF, const VarLocInMBB &V,
283 const VarLocMap &VarLocIDs, const char *msg,
Vikram TVb1415e72015-12-16 11:09:48 +0000284 raw_ostream &Out) const;
285
286 /// Calculate the liveness information for the given machine function.
287 bool runOnMachineFunction(MachineFunction &MF) override;
288};
Adrian Prantlb835e6e2016-09-28 17:51:14 +0000289
Eugene Zelenko2de563a2017-08-24 21:21:39 +0000290} // end anonymous namespace
Vikram TVb1415e72015-12-16 11:09:48 +0000291
292//===----------------------------------------------------------------------===//
293// Implementation
294//===----------------------------------------------------------------------===//
295
296char LiveDebugValues::ID = 0;
Eugene Zelenko2de563a2017-08-24 21:21:39 +0000297
Vikram TVb1415e72015-12-16 11:09:48 +0000298char &llvm::LiveDebugValuesID = LiveDebugValues::ID;
Eugene Zelenko2de563a2017-08-24 21:21:39 +0000299
Matthias Braun94c49042017-05-25 21:26:32 +0000300INITIALIZE_PASS(LiveDebugValues, DEBUG_TYPE, "Live DEBUG_VALUE analysis",
Vikram TVb1415e72015-12-16 11:09:48 +0000301 false, false)
302
303/// Default construct and initialize the pass.
304LiveDebugValues::LiveDebugValues() : MachineFunctionPass(ID) {
305 initializeLiveDebugValuesPass(*PassRegistry::getPassRegistry());
306}
307
308/// Tell the pass manager which passes we depend on and what information we
309/// preserve.
310void LiveDebugValues::getAnalysisUsage(AnalysisUsage &AU) const {
Matt Arsenaultc9cf0c82016-06-08 05:18:01 +0000311 AU.setPreservesCFG();
Vikram TVb1415e72015-12-16 11:09:48 +0000312 MachineFunctionPass::getAnalysisUsage(AU);
313}
314
Vikram TVb1415e72015-12-16 11:09:48 +0000315//===----------------------------------------------------------------------===//
316// Debug Range Extension Implementation
317//===----------------------------------------------------------------------===//
318
Matthias Braun0439ed62017-01-28 06:53:55 +0000319#ifndef NDEBUG
Adrian Prantl82629e72016-05-25 22:21:12 +0000320void LiveDebugValues::printVarLocInMBB(const MachineFunction &MF,
321 const VarLocInMBB &V,
322 const VarLocMap &VarLocIDs,
323 const char *msg,
Vikram TVb1415e72015-12-16 11:09:48 +0000324 raw_ostream &Out) const {
Keith Walker4e094402016-09-20 16:04:31 +0000325 Out << '\n' << msg << '\n';
Adrian Prantl82629e72016-05-25 22:21:12 +0000326 for (const MachineBasicBlock &BB : MF) {
Vedant Kumarff3a5832018-10-05 21:44:00 +0000327 const VarLocSet &L = V.lookup(&BB);
328 if (L.empty())
329 continue;
330 Out << "MBB: " << BB.getNumber() << ":\n";
Adrian Prantl82629e72016-05-25 22:21:12 +0000331 for (unsigned VLL : L) {
332 const VarLoc &VL = VarLocIDs[VLL];
Adrian Prantl514970f2016-05-26 21:42:47 +0000333 Out << " Var: " << VL.Var.getVar()->getName();
Vikram TVb1415e72015-12-16 11:09:48 +0000334 Out << " MI: ";
Adrian Prantl82629e72016-05-25 22:21:12 +0000335 VL.dump();
Vikram TVb1415e72015-12-16 11:09:48 +0000336 }
337 }
338 Out << "\n";
339}
Matthias Braun0439ed62017-01-28 06:53:55 +0000340#endif
Vikram TVb1415e72015-12-16 11:09:48 +0000341
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +0000342/// Given a spill instruction, extract the register and offset used to
343/// address the spill location in a target independent way.
344int LiveDebugValues::extractSpillBaseRegAndOffset(const MachineInstr &MI,
345 unsigned &Reg) {
Fangrui Songaf7b1832018-07-30 19:41:25 +0000346 assert(MI.hasOneMemOperand() &&
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +0000347 "Spill instruction does not have exactly one memory operand?");
348 auto MMOI = MI.memoperands_begin();
349 const PseudoSourceValue *PVal = (*MMOI)->getPseudoValue();
350 assert(PVal->kind() == PseudoSourceValue::FixedStack &&
351 "Inconsistent memory operand in spill instruction");
352 int FI = cast<FixedStackPseudoSourceValue>(PVal)->getFrameIndex();
353 const MachineBasicBlock *MBB = MI.getParent();
354 return TFI->getFrameIndexReference(*MBB->getParent(), FI, Reg);
355}
356
Vikram TVb1415e72015-12-16 11:09:48 +0000357/// End all previous ranges related to @MI and start a new range from @MI
358/// if it is a DBG_VALUE instr.
Adrian Prantl82629e72016-05-25 22:21:12 +0000359void LiveDebugValues::transferDebugValue(const MachineInstr &MI,
Adrian Prantl514970f2016-05-26 21:42:47 +0000360 OpenRangesSet &OpenRanges,
Adrian Prantl82629e72016-05-25 22:21:12 +0000361 VarLocMap &VarLocIDs) {
Vikram TVb1415e72015-12-16 11:09:48 +0000362 if (!MI.isDebugValue())
363 return;
Adrian Prantl82629e72016-05-25 22:21:12 +0000364 const DILocalVariable *Var = MI.getDebugVariable();
365 const DILocation *DebugLoc = MI.getDebugLoc();
366 const DILocation *InlinedAt = DebugLoc->getInlinedAt();
367 assert(Var->isValidLocationForIntrinsic(DebugLoc) &&
Vikram TVb1415e72015-12-16 11:09:48 +0000368 "Expected inlined-at fields to agree");
Vikram TVb1415e72015-12-16 11:09:48 +0000369
370 // End all previous ranges of Var.
Adrian Prantl514970f2016-05-26 21:42:47 +0000371 DebugVariable V(Var, InlinedAt);
372 OpenRanges.erase(V);
Adrian Prantl82629e72016-05-25 22:21:12 +0000373
374 // Add the VarLoc to OpenRanges from this DBG_VALUE.
375 // TODO: Currently handles DBG_VALUE which has only reg as location.
Adrian Prantl514970f2016-05-26 21:42:47 +0000376 if (isDbgValueDescribedByReg(MI)) {
Adrian Prantlb835e6e2016-09-28 17:51:14 +0000377 VarLoc VL(MI, LS);
Adrian Prantl514970f2016-05-26 21:42:47 +0000378 unsigned ID = VarLocIDs.insert(VL);
379 OpenRanges.insert(ID, VL.Var);
380 }
Vikram TVb1415e72015-12-16 11:09:48 +0000381}
382
Petar Jovanovicb76c4532018-07-13 08:24:26 +0000383/// Create new TransferDebugPair and insert it in \p Transfers. The VarLoc
384/// with \p OldVarID should be deleted form \p OpenRanges and replaced with
385/// new VarLoc. If \p NewReg is different than default zero value then the
386/// new location will be register location created by the copy like instruction,
387/// otherwise it is variable's location on the stack.
388void LiveDebugValues::insertTransferDebugPair(
389 MachineInstr &MI, OpenRangesSet &OpenRanges, TransferMap &Transfers,
390 VarLocMap &VarLocIDs, unsigned OldVarID, unsigned NewReg) {
391 const MachineInstr *DMI = &VarLocIDs[OldVarID].MI;
392 MachineFunction *MF = MI.getParent()->getParent();
393 MachineInstr *NewDMI;
394 if (NewReg) {
395 // Create a DBG_VALUE instruction to describe the Var in its new
396 // register location.
397 NewDMI = BuildMI(*MF, DMI->getDebugLoc(), DMI->getDesc(),
398 DMI->isIndirectDebugValue(), NewReg,
399 DMI->getDebugVariable(), DMI->getDebugExpression());
400 if (DMI->isIndirectDebugValue())
401 NewDMI->getOperand(1).setImm(DMI->getOperand(1).getImm());
402 LLVM_DEBUG(dbgs() << "Creating DBG_VALUE inst for register copy: ";
403 NewDMI->print(dbgs(), false, false, false, TII));
404 } else {
405 // Create a DBG_VALUE instruction to describe the Var in its spilled
406 // location.
407 unsigned SpillBase;
408 int SpillOffset = extractSpillBaseRegAndOffset(MI, SpillBase);
409 auto *SpillExpr = DIExpression::prepend(DMI->getDebugExpression(),
410 DIExpression::NoDeref, SpillOffset);
411 NewDMI = BuildMI(*MF, DMI->getDebugLoc(), DMI->getDesc(), true, SpillBase,
412 DMI->getDebugVariable(), SpillExpr);
413 LLVM_DEBUG(dbgs() << "Creating DBG_VALUE inst for spill: ";
414 NewDMI->print(dbgs(), false, false, false, TII));
415 }
416
417 // The newly created DBG_VALUE instruction NewDMI must be inserted after
418 // MI. Keep track of the pairing.
419 TransferDebugPair MIP = {&MI, NewDMI};
420 Transfers.push_back(MIP);
421
422 // End all previous ranges of Var.
423 OpenRanges.erase(VarLocIDs[OldVarID].Var);
424
425 // Add the VarLoc to OpenRanges.
426 VarLoc VL(*NewDMI, LS);
427 unsigned LocID = VarLocIDs.insert(VL);
428 OpenRanges.insert(LocID, VL.Var);
429}
430
Vikram TVb1415e72015-12-16 11:09:48 +0000431/// A definition of a register may mark the end of a range.
432void LiveDebugValues::transferRegisterDef(MachineInstr &MI,
Adrian Prantl514970f2016-05-26 21:42:47 +0000433 OpenRangesSet &OpenRanges,
Adrian Prantl82629e72016-05-25 22:21:12 +0000434 const VarLocMap &VarLocIDs) {
Justin Bogner1842f4a2017-10-10 23:50:49 +0000435 MachineFunction *MF = MI.getMF();
Reid Klecknerb951e502016-03-25 17:54:46 +0000436 const TargetLowering *TLI = MF->getSubtarget().getTargetLowering();
437 unsigned SP = TLI->getStackPointerRegisterToSaveRestore();
Adrian Prantl82629e72016-05-25 22:21:12 +0000438 SparseBitVector<> KillSet;
Vikram TVb1415e72015-12-16 11:09:48 +0000439 for (const MachineOperand &MO : MI.operands()) {
Adrian Prantl7b7499a2017-03-03 01:08:25 +0000440 // Determine whether the operand is a register def. Assume that call
441 // instructions never clobber SP, because some backends (e.g., AArch64)
442 // never list SP in the regmask.
Reid Klecknerb951e502016-03-25 17:54:46 +0000443 if (MO.isReg() && MO.isDef() && MO.getReg() &&
Adrian Prantl7b7499a2017-03-03 01:08:25 +0000444 TRI->isPhysicalRegister(MO.getReg()) &&
445 !(MI.isCall() && MO.getReg() == SP)) {
Reid Klecknerb951e502016-03-25 17:54:46 +0000446 // Remove ranges of all aliased registers.
447 for (MCRegAliasIterator RAI(MO.getReg(), TRI, true); RAI.isValid(); ++RAI)
Adrian Prantl514970f2016-05-26 21:42:47 +0000448 for (unsigned ID : OpenRanges.getVarLocs())
Adrian Prantl82629e72016-05-25 22:21:12 +0000449 if (VarLocIDs[ID].isDescribedByReg() == *RAI)
450 KillSet.set(ID);
Reid Klecknerb951e502016-03-25 17:54:46 +0000451 } else if (MO.isRegMask()) {
452 // Remove ranges of all clobbered registers. Register masks don't usually
453 // list SP as preserved. While the debug info may be off for an
454 // instruction or two around callee-cleanup calls, transferring the
455 // DEBUG_VALUE across the call is still a better user experience.
Adrian Prantl514970f2016-05-26 21:42:47 +0000456 for (unsigned ID : OpenRanges.getVarLocs()) {
Adrian Prantl82629e72016-05-25 22:21:12 +0000457 unsigned Reg = VarLocIDs[ID].isDescribedByReg();
458 if (Reg && Reg != SP && MO.clobbersPhysReg(Reg))
459 KillSet.set(ID);
460 }
Reid Klecknerb951e502016-03-25 17:54:46 +0000461 }
Vikram TVb1415e72015-12-16 11:09:48 +0000462 }
Adrian Prantl514970f2016-05-26 21:42:47 +0000463 OpenRanges.erase(KillSet, VarLocIDs);
Vikram TVb1415e72015-12-16 11:09:48 +0000464}
465
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +0000466/// Decide if @MI is a spill instruction and return true if it is. We use 2
467/// criteria to make this decision:
468/// - Is this instruction a store to a spill slot?
469/// - Is there a register operand that is both used and killed?
470/// TODO: Store optimization can fold spills into other stores (including
471/// other spills). We do not handle this yet (more than one memory operand).
472bool LiveDebugValues::isSpillInstruction(const MachineInstr &MI,
473 MachineFunction *MF, unsigned &Reg) {
474 const MachineFrameInfo &FrameInfo = MF->getFrameInfo();
475 int FI;
Sander de Smalen73369542018-09-05 08:59:50 +0000476 SmallVector<const MachineMemOperand*, 1> Accesses;
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +0000477
Fangrui Songaf7b1832018-07-30 19:41:25 +0000478 // TODO: Handle multiple stores folded into one.
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +0000479 if (!MI.hasOneMemOperand())
480 return false;
481
482 // To identify a spill instruction, use the same criteria as in AsmPrinter.
Sander de Smalen67bd0d92018-09-03 10:23:34 +0000483 if (!((TII->isStoreToStackSlotPostFE(MI, FI) &&
484 FrameInfo.isSpillSlotObjectIndex(FI)) ||
485 (TII->hasStoreToStackSlot(MI, Accesses) &&
Sander de Smalen73369542018-09-05 08:59:50 +0000486 llvm::any_of(Accesses, [&FrameInfo](const MachineMemOperand *MMO) {
487 return FrameInfo.isSpillSlotObjectIndex(
488 cast<FixedStackPseudoSourceValue>(MMO->getPseudoValue())
489 ->getFrameIndex());
Sander de Smalen67bd0d92018-09-03 10:23:34 +0000490 }))))
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +0000491 return false;
492
Petar Jovanovic18704c22018-01-16 14:46:05 +0000493 auto isKilledReg = [&](const MachineOperand MO, unsigned &Reg) {
494 if (!MO.isReg() || !MO.isUse()) {
495 Reg = 0;
496 return false;
497 }
498 Reg = MO.getReg();
499 return MO.isKill();
500 };
501
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +0000502 for (const MachineOperand &MO : MI.operands()) {
Petar Jovanovic18704c22018-01-16 14:46:05 +0000503 // In a spill instruction generated by the InlineSpiller the spilled
504 // register has its kill flag set.
505 if (isKilledReg(MO, Reg))
506 return true;
507 if (Reg != 0) {
508 // Check whether next instruction kills the spilled register.
509 // FIXME: Current solution does not cover search for killed register in
510 // bundles and instructions further down the chain.
511 auto NextI = std::next(MI.getIterator());
512 // Skip next instruction that points to basic block end iterator.
513 if (MI.getParent()->end() == NextI)
514 continue;
515 unsigned RegNext;
516 for (const MachineOperand &MONext : NextI->operands()) {
517 // Return true if we came across the register from the
518 // previous spill instruction that is killed in NextI.
519 if (isKilledReg(MONext, RegNext) && RegNext == Reg)
520 return true;
521 }
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +0000522 }
523 }
Petar Jovanovic18704c22018-01-16 14:46:05 +0000524 // Return false if we didn't find spilled register.
525 return false;
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +0000526}
527
528/// A spilled register may indicate that we have to end the current range of
529/// a variable and create a new one for the spill location.
Petar Jovanovicb76c4532018-07-13 08:24:26 +0000530/// We don't want to insert any instructions in process(), so we just create
531/// the DBG_VALUE without inserting it and keep track of it in \p Transfers.
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +0000532/// It will be inserted into the BB when we're done iterating over the
533/// instructions.
534void LiveDebugValues::transferSpillInst(MachineInstr &MI,
535 OpenRangesSet &OpenRanges,
536 VarLocMap &VarLocIDs,
Petar Jovanovicb76c4532018-07-13 08:24:26 +0000537 TransferMap &Transfers) {
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +0000538 unsigned Reg;
Justin Bogner1842f4a2017-10-10 23:50:49 +0000539 MachineFunction *MF = MI.getMF();
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +0000540 if (!isSpillInstruction(MI, MF, Reg))
541 return;
542
543 // Check if the register is the location of a debug value.
544 for (unsigned ID : OpenRanges.getVarLocs()) {
545 if (VarLocIDs[ID].isDescribedByReg() == Reg) {
Nicola Zaghen0818e782018-05-14 12:53:11 +0000546 LLVM_DEBUG(dbgs() << "Spilling Register " << printReg(Reg, TRI) << '('
547 << VarLocIDs[ID].Var.getVar()->getName() << ")\n");
Petar Jovanovicb76c4532018-07-13 08:24:26 +0000548 insertTransferDebugPair(MI, OpenRanges, Transfers, VarLocIDs, ID);
549 return;
550 }
551 }
552}
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +0000553
Petar Jovanovicb76c4532018-07-13 08:24:26 +0000554/// If \p MI is a register copy instruction, that copies a previously tracked
555/// value from one register to another register that is callee saved, we
556/// create new DBG_VALUE instruction described with copy destination register.
557void LiveDebugValues::transferRegisterCopy(MachineInstr &MI,
558 OpenRangesSet &OpenRanges,
559 VarLocMap &VarLocIDs,
560 TransferMap &Transfers) {
561 const MachineOperand *SrcRegOp, *DestRegOp;
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +0000562
Petar Jovanovicb76c4532018-07-13 08:24:26 +0000563 if (!TII->isCopyInstr(MI, SrcRegOp, DestRegOp) || !SrcRegOp->isKill() ||
564 !DestRegOp->isDef())
565 return;
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +0000566
Petar Jovanovicb76c4532018-07-13 08:24:26 +0000567 auto isCalleSavedReg = [&](unsigned Reg) {
568 for (MCRegAliasIterator RAI(Reg, TRI, true); RAI.isValid(); ++RAI)
569 if (CalleeSavedRegs.test(*RAI))
570 return true;
571 return false;
572 };
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +0000573
Petar Jovanovicb76c4532018-07-13 08:24:26 +0000574 unsigned SrcReg = SrcRegOp->getReg();
575 unsigned DestReg = DestRegOp->getReg();
576
577 // We want to recognize instructions where destination register is callee
578 // saved register. If register that could be clobbered by the call is
579 // included, there would be a great chance that it is going to be clobbered
580 // soon. It is more likely that previous register location, which is callee
581 // saved, is going to stay unclobbered longer, even if it is killed.
582 if (!isCalleSavedReg(DestReg))
583 return;
584
585 for (unsigned ID : OpenRanges.getVarLocs()) {
586 if (VarLocIDs[ID].isDescribedByReg() == SrcReg) {
587 insertTransferDebugPair(MI, OpenRanges, Transfers, VarLocIDs, ID,
588 DestReg);
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +0000589 return;
590 }
591 }
592}
593
Vikram TVb1415e72015-12-16 11:09:48 +0000594/// Terminate all open ranges at the end of the current basic block.
Daniel Berlin748e8f42016-01-10 03:25:42 +0000595bool LiveDebugValues::transferTerminatorInst(MachineInstr &MI,
Adrian Prantl514970f2016-05-26 21:42:47 +0000596 OpenRangesSet &OpenRanges,
Adrian Prantl82629e72016-05-25 22:21:12 +0000597 VarLocInMBB &OutLocs,
598 const VarLocMap &VarLocIDs) {
Daniel Berlin748e8f42016-01-10 03:25:42 +0000599 bool Changed = false;
Vikram TVb1415e72015-12-16 11:09:48 +0000600 const MachineBasicBlock *CurMBB = MI.getParent();
Petar Jovanovicc40df752018-01-08 18:21:15 +0000601 if (!(MI.isTerminator() || (&MI == &CurMBB->back())))
Daniel Berlin748e8f42016-01-10 03:25:42 +0000602 return false;
Vikram TVb1415e72015-12-16 11:09:48 +0000603
604 if (OpenRanges.empty())
Daniel Berlin748e8f42016-01-10 03:25:42 +0000605 return false;
Vikram TVb1415e72015-12-16 11:09:48 +0000606
Nicola Zaghen0818e782018-05-14 12:53:11 +0000607 LLVM_DEBUG(for (unsigned ID
608 : OpenRanges.getVarLocs()) {
609 // Copy OpenRanges to OutLocs, if not already present.
Vedant Kumarff3a5832018-10-05 21:44:00 +0000610 dbgs() << "Add to OutLocs in MBB #" << CurMBB->getNumber() << ": ";
Nicola Zaghen0818e782018-05-14 12:53:11 +0000611 VarLocIDs[ID].dump();
612 });
Adrian Prantl82629e72016-05-25 22:21:12 +0000613 VarLocSet &VLS = OutLocs[CurMBB];
Adrian Prantl514970f2016-05-26 21:42:47 +0000614 Changed = VLS |= OpenRanges.getVarLocs();
Vikram TVb1415e72015-12-16 11:09:48 +0000615 OpenRanges.clear();
Daniel Berlin748e8f42016-01-10 03:25:42 +0000616 return Changed;
Vikram TVb1415e72015-12-16 11:09:48 +0000617}
618
619/// This routine creates OpenRanges and OutLocs.
Petar Jovanovicb76c4532018-07-13 08:24:26 +0000620bool LiveDebugValues::process(MachineInstr &MI, OpenRangesSet &OpenRanges,
621 VarLocInMBB &OutLocs, VarLocMap &VarLocIDs,
622 TransferMap &Transfers, bool transferChanges) {
Daniel Berlin748e8f42016-01-10 03:25:42 +0000623 bool Changed = false;
Adrian Prantl82629e72016-05-25 22:21:12 +0000624 transferDebugValue(MI, OpenRanges, VarLocIDs);
625 transferRegisterDef(MI, OpenRanges, VarLocIDs);
Petar Jovanovicb76c4532018-07-13 08:24:26 +0000626 if (transferChanges) {
627 transferRegisterCopy(MI, OpenRanges, VarLocIDs, Transfers);
628 transferSpillInst(MI, OpenRanges, VarLocIDs, Transfers);
629 }
Adrian Prantl82629e72016-05-25 22:21:12 +0000630 Changed = transferTerminatorInst(MI, OpenRanges, OutLocs, VarLocIDs);
Daniel Berlin748e8f42016-01-10 03:25:42 +0000631 return Changed;
Vikram TVb1415e72015-12-16 11:09:48 +0000632}
633
634/// This routine joins the analysis results of all incoming edges in @MBB by
635/// inserting a new DBG_VALUE instruction at the start of the @MBB - if the same
636/// source variable in all the predecessors of @MBB reside in the same location.
Vedant Kumara01d5b82018-10-05 21:44:15 +0000637bool LiveDebugValues::join(
638 MachineBasicBlock &MBB, VarLocInMBB &OutLocs, VarLocInMBB &InLocs,
639 const VarLocMap &VarLocIDs,
640 SmallPtrSet<const MachineBasicBlock *, 16> &Visited,
641 SmallPtrSetImpl<const MachineBasicBlock *> &ArtificialBlocks) {
Vedant Kumarff3a5832018-10-05 21:44:00 +0000642 LLVM_DEBUG(dbgs() << "join MBB: " << MBB.getNumber() << "\n");
Daniel Berlin748e8f42016-01-10 03:25:42 +0000643 bool Changed = false;
Vikram TVb1415e72015-12-16 11:09:48 +0000644
Adrian Prantl82629e72016-05-25 22:21:12 +0000645 VarLocSet InLocsT; // Temporary incoming locations.
Vikram TVb1415e72015-12-16 11:09:48 +0000646
Adrian Prantl82629e72016-05-25 22:21:12 +0000647 // For all predecessors of this MBB, find the set of VarLocs that
648 // can be joined.
Keith Walker275a9fe2016-09-27 16:46:07 +0000649 int NumVisited = 0;
Vikram TVb1415e72015-12-16 11:09:48 +0000650 for (auto p : MBB.predecessors()) {
Keith Walker275a9fe2016-09-27 16:46:07 +0000651 // Ignore unvisited predecessor blocks. As we are processing
652 // the blocks in reverse post-order any unvisited block can
653 // be considered to not remove any incoming values.
Vedant Kumarff3a5832018-10-05 21:44:00 +0000654 if (!Visited.count(p)) {
655 LLVM_DEBUG(dbgs() << " ignoring unvisited pred MBB: " << p->getNumber()
656 << "\n");
Keith Walker275a9fe2016-09-27 16:46:07 +0000657 continue;
Vedant Kumarff3a5832018-10-05 21:44:00 +0000658 }
Vikram TVb1415e72015-12-16 11:09:48 +0000659 auto OL = OutLocs.find(p);
660 // Join is null in case of empty OutLocs from any of the pred.
661 if (OL == OutLocs.end())
Daniel Berlin748e8f42016-01-10 03:25:42 +0000662 return false;
Vikram TVb1415e72015-12-16 11:09:48 +0000663
Keith Walker275a9fe2016-09-27 16:46:07 +0000664 // Just copy over the Out locs to incoming locs for the first visited
665 // predecessor, and for all other predecessors join the Out locs.
666 if (!NumVisited)
Vikram TVb1415e72015-12-16 11:09:48 +0000667 InLocsT = OL->second;
Keith Walker275a9fe2016-09-27 16:46:07 +0000668 else
669 InLocsT &= OL->second;
Vedant Kumarff3a5832018-10-05 21:44:00 +0000670
671 LLVM_DEBUG({
672 if (!InLocsT.empty()) {
673 for (auto ID : InLocsT)
674 dbgs() << " gathered candidate incoming var: "
675 << VarLocIDs[ID].Var.getVar()->getName() << "\n";
676 }
677 });
678
Keith Walker275a9fe2016-09-27 16:46:07 +0000679 NumVisited++;
Vikram TVb1415e72015-12-16 11:09:48 +0000680 }
681
Adrian Prantlb835e6e2016-09-28 17:51:14 +0000682 // Filter out DBG_VALUES that are out of scope.
683 VarLocSet KillSet;
Vedant Kumara01d5b82018-10-05 21:44:15 +0000684 bool IsArtificial = ArtificialBlocks.count(&MBB);
685 if (!IsArtificial) {
686 for (auto ID : InLocsT) {
687 if (!VarLocIDs[ID].dominates(MBB)) {
688 KillSet.set(ID);
689 LLVM_DEBUG({
690 auto Name = VarLocIDs[ID].Var.getVar()->getName();
691 dbgs() << " killing " << Name << ", it doesn't dominate MBB\n";
692 });
693 }
Vedant Kumarff3a5832018-10-05 21:44:00 +0000694 }
695 }
Adrian Prantlb835e6e2016-09-28 17:51:14 +0000696 InLocsT.intersectWithComplement(KillSet);
697
Keith Walker275a9fe2016-09-27 16:46:07 +0000698 // As we are processing blocks in reverse post-order we
699 // should have processed at least one predecessor, unless it
700 // is the entry block which has no predecessor.
701 assert((NumVisited || MBB.pred_empty()) &&
702 "Should have processed at least one predecessor");
Vikram TVb1415e72015-12-16 11:09:48 +0000703 if (InLocsT.empty())
Daniel Berlin748e8f42016-01-10 03:25:42 +0000704 return false;
Vikram TVb1415e72015-12-16 11:09:48 +0000705
Adrian Prantl82629e72016-05-25 22:21:12 +0000706 VarLocSet &ILS = InLocs[&MBB];
Vikram TVb1415e72015-12-16 11:09:48 +0000707
708 // Insert DBG_VALUE instructions, if not already inserted.
Adrian Prantl82629e72016-05-25 22:21:12 +0000709 VarLocSet Diff = InLocsT;
710 Diff.intersectWithComplement(ILS);
711 for (auto ID : Diff) {
712 // This VarLoc is not found in InLocs i.e. it is not yet inserted. So, a
713 // new range is started for the var from the mbb's beginning by inserting
Petar Jovanovicb76c4532018-07-13 08:24:26 +0000714 // a new DBG_VALUE. process() will end this range however appropriate.
Adrian Prantl82629e72016-05-25 22:21:12 +0000715 const VarLoc &DiffIt = VarLocIDs[ID];
716 const MachineInstr *DMI = &DiffIt.MI;
717 MachineInstr *MI =
718 BuildMI(MBB, MBB.instr_begin(), DMI->getDebugLoc(), DMI->getDesc(),
Adrian Prantl4df9b5f2017-07-28 23:00:45 +0000719 DMI->isIndirectDebugValue(), DMI->getOperand(0).getReg(),
Adrian Prantl82629e72016-05-25 22:21:12 +0000720 DMI->getDebugVariable(), DMI->getDebugExpression());
721 if (DMI->isIndirectDebugValue())
722 MI->getOperand(1).setImm(DMI->getOperand(1).getImm());
Nicola Zaghen0818e782018-05-14 12:53:11 +0000723 LLVM_DEBUG(dbgs() << "Inserted: "; MI->dump(););
Adrian Prantl82629e72016-05-25 22:21:12 +0000724 ILS.set(ID);
725 ++NumInserted;
726 Changed = true;
Vikram TVb1415e72015-12-16 11:09:48 +0000727 }
Daniel Berlin748e8f42016-01-10 03:25:42 +0000728 return Changed;
Vikram TVb1415e72015-12-16 11:09:48 +0000729}
730
731/// Calculate the liveness information for the given machine function and
732/// extend ranges across basic blocks.
733bool LiveDebugValues::ExtendRanges(MachineFunction &MF) {
Nicola Zaghen0818e782018-05-14 12:53:11 +0000734 LLVM_DEBUG(dbgs() << "\nDebug Range Extension\n");
Vikram TVb1415e72015-12-16 11:09:48 +0000735
736 bool Changed = false;
Daniel Berlin748e8f42016-01-10 03:25:42 +0000737 bool OLChanged = false;
738 bool MBBJoined = false;
Vikram TVb1415e72015-12-16 11:09:48 +0000739
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +0000740 VarLocMap VarLocIDs; // Map VarLoc<>unique ID for use in bitvectors.
Adrian Prantl514970f2016-05-26 21:42:47 +0000741 OpenRangesSet OpenRanges; // Ranges that are open until end of bb.
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +0000742 VarLocInMBB OutLocs; // Ranges that exist beyond bb.
743 VarLocInMBB InLocs; // Ranges that are incoming after joining.
Petar Jovanovicb76c4532018-07-13 08:24:26 +0000744 TransferMap Transfers; // DBG_VALUEs associated with spills.
Vikram TVb1415e72015-12-16 11:09:48 +0000745
Vedant Kumara01d5b82018-10-05 21:44:15 +0000746 // Blocks which are artificial, i.e. blocks which exclusively contain
747 // instructions without locations, or with line 0 locations.
748 SmallPtrSet<const MachineBasicBlock *, 16> ArtificialBlocks;
749
Daniel Berlind046f202016-01-10 18:08:32 +0000750 DenseMap<unsigned int, MachineBasicBlock *> OrderToBB;
751 DenseMap<MachineBasicBlock *, unsigned int> BBToOrder;
752 std::priority_queue<unsigned int, std::vector<unsigned int>,
Adrian Prantl82629e72016-05-25 22:21:12 +0000753 std::greater<unsigned int>>
754 Worklist;
Daniel Berlind046f202016-01-10 18:08:32 +0000755 std::priority_queue<unsigned int, std::vector<unsigned int>,
Adrian Prantl82629e72016-05-25 22:21:12 +0000756 std::greater<unsigned int>>
757 Pending;
758
Petar Jovanovicb76c4532018-07-13 08:24:26 +0000759 enum : bool { dontTransferChanges = false, transferChanges = true };
760
Vikram TVb1415e72015-12-16 11:09:48 +0000761 // Initialize every mbb with OutLocs.
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +0000762 // We are not looking at any spill instructions during the initial pass
763 // over the BBs. The LiveDebugVariables pass has already created DBG_VALUE
764 // instructions for spills of registers that are known to be user variables
765 // within the BB in which the spill occurs.
Vikram TVb1415e72015-12-16 11:09:48 +0000766 for (auto &MBB : MF)
767 for (auto &MI : MBB)
Petar Jovanovicb76c4532018-07-13 08:24:26 +0000768 process(MI, OpenRanges, OutLocs, VarLocIDs, Transfers,
769 dontTransferChanges);
Adrian Prantl82629e72016-05-25 22:21:12 +0000770
Vedant Kumara01d5b82018-10-05 21:44:15 +0000771 auto hasNonArtificialLocation = [](const MachineInstr &MI) -> bool {
772 if (const DebugLoc &DL = MI.getDebugLoc())
773 return DL.getLine() != 0;
774 return false;
775 };
776 for (auto &MBB : MF)
777 if (none_of(MBB.instrs(), hasNonArtificialLocation))
778 ArtificialBlocks.insert(&MBB);
779
Nicola Zaghen0818e782018-05-14 12:53:11 +0000780 LLVM_DEBUG(printVarLocInMBB(MF, OutLocs, VarLocIDs,
781 "OutLocs after initialization", dbgs()));
Vikram TVb1415e72015-12-16 11:09:48 +0000782
Daniel Berlind046f202016-01-10 18:08:32 +0000783 ReversePostOrderTraversal<MachineFunction *> RPOT(&MF);
784 unsigned int RPONumber = 0;
785 for (auto RI = RPOT.begin(), RE = RPOT.end(); RI != RE; ++RI) {
786 OrderToBB[RPONumber] = *RI;
787 BBToOrder[*RI] = RPONumber;
788 Worklist.push(RPONumber);
789 ++RPONumber;
790 }
Daniel Berlind046f202016-01-10 18:08:32 +0000791 // This is a standard "union of predecessor outs" dataflow problem.
Petar Jovanovicb76c4532018-07-13 08:24:26 +0000792 // To solve it, we perform join() and process() using the two worklist method
Daniel Berlind046f202016-01-10 18:08:32 +0000793 // until the ranges converge.
794 // Ranges have converged when both worklists are empty.
Keith Walker275a9fe2016-09-27 16:46:07 +0000795 SmallPtrSet<const MachineBasicBlock *, 16> Visited;
Daniel Berlind046f202016-01-10 18:08:32 +0000796 while (!Worklist.empty() || !Pending.empty()) {
797 // We track what is on the pending worklist to avoid inserting the same
798 // thing twice. We could avoid this with a custom priority queue, but this
799 // is probably not worth it.
800 SmallPtrSet<MachineBasicBlock *, 16> OnPending;
Nicola Zaghen0818e782018-05-14 12:53:11 +0000801 LLVM_DEBUG(dbgs() << "Processing Worklist\n");
Daniel Berlind046f202016-01-10 18:08:32 +0000802 while (!Worklist.empty()) {
803 MachineBasicBlock *MBB = OrderToBB[Worklist.top()];
804 Worklist.pop();
Vedant Kumara01d5b82018-10-05 21:44:15 +0000805 MBBJoined =
806 join(*MBB, OutLocs, InLocs, VarLocIDs, Visited, ArtificialBlocks);
Keith Walker275a9fe2016-09-27 16:46:07 +0000807 Visited.insert(MBB);
Daniel Berlind046f202016-01-10 18:08:32 +0000808 if (MBBJoined) {
809 MBBJoined = false;
810 Changed = true;
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +0000811 // Now that we have started to extend ranges across BBs we need to
812 // examine spill instructions to see whether they spill registers that
813 // correspond to user variables.
Daniel Berlind046f202016-01-10 18:08:32 +0000814 for (auto &MI : *MBB)
Petar Jovanovicb76c4532018-07-13 08:24:26 +0000815 OLChanged |= process(MI, OpenRanges, OutLocs, VarLocIDs, Transfers,
816 transferChanges);
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +0000817
818 // Add any DBG_VALUE instructions necessitated by spills.
Petar Jovanovicb76c4532018-07-13 08:24:26 +0000819 for (auto &TR : Transfers)
820 MBB->insertAfter(MachineBasicBlock::iterator(*TR.TransferInst),
821 TR.DebugInst);
822 Transfers.clear();
Adrian Prantl82629e72016-05-25 22:21:12 +0000823
Nicola Zaghen0818e782018-05-14 12:53:11 +0000824 LLVM_DEBUG(printVarLocInMBB(MF, OutLocs, VarLocIDs,
825 "OutLocs after propagating", dbgs()));
826 LLVM_DEBUG(printVarLocInMBB(MF, InLocs, VarLocIDs,
827 "InLocs after propagating", dbgs()));
Vikram TVb1415e72015-12-16 11:09:48 +0000828
Daniel Berlind046f202016-01-10 18:08:32 +0000829 if (OLChanged) {
830 OLChanged = false;
831 for (auto s : MBB->successors())
Benjamin Kramerc22fa672016-06-17 18:59:41 +0000832 if (OnPending.insert(s).second) {
Daniel Berlind046f202016-01-10 18:08:32 +0000833 Pending.push(BBToOrder[s]);
834 }
835 }
Vikram TVb1415e72015-12-16 11:09:48 +0000836 }
837 }
Daniel Berlind046f202016-01-10 18:08:32 +0000838 Worklist.swap(Pending);
839 // At this point, pending must be empty, since it was just the empty
840 // worklist
841 assert(Pending.empty() && "Pending should be empty");
Vikram TVb1415e72015-12-16 11:09:48 +0000842 }
Daniel Berlind046f202016-01-10 18:08:32 +0000843
Nicola Zaghen0818e782018-05-14 12:53:11 +0000844 LLVM_DEBUG(printVarLocInMBB(MF, OutLocs, VarLocIDs, "Final OutLocs", dbgs()));
845 LLVM_DEBUG(printVarLocInMBB(MF, InLocs, VarLocIDs, "Final InLocs", dbgs()));
Vikram TVb1415e72015-12-16 11:09:48 +0000846 return Changed;
847}
848
849bool LiveDebugValues::runOnMachineFunction(MachineFunction &MF) {
Matthias Braund3181392017-12-15 22:22:58 +0000850 if (!MF.getFunction().getSubprogram())
Adrian Prantlb835e6e2016-09-28 17:51:14 +0000851 // LiveDebugValues will already have removed all DBG_VALUEs.
852 return false;
853
Wolfgang Pieba6df1e52017-07-19 19:36:40 +0000854 // Skip functions from NoDebug compilation units.
Matthias Braund3181392017-12-15 22:22:58 +0000855 if (MF.getFunction().getSubprogram()->getUnit()->getEmissionKind() ==
Wolfgang Pieba6df1e52017-07-19 19:36:40 +0000856 DICompileUnit::NoDebug)
857 return false;
858
Vikram TVb1415e72015-12-16 11:09:48 +0000859 TRI = MF.getSubtarget().getRegisterInfo();
860 TII = MF.getSubtarget().getInstrInfo();
Wolfgang Pieb5c49cf12017-02-14 19:08:45 +0000861 TFI = MF.getSubtarget().getFrameLowering();
Petar Jovanovicb76c4532018-07-13 08:24:26 +0000862 TFI->determineCalleeSaves(MF, CalleeSavedRegs,
863 make_unique<RegScavenger>().get());
Adrian Prantlb835e6e2016-09-28 17:51:14 +0000864 LS.initialize(MF);
Vikram TVb1415e72015-12-16 11:09:48 +0000865
Adrian Prantlb835e6e2016-09-28 17:51:14 +0000866 bool Changed = ExtendRanges(MF);
Vikram TVb1415e72015-12-16 11:09:48 +0000867 return Changed;
868}