clang 20.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. | |
using | InputTy = std::pair< types::ID, const llvm::opt::Arg * > |
An input type and its arguments. | |
using | InputList = SmallVector< InputTy, 16 > |
A list of inputs and their types for the given arguments. | |
using | CC1ToolFunc = llvm::function_ref< int(SmallVectorImpl< const char * > &ArgV)> |
Pointer to the ExecuteCC1Tool function, if available. | |
Public Member Functions | |
DiagnosticBuilder | Diag (unsigned DiagID) const |
bool | CCCIsCXX () const |
Whether the driver should follow g++ like behavior. | |
bool | CCCIsCPP () const |
Whether the driver is just the preprocessor. | |
bool | CCCIsCC () const |
Whether the driver should follow gcc like behavior. | |
bool | IsCLMode () const |
Whether the driver should follow cl.exe like behavior. | |
bool | IsFlangMode () const |
Whether the driver should invoke flang for fortran inputs. | |
bool | IsDXCMode () const |
Whether the driver should follow dxc.exe like behavior. | |
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++. | |
llvm::ArrayRef< std::string > | getConfigFiles () 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) |
const char * | getPrependArg () const |
void | setPrependArg (const char *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. | |
bool | isSaveTempsEnabled () const |
bool | isSaveTempsObj () const |
bool | embedBitcodeEnabled () const |
bool | embedBitcodeInObject () const |
bool | embedBitcodeMarkerOnly () const |
bool | offloadHostOnly () const |
bool | offloadDeviceOnly () const |
void | setFlangF128MathLibrary (std::string name) |
StringRef | getFlangF128MathLibrary () const |
OpenMPRuntimeKind | getOpenMPRuntime (const llvm::opt::ArgList &Args) const |
Compute the desired OpenMP runtime from the flags provided. | |
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. | |
static bool | GetReleaseVersion (StringRef Str, unsigned &Major, unsigned &Minor, unsigned &Micro, bool &HadExtra) |
GetReleaseVersion - Parse (([0-9]+)(. | |
static bool | GetReleaseVersion (StringRef Str, MutableArrayRef< unsigned > Digits) |
Parse digits from a string Str and fulfill Digits with the parsed numbers. | |
static bool | getDefaultModuleCachePath (SmallVectorImpl< char > &Result) |
Compute the default -fmodule-cache-path. | |
Public Attributes | |
std::string | Name |
The name the driver was invoked as. | |
std::string | Dir |
The path the driver executable was in, as invoked from the command line. | |
std::string | ClangExecutable |
The original path to the clang executable. | |
ParsedClangName | ClangNameParts |
Target and driver mode components extracted from clang executable name. | |
std::string | ResourceDir |
The path to the compiler resource directory. | |
std::string | SystemConfigDir |
System directory for config files. | |
std::string | UserConfigDir |
User directory for config files. | |
prefix_list | PrefixDirs |
std::string | SysRoot |
sysroot, if present | |
std::string | DyldPrefix |
Dynamic loader prefix, if present. | |
std::string | DriverTitle |
Driver title to use with help. | |
std::string | HostBits |
Information about the host which can be overridden by the user. | |
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. | |
std::string | CCPrintInternalStatReportFilename |
The file to log CC_PRINT_INTERNAL_STAT_FILE output to, if enabled. | |
std::string | CCPrintOptionsFilename |
The file to log CC_PRINT_OPTIONS output to, if enabled. | |
std::string | CCPrintHeadersFilename |
The file to log CC_PRINT_HEADERS output to, if enabled. | |
std::string | CCLogDiagnosticsFilename |
The file to log CC_LOG_DIAGNOSTICS output to, if enabled. | |
unsigned | CCCPrintBindings: 1 |
Only print tool bindings, don't build any jobs. | |
unsigned | CCPrintOptions: 1 |
Set CC_PRINT_OPTIONS mode, which is like -v but logs the commands to CCPrintOptionsFilename or to stderr. | |
HeaderIncludeFormatKind | CCPrintHeadersFormat = HIFMT_None |
The format of the header information that is emitted. | |
HeaderIncludeFilteringKind | CCPrintHeadersFiltering = HIFIL_None |
This flag determines whether clang should filter the header information that is emitted. | |
std::string | FlangF128MathLibrary |
Name of the library that provides implementations of IEEE-754 128-bit float math functions used by Fortran F128 runtime library. | |
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. | |
unsigned | CCGenDiagnostics: 1 |
Whether the driver is generating diagnostics for debugging purposes. | |
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. | |
unsigned | CCPrintInternalStats: 1 |
Set CC_PRINT_INTERNAL_STAT mode, which causes the driver to dump internal performance report to CC_PRINT_INTERNAL_STAT_FILE or to stdout. | |
CC1ToolFunc | CC1Main = nullptr |
Primary Functionality | |
enum class | CommandStatus { Crash = 1 , Error , Ok } |
enum class | ReproLevel { Off = 0 , OnCrash = static_cast<int>(CommandStatus::Crash) , OnError = static_cast<int>(CommandStatus::Error) , Always = static_cast<int>(CommandStatus::Ok) } |
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. | |
Compilation * | BuildCompilation (ArrayRef< const char * > Args) |
BuildCompilation - Construct a compilation object for a command line argument vector. | |
llvm::opt::InputArgList | ParseArgStrings (ArrayRef< const char * > Args, bool UseDriverMode, bool &ContainsError) |
ParseArgStrings - Parse the given list of strings into an ArgList. | |
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. | |
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. | |
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. | |
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. | |
llvm::DenseSet< StringRef > | getOffloadArchs (Compilation &C, const llvm::opt::DerivedArgList &Args, Action::OffloadKind Kind, const ToolChain *TC, bool SuppressError=false) const |
Returns the set of bound architectures active for this offload kind. | |
bool | DiagnoseInputExistence (const llvm::opt::DerivedArgList &Args, StringRef Value, types::ID Ty, bool TypoCorrect) const |
Check that the file referenced by Value exists. | |
void | BuildJobs (Compilation &C) const |
BuildJobs - Bind actions to concrete tools and translate arguments to form the list of jobs to run. | |
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. | |
void | generateCompilationDiagnostics (Compilation &C, const Command &FailingCommand, StringRef AdditionalInformation="", CompilationDiagnosticReport *GeneratedReport=nullptr) |
generateCompilationDiagnostics - Generate diagnostics information including preprocessed source file(s). | |
bool | maybeGenerateCompilationDiagnostics (CommandStatus CS, ReproLevel Level, Compilation &C, const Command &FailingCommand, StringRef AdditionalInformation="", CompilationDiagnosticReport *GeneratedReport=nullptr) |
Helper Methods | |
void | PrintActions (const Compilation &C) const |
PrintActions - Print the list of actions. | |
void | PrintHelp (bool ShowHidden) const |
PrintHelp - Print the help text. | |
void | PrintVersion (const Compilation &C, raw_ostream &OS) const |
PrintVersion - Print the driver version. | |
std::string | GetFilePath (StringRef Name, const ToolChain &TC) const |
GetFilePath - Lookup Name in the list of file search paths. | |
std::string | GetProgramPath (StringRef Name, const ToolChain &TC) const |
GetProgramPath - Lookup Name in the list of program search paths. | |
std::string | GetStdModuleManifestPath (const Compilation &C, const ToolChain &TC) const |
Lookup the path to the Standard library module manifest. | |
void | HandleAutocompletions (StringRef PassedFlags) const |
HandleAutocompletions - Handle –autocomplete by searching and printing possible flags, descriptions, and its arguments. | |
bool | HandleImmediateArgs (Compilation &C) |
HandleImmediateArgs - Handle any arguments which should be treated before building actions or binding tools. | |
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. | |
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 . | |
const char * | getDefaultImageName () const |
Returns the default name for linked images (e.g., "a.out"). | |
const char * | CreateTempFile (Compilation &C, StringRef Prefix, StringRef Suffix, bool MultipleArchs=false, StringRef BoundArch={}, bool NeedUniqueDirectory=false) const |
Creates a temp file. | |
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 . | |
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. | |
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. | |
std::string | GetClPchPath (Compilation &C, StringRef BaseName) const |
Return the pathname of the pch file in clang-cl mode. | |
bool | ShouldUseClangCompiler (const JobAction &JA) const |
ShouldUseClangCompiler - Should the clang compiler be used to handle this action. | |
bool | ShouldUseFlangCompiler (const JobAction &JA) const |
ShouldUseFlangCompiler - Should the flang compiler be used to handle this action. | |
bool | ShouldEmitStaticLibrary (const llvm::opt::ArgList &Args) const |
ShouldEmitStaticLibrary - Should the linker emit a static library. | |
bool | hasHeaderMode () const |
Returns true if the user has indicated a C++20 header unit mode. | |
ModuleHeaderMode | getModuleHeaderMode () const |
Get the mode for handling headers as set by fmodule-header{=}. | |
bool | isUsingLTO () const |
Returns true if we are performing any kind of LTO. | |
LTOKind | getLTOMode () const |
Get the specific kind of LTO being performed. | |
bool | isUsingOffloadLTO () const |
Returns true if we are performing any kind of offload LTO. | |
LTOKind | getOffloadLTOMode () const |
Get the specific kind of offload LTO being performed. | |
Driver - Encapsulate logic for constructing compilation processes from a set of gcc-driver-like command line arguments.
using clang::driver::Driver::CC1ToolFunc = llvm::function_ref<int(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 |
|
strong |
|
strong |
Driver::Driver | ( | StringRef | ClangExecutable, |
StringRef | TargetTriple, | ||
DiagnosticsEngine & | Diags, | ||
std::string | Title = "clang LLVM compiler" , |
||
IntrusiveRefCntPtr< llvm::vfs::FileSystem > | VFS = nullptr |
||
) |
Definition at line 202 of file Driver.cpp.
References ClangExecutable, Dir, GetResourcesPath(), Name, P, ResourceDir, 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 4112 of file Driver.cpp.
References BuildOffloadingActions(), clang::C, clang::driver::phases::Compile, ConstructPhaseAction(), Diag(), clang::driver::types::getCompilationPhases(), getFinalPhase(), clang::driver::phases::IfsMerge, clang::driver::phases::Link, offloadDeviceOnly(), clang::driver::Action::OFK_OpenMP, clang::driver::phases::Precompile, clang::driver::Action::propagateHostOffloadInfo(), ShouldEmitStaticLibrary(), and V.
Referenced by BuildCompilation(), BuildUniversalActions(), and generateCompilationDiagnostics().
Compilation * Driver::BuildCompilation | ( | ArrayRef< const char * > | Args | ) |
BuildCompilation - Construct a compilation object for a command line argument vector.
Definition at line 1204 of file Driver.cpp.
References appendOneArg(), BuildActions(), BuildInputs(), BuildJobs(), BuildUniversalActions(), clang::C, CCCPrintBindings, CCPrintProcessStats, CCPrintStatReportFilename, ClangExecutable, computeTargetTriple(), CreateOffloadingDeviceToolChains(), Diag(), Dir, DyldPrefix, getDiags(), clang::driver::getDriverMode(), clang::driver::ToolChain::getTriple(), clang::driver::ToolChain::getTripleString(), HandleImmediateArgs(), clang::driver::HeaderMode_Default, clang::driver::HeaderMode_System, clang::driver::HeaderMode_User, IsCLMode(), IsDXCMode(), clang::DiagnosticsEngine::isIgnored(), Name, ParseArgStrings(), clang::driver::toolchains::HLSLToolChain::parseTargetProfile(), PrefixDirs, PrintActions(), clang::DiagnosticsEngine::Report(), ResourceDir, Std, SysRoot, and clang::T.
Referenced by 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 2637 of file Driver.cpp.
References CCCIsCPP(), CCCIsCXX(), CCGenDiagnostics, CXXHeaderUnitType(), Diag(), DiagnoseInputExistence(), clang::driver::Action::getKind(), getOpts(), hasHeaderMode(), IsCLMode(), IsDXCMode(), 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 BuildCompilation(), and 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 4896 of file Driver.cpp.
References clang::driver::Action::BindArchClass, BuildJobsForAction(), clang::C, 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::Action::OffloadClass, clang::driver::Action::OFK_None, and clang::driver::Action::size().
Referenced by BuildCompilation(), and 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 5431 of file Driver.cpp.
References clang::C, GetTriplePlusArchString(), and clang::Result.
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 4576 of file Driver.cpp.
References clang::driver::OffloadAction::DeviceDependences::add(), clang::C, ConstructPhaseAction(), E, clang::driver::types::getCompilationPhases(), getFinalPhase(), clang::driver::Action::getInputs(), getOffloadArchs(), clang::driver::Action::getType(), clang::driver::types::isCuda(), clang::driver::types::isHIP(), clang::driver::types::isSrcFile(), clang::driver::phases::Link, offloadDeviceOnly(), offloadHostOnly(), clang::driver::Action::OFK_Cuda, clang::driver::Action::OFK_HIP, clang::driver::Action::OFK_Host, clang::driver::Action::OFK_OpenMP, clang::driver::phases::Preprocess, clang::driver::Action::propagateDeviceOffloadInfo(), and clang::driver::Action::setCannotBeCollapsedWithNextDependentAction().
Referenced by BuildActions().
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 2458 of file Driver.cpp.
References BuildActions(), clang::C, 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 BuildCompilation(), and generateCompilationDiagnostics().
|
inline |
|
inline |
Whether the driver is just the preprocessor.
Definition at line 216 of file Driver.h.
Referenced by BuildInputs(), and getFinalPhase().
|
inline |
Whether the driver should follow g++ like behavior.
Definition at line 213 of file Driver.h.
Referenced by BuildInputs(), 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 4753 of file Driver.cpp.
References clang::driver::phases::Assemble, clang::driver::phases::Backend, clang::C, CCGenDiagnostics, clang::driver::phases::Compile, clang::driver::Action::getOffloadingToolChain(), clang::driver::types::getPreprocessedType(), clang::driver::ToolChain::getTriple(), clang::driver::Action::getType(), clang::driver::phases::IfsMerge, isUsingLTO(), isUsingOffloadLTO(), clang::driver::phases::Link, offloadDeviceOnly(), clang::driver::Action::OFK_HIP, clang::driver::Action::OFK_None, clang::driver::Action::OFK_OpenMP, clang::driver::phases::Precompile, clang::driver::phases::Preprocess, and clang::driver::types::TY_INVALID.
Referenced by BuildActions(), and 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 770 of file Driver.cpp.
References clang::C, clang::driver::toolchains::NVPTXToolChain::CudaInstallation, Diag(), getHIPOffloadTargetTriple(), getNVIDIAOffloadTargetTriple(), getOffloadArchs(), getOpenMPRuntime(), clang::driver::ToolChain::getOpenMPTriple(), clang::getProcessorFromTargetID(), clang::driver::ToolChain::getTriple(), clang::IsAMDOffloadArch(), clang::driver::types::isCuda(), clang::driver::types::isHIP(), clang::IsNVIDIAOffloadArch(), clang::driver::CudaInstallationDetector::isValid(), clang::driver::Action::OFK_Cuda, clang::driver::Action::OFK_HIP, clang::driver::Action::OFK_Host, clang::driver::Action::OFK_OpenMP, OMPRT_IOMP5, OMPRT_OMP, clang::StringToOffloadArch(), clang::T, and clang::driver::CudaInstallationDetector::WarnIfUnsupportedVersion().
Referenced by BuildCompilation().
const char * Driver::CreateTempFile | ( | Compilation & | C, |
StringRef | Prefix, | ||
StringRef | Suffix, | ||
bool | MultipleArchs = false , |
||
StringRef | BoundArch = {} , |
||
bool | NeedUniqueDirectory = false |
||
) | const |
Creates a temp file.
MultipleArch
is false or BoundArch
is empty, the temp file is in the temporary directory with name $Prefix-%%%%%%.$Suffix.MultipleArch
is true and BoundArch
is not empty, 2a. If NeedUniqueDirectory
is false, the temp file is in the temporary directory with name $Prefix-$BoundArch-%%%%%.$Suffix. 2b. If NeedUniqueDirectory
is true, the temp file is in a unique subdiretory with random name under the temporary directory, and the temp file itself has name $Prefix-$BoundArch.$Suffix. Definition at line 5817 of file Driver.cpp.
References clang::C, CCGenDiagnostics, Diag(), GetTemporaryDirectory(), GetTemporaryPath(), getVFS(), and Path.
Referenced by generateCompilationDiagnostics(), and GetNamedOutputPath().
|
inline |
Definition at line 144 of file Driver.h.
References clang::DiagnosticsEngine::Report().
Referenced by clang::driver::SanitizerArgs::addArgs(), clang::driver::toolchains::DarwinClang::AddClangCXXStdlibIncludeArgs(), clang::driver::toolchains::CudaToolChain::addClangTargetOptions(), clang::driver::CudaInstallationDetector::AddCudaIncludeArgs(), clang::driver::toolchains::HexagonToolChain::AddCXXStdlibLibArgs(), clang::driver::RocmInstallationDetector::AddHIPIncludeArgs(), clang::driver::toolchains::HIPSPVToolChain::AddHIPIncludeArgs(), clang::driver::toolchains::DarwinClang::AddLinkARCArgs(), clang::driver::tools::addLinkerCompressDebugSectionsOption(), clang::driver::toolchains::DarwinClang::AddLinkRuntimeLibArgs(), clang::driver::tools::ClangAs::AddX86TargetArgs(), BuildActions(), clang::driver::toolchains::MSVCToolChain::buildAssembler(), BuildCompilation(), BuildInputs(), BuildJobs(), BuildUniversalActions(), clang::driver::CudaInstallationDetector::CheckCudaVersionSupportsArch(), clang::driver::toolchains::Darwin::CheckObjCARC(), clang::driver::toolchains::AMDGPUToolChain::checkTargetID(), clang::driver::toolchains::HIPAMDToolChain::checkTargetID(), clang::driver::Compilation::CleanupFile(), clang::driver::tools::aix::Linker::ConstructJob(), clang::driver::tools::Clang::ConstructJob(), clang::driver::tools::wasm::Linker::ConstructJob(), CreateOffloadingDeviceToolChains(), CreateTempFile(), DiagnoseInputExistence(), clang::driver::Compilation::ExecuteCommand(), ExecuteCompilation(), generateCompilationDiagnostics(), clang::driver::ToolChain::GetCXXStdlibType(), clang::driver::toolchains::Fuchsia::GetCXXStdlibType(), clang::driver::toolchains::HexagonToolChain::GetCXXStdlibType(), clang::driver::toolchains::MipsLLVMToolChain::GetCXXStdlibType(), clang::driver::toolchains::NaClToolChain::GetCXXStdlibType(), clang::driver::toolchains::OHOS::GetCXXStdlibType(), clang::driver::toolchains::AMDGPUOpenMPToolChain::getDeviceLibs(), clang::driver::toolchains::HIPAMDToolChain::getDeviceLibs(), clang::driver::toolchains::HIPSPVToolChain::getDeviceLibs(), clang::driver::tools::getDwarfVersion(), clang::driver::ToolChain::GetLinkerPath(), clang::driver::tools::solaris::Linker::getLinkerPath(), clang::driver::tools::wasm::Linker::getLinkerPath(), clang::driver::toolchains::MachO::getLinkerVersion(), GetNamedOutputPath(), getOffloadArchs(), getOpenMPRuntime(), clang::driver::ToolChain::GetRuntimeLibType(), clang::driver::toolchains::DarwinClang::GetRuntimeLibType(), clang::driver::toolchains::Fuchsia::GetRuntimeLibType(), clang::driver::toolchains::OHOS::GetRuntimeLibType(), GetTemporaryDirectory(), GetTemporaryPath(), clang::driver::ToolChain::GetUnwindLibType(), clang::driver::tools::isTLSDESCEnabled(), ParseArgStrings(), ParseDebugDefaultVersion(), clang::driver::toolchains::HLSLToolChain::requiresValidation(), clang::driver::SanitizerArgs::SanitizerArgs(), clang::driver::toolchains::AMDGPUToolChain::TranslateArgs(), clang::driver::toolchains::AMDGPUOpenMPToolChain::TranslateArgs(), clang::driver::toolchains::CudaToolChain::TranslateArgs(), clang::driver::toolchains::Darwin::TranslateArgs(), clang::driver::toolchains::HLSLToolChain::TranslateArgs(), clang::driver::ToolChain::TranslateOpenMPTargetArgs(), clang::driver::ToolChain::TranslateXarchArgs(), clang::driver::ToolChain::useIntegratedBackend(), and clang::driver::CudaInstallationDetector::WarnIfUnsupportedVersion().
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 2546 of file Driver.cpp.
References Diag(), getCheckInputsExist(), getOpts(), getVFS(), and IsCLMode().
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 1913 of file Driver.cpp.
References clang::C, 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 1667 of file Driver.cpp.
References BugReporMsg, BuildActions(), BuildInputs(), BuildJobs(), BuildUniversalActions(), clang::C, CCGenDiagnostics, Cmd, CreateTempFile(), Diag(), clang::driver::Command::Execute(), clang::driver::CrashReportInfo::Filename, clang::driver::Command::getArguments(), 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(), clang::driver::Command::replaceArguments(), clang::driver::Driver::CompilationDiagnosticReport::TemporaryFiles, and clang::driver::types::TY_INVALID.
Referenced by maybeGenerateCompilationDiagnostics().
|
inline |
|
inline |
Definition at line 405 of file Driver.h.
Referenced by DiagnoseInputExistence().
|
inline |
Get the path to the main clang executable.
Definition at line 423 of file Driver.h.
References ClangExecutable.
Referenced by clang::driver::tools::ClangAs::ConstructJob().
std::string Driver::GetClPchPath | ( | Compilation & | C, |
StringRef | BaseName | ||
) | const |
Return the pathname of the pch file in clang-cl mode.
Definition at line 6321 of file Driver.cpp.
References clang::C.
Referenced by GetNamedOutputPath().
|
inline |
const char * Driver::getDefaultImageName | ( | ) | const |
Returns the default name for linked images (e.g., "a.out").
Definition at line 5768 of file Driver.cpp.
References clang::Target.
Referenced by BuildJobs(), and GetNamedOutputPath().
|
static |
Compute the default -fmodule-cache-path.
Definition at line 3951 of file Clang.cpp.
References Path, and clang::Result.
Referenced by RenderModulesOptions().
|
inline |
Definition at line 401 of file Driver.h.
Referenced by BuildCompilation(), clang::driver::toolchains::HIPAMDToolChain::getDeviceLibs(), shouldSkipSanitizeOption(), and clang::driver::ToolChain::TranslateXarchArgs().
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 6152 of file Driver.cpp.
References D, Dir, clang::driver::ToolChain::getCompilerRTPath(), clang::driver::ToolChain::getFilePaths(), clang::driver::ToolChain::getLibraryPaths(), Name, P, PrefixDirs, ResourceDir, and SysRoot.
Referenced by clang::driver::ToolChain::GetFilePath(), GetStdModuleManifestPath(), and HandleImmediateArgs().
phases::ID Driver::getFinalPhase | ( | const llvm::opt::DerivedArgList & | DAL, |
llvm::opt::Arg ** | FinalPhaseArg = nullptr |
||
) | const |
Definition at line 342 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 BuildActions(), BuildOffloadingActions(), and clang::driver::types::getCompilationPhases().
|
inline |
Definition at line 440 of file Driver.h.
References FlangF128MathLibrary.
|
inline |
Get the specific kind of LTO being performed.
Definition at line 721 of file Driver.h.
Referenced by 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 5879 of file Driver.cpp.
References clang::driver::types::appendSuffixForType(), clang::C, CCGenDiagnostics, CreateTempFile(), Diag(), GetClPchPath(), getDefaultImageName(), GetModuleOutputPath(), clang::driver::Action::getOffloadingDeviceKind(), clang::driver::Action::getOffloadingToolChain(), GetTemporaryPath(), clang::driver::ToolChain::getTriple(), clang::driver::Action::getType(), clang::driver::types::getTypeTempSuffix(), HasPreprocessOutput(), IsCLMode(), IsDXCMode(), isSaveTempsEnabled(), isSaveTempsObj(), MakeCLOutputFilename(), Name, clang::driver::Action::OFK_HIP, clang::driver::Action::OFK_Host, clang::driver::Action::OFK_None, clang::driver::Action::OFK_OpenMP, and clang::Result.
llvm::DenseSet< StringRef > Driver::getOffloadArchs | ( | Compilation & | C, |
const llvm::opt::DerivedArgList & | Args, | ||
Action::OffloadKind | Kind, | ||
const ToolChain * | TC, | ||
bool | SuppressError = false |
||
) | 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. The SuppressError
option is used to suppress errors.
Definition at line 4474 of file Driver.cpp.
References clang::C, clang::CudaDefault, Diag(), clang::driver::ToolChain::getArch(), getCanonicalArchString(), getConflictOffloadArchCombination(), clang::driver::ToolChain::getDriver(), clang::driver::ToolChain::getOpenMPTriple(), getOpts(), clang::driver::ToolChain::getSystemGPUArchs(), clang::driver::ToolChain::getTriple(), clang::HIPDefault, clang::OffloadArchToString(), clang::driver::Action::OFK_Cuda, clang::driver::Action::OFK_HIP, and clang::driver::Action::OFK_OpenMP.
Referenced by BuildOffloadingActions(), and CreateOffloadingDeviceToolChains().
|
inline |
Get the specific kind of offload LTO being performed.
Definition at line 727 of file Driver.h.
Referenced by isUsingOffloadLTO().
Driver::OpenMPRuntimeKind Driver::getOpenMPRuntime | ( | const llvm::opt::ArgList & | Args | ) | const |
Compute the desired OpenMP runtime from the flags provided.
Definition at line 745 of file Driver.cpp.
References Diag(), OMPRT_GOMP, OMPRT_IOMP5, OMPRT_OMP, and OMPRT_Unknown.
Referenced by clang::driver::tools::aix::Linker::ConstructJob(), clang::driver::tools::MinGW::Linker::ConstructJob(), and CreateOffloadingDeviceToolChains().
|
inline |
Definition at line 399 of file Driver.h.
References clang::driver::getDriverOptTable().
Referenced by BuildInputs(), DiagnoseInputExistence(), getOffloadArchs(), HandleAutocompletions(), ParseArgStrings(), PrintHelp(), 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::HIPAMDToolChain::TranslateArgs(), clang::driver::toolchains::HLSLToolChain::TranslateArgs(), clang::driver::toolchains::MSVCToolChain::TranslateArgs(), clang::driver::ToolChain::TranslateOpenMPTargetArgs(), and clang::driver::ToolChain::TranslateXarchArgs().
|
inline |
|
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 6212 of file Driver.cpp.
References clang::driver::ToolChain::getProgramPaths(), Name, P, Path, PrefixDirs, and ScanDirForExecutable().
Referenced by clang::driver::ToolChain::GetProgramPath(), and 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 6640 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 6605 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 174 of file Driver.cpp.
Referenced by Driver(), and clang::CompilerInvocation::GetResourcesPath().
std::string Driver::GetStdModuleManifestPath | ( | const Compilation & | C, |
const ToolChain & | TC | ||
) | const |
Lookup the path to the Standard library module manifest.
C | - The compilation. |
TC | - The tool chain for additional information on directories to search. |
Definition at line 6254 of file Driver.cpp.
References clang::C, clang::driver::ToolChain::CST_Libcxx, clang::driver::ToolChain::CST_Libstdcxx, clang::driver::ToolChain::GetCXXStdlibType(), GetFilePath(), and clang::driver::ToolChain::getVFS().
Referenced by HandleImmediateArgs().
|
inline |
Definition at line 420 of file Driver.h.
Referenced by HIPUndefinedFatBinSymbols::processStaticLibraries().
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 6310 of file Driver.cpp.
Referenced by CreateTempFile().
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 6299 of file Driver.cpp.
Referenced by CreateTempFile(), and GetNamedOutputPath().
|
inline |
Definition at line 417 of file Driver.h.
References DriverTitle.
|
inline |
Definition at line 403 of file Driver.h.
Referenced by clang::driver::RocmInstallationDetector::AddHIPIncludeArgs(), CreateTempFile(), clang::driver::RocmInstallationDetector::detectDeviceLibrary(), clang::driver::RocmInstallationDetector::detectHIPRuntime(), DiagnoseInputExistence(), and clang::driver::ToolChain::getVFS().
void Driver::HandleAutocompletions | ( | StringRef | PassedFlags | ) | const |
HandleAutocompletions - Handle –autocomplete by searching and printing possible flags, descriptions, and its arguments.
Definition at line 2047 of file Driver.cpp.
References clang::driver::options::CC1Option, clang::driver::options::ClangOption, clang::driver::options::FlangOption, clang::DiagnosticIDs::getDiagnosticFlags(), getOpts(), clang::driver::options::Ignored, IsFlangMode(), clang::driver::options::Unsupported, and X.
Referenced by HandleImmediateArgs().
bool Driver::HandleImmediateArgs | ( | Compilation & | C | ) |
HandleImmediateArgs - Handle any arguments which should be treated before building actions or binding tools.
Definition at line 2134 of file Driver.cpp.
References clang::C, clang::driver::ToolChain::ComputeEffectiveClangTriple(), clang::driver::MultilibSet::expandFlags(), clang::driver::Multilib::gccSuffix(), clang::driver::ToolChain::getArchName(), clang::driver::ToolChain::getCompilerRT(), clang::driver::ToolChain::getCompilerRTPath(), clang::DiagnosticIDs::getDiagnosticFlags(), GetFilePath(), clang::driver::ToolChain::getFilePaths(), clang::driver::ToolChain::getMultilibFlags(), clang::driver::ToolChain::getMultilibs(), GetProgramPath(), clang::driver::ToolChain::getProgramPaths(), clang::driver::ToolChain::GetRuntimeLibType(), clang::driver::ToolChain::getRuntimePath(), clang::driver::ToolChain::getSelectedMultilibs(), GetStdModuleManifestPath(), clang::driver::ToolChain::getTripleString(), HandleAutocompletions(), clang::driver::Action::OFK_None, Path, PrefixDirs, PrintDiagnosticCategories(), PrintHelp(), clang::driver::ToolChain::printVerboseInfo(), PrintVersion(), ResourceDir, clang::driver::ToolChain::RLT_CompilerRT, clang::driver::ToolChain::RLT_Libgcc, SystemConfigDir, and UserConfigDir.
Referenced by BuildCompilation().
|
inline |
Returns true if the user has indicated a C++20 header unit mode.
Definition at line 712 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 222 of file Driver.h.
Referenced by BuildCompilation(), BuildInputs(), DiagnoseInputExistence(), clang::driver::Compilation::ExecuteJobs(), GetNamedOutputPath(), and ParseArgStrings().
|
inline |
Whether the driver should follow dxc.exe like behavior.
Definition at line 229 of file Driver.h.
Referenced by BuildCompilation(), BuildInputs(), and GetNamedOutputPath().
|
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 226 of file Driver.h.
Referenced by BuildInputs(), HandleAutocompletions(), clang::driver::ToolChain::LookupTypeForExtension(), PrintVersion(), and clang::driver::ToolChain::SelectTool().
|
inline |
Definition at line 427 of file Driver.h.
Referenced by ExecuteCompilation(), GetNamedOutputPath(), clang::driver::Compilation::initCompilationForDiagnostics(), and clang::driver::Compilation::~Compilation().
|
inline |
Definition at line 428 of file Driver.h.
Referenced by GetNamedOutputPath().
|
inline |
Returns true if we are performing any kind of LTO.
Definition at line 718 of file Driver.h.
References getLTOMode(), and clang::driver::LTOK_None.
Referenced by ConstructPhaseAction().
|
inline |
Returns true if we are performing any kind of offload LTO.
Definition at line 724 of file Driver.h.
References getOffloadLTOMode(), and clang::driver::LTOK_None.
Referenced by clang::driver::tools::OffloadPackager::ConstructJob(), and ConstructPhaseAction().
|
inline |
Definition at line 566 of file Driver.h.
References clang::C, Crash, generateCompilationDiagnostics(), clang::DiagnosticsEngine::Report(), and clang::DiagnosticsEngine::setLastDiagnosticIgnored().
|
inline |
Definition at line 435 of file Driver.h.
Referenced by BuildActions(), BuildOffloadingActions(), and ConstructPhaseAction().
|
inline |
Definition at line 434 of file Driver.h.
Referenced by BuildOffloadingActions().
InputArgList Driver::ParseArgStrings | ( | ArrayRef< const char * > | Args, |
bool | UseDriverMode, | ||
bool & | ContainsError | ||
) |
ParseArgStrings - Parse the given list of strings into an ArgList.
Definition at line 261 of file Driver.cpp.
References clang::driver::options::CC1Option, Diag(), clang::DiagnosticsEngine::getDiagnosticLevel(), getOpts(), IsCLMode(), clang::DiagnosticsEngine::Report(), 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 2442 of file Driver.cpp.
References clang::C, and PrintActions1().
Referenced by BuildCompilation().
void Driver::PrintHelp | ( | bool | ShowHidden | ) | const |
PrintHelp - Print the help text.
ShowHidden | - Show hidden options. |
Definition at line 1995 of file Driver.cpp.
References DriverTitle, getOpts(), and Name.
Referenced by HandleImmediateArgs().
void Driver::PrintVersion | ( | const Compilation & | C, |
raw_ostream & | OS | ||
) | const |
PrintVersion - Print the driver version.
Definition at line 2004 of file Driver.cpp.
References clang::C, Dir, clang::getClangFullVersion(), clang::getClangToolFullVersion(), clang::driver::ToolChain::getThreadModel(), clang::driver::ToolChain::getTripleString(), IsFlangMode(), and clang::driver::ToolChain::isThreadModelSupported().
Referenced by generateCompilationDiagnostics(), and HandleImmediateArgs().
|
inline |
Definition at line 407 of file Driver.h.
Referenced by clang::createInvocation().
|
inline |
Definition at line 437 of file Driver.h.
References FlangF128MathLibrary.
|
inline |
|
inline |
Definition at line 410 of file Driver.h.
Referenced by clang::createInvocation().
|
inline |
Definition at line 415 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 6593 of file Driver.cpp.
Referenced by BuildActions().
ShouldUseClangCompiler - Should the clang compiler be used to handle this action.
Definition at line 6564 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 6579 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 |
Only print tool bindings, don't build any jobs.
Definition at line 233 of file Driver.h.
Referenced by BuildCompilation().
unsigned clang::driver::Driver::CCGenDiagnostics |
Whether the driver is generating diagnostics for debugging purposes.
Definition at line 264 of file Driver.h.
Referenced by BuildInputs(), ConstructPhaseAction(), CreateTempFile(), generateCompilationDiagnostics(), getFinalPhase(), and GetNamedOutputPath().
unsigned clang::driver::Driver::CCLogDiagnostics |
std::string clang::driver::Driver::CCLogDiagnosticsFilename |
std::string clang::driver::Driver::CCPrintHeadersFilename |
HeaderIncludeFilteringKind clang::driver::Driver::CCPrintHeadersFiltering = HIFIL_None |
HeaderIncludeFormatKind clang::driver::Driver::CCPrintHeadersFormat = HIFMT_None |
std::string clang::driver::Driver::CCPrintInternalStatReportFilename |
unsigned clang::driver::Driver::CCPrintInternalStats |
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 269 of file Driver.h.
Referenced by BuildCompilation(), and BuildJobs().
std::string clang::driver::Driver::CCPrintStatReportFilename |
The file to log CC_PRINT_PROC_STAT_FILE output to, if enabled.
Definition at line 192 of file Driver.h.
Referenced by BuildCompilation(), and BuildJobs().
std::string clang::driver::Driver::ClangExecutable |
The original path to the clang executable.
Definition at line 158 of file Driver.h.
Referenced by BuildCompilation(), clang::driver::tools::aix::Linker::ConstructJob(), Driver(), and getClangProgramPath().
ParsedClangName clang::driver::Driver::ClangNameParts |
Target and driver mode components extracted from clang executable name.
Definition at line 161 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 155 of file Driver.h.
Referenced by clang::driver::toolchains::OHOS::AddClangCXXStdlibIncludeArgs(), clang::driver::toolchains::MipsLLVMToolChain::addLibCxxIncludePaths(), BuildCompilation(), clang::driver::toolchains::Linux::computeSysRoot(), clang::driver::toolchains::OHOS::computeSysRoot(), Driver(), GetFilePath(), GetResourcesPath(), clang::driver::ToolChain::getStdlibIncludePath(), clang::driver::ToolChain::getStdlibPath(), and PrintVersion().
std::string clang::driver::Driver::DriverTitle |
Driver title to use with help.
Definition at line 186 of file Driver.h.
Referenced by getTitle(), PrintHelp(), and setTitle().
std::string clang::driver::Driver::DyldPrefix |
Dynamic loader prefix, if present.
Definition at line 183 of file Driver.h.
Referenced by BuildCompilation().
std::string clang::driver::Driver::FlangF128MathLibrary |
Name of the library that provides implementations of IEEE-754 128-bit float math functions used by Fortran F128 runtime library.
It should be linked as needed by the linker job.
Definition at line 254 of file Driver.h.
Referenced by getFlangF128MathLibrary(), and setFlangF128MathLibrary().
std::string clang::driver::Driver::HostBits |
std::string clang::driver::Driver::Name |
The name the driver was invoked as.
Definition at line 151 of file Driver.h.
Referenced by BuildCompilation(), Driver(), generateCompilationDiagnostics(), GetFilePath(), GetNamedOutputPath(), GetProgramPath(), and PrintHelp().
prefix_list clang::driver::Driver::PrefixDirs |
Definition at line 177 of file Driver.h.
Referenced by BuildCompilation(), GetFilePath(), GetProgramPath(), and HandleImmediateArgs().
std::string clang::driver::Driver::ResourceDir |
The path to the compiler resource directory.
Definition at line 164 of file Driver.h.
Referenced by clang::driver::CudaInstallationDetector::AddCudaIncludeArgs(), clang::driver::RocmInstallationDetector::AddHIPIncludeArgs(), BuildCompilation(), clang::driver::RocmInstallationDetector::detectDeviceLibrary(), Driver(), clang::driver::toolchains::OHOS::getArchSpecificLibPaths(), GetFilePath(), clang::driver::ToolChain::getRuntimePath(), and HandleImmediateArgs().
std::string clang::driver::Driver::SysRoot |
sysroot, if present
Definition at line 180 of file Driver.h.
Referenced by clang::driver::toolchains::CrossWindowsToolChain::AddClangCXXStdlibIncludeArgs(), BuildCompilation(), clang::driver::ToolChain::computeSysRoot(), clang::driver::toolchains::Linux::computeSysRoot(), clang::driver::toolchains::MipsLLVMToolChain::computeSysRoot(), clang::driver::toolchains::OHOS::computeSysRoot(), clang::driver::RocmInstallationDetector::detectHIPRuntime(), Driver(), clang::driver::toolchains::AVRToolChain::findAVRLibcInstallation(), GetFilePath(), clang::driver::Compilation::getSysRoot(), and clang::driver::toolchains::MinGW::MinGW().
std::string clang::driver::Driver::SystemConfigDir |
System directory for config files.
Definition at line 167 of file Driver.h.
Referenced by Driver(), and HandleImmediateArgs().
std::string clang::driver::Driver::UserConfigDir |
User directory for config files.
Definition at line 170 of file Driver.h.
Referenced by Driver(), and HandleImmediateArgs().