Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 1 | //===- 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 Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 17 | #include "llvm/CodeGen/LexicalScopes.h" |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/MachineFunction.h" |
| 19 | #include "llvm/CodeGen/MachineInstr.h" |
Chandler Carruth | 9a4c9e5 | 2014-03-06 00:46:21 +0000 | [diff] [blame] | 20 | #include "llvm/IR/DebugInfo.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 21 | #include "llvm/IR/Function.h" |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 22 | #include "llvm/Support/Debug.h" |
| 23 | #include "llvm/Support/ErrorHandling.h" |
| 24 | #include "llvm/Support/FormattedStream.h" |
| 25 | using namespace llvm; |
| 26 | |
Chandler Carruth | 1b9dde0 | 2014-04-22 02:02:50 +0000 | [diff] [blame] | 27 | #define DEBUG_TYPE "lexicalscopes" |
| 28 | |
Eric Christopher | b7dee8a | 2013-11-20 00:54:28 +0000 | [diff] [blame] | 29 | /// reset - Reset the instance so that it's prepared for another function. |
| 30 | void LexicalScopes::reset() { |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 31 | MF = nullptr; |
| 32 | CurrentFnLexicalScope = nullptr; |
David Blaikie | 2f143e0 | 2014-05-08 22:24:51 +0000 | [diff] [blame] | 33 | LexicalScopeMap.clear(); |
| 34 | AbstractScopeMap.clear(); |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 35 | InlinedLexicalScopeMap.clear(); |
| 36 | AbstractScopesList.clear(); |
| 37 | } |
| 38 | |
| 39 | /// initialize - Scan machine function and constuct lexical scope nest. |
| 40 | void LexicalScopes::initialize(const MachineFunction &Fn) { |
Eric Christopher | b7dee8a | 2013-11-20 00:54:28 +0000 | [diff] [blame] | 41 | reset(); |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 42 | 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 Christopher | 6211e4b | 2013-11-20 00:54:19 +0000 | [diff] [blame] | 54 | void LexicalScopes::extractLexicalScopes( |
| 55 | SmallVectorImpl<InsnRange> &MIRanges, |
| 56 | DenseMap<const MachineInstr *, LexicalScope *> &MI2ScopeMap) { |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 57 | |
| 58 | // Scan each instruction and create scopes. First build working set of scopes. |
Alexey Samsonov | 41b977d | 2014-04-30 18:29:51 +0000 | [diff] [blame] | 59 | for (const auto &MBB : *MF) { |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 60 | const MachineInstr *RangeBeginMI = nullptr; |
| 61 | const MachineInstr *PrevMI = nullptr; |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 62 | DebugLoc PrevDL; |
Alexey Samsonov | f74bde6 | 2014-04-30 22:17:38 +0000 | [diff] [blame] | 63 | for (const auto &MInsn : MBB) { |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 64 | // Check if instruction has valid location information. |
Alexey Samsonov | f74bde6 | 2014-04-30 22:17:38 +0000 | [diff] [blame] | 65 | const DebugLoc MIDL = MInsn.getDebugLoc(); |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 66 | if (MIDL.isUnknown()) { |
Alexey Samsonov | f74bde6 | 2014-04-30 22:17:38 +0000 | [diff] [blame] | 67 | PrevMI = &MInsn; |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 68 | continue; |
| 69 | } |
| 70 | |
| 71 | // If scope has not changed then skip this instruction. |
| 72 | if (MIDL == PrevDL) { |
Alexey Samsonov | f74bde6 | 2014-04-30 22:17:38 +0000 | [diff] [blame] | 73 | PrevMI = &MInsn; |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 74 | continue; |
| 75 | } |
| 76 | |
| 77 | // Ignore DBG_VALUE. It does not contribute to any instruction in output. |
Alexey Samsonov | f74bde6 | 2014-04-30 22:17:38 +0000 | [diff] [blame] | 78 | if (MInsn.isDebugValue()) |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 79 | 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 Samsonov | f74bde6 | 2014-04-30 22:17:38 +0000 | [diff] [blame] | 91 | RangeBeginMI = &MInsn; |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 92 | |
| 93 | // Reset previous markers. |
Alexey Samsonov | f74bde6 | 2014-04-30 22:17:38 +0000 | [diff] [blame] | 94 | PrevMI = &MInsn; |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 95 | 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 Blaikie | 9b8c8cd | 2014-05-14 01:08:28 +0000 | [diff] [blame] | 107 | LexicalScope *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 Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 115 | /// findLexicalScope - Find lexical scope, either regular or inlined, for the |
| 116 | /// given DebugLoc. Return NULL if not found. |
| 117 | LexicalScope *LexicalScopes::findLexicalScope(DebugLoc DL) { |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 118 | MDNode *Scope = nullptr; |
| 119 | MDNode *IA = nullptr; |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 120 | DL.getScopeAndInlinedAt(Scope, IA, MF->getFunction()->getContext()); |
Eric Christopher | 6211e4b | 2013-11-20 00:54:19 +0000 | [diff] [blame] | 121 | if (!Scope) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 122 | return nullptr; |
Eric Christopher | 6647b83 | 2011-10-11 22:59:11 +0000 | [diff] [blame] | 123 | |
| 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 Christopher | 6211e4b | 2013-11-20 00:54:19 +0000 | [diff] [blame] | 129 | |
David Blaikie | 9b8c8cd | 2014-05-14 01:08:28 +0000 | [diff] [blame] | 130 | if (IA) { |
| 131 | auto I = InlinedLexicalScopeMap.find(std::make_pair(Scope, IA)); |
| 132 | return I != InlinedLexicalScopeMap.end() ? &I->second : nullptr; |
| 133 | } |
David Blaikie | 2f143e0 | 2014-05-08 22:24:51 +0000 | [diff] [blame] | 134 | return findLexicalScope(Scope); |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | /// getOrCreateLexicalScope - Find lexical scope for the given DebugLoc. If |
| 138 | /// not available then create new lexical scope. |
| 139 | LexicalScope *LexicalScopes::getOrCreateLexicalScope(DebugLoc DL) { |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 140 | MDNode *Scope = nullptr; |
| 141 | MDNode *InlinedAt = nullptr; |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 142 | DL.getScopeAndInlinedAt(Scope, InlinedAt, MF->getFunction()->getContext()); |
Eric Christopher | 6647b83 | 2011-10-11 22:59:11 +0000 | [diff] [blame] | 143 | |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 144 | 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 Christopher | 6211e4b | 2013-11-20 00:54:19 +0000 | [diff] [blame] | 150 | |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 151 | return getOrCreateRegularScope(Scope); |
| 152 | } |
| 153 | |
| 154 | /// getOrCreateRegularScope - Find or create a regular lexical scope. |
| 155 | LexicalScope *LexicalScopes::getOrCreateRegularScope(MDNode *Scope) { |
Eric Christopher | 6647b83 | 2011-10-11 22:59:11 +0000 | [diff] [blame] | 156 | DIDescriptor D = DIDescriptor(Scope); |
Eric Christopher | 76933f4 | 2011-10-13 21:43:44 +0000 | [diff] [blame] | 157 | if (D.isLexicalBlockFile()) { |
Eric Christopher | 6647b83 | 2011-10-11 22:59:11 +0000 | [diff] [blame] | 158 | Scope = DILexicalBlockFile(Scope).getScope(); |
Eric Christopher | 76933f4 | 2011-10-13 21:43:44 +0000 | [diff] [blame] | 159 | D = DIDescriptor(Scope); |
| 160 | } |
Eric Christopher | 6211e4b | 2013-11-20 00:54:19 +0000 | [diff] [blame] | 161 | |
David Blaikie | 2f143e0 | 2014-05-08 22:24:51 +0000 | [diff] [blame] | 162 | auto I = LexicalScopeMap.find(Scope); |
| 163 | if (I != LexicalScopeMap.end()) |
| 164 | return &I->second; |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 165 | |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 166 | LexicalScope *Parent = nullptr; |
Eric Christopher | 6647b83 | 2011-10-11 22:59:11 +0000 | [diff] [blame] | 167 | if (D.isLexicalBlock()) |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 168 | Parent = getOrCreateLexicalScope(DebugLoc::getFromDILexicalBlock(Scope)); |
David Blaikie | 2f143e0 | 2014-05-08 22:24:51 +0000 | [diff] [blame] | 169 | // 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 Christopher | 6211e4b | 2013-11-20 00:54:19 +0000 | [diff] [blame] | 175 | if (!Parent && DIDescriptor(Scope).isSubprogram() && |
| 176 | DISubprogram(Scope).describes(MF->getFunction())) |
David Blaikie | 2f143e0 | 2014-05-08 22:24:51 +0000 | [diff] [blame] | 177 | CurrentFnLexicalScope = &I->second; |
Eric Christopher | 6211e4b | 2013-11-20 00:54:19 +0000 | [diff] [blame] | 178 | |
David Blaikie | 2f143e0 | 2014-05-08 22:24:51 +0000 | [diff] [blame] | 179 | return &I->second; |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 180 | } |
| 181 | |
| 182 | /// getOrCreateInlinedScope - Find or create an inlined lexical scope. |
David Blaikie | 9b8c8cd | 2014-05-14 01:08:28 +0000 | [diff] [blame] | 183 | LexicalScope *LexicalScopes::getOrCreateInlinedScope(MDNode *ScopeNode, |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 184 | MDNode *InlinedAt) { |
David Blaikie | 9b8c8cd | 2014-05-14 01:08:28 +0000 | [diff] [blame] | 185 | std::pair<const MDNode*, const MDNode*> P(ScopeNode, InlinedAt); |
| 186 | auto I = InlinedLexicalScopeMap.find(P); |
| 187 | if (I != InlinedLexicalScopeMap.end()) |
David Blaikie | 2f143e0 | 2014-05-08 22:24:51 +0000 | [diff] [blame] | 188 | return &I->second; |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 189 | |
David Blaikie | 9b8c8cd | 2014-05-14 01:08:28 +0000 | [diff] [blame] | 190 | 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 Blaikie | 2f143e0 | 2014-05-08 22:24:51 +0000 | [diff] [blame] | 197 | // FIXME: Use forward_as_tuple instead of make_tuple, once MSVC2012 |
| 198 | // compatibility is no longer required. |
David Blaikie | 9b8c8cd | 2014-05-14 01:08:28 +0000 | [diff] [blame] | 199 | I = InlinedLexicalScopeMap.emplace(std::piecewise_construct, |
| 200 | std::make_tuple(P), |
| 201 | std::make_tuple(Parent, Scope, InlinedAt, |
| 202 | false)).first; |
David Blaikie | 2f143e0 | 2014-05-08 22:24:51 +0000 | [diff] [blame] | 203 | return &I->second; |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 204 | } |
| 205 | |
| 206 | /// getOrCreateAbstractScope - Find or create an abstract lexical scope. |
| 207 | LexicalScope *LexicalScopes::getOrCreateAbstractScope(const MDNode *N) { |
| 208 | assert(N && "Invalid Scope encoding!"); |
| 209 | |
Eric Christopher | 6647b83 | 2011-10-11 22:59:11 +0000 | [diff] [blame] | 210 | DIDescriptor Scope(N); |
| 211 | if (Scope.isLexicalBlockFile()) |
| 212 | Scope = DILexicalBlockFile(Scope).getScope(); |
David Blaikie | ea86226 | 2014-05-25 18:11:35 +0000 | [diff] [blame^] | 213 | auto I = AbstractScopeMap.find(Scope); |
David Blaikie | 2f143e0 | 2014-05-08 22:24:51 +0000 | [diff] [blame] | 214 | if (I != AbstractScopeMap.end()) |
| 215 | return &I->second; |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 216 | |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 217 | LexicalScope *Parent = nullptr; |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 218 | if (Scope.isLexicalBlock()) { |
David Blaikie | ea86226 | 2014-05-25 18:11:35 +0000 | [diff] [blame^] | 219 | DILexicalBlock DB(Scope); |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 220 | DIDescriptor ParentDesc = DB.getContext(); |
| 221 | Parent = getOrCreateAbstractScope(ParentDesc); |
| 222 | } |
David Blaikie | 2f143e0 | 2014-05-08 22:24:51 +0000 | [diff] [blame] | 223 | I = AbstractScopeMap.emplace(std::piecewise_construct, |
David Blaikie | ea86226 | 2014-05-25 18:11:35 +0000 | [diff] [blame^] | 224 | std::forward_as_tuple(Scope), |
| 225 | std::forward_as_tuple(Parent, Scope, |
David Blaikie | 2f143e0 | 2014-05-08 22:24:51 +0000 | [diff] [blame] | 226 | nullptr, true)).first; |
David Blaikie | ea86226 | 2014-05-25 18:11:35 +0000 | [diff] [blame^] | 227 | if (Scope.isSubprogram()) |
David Blaikie | 2f143e0 | 2014-05-08 22:24:51 +0000 | [diff] [blame] | 228 | AbstractScopesList.push_back(&I->second); |
| 229 | return &I->second; |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 230 | } |
| 231 | |
| 232 | /// constructScopeNest |
| 233 | void LexicalScopes::constructScopeNest(LexicalScope *Scope) { |
Eric Christopher | 6211e4b | 2013-11-20 00:54:19 +0000 | [diff] [blame] | 234 | assert(Scope && "Unable to calculate scope dominance graph!"); |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 235 | SmallVector<LexicalScope *, 4> WorkStack; |
| 236 | WorkStack.push_back(Scope); |
| 237 | unsigned Counter = 0; |
| 238 | while (!WorkStack.empty()) { |
| 239 | LexicalScope *WS = WorkStack.back(); |
Craig Topper | 80170e5 | 2013-07-03 04:30:58 +0000 | [diff] [blame] | 240 | const SmallVectorImpl<LexicalScope *> &Children = WS->getChildren(); |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 241 | bool visitedChildren = false; |
Craig Topper | 24fd7ee | 2013-07-03 04:42:33 +0000 | [diff] [blame] | 242 | for (SmallVectorImpl<LexicalScope *>::const_iterator SI = Children.begin(), |
Eric Christopher | 6211e4b | 2013-11-20 00:54:19 +0000 | [diff] [blame] | 243 | SE = Children.end(); |
| 244 | SI != SE; ++SI) { |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 245 | 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 Patel | 784077e | 2011-08-10 23:58:09 +0000 | [diff] [blame] | 260 | /// assignInstructionRanges - Find ranges of instructions covered by each |
| 261 | /// lexical scope. |
Eric Christopher | 6211e4b | 2013-11-20 00:54:19 +0000 | [diff] [blame] | 262 | void LexicalScopes::assignInstructionRanges( |
| 263 | SmallVectorImpl<InsnRange> &MIRanges, |
| 264 | DenseMap<const MachineInstr *, LexicalScope *> &MI2ScopeMap) { |
| 265 | |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 266 | LexicalScope *PrevLexicalScope = nullptr; |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 267 | for (SmallVectorImpl<InsnRange>::const_iterator RI = MIRanges.begin(), |
Eric Christopher | 6211e4b | 2013-11-20 00:54:19 +0000 | [diff] [blame] | 268 | RE = MIRanges.end(); |
| 269 | RI != RE; ++RI) { |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 270 | const InsnRange &R = *RI; |
| 271 | LexicalScope *S = MI2ScopeMap.lookup(R.first); |
Eric Christopher | 6211e4b | 2013-11-20 00:54:19 +0000 | [diff] [blame] | 272 | assert(S && "Lost LexicalScope for a machine instruction!"); |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 273 | 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 Christopher | 6211e4b | 2013-11-20 00:54:19 +0000 | [diff] [blame] | 285 | /// have machine instructions that belong to lexical scope identified by |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 286 | /// DebugLoc. |
Eric Christopher | 6211e4b | 2013-11-20 00:54:19 +0000 | [diff] [blame] | 287 | void LexicalScopes::getMachineBasicBlocks( |
| 288 | DebugLoc DL, SmallPtrSet<const MachineBasicBlock *, 4> &MBBs) { |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 289 | MBBs.clear(); |
| 290 | LexicalScope *Scope = getOrCreateLexicalScope(DL); |
| 291 | if (!Scope) |
| 292 | return; |
Eric Christopher | 6211e4b | 2013-11-20 00:54:19 +0000 | [diff] [blame] | 293 | |
Devang Patel | db4374a | 2011-08-12 18:01:34 +0000 | [diff] [blame] | 294 | if (Scope == CurrentFnLexicalScope) { |
Alexey Samsonov | 41b977d | 2014-04-30 18:29:51 +0000 | [diff] [blame] | 295 | for (const auto &MBB : *MF) |
| 296 | MBBs.insert(&MBB); |
Devang Patel | db4374a | 2011-08-12 18:01:34 +0000 | [diff] [blame] | 297 | return; |
| 298 | } |
| 299 | |
Craig Topper | 80170e5 | 2013-07-03 04:30:58 +0000 | [diff] [blame] | 300 | SmallVectorImpl<InsnRange> &InsnRanges = Scope->getRanges(); |
Craig Topper | 24fd7ee | 2013-07-03 04:42:33 +0000 | [diff] [blame] | 301 | for (SmallVectorImpl<InsnRange>::iterator I = InsnRanges.begin(), |
Eric Christopher | 6211e4b | 2013-11-20 00:54:19 +0000 | [diff] [blame] | 302 | E = InsnRanges.end(); |
| 303 | I != E; ++I) { |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 304 | 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. |
| 311 | bool LexicalScopes::dominates(DebugLoc DL, MachineBasicBlock *MBB) { |
| 312 | LexicalScope *Scope = getOrCreateLexicalScope(DL); |
| 313 | if (!Scope) |
| 314 | return false; |
Devang Patel | db4374a | 2011-08-12 18:01:34 +0000 | [diff] [blame] | 315 | |
| 316 | // Current function scope covers all basic blocks in the function. |
| 317 | if (Scope == CurrentFnLexicalScope && MBB->getParent() == MF) |
| 318 | return true; |
| 319 | |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 320 | bool Result = false; |
Eric Christopher | 6211e4b | 2013-11-20 00:54:19 +0000 | [diff] [blame] | 321 | for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end(); I != E; |
| 322 | ++I) { |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 323 | 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 Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 333 | /// dump - Print data structures. |
Manman Ren | e498b25 | 2013-02-02 00:02:03 +0000 | [diff] [blame] | 334 | void LexicalScope::dump(unsigned Indent) const { |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 335 | #ifndef NDEBUG |
| 336 | raw_ostream &err = dbgs(); |
Manman Ren | e498b25 | 2013-02-02 00:02:03 +0000 | [diff] [blame] | 337 | err.indent(Indent); |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 338 | err << "DFSIn: " << DFSIn << " DFSOut: " << DFSOut << "\n"; |
| 339 | const MDNode *N = Desc; |
Manman Ren | e498b25 | 2013-02-02 00:02:03 +0000 | [diff] [blame] | 340 | err.indent(Indent); |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 341 | N->dump(); |
| 342 | if (AbstractScope) |
Manman Ren | e498b25 | 2013-02-02 00:02:03 +0000 | [diff] [blame] | 343 | err << std::string(Indent, ' ') << "Abstract Scope\n"; |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 344 | |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 345 | if (!Children.empty()) |
Manman Ren | e498b25 | 2013-02-02 00:02:03 +0000 | [diff] [blame] | 346 | err << std::string(Indent + 2, ' ') << "Children ...\n"; |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 347 | for (unsigned i = 0, e = Children.size(); i != e; ++i) |
| 348 | if (Children[i] != this) |
Manman Ren | e498b25 | 2013-02-02 00:02:03 +0000 | [diff] [blame] | 349 | Children[i]->dump(Indent + 2); |
Devang Patel | e1649c3 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 350 | #endif |
| 351 | } |