Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DTFUtils.cpp267 std::vector<tensorflow::FeatureList *> FeatureLists;
268 tensorflow::FeatureList *Reward = nullptr;
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenFunction.h4769 FeatureListStatus getAndFeatures(StringRef FeatureList) {
4773 for (size_t i = 0, e = FeatureList.size(); i < e; ++i) {
4774 char CurrentToken = FeatureList[i];
4791 StringRef F = FeatureList.slice(SubexpressionStart, i);
4797 return {HasFeatures, FeatureList.substr(SubexpressionStart)};
4804 if (HasFeatures && SubexpressionStart != FeatureList.size())
4806 CallerFeatureMap.lookup(FeatureList.substr(SubexpressionStart));
4811 bool hasRequiredFeatures(StringRef FeatureList) {
4812 FeatureListStatus FS = {false, FeatureList};
H A DCodeGenFunction.cpp2476 StringRef FeatureList( in checkTargetFeatures() local
2479 if (FeatureList.empty()) in checkTargetFeatures()
2481 assert(FeatureList.find(' ') == StringRef::npos && in checkTargetFeatures()
2484 if (!TF.hasRequiredFeatures(FeatureList)) in checkTargetFeatures()
2486 << TargetDecl->getDeclName() << FeatureList; in checkTargetFeatures()