]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/include/clang/Frontend/LangStandard.h
Merge llvm, clang, lld, lldb, compiler-rt and libc++ r301441, and update
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / include / clang / Frontend / LangStandard.h
1 //===--- LangStandard.h -----------------------------------------*- 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 LLVM_CLANG_FRONTEND_LANGSTANDARD_H
11 #define LLVM_CLANG_FRONTEND_LANGSTANDARD_H
12
13 #include "clang/Basic/LLVM.h"
14 #include "llvm/ADT/StringRef.h"
15
16 namespace clang {
17
18 namespace frontend {
19
20 enum LangFeatures {
21   LineComment = (1 << 0),
22   C89 = (1 << 1),
23   C99 = (1 << 2),
24   C11 = (1 << 3),
25   CPlusPlus = (1 << 4),
26   CPlusPlus11 = (1 << 5),
27   CPlusPlus14 = (1 << 6),
28   CPlusPlus1z = (1 << 7),
29   Digraphs = (1 << 8),
30   GNUMode = (1 << 9),
31   HexFloat = (1 << 10),
32   ImplicitInt = (1 << 11),
33   OpenCL = (1 << 12)
34 };
35
36 }
37
38 /// LangStandard - Information about the properties of a particular language
39 /// standard.
40 struct LangStandard {
41   enum Kind {
42 #define LANGSTANDARD(id, name, desc, features) \
43     lang_##id,
44 #include "clang/Frontend/LangStandards.def"
45     lang_unspecified
46   };
47
48   const char *ShortName;
49   const char *Description;
50   unsigned Flags;
51
52 public:
53   /// getName - Get the name of this standard.
54   const char *getName() const { return ShortName; }
55
56   /// getDescription - Get the description of this standard.
57   const char *getDescription() const { return Description; }
58
59   /// Language supports '//' comments.
60   bool hasLineComments() const { return Flags & frontend::LineComment; }
61
62   /// isC89 - Language is a superset of C89.
63   bool isC89() const { return Flags & frontend::C89; }
64
65   /// isC99 - Language is a superset of C99.
66   bool isC99() const { return Flags & frontend::C99; }
67
68   /// isC11 - Language is a superset of C11.
69   bool isC11() const { return Flags & frontend::C11; }
70
71   /// isCPlusPlus - Language is a C++ variant.
72   bool isCPlusPlus() const { return Flags & frontend::CPlusPlus; }
73
74   /// isCPlusPlus11 - Language is a C++11 variant (or later).
75   bool isCPlusPlus11() const { return Flags & frontend::CPlusPlus11; }
76
77   /// isCPlusPlus14 - Language is a C++14 variant (or later).
78   bool isCPlusPlus14() const { return Flags & frontend::CPlusPlus14; }
79
80   /// isCPlusPlus1z - Language is a C++17 variant (or later).
81   bool isCPlusPlus1z() const { return Flags & frontend::CPlusPlus1z; }
82
83   /// hasDigraphs - Language supports digraphs.
84   bool hasDigraphs() const { return Flags & frontend::Digraphs; }
85
86   /// isGNUMode - Language includes GNU extensions.
87   bool isGNUMode() const { return Flags & frontend::GNUMode; }
88
89   /// hasHexFloats - Language supports hexadecimal float constants.
90   bool hasHexFloats() const { return Flags & frontend::HexFloat; }
91
92   /// hasImplicitInt - Language allows variables to be typed as int implicitly.
93   bool hasImplicitInt() const { return Flags & frontend::ImplicitInt; }
94
95   /// isOpenCL - Language is a OpenCL variant.
96   bool isOpenCL() const { return Flags & frontend::OpenCL; }
97
98   static const LangStandard &getLangStandardForKind(Kind K);
99   static const LangStandard *getLangStandardForName(StringRef Name);
100 };
101
102 }  // end namespace clang
103
104 #endif