[ARM] Support for ARMv6-Z / ARMv6-ZK missing
[oota-llvm.git] / include / llvm / Support / TargetParser.h
1 //===-- TargetParser - Parser for target features ---------------*- 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 // This file implements a target parser to recognise hardware features such as
11 // FPU/CPU/ARCH names as well as specific support such as HDIV, etc.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_SUPPORT_TARGETPARSER_H
16 #define LLVM_SUPPORT_TARGETPARSER_H
17
18 // FIXME: vector is used because that's what clang uses for subtarget feature
19 // lists, but SmallVector would probably be better
20 #include <vector>
21
22 namespace llvm {
23 class StringRef;
24
25 // Target specific information into their own namespaces. These should be
26 // generated from TableGen because the information is already there, and there
27 // is where new information about targets will be added.
28 // FIXME: To TableGen this we need to make some table generated files available
29 // even if the back-end is not compiled with LLVM, plus we need to create a new
30 // back-end to TableGen to create these clean tables.
31 namespace ARM {
32
33 // FPU names.
34 enum FPUKind {
35 #define ARM_FPU(NAME, KIND, VERSION, NEON_SUPPORT, RESTRICTION) KIND,
36 #include "ARMTargetParser.def"
37   FK_LAST
38 };
39
40 // FPU Version
41 enum FPUVersion {
42   FV_NONE = 0,
43   FV_VFPV2,
44   FV_VFPV3,
45   FV_VFPV3_FP16,
46   FV_VFPV4,
47   FV_VFPV5
48 };
49
50 // An FPU name implies one of three levels of Neon support:
51 enum NeonSupportLevel {
52   NS_None = 0, ///< No Neon
53   NS_Neon,     ///< Neon
54   NS_Crypto    ///< Neon with Crypto
55 };
56
57 // An FPU name restricts the FPU in one of three ways:
58 enum FPURestriction {
59   FR_None = 0, ///< No restriction
60   FR_D16,      ///< Only 16 D registers
61   FR_SP_D16    ///< Only single-precision instructions, with 16 D registers
62 };
63
64 // Arch names.
65 enum ArchKind {
66 #define ARM_ARCH(NAME, ID, CPU_ATTR, SUB_ARCH, ARCH_ATTR, ARCH_BASE_EXT) ID,
67 #include "ARMTargetParser.def"
68   AK_LAST
69 };
70
71 // Arch extension modifiers for CPUs.
72 enum ArchExtKind : unsigned {
73   AEK_INVALID = 0x0,
74   AEK_NONE = 0x1,
75   AEK_CRC = 0x2,
76   AEK_CRYPTO = 0x4,
77   AEK_FP = 0x8,
78   AEK_HWDIV = 0x10,
79   AEK_HWDIVARM = 0x20,
80   AEK_MP = 0x40,
81   AEK_SIMD = 0x80,
82   AEK_SEC = 0x100,
83   AEK_VIRT = 0x200,
84   AEK_DSP = 0x400,
85   // Unsupported extensions.
86   AEK_OS = 0x8000000,
87   AEK_IWMMXT = 0x10000000,
88   AEK_IWMMXT2 = 0x20000000,
89   AEK_MAVERICK = 0x40000000,
90   AEK_XSCALE = 0x80000000,
91 };
92
93 // ISA kinds.
94 enum ISAKind { IK_INVALID = 0, IK_ARM, IK_THUMB, IK_AARCH64 };
95
96 // Endianness
97 // FIXME: BE8 vs. BE32?
98 enum EndianKind { EK_INVALID = 0, EK_LITTLE, EK_BIG };
99
100 // v6/v7/v8 Profile
101 enum ProfileKind { PK_INVALID = 0, PK_A, PK_R, PK_M };
102
103 StringRef getCanonicalArchName(StringRef Arch);
104
105 // Information by ID
106 StringRef getFPUName(unsigned FPUKind);
107 unsigned getFPUVersion(unsigned FPUKind);
108 unsigned getFPUNeonSupportLevel(unsigned FPUKind);
109 unsigned getFPURestriction(unsigned FPUKind);
110
111 // FIXME: These should be moved to TargetTuple once it exists
112 bool getFPUFeatures(unsigned FPUKind, std::vector<const char *> &Features);
113 bool getHWDivFeatures(unsigned HWDivKind, std::vector<const char *> &Features);
114 bool getExtensionFeatures(unsigned Extensions,
115                                    std::vector<const char*> &Features);
116
117 StringRef getArchName(unsigned ArchKind);
118 unsigned getArchAttr(unsigned ArchKind);
119 StringRef getCPUAttr(unsigned ArchKind);
120 StringRef getSubArch(unsigned ArchKind);
121 StringRef getArchExtName(unsigned ArchExtKind);
122 StringRef getHWDivName(unsigned HWDivKind);
123
124 // Information by Name
125 unsigned  getDefaultFPU(StringRef CPU);
126 unsigned  getDefaultExtensions(StringRef CPU);
127 StringRef getDefaultCPU(StringRef Arch);
128
129 // Parser
130 unsigned parseHWDiv(StringRef HWDiv);
131 unsigned parseFPU(StringRef FPU);
132 unsigned parseArch(StringRef Arch);
133 unsigned parseArchExt(StringRef ArchExt);
134 unsigned parseCPUArch(StringRef CPU);
135 unsigned parseArchISA(StringRef Arch);
136 unsigned parseArchEndian(StringRef Arch);
137 unsigned parseArchProfile(StringRef Arch);
138 unsigned parseArchVersion(StringRef Arch);
139
140 } // namespace ARM
141 } // namespace llvm
142
143 #endif