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
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This tablegen backend emits the include file needed by the target
|
|
|
|
// parser to parse the RISC-V CPUs.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
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;
|
|
|
|
|
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-23 15:12:36 -07:00
|
|
|
std::map<std::string, RISCVISAUtils::ExtensionVersion,
|
|
|
|
RISCVISAUtils::ExtensionComparator>
|
2024-04-22 20:37:11 -07:00
|
|
|
Extensions;
|
|
|
|
unsigned XLen = 0;
|
2023-01-16 11:07:34 +08:00
|
|
|
|
|
|
|
// Convert features to FeatureVector.
|
|
|
|
for (auto *Feature : Rec.getValueAsListOfDefs("Features")) {
|
|
|
|
StringRef FeatureName = Feature->getValueAsString("Name");
|
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
|
|
|
|
2023-02-19 14:30:14 +09:00
|
|
|
static void EmitRISCVTargetDef(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
|
|
|
|
|
|
|
static TableGen::Emitter::Opt X("gen-riscv-target-def", EmitRISCVTargetDef,
|
|
|
|
"Generate the list of CPU for RISCV");
|