Home
last modified time | relevance | path

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

/netbsd/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DSubtargetEmitter.cpp179 static void printFeatureMask(raw_ostream &OS, RecVec &FeatureList, in printFeatureMask() argument
182 for (const Record *Feature : FeatureList) { in printFeatureMask()
203 std::vector<Record*> FeatureList = in FeatureKeyValues() local
206 if (FeatureList.empty()) in FeatureKeyValues()
209 llvm::sort(FeatureList, LessRecordFieldName()); in FeatureKeyValues()
218 for (const Record *Feature : FeatureList) { in FeatureKeyValues()
266 RecVec FeatureList = Processor->getValueAsListOfDefs("Features"); in CPUKeyValues() local
273 printFeatureMask(OS, FeatureList, FeatureMap); in CPUKeyValues()
/netbsd/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCodeGenFunction.h4763 FeatureListStatus getAndFeatures(StringRef FeatureList) {
4767 for (size_t i = 0, e = FeatureList.size(); i < e; ++i) {
4768 char CurrentToken = FeatureList[i];
4785 StringRef F = FeatureList.slice(SubexpressionStart, i);
4791 return {HasFeatures, FeatureList.substr(SubexpressionStart)};
4798 if (HasFeatures && SubexpressionStart != FeatureList.size())
4800 CallerFeatureMap.lookup(FeatureList.substr(SubexpressionStart));
4805 bool hasRequiredFeatures(StringRef FeatureList) {
4806 FeatureListStatus FS = {false, FeatureList};
H A DCodeGenFunction.cpp2462 StringRef FeatureList( in checkTargetFeatures() local
2465 if (FeatureList.empty()) in checkTargetFeatures()
2467 assert(FeatureList.find(' ') == StringRef::npos && in checkTargetFeatures()
2470 if (!TF.hasRequiredFeatures(FeatureList)) in checkTargetFeatures()
2472 << TargetDecl->getDeclName() << FeatureList; in checkTargetFeatures()