Home
last modified time | relevance | path

Searched refs:Feat (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DARMTargetDefEmitter.cpp45 for (auto *Feat : SeenFeats) { in CheckFeatureTree() local
46 if (Feat->isSubClassOf("ExtensionWithMArch") && !DefaultExts.count(Feat)) in CheckFeatureTree()
48 "ExtensionWithMArch " + Feat->getName() + in CheckFeatureTree()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DABIInfo.cpp231 for (StringRef Feat : Info.Features) { in appendAttributeMangling() local
235 Out << Feat.substr(1); in appendAttributeMangling()
H A DCodeGenModule.cpp4171 for (StringRef Feat : RO.Conditions.Features) { in TargetMVPriority() local
4172 Priority = std::max(Priority, TI.multiVersionSortPriority(Feat)); in TargetMVPriority()
4395 llvm::erase_if(Features, [&Target](StringRef Feat) { in emitCPUDispatchDefinition() argument
4396 return !Target.validateCpuSupports(Feat); in emitCPUDispatchDefinition()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DAArch64.cpp946 for (auto &Feat : Features) in appendAttributeMangling() local
947 Feat = Feat.trim(); in appendAttributeMangling()
954 for (auto &Feat : Features) in appendAttributeMangling() local
955 if (auto Ext = llvm::AArch64::parseFMVExtension(Feat)) in appendAttributeMangling()
/freebsd/contrib/llvm-project/llvm/include/llvm/TargetParser/
H A DX86TargetParser.h182 unsigned getFeaturePriority(ProcessorFeatures Feat);
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DELFTypes.h849 Features Feat{
852 if (Feat.encode() != Val)
856 return Feat;
/freebsd/contrib/llvm-project/llvm/lib/TargetParser/
H A DX86TargetParser.cpp751 unsigned llvm::X86::getFeaturePriority(ProcessorFeatures Feat) { in getFeaturePriority() argument
770 switch (Feat) { in getFeaturePriority()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDecl.cpp10978 for (const auto &Feat : ParseInfo.Features) { in CheckMultiVersionValue() local
10979 auto BareFeat = StringRef{Feat}.substr(1); in CheckMultiVersionValue()
10980 if (Feat[0] == '-') { in CheckMultiVersionValue()
10998 for (const auto &Feat : Feats) { in CheckMultiVersionValue() local
10999 if (!TargetInfo.validateCpuSupports(Feat)) { in CheckMultiVersionValue()
11001 << Feature << Feat; in CheckMultiVersionValue()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp14057 llvm::erase_if(ParsedAttr.Features, [&](const std::string &Feat) { in filterFunctionTargetAttrs() argument
14058 return !Target->isValidFeatureName(StringRef{Feat}.substr(1)); in filterFunctionTargetAttrs()