blob: 205902b2e94afe819edb7901e58bbc1bcbd198f1 [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
Devang Patele1649c32011-08-10 19:04:06 +000017#include "llvm/CodeGen/LexicalScopes.h"
Devang Patele1649c32011-08-10 19:04:06 +000018#include "llvm/CodeGen/MachineFunction.h"
19#include "llvm/CodeGen/MachineInstr.h"
Chandler Carruth9a4c9e52014-03-06 00:46:21 +000020#include "llvm/IR/DebugInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000021#include "llvm/IR/Function.h"
Devang Patele1649c32011-08-10 19:04:06 +000022#include "llvm/Support/Debug.h"
23#include "llvm/Support/ErrorHandling.h"
24#include "llvm/Support/FormattedStream.h"
25using namespace llvm;
26
Chandler Carruth1b9dde02014-04-22 02:02:50 +000027#define DEBUG_TYPE "lexicalscopes"
28
Eric Christopherb7dee8a2013-11-20 00:54:28 +000029/// reset - Reset the instance so that it's prepared for another function.
30void LexicalScopes::reset() {
Craig Topperc0196b12014-04-14 00:51:57 +000031 MF = nullptr;
32 CurrentFnLexicalScope = nullptr;
David Blaikie2f143e02014-05-08 22:24:51 +000033 LexicalScopeMap.clear();
34 AbstractScopeMap.clear();
Devang Patele1649c32011-08-10 19:04:06 +000035 InlinedLexicalScopeMap.clear();
36 AbstractScopesList.clear();
37}
38
39/// initialize - Scan machine function and constuct lexical scope nest.
40void LexicalScopes::initialize(const MachineFunction &Fn) {
Teresa Johnson76b5b742017-02-17 00:21:19 +000041 // Don't attempt any lexical scope creation for a NoDebug compile unit.
42 if (Fn.getFunction()->getSubprogram()->getUnit()->getEmissionKind() ==
43 DICompileUnit::NoDebug)
44 return;
Eric Christopherb7dee8a2013-11-20 00:54:28 +000045 reset();
Devang Patele1649c32011-08-10 19:04:06 +000046 MF = &Fn;
47 SmallVector<InsnRange, 4> MIRanges;
48 DenseMap<const MachineInstr *, LexicalScope *> MI2ScopeMap;
49 extractLexicalScopes(MIRanges, MI2ScopeMap);
50 if (CurrentFnLexicalScope) {
51 constructScopeNest(CurrentFnLexicalScope);
52 assignInstructionRanges(MIRanges, MI2ScopeMap);
53 }
54}
55
56/// extractLexicalScopes - Extract instruction ranges for each lexical scopes
57/// for the given machine function.
Eric Christopher6211e4b2013-11-20 00:54:19 +000058void LexicalScopes::extractLexicalScopes(
59 SmallVectorImpl<InsnRange> &MIRanges,
60 DenseMap<const MachineInstr *, LexicalScope *> &MI2ScopeMap) {
Devang Patele1649c32011-08-10 19:04:06 +000061
62 // Scan each instruction and create scopes. First build working set of scopes.
Alexey Samsonov41b977d2014-04-30 18:29:51 +000063 for (const auto &MBB : *MF) {
Craig Topperc0196b12014-04-14 00:51:57 +000064 const MachineInstr *RangeBeginMI = nullptr;
65 const MachineInstr *PrevMI = nullptr;
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000066 const DILocation *PrevDL = nullptr;
Alexey Samsonovf74bde62014-04-30 22:17:38 +000067 for (const auto &MInsn : MBB) {
Devang Patele1649c32011-08-10 19:04:06 +000068 // Check if instruction has valid location information.
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000069 const DILocation *MIDL = MInsn.getDebugLoc();
Duncan P. N. Exon Smith9dffcd02015-03-30 19:14:47 +000070 if (!MIDL) {
Alexey Samsonovf74bde62014-04-30 22:17:38 +000071 PrevMI = &MInsn;
Devang Patele1649c32011-08-10 19:04:06 +000072 continue;
73 }
74
75 // If scope has not changed then skip this instruction.
76 if (MIDL == PrevDL) {
Alexey Samsonovf74bde62014-04-30 22:17:38 +000077 PrevMI = &MInsn;
Devang Patele1649c32011-08-10 19:04:06 +000078 continue;
79 }
80
81 // Ignore DBG_VALUE. It does not contribute to any instruction in output.
Alexey Samsonovf74bde62014-04-30 22:17:38 +000082 if (MInsn.isDebugValue())
Devang Patele1649c32011-08-10 19:04:06 +000083 continue;
84
85 if (RangeBeginMI) {
86 // If we have already seen a beginning of an instruction range and
87 // current instruction scope does not match scope of first instruction
88 // in this range then create a new instruction range.
89 InsnRange R(RangeBeginMI, PrevMI);
90 MI2ScopeMap[RangeBeginMI] = getOrCreateLexicalScope(PrevDL);
91 MIRanges.push_back(R);
92 }
93
94 // This is a beginning of a new instruction range.
Alexey Samsonovf74bde62014-04-30 22:17:38 +000095 RangeBeginMI = &MInsn;
Devang Patele1649c32011-08-10 19:04:06 +000096
97 // Reset previous markers.
Alexey Samsonovf74bde62014-04-30 22:17:38 +000098 PrevMI = &MInsn;
Devang Patele1649c32011-08-10 19:04:06 +000099 PrevDL = MIDL;
100 }
101
102 // Create last instruction range.
Duncan P. N. Exon Smith9dffcd02015-03-30 19:14:47 +0000103 if (RangeBeginMI && PrevMI && PrevDL) {
Devang Patele1649c32011-08-10 19:04:06 +0000104 InsnRange R(RangeBeginMI, PrevMI);
105 MIRanges.push_back(R);
106 MI2ScopeMap[RangeBeginMI] = getOrCreateLexicalScope(PrevDL);
107 }
108 }
109}
110
111/// findLexicalScope - Find lexical scope, either regular or inlined, for the
112/// given DebugLoc. Return NULL if not found.
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000113LexicalScope *LexicalScopes::findLexicalScope(const DILocation *DL) {
114 DILocalScope *Scope = DL->getScope();
Eric Christopher6211e4b2013-11-20 00:54:19 +0000115 if (!Scope)
Craig Topperc0196b12014-04-14 00:51:57 +0000116 return nullptr;
Eric Christopher6647b832011-10-11 22:59:11 +0000117
118 // The scope that we were created with could have an extra file - which
119 // isn't what we care about in this case.
Amjad Abouda5ba9912016-04-21 16:58:49 +0000120 Scope = Scope->getNonLexicalBlockFileScope();
Eric Christopher6211e4b2013-11-20 00:54:19 +0000121
Duncan P. N. Exon Smith5a227ff2015-03-30 21:54:46 +0000122 if (auto *IA = DL->getInlinedAt()) {
David Blaikie9b8c8cd2014-05-14 01:08:28 +0000123 auto I = InlinedLexicalScopeMap.find(std::make_pair(Scope, IA));
124 return I != InlinedLexicalScopeMap.end() ? &I->second : nullptr;
125 }
David Blaikie2f143e02014-05-08 22:24:51 +0000126 return findLexicalScope(Scope);
Devang Patele1649c32011-08-10 19:04:06 +0000127}
128
129/// getOrCreateLexicalScope - Find lexical scope for the given DebugLoc. If
130/// not available then create new lexical scope.
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000131LexicalScope *LexicalScopes::getOrCreateLexicalScope(const DILocalScope *Scope,
132 const DILocation *IA) {
Duncan P. N. Exon Smith82eba742015-03-30 23:47:26 +0000133 if (IA) {
Teresa Johnson76b5b742017-02-17 00:21:19 +0000134 // Skip scopes inlined from a NoDebug compile unit.
135 if (Scope->getSubprogram()->getUnit()->getEmissionKind() ==
136 DICompileUnit::NoDebug)
137 return getOrCreateLexicalScope(IA);
Devang Patele1649c32011-08-10 19:04:06 +0000138 // Create an abstract scope for inlined function.
139 getOrCreateAbstractScope(Scope);
140 // Create an inlined scope for inlined function.
Duncan P. N. Exon Smith82eba742015-03-30 23:47:26 +0000141 return getOrCreateInlinedScope(Scope, IA);
Devang Patele1649c32011-08-10 19:04:06 +0000142 }
Eric Christopher6211e4b2013-11-20 00:54:19 +0000143
Devang Patele1649c32011-08-10 19:04:06 +0000144 return getOrCreateRegularScope(Scope);
145}
146
147/// getOrCreateRegularScope - Find or create a regular lexical scope.
Duncan P. N. Exon Smith33af7a82015-03-30 23:21:21 +0000148LexicalScope *
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000149LexicalScopes::getOrCreateRegularScope(const DILocalScope *Scope) {
Amjad Abouda5ba9912016-04-21 16:58:49 +0000150 assert(Scope && "Invalid Scope encoding!");
151 Scope = Scope->getNonLexicalBlockFileScope();
Eric Christopher6211e4b2013-11-20 00:54:19 +0000152
David Blaikie2f143e02014-05-08 22:24:51 +0000153 auto I = LexicalScopeMap.find(Scope);
154 if (I != LexicalScopeMap.end())
155 return &I->second;
Devang Patele1649c32011-08-10 19:04:06 +0000156
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000157 // FIXME: Should the following dyn_cast be DILexicalBlock?
Craig Topperc0196b12014-04-14 00:51:57 +0000158 LexicalScope *Parent = nullptr;
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000159 if (auto *Block = dyn_cast<DILexicalBlockBase>(Scope))
Duncan P. N. Exon Smith82eba742015-03-30 23:47:26 +0000160 Parent = getOrCreateLexicalScope(Block->getScope());
Aaron Ballmanf17583e2015-02-16 18:21:19 +0000161 I = LexicalScopeMap.emplace(std::piecewise_construct,
162 std::forward_as_tuple(Scope),
Duncan P. N. Exon Smith33af7a82015-03-30 23:21:21 +0000163 std::forward_as_tuple(Parent, Scope, nullptr,
164 false)).first;
David Blaikie2f143e02014-05-08 22:24:51 +0000165
David Blaikie3dfe4782014-10-14 18:22:52 +0000166 if (!Parent) {
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000167 assert(cast<DISubprogram>(Scope)->describes(MF->getFunction()));
David Blaikie3dfe4782014-10-14 18:22:52 +0000168 assert(!CurrentFnLexicalScope);
David Blaikie2f143e02014-05-08 22:24:51 +0000169 CurrentFnLexicalScope = &I->second;
David Blaikie3dfe4782014-10-14 18:22:52 +0000170 }
Eric Christopher6211e4b2013-11-20 00:54:19 +0000171
David Blaikie2f143e02014-05-08 22:24:51 +0000172 return &I->second;
Devang Patele1649c32011-08-10 19:04:06 +0000173}
174
175/// getOrCreateInlinedScope - Find or create an inlined lexical scope.
Duncan P. N. Exon Smith33af7a82015-03-30 23:21:21 +0000176LexicalScope *
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000177LexicalScopes::getOrCreateInlinedScope(const DILocalScope *Scope,
178 const DILocation *InlinedAt) {
Amjad Abouda5ba9912016-04-21 16:58:49 +0000179 assert(Scope && "Invalid Scope encoding!");
180 Scope = Scope->getNonLexicalBlockFileScope();
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000181 std::pair<const DILocalScope *, const DILocation *> P(Scope, InlinedAt);
David Blaikie9b8c8cd2014-05-14 01:08:28 +0000182 auto I = InlinedLexicalScopeMap.find(P);
183 if (I != InlinedLexicalScopeMap.end())
David Blaikie2f143e02014-05-08 22:24:51 +0000184 return &I->second;
Devang Patele1649c32011-08-10 19:04:06 +0000185
David Blaikie9b8c8cd2014-05-14 01:08:28 +0000186 LexicalScope *Parent;
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000187 if (auto *Block = dyn_cast<DILexicalBlockBase>(Scope))
Duncan P. N. Exon Smith33af7a82015-03-30 23:21:21 +0000188 Parent = getOrCreateInlinedScope(Block->getScope(), InlinedAt);
David Blaikie9b8c8cd2014-05-14 01:08:28 +0000189 else
Duncan P. N. Exon Smith33af7a82015-03-30 23:21:21 +0000190 Parent = getOrCreateLexicalScope(InlinedAt);
David Blaikie9b8c8cd2014-05-14 01:08:28 +0000191
Eric Christopher14303d12017-02-14 19:43:50 +0000192 I = InlinedLexicalScopeMap
193 .emplace(std::piecewise_construct, std::forward_as_tuple(P),
194 std::forward_as_tuple(Parent, Scope, InlinedAt, false))
Aaron Ballmanf17583e2015-02-16 18:21:19 +0000195 .first;
David Blaikie2f143e02014-05-08 22:24:51 +0000196 return &I->second;
Devang Patele1649c32011-08-10 19:04:06 +0000197}
198
199/// getOrCreateAbstractScope - Find or create an abstract lexical scope.
Duncan P. N. Exon Smith33af7a82015-03-30 23:21:21 +0000200LexicalScope *
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000201LexicalScopes::getOrCreateAbstractScope(const DILocalScope *Scope) {
Duncan P. N. Exon Smith33af7a82015-03-30 23:21:21 +0000202 assert(Scope && "Invalid Scope encoding!");
Amjad Abouda5ba9912016-04-21 16:58:49 +0000203 Scope = Scope->getNonLexicalBlockFileScope();
David Blaikieea862262014-05-25 18:11:35 +0000204 auto I = AbstractScopeMap.find(Scope);
David Blaikie2f143e02014-05-08 22:24:51 +0000205 if (I != AbstractScopeMap.end())
206 return &I->second;
Devang Patele1649c32011-08-10 19:04:06 +0000207
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000208 // FIXME: Should the following isa be DILexicalBlock?
Craig Topperc0196b12014-04-14 00:51:57 +0000209 LexicalScope *Parent = nullptr;
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000210 if (auto *Block = dyn_cast<DILexicalBlockBase>(Scope))
Duncan P. N. Exon Smith33af7a82015-03-30 23:21:21 +0000211 Parent = getOrCreateAbstractScope(Block->getScope());
212
David Blaikie2f143e02014-05-08 22:24:51 +0000213 I = AbstractScopeMap.emplace(std::piecewise_construct,
David Blaikieea862262014-05-25 18:11:35 +0000214 std::forward_as_tuple(Scope),
215 std::forward_as_tuple(Parent, Scope,
David Blaikie2f143e02014-05-08 22:24:51 +0000216 nullptr, true)).first;
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000217 if (isa<DISubprogram>(Scope))
David Blaikie2f143e02014-05-08 22:24:51 +0000218 AbstractScopesList.push_back(&I->second);
219 return &I->second;
Devang Patele1649c32011-08-10 19:04:06 +0000220}
221
222/// constructScopeNest
223void LexicalScopes::constructScopeNest(LexicalScope *Scope) {
Eric Christopher6211e4b2013-11-20 00:54:19 +0000224 assert(Scope && "Unable to calculate scope dominance graph!");
Devang Patele1649c32011-08-10 19:04:06 +0000225 SmallVector<LexicalScope *, 4> WorkStack;
226 WorkStack.push_back(Scope);
227 unsigned Counter = 0;
228 while (!WorkStack.empty()) {
229 LexicalScope *WS = WorkStack.back();
Craig Topper80170e52013-07-03 04:30:58 +0000230 const SmallVectorImpl<LexicalScope *> &Children = WS->getChildren();
Devang Patele1649c32011-08-10 19:04:06 +0000231 bool visitedChildren = false;
Adrian Prantl16b2ace2016-09-28 17:31:17 +0000232 for (auto &ChildScope : Children)
Devang Patele1649c32011-08-10 19:04:06 +0000233 if (!ChildScope->getDFSOut()) {
234 WorkStack.push_back(ChildScope);
235 visitedChildren = true;
236 ChildScope->setDFSIn(++Counter);
237 break;
238 }
Devang Patele1649c32011-08-10 19:04:06 +0000239 if (!visitedChildren) {
240 WorkStack.pop_back();
241 WS->setDFSOut(++Counter);
242 }
243 }
244}
245
Devang Patel784077e2011-08-10 23:58:09 +0000246/// assignInstructionRanges - Find ranges of instructions covered by each
247/// lexical scope.
Eric Christopher6211e4b2013-11-20 00:54:19 +0000248void LexicalScopes::assignInstructionRanges(
249 SmallVectorImpl<InsnRange> &MIRanges,
250 DenseMap<const MachineInstr *, LexicalScope *> &MI2ScopeMap) {
251
Craig Topperc0196b12014-04-14 00:51:57 +0000252 LexicalScope *PrevLexicalScope = nullptr;
Adrian Prantl16b2ace2016-09-28 17:31:17 +0000253 for (const auto &R : MIRanges) {
Devang Patele1649c32011-08-10 19:04:06 +0000254 LexicalScope *S = MI2ScopeMap.lookup(R.first);
Eric Christopher6211e4b2013-11-20 00:54:19 +0000255 assert(S && "Lost LexicalScope for a machine instruction!");
Devang Patele1649c32011-08-10 19:04:06 +0000256 if (PrevLexicalScope && !PrevLexicalScope->dominates(S))
257 PrevLexicalScope->closeInsnRange(S);
258 S->openInsnRange(R.first);
259 S->extendInsnRange(R.second);
260 PrevLexicalScope = S;
261 }
262
263 if (PrevLexicalScope)
264 PrevLexicalScope->closeInsnRange();
265}
266
267/// getMachineBasicBlocks - Populate given set using machine basic blocks which
Eric Christopher6211e4b2013-11-20 00:54:19 +0000268/// have machine instructions that belong to lexical scope identified by
Devang Patele1649c32011-08-10 19:04:06 +0000269/// DebugLoc.
Eric Christopher6211e4b2013-11-20 00:54:19 +0000270void LexicalScopes::getMachineBasicBlocks(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000271 const DILocation *DL, SmallPtrSetImpl<const MachineBasicBlock *> &MBBs) {
Devang Patele1649c32011-08-10 19:04:06 +0000272 MBBs.clear();
273 LexicalScope *Scope = getOrCreateLexicalScope(DL);
274 if (!Scope)
275 return;
Eric Christopher6211e4b2013-11-20 00:54:19 +0000276
Devang Pateldb4374a2011-08-12 18:01:34 +0000277 if (Scope == CurrentFnLexicalScope) {
Alexey Samsonov41b977d2014-04-30 18:29:51 +0000278 for (const auto &MBB : *MF)
279 MBBs.insert(&MBB);
Devang Pateldb4374a2011-08-12 18:01:34 +0000280 return;
281 }
282
Craig Topper80170e52013-07-03 04:30:58 +0000283 SmallVectorImpl<InsnRange> &InsnRanges = Scope->getRanges();
Adrian Prantl16b2ace2016-09-28 17:31:17 +0000284 for (auto &R : InsnRanges)
Devang Patele1649c32011-08-10 19:04:06 +0000285 MBBs.insert(R.first->getParent());
Devang Patele1649c32011-08-10 19:04:06 +0000286}
287
288/// dominates - Return true if DebugLoc's lexical scope dominates at least one
289/// machine instruction's lexical scope in a given machine basic block.
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000290bool LexicalScopes::dominates(const DILocation *DL, MachineBasicBlock *MBB) {
Devang Patele1649c32011-08-10 19:04:06 +0000291 LexicalScope *Scope = getOrCreateLexicalScope(DL);
292 if (!Scope)
293 return false;
Devang Pateldb4374a2011-08-12 18:01:34 +0000294
295 // Current function scope covers all basic blocks in the function.
296 if (Scope == CurrentFnLexicalScope && MBB->getParent() == MF)
297 return true;
298
Devang Patele1649c32011-08-10 19:04:06 +0000299 bool Result = false;
Adrian Prantl16b2ace2016-09-28 17:31:17 +0000300 for (auto &I : *MBB) {
301 if (const DILocation *IDL = I.getDebugLoc())
Duncan P. N. Exon Smith3386e0e2015-03-30 23:58:59 +0000302 if (LexicalScope *IScope = getOrCreateLexicalScope(IDL))
303 if (Scope->dominates(IScope))
304 return true;
Devang Patele1649c32011-08-10 19:04:06 +0000305 }
306 return Result;
307}
308
Matthias Braun8c209aa2017-01-28 02:02:38 +0000309#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
310LLVM_DUMP_METHOD void LexicalScope::dump(unsigned Indent) const {
Devang Patele1649c32011-08-10 19:04:06 +0000311 raw_ostream &err = dbgs();
Manman Rene498b252013-02-02 00:02:03 +0000312 err.indent(Indent);
Devang Patele1649c32011-08-10 19:04:06 +0000313 err << "DFSIn: " << DFSIn << " DFSOut: " << DFSOut << "\n";
314 const MDNode *N = Desc;
Manman Rene498b252013-02-02 00:02:03 +0000315 err.indent(Indent);
Devang Patele1649c32011-08-10 19:04:06 +0000316 N->dump();
317 if (AbstractScope)
Manman Rene498b252013-02-02 00:02:03 +0000318 err << std::string(Indent, ' ') << "Abstract Scope\n";
Devang Patele1649c32011-08-10 19:04:06 +0000319
Devang Patele1649c32011-08-10 19:04:06 +0000320 if (!Children.empty())
Manman Rene498b252013-02-02 00:02:03 +0000321 err << std::string(Indent + 2, ' ') << "Children ...\n";
Devang Patele1649c32011-08-10 19:04:06 +0000322 for (unsigned i = 0, e = Children.size(); i != e; ++i)
323 if (Children[i] != this)
Manman Rene498b252013-02-02 00:02:03 +0000324 Children[i]->dump(Indent + 2);
Devang Patele1649c32011-08-10 19:04:06 +0000325}
Matthias Braun8c209aa2017-01-28 02:02:38 +0000326#endif