Lines Matching full:minor
89 ExtMap[E.Name] = {E.Version.Major, E.Version.Minor};
92 std::to_string(E.second.Major) + "." + std::to_string(E.second.Minor);
99 ExtMap[E.Name] = {E.Version.Major, E.Version.Minor};
102 std::to_string(E.second.Major) + "." + std::to_string(E.second.Minor);
128 FullExtMap[E.Name] = {E.Version.Major, E.Version.Minor};
129 ExtMap[E.Name] = {E.Version.Major, E.Version.Minor};
133 std::to_string(E.second.Major) + "." + std::to_string(E.second.Minor);
142 FullExtMap[E.Name] = {E.Version.Major, E.Version.Minor};
143 ExtMap[E.Name] = {E.Version.Major, E.Version.Minor};
148 std::to_string(E.second.Major) + "." + std::to_string(E.second.Minor);
271 if (I->Version.Major == MajorVersion && I->Version.Minor == MinorVersion)
336 // Version number is divided into major and minor version numbers,
337 // separated by a 'p'. If the minor version is 0 then 'p0' can be
340 unsigned &Minor, unsigned &ConsumeLength,
345 Minor = 0;
354 // Expected 'p' to be followed by minor version number.
356 return getError("minor version number missing after 'p' for extension '" +
365 if (!MinorStr.empty() && MinorStr.getAsInteger(10, Minor))
366 return getError("Failed to parse minor version number for extension '" +
396 (Major != SupportedVers.Major || Minor != SupportedVers.Minor)) {
402 "." + utostr(SupportedVers.Minor) + ")";
416 Minor = DefaultVersion->Minor;
423 if (RISCVISAInfo::isSupportedExtension(Ext, Major, Minor))
519 return getError("failed to parse minor version number");
615 unsigned Major, Minor, ConsumeLength;
626 StringRef(&Baseline, 1), Arch, Major, Minor, ConsumeLength,
630 ISAInfo->Exts[std::string(1, Baseline)] = {Major, Minor};
647 ISAInfo->Exts[std::string(Ext)] = {Version->Major, Version->Minor};
682 // version number (major, minor) and are separated by a single
699 unsigned Major, Minor, ConsumeLength;
700 if (auto E = getExtensionVersion(Name, Vers, Major, Minor, ConsumeLength,
714 RISCVISAUtils::ExtensionVersion{Major, Minor})
939 Arch << ExtInfo.Major << "p" << ExtInfo.Minor;
987 unsigned Major, Minor, ConsumeLength;
988 if (auto E = getExtensionVersion(Name, Vers, Major, Minor, ConsumeLength,