Home | History | Annotate | Download | only in AsmParser

Lines Matching refs:Feature

259   bool parseSetFeature(uint64_t Feature);
335 // Internally, it clears all the feature bits related to *any* architecture
339 // clears the features that imply the feature being cleared and not the
340 // features implied by the feature being cleared. This is easier to see
343 // | Feature | Implies |
365 void setFeatureBits(uint64_t Feature, StringRef FeatureString) {
366 if (!(getSTI().getFeatureBits()[Feature])) {
374 void clearFeatureBits(uint64_t Feature, StringRef FeatureString) {
375 if (getSTI().getFeatureBits()[Feature]) {
383 void setModuleFeatureBits(uint64_t Feature, StringRef FeatureString) {
384 setFeatureBits(Feature, FeatureString);
388 void clearModuleFeatureBits(uint64_t Feature, StringRef FeatureString) {
389 clearFeatureBits(Feature, FeatureString);
3772 Error(IDLoc, "instruction requires a CPU feature not currently enabled");
5316 bool MipsAsmParser::parseSetFeature(uint64_t Feature) {
5322 switch (Feature) {
5324 llvm_unreachable("Unimplemented feature");