| /freebsd-13.1/contrib/llvm-project/clang/lib/Basic/Targets/ |
| H A D | WebAssembly.cpp | 144 if (Feature == "+simd128") { in handleTargetFeatures() 148 if (Feature == "-simd128") { in handleTargetFeatures() 160 if (Feature == "+sign-ext") { in handleTargetFeatures() 164 if (Feature == "-sign-ext") { in handleTargetFeatures() 176 if (Feature == "+bulk-memory") { in handleTargetFeatures() 184 if (Feature == "+atomics") { in handleTargetFeatures() 188 if (Feature == "-atomics") { in handleTargetFeatures() 200 if (Feature == "+multivalue") { in handleTargetFeatures() 204 if (Feature == "-multivalue") { in handleTargetFeatures() 208 if (Feature == "+tail-call") { in handleTargetFeatures() [all …]
|
| H A D | X86.cpp | 183 if (Feature[0] != '+') in handleTargetFeatures() 186 if (Feature == "+aes") { in handleTargetFeatures() 200 } else if (Feature == "+bmi") { in handleTargetFeatures() 206 } else if (Feature == "+rtm") { in handleTargetFeatures() 212 } else if (Feature == "+adx") { in handleTargetFeatures() 214 } else if (Feature == "+tbm") { in handleTargetFeatures() 216 } else if (Feature == "+lwp") { in handleTargetFeatures() 218 } else if (Feature == "+fma") { in handleTargetFeatures() 252 } else if (Feature == "+sha") { in handleTargetFeatures() 258 } else if (Feature == "+sgx") { in handleTargetFeatures() [all …]
|
| H A D | AArch64.cpp | 428 return Feature == "aarch64" || Feature == "arm64" || Feature == "arm" || in hasFeature() 430 ((Feature == "sve" || Feature == "sve2" || Feature == "sve2-bitperm" || in hasFeature() 431 Feature == "sve2-aes" || Feature == "sve2-sha3" || in hasFeature() 432 Feature == "sve2-sm4" || Feature == "f64mm" || Feature == "f32mm" || in hasFeature() 433 Feature == "i8mm" || Feature == "bf16") && in hasFeature() 512 if (Feature == "+crc") in handleTargetFeatures() 516 if (Feature == "+aes") in handleTargetFeatures() 524 if (Feature == "+sm4") in handleTargetFeatures() 542 if (Feature == "+v8r") in handleTargetFeatures() 550 if (Feature == "+mte") in handleTargetFeatures() [all …]
|
| H A D | RISCV.cpp | 258 return llvm::StringSwitch<bool>(Feature) in hasFeature() 290 for (const auto &Feature : Features) { in handleTargetFeatures() local 291 if (Feature == "+m") in handleTargetFeatures() 293 else if (Feature == "+a") in handleTargetFeatures() 295 else if (Feature == "+f") in handleTargetFeatures() 297 else if (Feature == "+d") in handleTargetFeatures() 299 else if (Feature == "+c") in handleTargetFeatures() 301 else if (Feature == "+experimental-b") in handleTargetFeatures() 303 else if (Feature == "+experimental-v") in handleTargetFeatures() 305 else if (Feature == "+experimental-zba") in handleTargetFeatures() [all …]
|
| H A D | ARM.cpp | 449 } else if (Feature == "+vfp2sp" || Feature == "+vfp2") { in handleTargetFeatures() 454 } else if (Feature == "+vfp3sp" || Feature == "+vfp3d16sp" || in handleTargetFeatures() 455 Feature == "+vfp3" || Feature == "+vfp3d16") { in handleTargetFeatures() 458 if (Feature == "+vfp3" || Feature == "+vfp3d16") in handleTargetFeatures() 460 } else if (Feature == "+vfp4sp" || Feature == "+vfp4d16sp" || in handleTargetFeatures() 461 Feature == "+vfp4" || Feature == "+vfp4d16") { in handleTargetFeatures() 464 if (Feature == "+vfp4" || Feature == "+vfp4d16") in handleTargetFeatures() 466 } else if (Feature == "+fp-armv8sp" || Feature == "+fp-armv8d16sp" || in handleTargetFeatures() 467 Feature == "+fp-armv8" || Feature == "+fp-armv8d16") { in handleTargetFeatures() 470 if (Feature == "+fp-armv8" || Feature == "+fp-armv8d16") in handleTargetFeatures() [all …]
|
| H A D | Mips.h | 319 if (Feature == "+single-float") in handleTargetFeatures() 323 else if (Feature == "+mips16") in handleTargetFeatures() 327 else if (Feature == "+dsp") in handleTargetFeatures() 329 else if (Feature == "+dspr2") in handleTargetFeatures() 331 else if (Feature == "+msa") in handleTargetFeatures() 333 else if (Feature == "+nomadd4") in handleTargetFeatures() 335 else if (Feature == "+fp64") in handleTargetFeatures() 337 else if (Feature == "-fp64") in handleTargetFeatures() 339 else if (Feature == "+fpxx") in handleTargetFeatures() 341 else if (Feature == "+nan2008") in handleTargetFeatures() [all …]
|
| H A D | PPC.cpp | 34 for (const auto &Feature : Features) { in handleTargetFeatures() local 35 if (Feature == "+altivec") { in handleTargetFeatures() 37 } else if (Feature == "+vsx") { in handleTargetFeatures() 39 } else if (Feature == "+bpermd") { in handleTargetFeatures() 41 } else if (Feature == "+extdiv") { in handleTargetFeatures() 45 } else if (Feature == "+crypto") { in handleTargetFeatures() 49 } else if (Feature == "+htm") { in handleTargetFeatures() 51 } else if (Feature == "+float128") { in handleTargetFeatures() 61 } else if (Feature == "+spe" || Feature == "+efpu2") { in handleTargetFeatures() 66 } else if (Feature == "-hard-float") { in handleTargetFeatures() [all …]
|
| H A D | SystemZ.h | 121 for (const auto &Feature : Features) { in handleTargetFeatures() local 122 if (Feature == "+transactional-execution") in handleTargetFeatures() 124 else if (Feature == "+vector") in handleTargetFeatures() 126 else if (Feature == "+soft-float") in handleTargetFeatures() 140 bool hasFeature(StringRef Feature) const override;
|
| H A D | BPF.h | 51 bool hasFeature(StringRef Feature) const override { in hasFeature() argument 52 return Feature == "bpf" || Feature == "alu32" || Feature == "dwarfris"; in hasFeature()
|
| H A D | NVPTX.cpp | 44 for (const StringRef Feature : Opts.FeaturesAsWritten) { in NVPTXTargetInfo() local 45 if (!Feature.startswith("+ptx")) in NVPTXTargetInfo() 47 PTXVersion = llvm::StringSwitch<unsigned>(Feature) in NVPTXTargetInfo() 171 bool NVPTXTargetInfo::hasFeature(StringRef Feature) const { in hasFeature() 172 return llvm::StringSwitch<bool>(Feature) in hasFeature()
|
| H A D | Lanai.cpp | 53 bool LanaiTargetInfo::hasFeature(StringRef Feature) const { in hasFeature() 54 return llvm::StringSwitch<bool>(Feature).Case("lanai", true).Default(false); in hasFeature()
|
| H A D | BPF.cpp | 52 for (const auto &Feature : Features) { in handleTargetFeatures() local 53 if (Feature == "+alu32") { in handleTargetFeatures()
|
| H A D | MSP430.h | 60 bool hasFeature(StringRef Feature) const override { in hasFeature() argument 61 return Feature == "msp430"; in hasFeature()
|
| H A D | Sparc.h | 42 auto Feature = llvm::find(Features, "+soft-float"); in handleTargetFeatures() local 43 if (Feature != Features.end()) { in handleTargetFeatures() 51 bool hasFeature(StringRef Feature) const override;
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | InlineModelFeatureMaps.h | 63 return Feature != InlineCostFeatureIndex::SROASavings && in isHeuristicInlineCostFeature() 64 Feature != InlineCostFeatureIndex::IsMultipleBlocks && in isHeuristicInlineCostFeature() 65 Feature != InlineCostFeatureIndex::DeadBlocks && in isHeuristicInlineCostFeature() 66 Feature != InlineCostFeatureIndex::SimplifiedInstructions && in isHeuristicInlineCostFeature() 67 Feature != InlineCostFeatureIndex::ConstantArgs && in isHeuristicInlineCostFeature() 68 Feature != InlineCostFeatureIndex::ConstantOffsetPtrArgs && in isHeuristicInlineCostFeature() 69 Feature != InlineCostFeatureIndex::NestedInlines && in isHeuristicInlineCostFeature() 70 Feature != InlineCostFeatureIndex::NestedInlineCostEstimate && in isHeuristicInlineCostFeature() 71 Feature != InlineCostFeatureIndex::Threshold; in isHeuristicInlineCostFeature() 123 inlineCostFeatureToMlFeature(InlineCostFeatureIndex Feature) { in inlineCostFeatureToMlFeature() argument [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCSubtargetInfo.cpp | 58 static void ApplyFeatureFlag(FeatureBitset &Bits, StringRef Feature, in ApplyFeatureFlag() argument 60 assert(SubtargetFeatures::hasFlag(Feature) && in ApplyFeatureFlag() 65 Find(SubtargetFeatures::StripFlag(Feature), FeatureTable); in ApplyFeatureFlag() 69 if (SubtargetFeatures::isEnabled(Feature)) { in ApplyFeatureFlag() 118 for (auto &Feature : FeatTable) in Help() local 119 errs() << format(" %-*s - %s.\n", MaxFeatLen, Feature.Key, Feature.Desc); in Help() 195 for (const std::string &Feature : Features.getFeatures()) { in getFeatures() local 197 if (Feature == "+help") in getFeatures() 199 else if (Feature == "+cpuhelp") in getFeatures() 202 ApplyFeatureFlag(Bits, Feature, ProcFeatures); in getFeatures() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | SubtargetFeature.h | 208 static bool hasFlag(StringRef Feature) { in hasFlag() argument 209 assert(!Feature.empty() && "Empty string"); in hasFlag() 211 char Ch = Feature[0]; in hasFlag() 217 static StringRef StripFlag(StringRef Feature) { in StripFlag() argument 218 return hasFlag(Feature) ? Feature.substr(1) : Feature; in StripFlag() 222 static inline bool isEnabled(StringRef Feature) { in isEnabled() argument 223 assert(!Feature.empty() && "Empty string"); in isEnabled() 225 char Ch = Feature[0]; in isEnabled()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCMacroFusion.cpp | 161 for (auto &Feature : FusionFeatures) { in shouldScheduleAdjacent() local 163 if (!Feature.isSupported()) in shouldScheduleAdjacent() 168 if (Feature.hasOp2(SecondMI.getOpcode())) { in shouldScheduleAdjacent() 175 if (!Feature.hasOp1(FirstMI->getOpcode())) in shouldScheduleAdjacent() 178 auto DepOpIdx = Feature.depOpIdx(); in shouldScheduleAdjacent() 187 if (checkOpConstraints(Feature.getKind(), *FirstMI, SecondMI)) in shouldScheduleAdjacent()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZTargetMachine.cpp | 51 for (auto &Feature : Features) { in UsesVectorABI() local 52 if (Feature == "vector" || Feature == "+vector") in UsesVectorABI() 54 if (Feature == "-vector") in UsesVectorABI() 56 if (Feature == "soft-float" || Feature == "+soft-float") in UsesVectorABI() 58 if (Feature == "-soft-float") in UsesVectorABI()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Basic/ |
| H A D | Module.cpp | 73 if (Platform == Feature || Target.getTriple().getOSName() == Feature || in isPlatformEnvironment() 74 Env == Feature) in isPlatformEnvironment() 94 return PlatformEnv == Feature || CmpPlatformEnv(PlatformEnv, Feature); in isPlatformEnvironment() 96 return PlatformEnv == Feature; in isPlatformEnvironment() 101 static bool hasFeature(StringRef Feature, const LangOptions &LangOpts, in hasFeature() argument 103 bool HasFeature = llvm::StringSwitch<bool>(Feature) in hasFeature() 121 .Default(Target.hasFeature(Feature) || in hasFeature() 122 isPlatformEnvironment(Target, Feature)); in hasFeature() 126 Feature) != LangOpts.ModuleFeatures.end(); in hasFeature() 290 void Module::addRequirement(StringRef Feature, bool RequiredState, in addRequirement() argument [all …]
|
| H A D | Cuda.cpp | 235 bool CudaFeatureEnabled(llvm::VersionTuple Version, CudaFeature Feature) { in CudaFeatureEnabled() argument 236 return CudaFeatureEnabled(ToCudaVersion(Version), Feature); in CudaFeatureEnabled() 239 bool CudaFeatureEnabled(CudaVersion Version, CudaFeature Feature) { in CudaFeatureEnabled() argument 240 switch (Feature) { in CudaFeatureEnabled()
|
| /freebsd-13.1/contrib/ldns/m4/ |
| H A D | ax_config_feature.m4 | 114 AC_MSG_NOTICE([Feature $1 is enabled]) 119 AC_MSG_NOTICE([Feature $1 is disabled]) 128 dnl Feature global 133 dnl Feature global 138 dnl Feature specific 143 dnl Feature specific 148 dnl Feature specific 153 dnl Feature specific
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | JITTargetMachineBuilder.cpp | 34 for (auto &Feature : FeatureMap) in detectHost() local 35 TMBuilder.getFeatures().AddFeature(Feature.first(), Feature.second); in detectHost()
|
| /freebsd-13.1/sys/contrib/openzfs/.github/ISSUE_TEMPLATE/ |
| H A D | feature_request.md | 2 name: Feature request 5 labels: 'Type: Feature'
|
| /freebsd-13.1/contrib/sendmail/cf/feature/ |
| H A D | prefixmod.m4 | 19 ifelse(defn(`_ARG_'), `', `errprint(`Feature "prefixmod" requires argument')', 21 ifelse(len(X`'_ARG2_),`1', `errprint(`Feature "prefixmod" requires two arguments')',
|