Lines Matching refs:Feature
557 for (auto &Feature : AttrFeatures) {
560 Feature = Feature.trim();
565 if (Feature.starts_with("fpmath="))
568 if (Feature.starts_with("branch-protection=")) {
569 Ret.BranchProtection = Feature.split('=').second.trim();
574 if (Feature.starts_with("arch=")) {
578 Ret.CPU = Feature.split("=").second.trim();
579 } else if (Feature.starts_with("tune=")) {
583 Ret.Tune = Feature.split("=").second.trim();
584 } else if (Feature.starts_with("no-"))
585 Ret.Features.push_back("-" + Feature.split("-").second.str());
587 Ret.Features.push_back("+" + Feature.str());