Home
last modified time | relevance | path

Searched refs:CurrentFnLexicalScope (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DLexicalScopes.cpp42 CurrentFnLexicalScope = nullptr; in reset()
61 if (CurrentFnLexicalScope) { in initialize()
62 constructScopeNest(CurrentFnLexicalScope); in initialize()
179 assert(!CurrentFnLexicalScope); in getOrCreateRegularScope()
180 CurrentFnLexicalScope = &I->second; in getOrCreateRegularScope()
289 if (Scope == CurrentFnLexicalScope) { in getMachineBasicBlocks()
313 if (Scope == CurrentFnLexicalScope && MBB->getParent() == MF) in dominates()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DLexicalScopes.h153 bool empty() { return CurrentFnLexicalScope == nullptr; } in empty()
157 return CurrentFnLexicalScope; in getCurrentFunctionScope()
249 LexicalScope *CurrentFnLexicalScope = nullptr; variable