clang
15.0.0git
|
Driver - Encapsulate logic for constructing compilation processes from a set of gcc-driver-like command line arguments. More...
#include "clang/Driver/Driver.h"
Classes | |
struct | CompilationDiagnosticReport |
Contains the files in the compilation diagnostic report generated by generateCompilationDiagnostics. More... | |
Public Types | |
enum | OpenMPRuntimeKind { OMPRT_Unknown, OMPRT_OMP, OMPRT_GOMP, OMPRT_IOMP5 } |
typedef SmallVector< std::string, 4 > | prefix_list |
A prefix directory used to emulate a limited subset of GCC's '-Bprefix' functionality. More... | |
using | InputTy = std::pair< types::ID, const llvm::opt::Arg * > |
An input type and its arguments. More... | |
using | InputList = SmallVector< InputTy, 16 > |
A list of inputs and their types for the given arguments. More... | |
typedef int(* | CC1ToolFunc) (SmallVectorImpl< const char * > &ArgV) |
Pointer to the ExecuteCC1Tool function, if available. More... | |
Public Member Functions | |
DiagnosticBuilder | Diag (unsigned DiagID) const |
bool | CCCIsCXX () const |
Whether the driver should follow g++ like behavior. More... | |
bool | CCCIsCPP () const |
Whether the driver is just the preprocessor. More... | |
bool | CCCIsCC () const |
Whether the driver should follow gcc like behavior. More... | |
bool | IsCLMode () const |
Whether the driver should follow cl.exe like behavior. More... | |
bool | IsFlangMode () const |
Whether the driver should invoke flang for fortran inputs. More... | |
bool | IsDXCMode () const |
Whether the driver should follow dxc.exe like behavior. More... | |
phases::ID | getFinalPhase (const llvm::opt::DerivedArgList &DAL, llvm::opt::Arg **FinalPhaseArg=nullptr) const |
Driver (StringRef ClangExecutable, StringRef TargetTriple, DiagnosticsEngine &Diags, std::string Title="clang LLVM compiler", IntrusiveRefCntPtr< llvm::vfs::FileSystem > VFS=nullptr) | |
Accessors | |
const std::string & | getCCCGenericGCCName () const |
Name to use when invoking gcc/g++. More... | |
const std::string & | getConfigFile () const |
const llvm::opt::OptTable & | getOpts () const |
DiagnosticsEngine & | getDiags () const |
llvm::vfs::FileSystem & | getVFS () const |
bool | getCheckInputsExist () const |
void | setCheckInputsExist (bool Value) |
bool | getProbePrecompiled () const |
void | setProbePrecompiled (bool Value) |
void | setTargetAndMode (const ParsedClangName &TM) |
const std::string & | getTitle () |
void | setTitle (std::string Value) |
std::string | getTargetTriple () const |
const char * | getClangProgramPath () const |
Get the path to the main clang executable. More... | |
const char * | getInstalledDir () const |
Get the path to where the clang executable was installed. More... | |
void | setInstalledDir (StringRef Value) |
bool | isSaveTempsEnabled () const |
bool | isSaveTempsObj () const |
bool | embedBitcodeEnabled () const |
bool | embedBitcodeInObject () const |
bool | embedBitcodeMarkerOnly () const |
OpenMPRuntimeKind | getOpenMPRuntime (const llvm::opt::ArgList &Args) const |
Compute the desired OpenMP runtime from the flags provided. More... | |
Primary Functionality | |
void | CreateOffloadingDeviceToolChains (Compilation &C, InputList &Inputs) |
CreateOffloadingDeviceToolChains - create all the toolchains required to support offloading devices given the programming models specified in the current compilation. More... | |
Compilation * | BuildCompilation (ArrayRef< const char * > Args) |
BuildCompilation - Construct a compilation object for a command line argument vector. More... | |
llvm::opt::InputArgList | ParseArgStrings (ArrayRef< const char * > Args, bool IsClCompatMode, bool &ContainsError) |
ParseArgStrings - Parse the given list of strings into an ArgList. More... | |
void | BuildInputs (const ToolChain &TC, llvm::opt::DerivedArgList &Args, InputList &Inputs) const |
BuildInputs - Construct the list of inputs and their types from the given arguments. More... | |
void | BuildActions (Compilation &C, llvm::opt::DerivedArgList &Args, const InputList &Inputs, ActionList &Actions) const |
BuildActions - Construct the list of actions to perform for the given arguments, which are only done for a single architecture. More... | |
void | BuildUniversalActions (Compilation &C, const ToolChain &TC, const InputList &BAInputs) const |
BuildUniversalActions - Construct the list of actions to perform for the given arguments, which may require a universal build. More... | |
Action * | BuildOffloadingActions (Compilation &C, llvm::opt::DerivedArgList &Args, const InputTy &Input, Action *HostAction) const |
BuildOffloadingActions - Construct the list of actions to perform for the offloading toolchain that will be embedded in the host. More... | |
llvm::DenseSet< StringRef > | getOffloadArchs (Compilation &C, const llvm::opt::DerivedArgList &Args, Action::OffloadKind Kind, const ToolChain *TC) const |
Returns the set of bound architectures active for this offload kind. More... | |
bool | DiagnoseInputExistence (const llvm::opt::DerivedArgList &Args, StringRef Value, types::ID Ty, bool TypoCorrect) const |
Check that the file referenced by Value exists. More... | |
void | BuildJobs (Compilation &C) const |
BuildJobs - Bind actions to concrete tools and translate arguments to form the list of jobs to run. More... | |
int | ExecuteCompilation (Compilation &C, SmallVectorImpl< std::pair< int, const Command * > > &FailingCommands) |
ExecuteCompilation - Execute the compilation according to the command line arguments and return an appropriate exit code. More... | |
void | generateCompilationDiagnostics (Compilation &C, const Command &FailingCommand, StringRef AdditionalInformation="", CompilationDiagnosticReport *GeneratedReport=nullptr) |
generateCompilationDiagnostics - Generate diagnostics information including preprocessed source file(s). More... | |
Static Public Member Functions | |
static std::string | GetResourcesPath (StringRef BinaryPath, StringRef CustomResourceDir="") |
Takes the path to a binary that's either in bin/ or lib/ and returns the path to clang's resource directory. More... | |
static bool | GetReleaseVersion (StringRef Str, unsigned &Major, unsigned &Minor, unsigned &Micro, bool &HadExtra) |
GetReleaseVersion - Parse (([0-9]+)(. More... | |
static bool | GetReleaseVersion (StringRef Str, MutableArrayRef< unsigned > Digits) |
Parse digits from a string Str and fulfill Digits with the parsed numbers. More... | |
static bool | getDefaultModuleCachePath (SmallVectorImpl< char > &Result) |
Compute the default -fmodule-cache-path. More... | |
Public Attributes | |
std::string | Name |
The name the driver was invoked as. More... | |
std::string | Dir |
The path the driver executable was in, as invoked from the command line. More... | |
std::string | ClangExecutable |
The original path to the clang executable. More... | |
ParsedClangName | ClangNameParts |
Target and driver mode components extracted from clang executable name. More... | |
std::string | InstalledDir |
The path to the installed clang directory, if any. More... | |
std::string | ResourceDir |
The path to the compiler resource directory. More... | |
std::string | SystemConfigDir |
System directory for config files. More... | |
std::string | UserConfigDir |
User directory for config files. More... | |
prefix_list | PrefixDirs |
std::string | SysRoot |
sysroot, if present More... | |
std::string | DyldPrefix |
Dynamic loader prefix, if present. More... | |
std::string | DriverTitle |
Driver title to use with help. More... | |
std::string | HostBits |
Information about the host which can be overridden by the user. More... | |
std::string | HostMachine |
std::string | HostSystem |
std::string | HostRelease |
std::string | CCPrintStatReportFilename |
The file to log CC_PRINT_PROC_STAT_FILE output to, if enabled. More... | |
std::string | CCPrintOptionsFilename |
The file to log CC_PRINT_OPTIONS output to, if enabled. More... | |
std::string | CCPrintHeadersFilename |
The file to log CC_PRINT_HEADERS output to, if enabled. More... | |
std::string | CCLogDiagnosticsFilename |
The file to log CC_LOG_DIAGNOSTICS output to, if enabled. More... | |
unsigned | CCCPrintBindings: 1 |
Only print tool bindings, don't build any jobs. More... | |
unsigned | CCPrintOptions: 1 |
Set CC_PRINT_OPTIONS mode, which is like -v but logs the commands to CCPrintOptionsFilename or to stderr. More... | |
unsigned | CCPrintHeaders: 1 |
Set CC_PRINT_HEADERS mode, which causes the frontend to log header include information to CCPrintHeadersFilename or to stderr. More... | |
unsigned | CCLogDiagnostics: 1 |
Set CC_LOG_DIAGNOSTICS mode, which causes the frontend to log diagnostics to CCLogDiagnosticsFilename or to stderr, in a stable machine readable format. More... | |
unsigned | CCGenDiagnostics: 1 |
Whether the driver is generating diagnostics for debugging purposes. More... | |
unsigned | CCPrintProcessStats: 1 |
Set CC_PRINT_PROC_STAT mode, which causes the driver to dump performance report to CC_PRINT_PROC_STAT_FILE or to stdout. More... | |
CC1ToolFunc | CC1Main = nullptr |
unsigned | GenReproducer: 1 |
Force clang to emit reproducer for driver invocation. More... | |
Helper Methods | |
void | PrintActions (const Compilation &C) const |
PrintActions - Print the list of actions. More... | |
void | PrintHelp (bool ShowHidden) const |
PrintHelp - Print the help text. More... | |
void | PrintVersion (const Compilation &C, raw_ostream &OS) const |
PrintVersion - Print the driver version. More... | |
std::string | GetFilePath (StringRef Name, const ToolChain &TC) const |
GetFilePath - Lookup Name in the list of file search paths. More... | |
std::string | GetProgramPath (StringRef Name, const ToolChain &TC) const |
GetProgramPath - Lookup Name in the list of program search paths. More... | |
void | HandleAutocompletions (StringRef PassedFlags) const |
HandleAutocompletions - Handle –autocomplete by searching and printing possible flags, descriptions, and its arguments. More... | |
bool | HandleImmediateArgs (const Compilation &C) |
HandleImmediateArgs - Handle any arguments which should be treated before building actions or binding tools. More... | |
Action * | ConstructPhaseAction (Compilation &C, const llvm::opt::ArgList &Args, phases::ID Phase, Action *Input, Action::OffloadKind TargetDeviceOffloadKind=Action::OFK_None) const |
ConstructAction - Construct the appropriate action to do for Phase on the Input , taking in to account arguments like -fsyntax-only or –analyze. More... | |
InputInfoList | BuildJobsForAction (Compilation &C, const Action *A, const ToolChain *TC, StringRef BoundArch, bool AtTopLevel, bool MultipleArchs, const char *LinkingOutput, std::map< std::pair< const Action *, std::string >, InputInfoList > &CachedResults, Action::OffloadKind TargetDeviceOffloadKind) const |
BuildJobsForAction - Construct the jobs to perform for the action A and return an InputInfo for the result of running A . More... | |
const char * | getDefaultImageName () const |
Returns the default name for linked images (e.g., "a.out"). More... | |
const char * | GetNamedOutputPath (Compilation &C, const JobAction &JA, const char *BaseInput, StringRef BoundArch, bool AtTopLevel, bool MultipleArchs, StringRef NormalizedTriple) const |
GetNamedOutputPath - Return the name to use for the output of the action JA . More... | |
std::string | GetTemporaryPath (StringRef Prefix, StringRef Suffix) const |
GetTemporaryPath - Return the pathname of a temporary file to use as part of compilation; the file will have the given prefix and suffix. More... | |
std::string | GetTemporaryDirectory (StringRef Prefix) const |
GetTemporaryDirectory - Return the pathname of a temporary directory to use as part of compilation; the directory will have the given prefix. More... | |
std::string | GetClPchPath (Compilation &C, StringRef BaseName) const |
Return the pathname of the pch file in clang-cl mode. More... | |
bool | ShouldUseClangCompiler (const JobAction &JA) const |
ShouldUseClangCompiler - Should the clang compiler be used to handle this action. More... | |
bool | ShouldUseFlangCompiler (const JobAction &JA) const |
ShouldUseFlangCompiler - Should the flang compiler be used to handle this action. More... | |
bool | ShouldEmitStaticLibrary (const llvm::opt::ArgList &Args) const |
ShouldEmitStaticLibrary - Should the linker emit a static library. More... | |
bool | hasHeaderMode () const |
Returns true if the user has indicated a C++20 header unit mode. More... | |
ModuleHeaderMode | getModuleHeaderMode () const |
Get the mode for handling headers as set by fmodule-header{=}. More... | |
bool | isUsingLTO (bool IsOffload=false) const |
Returns true if we are performing any kind of LTO. More... | |
LTOKind | getLTOMode (bool IsOffload=false) const |
Get the specific kind of LTO being performed. More... | |
Driver - Encapsulate logic for constructing compilation processes from a set of gcc-driver-like command line arguments.
typedef int(* clang::driver::Driver::CC1ToolFunc) (SmallVectorImpl< const char * > &ArgV) |
using clang::driver::Driver::InputList = SmallVector<InputTy, 16> |
using clang::driver::Driver::InputTy = std::pair<types::ID, const llvm::opt::Arg *> |
typedef SmallVector<std::string, 4> clang::driver::Driver::prefix_list |
Driver::Driver | ( | StringRef | ClangExecutable, |
StringRef | TargetTriple, | ||
DiagnosticsEngine & | Diags, | ||
std::string | Title = "clang LLVM compiler" , |
||
IntrusiveRefCntPtr< llvm::vfs::FileSystem > | VFS = nullptr |
||
) |
Definition at line 190 of file Driver.cpp.
References ClangExecutable, Dir, GetResourcesPath(), InstalledDir, Name, P, ResourceDir, string(), SysRoot, SystemConfigDir, and UserConfigDir.
void Driver::BuildActions | ( | Compilation & | C, |
llvm::opt::DerivedArgList & | Args, | ||
const InputList & | Inputs, | ||
ActionList & | Actions | ||
) | const |
BuildActions - Construct the list of actions to perform for the given arguments, which are only done for a single architecture.
C | - The compilation that is being built. |
Args | - The input arguments. |
Actions | - The list to store the resulting actions onto. |
Definition at line 3969 of file Driver.cpp.
References Diag(), clang::driver::types::getCompilationPhases(), clang::driver::Action::OFK_OpenMP, and V.
Referenced by BuildUniversalActions(), and generateCompilationDiagnostics().
Compilation * Driver::BuildCompilation | ( | ArrayRef< const char * > | Args | ) |
BuildCompilation - Construct a compilation object for a command line argument vector.
Definition at line 1113 of file Driver.cpp.
References ClangExecutable, clang::driver::getDriverMode(), IsCLMode(), and ParseArgStrings().
Referenced by clang::IncrementalCompilerBuilder::create(), and clang::createInvocation().
void Driver::BuildInputs | ( | const ToolChain & | TC, |
llvm::opt::DerivedArgList & | Args, | ||
InputList & | Inputs | ||
) | const |
BuildInputs - Construct the list of inputs and their types from the given arguments.
TC | - The default host tool chain. |
Args | - The input arguments. |
Inputs | - The list to store the resulting compilation inputs onto. |
Definition at line 2387 of file Driver.cpp.
References CCCIsCPP(), CCCIsCXX(), CCGenDiagnostics, CXXHeaderUnitType(), Diag(), DiagnoseInputExistence(), clang::driver::Action::getKind(), getOpts(), clang::driver::types::getTypeName(), hasHeaderMode(), IsCLMode(), IsFlangMode(), clang::driver::options::LinkerInput, clang::driver::types::lookupCXXTypeForCType(), clang::driver::ToolChain::LookupTypeForExtension(), clang::driver::types::lookupTypeForTypeSpecifier(), MakeInputArg(), Previous, and clang::driver::types::TY_INVALID.
Referenced by generateCompilationDiagnostics().
void Driver::BuildJobs | ( | Compilation & | C | ) | const |
BuildJobs - Bind actions to concrete tools and translate arguments to form the list of jobs to run.
C | - The compilation that is being built. |
Definition at line 4606 of file Driver.cpp.
References clang::driver::Action::BindArchClass, BuildJobsForAction(), CCPrintProcessStats, CCPrintStatReportFilename, Cmd, clang::driver::Action::CompileJobClass, Diag(), getDefaultImageName(), clang::driver::Action::getInputs(), clang::driver::Action::getKind(), clang::driver::Action::getType(), clang::if(), clang::driver::Action::IfsMergeJobClass, clang::driver::LTOK_Thin, and clang::driver::Action::OFK_None.
Referenced by generateCompilationDiagnostics().
InputInfoList Driver::BuildJobsForAction | ( | Compilation & | C, |
const Action * | A, | ||
const ToolChain * | TC, | ||
StringRef | BoundArch, | ||
bool | AtTopLevel, | ||
bool | MultipleArchs, | ||
const char * | LinkingOutput, | ||
std::map< std::pair< const Action *, std::string >, InputInfoList > & | CachedResults, | ||
Action::OffloadKind | TargetDeviceOffloadKind | ||
) | const |
BuildJobsForAction - Construct the jobs to perform for the action A
and return an InputInfo for the result of running A
.
Will only construct jobs for a given (Action, ToolChain, BoundArch, DeviceKind) tuple once.
Definition at line 5117 of file Driver.cpp.
References GetTriplePlusArchString().
Referenced by BuildJobs().
Action * Driver::BuildOffloadingActions | ( | Compilation & | C, |
llvm::opt::DerivedArgList & | Args, | ||
const InputTy & | Input, | ||
Action * | HostAction | ||
) | const |
BuildOffloadingActions - Construct the list of actions to perform for the offloading toolchain that will be embedded in the host.
C | - The compilation that is being built. |
Args | - The input arguments. |
Input | - The input type and arguments |
HostAction | - The host action used in the offloading toolchain. |
Definition at line 4367 of file Driver.cpp.
References clang::driver::OffloadAction::DeviceDependences::add(), ConstructPhaseAction(), clang::driver::types::getCompilationPhases(), getFinalPhase(), clang::driver::Action::getInputs(), getOffloadArchs(), clang::driver::Action::getType(), clang::driver::types::isSrcFile(), clang::driver::phases::Link, clang::driver::Action::OFK_Cuda, clang::driver::Action::OFK_HIP, clang::driver::Action::OFK_Host, clang::driver::Action::OFK_None, clang::driver::Action::OFK_OpenMP, clang::driver::phases::Preprocess, and clang::driver::Action::setCannotBeCollapsedWithNextDependentAction().
void Driver::BuildUniversalActions | ( | Compilation & | C, |
const ToolChain & | TC, | ||
const InputList & | BAInputs | ||
) | const |
BuildUniversalActions - Construct the list of actions to perform for the given arguments, which may require a universal build.
C | - The compilation that is being built. |
TC | - The default host tool chain. |
Definition at line 2203 of file Driver.cpp.
References BuildActions(), clang::driver::types::canLipoType(), ContainsCompileOrAssembleAction(), Diag(), clang::driver::tools::darwin::getArchTypeForMachOArchName(), clang::driver::ToolChain::getDefaultUniversalArchName(), clang::driver::types::getTypeName(), and clang::driver::willEmitRemarks().
Referenced by generateCompilationDiagnostics().
|
inline |
|
inline |
Whether the driver is just the preprocessor.
Definition at line 204 of file Driver.h.
Referenced by BuildInputs(), CheckPreprocessingOptions(), and getFinalPhase().
|
inline |
Whether the driver should follow g++ like behavior.
Definition at line 201 of file Driver.h.
Referenced by BuildInputs(), constructHexagonLinkArgs(), clang::driver::tools::fuchsia::Linker::ConstructJob(), clang::driver::tools::nacltools::Linker::ConstructJob(), clang::driver::tools::minix::Linker::ConstructJob(), clang::driver::tools::aix::Linker::ConstructJob(), clang::driver::tools::netbsd::Linker::ConstructJob(), clang::driver::tools::dragonfly::Linker::ConstructJob(), clang::driver::tools::freebsd::Linker::ConstructJob(), clang::driver::tools::openbsd::Linker::ConstructJob(), clang::driver::tools::gnutools::Linker::ConstructJob(), clang::driver::tools::gcc::Common::ConstructJob(), getLibGccType(), and clang::driver::ToolChain::ShouldLinkCXXStdlib().
Action * Driver::ConstructPhaseAction | ( | Compilation & | C, |
const llvm::opt::ArgList & | Args, | ||
phases::ID | Phase, | ||
Action * | Input, | ||
Action::OffloadKind | TargetDeviceOffloadKind = Action::OFK_None |
||
) | const |
ConstructAction - Construct the appropriate action to do for Phase
on the Input
, taking in to account arguments like -fsyntax-only or –analyze.
Definition at line 4485 of file Driver.cpp.
References clang::driver::phases::Assemble, clang::driver::phases::Backend, CCGenDiagnostics, clang::driver::phases::Compile, clang::driver::types::getPrecompiledType(), clang::driver::types::getPreprocessedType(), clang::driver::Action::getType(), clang::driver::phases::IfsMerge, isUsingLTO(), clang::driver::phases::Link, clang::driver::Action::OFK_HIP, clang::driver::Action::OFK_None, clang::driver::phases::Precompile, clang::driver::phases::Preprocess, and clang::driver::types::TY_INVALID.
Referenced by BuildOffloadingActions().
void Driver::CreateOffloadingDeviceToolChains | ( | Compilation & | C, |
InputList & | Inputs | ||
) |
CreateOffloadingDeviceToolChains - create all the toolchains required to support offloading devices given the programming models specified in the current compilation.
Also, update the host tool chain kind accordingly.
Definition at line 725 of file Driver.cpp.
References Diag(), getHIPOffloadTargetTriple(), getNVIDIAOffloadTargetTriple(), getOffloadArchs(), getOpenMPRuntime(), clang::driver::ToolChain::getOpenMPTriple(), clang::getProcessorFromTargetID(), clang::driver::ToolChain::getTriple(), clang::IsAMDGpuArch(), clang::driver::types::isCuda(), clang::driver::types::isHIP(), clang::IsNVIDIAGpuArch(), clang::driver::Action::OFK_Cuda, clang::driver::Action::OFK_HIP, clang::driver::Action::OFK_Host, clang::driver::Action::OFK_OpenMP, OMPRT_IOMP5, OMPRT_OMP, string(), and clang::StringToCudaArch().
|
inline |
Definition at line 132 of file Driver.h.
References clang::DiagnosticsEngine::Report().
Referenced by clang::driver::SanitizerArgs::addArgs(), clang::driver::toolchains::DarwinClang::AddClangCXXStdlibIncludeArgs(), clang::driver::toolchains::CudaToolChain::addClangTargetOptions(), addCoveragePrefixMapArg(), clang::driver::CudaInstallationDetector::AddCudaIncludeArgs(), addDefaultIgnorelists(), clang::driver::toolchains::HIPSPVToolChain::AddHIPIncludeArgs(), clang::driver::RocmInstallationDetector::AddHIPIncludeArgs(), clang::driver::tools::addLinkerCompressDebugSectionsOption(), clang::driver::toolchains::DarwinClang::AddLinkRuntimeLibArgs(), clang::driver::tools::addMachineOutlinerArgs(), addMacroPrefixMapArg(), clang::driver::tools::addOpenMPDeviceRTL(), addPGOAndCoverageFlags(), addPgProfilingLinkArgs(), clang::driver::tools::ClangAs::AddX86TargetArgs(), clang::driver::toolchains::AVRToolChain::AVRToolChain(), BuildActions(), clang::driver::toolchains::MSVCToolChain::buildAssembler(), BuildInputs(), BuildJobs(), BuildUniversalActions(), clang::driver::tools::checkAMDGPUCodeObjectVersion(), checkARMArchName(), checkARMCPUName(), CheckCodeGenerationOptions(), clang::driver::CudaInstallationDetector::CheckCudaVersionSupportsArch(), checkDebugInfoOption(), clang::driver::toolchains::Darwin::CheckObjCARC(), CheckPreprocessingOptions(), checkRemarksOptions(), clang::driver::toolchains::HIPAMDToolChain::checkTargetID(), clang::driver::toolchains::AMDGPUToolChain::checkTargetID(), clang::driver::Compilation::CleanupFile(), CollectArgsForIntegratedAssembler(), CollectARMPACBTIOptions(), clang::driver::toolchains::HLSLToolChain::ComputeEffectiveClangTriple(), clang::driver::ToolChain::computeMSVCVersion(), computeTargetTriple(), clang::driver::tools::wasm::Linker::ConstructJob(), clang::driver::tools::hexagon::Assembler::ConstructJob(), clang::driver::tools::nacltools::Linker::ConstructJob(), clang::driver::tools::PScpu::Linker::ConstructJob(), clang::driver::tools::AVR::Linker::ConstructJob(), clang::driver::tools::gnutools::Linker::ConstructJob(), clang::driver::tools::gnutools::StaticLibTool::ConstructJob(), clang::driver::tools::darwin::StaticLibTool::ConstructJob(), clang::driver::tools::gcc::Common::ConstructJob(), clang::driver::tools::Clang::ConstructJob(), CreateOffloadingDeviceToolChains(), DecodeAArch64Features(), DiagnoseInputExistence(), clang::driver::Compilation::ExecuteCommand(), ExecuteCompilation(), findPassPlugin(), generateCompilationDiagnostics(), getARMFPUFeatures(), getARMHWDivFeatures(), getCSKYFPUFeatures(), clang::driver::toolchains::MipsLLVMToolChain::GetCXXStdlibType(), clang::driver::toolchains::NaClToolChain::GetCXXStdlibType(), clang::driver::toolchains::Fuchsia::GetCXXStdlibType(), clang::driver::toolchains::HexagonToolChain::GetCXXStdlibType(), clang::driver::ToolChain::GetCXXStdlibType(), getDebugFissionKind(), clang::driver::toolchains::HIPSPVToolChain::getHIPDeviceLibs(), clang::driver::toolchains::HIPAMDToolChain::getHIPDeviceLibs(), getHIPOffloadTargetTriple(), clang::driver::tools::wasm::Linker::getLinkerPath(), clang::driver::ToolChain::GetLinkerPath(), clang::driver::toolchains::MachO::getLinkerVersion(), GetNamedOutputPath(), getNVIDIAOffloadTargetTriple(), getOffloadTargetTriple(), getOpenMPRuntime(), getRISCFeaturesFromMcpu(), clang::driver::toolchains::Fuchsia::GetRuntimeLibType(), clang::driver::toolchains::DarwinClang::GetRuntimeLibType(), clang::driver::ToolChain::GetRuntimeLibType(), getStaticPIE(), clang::driver::tools::getStatsFileName(), GetTemporaryDirectory(), GetTemporaryPath(), clang::driver::ToolChain::GetUnwindLibType(), handleHVXWarnings(), clang::driver::toolchains::MyriadToolChain::MyriadToolChain(), ParseArgStrings(), parseArgValues(), parseClangCLEHFlags(), parseCoverageFeatures(), parseLTOMode(), ParseMPreferVectorWidth(), parseSpecialCaseListArg(), clang::driver::toolchains::PPCLinuxToolChain::PPCLinuxToolChain(), clang::driver::toolchains::PS4PS5Base::PS4PS5Base(), RenderARCMigrateToolOptions(), RenderDebugInfoCompressionArgs(), renderDebugOptions(), RenderDiagnosticsOptions(), renderDwarfFormat(), clang::driver::tools::gcc::Compiler::RenderExtraToolArgs(), RenderFloatingPointOptions(), RenderModulesOptions(), RenderObjCOptions(), RenderSSPOptions(), RenderTrivialAutoVarInitOptions(), clang::driver::RocmInstallationDetector::RocmInstallationDetector(), clang::driver::SanitizerArgs::SanitizerArgs(), SetRISCVSmallDataLimit(), clang::driver::toolchains::Darwin::TranslateArgs(), validateSpecialCaseListFormat(), and clang::driver::XRayArgs::XRayArgs().
bool Driver::DiagnoseInputExistence | ( | const llvm::opt::DerivedArgList & | Args, |
StringRef | Value, | ||
types::ID | Ty, | ||
bool | TypoCorrect | ||
) | const |
Check that the file referenced by Value exists.
If it doesn't, issue a diagnostic and return false. If TypoCorrect is true and the file does not exist, see if it looks like a likely typo for a flag and if so print a "did you mean" blurb.
Definition at line 2291 of file Driver.cpp.
References Diag(), getCheckInputsExist(), getOpts(), getVFS(), IsCLMode(), and string().
Referenced by BuildInputs().
|
inline |
|
inline |
|
inline |
int Driver::ExecuteCompilation | ( | Compilation & | C, |
SmallVectorImpl< std::pair< int, const Command * > > & | FailingCommands | ||
) |
ExecuteCompilation - Execute the compilation according to the command line arguments and return an appropriate exit code.
This routine handles additional processing that must be done in addition to just running the subprocesses, for example reporting errors, setting up response files, removing temporary files, etc.
Definition at line 1685 of file Driver.cpp.
References Diag(), clang::driver::Command::getCreator(), clang::driver::Tool::getShortName(), clang::driver::Command::getSource(), clang::DiagnosticsEngine::hasErrorOccurred(), clang::driver::Tool::hasGoodDiagnostics(), and isSaveTempsEnabled().
void Driver::generateCompilationDiagnostics | ( | Compilation & | C, |
const Command & | FailingCommand, | ||
StringRef | AdditionalInformation = "" , |
||
CompilationDiagnosticReport * | GeneratedReport = nullptr |
||
) |
generateCompilationDiagnostics - Generate diagnostics information including preprocessed source file(s).
Definition at line 1484 of file Driver.cpp.
References BuildActions(), BuildInputs(), BuildJobs(), BuildUniversalActions(), CCGenDiagnostics, Cmd, Diag(), clang::driver::CrashReportInfo::Filename, clang::getClangFullVersion(), clang::driver::Command::getCreator(), clang::driver::types::getPreprocessedType(), clang::driver::ToolChain::getTriple(), clang::DiagnosticErrorTrap::hasErrorOccurred(), clang::driver::Tool::isDsymutilJob(), clang::driver::Tool::isLinkJob(), Name, printArgList(), PrintVersion(), string(), clang::driver::Driver::CompilationDiagnosticReport::TemporaryFiles, and clang::driver::types::TY_INVALID.
|
inline |
Name to use when invoking gcc/g++.
Definition at line 354 of file Driver.h.
Referenced by clang::driver::tools::gcc::Common::ConstructJob().
|
inline |
Definition at line 364 of file Driver.h.
Referenced by DiagnoseInputExistence().
|
inline |
Get the path to the main clang executable.
Definition at line 379 of file Driver.h.
References ClangExecutable.
Referenced by clang::driver::tools::Clang::ConstructJob().
std::string Driver::GetClPchPath | ( | Compilation & | C, |
StringRef | BaseName | ||
) | const |
Return the pathname of the pch file in clang-cl mode.
Definition at line 5854 of file Driver.cpp.
References string().
Referenced by GetNamedOutputPath().
|
inline |
const char * Driver::getDefaultImageName | ( | ) | const |
Returns the default name for linked images (e.g., "a.out").
Definition at line 5450 of file Driver.cpp.
References normalize(), and clang::Target.
Referenced by BuildJobs(), and GetNamedOutputPath().
|
static |
Compute the default -fmodule-cache-path.
Definition at line 3596 of file Clang.cpp.
Referenced by RenderModulesOptions().
|
inline |
Definition at line 360 of file Driver.h.
Referenced by clang::driver::toolchains::HIPAMDToolChain::getHIPDeviceLibs(), clang::driver::toolchains::HIPAMDToolChain::HIPAMDToolChain(), RenderDiagnosticsOptions(), and shouldSkipSanitizeOption().
std::string Driver::GetFilePath | ( | StringRef | Name, |
const ToolChain & | TC | ||
) | const |
GetFilePath - Lookup Name
in the list of file search paths.
TC | - The tool chain for additional information on directories to search. |
Definition at line 5730 of file Driver.cpp.
Referenced by HandleImmediateArgs().
phases::ID Driver::getFinalPhase | ( | const llvm::opt::DerivedArgList & | DAL, |
llvm::opt::Arg ** | FinalPhaseArg = nullptr |
||
) | const |
Definition at line 329 of file Driver.cpp.
References clang::driver::phases::Assemble, clang::driver::phases::Backend, CCCIsCPP(), CCGenDiagnostics, clang::driver::phases::Compile, clang::driver::phases::IfsMerge, clang::driver::phases::Link, clang::driver::phases::Precompile, and clang::driver::phases::Preprocess.
Referenced by BuildOffloadingActions(), and clang::driver::types::getCompilationPhases().
|
inline |
Get the path to where the clang executable was installed.
Definition at line 384 of file Driver.h.
References Dir, and InstalledDir.
Referenced by clang::driver::toolchains::HexagonToolChain::AddClangSystemIncludeArgs(), clang::driver::toolchains::Linux::computeSysRoot(), findClangRelativeSysroot(), clang::driver::toolchains::HexagonToolChain::getHexagonLibraryPaths(), and clang::driver::toolchains::HexagonToolChain::HexagonToolChain().
Get the specific kind of LTO being performed.
Definition at line 624 of file Driver.h.
Referenced by clang::driver::tools::fuchsia::Linker::ConstructJob(), clang::driver::tools::cloudabi::Linker::ConstructJob(), clang::driver::tools::ananas::Linker::ConstructJob(), clang::driver::tools::freebsd::Linker::ConstructJob(), clang::driver::tools::gnutools::Linker::ConstructJob(), clang::driver::tools::Clang::ConstructJob(), and isUsingLTO().
|
inline |
const char * Driver::GetNamedOutputPath | ( | Compilation & | C, |
const JobAction & | JA, | ||
const char * | BaseInput, | ||
StringRef | BoundArch, | ||
bool | AtTopLevel, | ||
bool | MultipleArchs, | ||
StringRef | NormalizedTriple | ||
) | const |
GetNamedOutputPath - Return the name to use for the output of the action JA
.
The result is appended to the compilation's list of temporary or result files, as appropriate.
C | - The compilation. |
JA | - The action of interest. |
BaseInput | - The original input file that this action was triggered by. |
BoundArch | - The bound architecture. |
AtTopLevel | - Whether this is a "top-level" action. |
MultipleArchs | - Whether multiple -arch options were supplied. |
NormalizedTriple | - The normalized triple of the relevant target. |
Definition at line 5499 of file Driver.cpp.
References clang::driver::types::appendSuffixForType(), CCGenDiagnostics, Diag(), End, GetClPchPath(), getDefaultImageName(), clang::driver::Action::getOffloadingDeviceKind(), GetTemporaryDirectory(), GetTemporaryPath(), clang::driver::Action::getType(), clang::driver::types::getTypeTempSuffix(), getVFS(), HasPreprocessOutput(), IsCLMode(), isSaveTempsEnabled(), isSaveTempsObj(), MakeCLOutputFilename(), Name, clang::driver::Action::OFK_HIP, Split, and string().
llvm::DenseSet< StringRef > Driver::getOffloadArchs | ( | Compilation & | C, |
const llvm::opt::DerivedArgList & | Args, | ||
Action::OffloadKind | Kind, | ||
const ToolChain * | TC | ||
) | const |
Returns the set of bound architectures active for this offload kind.
If there are no bound architctures we return a set containing only the empty string.
Definition at line 4312 of file Driver.cpp.
References clang::CudaArchToString(), clang::CudaDefault, getCanonicalArchString(), getConflictOffloadArchCombination(), clang::driver::ToolChain::getTriple(), clang::HIPDefault, clang::driver::Action::OFK_Cuda, clang::driver::Action::OFK_HIP, and clang::driver::Action::OFK_OpenMP.
Referenced by BuildOffloadingActions(), and CreateOffloadingDeviceToolChains().
Driver::OpenMPRuntimeKind Driver::getOpenMPRuntime | ( | const llvm::opt::ArgList & | Args | ) | const |
Compute the desired OpenMP runtime from the flags provided.
Definition at line 700 of file Driver.cpp.
References Diag(), OMPRT_GOMP, OMPRT_IOMP5, OMPRT_OMP, and OMPRT_Unknown.
Referenced by clang::driver::tools::MinGW::Linker::ConstructJob(), clang::driver::tools::Clang::ConstructJob(), and CreateOffloadingDeviceToolChains().
|
inline |
Definition at line 358 of file Driver.h.
References clang::driver::getDriverOptTable().
Referenced by BuildInputs(), DiagnoseInputExistence(), getStaticPIE(), HandleAutocompletions(), ParseArgStrings(), PrintHelp(), clang::driver::toolchains::HLSLToolChain::TranslateArgs(), clang::driver::toolchains::MSVCToolChain::TranslateArgs(), clang::driver::toolchains::HIPAMDToolChain::TranslateArgs(), clang::driver::toolchains::AMDGPUToolChain::TranslateArgs(), clang::driver::toolchains::AMDGPUOpenMPToolChain::TranslateArgs(), clang::driver::toolchains::CudaToolChain::TranslateArgs(), clang::driver::toolchains::MachO::TranslateArgs(), clang::driver::toolchains::Generic_GCC::TranslateArgs(), clang::driver::toolchains::Darwin::TranslateArgs(), clang::driver::ToolChain::TranslateOpenMPTargetArgs(), and clang::driver::ToolChain::TranslateXarchArgs().
|
inline |
std::string Driver::GetProgramPath | ( | StringRef | Name, |
const ToolChain & | TC | ||
) | const |
GetProgramPath - Lookup Name
in the list of program search paths.
TC | - The provided tool chain for additional information on directories to search. |
Definition at line 5790 of file Driver.cpp.
Referenced by HandleImmediateArgs().
|
static |
Parse digits from a string Str
and fulfill Digits
with the parsed numbers.
This method assumes that the max number of digits to look for is equal to Digits.size().
Definition at line 6186 of file Driver.cpp.
|
static |
GetReleaseVersion - Parse (([0-9]+)(.
([0-9]+)(.([0-9]+)?))?)? and return the grouped values as integers. Numbers which are not provided are set to 0.
([0-9]+)(.([0-9]+)?))?)? and return the grouped values as integers. Numbers which are not provided are set to 0.
Definition at line 6148 of file Driver.cpp.
Referenced by getSystemOrSDKMacOSVersion().
|
static |
Takes the path to a binary that's either in bin/ or lib/ and returns the path to clang's resource directory.
Definition at line 164 of file Driver.cpp.
Referenced by Driver().
|
inline |
Definition at line 376 of file Driver.h.
Referenced by clang::driver::toolchains::RISCVToolChain::hasGCCToolchain().
std::string Driver::GetTemporaryDirectory | ( | StringRef | Prefix | ) | const |
GetTemporaryDirectory - Return the pathname of a temporary directory to use as part of compilation; the directory will have the given prefix.
Definition at line 5843 of file Driver.cpp.
References Diag(), and string().
Referenced by GetNamedOutputPath().
std::string Driver::GetTemporaryPath | ( | StringRef | Prefix, |
StringRef | Suffix | ||
) | const |
GetTemporaryPath - Return the pathname of a temporary file to use as part of compilation; the file will have the given prefix and suffix.
GCC goes to extra lengths here to be a bit more robust.
Definition at line 5832 of file Driver.cpp.
References Diag(), and string().
Referenced by GetNamedOutputPath(), and clang::driver::tools::GetSDLFromOffloadArchive().
|
inline |
Definition at line 373 of file Driver.h.
References DriverTitle.
|
inline |
Definition at line 362 of file Driver.h.
Referenced by clang::driver::toolchains::Hurd::AddClangSystemIncludeArgs(), clang::driver::toolchains::Linux::AddClangSystemIncludeArgs(), addDefaultIgnorelists(), clang::driver::toolchains::Generic_GCC::addLibCxxIncludePaths(), addPGOAndCoverageFlags(), clang::driver::tools::Clang::ConstructJob(), DiagnoseInputExistence(), findAndroidArmMultilibs(), findBiarchMultilibs(), findCSKYMultilibs(), findMSP430Multilibs(), findRISCVBareMetalMultilibs(), findRISCVMultilibs(), clang::driver::toolchains::FreeBSD::FreeBSD(), clang::driver::toolchains::HexagonToolChain::getHexagonTargetDir(), clang::driver::toolchains::Linux::getMultiarchTriple(), clang::driver::toolchains::Hurd::getMultiarchTriple(), GetNamedOutputPath(), clang::driver::ToolChain::getVFS(), HandleImmediateArgs(), clang::driver::toolchains::HexagonToolChain::HexagonToolChain(), clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::init(), clang::driver::toolchains::Linux::Linux(), parseSpecialCaseListArg(), and validateSpecialCaseListFormat().
void Driver::HandleAutocompletions | ( | StringRef | PassedFlags | ) | const |
HandleAutocompletions - Handle –autocomplete by searching and printing possible flags, descriptions, and its arguments.
Definition at line 1814 of file Driver.cpp.
References clang::driver::options::FlangOnlyOption, getOpts(), clang::driver::options::Ignored, IsFlangMode(), clang::driver::options::NoDriverOption, string(), and clang::driver::options::Unsupported.
Referenced by HandleImmediateArgs().
bool Driver::HandleImmediateArgs | ( | const Compilation & | C | ) |
HandleImmediateArgs - Handle any arguments which should be treated before building actions or binding tools.
Definition at line 1900 of file Driver.cpp.
References clang::driver::ToolChain::ComputeEffectiveClangTriple(), clang::driver::Multilib::gccSuffix(), clang::driver::ToolChain::getCompilerRT(), clang::driver::ToolChain::getCompilerRTPath(), GetFilePath(), clang::driver::ToolChain::getFilePaths(), clang::driver::ToolChain::getMultiarchTriple(), clang::driver::ToolChain::getMultilib(), clang::driver::ToolChain::getMultilibs(), GetProgramPath(), clang::driver::ToolChain::getProgramPaths(), clang::driver::ToolChain::GetRuntimeLibType(), clang::driver::ToolChain::getRuntimePaths(), clang::driver::ToolChain::getTriple(), clang::driver::ToolChain::getTripleString(), getVFS(), HandleAutocompletions(), PrefixDirs, PrintDiagnosticCategories(), PrintHelp(), clang::driver::ToolChain::printVerboseInfo(), PrintVersion(), ResourceDir, clang::driver::ToolChain::RLT_CompilerRT, clang::driver::ToolChain::RLT_Libgcc, string(), SysRoot, SystemConfigDir, and UserConfigDir.
|
inline |
Returns true if the user has indicated a C++20 header unit mode.
Definition at line 613 of file Driver.h.
References clang::driver::HeaderMode_None.
Referenced by BuildInputs().
|
inline |
Whether the driver should follow cl.exe like behavior.
Definition at line 210 of file Driver.h.
Referenced by BuildCompilation(), BuildInputs(), CheckPreprocessingOptions(), clang::driver::tools::Clang::ConstructJob(), DiagnoseInputExistence(), clang::driver::Compilation::ExecuteJobs(), GetNamedOutputPath(), ParseArgStrings(), and PrintHelp().
|
inline |
|
inline |
Whether the driver should invoke flang for fortran inputs.
Other modes fall back to calling gcc which in turn calls gfortran.
Definition at line 214 of file Driver.h.
Referenced by BuildInputs(), clang::driver::tools::gnutools::Linker::ConstructJob(), HandleAutocompletions(), clang::driver::ToolChain::LookupTypeForExtension(), ParseArgStrings(), PrintHelp(), PrintVersion(), and clang::driver::ToolChain::SelectTool().
|
inline |
Definition at line 391 of file Driver.h.
Referenced by ExecuteCompilation(), GetNamedOutputPath(), clang::driver::Compilation::initCompilationForDiagnostics(), and clang::driver::Compilation::~Compilation().
|
inline |
Definition at line 392 of file Driver.h.
Referenced by GetNamedOutputPath().
Returns true if we are performing any kind of LTO.
Definition at line 619 of file Driver.h.
References getLTOMode(), and clang::driver::LTOK_None.
Referenced by clang::driver::tools::fuchsia::Linker::ConstructJob(), clang::driver::tools::cloudabi::Linker::ConstructJob(), clang::driver::tools::ananas::Linker::ConstructJob(), clang::driver::tools::freebsd::Linker::ConstructJob(), clang::driver::tools::gnutools::Linker::ConstructJob(), clang::driver::tools::Clang::ConstructJob(), clang::driver::tools::LinkerWrapper::ConstructJob(), ConstructPhaseAction(), and clang::driver::SanitizerArgs::SanitizerArgs().
InputArgList Driver::ParseArgStrings | ( | ArrayRef< const char * > | Args, |
bool | IsClCompatMode, | ||
bool & | ContainsError | ||
) |
ParseArgStrings - Parse the given list of strings into an ArgList.
Definition at line 245 of file Driver.cpp.
References Diag(), clang::driver::options::FlangOnlyOption, clang::DiagnosticsEngine::getDiagnosticLevel(), getOpts(), IsCLMode(), IsFlangMode(), clang::DiagnosticsEngine::Report(), string(), clang::driver::options::Unsupported, and clang::DiagnosticsEngine::Warning.
Referenced by BuildCompilation().
void Driver::PrintActions | ( | const Compilation & | C | ) | const |
PrintActions - Print the list of actions.
Definition at line 2187 of file Driver.cpp.
References PrintActions1().
void Driver::PrintHelp | ( | bool | ShowHidden | ) | const |
PrintHelp - Print the help text.
ShowHidden | - Show hidden options. |
Definition at line 1756 of file Driver.cpp.
References DriverTitle, clang::driver::options::FlangOnlyOption, clang::driver::options::FlangOption, getOpts(), IsCLMode(), IsFlangMode(), Name, clang::driver::options::NoDriverOption, and string().
Referenced by HandleImmediateArgs().
void Driver::PrintVersion | ( | const Compilation & | C, |
raw_ostream & | OS | ||
) | const |
PrintVersion - Print the driver version.
Definition at line 1777 of file Driver.cpp.
References clang::getClangFullVersion(), clang::getClangToolFullVersion(), clang::driver::ToolChain::getThreadModel(), clang::driver::ToolChain::getTripleString(), InstalledDir, IsFlangMode(), and clang::driver::ToolChain::isThreadModelSupported().
Referenced by generateCompilationDiagnostics(), and HandleImmediateArgs().
|
inline |
Definition at line 366 of file Driver.h.
Referenced by clang::IncrementalCompilerBuilder::create(), and clang::createInvocation().
|
inline |
Definition at line 389 of file Driver.h.
References InstalledDir, and string().
|
inline |
Definition at line 369 of file Driver.h.
Referenced by clang::createInvocation().
|
inline |
Definition at line 371 of file Driver.h.
References ClangNameParts.
|
inline |
bool Driver::ShouldEmitStaticLibrary | ( | const llvm::opt::ArgList & | Args | ) | const |
ShouldEmitStaticLibrary - Should the linker emit a static library.
Definition at line 6136 of file Driver.cpp.
ShouldUseClangCompiler - Should the clang compiler be used to handle this action.
Definition at line 6107 of file Driver.cpp.
References clang::driver::Action::input_begin(), clang::driver::types::isAcceptedByClang(), and clang::driver::Action::size().
ShouldUseFlangCompiler - Should the flang compiler be used to handle this action.
Definition at line 6122 of file Driver.cpp.
References clang::driver::Action::input_begin(), clang::driver::types::isAcceptedByFlang(), and clang::driver::Action::size().
CC1ToolFunc clang::driver::Driver::CC1Main = nullptr |
unsigned clang::driver::Driver::CCCPrintBindings |
unsigned clang::driver::Driver::CCGenDiagnostics |
Whether the driver is generating diagnostics for debugging purposes.
Definition at line 236 of file Driver.h.
Referenced by BuildInputs(), clang::driver::tools::Clang::ConstructJob(), ConstructPhaseAction(), generateCompilationDiagnostics(), getFinalPhase(), and GetNamedOutputPath().
unsigned clang::driver::Driver::CCLogDiagnostics |
Set CC_LOG_DIAGNOSTICS mode, which causes the frontend to log diagnostics to CCLogDiagnosticsFilename or to stderr, in a stable machine readable format.
Definition at line 233 of file Driver.h.
Referenced by clang::driver::tools::Clang::ConstructJob().
std::string clang::driver::Driver::CCLogDiagnosticsFilename |
The file to log CC_LOG_DIAGNOSTICS output to, if enabled.
Definition at line 192 of file Driver.h.
Referenced by clang::driver::tools::Clang::ConstructJob().
unsigned clang::driver::Driver::CCPrintHeaders |
Set CC_PRINT_HEADERS mode, which causes the frontend to log header include information to CCPrintHeadersFilename or to stderr.
Definition at line 228 of file Driver.h.
Referenced by clang::driver::tools::Clang::ConstructJob().
std::string clang::driver::Driver::CCPrintHeadersFilename |
The file to log CC_PRINT_HEADERS output to, if enabled.
Definition at line 189 of file Driver.h.
Referenced by clang::driver::tools::Clang::ConstructJob().
unsigned clang::driver::Driver::CCPrintOptions |
std::string clang::driver::Driver::CCPrintOptionsFilename |
unsigned clang::driver::Driver::CCPrintProcessStats |
Set CC_PRINT_PROC_STAT mode, which causes the driver to dump performance report to CC_PRINT_PROC_STAT_FILE or to stdout.
Definition at line 240 of file Driver.h.
Referenced by BuildJobs().
std::string clang::driver::Driver::CCPrintStatReportFilename |
The file to log CC_PRINT_PROC_STAT_FILE output to, if enabled.
Definition at line 183 of file Driver.h.
Referenced by BuildJobs().
std::string clang::driver::Driver::ClangExecutable |
The original path to the clang executable.
Definition at line 146 of file Driver.h.
Referenced by BuildCompilation(), Driver(), and getClangProgramPath().
ParsedClangName clang::driver::Driver::ClangNameParts |
Target and driver mode components extracted from clang executable name.
Definition at line 149 of file Driver.h.
Referenced by setTargetAndMode().
std::string clang::driver::Driver::Dir |
The path the driver executable was in, as invoked from the command line.
Definition at line 143 of file Driver.h.
Referenced by clang::driver::toolchains::Fuchsia::AddClangCXXStdlibIncludeArgs(), clang::driver::toolchains::NaClToolChain::AddClangSystemIncludeArgs(), addFortranRuntimeLibraryPath(), clang::driver::toolchains::NaClToolChain::addLibCxxIncludePaths(), clang::driver::toolchains::NetBSD::addLibCxxIncludePaths(), clang::driver::tools::addOpenMPDeviceRTL(), clang::driver::tools::AddStaticDeviceLibs(), Driver(), clang::driver::toolchains::Fuchsia::Fuchsia(), getInstalledDir(), clang::driver::toolchains::RISCVToolChain::hasGCCToolchain(), clang::driver::toolchains::MyriadToolChain::MyriadToolChain(), and clang::driver::toolchains::PS4PS5Base::PS4PS5Base().
std::string clang::driver::Driver::DriverTitle |
Driver title to use with help.
Definition at line 177 of file Driver.h.
Referenced by getTitle(), PrintHelp(), and setTitle().
std::string clang::driver::Driver::DyldPrefix |
Dynamic loader prefix, if present.
Definition at line 174 of file Driver.h.
Referenced by clang::driver::tools::fuchsia::Linker::ConstructJob(), and clang::driver::tools::gnutools::Linker::ConstructJob().
unsigned clang::driver::Driver::GenReproducer |
std::string clang::driver::Driver::HostBits |
std::string clang::driver::Driver::HostMachine |
std::string clang::driver::Driver::HostRelease |
std::string clang::driver::Driver::HostSystem |
std::string clang::driver::Driver::InstalledDir |
The path to the installed clang directory, if any.
Definition at line 152 of file Driver.h.
Referenced by clang::driver::toolchains::HexagonToolChain::addLibCxxIncludePaths(), clang::driver::toolchains::HexagonToolChain::addLibStdCxxIncludePaths(), constructHexagonLinkArgs(), Driver(), getInstalledDir(), clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::init(), PrintVersion(), and setInstalledDir().
std::string clang::driver::Driver::Name |
The name the driver was invoked as.
Definition at line 139 of file Driver.h.
Referenced by Driver(), generateCompilationDiagnostics(), GetNamedOutputPath(), and PrintHelp().
prefix_list clang::driver::Driver::PrefixDirs |
Definition at line 168 of file Driver.h.
Referenced by clang::driver::toolchains::HexagonToolChain::AddClangSystemIncludeArgs(), clang::driver::toolchains::HexagonToolChain::addLibCxxIncludePaths(), clang::driver::toolchains::HexagonToolChain::addLibStdCxxIncludePaths(), constructHexagonLinkArgs(), clang::driver::toolchains::HexagonToolChain::getHexagonLibraryPaths(), HandleImmediateArgs(), and clang::driver::toolchains::HexagonToolChain::HexagonToolChain().
std::string clang::driver::Driver::ResourceDir |
The path to the compiler resource directory.
Definition at line 155 of file Driver.h.
Referenced by clang::driver::toolchains::PPCLinuxToolChain::AddClangSystemIncludeArgs(), clang::driver::toolchains::PPCFreeBSDToolChain::AddClangSystemIncludeArgs(), clang::driver::toolchains::Hurd::AddClangSystemIncludeArgs(), clang::driver::toolchains::MipsLLVMToolChain::AddClangSystemIncludeArgs(), clang::driver::toolchains::Linux::AddClangSystemIncludeArgs(), clang::driver::toolchains::NaClToolChain::AddClangSystemIncludeArgs(), clang::driver::toolchains::Solaris::AddClangSystemIncludeArgs(), clang::driver::toolchains::CrossWindowsToolChain::AddClangSystemIncludeArgs(), clang::driver::toolchains::AIX::AddClangSystemIncludeArgs(), clang::driver::toolchains::OpenBSD::AddClangSystemIncludeArgs(), clang::driver::toolchains::HexagonToolChain::AddClangSystemIncludeArgs(), clang::driver::toolchains::Fuchsia::AddClangSystemIncludeArgs(), clang::driver::toolchains::DarwinClang::AddClangSystemIncludeArgs(), clang::driver::CudaInstallationDetector::AddCudaIncludeArgs(), addDefaultIgnorelists(), clang::driver::RocmInstallationDetector::AddHIPIncludeArgs(), clang::driver::tools::Clang::ConstructJob(), Driver(), HandleImmediateArgs(), and RenderModulesOptions().
std::string clang::driver::Driver::SysRoot |
sysroot, if present
Definition at line 171 of file Driver.h.
Referenced by clang::driver::toolchains::CrossWindowsToolChain::AddClangCXXStdlibIncludeArgs(), clang::driver::toolchains::Solaris::AddClangSystemIncludeArgs(), clang::driver::toolchains::CrossWindowsToolChain::AddClangSystemIncludeArgs(), clang::driver::toolchains::OpenBSD::AddClangSystemIncludeArgs(), clang::driver::toolchains::HexagonToolChain::AddClangSystemIncludeArgs(), clang::driver::toolchains::Fuchsia::AddClangSystemIncludeArgs(), clang::driver::toolchains::NetBSD::addLibCxxIncludePaths(), clang::driver::toolchains::HexagonToolChain::addLibCxxIncludePaths(), clang::driver::toolchains::MipsLLVMToolChain::computeSysRoot(), clang::driver::toolchains::Linux::computeSysRoot(), clang::driver::toolchains::BareMetal::computeSysRoot(), clang::driver::ToolChain::computeSysRoot(), constructHexagonLinkArgs(), clang::driver::tools::fuchsia::Linker::ConstructJob(), clang::driver::tools::cloudabi::Linker::ConstructJob(), clang::driver::tools::nacltools::Linker::ConstructJob(), clang::driver::tools::dragonfly::Linker::ConstructJob(), clang::driver::tools::ananas::Linker::ConstructJob(), clang::driver::tools::netbsd::Linker::ConstructJob(), clang::driver::tools::freebsd::Linker::ConstructJob(), clang::driver::tools::CrossWindows::Linker::ConstructJob(), clang::driver::tools::openbsd::Linker::ConstructJob(), clang::driver::tools::MinGW::Linker::ConstructJob(), clang::driver::tools::PScpu::Linker::ConstructJob(), clang::driver::tools::CSKY::Linker::ConstructJob(), clang::driver::tools::RISCV::Linker::ConstructJob(), clang::driver::tools::gnutools::Linker::ConstructJob(), clang::driver::tools::msp430::Linker::ConstructJob(), Driver(), clang::driver::toolchains::AVRToolChain::findAVRLibcInstallation(), clang::driver::toolchains::Fuchsia::Fuchsia(), clang::driver::Compilation::getSysRoot(), HandleImmediateArgs(), clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::init(), clang::driver::toolchains::MinGW::MinGW(), and testTriple().
std::string clang::driver::Driver::SystemConfigDir |
System directory for config files.
Definition at line 158 of file Driver.h.
Referenced by Driver(), and HandleImmediateArgs().
std::string clang::driver::Driver::UserConfigDir |
User directory for config files.
Definition at line 161 of file Driver.h.
Referenced by Driver(), and HandleImmediateArgs().