Home | History | Annotate | Download | only in VMCore

Lines Matching refs:ScopeRecords

23     // Positive ScopeIdx is an index into ScopeRecords, which has no inlined-at
25 assert(unsigned(ScopeIdx) <= Ctx.pImpl->ScopeRecords.size() &&
27 return Ctx.pImpl->ScopeRecords[ScopeIdx-1].get();
37 // Positive ScopeIdx is an index into ScopeRecords, which has no inlined-at
56 // Positive ScopeIdx is an index into ScopeRecords, which has no inlined-at
58 assert(unsigned(ScopeIdx) <= Ctx.pImpl->ScopeRecords.size() &&
60 Scope = Ctx.pImpl->ScopeRecords[ScopeIdx-1].get();
87 // If there is no inlined-at location, use the ScopeRecords array.
199 // Start out ScopeRecords with a minimal reasonable size to avoid
201 if (ScopeRecords.empty())
202 ScopeRecords.reserve(128);
205 Idx = ScopeRecords.size()+1;
206 ScopeRecords.push_back(DebugRecVH(Scope, this, Idx));
249 // If the index is positive, it is an entry in ScopeRecords.
298 // If the index is positive, it is an entry in ScopeRecords.