Skip to content

Commit

Permalink
Reland [RISCV] Fix gaps in IgnoreUnknown=true for RISCVISAInfo::parse…
Browse files Browse the repository at this point in the history
…ArchString

Prior to this patch, unrecognised z/s/sx/x prefixed extensions were not
ignored when IgnoreUnknown=true.

The first version of this patch, a7313f8, incorrectly used
`!isSupportedExtension(Ext)` rather than `!isSupportedExtension(Name)`.
i.e. checked the full substring rather than the split out name, causing
incorrect behaviour when a version is specified. This was fixed and a
new test case addded.

Differential Revision: https://reviews.llvm.org/D145882
  • Loading branch information
asb committed Mar 13, 2023
1 parent 775451b commit a159e58
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
3 changes: 3 additions & 0 deletions llvm/lib/Support/RISCVISAInfo.cpp
Expand Up @@ -804,6 +804,9 @@ RISCVISAInfo::parseArchString(StringRef Arch, bool EnableExperimentalExtension,
Desc.str().c_str(), Name.str().c_str());
}

if (IgnoreUnknown && !isSupportedExtension(Name))
continue;

ISAInfo->addExtension(Name, Major, Minor);
// Extension format is correct, keep parsing the extensions.
// TODO: Save Type, Name, Major, Minor to avoid parsing them later.
Expand Down
18 changes: 10 additions & 8 deletions llvm/unittests/Support/RISCVISAInfoTest.cpp
Expand Up @@ -230,21 +230,23 @@ TEST(ParseArchString, RejectsUnrecognizedExtensionNamesByDefault) {
}

TEST(ParseArchString, IgnoresUnrecognizedExtensionNamesWithIgnoreUnknown) {
for (StringRef Input : {"rv32ib"}) {
for (StringRef Input : {"rv32ib", "rv32i_zmadeup", "rv64i_smadeup",
"rv32i_sxmadeup", "rv64i_xmadeup"}) {
auto MaybeISAInfo = RISCVISAInfo::parseArchString(Input, true, false, true);
ASSERT_THAT_EXPECTED(MaybeISAInfo, Succeeded());
RISCVISAInfo &Info = **MaybeISAInfo;
RISCVISAInfo::OrderedExtensionMap Exts = Info.getExtensions();
EXPECT_EQ(Exts.size(), 1UL);
EXPECT_TRUE(Exts.at("i") == (RISCVExtensionInfo{"i", 2, 0}));
}
// FIXME: These unrecognized extensions should be ignored just as in the
// case above. The below captures the current (incorrect) behaviour.
for (StringRef Input :
{"rv32i_zmadeup", "rv64i_smadeup", "rv32i_sxmadeup", "rv64i_xmadeup"}) {
auto MaybeISAInfo = RISCVISAInfo::parseArchString(Input, true, false, true);
EXPECT_THAT_EXPECTED(MaybeISAInfo, Failed());
}

// Checks that supported extensions aren't incorrectly ignored when a
// version is present (an early version of the patch had this mistake).
auto MaybeISAInfo =
RISCVISAInfo::parseArchString("rv32i_zbc1p0_xmadeup", true, false, true);
ASSERT_THAT_EXPECTED(MaybeISAInfo, Succeeded());
RISCVISAInfo::OrderedExtensionMap Exts = (*MaybeISAInfo)->getExtensions();
EXPECT_TRUE(Exts.at("zbc") == (RISCVExtensionInfo{"zbc", 1, 0}));
}

TEST(ParseArchString, AcceptsVersionInLongOrShortForm) {
Expand Down

0 comments on commit a159e58

Please sign in to comment.