Home
last modified time | relevance | path

Searched refs:CompilerInvocation (Results 1 – 21 of 21) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/ARCMigrate/
H A DARCMT.h42 checkForManualIssues(CompilerInvocation &CI, const FrontendInputFile &Input,
53 applyTransformations(CompilerInvocation &origCI,
70 CompilerInvocation &origCI, const FrontendInputFile &Input,
98 CompilerInvocation OrigCI;
106 MigrationProcess(const CompilerInvocation &CI,
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Frontend/
H A DCompilerInvocation.h121 class CompilerInvocation : public CompilerInvocationBase {
143 CompilerInvocation() : AnalyzerOpts(new AnalyzerOptions()) {} in CompilerInvocation() function
155 static bool CreateFromArgs(CompilerInvocation &Res,
227 createVFSFromCompilerInvocation(const CompilerInvocation &CI,
231 const CompilerInvocation &CI, DiagnosticsEngine &Diags,
H A DPrecompiledPreamble.h36 class CompilerInvocation; variable
80 Build(const CompilerInvocation &Invocation,
100 bool CanReuse(const CompilerInvocation &Invocation,
112 void AddImplicitPreamble(CompilerInvocation &CI,
119 void OverridePreamble(CompilerInvocation &CI,
235 void configurePreamble(PreambleBounds Bounds, CompilerInvocation &CI,
H A DASTUnit.h68 class CompilerInvocation; variable
137 std::shared_ptr<CompilerInvocation> Invocation;
371 CompilerInvocation &PreambleInvocationIn,
659 create(std::shared_ptr<CompilerInvocation> CI,
742 std::shared_ptr<CompilerInvocation> CI,
769 std::shared_ptr<CompilerInvocation> CI,
H A DUtils.h49 class CompilerInvocation; variable
197 std::unique_ptr<CompilerInvocation> createInvocationFromCommandLine(
H A DCompilerInstance.h75 std::shared_ptr<CompilerInvocation> Invocation;
240 CompilerInvocation &getInvocation() { in getInvocation()
246 void setInvocation(std::shared_ptr<CompilerInvocation> Value);
/freebsd-12.1/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DARCMT.cpp149 static bool HasARCRuntime(CompilerInvocation &origCI) { in HasARCRuntime()
173 static CompilerInvocation *
174 createInvocationForMigration(CompilerInvocation &origCI, in createInvocationForMigration()
176 std::unique_ptr<CompilerInvocation> CInvok; in createInvocationForMigration()
177 CInvok.reset(new CompilerInvocation(origCI)); in createInvocationForMigration()
238 CompilerInvocation &origCI, const FrontendInputFile &Input, in checkForManualIssues()
253 std::unique_ptr<CompilerInvocation> CInvok; in checkForManualIssues()
349 CompilerInvocation CInvokForCheck(origCI); in applyTransforms()
355 CompilerInvocation CInvok(origCI); in applyTransforms()
508 const CompilerInvocation &CI, in MigrationProcess()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/
H A DCreateInvocationFromCommandLine.cpp33 std::unique_ptr<CompilerInvocation> clang::createInvocationFromCommandLine( in createInvocationFromCommandLine()
98 auto CI = llvm::make_unique<CompilerInvocation>(); in createInvocationFromCommandLine()
99 if (!CompilerInvocation::CreateFromArgs(*CI, in createInvocationFromCommandLine()
H A DPrecompiledPreamble.cpp233 const CompilerInvocation &Invocation, in Build()
241 auto PreambleInvocation = std::make_shared<CompilerInvocation>(Invocation); in Build()
411 bool PrecompiledPreamble::CanReuse(const CompilerInvocation &Invocation, in CanReuse()
420 auto PreambleInvocation = std::make_shared<CompilerInvocation>(Invocation); in CanReuse()
489 CompilerInvocation &CI, IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS, in AddImplicitPreamble()
496 CompilerInvocation &CI, IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS, in OverridePreamble()
683 PreambleBounds Bounds, CompilerInvocation &CI, in configurePreamble()
H A DChainedIncludesSource.cpp127 std::unique_ptr<CompilerInvocation> CInvok; in createChainedIncludesSource()
128 CInvok.reset(new CompilerInvocation(CI.getInvocation())); in createChainedIncludesSource()
H A DASTUnit.cpp157 getBufferForFileHandlingRemapping(const CompilerInvocation &Invocation, in getBufferForFileHandlingRemapping()
1082 auto CCInvocation = std::make_shared<CompilerInvocation>(*Invocation); in Parse()
1282 CompilerInvocation &PreambleInvocationIn, in getMainBufferWithPrecompiledPreamble()
1467 ASTUnit::create(std::shared_ptr<CompilerInvocation> CI, in create()
1487 std::shared_ptr<CompilerInvocation> CI, in LoadFromCompilerInvocationAction()
1666 std::shared_ptr<CompilerInvocation> CI, in LoadFromCompilerInvocation()
1718 std::shared_ptr<CompilerInvocation> CI; in LoadFromCommandLine()
2124 auto CCInvocation = std::make_shared<CompilerInvocation>(*Invocation); in CodeComplete()
H A DCompilerInvocation.cpp1893 std::string CompilerInvocation::GetResourcesPath(const char *Argv0, in GetResourcesPath()
2050 void CompilerInvocation::setLangDefaults(LangOptions &Opts, InputKind IK, in setLangDefaults()
2359 CompilerInvocation::setLangDefaults(Opts, IK, T, PPOpts, LangStd); in ParseLangArgs()
3228 bool CompilerInvocation::CreateFromArgs(CompilerInvocation &Res, in CreateFromArgs()
3350 std::string CompilerInvocation::getModuleHash() const { in getModuleHash()
3465 createVFSFromCompilerInvocation(const CompilerInvocation &CI, in createVFSFromCompilerInvocation()
3472 const CompilerInvocation &CI, DiagnosticsEngine &Diags, in createVFSFromCompilerInvocation()
H A DCompilerInstance.cpp63 Invocation(new CompilerInvocation()), in CompilerInstance()
76 std::shared_ptr<CompilerInvocation> Value) { in setInvocation()
1036 std::make_shared<CompilerInvocation>(ImportingInstance.getInvocation());
/freebsd-12.1/contrib/llvm/tools/clang/lib/Tooling/
H A DTooling.cpp118 CompilerInvocation *newInvocation( in newInvocation()
121 CompilerInvocation *Invocation = new CompilerInvocation; in newInvocation()
122 CompilerInvocation::CreateFromArgs( in newInvocation()
320 std::unique_ptr<CompilerInvocation> Invocation( in run()
336 std::shared_ptr<CompilerInvocation> Invocation, in runInvocation()
350 std::shared_ptr<CompilerInvocation> Invocation, FileManager *Files, in runInvocation()
414 CompilerInvocation::GetResourcesPath(Argv0, MainAddr)); in injectResourceDir()
544 bool runInvocation(std::shared_ptr<CompilerInvocation> Invocation, in runInvocation()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Tooling/
H A DTooling.h55 class CompilerInvocation; variable
80 runInvocation(std::shared_ptr<CompilerInvocation> Invocation,
97 bool runInvocation(std::shared_ptr<CompilerInvocation> Invocation,
286 std::shared_ptr<CompilerInvocation> Invocation,
497 CompilerInvocation *newInvocation(DiagnosticsEngine *Diagnostics,
/freebsd-12.1/contrib/llvm/tools/clang/tools/driver/
H A Dcc1_main.cpp195 bool Success = CompilerInvocation::CreateFromArgs( in cc1_main()
202 CompilerInvocation::GetResourcesPath(Argv0, MainAddr); in cc1_main()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangModulesDeclVendor.cpp67 std::shared_ptr<clang::CompilerInvocation> compiler_invocation,
99 std::shared_ptr<clang::CompilerInvocation> m_compiler_invocation;
150 std::shared_ptr<clang::CompilerInvocation> compiler_invocation, in ClangModulesDeclVendorImpl()
617 std::shared_ptr<clang::CompilerInvocation> invocation = in Create()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/
H A DModelInjector.cpp66 auto Invocation = std::make_shared<CompilerInvocation>(CI.getInvocation()); in onBodySynthesis()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/Rewrite/
H A DFrontendActions.cpp243 std::make_shared<CompilerInvocation>(CI.getInvocation())); in visitModuleFile()
/freebsd-12.1/lib/clang/libclang/
H A DMakefile332 SRCS_MIN+= Frontend/CompilerInvocation.cpp
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Driver/
H A DCC1Options.td444 // CompilerInvocation out of a driver-derived argument vector.