Devang Patel | 103b8e6 | 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 | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 17 | #include "llvm/CodeGen/LexicalScopes.h" |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/MachineFunction.h" |
| 19 | #include "llvm/CodeGen/MachineInstr.h" |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 20 | #include "llvm/IR/DebugInfo.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 21 | #include "llvm/IR/Function.h" |
Devang Patel | 103b8e6 | 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 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 27 | #define DEBUG_TYPE "lexicalscopes" |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 28 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 29 | /// reset - Reset the instance so that it's prepared for another function. |
| 30 | void LexicalScopes::reset() { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 31 | MF = nullptr; |
| 32 | CurrentFnLexicalScope = nullptr; |
| 33 | LexicalScopeMap.clear(); |
| 34 | AbstractScopeMap.clear(); |
Devang Patel | 103b8e6 | 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) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 41 | reset(); |
Devang Patel | 103b8e6 | 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. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 54 | void LexicalScopes::extractLexicalScopes( |
| 55 | SmallVectorImpl<InsnRange> &MIRanges, |
| 56 | DenseMap<const MachineInstr *, LexicalScope *> &MI2ScopeMap) { |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 57 | |
| 58 | // Scan each instruction and create scopes. First build working set of scopes. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 59 | for (const auto &MBB : *MF) { |
| 60 | const MachineInstr *RangeBeginMI = nullptr; |
| 61 | const MachineInstr *PrevMI = nullptr; |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 62 | DebugLoc PrevDL; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 63 | for (const auto &MInsn : MBB) { |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 64 | // Check if instruction has valid location information. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 65 | const DebugLoc MIDL = MInsn.getDebugLoc(); |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 66 | if (MIDL.isUnknown()) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 67 | PrevMI = &MInsn; |
Devang Patel | 103b8e6 | 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) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 73 | PrevMI = &MInsn; |
Devang Patel | 103b8e6 | 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. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 78 | if (MInsn.isDebugValue()) |
Devang Patel | 103b8e6 | 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. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 91 | RangeBeginMI = &MInsn; |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 92 | |
| 93 | // Reset previous markers. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 94 | PrevMI = &MInsn; |
Devang Patel | 103b8e6 | 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 | |
| 107 | /// findLexicalScope - Find lexical scope, either regular or inlined, for the |
| 108 | /// given DebugLoc. Return NULL if not found. |
| 109 | LexicalScope *LexicalScopes::findLexicalScope(DebugLoc DL) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 110 | MDNode *Scope = nullptr; |
| 111 | MDNode *IA = nullptr; |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 112 | DL.getScopeAndInlinedAt(Scope, IA, MF->getFunction()->getContext()); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 113 | if (!Scope) |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 114 | return nullptr; |
Eric Christopher | 6618a24 | 2011-10-11 22:59:11 +0000 | [diff] [blame] | 115 | |
| 116 | // The scope that we were created with could have an extra file - which |
| 117 | // isn't what we care about in this case. |
| 118 | DIDescriptor D = DIDescriptor(Scope); |
| 119 | if (D.isLexicalBlockFile()) |
| 120 | Scope = DILexicalBlockFile(Scope).getScope(); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 121 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 122 | if (IA) { |
| 123 | auto I = InlinedLexicalScopeMap.find(std::make_pair(Scope, IA)); |
| 124 | return I != InlinedLexicalScopeMap.end() ? &I->second : nullptr; |
| 125 | } |
| 126 | return findLexicalScope(Scope); |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 127 | } |
| 128 | |
| 129 | /// getOrCreateLexicalScope - Find lexical scope for the given DebugLoc. If |
| 130 | /// not available then create new lexical scope. |
| 131 | LexicalScope *LexicalScopes::getOrCreateLexicalScope(DebugLoc DL) { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 132 | if (DL.isUnknown()) |
| 133 | return nullptr; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 134 | MDNode *Scope = nullptr; |
| 135 | MDNode *InlinedAt = nullptr; |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 136 | DL.getScopeAndInlinedAt(Scope, InlinedAt, MF->getFunction()->getContext()); |
Eric Christopher | 6618a24 | 2011-10-11 22:59:11 +0000 | [diff] [blame] | 137 | |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 138 | if (InlinedAt) { |
| 139 | // Create an abstract scope for inlined function. |
| 140 | getOrCreateAbstractScope(Scope); |
| 141 | // Create an inlined scope for inlined function. |
| 142 | return getOrCreateInlinedScope(Scope, InlinedAt); |
| 143 | } |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 144 | |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 145 | return getOrCreateRegularScope(Scope); |
| 146 | } |
| 147 | |
| 148 | /// getOrCreateRegularScope - Find or create a regular lexical scope. |
| 149 | LexicalScope *LexicalScopes::getOrCreateRegularScope(MDNode *Scope) { |
Eric Christopher | 6618a24 | 2011-10-11 22:59:11 +0000 | [diff] [blame] | 150 | DIDescriptor D = DIDescriptor(Scope); |
Eric Christopher | fe28ef4 | 2011-10-13 21:43:44 +0000 | [diff] [blame] | 151 | if (D.isLexicalBlockFile()) { |
Eric Christopher | 6618a24 | 2011-10-11 22:59:11 +0000 | [diff] [blame] | 152 | Scope = DILexicalBlockFile(Scope).getScope(); |
Eric Christopher | fe28ef4 | 2011-10-13 21:43:44 +0000 | [diff] [blame] | 153 | D = DIDescriptor(Scope); |
| 154 | } |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 155 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 156 | auto I = LexicalScopeMap.find(Scope); |
| 157 | if (I != LexicalScopeMap.end()) |
| 158 | return &I->second; |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 159 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 160 | LexicalScope *Parent = nullptr; |
Eric Christopher | 6618a24 | 2011-10-11 22:59:11 +0000 | [diff] [blame] | 161 | if (D.isLexicalBlock()) |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 162 | Parent = getOrCreateLexicalScope(DebugLoc::getFromDILexicalBlock(Scope)); |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 163 | I = LexicalScopeMap.emplace(std::piecewise_construct, |
| 164 | std::forward_as_tuple(Scope), |
| 165 | std::forward_as_tuple(Parent, DIDescriptor(Scope), |
| 166 | nullptr, false)).first; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 167 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 168 | if (!Parent) { |
| 169 | assert(DIDescriptor(Scope).isSubprogram()); |
| 170 | assert(DISubprogram(Scope).describes(MF->getFunction())); |
| 171 | assert(!CurrentFnLexicalScope); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 172 | CurrentFnLexicalScope = &I->second; |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 173 | } |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 174 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 175 | return &I->second; |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | /// getOrCreateInlinedScope - Find or create an inlined lexical scope. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 179 | LexicalScope *LexicalScopes::getOrCreateInlinedScope(MDNode *ScopeNode, |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 180 | MDNode *InlinedAt) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 181 | std::pair<const MDNode*, const MDNode*> P(ScopeNode, InlinedAt); |
| 182 | auto I = InlinedLexicalScopeMap.find(P); |
| 183 | if (I != InlinedLexicalScopeMap.end()) |
| 184 | return &I->second; |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 185 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 186 | LexicalScope *Parent; |
| 187 | DILexicalBlock Scope(ScopeNode); |
| 188 | if (Scope.isSubprogram()) |
| 189 | Parent = getOrCreateLexicalScope(DebugLoc::getFromDILocation(InlinedAt)); |
| 190 | else |
| 191 | Parent = getOrCreateInlinedScope(Scope.getContext(), InlinedAt); |
| 192 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 193 | I = InlinedLexicalScopeMap.emplace(std::piecewise_construct, |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 194 | std::forward_as_tuple(P), |
| 195 | std::forward_as_tuple(Parent, Scope, |
| 196 | InlinedAt, false)) |
| 197 | .first; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 198 | return &I->second; |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | /// getOrCreateAbstractScope - Find or create an abstract lexical scope. |
| 202 | LexicalScope *LexicalScopes::getOrCreateAbstractScope(const MDNode *N) { |
| 203 | assert(N && "Invalid Scope encoding!"); |
| 204 | |
Eric Christopher | 6618a24 | 2011-10-11 22:59:11 +0000 | [diff] [blame] | 205 | DIDescriptor Scope(N); |
| 206 | if (Scope.isLexicalBlockFile()) |
| 207 | Scope = DILexicalBlockFile(Scope).getScope(); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 208 | auto I = AbstractScopeMap.find(Scope); |
| 209 | if (I != AbstractScopeMap.end()) |
| 210 | return &I->second; |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 211 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 212 | LexicalScope *Parent = nullptr; |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 213 | if (Scope.isLexicalBlock()) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 214 | DILexicalBlock DB(Scope); |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 215 | DIDescriptor ParentDesc = DB.getContext(); |
| 216 | Parent = getOrCreateAbstractScope(ParentDesc); |
| 217 | } |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 218 | I = AbstractScopeMap.emplace(std::piecewise_construct, |
| 219 | std::forward_as_tuple(Scope), |
| 220 | std::forward_as_tuple(Parent, Scope, |
| 221 | nullptr, true)).first; |
| 222 | if (Scope.isSubprogram()) |
| 223 | AbstractScopesList.push_back(&I->second); |
| 224 | return &I->second; |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 225 | } |
| 226 | |
| 227 | /// constructScopeNest |
| 228 | void LexicalScopes::constructScopeNest(LexicalScope *Scope) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 229 | assert(Scope && "Unable to calculate scope dominance graph!"); |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 230 | SmallVector<LexicalScope *, 4> WorkStack; |
| 231 | WorkStack.push_back(Scope); |
| 232 | unsigned Counter = 0; |
| 233 | while (!WorkStack.empty()) { |
| 234 | LexicalScope *WS = WorkStack.back(); |
Craig Topper | 9f4c379 | 2013-07-03 04:30:58 +0000 | [diff] [blame] | 235 | const SmallVectorImpl<LexicalScope *> &Children = WS->getChildren(); |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 236 | bool visitedChildren = false; |
Craig Topper | 40c744e | 2013-07-03 04:42:33 +0000 | [diff] [blame] | 237 | for (SmallVectorImpl<LexicalScope *>::const_iterator SI = Children.begin(), |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 238 | SE = Children.end(); |
| 239 | SI != SE; ++SI) { |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 240 | LexicalScope *ChildScope = *SI; |
| 241 | if (!ChildScope->getDFSOut()) { |
| 242 | WorkStack.push_back(ChildScope); |
| 243 | visitedChildren = true; |
| 244 | ChildScope->setDFSIn(++Counter); |
| 245 | break; |
| 246 | } |
| 247 | } |
| 248 | if (!visitedChildren) { |
| 249 | WorkStack.pop_back(); |
| 250 | WS->setDFSOut(++Counter); |
| 251 | } |
| 252 | } |
| 253 | } |
| 254 | |
Devang Patel | 5bc942c | 2011-08-10 23:58:09 +0000 | [diff] [blame] | 255 | /// assignInstructionRanges - Find ranges of instructions covered by each |
| 256 | /// lexical scope. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 257 | void LexicalScopes::assignInstructionRanges( |
| 258 | SmallVectorImpl<InsnRange> &MIRanges, |
| 259 | DenseMap<const MachineInstr *, LexicalScope *> &MI2ScopeMap) { |
| 260 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 261 | LexicalScope *PrevLexicalScope = nullptr; |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 262 | for (SmallVectorImpl<InsnRange>::const_iterator RI = MIRanges.begin(), |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 263 | RE = MIRanges.end(); |
| 264 | RI != RE; ++RI) { |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 265 | const InsnRange &R = *RI; |
| 266 | LexicalScope *S = MI2ScopeMap.lookup(R.first); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 267 | assert(S && "Lost LexicalScope for a machine instruction!"); |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 268 | if (PrevLexicalScope && !PrevLexicalScope->dominates(S)) |
| 269 | PrevLexicalScope->closeInsnRange(S); |
| 270 | S->openInsnRange(R.first); |
| 271 | S->extendInsnRange(R.second); |
| 272 | PrevLexicalScope = S; |
| 273 | } |
| 274 | |
| 275 | if (PrevLexicalScope) |
| 276 | PrevLexicalScope->closeInsnRange(); |
| 277 | } |
| 278 | |
| 279 | /// getMachineBasicBlocks - Populate given set using machine basic blocks which |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 280 | /// have machine instructions that belong to lexical scope identified by |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 281 | /// DebugLoc. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 282 | void LexicalScopes::getMachineBasicBlocks( |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 283 | DebugLoc DL, SmallPtrSetImpl<const MachineBasicBlock *> &MBBs) { |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 284 | MBBs.clear(); |
| 285 | LexicalScope *Scope = getOrCreateLexicalScope(DL); |
| 286 | if (!Scope) |
| 287 | return; |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 288 | |
Devang Patel | 2e85b1b | 2011-08-12 18:01:34 +0000 | [diff] [blame] | 289 | if (Scope == CurrentFnLexicalScope) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 290 | for (const auto &MBB : *MF) |
| 291 | MBBs.insert(&MBB); |
Devang Patel | 2e85b1b | 2011-08-12 18:01:34 +0000 | [diff] [blame] | 292 | return; |
| 293 | } |
| 294 | |
Craig Topper | 9f4c379 | 2013-07-03 04:30:58 +0000 | [diff] [blame] | 295 | SmallVectorImpl<InsnRange> &InsnRanges = Scope->getRanges(); |
Craig Topper | 40c744e | 2013-07-03 04:42:33 +0000 | [diff] [blame] | 296 | for (SmallVectorImpl<InsnRange>::iterator I = InsnRanges.begin(), |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 297 | E = InsnRanges.end(); |
| 298 | I != E; ++I) { |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 299 | InsnRange &R = *I; |
| 300 | MBBs.insert(R.first->getParent()); |
| 301 | } |
| 302 | } |
| 303 | |
| 304 | /// dominates - Return true if DebugLoc's lexical scope dominates at least one |
| 305 | /// machine instruction's lexical scope in a given machine basic block. |
| 306 | bool LexicalScopes::dominates(DebugLoc DL, MachineBasicBlock *MBB) { |
| 307 | LexicalScope *Scope = getOrCreateLexicalScope(DL); |
| 308 | if (!Scope) |
| 309 | return false; |
Devang Patel | 2e85b1b | 2011-08-12 18:01:34 +0000 | [diff] [blame] | 310 | |
| 311 | // Current function scope covers all basic blocks in the function. |
| 312 | if (Scope == CurrentFnLexicalScope && MBB->getParent() == MF) |
| 313 | return true; |
| 314 | |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 315 | bool Result = false; |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 316 | for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end(); I != E; |
| 317 | ++I) { |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 318 | DebugLoc IDL = I->getDebugLoc(); |
| 319 | if (IDL.isUnknown()) |
| 320 | continue; |
| 321 | if (LexicalScope *IScope = getOrCreateLexicalScope(IDL)) |
| 322 | if (Scope->dominates(IScope)) |
| 323 | return true; |
| 324 | } |
| 325 | return Result; |
| 326 | } |
| 327 | |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 328 | /// dump - Print data structures. |
Manman Ren | 7650d9b | 2013-02-02 00:02:03 +0000 | [diff] [blame] | 329 | void LexicalScope::dump(unsigned Indent) const { |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 330 | #ifndef NDEBUG |
| 331 | raw_ostream &err = dbgs(); |
Manman Ren | 7650d9b | 2013-02-02 00:02:03 +0000 | [diff] [blame] | 332 | err.indent(Indent); |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 333 | err << "DFSIn: " << DFSIn << " DFSOut: " << DFSOut << "\n"; |
| 334 | const MDNode *N = Desc; |
Manman Ren | 7650d9b | 2013-02-02 00:02:03 +0000 | [diff] [blame] | 335 | err.indent(Indent); |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 336 | N->dump(); |
| 337 | if (AbstractScope) |
Manman Ren | 7650d9b | 2013-02-02 00:02:03 +0000 | [diff] [blame] | 338 | err << std::string(Indent, ' ') << "Abstract Scope\n"; |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 339 | |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 340 | if (!Children.empty()) |
Manman Ren | 7650d9b | 2013-02-02 00:02:03 +0000 | [diff] [blame] | 341 | err << std::string(Indent + 2, ' ') << "Children ...\n"; |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 342 | for (unsigned i = 0, e = Children.size(); i != e; ++i) |
| 343 | if (Children[i] != this) |
Manman Ren | 7650d9b | 2013-02-02 00:02:03 +0000 | [diff] [blame] | 344 | Children[i]->dump(Indent + 2); |
Devang Patel | 103b8e6 | 2011-08-10 19:04:06 +0000 | [diff] [blame] | 345 | #endif |
| 346 | } |