Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DLexicalScopes.cpp42 CurrentFnLexicalScope = nullptr; in reset()
60 if (CurrentFnLexicalScope) { in initialize()
61 constructScopeNest(CurrentFnLexicalScope); in initialize()
178 assert(!CurrentFnLexicalScope); in getOrCreateRegularScope()
179 CurrentFnLexicalScope = &I->second; in getOrCreateRegularScope()
288 if (Scope == CurrentFnLexicalScope) { in getMachineBasicBlocks()
308 if (Scope == CurrentFnLexicalScope && MBB->getParent() == MF) in dominates()
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DLexicalScopes.h154 bool empty() { return CurrentFnLexicalScope == nullptr; } in empty()
158 return CurrentFnLexicalScope; in getCurrentFunctionScope()
253 LexicalScope *CurrentFnLexicalScope = nullptr; variable