Home
last modified time | relevance | path

Searched refs:PreprocessorOpts (Results 1 – 10 of 10) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/
H A DPrecompiledPreamble.cpp243 PreprocessorOptions &PreprocessorOpts = in Build() local
271 PreprocessorOpts.PrecompiledPreambleBytes.first = 0; in Build()
274 PreprocessorOpts.GeneratePreamble = true; in Build()
329 if (PreprocessorOpts.RetainRemappedFileBuffers) { in Build()
335 PreprocessorOpts.addRemappedFile(MainFilePath, in Build()
421 PreprocessorOptions &PreprocessorOpts = in CanReuse() local
688 auto &PreprocessorOpts = CI.getPreprocessorOpts(); in configurePreamble() local
696 PreprocessorOpts.PrecompiledPreambleBytes.second = in configurePreamble()
698 PreprocessorOpts.DisablePCHValidation = true; in configurePreamble()
700 setupPreambleStorage(Storage, PreprocessorOpts, VFS); in configurePreamble()
[all …]
H A DASTUnit.cpp160 const auto &PreprocessorOpts = Invocation.getPreprocessorOpts(); in getBufferForFileHandlingRemapping() local
172 for (const auto &RF : PreprocessorOpts.RemappedFiles) { in getBufferForFileHandlingRemapping()
188 for (const auto &RB : PreprocessorOpts.RemappedFileBuffers) { in getBufferForFileHandlingRemapping()
2128 PreprocessorOptions &PreprocessorOpts = CCInvocation->getPreprocessorOpts(); in CodeComplete() local
2197 PreprocessorOpts.clearRemappedFiles(); in CodeComplete()
2198 PreprocessorOpts.RetainRemappedFileBuffers = true; in CodeComplete()
2200 PreprocessorOpts.addRemappedFile(RemappedFile.first, RemappedFile.second); in CodeComplete()
2249 PreprocessorOpts.PrecompiledPreambleBytes.first = 0; in CodeComplete()
2250 PreprocessorOpts.PrecompiledPreambleBytes.second = false; in CodeComplete()
2255 PreprocessorOpts.DetailedRecord = false; in CodeComplete()
H A DCompilerInvocation.cpp107 PreprocessorOpts(new PreprocessorOptions()) {} in CompilerInvocationBase()
114 PreprocessorOpts(new PreprocessorOptions(X.getPreprocessorOpts())) {} in CompilerInvocationBase()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Frontend/
H A DCompilerInvocation.h80 std::shared_ptr<PreprocessorOptions> PreprocessorOpts; variable
106 return PreprocessorOpts; in getPreprocessorOptsPtr()
109 PreprocessorOptions &getPreprocessorOpts() { return *PreprocessorOpts; } in getPreprocessorOpts()
112 return *PreprocessorOpts; in getPreprocessorOpts()
H A DPrecompiledPreamble.h244 PreprocessorOptions &PreprocessorOpts,
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DModuleBuilder.cpp37 const PreprocessorOptions &PreprocessorOpts; // Only used for debug info. member in __anona725aa1a0111::CodeGeneratorImpl
76 PreprocessorOpts(PPO), CodeGenOpts(CGO), HandlingTopLevelDecls(0), in CodeGeneratorImpl()
139 PreprocessorOpts, CodeGenOpts, in Initialize()
328 const PreprocessorOptions &PreprocessorOpts, const CodeGenOptions &CGO, in CreateLLVMCodeGen() argument
331 PreprocessorOpts, CGO, C, CoverageInfo); in CreateLLVMCodeGen()
H A DObjectFilePCHContainerOperations.cpp50 const PreprocessorOptions &PreprocessorOpts; member in __anon266401a60111::PCHContainerGenerator
145 PreprocessorOpts(CI.getPreprocessorOpts()), in PCHContainerGenerator()
172 *Ctx, HeaderSearchOpts, PreprocessorOpts, CodeGenOpts, *M, Diags)); in Initialize()
H A DCodeGenModule.h296 const PreprocessorOptions &PreprocessorOpts; // Only used for debug info. variable
657 const { return PreprocessorOpts; } in getPreprocessorOpts()
H A DCodeGenModule.cpp96 PreprocessorOpts(PPO), CodeGenOpts(CGO), TheModule(M), Diags(diags), in CodeGenModule()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/CodeGen/
H A DModuleBuilder.h99 const PreprocessorOptions &PreprocessorOpts,