clang  5.0.0
Public Types | Public Member Functions | Static Public Member Functions | Public Attributes | List of all members
clang::driver::Driver Class Reference

Driver - Encapsulate logic for constructing compilation processes from a set of gcc-driver-like command line arguments. More...

#include "clang/Driver/Driver.h"

Collaboration diagram for clang::driver::Driver:
[legend]

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...
 
typedef SmallVector< std::pair
< types::ID, const
llvm::opt::Arg * >, 16 > 
InputList
 A list of inputs and their types for the given arguments. 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...
 
 Driver (StringRef ClangExecutable, StringRef DefaultTargetTriple, DiagnosticsEngine &Diags, IntrusiveRefCntPtr< vfs::FileSystem > VFS=nullptr)
 
Accessors
const std::string & getCCCGenericGCCName () const
 Name to use when invoking gcc/g++. More...
 
const llvm::opt::OptTable & getOpts () const
 
const DiagnosticsEnginegetDiags () const
 
vfs::FileSystemgetVFS () const
 
bool getCheckInputsExist () const
 
void setCheckInputsExist (bool Value)
 
const std::string & getTitle ()
 
void setTitle (std::string Value)
 
const char * getClangProgramPath () const
 Get the path to the main clang executable. More...
 
const char * getInstalledDir () const
 Get the path to where the clang executable was installed. More...
 
void setInstalledDir (StringRef Value)
 
bool isSaveTempsEnabled () const
 
bool isSaveTempsObj () const
 
bool embedBitcodeEnabled () const
 
bool embedBitcodeInObject () const
 
bool embedBitcodeMarkerOnly () const
 
OpenMPRuntimeKind getOpenMPRuntime (const llvm::opt::ArgList &Args) const
 Compute the desired OpenMP runtime from the flags provided. More...
 
Primary Functionality
void CreateOffloadingDeviceToolChains (Compilation &C, InputList &Inputs)
 CreateOffloadingDeviceToolChains - create all the toolchains required to support offloading devices given the programming models specified in the current compilation. More...
 
CompilationBuildCompilation (ArrayRef< const char * > Args)
 BuildCompilation - Construct a compilation object for a command line argument vector. More...
 
Driver Steps
void ParseDriverMode (StringRef ProgramName, ArrayRef< const char * > Args)
 ParseDriverMode - Look for and handle the driver mode option in Args. More...
 
llvm::opt::InputArgList ParseArgStrings (ArrayRef< const char * > Args, 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...
 
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)
 generateCompilationDiagnostics - Generate diagnostics information including preprocessed source file(s). More...
 

Static Public Member Functions

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...
 

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...
 
std::string InstalledDir
 The path to the installed clang directory, if any. More...
 
std::string ResourceDir
 The path to the compiler resource directory. More...
 
prefix_list PrefixDirs
 
std::string SysRoot
 sysroot, if present More...
 
std::string DyldPrefix
 Dynamic loader prefix, if present. More...
 
bool UseStdLib
 If the standard library is used. 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
 
const char * CCPrintOptionsFilename
 The file to log CC_PRINT_OPTIONS output to, if enabled. More...
 
const char * CCPrintHeadersFilename
 The file to log CC_PRINT_HEADERS output to, if enabled. More...
 
const char * CCLogDiagnosticsFilename
 The file to log CC_LOG_DIAGNOSTICS output to, if enabled. More...
 
unsigned CCCPrintBindings: 1
 Only print tool bindings, don't build any jobs. More...
 
unsigned CCPrintOptions: 1
 Set CC_PRINT_OPTIONS mode, which is like -v but logs the commands to CCPrintOptionsFilename or to stderr. More...
 
unsigned CCPrintHeaders: 1
 Set CC_PRINT_HEADERS mode, which causes the frontend to log header include information to CCPrintHeadersFilename or to stderr. More...
 
unsigned CCLogDiagnostics: 1
 Set CC_LOG_DIAGNOSTICS mode, which causes the frontend to log diagnostics to CCLogDiagnosticsFilename or to stderr, in a stable machine readable format. More...
 
unsigned CCGenDiagnostics: 1
 Whether the driver is generating diagnostics for debugging purposes. More...
 
unsigned CCCUsePCH: 1
 Use lazy precompiled headers for PCH support. More...
 
