Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DTGLexer.cpp82 PrepIncludeStack.emplace_back(); in TGLexer()
452 PrepIncludeStack.emplace_back(); in LexInclude()
656 if (!PrepIncludeStack.back().empty()) { in prepExitInclude()
663 PrepIncludeStack.pop_back(); in prepExitInclude()
666 assert(PrepIncludeStack.empty() && in prepExitInclude()
669 assert(!PrepIncludeStack.empty() && "preprocessor include stack is empty"); in prepExitInclude()
754 PrepIncludeStack.back().push_back( in lexPreprocessor()
782 if (PrepIncludeStack.back().empty()) in lexPreprocessor()
785 PreprocessorControlDesc IfdefEntry = PrepIncludeStack.back().back(); in lexPreprocessor()
794 PrepIncludeStack.back().back() = {Kind, !IfdefEntry.IsDefined, in lexPreprocessor()
[all …]
H A DTGLexer.h328 SmallVector<SmallVector<PreprocessorControlDesc>> PrepIncludeStack; variable