1 //===-- AArch64TargetParser - Parser for AArch64 features -------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 // This file implements a target parser to recognise AArch64 hardware features
10 // such as FPU/CPU/ARCH and extension names.
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_SUPPORT_AARCH64TARGETPARSERCOMMON_H
15 #define LLVM_SUPPORT_AARCH64TARGETPARSERCOMMON_H
17 #include "llvm/ADT/StringRef.h"
18 #include "llvm/ADT/Triple.h"
19 #include "llvm/Support/ARMTargetParser.h"
22 // FIXME:This should be made into class design,to avoid dupplication.
26 // Arch extension modifiers for CPUs.
27 enum ArchExtKind
: unsigned {
39 AEK_DOTPROD
= 1 << 10,
46 AEK_FP16FML
= 1 << 17,
51 AEK_PREDRES
= 1 << 22,
53 AEK_SVE2AES
= 1 << 24,
54 AEK_SVE2SM4
= 1 << 25,
55 AEK_SVE2SHA3
= 1 << 26,
56 AEK_BITPERM
= 1 << 27,
60 #define AARCH64_ARCH(NAME, ID, CPU_ATTR, SUB_ARCH, ARCH_ATTR, ARCH_FPU, ARCH_BASE_EXT) ID,
61 #include "AArch64TargetParser.def"
64 const ARM::ArchNames
<ArchKind
> AArch64ARCHNames
[] = {
65 #define AARCH64_ARCH(NAME, ID, CPU_ATTR, SUB_ARCH, ARCH_ATTR, ARCH_FPU, \
70 sizeof(CPU_ATTR) - 1, \
72 sizeof(SUB_ARCH) - 1, \
73 ARM::FPUKind::ARCH_FPU, \
75 AArch64::ArchKind::ID, \
77 #include "AArch64TargetParser.def"
80 const ARM::ExtName AArch64ARCHExtNames
[] = {
81 #define AARCH64_ARCH_EXT_NAME(NAME, ID, FEATURE, NEGFEATURE) \
82 {NAME, sizeof(NAME) - 1, ID, FEATURE, NEGFEATURE},
83 #include "AArch64TargetParser.def"
86 const ARM::CpuNames
<ArchKind
> AArch64CPUNames
[] = {
87 #define AARCH64_CPU_NAME(NAME, ID, DEFAULT_FPU, IS_DEFAULT, DEFAULT_EXT) \
88 {NAME, sizeof(NAME) - 1, AArch64::ArchKind::ID, IS_DEFAULT, DEFAULT_EXT},
89 #include "AArch64TargetParser.def"
92 const ArchKind ArchKinds
[] = {
93 #define AARCH64_ARCH(NAME, ID, CPU_ATTR, SUB_ARCH, ARCH_ATTR, ARCH_FPU, ARCH_BASE_EXT) \
95 #include "AArch64TargetParser.def"
98 // FIXME: These should be moved to TargetTuple once it exists
99 bool getExtensionFeatures(unsigned Extensions
,
100 std::vector
<StringRef
> &Features
);
101 bool getArchFeatures(ArchKind AK
, std::vector
<StringRef
> &Features
);
103 StringRef
getArchName(ArchKind AK
);
104 unsigned getArchAttr(ArchKind AK
);
105 StringRef
getCPUAttr(ArchKind AK
);
106 StringRef
getSubArch(ArchKind AK
);
107 StringRef
getArchExtName(unsigned ArchExtKind
);
108 StringRef
getArchExtFeature(StringRef ArchExt
);
110 // Information by Name
111 unsigned getDefaultFPU(StringRef CPU
, ArchKind AK
);
112 unsigned getDefaultExtensions(StringRef CPU
, ArchKind AK
);
113 StringRef
getDefaultCPU(StringRef Arch
);
114 ArchKind
getCPUArchKind(StringRef CPU
);
117 ArchKind
parseArch(StringRef Arch
);
118 ArchExtKind
parseArchExt(StringRef ArchExt
);
119 ArchKind
parseCPUArch(StringRef CPU
);
120 // Used by target parser tests
121 void fillValidCPUArchList(SmallVectorImpl
<StringRef
> &Values
);
123 bool isX18ReservedByDefault(const Triple
&TT
);
125 } // namespace AArch64