/freebsd/contrib/llvm-project/clang/lib/Frontend/ |
H A D | ChainedIncludesSource.cpp | 93 std::vector<std::string> &includes = CI.getPreprocessorOpts().ChainedIncludes; in createChainedIncludesSource() 107 CInvok->getPreprocessorOpts().ChainedIncludes.clear(); in createChainedIncludesSource() 108 CInvok->getPreprocessorOpts().ImplicitPCHInclude.clear(); in createChainedIncludesSource() 109 CInvok->getPreprocessorOpts().DisablePCHOrModuleValidation = in createChainedIncludesSource() 111 CInvok->getPreprocessorOpts().Includes.clear(); in createChainedIncludesSource() 112 CInvok->getPreprocessorOpts().MacroIncludes.clear(); in createChainedIncludesSource() 113 CInvok->getPreprocessorOpts().Macros.clear(); in createChainedIncludesSource()
|
H A D | FrontendAction.cpp | 637 CI.getPreprocessorOpts() = AST->getPreprocessorOpts(); in BeginSourceFile() 784 if (!CI.getPreprocessorOpts().ImplicitPCHInclude.empty()) { in BeginSourceFile() 786 PreprocessorOptions &PPOpts = CI.getPreprocessorOpts(); in BeginSourceFile() 802 CI.getTargetOpts(), CI.getPreprocessorOpts(), in BeginSourceFile() 966 if (!CI.getPreprocessorOpts().ChainedIncludes.empty()) { in BeginSourceFile() 975 !CI.getPreprocessorOpts().ImplicitPCHInclude.empty()) { in BeginSourceFile() 981 if (CI.getPreprocessorOpts().DumpDeserializedPCHDecls) { in BeginSourceFile() 986 if (!CI.getPreprocessorOpts().DeserializedPCHDeclsToErrorOn.empty()) { in BeginSourceFile() 989 CI.getPreprocessorOpts().DeserializedPCHDeclsToErrorOn, in BeginSourceFile() 993 if (!CI.getPreprocessorOpts().ImplicitPCHInclude.empty()) { in BeginSourceFile() [all …]
|
H A D | ASTUnit.cpp | 161 const auto &PreprocessorOpts = Invocation.getPreprocessorOpts(); in getBufferForFileHandlingRemapping() 263 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts(); in ~ASTUnit() 1590 CI->getPreprocessorOpts().RetainRemappedFileBuffers = true; in LoadFromCompilerInvocationAction() 1697 Invocation->getPreprocessorOpts().RetainRemappedFileBuffers = true; in LoadFromCompilerInvocation() 1799 CI->getPreprocessorOpts().addRemappedFile(RemappedFile.first, in LoadFromCommandLine() 1802 PreprocessorOptions &PPOpts = CI->getPreprocessorOpts(); in LoadFromCommandLine() 1881 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts(); in Reparse() 1885 Invocation->getPreprocessorOpts().clearRemappedFiles(); in Reparse() 1887 Invocation->getPreprocessorOpts().addRemappedFile(RemappedFile.first, in Reparse() 2200 PreprocessorOptions &PreprocessorOpts = CCInvocation->getPreprocessorOpts(); in CodeComplete()
|
H A D | PrecompiledPreamble.cpp | 425 PreambleInvocation->getPreprocessorOpts(); in Build() 613 PreambleInvocation->getPreprocessorOpts(); in CanReuse() 769 auto &PreprocessorOpts = CI.getPreprocessorOpts(); in configurePreamble()
|
H A D | FrontendActions.cpp | 143 CI.getPreprocessorOpts().AllowPCHWithCompilerErrors, in CreateASTConsumer() 177 if (getCompilerInstance().getPreprocessorOpts().AllowPCHWithCompilerErrors) in shouldEraseOutputFiles() 341 bool Preamble = CI.getPreprocessorOpts().PrecompiledPreambleBytes.first != 0; in ExecuteAction()
|
H A D | CompilerInstance.cpp | 231 const PreprocessorOptions &PPOpts = CI.getPreprocessorOpts(); in collectIncludePCH() 446 const PreprocessorOptions &PPOpts = getPreprocessorOpts(); in createPreprocessor() 614 bool Preamble = getPreprocessorOpts().PrecompiledPreambleBytes.first != 0; in createPCHExternalASTSource() 1185 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts(); 1725 const PreprocessorOptions &PPOpts = getPreprocessorOpts(); in createASTReader()
|
H A D | CompilerInvocation.cpp | 161 PPOpts = make_shared_copy(X.getPreprocessorOpts()); in deep_copy_assign() 4818 ParseLangArgs(LangOpts, Args, DashX, T, Res.getPreprocessorOpts().Includes, in CreateFromArgsImpl() 4853 ParsePreprocessorArgs(Res.getPreprocessorOpts(), Args, Diags, in CreateFromArgsImpl() 4947 const PreprocessorOptions &ppOpts = getPreprocessorOpts(); in getModuleHash() 4951 for (const auto &Macro : getPreprocessorOpts().Macros) { in getModuleHash() 5052 GeneratePreprocessorArgs(getPreprocessorOpts(), Consumer, getLangOpts(), in generateCC1CommandLine() 5068 getPreprocessorOpts().resetNonModularOptions(); in resetNonModularOptions()
|
H A D | InitPreprocessor.cpp | 1550 PP.getPreprocessorOpts(), Builder); in InitializePreprocessor() 1553 PP.getPreprocessorOpts(), Builder); in InitializePreprocessor()
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/ |
H A D | DependencyScanningWorker.cpp | 305 canonicalizeDefines(OriginalInvocation.getPreprocessorOpts()); in runInvocation() 333 ScanInstance.getPreprocessorOpts().AllowPCHWithDifferentModulesCachePath = in runInvocation() 356 if (!ScanInstance.getPreprocessorOpts().ImplicitPCHInclude.empty()) in runInvocation() 358 ScanInstance.getPreprocessorOpts().ImplicitPCHInclude, in runInvocation() 366 ScanInstance.getPreprocessorOpts().DependencyDirectivesForFile = in runInvocation() 421 ScanInstance.getPreprocessorOpts().ModulesCheckRelocated = false; in runInvocation()
|
H A D | ModuleDepCollector.cpp | 215 CI.getPreprocessorOpts().Macros, in makeCommonInvocationForModuleBuild() 526 if (!MDC.ScanInstance.getPreprocessorOpts().ImplicitPCHInclude.empty()) in EndOfMainFile() 527 MDC.addFileDep(MDC.ScanInstance.getPreprocessorOpts().ImplicitPCHInclude); in EndOfMainFile()
|
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/ |
H A D | CompilerInvocation.h | 135 const PreprocessorOptions &getPreprocessorOpts() const { return *PPOpts; } in getPreprocessorOpts() function 236 using CompilerInvocationBase::getPreprocessorOpts; 253 PreprocessorOptions &getPreprocessorOpts() { return *PPOpts; } in getPreprocessorOpts() function
|
H A D | CompilerInstance.h | 339 PreprocessorOptions &getPreprocessorOpts() { in getPreprocessorOpts() function 340 return Invocation->getPreprocessorOpts(); in getPreprocessorOpts() 342 const PreprocessorOptions &getPreprocessorOpts() const { in getPreprocessorOpts() function 343 return Invocation->getPreprocessorOpts(); in getPreprocessorOpts()
|
H A D | ASTUnit.h | 474 const PreprocessorOptions &getPreprocessorOpts() const { in getPreprocessorOpts() function
|
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/ |
H A D | ARCMT.cpp | 176 PreprocessorOptions &PPOpts = CInvok->getPreprocessorOpts(); in createInvocationForMigration() 193 CInvok->getPreprocessorOpts().addMacroDef(define); in createInvocationForMigration() 529 Remapper.applyMappings(CInvok->getPreprocessorOpts()); in applyTransform()
|
/freebsd/contrib/llvm-project/clang/lib/Lex/ |
H A D | Pragma.cpp | 1064 if (!PP.getPreprocessorOpts().DisablePragmaDebugCrash) in HandlePragma() 1069 if (!PP.getPreprocessorOpts().DisablePragmaDebugCrash) in HandlePragma() 1072 if (!PP.getPreprocessorOpts().DisablePragmaDebugCrash) { in HandlePragma() 1101 if (!PP.getPreprocessorOpts().DisablePragmaDebugCrash) in HandlePragma() 1104 if (!PP.getPreprocessorOpts().DisablePragmaDebugCrash) in HandlePragma() 1132 if (!PP.getPreprocessorOpts().DisablePragmaDebugCrash) in HandlePragma()
|
H A D | PPLexerChange.cpp | 96 if (getPreprocessorOpts().DependencyDirectivesForFile && in EnterSourceFile() 101 getPreprocessorOpts().DependencyDirectivesForFile(*File)) { in EnterSourceFile()
|
H A D | PPMacroExpansion.cpp | 1102 if (PP.getPreprocessorOpts().SourceDateEpoch) { in ComputeDATE_TIME() 1103 TT = *PP.getPreprocessorOpts().SourceDateEpoch; in ComputeDATE_TIME() 1753 if (getPreprocessorOpts().SourceDateEpoch) { in ExpandBuiltinMacro() 1754 time_t TT = *getPreprocessorOpts().SourceDateEpoch; in ExpandBuiltinMacro()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CodeGenAction.cpp | 1020 CI.getHeaderSearchOpts(), CI.getPreprocessorOpts(), CI.getCodeGenOpts(), in CreateASTConsumer() 1191 CI.getHeaderSearchOpts(), CI.getPreprocessorOpts(), in ExecuteAction()
|
H A D | CodeGenModule.h | 766 const PreprocessorOptions &getPreprocessorOpts() in getPreprocessorOpts() function
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | Features.def | 93 PP.getPreprocessorOpts().DefineTargetOSMacros)
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangModulesDeclVendor.cpp | 732 invocation->getPreprocessorOpts().addRemappedFile(ModuleImportBufferName, in Create()
|
H A D | ClangExpressionParser.cpp | 700 m_compiler->getPreprocessorOpts(), m_compiler->getCodeGenOpts(), in ClangExpressionParser()
|
/freebsd/contrib/llvm-project/clang/lib/Interpreter/ |
H A D | Interpreter.cpp | 118 Clang->getPreprocessorOpts().addRemappedFile("<<< inputs >>>", MB); in CreateCI()
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReader.cpp | 819 const PreprocessorOptions &ExistingPPOpts = PP.getPreprocessorOpts(); in ReadPreprocessorOptions() 829 return checkPreprocessorOptions(PPOpts, PP.getPreprocessorOpts(), ReadMacros, in ReadPreprocessorOptions() 865 PP.getLangOpts(), PP.getPreprocessorOpts()); in ReadHeaderSearchOptions() 3197 if (!PP.getPreprocessorOpts().ModulesCheckRelocated) in ReadControlBlock() 3208 if (!bool(PP.getPreprocessorOpts().DisablePCHOrModuleValidation & in ReadControlBlock() 4144 if (PP.getPreprocessorOpts().ModulesCheckRelocated && in ReadModuleMapFileBlock() 4154 if (!bool(PP.getPreprocessorOpts().DisablePCHOrModuleValidation & in ReadModuleMapFileBlock() 5809 if (!bool(PP.getPreprocessorOpts().DisablePCHOrModuleValidation & in ReadSubmoduleBlock()
|
/freebsd/contrib/llvm-project/clang/include/clang/Lex/ |
H A D | Preprocessor.h | 1210 PreprocessorOptions &getPreprocessorOpts() const { return *PPOpts; } in getPreprocessorOpts() function
|