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,
55 #define AARCH64_ARCH(NAME, ID, CPU_ATTR, SUB_ARCH, ARCH_ATTR, ARCH_FPU, ARCH_BASE_EXT) ID,
56 #include "AArch64TargetParser.def"
59 const ARM::ArchNames
<ArchKind
> AArch64ARCHNames
[] = {
60 #define AARCH64_ARCH(NAME, ID, CPU_ATTR, SUB_ARCH, ARCH_ATTR, ARCH_FPU, \
65 sizeof(CPU_ATTR) - 1, \
67 sizeof(SUB_ARCH) - 1, \
68 ARM::FPUKind::ARCH_FPU, \
70 AArch64::ArchKind::ID, \
72 #include "AArch64TargetParser.def"
75 const ARM::ExtName AArch64ARCHExtNames
[] = {
76 #define AARCH64_ARCH_EXT_NAME(NAME, ID, FEATURE, NEGFEATURE) \
77 {NAME, sizeof(NAME) - 1, ID, FEATURE, NEGFEATURE},
78 #include "AArch64TargetParser.def"
81 const ARM::CpuNames
<ArchKind
> AArch64CPUNames
[] = {
82 #define AARCH64_CPU_NAME(NAME, ID, DEFAULT_FPU, IS_DEFAULT, DEFAULT_EXT) \
83 {NAME, sizeof(NAME) - 1, AArch64::ArchKind::ID, IS_DEFAULT, DEFAULT_EXT},
84 #include "AArch64TargetParser.def"
87 const ArchKind ArchKinds
[] = {
88 #define AARCH64_ARCH(NAME, ID, CPU_ATTR, SUB_ARCH, ARCH_ATTR, ARCH_FPU, ARCH_BASE_EXT) \
90 #include "AArch64TargetParser.def"
93 // FIXME: These should be moved to TargetTuple once it exists
94 bool getExtensionFeatures(unsigned Extensions
,
95 std::vector
<StringRef
> &Features
);
96 bool getArchFeatures(ArchKind AK
, std::vector
<StringRef
> &Features
);
98 StringRef
getArchName(ArchKind AK
);
99 unsigned getArchAttr(ArchKind AK
);
100 StringRef
getCPUAttr(ArchKind AK
);
101 StringRef
getSubArch(ArchKind AK
);
102 StringRef
getArchExtName(unsigned ArchExtKind
);
103 StringRef
getArchExtFeature(StringRef ArchExt
);
105 // Information by Name
106 unsigned getDefaultFPU(StringRef CPU
, ArchKind AK
);
107 unsigned getDefaultExtensions(StringRef CPU
, ArchKind AK
);
108 StringRef
getDefaultCPU(StringRef Arch
);
109 ArchKind
getCPUArchKind(StringRef CPU
);
112 ArchKind
parseArch(StringRef Arch
);
113 ArchExtKind
parseArchExt(StringRef ArchExt
);
114 ArchKind
parseCPUArch(StringRef CPU
);
115 // Used by target parser tests
116 void fillValidCPUArchList(SmallVectorImpl
<StringRef
> &Values
);
118 bool isX18ReservedByDefault(const Triple
&TT
);
120 } // namespace AArch64