Searched refs:FrontendOpts (Results 1 – 8 of 8) sorted by relevance
| /src/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/ |
| H A D | ModelInjector.cpp | 68 FrontendOptions &FrontendOpts = Invocation->getFrontendOpts(); in onBodySynthesis() local 70 FrontendOpts.Inputs.clear(); in onBodySynthesis() 71 FrontendOpts.Inputs.emplace_back(fileName, IK); in onBodySynthesis() 72 FrontendOpts.DisableFree = true; in onBodySynthesis()
|
| /src/contrib/llvm-project/clang/include/clang/Frontend/ |
| H A D | CompilerInvocation.h | 106 std::shared_ptr<FrontendOptions> FrontendOpts; variable 141 const FrontendOptions &getFrontendOpts() const { return *FrontendOpts; } in getFrontendOpts() 259 FrontendOptions &getFrontendOpts() { return *FrontendOpts; } in getFrontendOpts()
|
| /src/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | PrecompiledPreamble.cpp | 423 FrontendOptions &FrontendOpts = PreambleInvocation->getFrontendOpts(); in Build() local 449 FrontendOpts.ProgramAction = frontend::GeneratePCH; in Build() 450 FrontendOpts.OutputFile = std::string( in Build() 500 StringRef MainFilePath = FrontendOpts.Inputs[0].getFile(); in Build()
|
| H A D | CompilerInstance.cpp | 1211 FrontendOptions &FrontendOpts = Invocation->getFrontendOpts(); local 1212 FrontendOpts.OutputFile = ModuleFileName.str(); 1213 FrontendOpts.DisableFree = false; 1214 FrontendOpts.GenerateGlobalModuleIndex = false; 1215 FrontendOpts.BuildingImplicitModule = true; 1216 FrontendOpts.OriginalModuleMap = std::string(OriginalModuleMapFile); 1219 FrontendOpts.Inputs = {Input}; 1246 if (FrontendOpts.ModulesShareFileManager) { 1296 if (!FrontendOpts.ModulesShareFileManager)
|
| H A D | FrontendActions.cpp | 137 const auto &FrontendOpts = CI.getFrontendOpts(); in CreateASTConsumer() local 142 FrontendOpts.ModuleFileExtensions, in CreateASTConsumer() 144 FrontendOpts.IncludeTimestamps, FrontendOpts.BuildingImplicitModule, in CreateASTConsumer()
|
| H A D | CompilerInvocation.cpp | 150 FrontendOpts(std::make_shared<FrontendOptions>()), in CompilerInvocationBase() 167 FrontendOpts = make_shared_copy(X.getFrontendOpts()); in deep_copy_assign() 187 FrontendOpts = X.FrontendOpts; in shallow_copy_assign() 262 return ensureOwned(FrontendOpts); in getMutFrontendOpts() 577 FrontendOptions &FrontendOpts = Invocation.getFrontendOpts(); in FixupInvocation() local 581 CodeGenOpts.DisableFree = FrontendOpts.DisableFree; in FixupInvocation() 582 FrontendOpts.GenerateGlobalModuleIndex = FrontendOpts.UseGlobalModuleIndex; in FixupInvocation() 583 if (FrontendOpts.ShowStats) in FixupInvocation() 2680 const FrontendOptions &FrontendOpts = Opts; in GenerateFrontendArgs() local 2852 FrontendOptions &FrontendOpts = Opts; in ParseFrontendArgs() local [all …]
|
| H A D | ASTUnit.cpp | 2198 FrontendOptions &FrontendOpts = CCInvocation->getFrontendOpts(); in CodeComplete() local 2199 CodeCompleteOptions &CodeCompleteOpts = FrontendOpts.CodeCompleteOpts; in CodeComplete() 2212 FrontendOpts.CodeCompletionAt.FileName = std::string(File); in CodeComplete() 2213 FrontendOpts.CodeCompletionAt.Line = Line; in CodeComplete() 2214 FrontendOpts.CodeCompletionAt.Column = Column; in CodeComplete()
|
| /src/contrib/llvm-project/clang/include/clang/Driver/ |
| H A D | Options.td | 325 class FrontendOpts<string base> 326 : KeyPathAndMacro<"FrontendOpts.", base, "FRONTEND_"> {} 705 MarshallingInfoString<FrontendOpts<"ARCMTMigrateReportOut">>; 709 MarshallingInfoFlag<FrontendOpts<"ARCMTMigrateEmitARCErrors">>; 735 MarshallingInfoBitfieldFlag<FrontendOpts<"ObjCMTAction">, "FrontendOptions::ObjCMT_Literals">; 739 MarshallingInfoBitfieldFlag<FrontendOpts<"ObjCMTAction">, "FrontendOptions::ObjCMT_Subscripting">; 743 MarshallingInfoBitfieldFlag<FrontendOpts<"ObjCMTAction">, "FrontendOptions::ObjCMT_Property">; 747 MarshallingInfoBitfieldFlag<FrontendOpts<"ObjCMTAction">, "FrontendOptions::ObjCMT_MigrateDecls">; 751 …MarshallingInfoBitfieldFlag<FrontendOpts<"ObjCMTAction">, "FrontendOptions::ObjCMT_ReadonlyPropert… 755 …MarshallingInfoBitfieldFlag<FrontendOpts<"ObjCMTAction">, "FrontendOptions::ObjCMT_ReadwriteProper… [all …]
|