Lines Matching defs:Features
621 SubtargetFeatures Features;
629 Features.AddFeature(Feature, IsEnabled);
632 Features.AddFeature(MAttr);
634 return Features.getString();
638 SubtargetFeatures Features;
646 Features.AddFeature(Feature, IsEnabled);
649 Features.AddFeature(MAttr);
651 return Features.getFeatures();
664 /// Set function attributes of function \p F based on CPU, Features, and command
666 void codegen::setFunctionAttributes(StringRef CPU, StringRef Features,
674 if (!Features.empty()) {
679 NewAttrs.addAttribute("target-features", Features);
683 Appended.append(Features);
744 /// Features, and command line flags.
745 void codegen::setFunctionAttributes(StringRef CPU, StringRef Features,
748 setFunctionAttributes(CPU, Features, F);