25 .
Case(
"thumb,arm",
"arm,thumb")
34 if (
A.Name.ends_with(Syn))
37 return ArchKind::INVALID;
45 case ArchKind::ARMV4T:
47 case ArchKind::ARMV5T:
48 case ArchKind::ARMV5TE:
49 case ArchKind::IWMMXT:
50 case ArchKind::IWMMXT2:
51 case ArchKind::XSCALE:
52 case ArchKind::ARMV5TEJ:
55 case ArchKind::ARMV6K:
56 case ArchKind::ARMV6T2:
57 case ArchKind::ARMV6KZ:
58 case ArchKind::ARMV6M:
60 case ArchKind::ARMV7A:
61 case ArchKind::ARMV7VE:
62 case ArchKind::ARMV7R:
63 case ArchKind::ARMV7M:
64 case ArchKind::ARMV7S:
65 case ArchKind::ARMV7EM:
66 case ArchKind::ARMV7K:
68 case ArchKind::ARMV8A:
69 case ArchKind::ARMV8_1A:
70 case ArchKind::ARMV8_2A:
71 case ArchKind::ARMV8_3A:
72 case ArchKind::ARMV8_4A:
73 case ArchKind::ARMV8_5A:
74 case ArchKind::ARMV8_6A:
75 case ArchKind::ARMV8_7A:
76 case ArchKind::ARMV8_8A:
77 case ArchKind::ARMV8_9A:
78 case ArchKind::ARMV8R:
79 case ArchKind::ARMV8MBaseline:
80 case ArchKind::ARMV8MMainline:
81 case ArchKind::ARMV8_1MMainline:
83 case ArchKind::ARMV9A:
84 case ArchKind::ARMV9_1A:
85 case ArchKind::ARMV9_2A:
86 case ArchKind::ARMV9_3A:
87 case ArchKind::ARMV9_4A:
88 case ArchKind::ARMV9_5A:
89 case ArchKind::ARMV9_6A:
90 case ArchKind::ARMV9_7A:
92 case ArchKind::INVALID:
100 case ARM::ArchKind::ARMV6M:
101 case ARM::ArchKind::ARMV7M:
102 case ARM::ArchKind::ARMV7EM:
103 case ARM::ArchKind::ARMV8MMainline:
104 case ARM::ArchKind::ARMV8MBaseline:
105 case ARM::ArchKind::ARMV8_1MMainline:
107 case ARM::ArchKind::ARMV7R:
108 case ARM::ArchKind::ARMV8R:
110 case ARM::ArchKind::ARMV7A:
111 case ARM::ArchKind::ARMV7VE:
112 case ARM::ArchKind::ARMV7K:
113 case ARM::ArchKind::ARMV8A:
114 case ARM::ArchKind::ARMV8_1A:
115 case ARM::ArchKind::ARMV8_2A:
116 case ARM::ArchKind::ARMV8_3A:
117 case ARM::ArchKind::ARMV8_4A:
118 case ARM::ArchKind::ARMV8_5A:
119 case ARM::ArchKind::ARMV8_6A:
120 case ARM::ArchKind::ARMV8_7A:
121 case ARM::ArchKind::ARMV8_8A:
122 case ARM::ArchKind::ARMV8_9A:
123 case ARM::ArchKind::ARMV9A:
124 case ARM::ArchKind::ARMV9_1A:
125 case ARM::ArchKind::ARMV9_2A:
126 case ARM::ArchKind::ARMV9_3A:
127 case ARM::ArchKind::ARMV9_4A:
128 case ARM::ArchKind::ARMV9_5A:
129 case ARM::ArchKind::ARMV9_6A:
130 case ARM::ArchKind::ARMV9_7A:
132 case ARM::ArchKind::ARMV4:
133 case ARM::ArchKind::ARMV4T:
134 case ARM::ArchKind::ARMV5T:
135 case ARM::ArchKind::ARMV5TE:
136 case ARM::ArchKind::ARMV5TEJ:
137 case ARM::ArchKind::ARMV6:
138 case ARM::ArchKind::ARMV6K:
139 case ARM::ArchKind::ARMV6T2:
140 case ARM::ArchKind::ARMV6KZ:
141 case ARM::ArchKind::ARMV7S:
142 case ARM::ArchKind::IWMMXT:
143 case ARM::ArchKind::IWMMXT2:
144 case ARM::ArchKind::XSCALE:
145 case ARM::ArchKind::INVALID:
158 std::vector<StringRef> &Features) {
163 static const struct FPUFeatureNameInfo {
164 const char *PlusName, *MinusName;
167 } FPUFeatureInfoList[] = {
195 for (
const auto &Info: FPUFeatureInfoList) {
198 Features.push_back(Info.PlusName);
200 Features.push_back(Info.MinusName);
203 static const struct NeonFeatureNameInfo {
204 const char *PlusName, *MinusName;
206 } NeonFeatureInfoList[] = {
212 for (
const auto &Info: NeonFeatureInfoList) {
214 Features.push_back(Info.PlusName);
216 Features.push_back(Info.MinusName);
239 .
Cases({
"fpa",
"fpe2",
"fpe3",
"maverick"},
"invalid")
240 .Case(
"vfp2",
"vfpv2")
241 .
Case(
"vfp3",
"vfpv3")
242 .
Case(
"vfp4",
"vfpv4")
243 .
Case(
"vfp3-d16",
"vfpv3-d16")
244 .
Case(
"vfp4-d16",
"vfpv4-d16")
245 .
Cases({
"fp4-sp-d16",
"vfpv4-sp-d16"},
"fpv4-sp-d16")
246 .Cases({
"fp4-dp-d16",
"fpv4-dp-d16"},
"vfpv4-d16")
247 .Case(
"fp5-sp-d16",
"fpv5-sp-d16")
248 .
Cases({
"fp5-dp-d16",
"fpv5-dp-d16"},
"fpv5-d16")
250 .Case(
"neon-vfpv3",
"neon")
273 if (CPU ==
"generic")
277#define ARM_CPU_NAME(NAME, ID, DEFAULT_FPU, IS_DEFAULT, DEFAULT_EXT) \
278 .Case(NAME, DEFAULT_FPU)
279#include "llvm/TargetParser/ARMTargetParser.def"
284 if (CPU ==
"generic")
288#define ARM_CPU_NAME(NAME, ID, DEFAULT_FPU, IS_DEFAULT, DEFAULT_EXT) \
290 ARMArchNames[static_cast<unsigned>(ArchKind::ID)].ArchBaseExtensions | \
292#include "llvm/TargetParser/ARMTargetParser.def"
297 std::vector<StringRef> &Features) {
303 Features.push_back(
"+hwdiv-arm");
305 Features.push_back(
"-hwdiv-arm");
308 Features.push_back(
"+hwdiv");
310 Features.push_back(
"-hwdiv");
316 std::vector<StringRef> &Features) {
322 if ((
Extensions & AE.ID) == AE.ID && !AE.Feature.empty())
323 Features.push_back(AE.Feature);
324 else if (!AE.NegFeature.empty())
325 Features.push_back(AE.NegFeature);
344 return ARMArchNames[
static_cast<unsigned>(AK)].ArchAttr;
356 return Name.consume_front(
"no");
362 if (!AE.Feature.empty() && ArchExt == AE.Name)
363 return StringRef(Negated ? AE.NegFeature : AE.Feature);
370 if (InputFPUKind == ARM::FK_INVALID || InputFPUKind == ARM::FK_NONE)
371 return ARM::FK_INVALID;
383 if (CandidateFPU.FPUVer == InputFPU.
FPUVer &&
384 CandidateFPU.NeonSupport == InputFPU.
NeonSupport &&
388 return CandidateFPU.ID;
393 return ARM::FK_INVALID;
397 if (InputFPUKind == ARM::FK_INVALID || InputFPUKind == ARM::FK_NONE)
398 return ARM::FK_INVALID;
412 if (CandidateFPU.FPUVer == InputFPU.
FPUVer &&
414 return CandidateFPU.ID;
419 return ARM::FK_INVALID;
424 std::vector<StringRef> &Features,
427 size_t StartingNumFeatures = Features.size();
436 if ((AE.ID &
ID) ==
ID && !AE.NegFeature.empty())
437 Features.push_back(AE.NegFeature);
439 if ((AE.ID &
ID) == AE.ID && !AE.Feature.empty())
440 Features.push_back(AE.Feature);
447 if (ArchExt ==
"fp" || ArchExt ==
"fp.dp") {
450 if (ArchExt ==
"fp.dp") {
451 const bool IsDP = ArgFPUKind != ARM::FK_INVALID &&
452 ArgFPUKind != ARM::FK_NONE &&
458 if (ArgFPUKind != ARM::FK_INVALID && !IsDP)
461 if (
FPUKind == ARM::FK_INVALID)
467 if (
FPUKind == ARM::FK_INVALID)
470 }
else if (Negated) {
478 return StartingNumFeatures != Features.size();
483 return ARM::ArchKind::INVALID;
484 if (AK < ARM::ArchKind::ARMV9A || AK > ARM::ArchKind::ARMV9_3A)
485 return ARM::ArchKind::INVALID;
486 unsigned AK_v8 =
static_cast<unsigned>(ARM::ArchKind::ARMV8_5A);
487 AK_v8 +=
static_cast<unsigned>(AK) -
488 static_cast<unsigned>(ARM::ArchKind::ARMV9A);
494 if (AK == ArchKind::INVALID)
499 if (CPU.ArchID == AK && CPU.Default)
518 if (ArchExt ==
A.Name)
529 return ArchKind::INVALID;
534 if (Arch.ArchID != ArchKind::INVALID)
535 Values.push_back(Arch.Name);
542 if (
TT.isOSBinFormatMachO()) {
550 }
else if (
TT.isOSWindows())
555 switch (
TT.getEnvironment()) {
564 return "aapcs-linux";
571 if (
TT.isOSFreeBSD() ||
TT.isOSFuchsia() ||
TT.isOSOpenBSD() ||
572 TT.isOSHaiku() ||
TT.isOHOSFamily())
573 return "aapcs-linux";
582 if (ABIName ==
"aapcs16")
605 if (!MArch.
empty() && MArch ==
"v6")
606 return "arm1176jzf-s";
607 if (!MArch.
empty() && MArch ==
"v7")
632 if (!CPU.empty() && CPU !=
"invalid")
639 return "arm1176jzf-s";
660 return "arm1176jzf-s";
670 outs() <<
"All available -march extensions for ARM\n\n"
672 << (DescMap.
empty() ?
"\n" :
"Description\n");
675 if (!Ext.Feature.empty()) {
676 std::string Description = DescMap[Ext.Name].str();
679 if (Ext.Name ==
"simd")
680 Description = DescMap[
"neon"].str();
682 <<
format(Description.empty() ?
"%s\n" :
"%-20s%s\n",
683 Ext.Name.str().c_str(), Description.c_str());
static ARM::FPUKind findSinglePrecisionFPU(ARM::FPUKind InputFPUKind)
static StringRef getHWDivSynonym(StringRef HWDiv)
static bool stripNegationPrefix(StringRef &Name)
static ARM::ProfileKind getProfileKind(ARM::ArchKind AK)
static ARM::FPUKind findDoublePrecisionFPU(ARM::FPUKind InputFPUKind)
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
static cl::opt< ExtensionSet, false, SPIRVExtensionsParser > Extensions("spirv-ext", cl::desc("Specify list of enabled SPIR-V extensions"))
This file implements the StringSwitch template, which mimics a switch() statement whose cases are str...
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
StringMap - This is an unconventional map that is specialized for handling keys that are "strings",...
Represent a constant reference to a string, i.e.
bool starts_with(StringRef Prefix) const
Check if this string starts with the given Prefix.
constexpr bool empty() const
Check if the string is empty.
A switch()-like statement whose cases are string literals.
StringSwitch & Case(StringLiteral S, T Value)
StringSwitch & Cases(std::initializer_list< StringLiteral > CaseStrings, T Value)
Triple - Helper class for working with autoconf configuration names.
OSType getOS() const
Get the parsed operating system type of this triple.
EnvironmentType getEnvironment() const
Get the parsed environment type of this triple.
LLVM_ABI StringRef getArchName() const
Get the architecture (first) component of the triple.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
constexpr struct llvm::ARM::@324103115345140202011004052154345301224214323271 HWDivNames[]
LLVM_ABI StringRef getArchExtName(uint64_t ArchExtKind)
LLVM_ABI StringRef getFPUSynonym(StringRef FPU)
LLVM_ABI bool getFPUFeatures(FPUKind FPUKind, std::vector< StringRef > &Features)
LLVM_ABI StringRef getCanonicalArchName(StringRef Arch)
MArch is expected to be of the form (arm|thumb)?(eb)?(v.
LLVM_ABI uint64_t parseHWDiv(StringRef HWDiv)
LLVM_ABI StringRef getCPUAttr(ArchKind AK)
LLVM_ABI StringRef getArchName(ArchKind AK)
LLVM_ABI void fillValidCPUArchList(SmallVectorImpl< StringRef > &Values)
LLVM_ABI LLVM_READONLY ARMABI computeTargetABI(const Triple &TT, StringRef ABIName="")
LLVM_ABI uint64_t parseArchExt(StringRef ArchExt)
LLVM_ABI ArchKind convertV9toV8(ArchKind AK)
LLVM_ABI LLVM_READONLY StringRef computeDefaultTargetABI(const Triple &TT)
@ Crypto
Neon with Crypto.
LLVM_ABI ArchKind parseArch(StringRef Arch)
LLVM_ABI FPURestriction getFPURestriction(FPUKind FPUKind)
LLVM_ABI bool appendArchExtFeatures(StringRef CPU, ARM::ArchKind AK, StringRef ArchExt, std::vector< StringRef > &Features, FPUKind &ArgFPUKind)
LLVM_ABI StringRef getArchSynonym(StringRef Arch)
Converts e.g. "armv8" -> "armv8-a".
static constexpr FPUName FPUNames[]
LLVM_ABI StringRef getDefaultCPU(StringRef Arch)
LLVM_ABI StringRef getArchExtFeature(StringRef ArchExt)
LLVM_ABI ProfileKind parseArchProfile(StringRef Arch)
LLVM_ABI FPUKind parseFPU(StringRef FPU)
LLVM_ABI StringRef getSubArch(ArchKind AK)
LLVM_ABI StringRef getARMCPUForArch(const llvm::Triple &Triple, StringRef MArch={})
Get the (LLVM) name of the minimum ARM CPU for the arch we are targeting.
LLVM_ABI unsigned parseArchVersion(StringRef Arch)
bool has32Regs(const FPURestriction restriction)
LLVM_ABI NeonSupportLevel getFPUNeonSupportLevel(FPUKind FPUKind)
LLVM_ABI ArchKind parseCPUArch(StringRef CPU)
bool isDoublePrecision(const FPURestriction restriction)
constexpr ExtName ARCHExtNames[]
LLVM_ABI unsigned getArchAttr(ArchKind AK)
LLVM_ABI StringRef getFPUName(FPUKind FPUKind)
LLVM_ABI FPUVersion getFPUVersion(FPUKind FPUKind)
LLVM_ABI bool getHWDivFeatures(uint64_t HWDivKind, std::vector< StringRef > &Features)
@ SP_D16
Only single-precision instructions, with 16 D registers.
@ D16
Only 16 D registers.
LLVM_ABI uint64_t getDefaultExtensions(StringRef CPU, ArchKind AK)
LLVM_ABI FPUKind getDefaultFPU(StringRef CPU, ArchKind AK)
LLVM_ABI bool getExtensionFeatures(uint64_t Extensions, std::vector< StringRef > &Features)
static constexpr ArchNames ARMArchNames[]
constexpr CpuNames CPUNames[]
LLVM_ABI void PrintSupportedExtensions(StringMap< StringRef > DescMap)
This is an optimization pass for GlobalISel generic memory operations.
RelativeUniformCounterPtr Values
LLVM_ABI raw_fd_ostream & outs()
This returns a reference to a raw_fd_ostream for standard output.
format_object< Ts... > format(const char *Fmt, const Ts &... Vals)
These are helper functions used to produce formatted output.
FormattedString left_justify(StringRef Str, unsigned Width)
left_justify - append spaces after string so total output is Width characters.
FPURestriction Restriction
NeonSupportLevel NeonSupport