Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/
DLexicalScopes.cpp32 CurrentFnLexicalScope = nullptr; in reset()
46 if (CurrentFnLexicalScope) { in initialize()
47 constructScopeNest(CurrentFnLexicalScope); in initialize()
161 assert(!CurrentFnLexicalScope); in getOrCreateRegularScope()
162 CurrentFnLexicalScope = &I->second; in getOrCreateRegularScope()
278 if (Scope == CurrentFnLexicalScope) { in getMachineBasicBlocks()
301 if (Scope == CurrentFnLexicalScope && MBB->getParent() == MF) in dominates()
/external/llvm/include/llvm/CodeGen/
DLexicalScopes.h142 LexicalScopes() : MF(nullptr), CurrentFnLexicalScope(nullptr) {} in LexicalScopes()
152 bool empty() { return CurrentFnLexicalScope == nullptr; } in empty()
156 return CurrentFnLexicalScope; in getCurrentFunctionScope()
252 LexicalScope *CurrentFnLexicalScope; variable