Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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()
312 if (Scope == CurrentFnLexicalScope && MBB->getParent() == MF) in dominates()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLexicalScopes.h154 bool empty() { return CurrentFnLexicalScope == nullptr; } in empty()
158 return CurrentFnLexicalScope; in getCurrentFunctionScope()
252 LexicalScope *CurrentFnLexicalScope = nullptr; variable