Searched refs:ReqFeatures (Results 1 – 4 of 4) sorted by relevance
| /freebsd-12.1/contrib/llvm/utils/TableGen/ |
| H A D | RISCVCompressInstEmitter.cpp | 476 const std::vector<Record *> &ReqFeatures) { in getReqFeatures() argument 477 for (auto &R : ReqFeatures) { in getReqFeatures() 625 std::vector<Record *> ReqFeatures; in emitCompressInstEmitter() local 627 copy_if(RF, std::back_inserter(ReqFeatures), [](Record *R) { in emitCompressInstEmitter() 630 getReqFeatures(FeaturesMap, ReqFeatures); in emitCompressInstEmitter()
|
| H A D | AsmWriterEmitter.cpp | 814 std::vector<Record *> ReqFeatures; in EmitPrintAliasInstruction() local 819 copy_if(RF, std::back_inserter(ReqFeatures), [](Record *R) { in EmitPrintAliasInstruction() 946 for (auto I = ReqFeatures.cbegin(); I != ReqFeatures.cend(); I++) { in EmitPrintAliasInstruction()
|
| H A D | AsmMatcherEmitter.cpp | 2692 std::vector<Record*> ReqFeatures = R->getValueAsListOfDefs("Predicates"); in GetAliasRequiredFeatures() local 2695 for (unsigned i = 0, e = ReqFeatures.size(); i != e; ++i) { in GetAliasRequiredFeatures() 2696 const SubtargetFeatureInfo *F = Info.getSubtargetFeature(ReqFeatures[i]); in GetAliasRequiredFeatures() 2699 PrintFatalError(R->getLoc(), "Predicate '" + ReqFeatures[i]->getName() + in GetAliasRequiredFeatures()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CodeGenFunction.cpp | 2326 static bool hasRequiredFeatures(const SmallVectorImpl<StringRef> &ReqFeatures, in hasRequiredFeatures() argument 2330 if (ReqFeatures.empty()) in hasRequiredFeatures() 2341 ReqFeatures.begin(), ReqFeatures.end(), [&](StringRef Feature) { in hasRequiredFeatures() 2374 SmallVector<StringRef, 1> ReqFeatures; in checkTargetFeatures() local 2380 StringRef(FeatureList).split(ReqFeatures, ','); in checkTargetFeatures() 2381 if (!hasRequiredFeatures(ReqFeatures, CGM, FD, MissingFeature)) in checkTargetFeatures() 2393 SmallVector<StringRef, 1> ReqFeatures; in checkTargetFeatures() local 2399 ReqFeatures.push_back(StringRef(F).substr(1)); in checkTargetFeatures() 2405 ReqFeatures.push_back(F.getKey()); in checkTargetFeatures() 2407 if (!hasRequiredFeatures(ReqFeatures, CGM, FD, MissingFeature)) in checkTargetFeatures()
|