clang 19.0.0git
Types.h
Go to the documentation of this file.
1//===--- Types.h - Input & Temporary Driver Types ---------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_CLANG_DRIVER_TYPES_H
10#define LLVM_CLANG_DRIVER_TYPES_H
11
12#include "clang/Driver/Phases.h"
13#include "llvm/ADT/SmallVector.h"
14#include "llvm/Option/ArgList.h"
15
16namespace llvm {
17class StringRef;
18}
19namespace clang {
20namespace driver {
21class Driver;
22namespace types {
23 enum ID {
25#define TYPE(NAME, ID, PP_TYPE, TEMP_SUFFIX, ...) TY_##ID,
26#include "clang/Driver/Types.def"
27#undef TYPE
29 };
30
31 /// getTypeName - Return the name of the type for \p Id.
32 const char *getTypeName(ID Id);
33
34 /// getPreprocessedType - Get the ID of the type for this input when
35 /// it has been preprocessed, or INVALID if this input is not
36 /// preprocessed.
38
39 /// getPrecompiledType - Get the ID of the type for this input when
40 /// it has been precompiled, or INVALID if this input is not
41 /// precompiled.
43
44 /// getTypeTempSuffix - Return the suffix to use when creating a
45 /// temp file of this type, or null if unspecified.
46 const char *getTypeTempSuffix(ID Id, bool CLStyle = false);
47
48 /// onlyPrecompileType - Should this type only be precompiled.
50
51 /// canTypeBeUserSpecified - Can this type be specified on the
52 /// command line (by the type name); this is used when forwarding
53 /// commands to gcc.
55
56 /// appendSuffixForType - When generating outputs of this type,
57 /// should the suffix be appended (instead of replacing the existing
58 /// suffix).
60
61 /// canLipoType - Is this type acceptable as the output of a
62 /// universal build (currently, just the Nothing, Image, and Object
63 /// types).
64 bool canLipoType(ID Id);
65
66 /// isAcceptedByClang - Can clang handle this input type.
68
69 /// isAcceptedByFlang - Can flang handle this input type.
71
72 /// isDerivedFromC - Is the input derived from C.
73 ///
74 /// That is, does the lexer follow the rules of
75 /// TokenConcatenation::AvoidConcat. If this is the case, the preprocessor may
76 /// add and remove whitespace between tokens. Used to determine whether the
77 /// input can be processed by -fminimize-whitespace.
78 bool isDerivedFromC(ID Id);
79
80 /// isCXX - Is this a "C++" input (C++ and Obj-C++ sources and headers).
81 bool isCXX(ID Id);
82
83 /// Is this LLVM IR.
84 bool isLLVMIR(ID Id);
85
86 /// isCuda - Is this a CUDA input.
87 bool isCuda(ID Id);
88
89 /// isHIP - Is this a HIP input.
90 bool isHIP(ID Id);
91
92 /// isObjC - Is this an "ObjC" input (Obj-C and Obj-C++ sources and headers).
93 bool isObjC(ID Id);
94
95 /// isOpenCL - Is this an "OpenCL" input.
96 bool isOpenCL(ID Id);
97
98 /// isHLSL - Is this an HLSL input.
99 bool isHLSL(ID Id);
100
101 /// isSrcFile - Is this a source file, i.e. something that still has to be
102 /// preprocessed. The logic behind this is the same that decides if the first
103 /// compilation phase is a preprocessing one.
104 bool isSrcFile(ID Id);
105
106 /// lookupTypeForExtension - Lookup the type to use for the file
107 /// extension \p Ext.
108 ID lookupTypeForExtension(llvm::StringRef Ext);
109
110 /// lookupTypeForTypSpecifier - Lookup the type to use for a user
111 /// specified type name.
112 ID lookupTypeForTypeSpecifier(const char *Name);
113
114 /// getCompilationPhases - Get the list of compilation phases ('Phases') to be
115 /// done for type 'Id' up until including LastPhase.
120 llvm::opt::DerivedArgList &DAL, ID Id);
121
122 /// lookupCXXTypeForCType - Lookup CXX input type that corresponds to given
123 /// C type (used for clang++ emulation of g++ behaviour)
125
126 /// Lookup header file input type that corresponds to given
127 /// source file type (used for clang-cl emulation of \Yc).
129
130} // end namespace types
131} // end namespace driver
132} // end namespace clang
133
134#endif
int Id
Definition: ASTDiff.cpp:190
Driver - Encapsulate logic for constructing compilation processes from a set of gcc-driver-like comma...
Definition: Driver.h:77
ID
ID - Ordered values for successive stages in the compilation process which interact with user options...
Definition: Phases.h:17
ID lookupTypeForTypeSpecifier(const char *Name)
lookupTypeForTypSpecifier - Lookup the type to use for a user specified type name.
Definition: Types.cpp:371
bool isHLSL(ID Id)
isHLSL - Is this an HLSL input.
Definition: Types.cpp:292
bool isObjC(ID Id)
isObjC - Is this an "ObjC" input (Obj-C and Obj-C++ sources and headers).
Definition: Types.cpp:217
ID getPreprocessedType(ID Id)
getPreprocessedType - Get the ID of the type for this input when it has been preprocessed,...
Definition: Types.cpp:56
bool isCuda(ID Id)
isCuda - Is this a CUDA input.
Definition: Types.cpp:268
bool onlyPrecompileType(ID Id)
onlyPrecompileType - Should this type only be precompiled.
Definition: Types.cpp:100
bool isLLVMIR(ID Id)
Is this LLVM IR.
Definition: Types.cpp:255
const char * getTypeName(ID Id)
getTypeName - Return the name of the type for Id.
Definition: Types.cpp:52
bool isOpenCL(ID Id)
isOpenCL - Is this an "OpenCL" input.
Definition: Types.cpp:230
bool canTypeBeUserSpecified(ID Id)
canTypeBeUserSpecified - Can this type be specified on the command line (by the type name); this is u...
Definition: Types.cpp:105
llvm::SmallVector< phases::ID, phases::MaxNumberOfPhases > getCompilationPhases(ID Id, phases::ID LastPhase=phases::IfsMerge)
getCompilationPhases - Get the list of compilation phases ('Phases') to be done for type 'Id' up unti...
Definition: Types.cpp:386
bool isSrcFile(ID Id)
isSrcFile - Is this a source file, i.e.
Definition: Types.cpp:294
bool isDerivedFromC(ID Id)
isDerivedFromC - Is the input derived from C.
Definition: Types.cpp:176
ID lookupCXXTypeForCType(ID Id)
lookupCXXTypeForCType - Lookup CXX input type that corresponds to given C type (used for clang++ emul...
Definition: Types.cpp:402
ID getPrecompiledType(ID Id)
getPrecompiledType - Get the ID of the type for this input when it has been precompiled,...
Definition: Types.cpp:73
bool isHIP(ID Id)
isHIP - Is this a HIP input.
Definition: Types.cpp:280
bool isAcceptedByClang(ID Id)
isAcceptedByClang - Can clang handle this input type.
Definition: Types.cpp:129
bool appendSuffixForType(ID Id)
appendSuffixForType - When generating outputs of this type, should the suffix be appended (instead of...
Definition: Types.cpp:117
bool canLipoType(ID Id)
canLipoType - Is this type acceptable as the output of a universal build (currently,...
Definition: Types.cpp:122
const char * getTypeTempSuffix(ID Id, bool CLStyle=false)
getTypeTempSuffix - Return the suffix to use when creating a temp file of this type,...
Definition: Types.cpp:83
ID lookupHeaderTypeForSourceType(ID Id)
Lookup header file input type that corresponds to given source file type (used for clang-cl emulation...
Definition: Types.cpp:418
ID lookupTypeForExtension(llvm::StringRef Ext)
lookupTypeForExtension - Lookup the type to use for the file extension Ext.
Definition: Types.cpp:298
bool isAcceptedByFlang(ID Id)
isAcceptedByFlang - Can flang handle this input type.
Definition: Types.cpp:162
bool isCXX(ID Id)
isCXX - Is this a "C++" input (C++ and Obj-C++ sources and headers).
Definition: Types.cpp:232
The JSON file list parser is used to communicate input to InstallAPI.
YAML serialization mapping.
Definition: Dominators.h:30