unsigned GenReproducer: 1
 Force clang to emit reproducer for driver invocation. More...
 

Helper Methods

void PrintActions (const Compilation &C) const
 PrintActions - Print the list of actions. More...
 
void PrintHelp (bool ShowHidden) const
 PrintHelp - Print the help text. More...
 
void PrintVersion (const Compilation &C, raw_ostream &OS) const
 PrintVersion - Print the driver version. More...
 
std::string GetFilePath (StringRef Name, const ToolChain &TC) const
 GetFilePath - Lookup Name in the list of file search paths. More...
 
std::string GetProgramPath (StringRef Name, const ToolChain &TC) const
 GetProgramPath - Lookup Name in the list of program search paths. More...
 
bool HandleImmediateArgs (const Compilation &C)
 HandleImmediateArgs - Handle any arguments which should be treated before building actions or binding tools. More...
 
ActionConstructPhaseAction (Compilation &C, const llvm::opt::ArgList &Args, phases::ID Phase, Action *Input) const
 ConstructAction - Construct the appropriate action to do for Phase on the Input, taking in to account arguments like -fsyntax-only or –analyze. More...
 
InputInfo 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 >, InputInfo > &CachedResults, Action::OffloadKind TargetDeviceOffloadKind) const
 BuildJobsForAction - Construct the jobs to perform for the action A and return an InputInfo for the result of running A. More...
 
const char * getDefaultImageName () const
 Returns the default name for linked images (e.g., "a.out"). More...
 
const char * GetNamedOutputPath (Compilation &C, const JobAction &JA, const char *BaseInput, StringRef BoundArch, bool AtTopLevel, bool MultipleArchs, StringRef NormalizedTriple) const
 GetNamedOutputPath - Return the name to use for the output of the action JA. More...
 
std::string GetTemporaryPath (StringRef Prefix, StringRef Suffix) const
 GetTemporaryPath - Return the pathname of a temporary file to use as part of compilation; the file will have the given prefix and suffix. More...
 
std::string 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 isUsingLTO () const
 Returns true if we are performing any kind of LTO. More...
 
LTOKind getLTOMode () const
 Get the specific kind of LTO being performed. More...
 

Detailed Description

Driver - Encapsulate logic for constructing compilation processes from a set of gcc-driver-like command line arguments.

Definition at line 65 of file Driver.h.

Member Typedef Documentation

typedef SmallVector<std::pair<types::ID, const llvm::opt::Arg *>, 16> clang::driver::Driver::InputList

A list of inputs and their types for the given arguments.

Definition at line 171 of file Driver.h.

A prefix directory used to emulate a limited subset of GCC's '-Bprefix' functionality.

FIXME: This type of customization should be removed in favor of the universal driver when it is ready.

Definition at line 142 of file Driver.h.

Member Enumeration Documentation

Enumerator
OMPRT_Unknown 

An unknown OpenMP runtime.

We can't generate effective OpenMP code without knowing what runtime to target.

OMPRT_OMP 

The LLVM OpenMP runtime.

When completed and integrated, this will become the default for Clang.

OMPRT_GOMP 

The GNU OpenMP runtime.

Clang doesn't support generating OpenMP code for this runtime but can swallow the pragmas, and find and link against the runtime library itself.

OMPRT_IOMP5 

The legacy name for the LLVM OpenMP runtime from when it was the Intel OpenMP runtime.

We support this mode for users with existing dependencies on this runtime library name.

Definition at line 95 of file Driver.h.

Constructor & Destructor Documentation

Driver::Driver ( StringRef  ClangExecutable,
StringRef  DefaultTargetTriple,
DiagnosticsEngine Diags,
IntrusiveRefCntPtr< vfs::FileSystem VFS = nullptr 
)

Definition at line 84 of file Driver.cpp.

References Dir, clang::vfs::getRealFileSystem(), InstalledDir, Name, P, and ResourceDir.

Member Function Documentation

void Driver::BuildActions ( Compilation C,
llvm::opt::DerivedArgList &  Args,
const InputList Inputs,
ActionList Actions 
) const
Compilation * Driver::BuildCompilation ( ArrayRef< const char * >  Args)

BuildCompilation - Construct a compilation object for a command line argument vector.

