Searched refs:Invocation (Results 1 - 25 of 52) sorted by relevance

123

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/
H A DCompilerInstance.h74 std::shared_ptr<CompilerInvocation> Invocation; member in class:clang::CompilerInstance
227 /// @name Compiler Invocation and Options
230 bool hasInvocation() const { return Invocation != nullptr; }
233 assert(Invocation && "Compiler instance has no invocation!");
234 return *Invocation;
254 return Invocation->getAnalyzerOpts();
258 return Invocation->getCodeGenOpts();
261 return Invocation->getCodeGenOpts();
265 return Invocation->getDependencyOutputOpts();
268 return Invocation
[all...]
H A DPrecompiledPreamble.h54 /// Try to build PrecompiledPreamble for \p Invocation. See
57 /// \param Invocation Original CompilerInvocation with options to compile the
79 Build(const CompilerInvocation &Invocation,
99 bool CanReuse(const CompilerInvocation &Invocation,
H A DASTUnit.h139 std::shared_ptr<CompilerInvocation> Invocation; member in class:clang::ASTUnit
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DModelInjector.cpp67 auto Invocation = std::make_shared<CompilerInvocation>(CI.getInvocation()); local
69 FrontendOptions &FrontendOpts = Invocation->getFrontendOpts();
75 Invocation->getDiagnosticOpts().VerifyDiagnostics = 0;
80 Instance.setInvocation(std::move(Invocation));
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DTooling.cpp147 CompilerInvocation *Invocation = new CompilerInvocation; local
148 CompilerInvocation::CreateFromArgs(*Invocation, CC1Args, *Diagnostics);
149 Invocation->getFrontendOpts().DisableFree = false;
150 Invocation->getCodeGenOpts().DisableFree = false;
151 return Invocation;
192 ToolInvocation Invocation(
195 return Invocation.run();
347 std::unique_ptr<CompilerInvocation> Invocation(
354 Invocation->getPreprocessorOpts().addRemappedFile(It.getKey(),
357 return runInvocation(BinaryName, Compilation.get(), std::move(Invocation),
361 runInvocation( const char *BinaryName, driver::Compilation *Compilation, std::shared_ptr<CompilerInvocation> Invocation, std::shared_ptr<PCHContainerOperations> PCHContainerOps) argument
376 runInvocation( std::shared_ptr<CompilerInvocation> Invocation, FileManager *Files, std::shared_ptr<PCHContainerOperations> PCHContainerOps, DiagnosticConsumer *DiagConsumer) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A Dllvm-cov.cpp80 std::string Invocation = std::string(argv[0]) + " " + argv[1]; local
81 argv[1] = Invocation.c_str();
/freebsd-11-stable/sys/contrib/dev/acpica/components/debugger/
H A Ddbinput.c482 char *Invocation = Help->Invocation; local
488 if (*Invocation != ' ')
493 while (*Invocation == ' ')
495 Invocation++;
500 while ((*Command) && (*Invocation) && (*Invocation != ' '))
502 if (tolower ((int) *Command) != tolower ((int) *Invocation))
507 Invocation++;
516 AcpiOsPrintf ("%-38s : %s", Help->Invocation, Hel
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DASTUnit.cpp156 /// and file-to-buffer remappings inside \p Invocation.
158 getBufferForFileHandlingRemapping(const CompilerInvocation &Invocation, argument
161 const auto &PreprocessorOpts = Invocation.getPreprocessorOpts();
262 if (Invocation && OwnsRemappedFileBuffers) {
263 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts();
1102 if (!Invocation)
1109 auto CCInvocation = std::make_shared<CompilerInvocation>(*Invocation);
1153 "Invocation must have exactly one source file!");
1465 if (Invocation && !Invocation
[all...]
H A DCompilerInstance.cpp62 Invocation(new CompilerInvocation()),
73 Invocation = std::move(Value);
389 PP = std::make_shared<Preprocessor>(Invocation->getPreprocessorOptsPtr(),
1049 auto Invocation = local
1052 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts();
1056 Invocation->getLangOpts()->resetNonModularOptions();
1061 HeaderSearchOptions &HSOpts = Invocation->getHeaderSearchOpts();
1072 Invocation->getLangOpts()->ModuleName =
1076 Invocation->getLangOpts()->CurrentModule = ModuleName;
1091 FrontendOptions &FrontendOpts = Invocation
[all...]
H A DPrecompiledPreamble.cpp236 const CompilerInvocation &Invocation,
244 auto PreambleInvocation = std::make_shared<CompilerInvocation>(Invocation);
418 bool PrecompiledPreamble::CanReuse(const CompilerInvocation &Invocation, argument
427 auto PreambleInvocation = std::make_shared<CompilerInvocation>(Invocation);
235 Build( const CompilerInvocation &Invocation, const llvm::MemoryBuffer *MainFileBuffer, PreambleBounds Bounds, DiagnosticsEngine &Diagnostics, IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS, std::shared_ptr<PCHContainerOperations> PCHContainerOps, bool StoreInMemory, PreambleCallbacks &Callbacks) argument
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/
H A DTooling.h79 runInvocation(std::shared_ptr<CompilerInvocation> Invocation,
96 bool runInvocation(std::shared_ptr<CompilerInvocation> Invocation,
284 std::shared_ptr<CompilerInvocation> Invocation,
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningWorker.cpp82 bool runInvocation(std::shared_ptr<CompilerInvocation> Invocation,
88 Compiler.setInvocation(std::move(Invocation));
/freebsd-11-stable/sys/contrib/dev/acpica/include/
H A Dacdebug.h174 char *Invocation; /* Command Invocation */ member in struct:acpi_db_command_help
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp1154 std::string Invocation(ProgName.str() + " " + argv[1]);
1155 argv[1] = Invocation.c_str();
/freebsd-11-stable/contrib/gperf/
H A Dconfigure1265 generated by GNU Autoconf 2.61. Invocation command line was
2094 generated by GNU Autoconf 2.61. Invocation command line was
/freebsd-11-stable/contrib/gperf/doc/
H A Dconfigure1268 generated by GNU Autoconf 2.61. Invocation command line was
2137 generated by GNU Autoconf 2.61. Invocation command line was
/freebsd-11-stable/contrib/sqlite3/tea/
H A Dconfigure1882 generated by GNU Autoconf 2.69. Invocation command line was
9377 generated by GNU Autoconf 2.69. Invocation command line was
/freebsd-11-stable/contrib/binutils/
H A Dconfigure1129 generated by GNU Autoconf 2.59. Invocation command line was
12021 generated by GNU Autoconf 2.59. Invocation command line was
/freebsd-11-stable/contrib/gcclibs/libcpp/
H A Dconfigure987 generated by GNU Autoconf 2.59. Invocation command line was
8634 generated by GNU Autoconf 2.59. Invocation command line was
/freebsd-11-stable/contrib/libreadline/examples/rlfe/
H A Dconfigure929 generated by GNU Autoconf 2.59. Invocation command line was
4653 generated by GNU Autoconf 2.59. Invocation command line was
/freebsd-11-stable/contrib/gcclibs/libssp/
H A Dconfigure982 generated by GNU Autoconf 2.59. Invocation command line was
5662 generated by GNU Autoconf 2.59. Invocation command line was
/freebsd-11-stable/contrib/ldns/drill/
H A Dconfigure1805 generated by GNU Autoconf 2.68. Invocation command line was
5954 generated by GNU Autoconf 2.68. Invocation command line was
/freebsd-11-stable/contrib/bmake/
H A Dconfigure1965 generated by GNU Autoconf 2.64. Invocation command line was
6521 generated by GNU Autoconf 2.64. Invocation command line was
/freebsd-11-stable/contrib/gcclibs/libdecnumber/
H A Dconfigure973 generated by GNU Autoconf 2.59. Invocation command line was
7688 generated by GNU Autoconf 2.59. Invocation command line was
/freebsd-11-stable/contrib/gcclibs/libmudflap/
H A Dconfigure983 generated by GNU Autoconf 2.59. Invocation command line was
7565 generated by GNU Autoconf 2.59. Invocation command line was

Completed in 331 milliseconds

123