clang 20.0.0git
|
Use the CC1 tool callback when available, to avoid creating a new process. More...
#include "clang/Driver/Job.h"
Public Member Functions | |
CC1Command (const Action &Source, const Tool &Creator, ResponseFileSupport ResponseSupport, const char *Executable, const llvm::opt::ArgStringList &Arguments, ArrayRef< InputInfo > Inputs, ArrayRef< InputInfo > Outputs=std::nullopt, const char *PrependArg=nullptr) | |
void | Print (llvm::raw_ostream &OS, const char *Terminator, bool Quote, CrashReportInfo *CrashInfo=nullptr) const override |
int | Execute (ArrayRef< std::optional< StringRef > > Redirects, std::string *ErrMsg, bool *ExecutionFailed) const override |
void | setEnvironment (llvm::ArrayRef< const char * > NewEnvironment) override |
Sets the environment to be used by the new process. | |
Public Member Functions inherited from clang::driver::Command | |
Command (const Action &Source, const Tool &Creator, ResponseFileSupport ResponseSupport, const char *Executable, const llvm::opt::ArgStringList &Arguments, ArrayRef< InputInfo > Inputs, ArrayRef< InputInfo > Outputs=std::nullopt, const char *PrependArg=nullptr) | |
Command (const Command &)=default | |
virtual | ~Command ()=default |
virtual void | Print (llvm::raw_ostream &OS, const char *Terminator, bool Quote, CrashReportInfo *CrashInfo=nullptr) const |
virtual int | Execute (ArrayRef< std::optional< StringRef > > Redirects, std::string *ErrMsg, bool *ExecutionFailed) const |
const Action & | getSource () const |
getSource - Return the Action which caused the creation of this job. | |
const Tool & | getCreator () const |
getCreator - Return the Tool which caused the creation of this job. | |
const ResponseFileSupport & | getResponseFileSupport () |
Returns the kind of response file supported by the current invocation. | |
void | setResponseFile (const char *FileName) |
Set to pass arguments via a response file when launching the command. | |
void | setInputFileList (llvm::opt::ArgStringList List) |
Set an input file list, necessary if you specified an RF_FileList response file support. | |
virtual void | setEnvironment (llvm::ArrayRef< const char * > NewEnvironment) |
Sets the environment to be used by the new process. | |
void | setRedirectFiles (const std::vector< std::optional< std::string > > &Redirects) |
void | replaceArguments (llvm::opt::ArgStringList List) |
void | replaceExecutable (const char *Exe) |
const char * | getExecutable () const |
const llvm::opt::ArgStringList & | getArguments () const |
const std::vector< InputInfo > & | getInputInfos () const |
const std::vector< std::string > & | getOutputFilenames () const |
std::optional< llvm::sys::ProcessStatistics > | getProcessStatistics () const |
Additional Inherited Members | |
Public Attributes inherited from clang::driver::Command | |
bool | PrintInputFilenames = false |
Whether to print the input filenames when executing. | |
bool | InProcess = false |
Whether the command will be executed in this process or not. | |
Protected Member Functions inherited from clang::driver::Command | |
void | PrintFileNames () const |
Optionally print the filenames to be compiled. | |
Use the CC1 tool callback when available, to avoid creating a new process.
CC1Command::CC1Command | ( | const Action & | Source, |
const Tool & | Creator, | ||
ResponseFileSupport | ResponseSupport, | ||
const char * | Executable, | ||
const llvm::opt::ArgStringList & | Arguments, | ||
ArrayRef< InputInfo > | Inputs, | ||
ArrayRef< InputInfo > | Outputs = std::nullopt , |
||
const char * | PrependArg = nullptr |
||
) |
Definition at line 392 of file Job.cpp.
References clang::driver::Command::InProcess.
|
overridevirtual |
Reimplemented from clang::driver::Command.
Definition at line 410 of file Job.cpp.
References D, clang::driver::Command::Execute(), clang::driver::Command::getArguments(), clang::driver::Command::getCreator(), clang::driver::ToolChain::getDriver(), clang::driver::Command::getExecutable(), clang::driver::Tool::getToolChain(), clang::driver::Command::InProcess, and clang::driver::Command::PrintFileNames().
|
overridevirtual |
Reimplemented from clang::driver::Command.
Definition at line 403 of file Job.cpp.
References clang::driver::Command::InProcess, and clang::driver::Command::Print().
|
overridevirtual |
Sets the environment to be used by the new process.
NewEnvironment | An array of environment variables. |
Reimplemented from clang::driver::Command.