Returns
A compilation, or 0 if none was built for the given argument vector. A null return value does not necessarily indicate an error condition, the diagnostics should be queried to determine if an error occurred.

Definition at line 606 of file Driver.cpp.

References BuildActions(), BuildInputs(), BuildJobs(), BuildUniversalActions(), CCCPrintBindings, CCCUsePCH, ClangExecutable, computeTargetTriple(), CreateOffloadingDeviceToolChains(), Dir, DyldPrefix, GenReproducer, clang::driver::Compilation::getActions(), clang::driver::Compilation::getArgs(), clang::driver::Compilation::getDefaultToolChain(), clang::driver::ToolChain::getTriple(), HandleImmediateArgs(), InstalledDir, IsCLMode(), Name, ParseArgStrings(), ParseDriverMode(), PrefixDirs, PrintActions(), clang::DiagnosticsEngine::Report(), ResourceDir, clang::DiagnosticsEngine::setIgnoreAllWarnings(), SysRoot, and UseStdLib.

Referenced by clang::createInvocationFromCommandLine().

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.

Parameters
TC- The default host tool chain.
Args- The input arguments.
Inputs- The list to store the resulting compilation inputs onto.

Definition at line 1563 of file Driver.cpp.

References CCCIsCPP(), CCCIsCXX(), Diag(), DiagnoseInputExistence(), clang::driver::types::getTypeName(), IsCLMode(), 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
InputInfo 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 >, InputInfo > &  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 3200 of file Driver.cpp.

References GetTriplePlusArchString(), and Result.

Referenced by BuildJobs().

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.

Parameters
C- The compilation that is being built.
TC- The default host tool chain.

Definition at line 1435 of file Driver.cpp.

References BuildActions(), clang::driver::types::canLipoType(), ContainsCompileOrAssembleAction(), Diag(), clang::driver::Compilation::getActions(), clang::driver::tools::darwin::getArchTypeForMachOArchName(), clang::driver::Compilation::getArgs(), clang::driver::ToolChain::getDefaultUniversalArchName(), clang::driver::types::getTypeName(), and clang::driver::Compilation::MakeAction().

Referenced by BuildCompilation(), and generateCompilationDiagnostics().

bool clang::driver::Driver::CCCIsCC ( ) const
inline

Whether the driver should follow gcc like behavior.

Definition at line 180 of file Driver.h.

bool clang::driver::Driver::CCCIsCPP ( ) const
inline

Whether the driver is just the preprocessor.

Definition at line 177 of file Driver.h.

Referenced by BuildActions(), BuildInputs(), and CheckPreprocessingOptions().

bool clang::driver::Driver::CCCIsCXX ( ) const
inline
Action * Driver::ConstructPhaseAction ( Compilation C,
const llvm::opt::ArgList &  Args,
phases::ID  Phase,
Action Input 
) const
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 508 of file Driver.cpp.

References clang::driver::Compilation::addOffloadDeviceToolChain(), Diag(), clang::driver::Compilation::getInputArgs(), getOpenMPRuntime(), clang::driver::Compilation::getSingleOffloadToolChain(), clang::driver::ToolChain::getTriple(), I, clang::driver::types::isCuda(), clang::driver::Action::OFK_Cuda, clang::driver::Action::OFK_Host, clang::driver::Action::OFK_OpenMP, OMPRT_IOMP5, and OMPRT_OMP.

Referenced by BuildCompilation().

DiagnosticBuilder clang::driver::Driver::Diag ( unsigned  DiagID) const
inline

Definition at line 116 of file Driver.h.

References clang::DiagnosticsEngine::Report().

