blob: 4d1d4b0ebd30c5626b5bcb5d41daf7b4f6b7e7b4 [file] [log] [blame]
Jakob Stoklund Olesend4900a62010-11-30 02:17:10 +00001//===- LiveDebugVariables.cpp - Tracking debug info variables -------------===//
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 LiveDebugVariables analysis.
11//
12// Remove all DBG_VALUE instructions referencing virtual registers and replace
13// them with a data structure tracking where live user variables are kept - in a
14// virtual register or in a stack slot.
15//
16// Allow the data structure to be updated during register allocation when values
17// are moved between registers and stack slots. Finally emit new DBG_VALUE
18// instructions after register allocation is complete.
19//
20//===----------------------------------------------------------------------===//
21
22#include "LiveDebugVariables.h"
Eugene Zelenko5df3d892017-08-24 21:21:39 +000023#include "llvm/ADT/ArrayRef.h"
24#include "llvm/ADT/DenseMap.h"
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +000025#include "llvm/ADT/IntervalMap.h"
Eugene Zelenko5df3d892017-08-24 21:21:39 +000026#include "llvm/ADT/STLExtras.h"
Robert Lougher10f740d2017-08-03 11:54:02 +000027#include "llvm/ADT/SmallSet.h"
Eugene Zelenko5df3d892017-08-24 21:21:39 +000028#include "llvm/ADT/SmallVector.h"
Devang Patelb4568662011-08-04 18:45:38 +000029#include "llvm/ADT/Statistic.h"
Eugene Zelenko5df3d892017-08-24 21:21:39 +000030#include "llvm/ADT/StringRef.h"
Robert Lougher10f740d2017-08-03 11:54:02 +000031#include "llvm/CodeGen/LexicalScopes.h"
Eugene Zelenko5df3d892017-08-24 21:21:39 +000032#include "llvm/CodeGen/LiveInterval.h"
Matthias Braunf8422972017-12-13 02:51:04 +000033#include "llvm/CodeGen/LiveIntervals.h"
Eugene Zelenko5df3d892017-08-24 21:21:39 +000034#include "llvm/CodeGen/MachineBasicBlock.h"
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +000035#include "llvm/CodeGen/MachineDominators.h"
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +000036#include "llvm/CodeGen/MachineFunction.h"
Eugene Zelenko5df3d892017-08-24 21:21:39 +000037#include "llvm/CodeGen/MachineInstr.h"
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +000038#include "llvm/CodeGen/MachineInstrBuilder.h"
Eugene Zelenko5df3d892017-08-24 21:21:39 +000039#include "llvm/CodeGen/MachineOperand.h"
Jakob Stoklund Olesen816f5f42011-03-18 21:42:19 +000040#include "llvm/CodeGen/MachineRegisterInfo.h"
Eugene Zelenko5df3d892017-08-24 21:21:39 +000041#include "llvm/CodeGen/SlotIndexes.h"
David Blaikie3f833ed2017-11-08 01:01:31 +000042#include "llvm/CodeGen/TargetInstrInfo.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000043#include "llvm/CodeGen/TargetOpcodes.h"
44#include "llvm/CodeGen/TargetRegisterInfo.h"
45#include "llvm/CodeGen/TargetSubtargetInfo.h"
Jakob Stoklund Olesen26c9d702012-11-28 19:13:06 +000046#include "llvm/CodeGen/VirtRegMap.h"
Eugene Zelenko5df3d892017-08-24 21:21:39 +000047#include "llvm/IR/DebugInfoMetadata.h"
48#include "llvm/IR/DebugLoc.h"
49#include "llvm/IR/Function.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000050#include "llvm/IR/Metadata.h"
Eugene Zelenko5df3d892017-08-24 21:21:39 +000051#include "llvm/MC/MCRegisterInfo.h"
52#include "llvm/Pass.h"
53#include "llvm/Support/Casting.h"
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +000054#include "llvm/Support/CommandLine.h"
Eugene Zelenko5df3d892017-08-24 21:21:39 +000055#include "llvm/Support/Compiler.h"
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +000056#include "llvm/Support/Debug.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000057#include "llvm/Support/raw_ostream.h"
Eugene Zelenko5df3d892017-08-24 21:21:39 +000058#include <algorithm>
59#include <cassert>
60#include <iterator>
David Blaikie2b1dfa72014-04-21 20:37:07 +000061#include <memory>
Benjamin Kramer82de7d32016-05-27 14:27:24 +000062#include <utility>
David Blaikie2b1dfa72014-04-21 20:37:07 +000063
Jakob Stoklund Olesend4900a62010-11-30 02:17:10 +000064using namespace llvm;
65
Matthias Braun1527baa2017-05-25 21:26:32 +000066#define DEBUG_TYPE "livedebugvars"
Chandler Carruth1b9dde02014-04-22 02:02:50 +000067
Devang Patelacbee0b2011-01-07 22:33:41 +000068static cl::opt<bool>
Jakob Stoklund Olesen74ded572011-01-12 23:36:21 +000069EnableLDV("live-debug-variables", cl::init(true),
Devang Patelacbee0b2011-01-07 22:33:41 +000070 cl::desc("Enable the live debug variables pass"), cl::Hidden);
71
Devang Patelb4568662011-08-04 18:45:38 +000072STATISTIC(NumInsertedDebugValues, "Number of DBG_VALUEs inserted");
Eugene Zelenko5df3d892017-08-24 21:21:39 +000073
Jakob Stoklund Olesend4900a62010-11-30 02:17:10 +000074char LiveDebugVariables::ID = 0;
75
Matthias Braun1527baa2017-05-25 21:26:32 +000076INITIALIZE_PASS_BEGIN(LiveDebugVariables, DEBUG_TYPE,
Jakob Stoklund Olesend4900a62010-11-30 02:17:10 +000077 "Debug Variable Analysis", false, false)
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +000078INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
Jakob Stoklund Olesend4900a62010-11-30 02:17:10 +000079INITIALIZE_PASS_DEPENDENCY(LiveIntervals)
Matthias Braun1527baa2017-05-25 21:26:32 +000080INITIALIZE_PASS_END(LiveDebugVariables, DEBUG_TYPE,
Jakob Stoklund Olesend4900a62010-11-30 02:17:10 +000081 "Debug Variable Analysis", false, false)
82
83void LiveDebugVariables::getAnalysisUsage(AnalysisUsage &AU) const {
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +000084 AU.addRequired<MachineDominatorTree>();
Jakob Stoklund Olesend4900a62010-11-30 02:17:10 +000085 AU.addRequiredTransitive<LiveIntervals>();
86 AU.setPreservesAll();
87 MachineFunctionPass::getAnalysisUsage(AU);
88}
89
Eugene Zelenko5df3d892017-08-24 21:21:39 +000090LiveDebugVariables::LiveDebugVariables() : MachineFunctionPass(ID) {
Jakob Stoklund Olesend4900a62010-11-30 02:17:10 +000091 initializeLiveDebugVariablesPass(*PassRegistry::getPassRegistry());
92}
93
Reid Kleckner04e25e02017-10-03 17:59:02 +000094enum : unsigned { UndefLocNo = ~0U };
95
96/// Describes a location by number along with some flags about the original
97/// usage of the location.
98class DbgValueLocation {
99public:
100 DbgValueLocation(unsigned LocNo, bool WasIndirect)
101 : LocNo(LocNo), WasIndirect(WasIndirect) {
102 static_assert(sizeof(*this) == sizeof(unsigned), "bad bitfield packing");
103 assert(locNo() == LocNo && "location truncation");
104 }
105
106 DbgValueLocation() : LocNo(0), WasIndirect(0) {}
107
108 unsigned locNo() const {
109 // Fix up the undef location number, which gets truncated.
110 return LocNo == INT_MAX ? UndefLocNo : LocNo;
111 }
112 bool wasIndirect() const { return WasIndirect; }
113 bool isUndef() const { return locNo() == UndefLocNo; }
114
115 DbgValueLocation changeLocNo(unsigned NewLocNo) const {
116 return DbgValueLocation(NewLocNo, WasIndirect);
117 }
118
Reid Klecknerb4569de72017-10-03 18:30:11 +0000119 friend inline bool operator==(const DbgValueLocation &LHS,
120 const DbgValueLocation &RHS) {
121 return LHS.LocNo == RHS.LocNo && LHS.WasIndirect == RHS.WasIndirect;
Reid Kleckner04e25e02017-10-03 17:59:02 +0000122 }
Reid Klecknerb4569de72017-10-03 18:30:11 +0000123
124 friend inline bool operator!=(const DbgValueLocation &LHS,
125 const DbgValueLocation &RHS) {
126 return !(LHS == RHS);
127 }
Reid Kleckner04e25e02017-10-03 17:59:02 +0000128
129private:
130 unsigned LocNo : 31;
131 unsigned WasIndirect : 1;
132};
133
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000134/// LocMap - Map of where a user value is live, and its location.
Reid Kleckner04e25e02017-10-03 17:59:02 +0000135using LocMap = IntervalMap<SlotIndex, DbgValueLocation, 4>;
Eugene Zelenko5df3d892017-08-24 21:21:39 +0000136
137namespace {
138
139class LDVImpl;
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000140
141/// UserValue - A user value is a part of a debug info user variable.
142///
143/// A DBG_VALUE instruction notes that (a sub-register of) a virtual register
144/// holds part of a user variable. The part is identified by a byte offset.
145///
146/// UserValues are grouped into equivalence classes for easier searching. Two
147/// user values are related if they refer to the same variable, or if they are
148/// held by the same virtual register. The equivalence class is the transitive
149/// closure of that relation.
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000150class UserValue {
Reid Kleckner4e040282017-09-20 18:19:08 +0000151 const DILocalVariable *Variable; ///< The debug info variable we are part of.
152 const DIExpression *Expression; ///< Any complex address expression.
Devang Patel26ffa012011-02-04 01:43:25 +0000153 DebugLoc dl; ///< The debug location for the variable. This is
154 ///< used by dwarf writer to find lexical scope.
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000155 UserValue *leader; ///< Equivalence class leader.
Eugene Zelenko5df3d892017-08-24 21:21:39 +0000156 UserValue *next = nullptr; ///< Next value in equivalence class, or null.
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000157
158 /// Numbered locations referenced by locmap.
Jakob Stoklund Olesen9adf5e02011-01-09 05:33:21 +0000159 SmallVector<MachineOperand, 4> locations;
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000160
161 /// Map of slot indices where this value is live.
162 LocMap locInts;
163
Robert Lougher10f740d2017-08-03 11:54:02 +0000164 /// Set of interval start indexes that have been trimmed to the
165 /// lexical scope.
166 SmallSet<SlotIndex, 2> trimmedDefs;
167
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +0000168 /// insertDebugValue - Insert a DBG_VALUE into MBB at Idx for LocNo.
Karl-Johan Karlsson8d8d2012017-10-05 08:37:31 +0000169 void insertDebugValue(MachineBasicBlock *MBB, SlotIndex StartIdx,
170 SlotIndex StopIdx,
Reid Kleckner04e25e02017-10-03 17:59:02 +0000171 DbgValueLocation Loc, bool Spilled, LiveIntervals &LIS,
Karl-Johan Karlsson8d8d2012017-10-05 08:37:31 +0000172 const TargetInstrInfo &TII,
173 const TargetRegisterInfo &TRI);
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +0000174
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000175 /// splitLocation - Replace OldLocNo ranges with NewRegs ranges where NewRegs
176 /// is live. Returns true if any changes were made.
Mark Laceyf9ea8852013-08-14 23:50:04 +0000177 bool splitLocation(unsigned OldLocNo, ArrayRef<unsigned> NewRegs,
178 LiveIntervals &LIS);
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000179
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000180public:
181 /// UserValue - Create a new UserValue.
Reid Kleckner04e25e02017-10-03 17:59:02 +0000182 UserValue(const DILocalVariable *var, const DIExpression *expr, DebugLoc L,
183 LocMap::Allocator &alloc)
184 : Variable(var), Expression(expr), dl(std::move(L)), leader(this),
185 locInts(alloc) {}
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000186
187 /// getLeader - Get the leader of this value's equivalence class.
188 UserValue *getLeader() {
189 UserValue *l = leader;
190 while (l != l->leader)
191 l = l->leader;
192 return leader = l;
193 }
194
195 /// getNext - Return the next UserValue in the equivalence class.
196 UserValue *getNext() const { return next; }
197
Devang Patel338e4322011-07-06 23:09:51 +0000198 /// match - Does this UserValue match the parameters?
Reid Kleckner4e040282017-09-20 18:19:08 +0000199 bool match(const DILocalVariable *Var, const DIExpression *Expr,
Reid Kleckner04e25e02017-10-03 17:59:02 +0000200 const DILocation *IA) const {
201 // FIXME: The fragment should be part of the equivalence class, but not
202 // other things in the expression like stack values.
203 return Var == Variable && Expr == Expression && dl->getInlinedAt() == IA;
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000204 }
205
206 /// merge - Merge equivalence classes.
207 static UserValue *merge(UserValue *L1, UserValue *L2) {
208 L2 = L2->getLeader();
209 if (!L1)
210 return L2;
211 L1 = L1->getLeader();
212 if (L1 == L2)
213 return L1;
214 // Splice L2 before L1's members.
215 UserValue *End = L2;
Richard Trieu7a083812016-02-18 22:09:30 +0000216 while (End->next) {
217 End->leader = L1;
218 End = End->next;
219 }
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000220 End->leader = L1;
221 End->next = L1->next;
222 L1->next = L2;
223 return L1;
224 }
225
226 /// getLocationNo - Return the location number that matches Loc.
Jakob Stoklund Olesen9adf5e02011-01-09 05:33:21 +0000227 unsigned getLocationNo(const MachineOperand &LocMO) {
Jakob Stoklund Olesen816f5f42011-03-18 21:42:19 +0000228 if (LocMO.isReg()) {
229 if (LocMO.getReg() == 0)
Reid Klecknereed09732017-09-15 22:08:50 +0000230 return UndefLocNo;
Jakob Stoklund Olesen816f5f42011-03-18 21:42:19 +0000231 // For register locations we dont care about use/def and other flags.
232 for (unsigned i = 0, e = locations.size(); i != e; ++i)
233 if (locations[i].isReg() &&
234 locations[i].getReg() == LocMO.getReg() &&
235 locations[i].getSubReg() == LocMO.getSubReg())
236 return i;
237 } else
238 for (unsigned i = 0, e = locations.size(); i != e; ++i)
239 if (LocMO.isIdenticalTo(locations[i]))
240 return i;
Jakob Stoklund Olesen9adf5e02011-01-09 05:33:21 +0000241 locations.push_back(LocMO);
242 // We are storing a MachineOperand outside a MachineInstr.
243 locations.back().clearParent();
Jakob Stoklund Olesen816f5f42011-03-18 21:42:19 +0000244 // Don't store def operands.
245 if (locations.back().isReg())
246 locations.back().setIsUse();
Jakob Stoklund Olesen9adf5e02011-01-09 05:33:21 +0000247 return locations.size() - 1;
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000248 }
249
Jakob Stoklund Olesen816f5f42011-03-18 21:42:19 +0000250 /// mapVirtRegs - Ensure that all virtual register locations are mapped.
251 void mapVirtRegs(LDVImpl *LDV);
252
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000253 /// addDef - Add a definition point to this value.
Reid Kleckner04e25e02017-10-03 17:59:02 +0000254 void addDef(SlotIndex Idx, const MachineOperand &LocMO, bool IsIndirect) {
255 DbgValueLocation Loc(getLocationNo(LocMO), IsIndirect);
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000256 // Add a singular (Idx,Idx) -> Loc mapping.
257 LocMap::iterator I = locInts.find(Idx);
258 if (!I.valid() || I.start() != Idx)
Reid Kleckner04e25e02017-10-03 17:59:02 +0000259 I.insert(Idx, Idx.getNextSlot(), Loc);
Jakob Stoklund Olesen2539af62011-08-03 23:44:31 +0000260 else
261 // A later DBG_VALUE at the same SlotIndex overrides the old location.
Reid Kleckner04e25e02017-10-03 17:59:02 +0000262 I.setValue(Loc);
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000263 }
264
Adrian Prantlf8d10ce2016-09-28 21:34:23 +0000265 /// extendDef - Extend the current definition as far as possible down.
266 /// Stop when meeting an existing def or when leaving the live
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000267 /// range of VNI.
Jakob Stoklund Olesen816f5f42011-03-18 21:42:19 +0000268 /// End points where VNI is no longer live are added to Kills.
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000269 /// @param Idx Starting point for the definition.
Reid Kleckner04e25e02017-10-03 17:59:02 +0000270 /// @param Loc Location number to propagate.
Matthias Braun34e1be92013-10-10 21:29:02 +0000271 /// @param LR Restrict liveness to where LR has the value VNI. May be null.
272 /// @param VNI When LR is not null, this is the value to restrict to.
Jakob Stoklund Olesen816f5f42011-03-18 21:42:19 +0000273 /// @param Kills Append end points of VNI's live range to Kills.
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000274 /// @param LIS Live intervals analysis.
Reid Kleckner04e25e02017-10-03 17:59:02 +0000275 void extendDef(SlotIndex Idx, DbgValueLocation Loc,
Matthias Braun34e1be92013-10-10 21:29:02 +0000276 LiveRange *LR, const VNInfo *VNI,
Jakob Stoklund Olesen816f5f42011-03-18 21:42:19 +0000277 SmallVectorImpl<SlotIndex> *Kills,
Adrian Prantlf8d10ce2016-09-28 21:34:23 +0000278 LiveIntervals &LIS);
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000279
Jakob Stoklund Olesen816f5f42011-03-18 21:42:19 +0000280 /// addDefsFromCopies - The value in LI/LocNo may be copies to other
281 /// registers. Determine if any of the copies are available at the kill
282 /// points, and add defs if possible.
283 /// @param LI Scan for copies of the value in LI->reg.
284 /// @param LocNo Location number of LI->reg.
Reid Kleckner04e25e02017-10-03 17:59:02 +0000285 /// @param WasIndirect Indicates if the original use of LI->reg was indirect
Jakob Stoklund Olesen816f5f42011-03-18 21:42:19 +0000286 /// @param Kills Points where the range of LocNo could be extended.
287 /// @param NewDefs Append (Idx, LocNo) of inserted defs here.
Reid Kleckner04e25e02017-10-03 17:59:02 +0000288 void addDefsFromCopies(
289 LiveInterval *LI, unsigned LocNo, bool WasIndirect,
290 const SmallVectorImpl<SlotIndex> &Kills,
291 SmallVectorImpl<std::pair<SlotIndex, DbgValueLocation>> &NewDefs,
292 MachineRegisterInfo &MRI, LiveIntervals &LIS);
Jakob Stoklund Olesen816f5f42011-03-18 21:42:19 +0000293
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000294 /// computeIntervals - Compute the live intervals of all locations after
295 /// collecting all their def points.
Jakob Stoklund Olesen32449632012-06-22 17:15:32 +0000296 void computeIntervals(MachineRegisterInfo &MRI, const TargetRegisterInfo &TRI,
Robert Lougher10f740d2017-08-03 11:54:02 +0000297 LiveIntervals &LIS, LexicalScopes &LS);
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000298
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000299 /// splitRegister - Replace OldReg ranges with NewRegs ranges where NewRegs is
300 /// live. Returns true if any changes were made.
Mark Laceyf9ea8852013-08-14 23:50:04 +0000301 bool splitRegister(unsigned OldLocNo, ArrayRef<unsigned> NewRegs,
302 LiveIntervals &LIS);
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000303
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +0000304 /// rewriteLocations - Rewrite virtual register locations according to the
Reid Kleckner4e040282017-09-20 18:19:08 +0000305 /// provided virtual register map. Record which locations were spilled.
306 void rewriteLocations(VirtRegMap &VRM, const TargetRegisterInfo &TRI,
307 BitVector &SpilledLocations);
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +0000308
Eric Christopherbc671702013-02-13 02:29:18 +0000309 /// emitDebugValues - Recreate DBG_VALUE instruction from data structures.
Reid Kleckner4e040282017-09-20 18:19:08 +0000310 void emitDebugValues(VirtRegMap *VRM, LiveIntervals &LIS,
Karl-Johan Karlsson8d8d2012017-10-05 08:37:31 +0000311 const TargetInstrInfo &TII,
312 const TargetRegisterInfo &TRI,
Reid Kleckner4e040282017-09-20 18:19:08 +0000313 const BitVector &SpilledLocations);
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +0000314
Devang Patelf9e2ae92011-09-13 18:40:53 +0000315 /// getDebugLoc - Return DebugLoc of this UserValue.
316 DebugLoc getDebugLoc() { return dl;}
Eugene Zelenko5df3d892017-08-24 21:21:39 +0000317
Eric Christopher1cdefae2015-02-27 00:11:34 +0000318 void print(raw_ostream &, const TargetRegisterInfo *);
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000319};
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000320
321/// LDVImpl - Implementation of the LiveDebugVariables pass.
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000322class LDVImpl {
323 LiveDebugVariables &pass;
324 LocMap::Allocator allocator;
Eugene Zelenko5df3d892017-08-24 21:21:39 +0000325 MachineFunction *MF = nullptr;
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000326 LiveIntervals *LIS;
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000327 const TargetRegisterInfo *TRI;
328
Manman Ren7a4c8a72013-02-13 20:23:48 +0000329 /// Whether emitDebugValues is called.
Eugene Zelenko5df3d892017-08-24 21:21:39 +0000330 bool EmitDone = false;
331
Manman Ren7a4c8a72013-02-13 20:23:48 +0000332 /// Whether the machine function is modified during the pass.
Eugene Zelenko5df3d892017-08-24 21:21:39 +0000333 bool ModifiedMF = false;
Manman Ren7a4c8a72013-02-13 20:23:48 +0000334
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000335 /// userValues - All allocated UserValue instances.
David Blaikie2b1dfa72014-04-21 20:37:07 +0000336 SmallVector<std::unique_ptr<UserValue>, 8> userValues;
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000337
338 /// Map virtual register to eq class leader.
Eugene Zelenko5df3d892017-08-24 21:21:39 +0000339 using VRMap = DenseMap<unsigned, UserValue *>;
Jakob Stoklund Olesen922e1fa2010-12-03 22:25:09 +0000340 VRMap virtRegToEqClass;
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000341
342 /// Map user variable to eq class leader.
Reid Kleckner4e040282017-09-20 18:19:08 +0000343 using UVMap = DenseMap<const DILocalVariable *, UserValue *>;
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000344 UVMap userVarMap;
345
346 /// getUserValue - Find or create a UserValue.
Reid Kleckner4e040282017-09-20 18:19:08 +0000347 UserValue *getUserValue(const DILocalVariable *Var, const DIExpression *Expr,
Reid Kleckner04e25e02017-10-03 17:59:02 +0000348 const DebugLoc &DL);
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000349
Jakob Stoklund Olesen9ec20112010-12-02 18:15:44 +0000350 /// lookupVirtReg - Find the EC leader for VirtReg or null.
351 UserValue *lookupVirtReg(unsigned VirtReg);
352
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000353 /// handleDebugValue - Add DBG_VALUE instruction to our maps.
354 /// @param MI DBG_VALUE instruction
355 /// @param Idx Last valid SLotIndex before instruction.
356 /// @return True if the DBG_VALUE instruction should be deleted.
Duncan P. N. Exon Smithfb612ac2016-06-30 23:13:38 +0000357 bool handleDebugValue(MachineInstr &MI, SlotIndex Idx);
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000358
359 /// collectDebugValues - Collect and erase all DBG_VALUE instructions, adding
360 /// a UserValue def for each instruction.
361 /// @param mf MachineFunction to be scanned.
362 /// @return True if any debug values were found.
363 bool collectDebugValues(MachineFunction &mf);
364
365 /// computeIntervals - Compute the live intervals of all user values after
366 /// collecting all their def points.
367 void computeIntervals();
368
369public:
Eugene Zelenko5df3d892017-08-24 21:21:39 +0000370 LDVImpl(LiveDebugVariables *ps) : pass(*ps) {}
371
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000372 bool runOnMachineFunction(MachineFunction &mf);
373
Manman Ren7a4c8a72013-02-13 20:23:48 +0000374 /// clear - Release all memory.
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000375 void clear() {
David Blaikie2f040112014-07-25 16:10:16 +0000376 MF = nullptr;
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000377 userValues.clear();
Jakob Stoklund Olesen922e1fa2010-12-03 22:25:09 +0000378 virtRegToEqClass.clear();
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000379 userVarMap.clear();
Manman Ren7a4c8a72013-02-13 20:23:48 +0000380 // Make sure we call emitDebugValues if the machine function was modified.
381 assert((!ModifiedMF || EmitDone) &&
382 "Dbg values are not emitted in LDV");
383 EmitDone = false;
384 ModifiedMF = false;
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000385 }
386
Jakob Stoklund Olesen816f5f42011-03-18 21:42:19 +0000387 /// mapVirtReg - Map virtual register to an equivalence class.
388 void mapVirtReg(unsigned VirtReg, UserValue *EC);
389
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000390 /// splitRegister - Replace all references to OldReg with NewRegs.
Mark Laceyf9ea8852013-08-14 23:50:04 +0000391 void splitRegister(unsigned OldReg, ArrayRef<unsigned> NewRegs);
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000392
Eric Christopherbc671702013-02-13 02:29:18 +0000393 /// emitDebugValues - Recreate DBG_VALUE instruction from data structures.
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +0000394 void emitDebugValues(VirtRegMap *VRM);
395
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000396 void print(raw_ostream&);
397};
Eugene Zelenko5df3d892017-08-24 21:21:39 +0000398
399} // end anonymous namespace
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000400
Aaron Ballman615eb472017-10-15 14:32:27 +0000401#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000402static void printDebugLoc(const DebugLoc &DL, raw_ostream &CommentOS,
Duncan P. N. Exon Smith32e7f282015-04-14 02:09:32 +0000403 const LLVMContext &Ctx) {
404 if (!DL)
405 return;
406
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000407 auto *Scope = cast<DIScope>(DL.getScope());
Duncan P. N. Exon Smith32e7f282015-04-14 02:09:32 +0000408 // Omit the directory, because it's likely to be long and uninteresting.
Duncan P. N. Exon Smithb273d062015-04-16 01:37:00 +0000409 CommentOS << Scope->getFilename();
Duncan P. N. Exon Smith32e7f282015-04-14 02:09:32 +0000410 CommentOS << ':' << DL.getLine();
411 if (DL.getCol() != 0)
412 CommentOS << ':' << DL.getCol();
413
414 DebugLoc InlinedAtDL = DL.getInlinedAt();
415 if (!InlinedAtDL)
416 return;
417
418 CommentOS << " @[ ";
419 printDebugLoc(InlinedAtDL, CommentOS, Ctx);
420 CommentOS << " ]";
421}
422
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000423static void printExtendedName(raw_ostream &OS, const DILocalVariable *V,
424 const DILocation *DL) {
Duncan P. N. Exon Smith32e7f282015-04-14 02:09:32 +0000425 const LLVMContext &Ctx = V->getContext();
426 StringRef Res = V->getName();
427 if (!Res.empty())
428 OS << Res << "," << V->getLine();
Duncan P. N. Exon Smith62e0f452015-04-15 22:29:27 +0000429 if (auto *InlinedAt = DL->getInlinedAt()) {
Duncan P. N. Exon Smith32e7f282015-04-14 02:09:32 +0000430 if (DebugLoc InlinedAtDL = InlinedAt) {
431 OS << " @[";
432 printDebugLoc(InlinedAtDL, OS, Ctx);
433 OS << "]";
434 }
435 }
436}
437
Eric Christopher1cdefae2015-02-27 00:11:34 +0000438void UserValue::print(raw_ostream &OS, const TargetRegisterInfo *TRI) {
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000439 auto *DV = cast<DILocalVariable>(Variable);
Frederic Risse6bb1872014-08-07 20:04:00 +0000440 OS << "!\"";
Duncan P. N. Exon Smith62e0f452015-04-15 22:29:27 +0000441 printExtendedName(OS, DV, dl);
Duncan P. N. Exon Smith32e7f282015-04-14 02:09:32 +0000442
Devang Patel6c1ed312011-08-09 01:03:35 +0000443 OS << "\"\t";
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000444 for (LocMap::const_iterator I = locInts.begin(); I.valid(); ++I) {
445 OS << " [" << I.start() << ';' << I.stop() << "):";
Reid Kleckner04e25e02017-10-03 17:59:02 +0000446 if (I.value().isUndef())
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000447 OS << "undef";
Reid Kleckner04e25e02017-10-03 17:59:02 +0000448 else {
449 OS << I.value().locNo();
450 if (I.value().wasIndirect())
451 OS << " ind";
452 }
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000453 }
Jakob Stoklund Olesenc86fe052011-05-06 17:59:59 +0000454 for (unsigned i = 0, e = locations.size(); i != e; ++i) {
455 OS << " Loc" << i << '=';
Eric Christopher1cdefae2015-02-27 00:11:34 +0000456 locations[i].print(OS, TRI);
Jakob Stoklund Olesenc86fe052011-05-06 17:59:59 +0000457 }
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000458 OS << '\n';
459}
460
461void LDVImpl::print(raw_ostream &OS) {
462 OS << "********** DEBUG VARIABLES **********\n";
463 for (unsigned i = 0, e = userValues.size(); i != e; ++i)
Eric Christopher1cdefae2015-02-27 00:11:34 +0000464 userValues[i]->print(OS, TRI);
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000465}
Florian Hahn6b3216a2017-07-31 10:07:49 +0000466#endif
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000467
Jakob Stoklund Olesen816f5f42011-03-18 21:42:19 +0000468void UserValue::mapVirtRegs(LDVImpl *LDV) {
469 for (unsigned i = 0, e = locations.size(); i != e; ++i)
470 if (locations[i].isReg() &&
471 TargetRegisterInfo::isVirtualRegister(locations[i].getReg()))
472 LDV->mapVirtReg(locations[i].getReg(), this);
473}
474
Reid Kleckner4e040282017-09-20 18:19:08 +0000475UserValue *LDVImpl::getUserValue(const DILocalVariable *Var,
Reid Kleckner04e25e02017-10-03 17:59:02 +0000476 const DIExpression *Expr, const DebugLoc &DL) {
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000477 UserValue *&Leader = userVarMap[Var];
478 if (Leader) {
479 UserValue *UV = Leader->getLeader();
480 Leader = UV;
481 for (; UV; UV = UV->getNext())
Reid Kleckner04e25e02017-10-03 17:59:02 +0000482 if (UV->match(Var, Expr, DL->getInlinedAt()))
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000483 return UV;
484 }
485
David Blaikie2b1dfa72014-04-21 20:37:07 +0000486 userValues.push_back(
Reid Kleckner04e25e02017-10-03 17:59:02 +0000487 llvm::make_unique<UserValue>(Var, Expr, DL, allocator));
David Blaikie2b1dfa72014-04-21 20:37:07 +0000488 UserValue *UV = userValues.back().get();
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000489 Leader = UserValue::merge(Leader, UV);
490 return UV;
491}
492
493void LDVImpl::mapVirtReg(unsigned VirtReg, UserValue *EC) {
494 assert(TargetRegisterInfo::isVirtualRegister(VirtReg) && "Only map VirtRegs");
Jakob Stoklund Olesen922e1fa2010-12-03 22:25:09 +0000495 UserValue *&Leader = virtRegToEqClass[VirtReg];
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000496 Leader = UserValue::merge(Leader, EC);
497}
498
Jakob Stoklund Olesen9ec20112010-12-02 18:15:44 +0000499UserValue *LDVImpl::lookupVirtReg(unsigned VirtReg) {
Jakob Stoklund Olesen922e1fa2010-12-03 22:25:09 +0000500 if (UserValue *UV = virtRegToEqClass.lookup(VirtReg))
Jakob Stoklund Olesen9ec20112010-12-02 18:15:44 +0000501 return UV->getLeader();
Craig Topperc0196b12014-04-14 00:51:57 +0000502 return nullptr;
Jakob Stoklund Olesen9ec20112010-12-02 18:15:44 +0000503}
504
Duncan P. N. Exon Smithfb612ac2016-06-30 23:13:38 +0000505bool LDVImpl::handleDebugValue(MachineInstr &MI, SlotIndex Idx) {
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000506 // DBG_VALUE loc, offset, variable
Duncan P. N. Exon Smithfb612ac2016-06-30 23:13:38 +0000507 if (MI.getNumOperands() != 4 ||
508 !(MI.getOperand(1).isReg() || MI.getOperand(1).isImm()) ||
509 !MI.getOperand(2).isMetadata()) {
510 DEBUG(dbgs() << "Can't handle " << MI);
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000511 return false;
512 }
513
Reid Kleckner04e25e02017-10-03 17:59:02 +0000514 // Get or create the UserValue for (variable,offset) here.
Reid Kleckner4e040282017-09-20 18:19:08 +0000515 bool IsIndirect = MI.getOperand(1).isImm();
Adrian Prantlb2811e52017-07-28 23:06:50 +0000516 if (IsIndirect)
517 assert(MI.getOperand(1).getImm() == 0 && "DBG_VALUE with nonzero offset");
Reid Kleckner4e040282017-09-20 18:19:08 +0000518 const DILocalVariable *Var = MI.getDebugVariable();
519 const DIExpression *Expr = MI.getDebugExpression();
Reid Kleckner04e25e02017-10-03 17:59:02 +0000520 UserValue *UV =
521 getUserValue(Var, Expr, MI.getDebugLoc());
522 UV->addDef(Idx, MI.getOperand(0), IsIndirect);
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000523 return true;
524}
525
526bool LDVImpl::collectDebugValues(MachineFunction &mf) {
527 bool Changed = false;
528 for (MachineFunction::iterator MFI = mf.begin(), MFE = mf.end(); MFI != MFE;
529 ++MFI) {
Duncan P. N. Exon Smith5ae59392015-10-09 19:13:58 +0000530 MachineBasicBlock *MBB = &*MFI;
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000531 for (MachineBasicBlock::iterator MBBI = MBB->begin(), MBBE = MBB->end();
532 MBBI != MBBE;) {
533 if (!MBBI->isDebugValue()) {
534 ++MBBI;
535 continue;
536 }
537 // DBG_VALUE has no slot index, use the previous instruction instead.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000538 SlotIndex Idx =
539 MBBI == MBB->begin()
540 ? LIS->getMBBStartIdx(MBB)
541 : LIS->getInstructionIndex(*std::prev(MBBI)).getRegSlot();
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000542 // Handle consecutive DBG_VALUE instructions with the same slot index.
543 do {
Duncan P. N. Exon Smithfb612ac2016-06-30 23:13:38 +0000544 if (handleDebugValue(*MBBI, Idx)) {
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000545 MBBI = MBB->erase(MBBI);
546 Changed = true;
547 } else
548 ++MBBI;
549 } while (MBBI != MBBE && MBBI->isDebugValue());
550 }
551 }
552 return Changed;
553}
554
Adrian Prantlce858132015-12-21 20:03:00 +0000555/// We only propagate DBG_VALUES locally here. LiveDebugValues performs a
556/// data-flow analysis to propagate them beyond basic block boundaries.
Reid Kleckner04e25e02017-10-03 17:59:02 +0000557void UserValue::extendDef(SlotIndex Idx, DbgValueLocation Loc, LiveRange *LR,
Adrian Prantlce858132015-12-21 20:03:00 +0000558 const VNInfo *VNI, SmallVectorImpl<SlotIndex> *Kills,
Adrian Prantlf8d10ce2016-09-28 21:34:23 +0000559 LiveIntervals &LIS) {
Adrian Prantlce858132015-12-21 20:03:00 +0000560 SlotIndex Start = Idx;
561 MachineBasicBlock *MBB = LIS.getMBBFromIndex(Start);
562 SlotIndex Stop = LIS.getMBBEndIdx(MBB);
563 LocMap::iterator I = locInts.find(Start);
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000564
Adrian Prantlce858132015-12-21 20:03:00 +0000565 // Limit to VNI's live range.
566 bool ToEnd = true;
567 if (LR && VNI) {
568 LiveInterval::Segment *Segment = LR->getSegmentContaining(Start);
569 if (!Segment || Segment->valno != VNI) {
570 if (Kills)
571 Kills->push_back(Start);
572 return;
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000573 }
Richard Trieu7a083812016-02-18 22:09:30 +0000574 if (Segment->end < Stop) {
575 Stop = Segment->end;
576 ToEnd = false;
577 }
Adrian Prantlce858132015-12-21 20:03:00 +0000578 }
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000579
Adrian Prantlce858132015-12-21 20:03:00 +0000580 // There could already be a short def at Start.
581 if (I.valid() && I.start() <= Start) {
582 // Stop when meeting a different location or an already extended interval.
583 Start = Start.getNextSlot();
Reid Kleckner04e25e02017-10-03 17:59:02 +0000584 if (I.value() != Loc || I.stop() != Start)
Adrian Prantlce858132015-12-21 20:03:00 +0000585 return;
586 // This is a one-slot placeholder. Just skip it.
587 ++I;
588 }
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000589
Adrian Prantlce858132015-12-21 20:03:00 +0000590 // Limited by the next def.
Richard Trieu7a083812016-02-18 22:09:30 +0000591 if (I.valid() && I.start() < Stop) {
592 Stop = I.start();
593 ToEnd = false;
594 }
Adrian Prantlce858132015-12-21 20:03:00 +0000595 // Limited by VNI's live range.
596 else if (!ToEnd && Kills)
597 Kills->push_back(Stop);
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000598
Adrian Prantlce858132015-12-21 20:03:00 +0000599 if (Start < Stop)
Reid Kleckner04e25e02017-10-03 17:59:02 +0000600 I.insert(Start, Stop, Loc);
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000601}
602
Reid Kleckner04e25e02017-10-03 17:59:02 +0000603void UserValue::addDefsFromCopies(
604 LiveInterval *LI, unsigned LocNo, bool WasIndirect,
605 const SmallVectorImpl<SlotIndex> &Kills,
606 SmallVectorImpl<std::pair<SlotIndex, DbgValueLocation>> &NewDefs,
607 MachineRegisterInfo &MRI, LiveIntervals &LIS) {
Jakob Stoklund Olesen816f5f42011-03-18 21:42:19 +0000608 if (Kills.empty())
609 return;
610 // Don't track copies from physregs, there are too many uses.
611 if (!TargetRegisterInfo::isVirtualRegister(LI->reg))
612 return;
613
614 // Collect all the (vreg, valno) pairs that are copies of LI.
615 SmallVector<std::pair<LiveInterval*, const VNInfo*>, 8> CopyValues;
Owen Andersonb36376e2014-03-17 19:36:09 +0000616 for (MachineOperand &MO : MRI.use_nodbg_operands(LI->reg)) {
617 MachineInstr *MI = MO.getParent();
Jakob Stoklund Olesen816f5f42011-03-18 21:42:19 +0000618 // Copies of the full value.
Owen Andersonb36376e2014-03-17 19:36:09 +0000619 if (MO.getSubReg() || !MI->isCopy())
Jakob Stoklund Olesen816f5f42011-03-18 21:42:19 +0000620 continue;
Jakob Stoklund Olesen816f5f42011-03-18 21:42:19 +0000621 unsigned DstReg = MI->getOperand(0).getReg();
622
Jakob Stoklund Olesenec0ac3c2011-03-22 22:33:08 +0000623 // Don't follow copies to physregs. These are usually setting up call
624 // arguments, and the argument registers are always call clobbered. We are
625 // better off in the source register which could be a callee-saved register,
626 // or it could be spilled.
627 if (!TargetRegisterInfo::isVirtualRegister(DstReg))
628 continue;
629
Jakob Stoklund Olesen816f5f42011-03-18 21:42:19 +0000630 // Is LocNo extended to reach this copy? If not, another def may be blocking
631 // it, or we are looking at a wrong value of LI.
Duncan P. N. Exon Smith3ac9cc62016-02-27 06:40:41 +0000632 SlotIndex Idx = LIS.getInstructionIndex(*MI);
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000633 LocMap::iterator I = locInts.find(Idx.getRegSlot(true));
Reid Kleckner04e25e02017-10-03 17:59:02 +0000634 if (!I.valid() || I.value().locNo() != LocNo)
Jakob Stoklund Olesen816f5f42011-03-18 21:42:19 +0000635 continue;
636
637 if (!LIS.hasInterval(DstReg))
638 continue;
639 LiveInterval *DstLI = &LIS.getInterval(DstReg);
Jakob Stoklund Olesen90b5e562011-11-13 20:45:27 +0000640 const VNInfo *DstVNI = DstLI->getVNInfoAt(Idx.getRegSlot());
641 assert(DstVNI && DstVNI->def == Idx.getRegSlot() && "Bad copy value");
Jakob Stoklund Olesen816f5f42011-03-18 21:42:19 +0000642 CopyValues.push_back(std::make_pair(DstLI, DstVNI));
643 }
644
645 if (CopyValues.empty())
646 return;
647
648 DEBUG(dbgs() << "Got " << CopyValues.size() << " copies of " << *LI << '\n');
649
650 // Try to add defs of the copied values for each kill point.
651 for (unsigned i = 0, e = Kills.size(); i != e; ++i) {
652 SlotIndex Idx = Kills[i];
653 for (unsigned j = 0, e = CopyValues.size(); j != e; ++j) {
654 LiveInterval *DstLI = CopyValues[j].first;
655 const VNInfo *DstVNI = CopyValues[j].second;
656 if (DstLI->getVNInfoAt(Idx) != DstVNI)
657 continue;
658 // Check that there isn't already a def at Idx
659 LocMap::iterator I = locInts.find(Idx);
660 if (I.valid() && I.start() <= Idx)
661 continue;
662 DEBUG(dbgs() << "Kill at " << Idx << " covered by valno #"
663 << DstVNI->id << " in " << *DstLI << '\n');
664 MachineInstr *CopyMI = LIS.getInstructionFromIndex(DstVNI->def);
665 assert(CopyMI && CopyMI->isCopy() && "Bad copy value");
666 unsigned LocNo = getLocationNo(CopyMI->getOperand(0));
Reid Kleckner04e25e02017-10-03 17:59:02 +0000667 DbgValueLocation NewLoc(LocNo, WasIndirect);
668 I.insert(Idx, Idx.getNextSlot(), NewLoc);
669 NewDefs.push_back(std::make_pair(Idx, NewLoc));
Jakob Stoklund Olesen816f5f42011-03-18 21:42:19 +0000670 break;
671 }
672 }
673}
674
Robert Lougher10f740d2017-08-03 11:54:02 +0000675void UserValue::computeIntervals(MachineRegisterInfo &MRI,
676 const TargetRegisterInfo &TRI,
677 LiveIntervals &LIS, LexicalScopes &LS) {
Reid Kleckner04e25e02017-10-03 17:59:02 +0000678 SmallVector<std::pair<SlotIndex, DbgValueLocation>, 16> Defs;
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000679
680 // Collect all defs to be extended (Skipping undefs).
681 for (LocMap::const_iterator I = locInts.begin(); I.valid(); ++I)
Reid Kleckner04e25e02017-10-03 17:59:02 +0000682 if (!I.value().isUndef())
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000683 Defs.push_back(std::make_pair(I.start(), I.value()));
684
Jakob Stoklund Olesen816f5f42011-03-18 21:42:19 +0000685 // Extend all defs, and possibly add new ones along the way.
686 for (unsigned i = 0; i != Defs.size(); ++i) {
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000687 SlotIndex Idx = Defs[i].first;
Reid Kleckner04e25e02017-10-03 17:59:02 +0000688 DbgValueLocation Loc = Defs[i].second;
689 const MachineOperand &LocMO = locations[Loc.locNo()];
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000690
Reid Kleckner04e25e02017-10-03 17:59:02 +0000691 if (!LocMO.isReg()) {
692 extendDef(Idx, Loc, nullptr, nullptr, nullptr, LIS);
Jakob Stoklund Olesen32449632012-06-22 17:15:32 +0000693 continue;
694 }
695
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000696 // Register locations are constrained to where the register value is live.
Reid Kleckner04e25e02017-10-03 17:59:02 +0000697 if (TargetRegisterInfo::isVirtualRegister(LocMO.getReg())) {
Craig Topperc0196b12014-04-14 00:51:57 +0000698 LiveInterval *LI = nullptr;
699 const VNInfo *VNI = nullptr;
Reid Kleckner04e25e02017-10-03 17:59:02 +0000700 if (LIS.hasInterval(LocMO.getReg())) {
701 LI = &LIS.getInterval(LocMO.getReg());
Jakob Stoklund Olesen48a16472012-06-22 18:51:35 +0000702 VNI = LI->getVNInfoAt(Idx);
703 }
Jakob Stoklund Olesen816f5f42011-03-18 21:42:19 +0000704 SmallVector<SlotIndex, 16> Kills;
Reid Kleckner04e25e02017-10-03 17:59:02 +0000705 extendDef(Idx, Loc, LI, VNI, &Kills, LIS);
Jakob Stoklund Olesen48a16472012-06-22 18:51:35 +0000706 if (LI)
Reid Kleckner04e25e02017-10-03 17:59:02 +0000707 addDefsFromCopies(LI, Loc.locNo(), Loc.wasIndirect(), Kills, Defs, MRI,
708 LIS);
Jakob Stoklund Olesen32449632012-06-22 17:15:32 +0000709 continue;
710 }
711
Bjorn Pettersson715a5ef2017-09-28 13:10:06 +0000712 // For physregs, we only mark the start slot idx. DwarfDebug will see it
713 // as if the DBG_VALUE is valid up until the end of the basic block, or
714 // the next def of the physical register. So we do not need to extend the
715 // range. It might actually happen that the DBG_VALUE is the last use of
716 // the physical register (e.g. if this is an unused input argument to a
717 // function).
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000718 }
719
Robert Lougher10f740d2017-08-03 11:54:02 +0000720 // Erase all the undefs.
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000721 for (LocMap::iterator I = locInts.begin(); I.valid();)
Reid Kleckner04e25e02017-10-03 17:59:02 +0000722 if (I.value().isUndef())
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000723 I.erase();
724 else
725 ++I;
Robert Lougher10f740d2017-08-03 11:54:02 +0000726
727 // The computed intervals may extend beyond the range of the debug
728 // location's lexical scope. In this case, splitting of an interval
729 // can result in an interval outside of the scope being created,
730 // causing extra unnecessary DBG_VALUEs to be emitted. To prevent
731 // this, trim the intervals to the lexical scope.
732
733 LexicalScope *Scope = LS.findLexicalScope(dl);
734 if (!Scope)
735 return;
736
737 SlotIndex PrevEnd;
738 LocMap::iterator I = locInts.begin();
739
740 // Iterate over the lexical scope ranges. Each time round the loop
741 // we check the intervals for overlap with the end of the previous
742 // range and the start of the next. The first range is handled as
743 // a special case where there is no PrevEnd.
744 for (const InsnRange &Range : Scope->getRanges()) {
745 SlotIndex RStart = LIS.getInstructionIndex(*Range.first);
746 SlotIndex REnd = LIS.getInstructionIndex(*Range.second);
747
748 // At the start of each iteration I has been advanced so that
749 // I.stop() >= PrevEnd. Check for overlap.
750 if (PrevEnd && I.start() < PrevEnd) {
751 SlotIndex IStop = I.stop();
Reid Kleckner04e25e02017-10-03 17:59:02 +0000752 DbgValueLocation Loc = I.value();
Robert Lougher10f740d2017-08-03 11:54:02 +0000753
754 // Stop overlaps previous end - trim the end of the interval to
755 // the scope range.
756 I.setStopUnchecked(PrevEnd);
757 ++I;
758
759 // If the interval also overlaps the start of the "next" (i.e.
760 // current) range create a new interval for the remainder (which
761 // may be further trimmed).
762 if (RStart < IStop)
Reid Kleckner04e25e02017-10-03 17:59:02 +0000763 I.insert(RStart, IStop, Loc);
Robert Lougher10f740d2017-08-03 11:54:02 +0000764 }
765
766 // Advance I so that I.stop() >= RStart, and check for overlap.
767 I.advanceTo(RStart);
768 if (!I.valid())
769 return;
770
771 if (I.start() < RStart) {
772 // Interval start overlaps range - trim to the scope range.
773 I.setStartUnchecked(RStart);
774 // Remember that this interval was trimmed.
775 trimmedDefs.insert(RStart);
776 }
777
778 // The end of a lexical scope range is the last instruction in the
779 // range. To convert to an interval we need the index of the
780 // instruction after it.
781 REnd = REnd.getNextIndex();
782
783 // Advance I to first interval outside current range.
784 I.advanceTo(REnd);
785 if (!I.valid())
786 return;
787
788 PrevEnd = REnd;
789 }
790
791 // Check for overlap with end of final range.
792 if (PrevEnd && I.start() < PrevEnd)
793 I.setStopUnchecked(PrevEnd);
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000794}
795
796void LDVImpl::computeIntervals() {
Robert Lougher10f740d2017-08-03 11:54:02 +0000797 LexicalScopes LS;
798 LS.initialize(*MF);
799
Jakob Stoklund Olesen816f5f42011-03-18 21:42:19 +0000800 for (unsigned i = 0, e = userValues.size(); i != e; ++i) {
Robert Lougher10f740d2017-08-03 11:54:02 +0000801 userValues[i]->computeIntervals(MF->getRegInfo(), *TRI, *LIS, LS);
Jakob Stoklund Olesen816f5f42011-03-18 21:42:19 +0000802 userValues[i]->mapVirtRegs(this);
803 }
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000804}
805
806bool LDVImpl::runOnMachineFunction(MachineFunction &mf) {
David Blaikie2f040112014-07-25 16:10:16 +0000807 clear();
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000808 MF = &mf;
809 LIS = &pass.getAnalysis<LiveIntervals>();
Eric Christopherfc6de422014-08-05 02:39:49 +0000810 TRI = mf.getSubtarget().getRegisterInfo();
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000811 DEBUG(dbgs() << "********** COMPUTING LIVE DEBUG VARIABLES: "
David Blaikiec8c29202012-08-22 17:18:53 +0000812 << mf.getName() << " **********\n");
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000813
814 bool Changed = collectDebugValues(mf);
815 computeIntervals();
816 DEBUG(print(dbgs()));
Manman Ren7a4c8a72013-02-13 20:23:48 +0000817 ModifiedMF = Changed;
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000818 return Changed;
819}
820
David Blaikie2f040112014-07-25 16:10:16 +0000821static void removeDebugValues(MachineFunction &mf) {
822 for (MachineBasicBlock &MBB : mf) {
823 for (auto MBBI = MBB.begin(), MBBE = MBB.end(); MBBI != MBBE; ) {
824 if (!MBBI->isDebugValue()) {
825 ++MBBI;
826 continue;
827 }
828 MBBI = MBB.erase(MBBI);
829 }
830 }
831}
832
Jakob Stoklund Olesend4900a62010-11-30 02:17:10 +0000833bool LiveDebugVariables::runOnMachineFunction(MachineFunction &mf) {
Devang Patelacbee0b2011-01-07 22:33:41 +0000834 if (!EnableLDV)
835 return false;
Peter Collingbourned4bff302015-11-05 22:03:56 +0000836 if (!mf.getFunction()->getSubprogram()) {
David Blaikie2f040112014-07-25 16:10:16 +0000837 removeDebugValues(mf);
838 return false;
839 }
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000840 if (!pImpl)
841 pImpl = new LDVImpl(this);
Manman Ren7a4c8a72013-02-13 20:23:48 +0000842 return static_cast<LDVImpl*>(pImpl)->runOnMachineFunction(mf);
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000843}
844
845void LiveDebugVariables::releaseMemory() {
Manman Ren7a4c8a72013-02-13 20:23:48 +0000846 if (pImpl)
Jakob Stoklund Olesen4be0bd72010-12-02 00:37:37 +0000847 static_cast<LDVImpl*>(pImpl)->clear();
848}
849
850LiveDebugVariables::~LiveDebugVariables() {
851 if (pImpl)
852 delete static_cast<LDVImpl*>(pImpl);
Jakob Stoklund Olesend4900a62010-11-30 02:17:10 +0000853}
Jakob Stoklund Olesen9ec20112010-12-02 18:15:44 +0000854
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000855//===----------------------------------------------------------------------===//
856// Live Range Splitting
857//===----------------------------------------------------------------------===//
858
859bool
Mark Laceyf9ea8852013-08-14 23:50:04 +0000860UserValue::splitLocation(unsigned OldLocNo, ArrayRef<unsigned> NewRegs,
861 LiveIntervals& LIS) {
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000862 DEBUG({
863 dbgs() << "Splitting Loc" << OldLocNo << '\t';
Craig Topperc0196b12014-04-14 00:51:57 +0000864 print(dbgs(), nullptr);
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000865 });
866 bool DidChange = false;
867 LocMap::iterator LocMapI;
868 LocMapI.setMap(locInts);
869 for (unsigned i = 0; i != NewRegs.size(); ++i) {
Mark Laceyf9ea8852013-08-14 23:50:04 +0000870 LiveInterval *LI = &LIS.getInterval(NewRegs[i]);
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000871 if (LI->empty())
872 continue;
873
874 // Don't allocate the new LocNo until it is needed.
Reid Klecknereed09732017-09-15 22:08:50 +0000875 unsigned NewLocNo = UndefLocNo;
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000876
877 // Iterate over the overlaps between locInts and LI.
878 LocMapI.find(LI->beginIndex());
879 if (!LocMapI.valid())
880 continue;
881 LiveInterval::iterator LII = LI->advanceTo(LI->begin(), LocMapI.start());
882 LiveInterval::iterator LIE = LI->end();
883 while (LocMapI.valid() && LII != LIE) {
884 // At this point, we know that LocMapI.stop() > LII->start.
885 LII = LI->advanceTo(LII, LocMapI.start());
886 if (LII == LIE)
887 break;
888
889 // Now LII->end > LocMapI.start(). Do we have an overlap?
Reid Kleckner04e25e02017-10-03 17:59:02 +0000890 if (LocMapI.value().locNo() == OldLocNo && LII->start < LocMapI.stop()) {
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000891 // Overlapping correct location. Allocate NewLocNo now.
Reid Klecknereed09732017-09-15 22:08:50 +0000892 if (NewLocNo == UndefLocNo) {
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000893 MachineOperand MO = MachineOperand::CreateReg(LI->reg, false);
894 MO.setSubReg(locations[OldLocNo].getSubReg());
895 NewLocNo = getLocationNo(MO);
896 DidChange = true;
897 }
898
899 SlotIndex LStart = LocMapI.start();
900 SlotIndex LStop = LocMapI.stop();
Reid Kleckner04e25e02017-10-03 17:59:02 +0000901 DbgValueLocation OldLoc = LocMapI.value();
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000902
903 // Trim LocMapI down to the LII overlap.
904 if (LStart < LII->start)
905 LocMapI.setStartUnchecked(LII->start);
906 if (LStop > LII->end)
907 LocMapI.setStopUnchecked(LII->end);
908
909 // Change the value in the overlap. This may trigger coalescing.
Reid Kleckner04e25e02017-10-03 17:59:02 +0000910 LocMapI.setValue(OldLoc.changeLocNo(NewLocNo));
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000911
912 // Re-insert any removed OldLocNo ranges.
913 if (LStart < LocMapI.start()) {
Reid Kleckner04e25e02017-10-03 17:59:02 +0000914 LocMapI.insert(LStart, LocMapI.start(), OldLoc);
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000915 ++LocMapI;
916 assert(LocMapI.valid() && "Unexpected coalescing");
917 }
918 if (LStop > LocMapI.stop()) {
919 ++LocMapI;
Reid Kleckner04e25e02017-10-03 17:59:02 +0000920 LocMapI.insert(LII->end, LStop, OldLoc);
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000921 --LocMapI;
922 }
923 }
924
925 // Advance to the next overlap.
926 if (LII->end < LocMapI.stop()) {
927 if (++LII == LIE)
928 break;
929 LocMapI.advanceTo(LII->start);
930 } else {
931 ++LocMapI;
932 if (!LocMapI.valid())
933 break;
934 LII = LI->advanceTo(LII, LocMapI.start());
935 }
936 }
937 }
938
939 // Finally, remove any remaining OldLocNo intervals and OldLocNo itself.
940 locations.erase(locations.begin() + OldLocNo);
941 LocMapI.goToBegin();
942 while (LocMapI.valid()) {
Reid Kleckner04e25e02017-10-03 17:59:02 +0000943 DbgValueLocation v = LocMapI.value();
944 if (v.locNo() == OldLocNo) {
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000945 DEBUG(dbgs() << "Erasing [" << LocMapI.start() << ';'
946 << LocMapI.stop() << ")\n");
947 LocMapI.erase();
948 } else {
Reid Kleckner04e25e02017-10-03 17:59:02 +0000949 if (v.locNo() > OldLocNo)
950 LocMapI.setValueUnchecked(v.changeLocNo(v.locNo() - 1));
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000951 ++LocMapI;
952 }
953 }
954
Craig Topperc0196b12014-04-14 00:51:57 +0000955 DEBUG({dbgs() << "Split result: \t"; print(dbgs(), nullptr);});
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000956 return DidChange;
957}
958
959bool
Mark Laceyf9ea8852013-08-14 23:50:04 +0000960UserValue::splitRegister(unsigned OldReg, ArrayRef<unsigned> NewRegs,
961 LiveIntervals &LIS) {
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000962 bool DidChange = false;
Jakob Stoklund Olesen57c8f582011-05-06 19:31:19 +0000963 // Split locations referring to OldReg. Iterate backwards so splitLocation can
Eric Christopherbe153e62012-03-15 21:33:35 +0000964 // safely erase unused locations.
Jakob Stoklund Olesen57c8f582011-05-06 19:31:19 +0000965 for (unsigned i = locations.size(); i ; --i) {
966 unsigned LocNo = i-1;
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000967 const MachineOperand *Loc = &locations[LocNo];
968 if (!Loc->isReg() || Loc->getReg() != OldReg)
969 continue;
Mark Laceyf9ea8852013-08-14 23:50:04 +0000970 DidChange |= splitLocation(LocNo, NewRegs, LIS);
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000971 }
972 return DidChange;
973}
974
Mark Laceyf9ea8852013-08-14 23:50:04 +0000975void LDVImpl::splitRegister(unsigned OldReg, ArrayRef<unsigned> NewRegs) {
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000976 bool DidChange = false;
977 for (UserValue *UV = lookupVirtReg(OldReg); UV; UV = UV->getNext())
Mark Laceyf9ea8852013-08-14 23:50:04 +0000978 DidChange |= UV->splitRegister(OldReg, NewRegs, *LIS);
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000979
980 if (!DidChange)
981 return;
982
983 // Map all of the new virtual registers.
984 UserValue *UV = lookupVirtReg(OldReg);
985 for (unsigned i = 0; i != NewRegs.size(); ++i)
Mark Laceyf9ea8852013-08-14 23:50:04 +0000986 mapVirtReg(NewRegs[i], UV);
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000987}
988
989void LiveDebugVariables::
Mark Laceyf9ea8852013-08-14 23:50:04 +0000990splitRegister(unsigned OldReg, ArrayRef<unsigned> NewRegs, LiveIntervals &LIS) {
Jakob Stoklund Olesenf8da0282011-05-06 18:00:02 +0000991 if (pImpl)
992 static_cast<LDVImpl*>(pImpl)->splitRegister(OldReg, NewRegs);
993}
994
Reid Kleckner4e040282017-09-20 18:19:08 +0000995void UserValue::rewriteLocations(VirtRegMap &VRM, const TargetRegisterInfo &TRI,
996 BitVector &SpilledLocations) {
Reid Kleckner92687d42017-09-20 17:32:54 +0000997 // Build a set of new locations with new numbers so we can coalesce our
998 // IntervalMap if two vreg intervals collapse to the same physical location.
999 // Use MapVector instead of SetVector because MapVector::insert returns the
Reid Kleckner4e040282017-09-20 18:19:08 +00001000 // position of the previously or newly inserted element. The boolean value
1001 // tracks if the location was produced by a spill.
1002 // FIXME: This will be problematic if we ever support direct and indirect
1003 // frame index locations, i.e. expressing both variables in memory and
1004 // 'int x, *px = &x'. The "spilled" bit must become part of the location.
Reid Kleckner92687d42017-09-20 17:32:54 +00001005 MapVector<MachineOperand, bool> NewLocations;
1006 SmallVector<unsigned, 4> LocNoMap(locations.size());
1007 for (unsigned I = 0, E = locations.size(); I != E; ++I) {
Reid Kleckner4e040282017-09-20 18:19:08 +00001008 bool Spilled = false;
Reid Kleckner92687d42017-09-20 17:32:54 +00001009 MachineOperand Loc = locations[I];
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +00001010 // Only virtual registers are rewritten.
Reid Kleckner92687d42017-09-20 17:32:54 +00001011 if (Loc.isReg() && Loc.getReg() &&
1012 TargetRegisterInfo::isVirtualRegister(Loc.getReg())) {
1013 unsigned VirtReg = Loc.getReg();
1014 if (VRM.isAssignedReg(VirtReg) &&
1015 TargetRegisterInfo::isPhysicalRegister(VRM.getPhys(VirtReg))) {
1016 // This can create a %noreg operand in rare cases when the sub-register
1017 // index is no longer available. That means the user value is in a
1018 // non-existent sub-register, and %noreg is exactly what we want.
1019 Loc.substPhysReg(VRM.getPhys(VirtReg), TRI);
1020 } else if (VRM.getStackSlot(VirtReg) != VirtRegMap::NO_STACK_SLOT) {
1021 // FIXME: Translate SubIdx to a stackslot offset.
1022 Loc = MachineOperand::CreateFI(VRM.getStackSlot(VirtReg));
Reid Kleckner4e040282017-09-20 18:19:08 +00001023 Spilled = true;
Reid Kleckner92687d42017-09-20 17:32:54 +00001024 } else {
1025 Loc.setReg(0);
1026 Loc.setSubReg(0);
1027 }
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +00001028 }
Reid Kleckner92687d42017-09-20 17:32:54 +00001029
1030 // Insert this location if it doesn't already exist and record a mapping
1031 // from the old number to the new number.
Reid Kleckner4e040282017-09-20 18:19:08 +00001032 auto InsertResult = NewLocations.insert({Loc, Spilled});
1033 unsigned NewLocNo = std::distance(NewLocations.begin(), InsertResult.first);
1034 LocNoMap[I] = NewLocNo;
Reid Kleckner92687d42017-09-20 17:32:54 +00001035 }
1036
Reid Kleckner4e040282017-09-20 18:19:08 +00001037 // Rewrite the locations and record which ones were spill slots.
Reid Kleckner92687d42017-09-20 17:32:54 +00001038 locations.clear();
Reid Kleckner4e040282017-09-20 18:19:08 +00001039 SpilledLocations.clear();
1040 SpilledLocations.resize(NewLocations.size());
1041 for (auto &Pair : NewLocations) {
Reid Kleckner92687d42017-09-20 17:32:54 +00001042 locations.push_back(Pair.first);
Reid Kleckner4e040282017-09-20 18:19:08 +00001043 if (Pair.second) {
1044 unsigned NewLocNo = std::distance(&*NewLocations.begin(), &Pair);
1045 SpilledLocations.set(NewLocNo);
1046 }
1047 }
Reid Kleckner92687d42017-09-20 17:32:54 +00001048
1049 // Update the interval map, but only coalesce left, since intervals to the
1050 // right use the old location numbers. This should merge two contiguous
1051 // DBG_VALUE intervals with different vregs that were allocated to the same
1052 // physical register.
1053 for (LocMap::iterator I = locInts.begin(); I.valid(); ++I) {
Reid Kleckner04e25e02017-10-03 17:59:02 +00001054 DbgValueLocation Loc = I.value();
1055 unsigned NewLocNo = LocNoMap[Loc.locNo()];
1056 I.setValueUnchecked(Loc.changeLocNo(NewLocNo));
Reid Kleckner92687d42017-09-20 17:32:54 +00001057 I.setStart(I.start());
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +00001058 }
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +00001059}
1060
Karl-Johan Karlsson8d8d2012017-10-05 08:37:31 +00001061/// Find an iterator for inserting a DBG_VALUE instruction.
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +00001062static MachineBasicBlock::iterator
Devang Patel26ffa012011-02-04 01:43:25 +00001063findInsertLocation(MachineBasicBlock *MBB, SlotIndex Idx,
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +00001064 LiveIntervals &LIS) {
1065 SlotIndex Start = LIS.getMBBStartIdx(MBB);
1066 Idx = Idx.getBaseIndex();
1067
1068 // Try to find an insert location by going backwards from Idx.
1069 MachineInstr *MI;
1070 while (!(MI = LIS.getInstructionFromIndex(Idx))) {
1071 // We've reached the beginning of MBB.
1072 if (Idx == Start) {
Keith Walker830a8c12016-09-16 14:07:29 +00001073 MachineBasicBlock::iterator I = MBB->SkipPHIsLabelsAndDebug(MBB->begin());
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +00001074 return I;
1075 }
1076 Idx = Idx.getPrevIndex();
1077 }
Devang Patel26ffa012011-02-04 01:43:25 +00001078
Jakob Stoklund Olesen088b30a2011-01-13 23:35:53 +00001079 // Don't insert anything after the first terminator, though.
Evan Cheng7f8e5632011-12-07 07:15:52 +00001080 return MI->isTerminator() ? MBB->getFirstTerminator() :
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001081 std::next(MachineBasicBlock::iterator(MI));
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +00001082}
1083
Karl-Johan Karlsson8d8d2012017-10-05 08:37:31 +00001084/// Find an iterator for inserting the next DBG_VALUE instruction
1085/// (or end if no more insert locations found).
1086static MachineBasicBlock::iterator
1087findNextInsertLocation(MachineBasicBlock *MBB,
1088 MachineBasicBlock::iterator I,
1089 SlotIndex StopIdx, MachineOperand &LocMO,
1090 LiveIntervals &LIS,
1091 const TargetRegisterInfo &TRI) {
1092 if (!LocMO.isReg())
1093 return MBB->instr_end();
1094 unsigned Reg = LocMO.getReg();
1095
1096 // Find the next instruction in the MBB that define the register Reg.
1097 while (I != MBB->end()) {
1098 if (!LIS.isNotInMIMap(*I) &&
1099 SlotIndex::isEarlierEqualInstr(StopIdx, LIS.getInstructionIndex(*I)))
1100 break;
1101 if (I->definesRegister(Reg, &TRI))
1102 // The insert location is directly after the instruction/bundle.
1103 return std::next(I);
1104 ++I;
1105 }
1106 return MBB->end();
1107}
1108
1109void UserValue::insertDebugValue(MachineBasicBlock *MBB, SlotIndex StartIdx,
1110 SlotIndex StopIdx,
Reid Kleckner04e25e02017-10-03 17:59:02 +00001111 DbgValueLocation Loc, bool Spilled,
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +00001112 LiveIntervals &LIS,
Karl-Johan Karlsson8d8d2012017-10-05 08:37:31 +00001113 const TargetInstrInfo &TII,
1114 const TargetRegisterInfo &TRI) {
1115 SlotIndex MBBEndIdx = LIS.getMBBEndIdx(&*MBB);
1116 // Only search within the current MBB.
1117 StopIdx = (MBBEndIdx < StopIdx) ? MBBEndIdx : StopIdx;
1118 MachineBasicBlock::iterator I = findInsertLocation(MBB, StartIdx, LIS);
Reid Kleckner04e25e02017-10-03 17:59:02 +00001119 MachineOperand &MO = locations[Loc.locNo()];
Devang Pateleabc3cea2011-08-04 20:42:11 +00001120 ++NumInsertedDebugValues;
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +00001121
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00001122 assert(cast<DILocalVariable>(Variable)
Duncan P. N. Exon Smithe686f152015-04-06 23:27:40 +00001123 ->isValidLocationForIntrinsic(getDebugLoc()) &&
Duncan P. N. Exon Smith3bef6a32015-04-03 19:20:26 +00001124 "Expected inlined-at fields to agree");
Reid Kleckner4e040282017-09-20 18:19:08 +00001125
1126 // If the location was spilled, the new DBG_VALUE will be indirect. If the
1127 // original DBG_VALUE was indirect, we need to add DW_OP_deref to indicate
1128 // that the original virtual register was a pointer.
Reid Kleckner4e040282017-09-20 18:19:08 +00001129 const DIExpression *Expr = Expression;
Reid Kleckner04e25e02017-10-03 17:59:02 +00001130 bool IsIndirect = Loc.wasIndirect();
1131 if (Spilled) {
1132 if (IsIndirect)
1133 Expr = DIExpression::prepend(Expr, DIExpression::WithDeref);
1134 IsIndirect = true;
1135 }
Reid Kleckner4e040282017-09-20 18:19:08 +00001136
Reid Kleckner04e25e02017-10-03 17:59:02 +00001137 assert((!Spilled || MO.isFI()) && "a spilled location must be a frame index");
Reid Kleckner4e040282017-09-20 18:19:08 +00001138
Karl-Johan Karlsson8d8d2012017-10-05 08:37:31 +00001139 do {
1140 MachineInstrBuilder MIB =
Reid Kleckner4e040282017-09-20 18:19:08 +00001141 BuildMI(*MBB, I, getDebugLoc(), TII.get(TargetOpcode::DBG_VALUE))
Reid Kleckner04e25e02017-10-03 17:59:02 +00001142 .add(MO);
Karl-Johan Karlsson8d8d2012017-10-05 08:37:31 +00001143 if (IsIndirect)
1144 MIB.addImm(0U);
1145 else
1146 MIB.addReg(0U, RegState::Debug);
1147 MIB.addMetadata(Variable).addMetadata(Expr);
1148
1149 // Continue and insert DBG_VALUES after every redefinition of register
1150 // associated with the debug value within the range
1151 I = findNextInsertLocation(MBB, I, StopIdx, MO, LIS, TRI);
1152 } while (I != MBB->end());
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +00001153}
1154
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +00001155void UserValue::emitDebugValues(VirtRegMap *VRM, LiveIntervals &LIS,
Reid Kleckner4e040282017-09-20 18:19:08 +00001156 const TargetInstrInfo &TII,
Karl-Johan Karlsson8d8d2012017-10-05 08:37:31 +00001157 const TargetRegisterInfo &TRI,
Reid Kleckner4e040282017-09-20 18:19:08 +00001158 const BitVector &SpilledLocations) {
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +00001159 MachineFunction::iterator MFEnd = VRM->getMachineFunction().end();
1160
1161 for (LocMap::const_iterator I = locInts.begin(); I.valid();) {
1162 SlotIndex Start = I.start();
1163 SlotIndex Stop = I.stop();
Reid Kleckner04e25e02017-10-03 17:59:02 +00001164 DbgValueLocation Loc = I.value();
1165 bool Spilled = !Loc.isUndef() ? SpilledLocations.test(Loc.locNo()) : false;
Robert Lougher10f740d2017-08-03 11:54:02 +00001166
1167 // If the interval start was trimmed to the lexical scope insert the
1168 // DBG_VALUE at the previous index (otherwise it appears after the
1169 // first instruction in the range).
1170 if (trimmedDefs.count(Start))
1171 Start = Start.getPrevIndex();
1172
Reid Kleckner04e25e02017-10-03 17:59:02 +00001173 DEBUG(dbgs() << "\t[" << Start << ';' << Stop << "):" << Loc.locNo());
Duncan P. N. Exon Smith5ae59392015-10-09 19:13:58 +00001174 MachineFunction::iterator MBB = LIS.getMBBFromIndex(Start)->getIterator();
1175 SlotIndex MBBEnd = LIS.getMBBEndIdx(&*MBB);
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +00001176
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +00001177 DEBUG(dbgs() << ' ' << printMBBReference(*MBB) << '-' << MBBEnd);
Karl-Johan Karlsson8d8d2012017-10-05 08:37:31 +00001178 insertDebugValue(&*MBB, Start, Stop, Loc, Spilled, LIS, TII, TRI);
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +00001179 // This interval may span multiple basic blocks.
1180 // Insert a DBG_VALUE into each one.
Karl-Johan Karlsson8d8d2012017-10-05 08:37:31 +00001181 while (Stop > MBBEnd) {
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +00001182 // Move to the next block.
1183 Start = MBBEnd;
1184 if (++MBB == MFEnd)
1185 break;
Duncan P. N. Exon Smith5ae59392015-10-09 19:13:58 +00001186 MBBEnd = LIS.getMBBEndIdx(&*MBB);
Francis Visoiu Mistrih25528d62017-12-04 17:18:51 +00001187 DEBUG(dbgs() << ' ' << printMBBReference(*MBB) << '-' << MBBEnd);
Karl-Johan Karlsson8d8d2012017-10-05 08:37:31 +00001188 insertDebugValue(&*MBB, Start, Stop, Loc, Spilled, LIS, TII, TRI);
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +00001189 }
1190 DEBUG(dbgs() << '\n');
1191 if (MBB == MFEnd)
1192 break;
1193
1194 ++I;
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +00001195 }
1196}
1197
1198void LDVImpl::emitDebugValues(VirtRegMap *VRM) {
1199 DEBUG(dbgs() << "********** EMITTING LIVE DEBUG VARIABLES **********\n");
David Blaikie2f040112014-07-25 16:10:16 +00001200 if (!MF)
1201 return;
Eric Christopherfc6de422014-08-05 02:39:49 +00001202 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo();
Reid Kleckner4e040282017-09-20 18:19:08 +00001203 BitVector SpilledLocations;
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +00001204 for (unsigned i = 0, e = userValues.size(); i != e; ++i) {
Eric Christopher1cdefae2015-02-27 00:11:34 +00001205 DEBUG(userValues[i]->print(dbgs(), TRI));
Reid Kleckner4e040282017-09-20 18:19:08 +00001206 userValues[i]->rewriteLocations(*VRM, *TRI, SpilledLocations);
Karl-Johan Karlsson8d8d2012017-10-05 08:37:31 +00001207 userValues[i]->emitDebugValues(VRM, *LIS, *TII, *TRI, SpilledLocations);
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +00001208 }
Manman Ren7a4c8a72013-02-13 20:23:48 +00001209 EmitDone = true;
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +00001210}
1211
1212void LiveDebugVariables::emitDebugValues(VirtRegMap *VRM) {
Manman Ren7a4c8a72013-02-13 20:23:48 +00001213 if (pImpl)
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +00001214 static_cast<LDVImpl*>(pImpl)->emitDebugValues(VRM);
1215}
1216
David Blaikie2f040112014-07-25 16:10:16 +00001217bool LiveDebugVariables::doInitialization(Module &M) {
David Blaikie2f040112014-07-25 16:10:16 +00001218 return Pass::doInitialization(M);
1219}
Jakob Stoklund Olesenafc2bc22010-12-03 21:47:10 +00001220
Aaron Ballman615eb472017-10-15 14:32:27 +00001221#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Sam Clegg705f7982017-06-21 22:19:17 +00001222LLVM_DUMP_METHOD void LiveDebugVariables::dump() const {
Jakob Stoklund Olesen9ec20112010-12-02 18:15:44 +00001223 if (pImpl)
1224 static_cast<LDVImpl*>(pImpl)->print(dbgs());
1225}
1226#endif