clang
9.0.0
|
Enumerations | |
enum | ID { TY_INVALID, TY_LAST } |
Functions | |
const char * | getTypeName (ID Id) |
getTypeName - Return the name of the type for Id . More... | |
ID | getPreprocessedType (ID Id) |
getPreprocessedType - Get the ID of the type for this input when it has been preprocessed, or INVALID if this input is not preprocessed. More... | |
ID | getPrecompiledType (ID Id) |
getPrecompiledType - Get the ID of the type for this input when it has been precompiled, or INVALID if this input is not precompiled. More... | |
const char * | getTypeTempSuffix (ID Id, bool CLMode=false) |
getTypeTempSuffix - Return the suffix to use when creating a temp file of this type, or null if unspecified. More... | |
bool | onlyAssembleType (ID Id) |
onlyAssembleType - Should this type only be assembled. More... | |
bool | onlyPrecompileType (ID Id) |
onlyPrecompileType - Should this type only be precompiled. More... | |
bool | canTypeBeUserSpecified (ID Id) |
canTypeBeUserSpecified - Can this type be specified on the command line (by the type name); this is used when forwarding commands to gcc. More... | |
bool | appendSuffixForType (ID Id) |
appendSuffixForType - When generating outputs of this type, should the suffix be appended (instead of replacing the existing suffix). More... | |
bool | canLipoType (ID Id) |
canLipoType - Is this type acceptable as the output of a universal build (currently, just the Nothing, Image, and Object types). More... | |
bool | isAcceptedByClang (ID Id) |
isAcceptedByClang - Can clang handle this input type. More... | |
bool | isCXX (ID Id) |
isCXX - Is this a "C++" input (C++ and Obj-C++ sources and headers). More... | |
bool | isLLVMIR (ID Id) |
Is this LLVM IR. More... | |
bool | isCuda (ID Id) |
isCuda - Is this a CUDA input. More... | |
bool | isHIP (ID Id) |
isHIP - Is this a HIP input. More... | |
bool | isObjC (ID Id) |
isObjC - Is this an "ObjC" input (Obj-C and Obj-C++ sources and headers). More... | |
bool | isSrcFile (ID Id) |
isSrcFile - Is this a source file, i.e. More... | |
ID | lookupTypeForExtension (llvm::StringRef Ext) |
lookupTypeForExtension - Lookup the type to use for the file extension Ext . More... | |
ID | lookupTypeForTypeSpecifier (const char *Name) |
lookupTypeForTypSpecifier - Lookup the type to use for a user specified type name. More... | |
void | getCompilationPhases (ID Id, llvm::SmallVectorImpl< phases::ID > &Phases) |
getCompilationPhases - Get the list of compilation phases ('Phases') to be done for type 'Id'. More... | |
ID | lookupCXXTypeForCType (ID Id) |
lookupCXXTypeForCType - Lookup CXX input type that corresponds to given C type (used for clang++ emulation of g++ behaviour) More... | |
ID | lookupHeaderTypeForSourceType (ID Id) |
Lookup header file input type that corresponds to given source file type (used for clang-cl emulation of ). More... | |
appendSuffixForType - When generating outputs of this type, should the suffix be appended (instead of replacing the existing suffix).
Definition at line 83 of file Types.cpp.
References getInfo().
Referenced by clang::driver::Driver::GetNamedOutputPath().
canLipoType - Is this type acceptable as the output of a universal build (currently, just the Nothing, Image, and Object types).
Definition at line 87 of file Types.cpp.
Referenced by clang::driver::Driver::BuildUniversalActions().
canTypeBeUserSpecified - Can this type be specified on the command line (by the type name); this is used when forwarding commands to gcc.
Definition at line 79 of file Types.cpp.
References getInfo().
Referenced by clang::driver::tools::gcc::Common::ConstructJob().
void clang::driver::types::getCompilationPhases | ( | ID | Id, |
llvm::SmallVectorImpl< phases::ID > & | Phases | ||
) |
getCompilationPhases - Get the list of compilation phases ('Phases') to be done for type 'Id'.
Definition at line 267 of file Types.cpp.
References clang::driver::phases::Assemble, clang::driver::phases::Backend, clang::driver::phases::Compile, getPrecompiledType(), getPreprocessedType(), clang::driver::phases::Link, clang::driver::phases::MaxNumberOfPhases, onlyAssembleType(), onlyPrecompileType(), clang::driver::phases::Precompile, clang::driver::phases::Preprocess, and TY_INVALID.
Referenced by clang::driver::Driver::BuildActions().
getPrecompiledType - Get the ID of the type for this input when it has been precompiled, or INVALID if this input is not precompiled.
Definition at line 46 of file Types.cpp.
References getInfo(), onlyPrecompileType(), and TY_INVALID.
Referenced by clang::driver::tools::Clang::ConstructJob(), clang::driver::Driver::ConstructPhaseAction(), and getCompilationPhases().
getPreprocessedType - Get the ID of the type for this input when it has been preprocessed, or INVALID if this input is not preprocessed.
Definition at line 42 of file Types.cpp.
References getInfo(), and TypeInfo::PreprocessedType.
Referenced by clang::driver::Driver::BuildActions(), clang::driver::tools::Clang::ConstructJob(), clang::driver::Driver::ConstructPhaseAction(), clang::driver::Driver::generateCompilationDiagnostics(), getCompilationPhases(), and isSrcFile().
const char * clang::driver::types::getTypeName | ( | ID | Id | ) |
getTypeName - Return the name of the type for Id
.
Definition at line 38 of file Types.cpp.
References getInfo(), and TypeInfo::Name.
Referenced by addDashXForInput(), clang::driver::Driver::BuildInputs(), clang::driver::Driver::BuildUniversalActions(), clang::driver::tools::gcc::Common::ConstructJob(), clang::driver::tools::Clang::ConstructJob(), clang::TargetInfo::hasAlignMac68kSupport(), ParseAArch64BranchProtection(), and clang::driver::tools::gcc::Compiler::RenderExtraToolArgs().
getTypeTempSuffix - Return the suffix to use when creating a temp file of this type, or null if unspecified.
Definition at line 54 of file Types.cpp.
References getInfo(), and TypeInfo::TempSuffix.
Referenced by clang::driver::tools::OffloadBundler::ConstructJob(), clang::driver::tools::OffloadBundler::ConstructJobMultipleOutputs(), clang::driver::Driver::GetNamedOutputPath(), MakeCLOutputFilename(), and shouldLinkerNotDedup().
isAcceptedByClang - Can clang handle this input type.
Definition at line 94 of file Types.cpp.
Referenced by clang::driver::Driver::ShouldUseClangCompiler().
isCuda - Is this a CUDA input.
Definition at line 166 of file Types.cpp.
Referenced by clang::driver::Driver::CreateOffloadingDeviceToolChains().
isCXX - Is this a "C++" input (C++ and Obj-C++ sources and headers).
Definition at line 135 of file Types.cpp.
Referenced by clang::driver::SanitizerArgs::addArgs(), addExceptionArgs(), clang::driver::tools::Clang::ConstructJob(), parseClangCLEHFlags(), RelocationModelName(), RenderAnalyzerOptions(), RenderModulesOptions(), and RenderObjCOptions().
isHIP - Is this a HIP input.
Definition at line 178 of file Types.cpp.
Referenced by clang::driver::Driver::CreateOffloadingDeviceToolChains().
Is this LLVM IR.
Definition at line 153 of file Types.cpp.
Referenced by clang::driver::tools::hexagon::Assembler::ConstructJob(), clang::driver::tools::gcc::Common::ConstructJob(), and clang::driver::tools::Clang::ConstructJob().
isObjC - Is this an "ObjC" input (Obj-C and Obj-C++ sources and headers).
Definition at line 122 of file Types.cpp.
Referenced by addExceptionArgs(), and RenderObjCOptions().
isSrcFile - Is this a source file, i.e.
something that still has to be preprocessed. The logic behind this is the same that decides if the first compilation phase is a preprocessing one.
Definition at line 190 of file Types.cpp.
References getPreprocessedType(), and TY_INVALID.
Referenced by clang::driver::Driver::BuildInputs().
lookupCXXTypeForCType - Lookup CXX input type that corresponds to given C type (used for clang++ emulation of g++ behaviour)
Definition at line 293 of file Types.cpp.
References Id.
Referenced by clang::driver::Driver::BuildInputs().
Lookup header file input type that corresponds to given source file type (used for clang-cl emulation of ).
Definition at line 309 of file Types.cpp.
References Id.
Referenced by clang::driver::Driver::BuildActions().
types::ID clang::driver::types::lookupTypeForExtension | ( | llvm::StringRef | Ext | ) |
lookupTypeForExtension - Lookup the type to use for the file extension Ext
.
Definition at line 194 of file Types.cpp.
References TY_INVALID.
Referenced by clang::driver::Driver::BuildInputs(), clang::driver::toolchains::MachO::LookupTypeForExtension(), and clang::driver::ToolChain::LookupTypeForExtension().
types::ID clang::driver::types::lookupTypeForTypeSpecifier | ( | const char * | Name | ) |
lookupTypeForTypSpecifier - Lookup the type to use for a user specified type name.
Definition at line 255 of file Types.cpp.
Referenced by clang::driver::Driver::BuildInputs().
onlyAssembleType - Should this type only be assembled.
Definition at line 71 of file Types.cpp.
References getInfo().
Referenced by getCompilationPhases().
onlyPrecompileType - Should this type only be precompiled.
Definition at line 75 of file Types.cpp.
References getInfo().
Referenced by getCompilationPhases(), and getPrecompiledType().