Referenced by clang::driver::SanitizerArgs::addArgs(), clang::driver::toolchains::CudaToolChain::addClangTargetOptions(), clang::driver::CudaInstallationDetector::AddCudaIncludeArgs(), addExceptionArgs(), clang::driver::toolchains::DarwinClang::AddLinkRuntimeLibArgs(), AddOpenMPLinkerScript(), addPGOAndCoverageFlags(), clang::driver::tools::ClangAs::AddX86TargetArgs(), BuildActions(), clang::driver::toolchains::MSVCToolChain::buildAssembler(), BuildInputs(), BuildJobs(), clang::driver::toolchains::MSVCToolChain::buildLinker(), BuildUniversalActions(), checkARMArchName(), checkARMCPUName(), CheckCodeGenerationOptions(), clang::driver::CudaInstallationDetector::CheckCudaVersionSupportsArch(), clang::driver::toolchains::Darwin::CheckObjCARC(), CheckPreprocessingOptions(), clang::driver::Compilation::CleanupFile(), CollectArgsForIntegratedAssembler(), clang::driver::ToolChain::computeMSVCVersion(), computeTargetTriple(), clang::driver::tools::hexagon::Assembler::ConstructJob(), clang::driver::tools::nacltools::Linker::ConstructJob(), clang::driver::tools::MinGW::Linker::ConstructJob(), clang::driver::tools::PS4cpu::Link::ConstructJob(), clang::driver::tools::gnutools::Linker::ConstructJob(), clang::driver::tools::gcc::Common::ConstructJob(), clang::driver::tools::Clang::ConstructJob(), CreateOffloadingDeviceToolChains(), DecodeAArch64Features(), DiagnoseInputExistence(), clang::driver::FallbackCommand::Execute(), clang::driver::Compilation::ExecuteCommand(), ExecuteCompilation(), generateCompilationDiagnostics(), getAMDGPUTargetFeatures(), getARMFPUFeatures(), getARMHWDivFeatures(), 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::ToolChain::GetLinkerPath(), getOpenMPRuntime(), getRefinementStep(), clang::driver::toolchains::Fuchsia::GetRuntimeLibType(), clang::driver::ToolChain::GetRuntimeLibType(), clang::driver::toolchains::DarwinClang::GetRuntimeLibType(), GetTemporaryPath(), clang::driver::toolchains::MyriadToolChain::MyriadToolChain(), ParseArgStrings(), parseArgValues(), parseClangCLEHFlags(), parseCoverageFeatures(), ParseMRecip(), parseSanitizeTrapArgs(), clang::driver::toolchains::PS4CPU::PS4CPU(), RenderDebugInfoCompressionArgs(), clang::driver::tools::gcc::Compiler::RenderExtraToolArgs(), clang::driver::SanitizerArgs::SanitizerArgs(), clang::driver::ToolChain::ToolChain(), clang::driver::toolchains::CudaToolChain::TranslateArgs(), clang::driver::toolchains::MachO::TranslateArgs(), clang::driver::toolchains::Darwin::TranslateArgs(), and clang::driver::XRayArgs::XRayArgs().

bool clang::driver::Driver::embedBitcodeEnabled ( ) const
inline

Definition at line 311 of file Driver.h.

bool clang::driver::Driver::embedBitcodeInObject ( ) const
inline

Definition at line 312 of file Driver.h.

Referenced by clang::driver::tools::Clang::ConstructJob().

bool clang::driver::Driver::embedBitcodeMarkerOnly ( ) const
inline

Definition at line 313 of file Driver.h.

Referenced by clang::driver::tools::Clang::ConstructJob().

int Driver::ExecuteCompilation ( Compilation C,
SmallVectorImpl< std::pair< int, const Command * > > &  FailingCommands 
)
void Driver::generateCompilationDiagnostics ( Compilation C,
const Command FailingCommand 
)
const std::string& clang::driver::Driver::getCCCGenericGCCName ( ) const
inline

Name to use when invoking gcc/g++.

Definition at line 278 of file Driver.h.

Referenced by clang::driver::tools::gcc::Common::ConstructJob().

bool clang::driver::Driver::getCheckInputsExist ( ) const
inline

Definition at line 286 of file Driver.h.

Referenced by DiagnoseInputExistence().

const char* clang::driver::Driver::getClangProgramPath ( ) const
inline

Get the path to the main clang executable.

Definition at line 294 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 3766 of file Driver.cpp.

References clang::driver::Compilation::getArgs().

Referenced by GetNamedOutputPath().

const char * Driver::getDefaultImageName ( ) const

Returns the default name for linked images (e.g., "a.out").

Definition at line 3465 of file Driver.cpp.

References normalize().

Referenced by BuildJobs(), and GetNamedOutputPath().

const DiagnosticsEngine& clang::driver::Driver::getDiags ( ) const
inline

