]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/include/clang/Frontend/LangStandards.def
Merge clang trunk r321017 to contrib/llvm/tools/clang.
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / include / clang / Frontend / LangStandards.def
1 //===-- LangStandards.def - Language Standard Data --------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef LANGSTANDARD
11 #error "LANGSTANDARD must be defined before including this file"
12 #endif
13
14 /// LANGSTANDARD(IDENT, NAME, LANG, DESC, FEATURES)
15 ///
16 /// \param IDENT - The name of the standard as a C++ identifier.
17 /// \param NAME - The name of the standard.
18 /// \param LANG - The InputKind::Language for which this is a standard.
19 /// \param DESC - A short description of the standard.
20 /// \param FEATURES - The standard features as flags, these are enums from the
21 /// clang::frontend namespace, which is assumed to be be available.
22
23 /// LANGSTANDARD_ALIAS(IDENT, ALIAS)
24 /// \param IDENT - The name of the standard as a C++ identifier.
25 /// \param ALIAS - The alias of the standard.
26
27 /// LANGSTANDARD_ALIAS_DEPR(IDENT, ALIAS)
28 /// Same as LANGSTANDARD_ALIAS, but for a deprecated alias.
29
30 #ifndef LANGSTANDARD_ALIAS
31 #define LANGSTANDARD_ALIAS(IDENT, ALIAS)
32 #endif
33
34 #ifndef LANGSTANDARD_ALIAS_DEPR
35 #define LANGSTANDARD_ALIAS_DEPR(IDENT, ALIAS) LANGSTANDARD_ALIAS(IDENT, ALIAS)
36 #endif
37
38 // C89-ish modes.
39 LANGSTANDARD(c89, "c89",
40              C, "ISO C 1990",
41              ImplicitInt)
42 LANGSTANDARD_ALIAS(c89, "c90")
43 LANGSTANDARD_ALIAS(c89, "iso9899:1990")
44
45 LANGSTANDARD(c94, "iso9899:199409",
46              C, "ISO C 1990 with amendment 1",
47              Digraphs | ImplicitInt)
48
49 LANGSTANDARD(gnu89, "gnu89",
50              C, "ISO C 1990 with GNU extensions",
51              LineComment | Digraphs | GNUMode | ImplicitInt)
52 LANGSTANDARD_ALIAS(gnu89, "gnu90")
53
54 // C99-ish modes
55 LANGSTANDARD(c99, "c99",
56              C, "ISO C 1999",
57              LineComment | C99 | Digraphs | HexFloat)
58 LANGSTANDARD_ALIAS(c99, "iso9899:1999")
59 LANGSTANDARD_ALIAS_DEPR(c99, "c9x")
60 LANGSTANDARD_ALIAS_DEPR(c99, "iso9899:199x")
61
62 LANGSTANDARD(gnu99, "gnu99",
63              C, "ISO C 1999 with GNU extensions",
64              LineComment | C99 | Digraphs | GNUMode | HexFloat)
65 LANGSTANDARD_ALIAS_DEPR(gnu99, "gnu9x")
66
67 // C11 modes
68 LANGSTANDARD(c11, "c11",
69              C, "ISO C 2011",
70              LineComment | C99 | C11 | Digraphs | HexFloat)
71 LANGSTANDARD_ALIAS(c11, "iso9899:2011")
72 LANGSTANDARD_ALIAS_DEPR(c11, "c1x")
73 LANGSTANDARD_ALIAS_DEPR(c11, "iso9899:201x")
74
75 LANGSTANDARD(gnu11, "gnu11",
76              C, "ISO C 2011 with GNU extensions",
77              LineComment | C99 | C11 | Digraphs | GNUMode | HexFloat)
78 LANGSTANDARD_ALIAS_DEPR(gnu11, "gnu1x")
79
80 // C17 modes
81 LANGSTANDARD(c17, "c17",
82              C, "ISO C 2017",
83              LineComment | C99 | C11 | C17 | Digraphs | HexFloat)
84 LANGSTANDARD_ALIAS(c17, "iso9899:2017")
85 LANGSTANDARD(gnu17, "gnu17",
86              C, "ISO C 2017 with GNU extensions",
87              LineComment | C99 | C11 | C17 | Digraphs | GNUMode | HexFloat)
88
89 // C++ modes
90 LANGSTANDARD(cxx98, "c++98",
91              CXX, "ISO C++ 1998 with amendments",
92              LineComment | CPlusPlus | Digraphs)
93 LANGSTANDARD_ALIAS(cxx98, "c++03")
94
95 LANGSTANDARD(gnucxx98, "gnu++98",
96              CXX, "ISO C++ 1998 with amendments and GNU extensions",
97              LineComment | CPlusPlus | Digraphs | GNUMode)
98 LANGSTANDARD_ALIAS(gnucxx98, "gnu++03")
99
100 LANGSTANDARD(cxx11, "c++11",
101              CXX, "ISO C++ 2011 with amendments",
102              LineComment | CPlusPlus | CPlusPlus11 | Digraphs)
103 LANGSTANDARD_ALIAS_DEPR(cxx11, "c++0x")
104
105 LANGSTANDARD(gnucxx11, "gnu++11", CXX,
106              "ISO C++ 2011 with amendments and GNU extensions",
107              LineComment | CPlusPlus | CPlusPlus11 | Digraphs | GNUMode)
108 LANGSTANDARD_ALIAS_DEPR(gnucxx11, "gnu++0x")
109
110 LANGSTANDARD(cxx14, "c++14",
111              CXX, "ISO C++ 2014 with amendments",
112              LineComment | CPlusPlus | CPlusPlus11 | CPlusPlus14 | Digraphs)
113 LANGSTANDARD_ALIAS_DEPR(cxx14, "c++1y")
114
115 LANGSTANDARD(gnucxx14, "gnu++14",
116              CXX, "ISO C++ 2014 with amendments and GNU extensions",
117              LineComment | CPlusPlus | CPlusPlus11 | CPlusPlus14 | Digraphs |
118              GNUMode)
119 LANGSTANDARD_ALIAS_DEPR(gnucxx14, "gnu++1y")
120
121 LANGSTANDARD(cxx17, "c++17",
122              CXX, "ISO C++ 2017 with amendments",
123              LineComment | CPlusPlus | CPlusPlus11 | CPlusPlus14 | CPlusPlus17 |
124              Digraphs | HexFloat)
125 LANGSTANDARD_ALIAS_DEPR(cxx17, "c++1z")
126
127 LANGSTANDARD(gnucxx17, "gnu++17",
128              CXX, "ISO C++ 2017 with amendments and GNU extensions",
129              LineComment | CPlusPlus | CPlusPlus11 | CPlusPlus14 | CPlusPlus17 |
130              Digraphs | HexFloat | GNUMode)
131 LANGSTANDARD_ALIAS_DEPR(gnucxx17, "gnu++1z")
132
133 LANGSTANDARD(cxx2a, "c++2a",
134              CXX, "Working draft for ISO C++ 2020",
135              LineComment | CPlusPlus | CPlusPlus11 | CPlusPlus14 | CPlusPlus17 |
136              CPlusPlus2a | Digraphs | HexFloat)
137
138 LANGSTANDARD(gnucxx2a, "gnu++2a",
139              CXX, "Working draft for ISO C++ 2020 with GNU extensions",
140              LineComment | CPlusPlus | CPlusPlus11 | CPlusPlus14 | CPlusPlus17 |
141              CPlusPlus2a | Digraphs | HexFloat | GNUMode)
142
143 // OpenCL
144 LANGSTANDARD(opencl10, "cl1.0",
145              OpenCL, "OpenCL 1.0",
146              LineComment | C99 | Digraphs | HexFloat | OpenCL)
147 LANGSTANDARD_ALIAS_DEPR(opencl10, "cl")
148
149 LANGSTANDARD(opencl11, "cl1.1",
150              OpenCL, "OpenCL 1.1",
151              LineComment | C99 | Digraphs | HexFloat | OpenCL)
152 LANGSTANDARD(opencl12, "cl1.2",
153              OpenCL, "OpenCL 1.2",
154              LineComment | C99 | Digraphs | HexFloat | OpenCL)
155 LANGSTANDARD(opencl20, "cl2.0",
156              OpenCL, "OpenCL 2.0",
157              LineComment | C99 | Digraphs | HexFloat | OpenCL)
158
159 LANGSTANDARD_ALIAS_DEPR(opencl10, "CL")
160 LANGSTANDARD_ALIAS_DEPR(opencl11, "CL1.1")
161 LANGSTANDARD_ALIAS_DEPR(opencl12, "CL1.2")
162 LANGSTANDARD_ALIAS_DEPR(opencl20, "CL2.0")
163
164 // CUDA
165 LANGSTANDARD(cuda, "cuda", CUDA, "NVIDIA CUDA(tm)",
166              LineComment | CPlusPlus | Digraphs)
167
168 #undef LANGSTANDARD
169 #undef LANGSTANDARD_ALIAS
170 #undef LANGSTANDARD_ALIAS_DEPR