/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/ |
H A D | PrecompiledPreamble.cpp | 322 PreprocessorOptions &PreprocessorOpts = in Build() local 351 PreprocessorOpts.PrecompiledPreambleBytes.first = 0; in Build() 352 PreprocessorOpts.PrecompiledPreambleBytes.second = false; in Build() 354 PreprocessorOpts.GeneratePreamble = true; in Build() 402 if (PreprocessorOpts.RetainRemappedFileBuffers) { in Build() 404 PreprocessorOpts.addRemappedFile(MainFilePath, PreambleInputBuffer.get()); in Build() 408 PreprocessorOpts.addRemappedFile(MainFilePath, in Build() 505 PreprocessorOptions &PreprocessorOpts = in CanReuse() local 525 for (const auto &R : PreprocessorOpts.RemappedFiles) { in CanReuse() 543 for (const auto &RB : PreprocessorOpts.RemappedFileBuffers) { in CanReuse() [all …]
|
H A D | ASTUnit.cpp | 162 const auto &PreprocessorOpts = Invocation.getPreprocessorOpts(); in getBufferForFileHandlingRemapping() local 174 for (const auto &RF : PreprocessorOpts.RemappedFiles) { in getBufferForFileHandlingRemapping() 190 for (const auto &RB : PreprocessorOpts.RemappedFileBuffers) { in getBufferForFileHandlingRemapping() 2138 PreprocessorOptions &PreprocessorOpts = CCInvocation->getPreprocessorOpts(); in CodeComplete() local 2200 PreprocessorOpts.clearRemappedFiles(); in CodeComplete() 2201 PreprocessorOpts.RetainRemappedFileBuffers = true; in CodeComplete() 2203 PreprocessorOpts.addRemappedFile(RemappedFile.first, RemappedFile.second); in CodeComplete() 2255 PreprocessorOpts.PrecompiledPreambleBytes.first = 0; in CodeComplete() 2256 PreprocessorOpts.PrecompiledPreambleBytes.second = false; in CodeComplete() 2261 PreprocessorOpts.DetailedRecord = false; in CodeComplete()
|
H A D | CompilerInvocation.cpp | 116 PreprocessorOpts(new PreprocessorOptions()), in CompilerInvocationRefBase() 125 PreprocessorOpts(new PreprocessorOptions(X.getPreprocessorOpts())), in CompilerInvocationRefBase() 137 PreprocessorOpts.swap(X.PreprocessorOpts); in operator =() 4095 PreprocessorOptions *PreprocessorOpts = &Opts; in GeneratePreprocessorArgs() local 4166 PreprocessorOptions *PreprocessorOpts = &Opts; in ParsePreprocessorArgs() local 4591 GeneratePreprocessorArgs(*PreprocessorOpts, Args, SA, *LangOpts, FrontendOpts, in generateCC1CommandLine()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Frontend/ |
H A D | CompilerInvocation.h | 87 std::shared_ptr<PreprocessorOptions> PreprocessorOpts; variable 118 return PreprocessorOpts; in getPreprocessorOptsPtr() 121 PreprocessorOptions &getPreprocessorOpts() { return *PreprocessorOpts; } in getPreprocessorOpts() 124 return *PreprocessorOpts; in getPreprocessorOpts()
|
H A D | PrecompiledPreamble.h | 244 PreprocessorOptions &PreprocessorOpts,
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
H A D | ModuleBuilder.cpp | 36 const PreprocessorOptions &PreprocessorOpts; // Only used for debug info. member in __anon20d6d9160111::CodeGeneratorImpl 82 PreprocessorOpts(PPO), CodeGenOpts(CGO), HandlingTopLevelDecls(0), in CodeGeneratorImpl() 146 PreprocessorOpts, CodeGenOpts, in Initialize() 342 const PreprocessorOptions &PreprocessorOpts, const CodeGenOptions &CGO, in CreateLLVMCodeGen() argument 345 PreprocessorOpts, CGO, C, CoverageInfo); in CreateLLVMCodeGen()
|
H A D | ObjectFilePCHContainerOperations.cpp | 49 const PreprocessorOptions &PreprocessorOpts; member in __anon115c17220111::PCHContainerGenerator 144 PreprocessorOpts(CI.getPreprocessorOpts()), in PCHContainerGenerator() 171 *Ctx, HeaderSearchOpts, PreprocessorOpts, CodeGenOpts, *M, Diags)); in Initialize()
|
H A D | CodeGenModule.h | 306 const PreprocessorOptions &PreprocessorOpts; // Only used for debug info. variable 707 const { return PreprocessorOpts; } in getPreprocessorOpts()
|
H A D | CodeGenModule.cpp | 103 PreprocessorOpts(PPO), CodeGenOpts(CGO), TheModule(M), Diags(diags), in CodeGenModule()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/CodeGen/ |
H A D | ModuleBuilder.h | 98 const PreprocessorOptions &PreprocessorOpts,
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Driver/ |
H A D | Options.td | 262 class PreprocessorOpts<string base> 263 : KeyPathAndMacro<"PreprocessorOpts->", base, "PREPROCESSOR_"> {} 2918 MarshallingInfoStringVector<PreprocessorOpts<"MacroIncludes">>; 2924 MarshallingInfoString<PreprocessorOpts<"ImplicitPCHInclude">>; 3805 MarshallingInfoNegativeFlag<PreprocessorOpts<"UsePredefines">>; 5386 MarshallingInfoString<PreprocessorOpts<"PCHThroughHeader">>; 5389 MarshallingInfoFlag<PreprocessorOpts<"PCHWithHdrStopCreate">>; 5442 MarshallingInfoEnum<PreprocessorOpts<"ObjCXXARCStandardLibrary">, "ARCXX_nolib">; 5469 …MarshallingInfoFlag<PreprocessorOpts<"DisablePCHOrModuleValidation">, "DisableValidationForModuleK… 5476 MarshallingInfoFlag<PreprocessorOpts<"AllowPCHWithCompilerErrors">>, [all …]
|