clang
17.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... | |
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) |
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 |
bool | offloadHostOnly () const |
bool | offloadDeviceOnly () const |
OpenMPRuntimeKind | getOpenMPRuntime (const llvm::opt::ArgList &Args) const |
Compute the desired OpenMP runtime from the flags provided. 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... | |
HeaderIncludeFormatKind | CCPrintHeadersFormat = HIFMT_None |
The format of the header information that is emitted. More... | |
HeaderIncludeFilteringKind | CCPrintHeadersFiltering = HIFIL_None |
This flag determines whether clang should filter the header information that is emitted. 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 |
Primary Functionality | |
enum | CommandStatus { CommandStatus::Crash = 1, CommandStatus::Error, CommandStatus::Ok } |
enum | ReproLevel { ReproLevel::Off = 0, ReproLevel::OnCrash = static_cast<int>(CommandStatus::Crash), ReproLevel::OnError = static_cast<int>(CommandStatus::Error), ReproLevel::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. 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, bool SuppressError=false) 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... | |
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. 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 * | CreateTempFile (Compilation &C, StringRef Prefix, StringRef Suffix, bool MultipleArchs=false, StringRef BoundArch={}) const |
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 |
|
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 192 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 3954 of file Driver.cpp.
References Diag(), clang::driver::types::getCompilationPhases(), clang::driver::Action::OFK_OpenMP, 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 1186 of file Driver.cpp.
References appendOneArg(), BuildActions(), BuildInputs(), BuildJobs(), BuildUniversalActions(), CCCPrintBindings, CCPrintProcessStats, CCPrintStatReportFilename, ClangExecutable, computeTargetTriple(), CreateOffloadingDeviceToolChains(), Diag(), Dir, DyldPrefix, getDiags(), clang::driver::getDriverMode(), clang::driver::ToolChain::getTriple(), HandleImmediateArgs(), clang::driver::HeaderMode_Default, clang::driver::HeaderMode_System, clang::driver::HeaderMode_User, InstalledDir, IsCLMode(), IsDXCMode(), Name, ParseArgStrings(), clang::driver::toolchains::HLSLToolChain::parseTargetProfile(), PrefixDirs, PrintActions(), clang::transformer::remove(), clang::DiagnosticsEngine::Report(), ResourceDir, Std, string(), and SysRoot.
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 2539 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 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 4656 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, 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 5178 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 4377 of file Driver.cpp.
References clang::driver::OffloadAction::DeviceDependences::add(), ConstructPhaseAction(), clang::driver::types::getCompilationPhases(), getFinalPhase(), getOffloadArchs(), clang::driver::Action::getType(), clang::driver::types::isCuda(), clang::driver::types::isHIP(), clang::driver::types::isSrcFile(), clang::driver::phases::Link, clang::driver::options::LinkerInput, 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().
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 2355 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 BuildCompilation(), and generateCompilationDiagnostics().
|
inline |
|
inline |
Whether the driver is just the preprocessor.
Definition at line 215 of file Driver.h.
Referenced by BuildInputs(), CheckPreprocessingOptions(), and getFinalPhase().
|
inline |
Whether the driver should follow g++ like behavior.
Definition at line 212 of file Driver.h.
Referenced by AddLibgcc(), AddUnwindLibrary(), BuildInputs(), constructHexagonLinkArgs(), clang::driver::tools::fuchsia::Linker::ConstructJob(), clang::driver::tools::nacltools::Linker::ConstructJob(), clang::driver::tools::minix::Linker::ConstructJob(), clang::driver::tools::netbsd::Linker::ConstructJob(), clang::driver::tools::aix::Linker::ConstructJob(), clang::driver::tools::dragonfly::Linker::ConstructJob(), clang::driver::tools::freebsd::Linker::ConstructJob(), clang::driver::tools::openbsd::Linker::ConstructJob(), clang::driver::tools::RISCV::Linker::ConstructJob(), clang::driver::tools::gnutools::Linker::ConstructJob(), clang::driver::tools::gcc::Common::ConstructJob(), 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 4528 of file Driver.cpp.
References clang::driver::phases::Assemble, clang::driver::phases::Backend, CCGenDiagnostics, clang::driver::phases::Compile, clang::driver::Action::getOffloadingToolChain(), clang::driver::types::getPrecompiledType(), clang::driver::types::getPreprocessedType(), clang::driver::ToolChain::getTriple(), clang::driver::Action::getType(), clang::driver::phases::IfsMerge, isUsingLTO(), 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 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 763 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().
Referenced by BuildCompilation().
const char * Driver::CreateTempFile | ( | Compilation & | C, |
StringRef | Prefix, | ||
StringRef | Suffix, | ||
bool | MultipleArchs = false , |
||
StringRef | BoundArch = {} |
||
) | const |
Definition at line 5531 of file Driver.cpp.
References CCGenDiagnostics, Diag(), GetTemporaryDirectory(), GetTemporaryPath(), getVFS(), and string().
Referenced by generateCompilationDiagnostics(), and GetNamedOutputPath().
|
inline |
Definition at line 143 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(), addFloatingPointOptions(), 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(), BuildCompilation(), 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::ToolChain::computeMSVCVersion(), computeTargetTriple(), clang::driver::tools::wasm::Linker::ConstructJob(), clang::driver::tools::hexagon::Assembler::ConstructJob(), clang::driver::tools::nacltools::Linker::ConstructJob(), clang::driver::tools::MinGW::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::Flang::ConstructJob(), clang::driver::tools::darwin::StaticLibTool::ConstructJob(), clang::driver::tools::gcc::Common::ConstructJob(), clang::driver::tools::Clang::ConstructJob(), CreateOffloadingDeviceToolChains(), CreateTempFile(), 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(), clang::driver::toolchains::AMDGPUOpenMPToolChain::getDeviceLibs(), clang::driver::toolchains::HIPSPVToolChain::getDeviceLibs(), clang::driver::toolchains::HIPAMDToolChain::getDeviceLibs(), getHIPOffloadTargetTriple(), clang::driver::tools::wasm::Linker::getLinkerPath(), clang::driver::ToolChain::GetLinkerPath(), clang::driver::toolchains::MachO::getLinkerVersion(), GetNamedOutputPath(), getNVIDIAOffloadTargetTriple(), getOffloadTargetTriple(), getOpenMPRuntime(), 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::Generic_GCC::GCCInstallationDetector::init(), clang::driver::toolchains::MyriadToolChain::MyriadToolChain(), ParseArgStrings(), parseArgValues(), parseBinaryMetadataFeatures(), parseClangCLEHFlags(), parseCoverageFeatures(), ParseDebugDefaultVersion(), 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::AMDGPUOpenMPToolChain::TranslateArgs(), clang::driver::toolchains::CudaToolChain::TranslateArgs(), clang::driver::toolchains::Darwin::TranslateArgs(), clang::driver::ToolChain::useIntegratedBackend(), 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 2443 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 1823 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 1574 of file Driver.cpp.
References BugReporMsg, BuildActions(), BuildInputs(), BuildJobs(), BuildUniversalActions(), 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(), string(), clang::driver::Driver::CompilationDiagnosticReport::TemporaryFiles, and clang::driver::types::TY_INVALID.
Referenced by maybeGenerateCompilationDiagnostics().
|
inline |
Name to use when invoking gcc/g++.
Definition at line 367 of file Driver.h.
Referenced by clang::driver::tools::gcc::Common::ConstructJob().
|
inline |
Definition at line 379 of file Driver.h.
Referenced by DiagnoseInputExistence().
|
inline |
Get the path to the main clang executable.
Definition at line 394 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 5955 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 5482 of file Driver.cpp.
References normalize(), and clang::Target.
Referenced by BuildJobs(), and GetNamedOutputPath().
|
static |
Compute the default -fmodule-cache-path.
Definition at line 3601 of file Clang.cpp.
Referenced by RenderModulesOptions().
|
inline |
Definition at line 375 of file Driver.h.
Referenced by BuildCompilation(), clang::driver::tools::Flang::ConstructJob(), clang::driver::toolchains::HIPAMDToolChain::getDeviceLibs(), 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 5831 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 354 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 399 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 677 of file Driver.h.
Referenced by clang::driver::tools::fuchsia::Linker::ConstructJob(), clang::driver::tools::cloudabi::Linker::ConstructJob(), clang::driver::tools::aix::Linker::ConstructJob(), clang::driver::tools::ananas::Linker::ConstructJob(), clang::driver::tools::freebsd::Linker::ConstructJob(), clang::driver::tools::PScpu::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 5596 of file Driver.cpp.
References clang::driver::types::appendSuffixForType(), CCGenDiagnostics, CreateTempFile(), Diag(), End, 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_OpenMP, and string().
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 4276 of file Driver.cpp.
References clang::driver::ToolChain::getOpenMPTriple(), and clang::driver::ToolChain::getTriple().
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 738 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 373 of file Driver.h.
References clang::driver::getDriverOptTable().
Referenced by BuildInputs(), DiagnoseInputExistence(), getStaticPIE(), HandleAutocompletions(), ParseArgStrings(), PrintHelp(), clang::driver::toolchains::HLSLToolChain::TranslateArgs(), clang::driver::toolchains::AMDGPUOpenMPToolChain::TranslateArgs(), clang::driver::toolchains::MSVCToolChain::TranslateArgs(), clang::driver::toolchains::HIPAMDToolChain::TranslateArgs(), clang::driver::toolchains::AMDGPUToolChain::TranslateArgs(), clang::driver::toolchains::CudaToolChain::TranslateArgs(), clang::driver::toolchains::MachO::TranslateArgs(), clang::driver::toolchains::Generic_GCC::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 5891 of file Driver.cpp.
Referenced by clang::driver::tools::Flang::ConstructJob(), 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 6285 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 6247 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 166 of file Driver.cpp.
Referenced by Driver().
|
inline |
Definition at line 391 of file Driver.h.
Referenced by getLiteralTriple(), clang::driver::tools::GetSDLFromOffloadArchive(), and 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 5944 of file Driver.cpp.
References Diag(), and string().
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 5933 of file Driver.cpp.
References Diag(), and string().
Referenced by CreateTempFile(), GetNamedOutputPath(), and clang::driver::tools::GetSDLFromOffloadArchive().
|
inline |
Definition at line 388 of file Driver.h.
References DriverTitle.
|
inline |
Definition at line 377 of file Driver.h.
Referenced by clang::driver::toolchains::BareMetal::AddClangCXXStdlibIncludeArgs(), clang::driver::toolchains::Hurd::AddClangSystemIncludeArgs(), clang::driver::toolchains::Linux::AddClangSystemIncludeArgs(), addDefaultIgnorelists(), clang::driver::toolchains::Generic_GCC::addLibCxxIncludePaths(), addPGOAndCoverageFlags(), CreateTempFile(), 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(), 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 1965 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 2051 of file Driver.cpp.
References clang::driver::ToolChain::ComputeEffectiveClangTriple(), clang::driver::Multilib::gccSuffix(), clang::driver::ToolChain::getCompilerRT(), clang::driver::ToolChain::getCompilerRTPath(), clang::DiagnosticIDs::getDiagnosticFlags(), GetFilePath(), clang::driver::ToolChain::getFilePaths(), clang::driver::ToolChain::getMultilib(), clang::driver::ToolChain::getMultilibs(), GetProgramPath(), clang::driver::ToolChain::getProgramPaths(), clang::driver::ToolChain::GetRuntimeLibType(), clang::driver::ToolChain::getRuntimePaths(), 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(), SystemConfigDir, and UserConfigDir.
Referenced by BuildCompilation().
|
inline |
Returns true if the user has indicated a C++20 header unit mode.
Definition at line 666 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 221 of file Driver.h.
Referenced by BuildCompilation(), BuildInputs(), CheckPreprocessingOptions(), DiagnoseInputExistence(), clang::driver::Compilation::ExecuteJobs(), GetNamedOutputPath(), ParseArgStrings(), and PrintHelp().
|
inline |
Whether the driver should follow dxc.exe like behavior.
Definition at line 228 of file Driver.h.
Referenced by BuildCompilation(), 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 225 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 406 of file Driver.h.
Referenced by ExecuteCompilation(), GetNamedOutputPath(), clang::driver::Compilation::initCompilationForDiagnostics(), and clang::driver::Compilation::~Compilation().
|
inline |
Definition at line 407 of file Driver.h.
Referenced by GetNamedOutputPath().
Returns true if we are performing any kind of LTO.
Definition at line 672 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::aix::Linker::ConstructJob(), clang::driver::tools::freebsd::Linker::ConstructJob(), clang::driver::tools::PScpu::Linker::ConstructJob(), clang::driver::tools::gnutools::Linker::ConstructJob(), clang::driver::tools::Clang::ConstructJob(), clang::driver::tools::OffloadPackager::ConstructJob(), clang::driver::tools::LinkerWrapper::ConstructJob(), ConstructPhaseAction(), and clang::driver::SanitizerArgs::SanitizerArgs().
|
inline |
Definition at line 540 of file Driver.h.
References Crash, generateCompilationDiagnostics(), clang::DiagnosticsEngine::Report(), and clang::DiagnosticsEngine::setLastDiagnosticIgnored().
|
inline |
Definition at line 414 of file Driver.h.
Referenced by BuildOffloadingActions(), and ConstructPhaseAction().
|
inline |
Definition at line 413 of file Driver.h.
Referenced by BuildOffloadingActions().
InputArgList Driver::ParseArgStrings | ( | ArrayRef< const char * > | Args, |
bool | IsClCompatMode, | ||
bool & | ContainsError | ||
) |
ParseArgStrings - Parse the given list of strings into an ArgList.
Definition at line 251 of file Driver.cpp.
References clang::driver::options::CC1Option, 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 2339 of file Driver.cpp.
References PrintActions1().
Referenced by BuildCompilation().
void Driver::PrintHelp | ( | bool | ShowHidden | ) | const |
PrintHelp - Print the help text.
ShowHidden | - Show hidden options. |
Definition at line 1907 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 1928 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 381 of file Driver.h.
Referenced by clang::IncrementalCompilerBuilder::create(), and clang::createInvocation().
|
inline |
Definition at line 404 of file Driver.h.
References InstalledDir, and string().
|
inline |
Definition at line 384 of file Driver.h.
Referenced by clang::createInvocation().
|
inline |
Definition at line 386 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 6235 of file Driver.cpp.
ShouldUseClangCompiler - Should the clang compiler be used to handle this action.
Definition at line 6206 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 6221 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 231 of file Driver.h.
Referenced by BuildCompilation().
unsigned clang::driver::Driver::CCGenDiagnostics |
Whether the driver is generating diagnostics for debugging purposes.
Definition at line 254 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 |
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 258 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 194 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 157 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 160 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 154 of file Driver.h.
Referenced by clang::driver::toolchains::Fuchsia::AddClangCXXStdlibIncludeArgs(), clang::driver::toolchains::NaClToolChain::AddClangSystemIncludeArgs(), clang::driver::toolchains::NaClToolChain::addLibCxxIncludePaths(), clang::driver::toolchains::NetBSD::addLibCxxIncludePaths(), clang::driver::tools::addOpenMPDeviceRTL(), clang::driver::tools::AddStaticDeviceLibs(), BuildCompilation(), 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 188 of file Driver.h.
Referenced by getTitle(), PrintHelp(), and setTitle().
std::string clang::driver::Driver::DyldPrefix |
Dynamic loader prefix, if present.
Definition at line 185 of file Driver.h.
Referenced by BuildCompilation(), clang::driver::tools::fuchsia::Linker::ConstructJob(), and clang::driver::tools::gnutools::Linker::ConstructJob().
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 163 of file Driver.h.
Referenced by clang::driver::toolchains::HexagonToolChain::addLibCxxIncludePaths(), clang::driver::toolchains::HexagonToolChain::addLibStdCxxIncludePaths(), BuildCompilation(), 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 150 of file Driver.h.
Referenced by BuildCompilation(), Driver(), generateCompilationDiagnostics(), GetNamedOutputPath(), and PrintHelp().
prefix_list clang::driver::Driver::PrefixDirs |
Definition at line 179 of file Driver.h.
Referenced by clang::driver::toolchains::HexagonToolChain::AddClangSystemIncludeArgs(), clang::driver::toolchains::HexagonToolChain::addLibCxxIncludePaths(), clang::driver::toolchains::HexagonToolChain::addLibStdCxxIncludePaths(), BuildCompilation(), 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 166 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::NetBSD::AddClangSystemIncludeArgs(), clang::driver::toolchains::FreeBSD::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(), BuildCompilation(), Driver(), HandleImmediateArgs(), and RenderModulesOptions().
std::string clang::driver::Driver::SysRoot |
sysroot, if present
Definition at line 182 of file Driver.h.
Referenced by clang::driver::toolchains::CrossWindowsToolChain::AddClangCXXStdlibIncludeArgs(), clang::driver::toolchains::Solaris::AddClangSystemIncludeArgs(), clang::driver::toolchains::FreeBSD::AddClangSystemIncludeArgs(), clang::driver::toolchains::NetBSD::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(), BuildCompilation(), 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::netbsd::Linker::ConstructJob(), clang::driver::tools::dragonfly::Linker::ConstructJob(), clang::driver::tools::aix::Linker::ConstructJob(), clang::driver::tools::ananas::Linker::ConstructJob(), clang::driver::tools::CrossWindows::Linker::ConstructJob(), clang::driver::tools::freebsd::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(), 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 169 of file Driver.h.
Referenced by Driver(), and HandleImmediateArgs().
std::string clang::driver::Driver::UserConfigDir |
User directory for config files.
Definition at line 172 of file Driver.h.
Referenced by Driver(), and HandleImmediateArgs().