2023-03-27 09:15:53 -07:00
|
|
|
//===- RISCVTargetDefEmitter.cpp - Generate lists of RISC-V CPUs ----------===//
|
2023-01-11 10:23:55 +01:00
|
|
|
//
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2024-04-25 07:07:33 -07:00
|
|
|
// This tablegen backend emits the include file needed by RISCVTargetParser.cpp
|
|
|
|
// and RISCVISAInfo.cpp to parse the RISC-V CPUs and extensions.
|
2023-01-11 10:23:55 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2024-04-23 15:12:36 -07:00
|
|
|
#include "llvm/Support/RISCVISAUtils.h"
|
2023-01-11 10:23:55 +01:00
|
|
|
#include "llvm/TableGen/Record.h"
|
2023-02-19 14:30:14 +09:00
|
|
|
#include "llvm/TableGen/TableGenBackend.h"
|
2023-01-11 10:23:55 +01:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2024-04-25 07:07:33 -07:00
|
|
|
static StringRef getExtensionName(const Record *R) {
|
|
|
|
StringRef Name = R->getValueAsString("Name");
|
|
|
|
Name.consume_front("experimental-");
|
|
|
|
return Name;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void printExtensionTable(raw_ostream &OS,
|
|
|
|
const std::vector<Record *> &Extensions,
|
|
|
|
bool Experimental) {
|
|
|
|
OS << "static const RISCVSupportedExtension Supported";
|
|
|
|
if (Experimental)
|
|
|
|
OS << "Experimental";
|
|
|
|
OS << "Extensions[] = {\n";
|
|
|
|
|
|
|
|
for (Record *R : Extensions) {
|
|
|
|
if (R->getValueAsBit("Experimental") != Experimental)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
OS << " {\"" << getExtensionName(R) << "\", {"
|
|
|
|
<< R->getValueAsInt("MajorVersion") << ", "
|
|
|
|
<< R->getValueAsInt("MinorVersion") << "}},\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
OS << "};\n\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
static void emitRISCVExtensions(RecordKeeper &Records, raw_ostream &OS) {
|
|
|
|
OS << "#ifdef GET_SUPPORTED_EXTENSIONS\n";
|
|
|
|
OS << "#undef GET_SUPPORTED_EXTENSIONS\n\n";
|
|
|
|
|
|
|
|
std::vector<Record *> Extensions =
|
|
|
|
Records.getAllDerivedDefinitions("RISCVExtension");
|
|
|
|
llvm::sort(Extensions, [](const Record *Rec1, const Record *Rec2) {
|
|
|
|
return getExtensionName(Rec1) < getExtensionName(Rec2);
|
|
|
|
});
|
|
|
|
|
|
|
|
printExtensionTable(OS, Extensions, /*Experimental=*/false);
|
|
|
|
printExtensionTable(OS, Extensions, /*Experimental=*/true);
|
|
|
|
|
|
|
|
OS << "#endif // GET_SUPPORTED_EXTENSIONS\n\n";
|
|
|
|
|
|
|
|
OS << "#ifdef GET_IMPLIED_EXTENSIONS\n";
|
|
|
|
OS << "#undef GET_IMPLIED_EXTENSIONS\n\n";
|
|
|
|
|
2024-04-26 10:32:21 -07:00
|
|
|
OS << "\nstatic constexpr ImpliedExtsEntry ImpliedExts[] = {\n";
|
2024-04-25 07:07:33 -07:00
|
|
|
for (Record *Ext : Extensions) {
|
|
|
|
auto ImpliesList = Ext->getValueAsListOfDefs("Implies");
|
|
|
|
if (ImpliesList.empty())
|
|
|
|
continue;
|
|
|
|
|
2024-04-26 10:32:21 -07:00
|
|
|
StringRef Name = getExtensionName(Ext);
|
2024-04-25 07:07:33 -07:00
|
|
|
|
|
|
|
for (auto *ImpliedExt : ImpliesList) {
|
|
|
|
if (!ImpliedExt->isSubClassOf("RISCVExtension"))
|
|
|
|
continue;
|
|
|
|
|
2024-04-26 10:32:21 -07:00
|
|
|
OS << " { {\"" << Name << "\"}, \"" << getExtensionName(ImpliedExt)
|
|
|
|
<< "\"},\n";
|
2024-04-25 07:07:33 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
OS << "};\n\n";
|
|
|
|
|
|
|
|
OS << "#endif // GET_IMPLIED_EXTENSIONS\n\n";
|
|
|
|
}
|
|
|
|
|
2023-01-16 11:07:34 +08:00
|
|
|
// We can generate march string from target features as what has been described
|
2023-03-27 09:15:53 -07:00
|
|
|
// in RISC-V ISA specification (version 20191213) 'Chapter 27. ISA Extension
|
2023-01-16 11:07:34 +08:00
|
|
|
// Naming Conventions'.
|
|
|
|
//
|
|
|
|
// This is almost the same as RISCVFeatures::parseFeatureBits, except that we
|
|
|
|
// get feature name from feature records instead of feature bits.
|
2024-04-22 20:37:11 -07:00
|
|
|
static void printMArch(raw_ostream &OS, const Record &Rec) {
|
2024-04-26 17:24:41 -07:00
|
|
|
RISCVISAUtils::OrderedExtensionMap Extensions;
|
2024-04-22 20:37:11 -07:00
|
|
|
unsigned XLen = 0;
|
2023-01-16 11:07:34 +08:00
|
|
|
|
|
|
|
// Convert features to FeatureVector.
|
|
|
|
for (auto *Feature : Rec.getValueAsListOfDefs("Features")) {
|
2024-04-28 11:16:43 +08:00
|
|
|
StringRef FeatureName = getExtensionName(Feature);
|
2024-04-22 20:37:11 -07:00
|
|
|
if (Feature->isSubClassOf("RISCVExtension")) {
|
|
|
|
unsigned Major = Feature->getValueAsInt("MajorVersion");
|
|
|
|
unsigned Minor = Feature->getValueAsInt("MinorVersion");
|
|
|
|
Extensions[FeatureName.str()] = {Major, Minor};
|
|
|
|
} else if (FeatureName == "64bit") {
|
|
|
|
assert(XLen == 0 && "Already determined XLen");
|
2023-01-20 12:20:58 -08:00
|
|
|
XLen = 64;
|
2024-04-22 20:37:11 -07:00
|
|
|
} else if (FeatureName == "32bit") {
|
|
|
|
assert(XLen == 0 && "Already determined XLen");
|
|
|
|
XLen = 32;
|
|
|
|
}
|
2023-01-16 11:07:34 +08:00
|
|
|
}
|
|
|
|
|
2024-04-22 20:37:11 -07:00
|
|
|
assert(XLen != 0 && "Unable to determine XLen");
|
|
|
|
|
|
|
|
OS << "rv" << XLen;
|
2023-01-16 11:07:34 +08:00
|
|
|
|
2024-04-22 20:37:11 -07:00
|
|
|
ListSeparator LS("_");
|
|
|
|
for (auto const &Ext : Extensions)
|
|
|
|
OS << LS << Ext.first << Ext.second.Major << 'p' << Ext.second.Minor;
|
2023-01-16 11:07:34 +08:00
|
|
|
}
|
2023-01-11 10:23:55 +01:00
|
|
|
|
2024-04-25 07:07:33 -07:00
|
|
|
static void emitRISCVProcs(RecordKeeper &RK, raw_ostream &OS) {
|
2023-01-11 10:23:55 +01:00
|
|
|
OS << "#ifndef PROC\n"
|
2023-11-08 00:05:16 +08:00
|
|
|
<< "#define PROC(ENUM, NAME, DEFAULT_MARCH, FAST_UNALIGNED_ACCESS)\n"
|
2023-01-11 10:23:55 +01:00
|
|
|
<< "#endif\n\n";
|
|
|
|
|
|
|
|
// Iterate on all definition records.
|
2023-01-20 00:20:13 -08:00
|
|
|
for (const Record *Rec : RK.getAllDerivedDefinitions("RISCVProcessorModel")) {
|
2024-04-16 15:40:32 -07:00
|
|
|
bool FastScalarUnalignedAccess =
|
2023-11-08 00:05:16 +08:00
|
|
|
any_of(Rec->getValueAsListOfDefs("Features"), [&](auto &Feature) {
|
2024-04-16 15:40:32 -07:00
|
|
|
return Feature->getValueAsString("Name") == "unaligned-scalar-mem";
|
2023-11-08 00:05:16 +08:00
|
|
|
});
|
|
|
|
|
2024-04-16 15:40:32 -07:00
|
|
|
bool FastVectorUnalignedAccess =
|
|
|
|
any_of(Rec->getValueAsListOfDefs("Features"), [&](auto &Feature) {
|
|
|
|
return Feature->getValueAsString("Name") == "unaligned-vector-mem";
|
|
|
|
});
|
|
|
|
|
|
|
|
bool FastUnalignedAccess =
|
|
|
|
FastScalarUnalignedAccess && FastVectorUnalignedAccess;
|
|
|
|
|
2024-04-22 20:37:11 -07:00
|
|
|
OS << "PROC(" << Rec->getName() << ", {\"" << Rec->getValueAsString("Name")
|
|
|
|
<< "\"}, {\"";
|
|
|
|
|
|
|
|
StringRef MArch = Rec->getValueAsString("DefaultMarch");
|
|
|
|
|
|
|
|
// Compute MArch from features if we don't specify it.
|
|
|
|
if (MArch.empty())
|
|
|
|
printMArch(OS, *Rec);
|
|
|
|
else
|
|
|
|
OS << MArch;
|
|
|
|
OS << "\"}, " << FastUnalignedAccess << ")\n";
|
2023-01-11 10:23:55 +01:00
|
|
|
}
|
|
|
|
OS << "\n#undef PROC\n";
|
|
|
|
OS << "\n";
|
|
|
|
OS << "#ifndef TUNE_PROC\n"
|
|
|
|
<< "#define TUNE_PROC(ENUM, NAME)\n"
|
|
|
|
<< "#endif\n\n";
|
2023-01-20 00:20:13 -08:00
|
|
|
|
|
|
|
for (const Record *Rec :
|
|
|
|
RK.getAllDerivedDefinitions("RISCVTuneProcessorModel")) {
|
|
|
|
OS << "TUNE_PROC(" << Rec->getName() << ", "
|
|
|
|
<< "\"" << Rec->getValueAsString("Name") << "\")\n";
|
2023-01-11 10:23:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
OS << "\n#undef TUNE_PROC\n";
|
|
|
|
}
|
2023-02-19 14:30:14 +09:00
|
|
|
|
2024-04-25 07:07:33 -07:00
|
|
|
static void EmitRISCVTargetDef(RecordKeeper &RK, raw_ostream &OS) {
|
|
|
|
emitRISCVExtensions(RK, OS);
|
|
|
|
emitRISCVProcs(RK, OS);
|
|
|
|
}
|
|
|
|
|
2023-02-19 14:30:14 +09:00
|
|
|
static TableGen::Emitter::Opt X("gen-riscv-target-def", EmitRISCVTargetDef,
|
2024-04-25 07:07:33 -07:00
|
|
|
"Generate the list of CPUs and extensions for "
|
|
|
|
"RISC-V");
|