blob: 275d84e2c185ff17e6d421f5b2619e2feecf8095 [file] [log] [blame]
Devang Patele1649c32011-08-10 19:04:06 +00001//===- LexicalScopes.cpp - Collecting lexical scope info ------------------===//
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 LexicalScopes analysis.
11//
12// This pass collects lexical scope information and maps machine instructions
13// to respective lexical scopes.
14//
15//===----------------------------------------------------------------------===//
16
Eugene Zelenko5db84df2017-02-17 21:43:25 +000017#include "llvm/ADT/DenseMap.h"
18#include "llvm/ADT/SmallVector.h"
Devang Patele1649c32011-08-10 19:04:06 +000019#include "llvm/CodeGen/LexicalScopes.h"
Eugene Zelenko5db84df2017-02-17 21:43:25 +000020#include "llvm/CodeGen/MachineBasicBlock.h"
Devang Patele1649c32011-08-10 19:04:06 +000021#include "llvm/CodeGen/MachineFunction.h"
22#include "llvm/CodeGen/MachineInstr.h"
Eugene Zelenko5db84df2017-02-17 21:43:25 +000023#include "llvm/IR/DebugInfoMetadata.h"
24#include "llvm/IR/Metadata.h"
25#include "llvm/Support/Casting.h"
26#include "llvm/Support/Compiler.h"
Devang Patele1649c32011-08-10 19:04:06 +000027#include "llvm/Support/Debug.h"
Eugene Zelenko5db84df2017-02-17 21:43:25 +000028#include "llvm/Support/raw_ostream.h"
29#include <cassert>
30#include <string>
31#include <tuple>
32#include <utility>
33
Devang Patele1649c32011-08-10 19:04:06 +000034using namespace llvm;
35
Chandler Carruth1b9dde02014-04-22 02:02:50 +000036#define DEBUG_TYPE "lexicalscopes"
37
Eric Christopherb7dee8a2013-11-20 00:54:28 +000038/// reset - Reset the instance so that it's prepared for another function.
39void LexicalScopes::reset() {
Craig Topperc0196b12014-04-14 00:51:57 +000040 MF = nullptr;
41 CurrentFnLexicalScope = nullptr;
David Blaikie2f143e02014-05-08 22:24:51 +000042 LexicalScopeMap.clear();
43 AbstractScopeMap.clear();
Devang Patele1649c32011-08-10 19:04:06 +000044 InlinedLexicalScopeMap.clear();
45 AbstractScopesList.clear();
46}
47
48/// initialize - Scan machine function and constuct lexical scope nest.
49void LexicalScopes::initialize(const MachineFunction &Fn) {
Teresa Johnson76b5b742017-02-17 00:21:19 +000050 // Don't attempt any lexical scope creation for a NoDebug compile unit.
51 if (Fn.getFunction()->getSubprogram()->getUnit()->getEmissionKind() ==
52 DICompileUnit::NoDebug)
53 return;
Eric Christopherb7dee8a2013-11-20 00:54:28 +000054 reset();
Devang Patele1649c32011-08-10 19:04:06 +000055 MF = &Fn;
56 SmallVector<InsnRange, 4> MIRanges;
57 DenseMap<const MachineInstr *, LexicalScope *> MI2ScopeMap;
58 extractLexicalScopes(MIRanges, MI2ScopeMap);
59 if (CurrentFnLexicalScope) {
60 constructScopeNest(CurrentFnLexicalScope);
61 assignInstructionRanges(MIRanges, MI2ScopeMap);
62 }
63}
64
65/// extractLexicalScopes - Extract instruction ranges for each lexical scopes
66/// for the given machine function.
Eric Christopher6211e4b2013-11-20 00:54:19 +000067void LexicalScopes::extractLexicalScopes(
68 SmallVectorImpl<InsnRange> &MIRanges,
69 DenseMap<const MachineInstr *, LexicalScope *> &MI2ScopeMap) {
Devang Patele1649c32011-08-10 19:04:06 +000070 // Scan each instruction and create scopes. First build working set of scopes.
Alexey Samsonov41b977d2014-04-30 18:29:51 +000071 for (const auto &MBB : *MF) {
Craig Topperc0196b12014-04-14 00:51:57 +000072 const MachineInstr *RangeBeginMI = nullptr;
73 const MachineInstr *PrevMI = nullptr;
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000074 const DILocation *PrevDL = nullptr;
Alexey Samsonovf74bde62014-04-30 22:17:38 +000075 for (const auto &MInsn : MBB) {
Devang Patele1649c32011-08-10 19:04:06 +000076 // Check if instruction has valid location information.
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000077 const DILocation *MIDL = MInsn.getDebugLoc();
Duncan P. N. Exon Smith9dffcd02015-03-30 19:14:47 +000078 if (!MIDL) {
Alexey Samsonovf74bde62014-04-30 22:17:38 +000079 PrevMI = &MInsn;
Devang Patele1649c32011-08-10 19:04:06 +000080 continue;
81 }
82
83 // If scope has not changed then skip this instruction.
84 if (MIDL == PrevDL) {
Alexey Samsonovf74bde62014-04-30 22:17:38 +000085 PrevMI = &MInsn;
Devang Patele1649c32011-08-10 19:04:06 +000086 continue;
87 }
88
89 // Ignore DBG_VALUE. It does not contribute to any instruction in output.
Alexey Samsonovf74bde62014-04-30 22:17:38 +000090 if (MInsn.isDebugValue())
Devang Patele1649c32011-08-10 19:04:06 +000091 continue;
92
93 if (RangeBeginMI) {
94 // If we have already seen a beginning of an instruction range and
95 // current instruction scope does not match scope of first instruction
96 // in this range then create a new instruction range.
97 InsnRange R(RangeBeginMI, PrevMI);
98 MI2ScopeMap[RangeBeginMI] = getOrCreateLexicalScope(PrevDL);
99 MIRanges.push_back(R);
100 }
101
102 // This is a beginning of a new instruction range.
Alexey Samsonovf74bde62014-04-30 22:17:38 +0000103 RangeBeginMI = &MInsn;
Devang Patele1649c32011-08-10 19:04:06 +0000104
105 // Reset previous markers.
Alexey Samsonovf74bde62014-04-30 22:17:38 +0000106 PrevMI = &MInsn;
Devang Patele1649c32011-08-10 19:04:06 +0000107 PrevDL = MIDL;
108 }
109
110 // Create last instruction range.
Duncan P. N. Exon Smith9dffcd02015-03-30 19:14:47 +0000111 if (RangeBeginMI && PrevMI && PrevDL) {
Devang Patele1649c32011-08-10 19:04:06 +0000112 InsnRange R(RangeBeginMI, PrevMI);
113 MIRanges.push_back(R);
114 MI2ScopeMap[RangeBeginMI] = getOrCreateLexicalScope(PrevDL);
115 }
116 }
117}
118
119/// findLexicalScope - Find lexical scope, either regular or inlined, for the
120/// given DebugLoc. Return NULL if not found.
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000121LexicalScope *LexicalScopes::findLexicalScope(const DILocation *DL) {
122 DILocalScope *Scope = DL->getScope();
Eric Christopher6211e4b2013-11-20 00:54:19 +0000123 if (!Scope)
Craig Topperc0196b12014-04-14 00:51:57 +0000124 return nullptr;
Eric Christopher6647b832011-10-11 22:59:11 +0000125
126 // The scope that we were created with could have an extra file - which
127 // isn't what we care about in this case.
Amjad Abouda5ba9912016-04-21 16:58:49 +0000128 Scope = Scope->getNonLexicalBlockFileScope();
Eric Christopher6211e4b2013-11-20 00:54:19 +0000129
Duncan P. N. Exon Smith5a227ff2015-03-30 21:54:46 +0000130 if (auto *IA = DL->getInlinedAt()) {
David Blaikie9b8c8cd2014-05-14 01:08:28 +0000131 auto I = InlinedLexicalScopeMap.find(std::make_pair(Scope, IA));
132 return I != InlinedLexicalScopeMap.end() ? &I->second : nullptr;
133 }
David Blaikie2f143e02014-05-08 22:24:51 +0000134 return findLexicalScope(Scope);
Devang Patele1649c32011-08-10 19:04:06 +0000135}
136
137/// getOrCreateLexicalScope - Find lexical scope for the given DebugLoc. If
138/// not available then create new lexical scope.
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000139LexicalScope *LexicalScopes::getOrCreateLexicalScope(const DILocalScope *Scope,
140 const DILocation *IA) {
Duncan P. N. Exon Smith82eba742015-03-30 23:47:26 +0000141 if (IA) {
Teresa Johnson76b5b742017-02-17 00:21:19 +0000142 // Skip scopes inlined from a NoDebug compile unit.
143 if (Scope->getSubprogram()->getUnit()->getEmissionKind() ==
144 DICompileUnit::NoDebug)
145 return getOrCreateLexicalScope(IA);
Devang Patele1649c32011-08-10 19:04:06 +0000146 // Create an abstract scope for inlined function.
147 getOrCreateAbstractScope(Scope);
148 // Create an inlined scope for inlined function.
Duncan P. N. Exon Smith82eba742015-03-30 23:47:26 +0000149 return getOrCreateInlinedScope(Scope, IA);
Devang Patele1649c32011-08-10 19:04:06 +0000150 }
Eric Christopher6211e4b2013-11-20 00:54:19 +0000151
Devang Patele1649c32011-08-10 19:04:06 +0000152 return getOrCreateRegularScope(Scope);
153}
154
155/// getOrCreateRegularScope - Find or create a regular lexical scope.
Duncan P. N. Exon Smith33af7a82015-03-30 23:21:21 +0000156LexicalScope *
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000157LexicalScopes::getOrCreateRegularScope(const DILocalScope *Scope) {
Amjad Abouda5ba9912016-04-21 16:58:49 +0000158 assert(Scope && "Invalid Scope encoding!");
159 Scope = Scope->getNonLexicalBlockFileScope();
Eric Christopher6211e4b2013-11-20 00:54:19 +0000160
David Blaikie2f143e02014-05-08 22:24:51 +0000161 auto I = LexicalScopeMap.find(Scope);
162 if (I != LexicalScopeMap.end())
163 return &I->second;
Devang Patele1649c32011-08-10 19:04:06 +0000164
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000165 // FIXME: Should the following dyn_cast be DILexicalBlock?
Craig Topperc0196b12014-04-14 00:51:57 +0000166 LexicalScope *Parent = nullptr;
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000167 if (auto *Block = dyn_cast<DILexicalBlockBase>(Scope))
Duncan P. N. Exon Smith82eba742015-03-30 23:47:26 +0000168 Parent = getOrCreateLexicalScope(Block->getScope());
Aaron Ballmanf17583e2015-02-16 18:21:19 +0000169 I = LexicalScopeMap.emplace(std::piecewise_construct,
170 std::forward_as_tuple(Scope),
Duncan P. N. Exon Smith33af7a82015-03-30 23:21:21 +0000171 std::forward_as_tuple(Parent, Scope, nullptr,
172 false)).first;
David Blaikie2f143e02014-05-08 22:24:51 +0000173
David Blaikie3dfe4782014-10-14 18:22:52 +0000174 if (!Parent) {
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000175 assert(cast<DISubprogram>(Scope)->describes(MF->getFunction()));
David Blaikie3dfe4782014-10-14 18:22:52 +0000176 assert(!CurrentFnLexicalScope);
David Blaikie2f143e02014-05-08 22:24:51 +0000177 CurrentFnLexicalScope = &I->second;
David Blaikie3dfe4782014-10-14 18:22:52 +0000178 }
Eric Christopher6211e4b2013-11-20 00:54:19 +0000179
David Blaikie2f143e02014-05-08 22:24:51 +0000180 return &I->second;
Devang Patele1649c32011-08-10 19:04:06 +0000181}
182
183/// getOrCreateInlinedScope - Find or create an inlined lexical scope.
Duncan P. N. Exon Smith33af7a82015-03-30 23:21:21 +0000184LexicalScope *
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000185LexicalScopes::getOrCreateInlinedScope(const DILocalScope *Scope,
186 const DILocation *InlinedAt) {
Amjad Abouda5ba9912016-04-21 16:58:49 +0000187 assert(Scope && "Invalid Scope encoding!");
188 Scope = Scope->getNonLexicalBlockFileScope();
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000189 std::pair<const DILocalScope *, const DILocation *> P(Scope, InlinedAt);
David Blaikie9b8c8cd2014-05-14 01:08:28 +0000190 auto I = InlinedLexicalScopeMap.find(P);
191 if (I != InlinedLexicalScopeMap.end())
David Blaikie2f143e02014-05-08 22:24:51 +0000192 return &I->second;
Devang Patele1649c32011-08-10 19:04:06 +0000193
David Blaikie9b8c8cd2014-05-14 01:08:28 +0000194 LexicalScope *Parent;
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000195 if (auto *Block = dyn_cast<DILexicalBlockBase>(Scope))
Duncan P. N. Exon Smith33af7a82015-03-30 23:21:21 +0000196 Parent = getOrCreateInlinedScope(Block->getScope(), InlinedAt);
David Blaikie9b8c8cd2014-05-14 01:08:28 +0000197 else
Duncan P. N. Exon Smith33af7a82015-03-30 23:21:21 +0000198 Parent = getOrCreateLexicalScope(InlinedAt);
David Blaikie9b8c8cd2014-05-14 01:08:28 +0000199
Eric Christopher14303d12017-02-14 19:43:50 +0000200 I = InlinedLexicalScopeMap
201 .emplace(std::piecewise_construct, std::forward_as_tuple(P),
202 std::forward_as_tuple(Parent, Scope, InlinedAt, false))
Aaron Ballmanf17583e2015-02-16 18:21:19 +0000203 .first;
David Blaikie2f143e02014-05-08 22:24:51 +0000204 return &I->second;
Devang Patele1649c32011-08-10 19:04:06 +0000205}
206
207/// getOrCreateAbstractScope - Find or create an abstract lexical scope.
Duncan P. N. Exon Smith33af7a82015-03-30 23:21:21 +0000208LexicalScope *
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000209LexicalScopes::getOrCreateAbstractScope(const DILocalScope *Scope) {
Duncan P. N. Exon Smith33af7a82015-03-30 23:21:21 +0000210 assert(Scope && "Invalid Scope encoding!");
Amjad Abouda5ba9912016-04-21 16:58:49 +0000211 Scope = Scope->getNonLexicalBlockFileScope();
David Blaikieea862262014-05-25 18:11:35 +0000212 auto I = AbstractScopeMap.find(Scope);
David Blaikie2f143e02014-05-08 22:24:51 +0000213 if (I != AbstractScopeMap.end())
214 return &I->second;
Devang Patele1649c32011-08-10 19:04:06 +0000215
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000216 // FIXME: Should the following isa be DILexicalBlock?
Craig Topperc0196b12014-04-14 00:51:57 +0000217 LexicalScope *Parent = nullptr;
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000218 if (auto *Block = dyn_cast<DILexicalBlockBase>(Scope))
Duncan P. N. Exon Smith33af7a82015-03-30 23:21:21 +0000219 Parent = getOrCreateAbstractScope(Block->getScope());
220
David Blaikie2f143e02014-05-08 22:24:51 +0000221 I = AbstractScopeMap.emplace(std::piecewise_construct,
David Blaikieea862262014-05-25 18:11:35 +0000222 std::forward_as_tuple(Scope),
223 std::forward_as_tuple(Parent, Scope,
David Blaikie2f143e02014-05-08 22:24:51 +0000224 nullptr, true)).first;
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000225 if (isa<DISubprogram>(Scope))
David Blaikie2f143e02014-05-08 22:24:51 +0000226 AbstractScopesList.push_back(&I->second);
227 return &I->second;
Devang Patele1649c32011-08-10 19:04:06 +0000228}
229
230/// constructScopeNest
231void LexicalScopes::constructScopeNest(LexicalScope *Scope) {
Eric Christopher6211e4b2013-11-20 00:54:19 +0000232 assert(Scope && "Unable to calculate scope dominance graph!");
Devang Patele1649c32011-08-10 19:04:06 +0000233 SmallVector<LexicalScope *, 4> WorkStack;
234 WorkStack.push_back(Scope);
235 unsigned Counter = 0;
236 while (!WorkStack.empty()) {
237 LexicalScope *WS = WorkStack.back();
Craig Topper80170e52013-07-03 04:30:58 +0000238 const SmallVectorImpl<LexicalScope *> &Children = WS->getChildren();
Devang Patele1649c32011-08-10 19:04:06 +0000239 bool visitedChildren = false;
Adrian Prantl16b2ace2016-09-28 17:31:17 +0000240 for (auto &ChildScope : Children)
Devang Patele1649c32011-08-10 19:04:06 +0000241 if (!ChildScope->getDFSOut()) {
242 WorkStack.push_back(ChildScope);
243 visitedChildren = true;
244 ChildScope->setDFSIn(++Counter);
245 break;
246 }
Devang Patele1649c32011-08-10 19:04:06 +0000247 if (!visitedChildren) {
248 WorkStack.pop_back();
249 WS->setDFSOut(++Counter);
250 }
251 }
252}
253
Devang Patel784077e2011-08-10 23:58:09 +0000254/// assignInstructionRanges - Find ranges of instructions covered by each
255/// lexical scope.
Eric Christopher6211e4b2013-11-20 00:54:19 +0000256void LexicalScopes::assignInstructionRanges(
257 SmallVectorImpl<InsnRange> &MIRanges,
258 DenseMap<const MachineInstr *, LexicalScope *> &MI2ScopeMap) {
Craig Topperc0196b12014-04-14 00:51:57 +0000259 LexicalScope *PrevLexicalScope = nullptr;
Adrian Prantl16b2ace2016-09-28 17:31:17 +0000260 for (const auto &R : MIRanges) {
Devang Patele1649c32011-08-10 19:04:06 +0000261 LexicalScope *S = MI2ScopeMap.lookup(R.first);
Eric Christopher6211e4b2013-11-20 00:54:19 +0000262 assert(S && "Lost LexicalScope for a machine instruction!");
Devang Patele1649c32011-08-10 19:04:06 +0000263 if (PrevLexicalScope && !PrevLexicalScope->dominates(S))
264 PrevLexicalScope->closeInsnRange(S);
265 S->openInsnRange(R.first);
266 S->extendInsnRange(R.second);
267 PrevLexicalScope = S;
268 }
269
270 if (PrevLexicalScope)
271 PrevLexicalScope->closeInsnRange();
272}
273
274/// getMachineBasicBlocks - Populate given set using machine basic blocks which
Eric Christopher6211e4b2013-11-20 00:54:19 +0000275/// have machine instructions that belong to lexical scope identified by
Devang Patele1649c32011-08-10 19:04:06 +0000276/// DebugLoc.
Eric Christopher6211e4b2013-11-20 00:54:19 +0000277void LexicalScopes::getMachineBasicBlocks(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000278 const DILocation *DL, SmallPtrSetImpl<const MachineBasicBlock *> &MBBs) {
Devang Patele1649c32011-08-10 19:04:06 +0000279 MBBs.clear();
280 LexicalScope *Scope = getOrCreateLexicalScope(DL);
281 if (!Scope)
282 return;
Eric Christopher6211e4b2013-11-20 00:54:19 +0000283
Devang Pateldb4374a2011-08-12 18:01:34 +0000284 if (Scope == CurrentFnLexicalScope) {
Alexey Samsonov41b977d2014-04-30 18:29:51 +0000285 for (const auto &MBB : *MF)
286 MBBs.insert(&MBB);
Devang Pateldb4374a2011-08-12 18:01:34 +0000287 return;
288 }
289
Craig Topper80170e52013-07-03 04:30:58 +0000290 SmallVectorImpl<InsnRange> &InsnRanges = Scope->getRanges();
Adrian Prantl16b2ace2016-09-28 17:31:17 +0000291 for (auto &R : InsnRanges)
Devang Patele1649c32011-08-10 19:04:06 +0000292 MBBs.insert(R.first->getParent());
Devang Patele1649c32011-08-10 19:04:06 +0000293}
294
295/// dominates - Return true if DebugLoc's lexical scope dominates at least one
296/// machine instruction's lexical scope in a given machine basic block.
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000297bool LexicalScopes::dominates(const DILocation *DL, MachineBasicBlock *MBB) {
Devang Patele1649c32011-08-10 19:04:06 +0000298 LexicalScope *Scope = getOrCreateLexicalScope(DL);
299 if (!Scope)
300 return false;
Devang Pateldb4374a2011-08-12 18:01:34 +0000301
302 // Current function scope covers all basic blocks in the function.
303 if (Scope == CurrentFnLexicalScope && MBB->getParent() == MF)
304 return true;
305
Devang Patele1649c32011-08-10 19:04:06 +0000306 bool Result = false;
Adrian Prantl16b2ace2016-09-28 17:31:17 +0000307 for (auto &I : *MBB) {
308 if (const DILocation *IDL = I.getDebugLoc())
Duncan P. N. Exon Smith3386e0e2015-03-30 23:58:59 +0000309 if (LexicalScope *IScope = getOrCreateLexicalScope(IDL))
310 if (Scope->dominates(IScope))
311 return true;
Devang Patele1649c32011-08-10 19:04:06 +0000312 }
313 return Result;
314}
315
Matthias Braun8c209aa2017-01-28 02:02:38 +0000316#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
317LLVM_DUMP_METHOD void LexicalScope::dump(unsigned Indent) const {
Devang Patele1649c32011-08-10 19:04:06 +0000318 raw_ostream &err = dbgs();
Manman Rene498b252013-02-02 00:02:03 +0000319 err.indent(Indent);
Devang Patele1649c32011-08-10 19:04:06 +0000320 err << "DFSIn: " << DFSIn << " DFSOut: " << DFSOut << "\n";
321 const MDNode *N = Desc;
Manman Rene498b252013-02-02 00:02:03 +0000322 err.indent(Indent);
Devang Patele1649c32011-08-10 19:04:06 +0000323 N->dump();
324 if (AbstractScope)
Manman Rene498b252013-02-02 00:02:03 +0000325 err << std::string(Indent, ' ') << "Abstract Scope\n";
Devang Patele1649c32011-08-10 19:04:06 +0000326
Devang Patele1649c32011-08-10 19:04:06 +0000327 if (!Children.empty())
Manman Rene498b252013-02-02 00:02:03 +0000328 err << std::string(Indent + 2, ' ') << "Children ...\n";
Devang Patele1649c32011-08-10 19:04:06 +0000329 for (unsigned i = 0, e = Children.size(); i != e; ++i)
330 if (Children[i] != this)
Manman Rene498b252013-02-02 00:02:03 +0000331 Children[i]->dump(Indent + 2);
Devang Patele1649c32011-08-10 19:04:06 +0000332}
Matthias Braun8c209aa2017-01-28 02:02:38 +0000333#endif