Lines Matching refs:ExtInfo
198 for (auto &ExtInfo : {ArrayRef(SupportedExtensions), in findDefaultVersion()
200 auto I = llvm::lower_bound(ExtInfo, ExtName, LessExtName()); in findDefaultVersion()
202 if (I == ExtInfo.end() || I->Name != ExtName) in findDefaultVersion()
243 ArrayRef<RISCVSupportedExtension> ExtInfo = in isSupportedExtensionFeature() local
247 auto I = llvm::lower_bound(ExtInfo, Ext, LessExtName()); in isSupportedExtensionFeature()
248 return I != ExtInfo.end() && I->Name == Ext; in isSupportedExtensionFeature()
254 for (auto ExtInfo : {ArrayRef(SupportedExtensions), in isSupportedExtension()
256 auto I = llvm::lower_bound(ExtInfo, Ext, LessExtName()); in isSupportedExtension()
257 if (I != ExtInfo.end() && I->Name == Ext) in isSupportedExtension()
266 for (auto ExtInfo : {ArrayRef(SupportedExtensions), in isSupportedExtension()
269 std::equal_range(ExtInfo.begin(), ExtInfo.end(), Ext, LessExtName()); in isSupportedExtension()
947 auto ExtInfo = Ext.second; in toString() local
949 Arch << ExtInfo.Major << "p" << ExtInfo.Minor; in toString()