Definition at line 282 of file Driver.h.

Referenced by clang::driver::tools::Clang::ConstructJob().

std::string Driver::GetFilePath ( StringRef  Name,
const ToolChain TC 
) const

GetFilePath - Lookup Name in the list of file search paths.

Parameters
TC- The tool chain for additional information on directories to search.

Definition at line 3668 of file Driver.cpp.

References Dir, clang::driver::ToolChain::getFilePaths(), Name, P, PrefixDirs, ResourceDir, and SysRoot.

Referenced by clang::driver::ToolChain::GetFilePath(), and HandleImmediateArgs().

const char* clang::driver::Driver::getInstalledDir ( ) const
inline
LTOKind clang::driver::Driver::getLTOMode ( ) const
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.

Parameters
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 3503 of file Driver.cpp.

References clang::driver::Compilation::addResultFile(), clang::driver::Compilation::addTempFile(), clang::driver::types::appendSuffixForType(), CCGenDiagnostics, End, clang::driver::Compilation::getArgs(), GetClPchPath(), getDefaultImageName(), GetTemporaryPath(), clang::driver::Action::getType(), clang::driver::types::getTypeTempSuffix(), IsCLMode(), isSaveTempsEnabled(), isSaveTempsObj(), MakeCLOutputFilename(), and Name.

Driver::OpenMPRuntimeKind Driver::getOpenMPRuntime ( const llvm::opt::ArgList &  Args) const

Compute the desired OpenMP runtime from the flags provided.

Definition at line 483 of file Driver.cpp.

References Diag(), OMPRT_GOMP, OMPRT_IOMP5, OMPRT_OMP, and OMPRT_Unknown.

Referenced by CreateOffloadingDeviceToolChains().

const llvm::opt::OptTable& clang::driver::Driver::getOpts ( ) const
inline
std::string Driver::GetProgramPath ( StringRef  Name,
const ToolChain TC 
) const

GetProgramPath - Lookup Name in the list of program search paths.

Parameters
TC- The provided tool chain for additional information on directories to search.

Definition at line 3721 of file Driver.cpp.

References clang::driver::ToolChain::getProgramPaths(), Name, P, PrefixDirs, and ScanDirForExecutable().

Referenced by clang::driver::ToolChain::GetProgramPath(), and HandleImmediateArgs().

bool Driver::GetReleaseVersion ( StringRef  Str,
unsigned Major,
unsigned Minor,
unsigned Micro,
bool HadExtra 
)
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.

Returns
True if the entire string was parsed (9.2), or all groups were parsed (10.3.5extrastuff). HadExtra is true if all groups were parsed but extra characters remain at the end.

([0-9]+)(.([0-9]+)?))?)? and return the grouped values as integers. Numbers which are not provided are set to 0.

Returns
True if the entire string was parsed (9.2), or all groups were parsed (10.3.5extrastuff).

Definition at line 3948 of file Driver.cpp.

Referenced by getSystemOrSDKMacOSVersion().

bool Driver::GetReleaseVersion ( StringRef  Str,
MutableArrayRef< unsigned Digits 
)
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().

Returns
True if the entire string was parsed and there are no extra characters remaining at the end.

Definition at line 3986 of file Driver.cpp.

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 3755 of file Driver.cpp.

References Diag().

Referenced by AddOpenMPLinkerScript(), and GetNamedOutputPath().

const std::string& clang::driver::Driver::getTitle ( )
inline

Definition at line 290 of file Driver.h.

References DriverTitle.

vfs::FileSystem& clang::driver::Driver::getVFS ( ) const
inline
bool Driver::HandleImmediateArgs ( const Compilation C)
bool clang::driver::Driver::IsCLMode ( ) const
inline
bool clang::driver::Driver::isSaveTempsEnabled ( ) const
inline
bool clang::driver::Driver::isSaveTempsObj ( ) const
inline

Definition at line 309 of file Driver.h.

Referenced by GetNamedOutputPath().

bool clang::driver::Driver::isUsingLTO ( ) const
inline
InputArgList Driver::ParseArgStrings ( ArrayRef< const char * >  Args,
bool ContainsError 
)

ParseArgStrings - Parse the given list of strings into an ArgList.

Definition at line 155 of file Driver.cpp.

