Home
last modified time | relevance | path

Searched refs:IncludeMacroStack (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPPLexerChange.cpp37 return IncludeMacroStack.empty(); in isInPrimaryFile()
40 assert(IsFileLexer(IncludeMacroStack[0]) && in isInPrimaryFile()
43 llvm::drop_begin(IncludeMacroStack), in isInPrimaryFile()
55 for (const IncludeStackInfo &ISI : llvm::reverse(IncludeMacroStack)) { in getCurrentFileLexer()
75 if (MaxIncludeStackDepth < IncludeMacroStack.size()) in EnterSourceFile()
76 MaxIncludeStackDepth = IncludeMacroStack.size(); in EnterSourceFile()
338 if (IncludeMacroStack.empty() && in HandleEndOfFile()
348 if ((LeavingSubmodule || IncludeMacroStack.empty()) && in HandleEndOfFile()
442 if (!IncludeMacroStack.empty()) { in HandleEndOfFile()
623 assert(!IncludeMacroStack.empty() && "Ran out of stack entries to load"); in RemoveTopOfLexerStack()
[all …]
H A DPPDirectives.cpp1007 for (IncludeStackInfo &ISEntry : llvm::reverse(IncludeMacroStack)) { in LookupFile()
1061 for (IncludeStackInfo &ISEntry : llvm::reverse(IncludeMacroStack)) { in LookupFile()
2623 if (IncludeMacroStack.size() == MaxAllowedIncludeStackDepth-1) { in HandleHeaderIncludeOrImport()
H A DPreprocessor.cpp175 IncludeMacroStack.clear(); in ~Preprocessor()
H A DPPMacroExpansion.cpp455 for (const IncludeStackInfo &Entry : llvm::reverse(IncludeMacroStack)) { in isNextPPTokenLParen()
/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DPreprocessor.h805 std::vector<IncludeStackInfo> IncludeMacroStack; variable
2474 IncludeMacroStack.emplace_back(CurLexerCallback, CurLexerSubmodule, in PushIncludeMacroStack()
2481 CurLexer = std::move(IncludeMacroStack.back().TheLexer); in PopIncludeMacroStack()
2482 CurPPLexer = IncludeMacroStack.back().ThePPLexer; in PopIncludeMacroStack()
2483 CurTokenLexer = std::move(IncludeMacroStack.back().TheTokenLexer); in PopIncludeMacroStack()
2484 CurDirLookup = IncludeMacroStack.back().TheDirLookup; in PopIncludeMacroStack()
2485 CurLexerSubmodule = IncludeMacroStack.back().TheSubmodule; in PopIncludeMacroStack()
2486 CurLexerCallback = IncludeMacroStack.back().CurLexerCallback; in PopIncludeMacroStack()
2487 IncludeMacroStack.pop_back(); in PopIncludeMacroStack()
2690 return !CurPPLexer && !CurTokenLexer && !IncludeMacroStack.empty(); in InCachingLexMode()