Searched refs:FeatureList (Results 1 - 3 of 3) sorted by relevance

/freebsd-current/contrib/llvm-project/clang/lib/Basic/
H A DBuiltinTargetFeatures.h40 FeatureListStatus getAndFeatures(StringRef FeatureList) { argument
44 for (size_t i = 0, e = FeatureList.size(); i < e; ++i) {
45 char CurrentToken = FeatureList[i];
62 StringRef F = FeatureList.slice(SubexpressionStart, i);
68 return {HasFeatures, FeatureList.substr(SubexpressionStart)};
75 if (HasFeatures && SubexpressionStart != FeatureList.size())
77 CallerFeatureMap.lookup(FeatureList.substr(SubexpressionStart));
82 bool hasRequiredFeatures(StringRef FeatureList) { argument
83 FeatureListStatus FS = {false, FeatureList};
/freebsd-current/contrib/llvm-project/llvm/utils/TableGen/
H A DSubtargetEmitter.cpp191 static void printFeatureMask(raw_ostream &OS, RecVec &FeatureList, argument
194 for (const Record *Feature : FeatureList) {
213 std::vector<Record *> FeatureList = local
215 llvm::sort(FeatureList, LessRecordFieldFieldName());
217 for (const Record *Feature : FeatureList) {
251 std::vector<Record*> FeatureList = local
254 if (FeatureList.empty())
257 llvm::sort(FeatureList, LessRecordFieldName());
266 for (const Record *Feature : FeatureList) {
314 RecVec FeatureList local
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenFunction.cpp2638 StringRef FeatureList(CGM.getContext().BuiltinInfo.getRequiredFeatures(BuiltinID));
2640 FeatureList, CallerFeatureMap) && !IsHipStdPar) {
2643 << FeatureList;

Completed in 181 milliseconds