References Diag(), clang::DiagnosticsEngine::getDiagnosticLevel(), getOpts(), ID, IsCLMode(), clang::DiagnosticsEngine::Report(), clang::driver::options::Unsupported, and clang::DiagnosticsEngine::Warning.

Referenced by BuildCompilation().

void Driver::ParseDriverMode ( StringRef  ProgramName,
ArrayRef< const char * >  Args 
)

ParseDriverMode - Look for and handle the driver mode option in Args.

Definition at line 120 of file Driver.cpp.

References clang::LangAS::Default, and clang::driver::ToolChain::getTargetAndModeFromProgramName().

Referenced by BuildCompilation().

void Driver::PrintActions ( const Compilation C) const

PrintActions - Print the list of actions.

Definition at line 1415 of file Driver.cpp.

References clang::driver::Compilation::getActions(), and PrintActions1().

Referenced by BuildCompilation().

void Driver::PrintHelp ( bool  ShowHidden) const

PrintHelp - Print the help text.

Parameters
ShowHidden- Show hidden options.

Definition at line 1118 of file Driver.cpp.

References DriverTitle, getOpts(), Name, and clang::driver::options::NoDriverOption.

Referenced by HandleImmediateArgs().

void Driver::PrintVersion ( const Compilation C,
raw_ostream &  OS 
) const
void clang::driver::Driver::setCheckInputsExist ( bool  Value)
inline

Definition at line 288 of file Driver.h.

Referenced by clang::createInvocationFromCommandLine().

void clang::driver::Driver::setInstalledDir ( StringRef  Value)
inline

Definition at line 304 of file Driver.h.

References InstalledDir.

void clang::driver::Driver::setTitle ( std::string  Value)
inline

Definition at line 291 of file Driver.h.

References DriverTitle.

Referenced by clang::tooling::newDriver().

bool Driver::ShouldUseClangCompiler ( const JobAction JA) const

ShouldUseClangCompiler - Should the clang compiler be used to handle this action.

Definition at line 3929 of file Driver.cpp.

References clang::driver::Action::input_begin(), clang::driver::types::isAcceptedByClang(), and clang::driver::Action::size().

Member Data Documentation

unsigned clang::driver::Driver::CCCPrintBindings

Only print tool bindings, don't build any jobs.

Definition at line 186 of file Driver.h.

Referenced by BuildCompilation().

unsigned clang::driver::Driver::CCCUsePCH

Use lazy precompiled headers for PCH support.

Definition at line 217 of file Driver.h.

Referenced by BuildCompilation(), and clang::driver::tools::Clang::ConstructJob().

unsigned clang::driver::Driver::CCGenDiagnostics

Whether the driver is generating diagnostics for debugging purposes.

Definition at line 202 of file Driver.h.

Referenced by clang::driver::tools::Clang::ConstructJob(), ConstructPhaseAction(), generateCompilationDiagnostics(), and GetNamedOutputPath().

unsigned clang::driver::Driver::CCLogDiagnostics

Set CC_LOG_DIAGNOSTICS mode, which causes the frontend to log diagnostics to CCLogDiagnosticsFilename or to stderr, in a stable machine readable format.

Definition at line 199 of file Driver.h.

Referenced by clang::driver::tools::Clang::ConstructJob().

const char* clang::driver::Driver::CCLogDiagnosticsFilename

The file to log CC_LOG_DIAGNOSTICS output to, if enabled.

Definition at line 167 of file Driver.h.

Referenced by clang::driver::tools::Clang::ConstructJob().

unsigned clang::driver::Driver::CCPrintHeaders

Set CC_PRINT_HEADERS mode, which causes the frontend to log header include information to CCPrintHeadersFilename or to stderr.

Definition at line 194 of file Driver.h.

Referenced by clang::driver::tools::Clang::ConstructJob().

const char* clang::driver::Driver::CCPrintHeadersFilename

The file to log CC_PRINT_HEADERS output to, if enabled.

Definition at line 164 of file Driver.h.

Referenced by clang::driver::tools::Clang::ConstructJob().

unsigned clang::driver::Driver::CCPrintOptions

Set CC_PRINT_OPTIONS mode, which is like -v but logs the commands to CCPrintOptionsFilename or to stderr.

