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