blob: d12c234bf3b20343eea3d8b7dc740dc476eb7485 [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) {
Eric Christopherb7dee8a2013-11-20 00:54:28 +000041 reset();
Devang Patele1649c32011-08-10 19:04:06 +000042 MF = &Fn;
43 SmallVector<InsnRange, 4> MIRanges;
44 DenseMap<const MachineInstr *, LexicalScope *> MI2ScopeMap;
45 extractLexicalScopes(MIRanges, MI2ScopeMap);
46 if (CurrentFnLexicalScope) {
47 constructScopeNest(CurrentFnLexicalScope);
48 assignInstructionRanges(MIRanges, MI2ScopeMap);
49 }
50}
51
52/// extractLexicalScopes - Extract instruction ranges for each lexical scopes
53/// for the given machine function.
Eric Christopher6211e4b2013-11-20 00:54:19 +000054void LexicalScopes::extractLexicalScopes(
55 SmallVectorImpl<InsnRange> &MIRanges,
56 DenseMap<const MachineInstr *, LexicalScope *> &MI2ScopeMap) {
Devang Patele1649c32011-08-10 19:04:06 +000057
58 // Scan each instruction and create scopes. First build working set of scopes.
Alexey Samsonov41b977d2014-04-30 18:29:51 +000059 for (const auto &MBB : *MF) {
Craig Topperc0196b12014-04-14 00:51:57 +000060 const MachineInstr *RangeBeginMI = nullptr;
61 const MachineInstr *PrevMI = nullptr;
Devang Patele1649c32011-08-10 19:04:06 +000062 DebugLoc PrevDL;
Alexey Samsonovf74bde62014-04-30 22:17:38 +000063 for (const auto &MInsn : MBB) {
Devang Patele1649c32011-08-10 19:04:06 +000064 // Check if instruction has valid location information.
Alexey Samsonovf74bde62014-04-30 22:17:38 +000065 const DebugLoc MIDL = MInsn.getDebugLoc();
Devang Patele1649c32011-08-10 19:04:06 +000066 if (MIDL.isUnknown()) {
Alexey Samsonovf74bde62014-04-30 22:17:38 +000067 PrevMI = &MInsn;
Devang Patele1649c32011-08-10 19:04:06 +000068 continue;
69 }
70
71 // If scope has not changed then skip this instruction.
72 if (MIDL == PrevDL) {
Alexey Samsonovf74bde62014-04-30 22:17:38 +000073 PrevMI = &MInsn;
Devang Patele1649c32011-08-10 19:04:06 +000074 continue;
75 }
76
77 // Ignore DBG_VALUE. It does not contribute to any instruction in output.
Alexey Samsonovf74bde62014-04-30 22:17:38 +000078 if (MInsn.isDebugValue())
Devang Patele1649c32011-08-10 19:04:06 +000079 continue;
80
81 if (RangeBeginMI) {
82 // If we have already seen a beginning of an instruction range and
83 // current instruction scope does not match scope of first instruction
84 // in this range then create a new instruction range.
85 InsnRange R(RangeBeginMI, PrevMI);
86 MI2ScopeMap[RangeBeginMI] = getOrCreateLexicalScope(PrevDL);
87 MIRanges.push_back(R);
88 }
89
90 // This is a beginning of a new instruction range.
Alexey Samsonovf74bde62014-04-30 22:17:38 +000091 RangeBeginMI = &MInsn;
Devang Patele1649c32011-08-10 19:04:06 +000092
93 // Reset previous markers.
Alexey Samsonovf74bde62014-04-30 22:17:38 +000094 PrevMI = &MInsn;
Devang Patele1649c32011-08-10 19:04:06 +000095 PrevDL = MIDL;
96 }
97
98 // Create last instruction range.
99 if (RangeBeginMI && PrevMI && !PrevDL.isUnknown()) {
100 InsnRange R(RangeBeginMI, PrevMI);
101 MIRanges.push_back(R);
102 MI2ScopeMap[RangeBeginMI] = getOrCreateLexicalScope(PrevDL);
103 }
104 }
105}
106
David Blaikie9b8c8cd2014-05-14 01:08:28 +0000107LexicalScope *LexicalScopes::findInlinedScope(DebugLoc DL) {
108 MDNode *Scope = nullptr;
109 MDNode *IA = nullptr;
110 DL.getScopeAndInlinedAt(Scope, IA, MF->getFunction()->getContext());
111 auto I = InlinedLexicalScopeMap.find(std::make_pair(Scope, IA));
112 return I != InlinedLexicalScopeMap.end() ? &I->second : nullptr;
113}
114
Devang Patele1649c32011-08-10 19:04:06 +0000115/// findLexicalScope - Find lexical scope, either regular or inlined, for the
116/// given DebugLoc. Return NULL if not found.
117LexicalScope *LexicalScopes::findLexicalScope(DebugLoc DL) {
Craig Topperc0196b12014-04-14 00:51:57 +0000118 MDNode *Scope = nullptr;
119 MDNode *IA = nullptr;
Devang Patele1649c32011-08-10 19:04:06 +0000120 DL.getScopeAndInlinedAt(Scope, IA, MF->getFunction()->getContext());
Eric Christopher6211e4b2013-11-20 00:54:19 +0000121 if (!Scope)
Craig Topperc0196b12014-04-14 00:51:57 +0000122 return nullptr;
Eric Christopher6647b832011-10-11 22:59:11 +0000123
124 // The scope that we were created with could have an extra file - which
125 // isn't what we care about in this case.
126 DIDescriptor D = DIDescriptor(Scope);
127 if (D.isLexicalBlockFile())
128 Scope = DILexicalBlockFile(Scope).getScope();
Eric Christopher6211e4b2013-11-20 00:54:19 +0000129
David Blaikie9b8c8cd2014-05-14 01:08:28 +0000130 if (IA) {
131 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.
139LexicalScope *LexicalScopes::getOrCreateLexicalScope(DebugLoc DL) {
Craig Topperc0196b12014-04-14 00:51:57 +0000140 MDNode *Scope = nullptr;
141 MDNode *InlinedAt = nullptr;
Devang Patele1649c32011-08-10 19:04:06 +0000142 DL.getScopeAndInlinedAt(Scope, InlinedAt, MF->getFunction()->getContext());
Eric Christopher6647b832011-10-11 22:59:11 +0000143
Devang Patele1649c32011-08-10 19:04:06 +0000144 if (InlinedAt) {
145 // Create an abstract scope for inlined function.
146 getOrCreateAbstractScope(Scope);
147 // Create an inlined scope for inlined function.
148 return getOrCreateInlinedScope(Scope, InlinedAt);
149 }
Eric Christopher6211e4b2013-11-20 00:54:19 +0000150
Devang Patele1649c32011-08-10 19:04:06 +0000151 return getOrCreateRegularScope(Scope);
152}
153
154/// getOrCreateRegularScope - Find or create a regular lexical scope.
155LexicalScope *LexicalScopes::getOrCreateRegularScope(MDNode *Scope) {
Eric Christopher6647b832011-10-11 22:59:11 +0000156 DIDescriptor D = DIDescriptor(Scope);
Eric Christopher76933f42011-10-13 21:43:44 +0000157 if (D.isLexicalBlockFile()) {
Eric Christopher6647b832011-10-11 22:59:11 +0000158 Scope = DILexicalBlockFile(Scope).getScope();
Eric Christopher76933f42011-10-13 21:43:44 +0000159 D = DIDescriptor(Scope);
160 }
Eric Christopher6211e4b2013-11-20 00:54:19 +0000161
David Blaikie2f143e02014-05-08 22:24:51 +0000162 auto I = LexicalScopeMap.find(Scope);
163 if (I != LexicalScopeMap.end())
164 return &I->second;
Devang Patele1649c32011-08-10 19:04:06 +0000165
Craig Topperc0196b12014-04-14 00:51:57 +0000166 LexicalScope *Parent = nullptr;
Eric Christopher6647b832011-10-11 22:59:11 +0000167 if (D.isLexicalBlock())
Devang Patele1649c32011-08-10 19:04:06 +0000168 Parent = getOrCreateLexicalScope(DebugLoc::getFromDILexicalBlock(Scope));
David Blaikie2f143e02014-05-08 22:24:51 +0000169 // FIXME: Use forward_as_tuple instead of make_tuple, once MSVC2012
170 // compatibility is no longer required.
171 I = LexicalScopeMap.emplace(std::piecewise_construct, std::make_tuple(Scope),
172 std::make_tuple(Parent, DIDescriptor(Scope),
173 nullptr, false)).first;
174
Eric Christopher6211e4b2013-11-20 00:54:19 +0000175 if (!Parent && DIDescriptor(Scope).isSubprogram() &&
176 DISubprogram(Scope).describes(MF->getFunction()))
David Blaikie2f143e02014-05-08 22:24:51 +0000177 CurrentFnLexicalScope = &I->second;
Eric Christopher6211e4b2013-11-20 00:54:19 +0000178
David Blaikie2f143e02014-05-08 22:24:51 +0000179 return &I->second;
Devang Patele1649c32011-08-10 19:04:06 +0000180}
181
182/// getOrCreateInlinedScope - Find or create an inlined lexical scope.
David Blaikie9b8c8cd2014-05-14 01:08:28 +0000183LexicalScope *LexicalScopes::getOrCreateInlinedScope(MDNode *ScopeNode,
Devang Patele1649c32011-08-10 19:04:06 +0000184 MDNode *InlinedAt) {
David Blaikie9b8c8cd2014-05-14 01:08:28 +0000185 std::pair<const MDNode*, const MDNode*> P(ScopeNode, InlinedAt);
186 auto I = InlinedLexicalScopeMap.find(P);
187 if (I != InlinedLexicalScopeMap.end())
David Blaikie2f143e02014-05-08 22:24:51 +0000188 return &I->second;
Devang Patele1649c32011-08-10 19:04:06 +0000189
David Blaikie9b8c8cd2014-05-14 01:08:28 +0000190 LexicalScope *Parent;
191 DILexicalBlock Scope(ScopeNode);
192 if (Scope.isSubprogram())
193 Parent = getOrCreateLexicalScope(DebugLoc::getFromDILocation(InlinedAt));
194 else
195 Parent = getOrCreateInlinedScope(Scope.getContext(), InlinedAt);
196
David Blaikie2f143e02014-05-08 22:24:51 +0000197 // FIXME: Use forward_as_tuple instead of make_tuple, once MSVC2012
198 // compatibility is no longer required.
David Blaikie9b8c8cd2014-05-14 01:08:28 +0000199 I = InlinedLexicalScopeMap.emplace(std::piecewise_construct,
200 std::make_tuple(P),
201 std::make_tuple(Parent, Scope, InlinedAt,
202 false)).first;
David Blaikie2f143e02014-05-08 22:24:51 +0000203 return &I->second;
Devang Patele1649c32011-08-10 19:04:06 +0000204}
205
206/// getOrCreateAbstractScope - Find or create an abstract lexical scope.
207LexicalScope *LexicalScopes::getOrCreateAbstractScope(const MDNode *N) {
208 assert(N && "Invalid Scope encoding!");
209
Eric Christopher6647b832011-10-11 22:59:11 +0000210 DIDescriptor Scope(N);
211 if (Scope.isLexicalBlockFile())
212 Scope = DILexicalBlockFile(Scope).getScope();
David Blaikieea862262014-05-25 18:11:35 +0000213 auto I = AbstractScopeMap.find(Scope);
David Blaikie2f143e02014-05-08 22:24:51 +0000214 if (I != AbstractScopeMap.end())
215 return &I->second;
Devang Patele1649c32011-08-10 19:04:06 +0000216
Craig Topperc0196b12014-04-14 00:51:57 +0000217 LexicalScope *Parent = nullptr;
Devang Patele1649c32011-08-10 19:04:06 +0000218 if (Scope.isLexicalBlock()) {
David Blaikieea862262014-05-25 18:11:35 +0000219 DILexicalBlock DB(Scope);
Devang Patele1649c32011-08-10 19:04:06 +0000220 DIDescriptor ParentDesc = DB.getContext();
221 Parent = getOrCreateAbstractScope(ParentDesc);
222 }
David Blaikie2f143e02014-05-08 22:24:51 +0000223 I = AbstractScopeMap.emplace(std::piecewise_construct,
David Blaikieea862262014-05-25 18:11:35 +0000224 std::forward_as_tuple(Scope),
225 std::forward_as_tuple(Parent, Scope,
David Blaikie2f143e02014-05-08 22:24:51 +0000226 nullptr, true)).first;
David Blaikieea862262014-05-25 18:11:35 +0000227 if (Scope.isSubprogram())
David Blaikie2f143e02014-05-08 22:24:51 +0000228 AbstractScopesList.push_back(&I->second);
229 return &I->second;
Devang Patele1649c32011-08-10 19:04:06 +0000230}
231
232/// constructScopeNest
233void LexicalScopes::constructScopeNest(LexicalScope *Scope) {
Eric Christopher6211e4b2013-11-20 00:54:19 +0000234 assert(Scope && "Unable to calculate scope dominance graph!");
Devang Patele1649c32011-08-10 19:04:06 +0000235 SmallVector<LexicalScope *, 4> WorkStack;
236 WorkStack.push_back(Scope);
237 unsigned Counter = 0;
238 while (!WorkStack.empty()) {
239 LexicalScope *WS = WorkStack.back();
Craig Topper80170e52013-07-03 04:30:58 +0000240 const SmallVectorImpl<LexicalScope *> &Children = WS->getChildren();
Devang Patele1649c32011-08-10 19:04:06 +0000241 bool visitedChildren = false;
Craig Topper24fd7ee2013-07-03 04:42:33 +0000242 for (SmallVectorImpl<LexicalScope *>::const_iterator SI = Children.begin(),
Eric Christopher6211e4b2013-11-20 00:54:19 +0000243 SE = Children.end();
244 SI != SE; ++SI) {
Devang Patele1649c32011-08-10 19:04:06 +0000245 LexicalScope *ChildScope = *SI;
246 if (!ChildScope->getDFSOut()) {
247 WorkStack.push_back(ChildScope);
248 visitedChildren = true;
249 ChildScope->setDFSIn(++Counter);
250 break;
251 }
252 }
253 if (!visitedChildren) {
254 WorkStack.pop_back();
255 WS->setDFSOut(++Counter);
256 }
257 }
258}
259
Devang Patel784077e2011-08-10 23:58:09 +0000260/// assignInstructionRanges - Find ranges of instructions covered by each
261/// lexical scope.
Eric Christopher6211e4b2013-11-20 00:54:19 +0000262void LexicalScopes::assignInstructionRanges(
263 SmallVectorImpl<InsnRange> &MIRanges,
264 DenseMap<const MachineInstr *, LexicalScope *> &MI2ScopeMap) {
265
Craig Topperc0196b12014-04-14 00:51:57 +0000266 LexicalScope *PrevLexicalScope = nullptr;
Devang Patele1649c32011-08-10 19:04:06 +0000267 for (SmallVectorImpl<InsnRange>::const_iterator RI = MIRanges.begin(),
Eric Christopher6211e4b2013-11-20 00:54:19 +0000268 RE = MIRanges.end();
269 RI != RE; ++RI) {
Devang Patele1649c32011-08-10 19:04:06 +0000270 const InsnRange &R = *RI;
271 LexicalScope *S = MI2ScopeMap.lookup(R.first);
Eric Christopher6211e4b2013-11-20 00:54:19 +0000272 assert(S && "Lost LexicalScope for a machine instruction!");
Devang Patele1649c32011-08-10 19:04:06 +0000273 if (PrevLexicalScope && !PrevLexicalScope->dominates(S))
274 PrevLexicalScope->closeInsnRange(S);
275 S->openInsnRange(R.first);
276 S->extendInsnRange(R.second);
277 PrevLexicalScope = S;
278 }
279
280 if (PrevLexicalScope)
281 PrevLexicalScope->closeInsnRange();
282}
283
284/// getMachineBasicBlocks - Populate given set using machine basic blocks which
Eric Christopher6211e4b2013-11-20 00:54:19 +0000285/// have machine instructions that belong to lexical scope identified by
Devang Patele1649c32011-08-10 19:04:06 +0000286/// DebugLoc.
Eric Christopher6211e4b2013-11-20 00:54:19 +0000287void LexicalScopes::getMachineBasicBlocks(
288 DebugLoc DL, SmallPtrSet<const MachineBasicBlock *, 4> &MBBs) {
Devang Patele1649c32011-08-10 19:04:06 +0000289 MBBs.clear();
290 LexicalScope *Scope = getOrCreateLexicalScope(DL);
291 if (!Scope)
292 return;
Eric Christopher6211e4b2013-11-20 00:54:19 +0000293
Devang Pateldb4374a2011-08-12 18:01:34 +0000294 if (Scope == CurrentFnLexicalScope) {
Alexey Samsonov41b977d2014-04-30 18:29:51 +0000295 for (const auto &MBB : *MF)
296 MBBs.insert(&MBB);
Devang Pateldb4374a2011-08-12 18:01:34 +0000297 return;
298 }
299
Craig Topper80170e52013-07-03 04:30:58 +0000300 SmallVectorImpl<InsnRange> &InsnRanges = Scope->getRanges();
Craig Topper24fd7ee2013-07-03 04:42:33 +0000301 for (SmallVectorImpl<InsnRange>::iterator I = InsnRanges.begin(),
Eric Christopher6211e4b2013-11-20 00:54:19 +0000302 E = InsnRanges.end();
303 I != E; ++I) {
Devang Patele1649c32011-08-10 19:04:06 +0000304 InsnRange &R = *I;
305 MBBs.insert(R.first->getParent());
306 }
307}
308
309/// dominates - Return true if DebugLoc's lexical scope dominates at least one
310/// machine instruction's lexical scope in a given machine basic block.
311bool LexicalScopes::dominates(DebugLoc DL, MachineBasicBlock *MBB) {
312 LexicalScope *Scope = getOrCreateLexicalScope(DL);
313 if (!Scope)
314 return false;
Devang Pateldb4374a2011-08-12 18:01:34 +0000315
316 // Current function scope covers all basic blocks in the function.
317 if (Scope == CurrentFnLexicalScope && MBB->getParent() == MF)
318 return true;
319
Devang Patele1649c32011-08-10 19:04:06 +0000320 bool Result = false;
Eric Christopher6211e4b2013-11-20 00:54:19 +0000321 for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end(); I != E;
322 ++I) {
Devang Patele1649c32011-08-10 19:04:06 +0000323 DebugLoc IDL = I->getDebugLoc();
324 if (IDL.isUnknown())
325 continue;
326 if (LexicalScope *IScope = getOrCreateLexicalScope(IDL))
327 if (Scope->dominates(IScope))
328 return true;
329 }
330 return Result;
331}
332
Devang Patele1649c32011-08-10 19:04:06 +0000333/// dump - Print data structures.
Manman Rene498b252013-02-02 00:02:03 +0000334void LexicalScope::dump(unsigned Indent) const {
Devang Patele1649c32011-08-10 19:04:06 +0000335#ifndef NDEBUG
336 raw_ostream &err = dbgs();
Manman Rene498b252013-02-02 00:02:03 +0000337 err.indent(Indent);
Devang Patele1649c32011-08-10 19:04:06 +0000338 err << "DFSIn: " << DFSIn << " DFSOut: " << DFSOut << "\n";
339 const MDNode *N = Desc;
Manman Rene498b252013-02-02 00:02:03 +0000340 err.indent(Indent);
Devang Patele1649c32011-08-10 19:04:06 +0000341 N->dump();
342 if (AbstractScope)
Manman Rene498b252013-02-02 00:02:03 +0000343 err << std::string(Indent, ' ') << "Abstract Scope\n";
Devang Patele1649c32011-08-10 19:04:06 +0000344
Devang Patele1649c32011-08-10 19:04:06 +0000345 if (!Children.empty())
Manman Rene498b252013-02-02 00:02:03 +0000346 err << std::string(Indent + 2, ' ') << "Children ...\n";
Devang Patele1649c32011-08-10 19:04:06 +0000347 for (unsigned i = 0, e = Children.size(); i != e; ++i)
348 if (Children[i] != this)
Manman Rene498b252013-02-02 00:02:03 +0000349 Children[i]->dump(Indent + 2);
Devang Patele1649c32011-08-10 19:04:06 +0000350#endif
351}