Definition at line 190 of file Driver.h.

const char* clang::driver::Driver::CCPrintOptionsFilename

The file to log CC_PRINT_OPTIONS output to, if enabled.

Definition at line 161 of file Driver.h.

std::string clang::driver::Driver::ClangExecutable

The original path to the clang executable.

Definition at line 130 of file Driver.h.

Referenced by BuildCompilation(), and getClangProgramPath().

std::string clang::driver::Driver::Dir
std::string clang::driver::Driver::DriverTitle

Driver title to use with help.

Definition at line 155 of file Driver.h.

Referenced by getTitle(), PrintHelp(), and setTitle().

std::string clang::driver::Driver::DyldPrefix
unsigned clang::driver::Driver::GenReproducer

Force clang to emit reproducer for driver invocation.

This is enabled indirectly by setting FORCE_CLANG_DIAGNOSTICS_CRASH environment variable or when using the -gen-reproducer driver flag.

Definition at line 222 of file Driver.h.

Referenced by BuildCompilation().

std::string clang::driver::Driver::HostBits

Information about the host which can be overridden by the user.

Definition at line 158 of file Driver.h.

std::string clang::driver::Driver::HostMachine

Definition at line 158 of file Driver.h.

std::string clang::driver::Driver::HostRelease

Definition at line 158 of file Driver.h.

std::string clang::driver::Driver::HostSystem

Definition at line 158 of file Driver.h.

std::string clang::driver::Driver::InstalledDir
std::string clang::driver::Driver::Name

The name the driver was invoked as.

Definition at line 123 of file Driver.h.

Referenced by BuildCompilation(), Driver(), generateCompilationDiagnostics(), GetFilePath(), GetNamedOutputPath(), GetProgramPath(), PrintHelp(), and ScanDirForExecutable().

prefix_list clang::driver::Driver::PrefixDirs
std::string clang::driver::Driver::ResourceDir
std::string clang::driver::Driver::SysRoot

sysroot, if present

Definition at line 146 of file Driver.h.

Referenced by clang::driver::toolchains::CrossWindowsToolChain::AddClangCXXStdlibIncludeArgs(), clang::driver::toolchains::CrossWindowsToolChain::AddClangSystemIncludeArgs(), clang::driver::toolchains::Fuchsia::AddClangSystemIncludeArgs(), clang::driver::toolchains::MyriadToolChain::AddClangSystemIncludeArgs(), clang::driver::toolchains::Linux::addLibStdCxxIncludePaths(), BuildCompilation(), clang::driver::toolchains::Linux::computeSysRoot(), clang::driver::toolchains::MipsLLVMToolChain::computeSysRoot(), ConstructGoldLinkJob(), clang::driver::tools::fuchsia::Linker::ConstructJob(), clang::driver::tools::cloudabi::Linker::ConstructJob(), clang::driver::tools::nacltools::Linker::ConstructJob(), clang::driver::tools::dragonfly::Linker::ConstructJob(), clang::driver::tools::freebsd::Linker::ConstructJob(), clang::driver::tools::CrossWindows::Linker::ConstructJob(), clang::driver::tools::ananas::Linker::ConstructJob(), clang::driver::tools::MinGW::Linker::ConstructJob(), clang::driver::tools::netbsd::Linker::ConstructJob(), clang::driver::tools::gnutools::Linker::ConstructJob(), ConstructPS4LinkJob(), clang::driver::toolchains::CrossWindowsToolChain::CrossWindowsToolChain(), clang::driver::CudaInstallationDetector::CudaInstallationDetector(), clang::driver::toolchains::Haiku::findLibCxxIncludePath(), clang::driver::toolchains::BareMetal::findLibCxxIncludePath(), clang::driver::toolchains::NetBSD::findLibCxxIncludePath(), clang::driver::toolchains::Generic_GCC::findLibCxxIncludePath(), clang::driver::toolchains::Fuchsia::Fuchsia(), GetFilePath(), clang::driver::Compilation::getSysRoot(), clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::init(), and clang::driver::toolchains::MinGW::MinGW().

bool clang::driver::Driver::UseStdLib

If the standard library is used.

Definition at line 152 of file Driver.h.

Referenced by BuildCompilation().


The documentation for this class was generated from the following files: