Lines Matching refs:CurrentScope

33   CurrentScope = nullptr;  in createElement()
168 CurrentScope = createScope(); in createElement()
169 CurrentScope->setIsCatchBlock(); in createElement()
170 return CurrentScope; in createElement()
172 CurrentScope = createScope(); in createElement()
173 CurrentScope->setIsLexicalBlock(); in createElement()
174 return CurrentScope; in createElement()
176 CurrentScope = createScope(); in createElement()
177 CurrentScope->setIsTryBlock(); in createElement()
178 return CurrentScope; in createElement()
181 CurrentScope = createScopeCompileUnit(); in createElement()
182 CompileUnit = static_cast<LVScopeCompileUnit *>(CurrentScope); in createElement()
183 return CurrentScope; in createElement()
185 CurrentScope = createScopeFunctionInlined(); in createElement()
186 return CurrentScope; in createElement()
188 CurrentScope = createScopeNamespace(); in createElement()
189 return CurrentScope; in createElement()
191 CurrentScope = createScopeAlias(); in createElement()
192 return CurrentScope; in createElement()
194 CurrentScope = createScopeArray(); in createElement()
195 return CurrentScope; in createElement()
198 CurrentScope = createScopeFunction(); in createElement()
199 CurrentScope->setIsCallSite(); in createElement()
200 return CurrentScope; in createElement()
202 CurrentScope = createScopeFunction(); in createElement()
203 CurrentScope->setIsEntryPoint(); in createElement()
204 return CurrentScope; in createElement()
206 CurrentScope = createScopeFunction(); in createElement()
207 CurrentScope->setIsSubprogram(); in createElement()
208 return CurrentScope; in createElement()
210 CurrentScope = createScopeFunctionType(); in createElement()
211 return CurrentScope; in createElement()
213 CurrentScope = createScopeFunction(); in createElement()
214 CurrentScope->setIsLabel(); in createElement()
215 return CurrentScope; in createElement()
217 CurrentScope = createScopeAggregate(); in createElement()
218 CurrentScope->setIsClass(); in createElement()
219 return CurrentScope; in createElement()
221 CurrentScope = createScopeAggregate(); in createElement()
222 CurrentScope->setIsStructure(); in createElement()
223 return CurrentScope; in createElement()
225 CurrentScope = createScopeAggregate(); in createElement()
226 CurrentScope->setIsUnion(); in createElement()
227 return CurrentScope; in createElement()
229 CurrentScope = createScopeEnumeration(); in createElement()
230 return CurrentScope; in createElement()
232 CurrentScope = createScopeFormalPack(); in createElement()
233 return CurrentScope; in createElement()
235 CurrentScope = createScopeTemplatePack(); in createElement()
236 return CurrentScope; in createElement()
470 CurrentScope->addObject(Range.LowPC, Range.HighPC); in processOneAttribute()
537 return CurrentScope; in processOneDie()
571 if (CurrentScope) in processOneDie()
572 Parent->addElement(CurrentScope); in processOneDie()
606 if (CurrentScope) { in processOneDie()
607 if (CurrentScope->getCanHaveRanges()) { in processOneDie()
610 bool IsCompileUnit = CurrentScope->getIsCompileUnit(); in processOneDie()
612 CurrentScope->addObject(CurrentLowPC, CurrentHighPC); in processOneDie()
617 CurrentScope->getIsFunction() && in processOneDie()
618 !CurrentScope->getIsInlinedFunction()) in processOneDie()
619 CompileUnit->addPublicName(CurrentScope, CurrentLowPC, in processOneDie()
627 if (CurrentScope->getHasRanges() && in processOneDie()
628 !CurrentScope->getLinkageNameIndex() && in processOneDie()
629 CurrentScope->getHasReferenceSpecification()) { in processOneDie()
636 CurrentScope->setLinkageName(Name); in processOneDie()
643 LVSectionIndex SectionIndex = updateSymbolTable(CurrentScope); in processOneDie()
644 if (CurrentScope->getIsComdat()) in processOneDie()
651 addSectionRange(SectionIndex, CurrentScope, Range.first, in processOneDie()
657 addSectionRange(SectionIndex, CurrentScope, CurrentLowPC, in processOneDie()
664 CurrentScope->setIsMember(); in processOneDie()
676 return CurrentScope; in processOneDie()