Add #pragma clang module begin/end pragmas and generate them when preprocessing a module.
These pragmas are intended to simulate the effect of entering or leaving a file with an associated module. This is not completely implemented yet: declarations between the pragmas will not be attributed to the correct module, but macro visibility is already functional. Modules named by #pragma clang module begin must already be known to clang (in some module map that's either loaded or on the search path). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@302098 91177308-0d34-0410-b5e6-96231b3b80d8
Showing
- include/clang/Basic/DiagnosticLexKinds.td 16 additions, 2 deletionsinclude/clang/Basic/DiagnosticLexKinds.td
- include/clang/Lex/Preprocessor.h 17 additions, 14 deletionsinclude/clang/Lex/Preprocessor.h
- lib/Frontend/PrintPreprocessedOutput.cpp 34 additions, 3 deletionslib/Frontend/PrintPreprocessedOutput.cpp
- lib/Frontend/Rewrite/InclusionRewriter.cpp 30 additions, 0 deletionslib/Frontend/Rewrite/InclusionRewriter.cpp
- lib/Lex/PPDirectives.cpp 4 additions, 4 deletionslib/Lex/PPDirectives.cpp
- lib/Lex/PPLexerChange.cpp 43 additions, 14 deletionslib/Lex/PPLexerChange.cpp
- lib/Lex/PPMacroExpansion.cpp 1 addition, 1 deletionlib/Lex/PPMacroExpansion.cpp
- lib/Lex/Pragma.cpp 124 additions, 43 deletionslib/Lex/Pragma.cpp
- lib/Lex/Preprocessor.cpp 4 additions, 4 deletionslib/Lex/Preprocessor.cpp
- test/Modules/Inputs/preprocess/file2.h 2 additions, 0 deletionstest/Modules/Inputs/preprocess/file2.h
- test/Modules/Inputs/preprocess/module.modulemap 1 addition, 1 deletiontest/Modules/Inputs/preprocess/module.modulemap
- test/Modules/preprocess-module.cpp 55 additions, 2 deletionstest/Modules/preprocess-module.cpp
- test/Preprocessor/pragma_module.c 49 additions, 9 deletionstest/Preprocessor/pragma_module.c
Loading
Please register or sign in to comment