Home
last modified time | relevance | path

Searched refs:NeonSupportLevel (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DARMTargetParser.def18 ARM_FPU("invalid", FK_INVALID, FPUVersion::NONE, NeonSupportLevel::None, FPURestriction::None)
19 ARM_FPU("none", FK_NONE, FPUVersion::NONE, NeonSupportLevel::None, FPURestriction::None)
20 ARM_FPU("vfp", FK_VFP, FPUVersion::VFPV2, NeonSupportLevel::None, FPURestriction::None)
21 ARM_FPU("vfpv2", FK_VFPV2, FPUVersion::VFPV2, NeonSupportLevel::None, FPURestriction::None)
22 ARM_FPU("vfpv3", FK_VFPV3, FPUVersion::VFPV3, NeonSupportLevel::None, FPURestriction::None)
24 ARM_FPU("vfpv3-d16", FK_VFPV3_D16, FPUVersion::VFPV3, NeonSupportLevel::None, FPURestriction::D16)
26 ARM_FPU("vfpv3xd", FK_VFPV3XD, FPUVersion::VFPV3, NeonSupportLevel::None, FPURestriction::SP_D16)
28 ARM_FPU("vfpv4", FK_VFPV4, FPUVersion::VFPV4, NeonSupportLevel::None, FPURestriction::None)
31 ARM_FPU("fpv5-d16", FK_FPV5_D16, FPUVersion::VFPV5, NeonSupportLevel::None, FPURestriction::D16)
36 ARM_FPU("neon", FK_NEON, FPUVersion::VFPV3, NeonSupportLevel::Neon, FPURestriction::None)
[all …]
H A DARMTargetParser.h155 enum class NeonSupportLevel { enum
181 NeonSupportLevel NeonSupport;
236 NeonSupportLevel getFPUNeonSupportLevel(unsigned FPUKind);
/llvm-project-15.0.7/llvm/lib/Support/
H A DARMTargetParser.cpp230 NeonSupportLevel MinSupportLevel; in getFPUFeatures()
232 {"+neon", "-neon", NeonSupportLevel::Neon}, in getFPUFeatures()
233 {"+sha2", "-sha2", NeonSupportLevel::Crypto}, in getFPUFeatures()
234 {"+aes", "-aes", NeonSupportLevel::Crypto}, in getFPUFeatures()
285 ARM::NeonSupportLevel ARM::getFPUNeonSupportLevel(unsigned FPUKind) { in getFPUNeonSupportLevel()
287 return NeonSupportLevel::None; in getFPUNeonSupportLevel()
/llvm-project-15.0.7/llvm/unittests/Support/
H A DTargetParserTest.cpp665 EXPECT_EQ(ARM::NeonSupportLevel::None, in TEST()
668 EXPECT_NE(ARM::NeonSupportLevel::None, in TEST()