Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions llvm/include/llvm/TargetParser/RISCVISAInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,12 @@ class RISCVISAInfo {
static std::string getTargetFeatureForExtension(StringRef Ext);

private:
RISCVISAInfo(unsigned XLen)
: XLen(XLen), FLen(0), MinVLen(0), MaxELen(0), MaxELenFp(0) {}
RISCVISAInfo(unsigned XLen) : XLen(XLen) {}

unsigned XLen;
unsigned FLen;
unsigned MinVLen;
unsigned MaxELen, MaxELenFp;
unsigned FLen = 0;
unsigned MinVLen = 0;
unsigned MaxELen = 0, MaxELenFp = 0;

RISCVISAUtils::OrderedExtensionMap Exts;

Expand All @@ -94,9 +93,9 @@ class RISCVISAInfo {

void updateImplication();
void updateCombination();
void updateFLen();
void updateMinVLen();
void updateMaxELen();

/// Update FLen, MinVLen, MaxELen, and MaxELenFp.
void updateImpliedLengths();
};

} // namespace llvm
Expand Down
63 changes: 30 additions & 33 deletions llvm/lib/TargetParser/RISCVISAInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -478,9 +478,7 @@ RISCVISAInfo::parseNormalizedArchString(StringRef Arch) {
"failed to parse major version number");
ISAInfo->addExtension(ExtName, {MajorVersion, MinorVersion});
}
ISAInfo->updateFLen();
ISAInfo->updateMinVLen();
ISAInfo->updateMaxELen();
ISAInfo->updateImpliedLengths();
return std::move(ISAInfo);
}

Expand Down Expand Up @@ -907,50 +905,51 @@ void RISCVISAInfo::updateCombination() {
} while (MadeChange);
}

void RISCVISAInfo::updateFLen() {
FLen = 0;
void RISCVISAInfo::updateImpliedLengths() {
assert(FLen == 0 && MaxELenFp == 0 && MaxELen == 0 && MinVLen == 0 &&
"Expected lengths to be initialied to zero");

// TODO: Handle q extension.
if (Exts.count("d"))
FLen = 64;
else if (Exts.count("f"))
FLen = 32;
}

void RISCVISAInfo::updateMinVLen() {
for (auto const &Ext : Exts) {
StringRef ExtName = Ext.first;
bool IsZvlExt = ExtName.consume_front("zvl") && ExtName.consume_back("b");
if (IsZvlExt) {
unsigned ZvlLen;
if (!ExtName.getAsInteger(10, ZvlLen))
MinVLen = std::max(MinVLen, ZvlLen);
}
}
}

void RISCVISAInfo::updateMaxELen() {
assert(MaxELenFp == 0 && MaxELen == 0);
if (Exts.count("v")) {
MaxELenFp = std::max(MaxELenFp, 64u);
MaxELen = std::max(MaxELen, 64u);
}

// handles EEW restriction by sub-extension zve
for (auto const &Ext : Exts) {
StringRef ExtName = Ext.first;
bool IsZveExt = ExtName.consume_front("zve");
if (IsZveExt) {
if (ExtName.back() == 'f')
// Infer MaxELen and MaxELenFp from Zve(32/64)(x/f/d)
if (ExtName.consume_front("zve")) {
unsigned ZveELen;
if (ExtName.consumeInteger(10, ZveELen))
continue;

if (ExtName == "f")
MaxELenFp = std::max(MaxELenFp, 32u);
else if (ExtName.back() == 'd')
else if (ExtName == "d")
MaxELenFp = std::max(MaxELenFp, 64u);
else if (ExtName.back() != 'x')
else if (ExtName != "x")
continue;

ExtName = ExtName.drop_back();
unsigned ZveELen;
if (!ExtName.getAsInteger(10, ZveELen))
MaxELen = std::max(MaxELen, ZveELen);
MaxELen = std::max(MaxELen, ZveELen);
continue;
}

// Infer MinVLen from zvl*b.
if (ExtName.consume_front("zvl")) {
unsigned ZvlLen;
if (ExtName.consumeInteger(10, ZvlLen))
continue;

if (ExtName != "b")
continue;

MinVLen = std::max(MinVLen, ZvlLen);
continue;
}
}
}
Expand All @@ -976,9 +975,7 @@ llvm::Expected<std::unique_ptr<RISCVISAInfo>>
RISCVISAInfo::postProcessAndChecking(std::unique_ptr<RISCVISAInfo> &&ISAInfo) {
ISAInfo->updateImplication();
ISAInfo->updateCombination();
ISAInfo->updateFLen();
ISAInfo->updateMinVLen();
ISAInfo->updateMaxELen();
ISAInfo->updateImpliedLengths();

if (Error Result = ISAInfo->checkDependency())
return std::move(Result);
Expand Down