1 //===- RISCVTargetDefEmitter.cpp - Generate lists of RISC-V CPUs ----------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This tablegen backend emits the include file needed by RISCVTargetParser.cpp
10 // and RISCVISAInfo.cpp to parse the RISC-V CPUs and extensions.
12 //===----------------------------------------------------------------------===//
14 #include "llvm/ADT/DenseSet.h"
15 #include "llvm/Support/RISCVISAUtils.h"
16 #include "llvm/TableGen/Record.h"
17 #include "llvm/TableGen/TableGenBackend.h"
21 static StringRef
getExtensionName(const Record
*R
) {
22 StringRef Name
= R
->getValueAsString("Name");
23 Name
.consume_front("experimental-");
27 static void printExtensionTable(raw_ostream
&OS
,
28 ArrayRef
<const Record
*> Extensions
,
30 OS
<< "static const RISCVSupportedExtension Supported";
33 OS
<< "Extensions[] = {\n";
35 for (const Record
*R
: Extensions
) {
36 if (R
->getValueAsBit("Experimental") != Experimental
)
39 OS
.indent(4) << "{\"" << getExtensionName(R
) << "\", {"
40 << R
->getValueAsInt("MajorVersion") << ", "
41 << R
->getValueAsInt("MinorVersion") << "}},\n";
47 static void emitRISCVExtensions(const RecordKeeper
&Records
, raw_ostream
&OS
) {
48 OS
<< "#ifdef GET_SUPPORTED_EXTENSIONS\n";
49 OS
<< "#undef GET_SUPPORTED_EXTENSIONS\n\n";
51 std::vector
<const Record
*> Extensions
=
52 Records
.getAllDerivedDefinitionsIfDefined("RISCVExtension");
53 llvm::sort(Extensions
, [](const Record
*Rec1
, const Record
*Rec2
) {
54 return getExtensionName(Rec1
) < getExtensionName(Rec2
);
57 if (!Extensions
.empty()) {
58 printExtensionTable(OS
, Extensions
, /*Experimental=*/false);
59 printExtensionTable(OS
, Extensions
, /*Experimental=*/true);
62 OS
<< "#endif // GET_SUPPORTED_EXTENSIONS\n\n";
64 OS
<< "#ifdef GET_IMPLIED_EXTENSIONS\n";
65 OS
<< "#undef GET_IMPLIED_EXTENSIONS\n\n";
67 if (!Extensions
.empty()) {
68 OS
<< "\nstatic constexpr ImpliedExtsEntry ImpliedExts[] = {\n";
69 for (const Record
*Ext
: Extensions
) {
70 auto ImpliesList
= Ext
->getValueAsListOfDefs("Implies");
71 if (ImpliesList
.empty())
74 StringRef Name
= getExtensionName(Ext
);
76 for (auto *ImpliedExt
: ImpliesList
) {
77 if (!ImpliedExt
->isSubClassOf("RISCVExtension"))
80 OS
.indent(4) << "{ {\"" << Name
<< "\"}, \""
81 << getExtensionName(ImpliedExt
) << "\"},\n";
88 OS
<< "#endif // GET_IMPLIED_EXTENSIONS\n\n";
91 // We can generate march string from target features as what has been described
92 // in RISC-V ISA specification (version 20191213) 'Chapter 27. ISA Extension
93 // Naming Conventions'.
95 // This is almost the same as RISCVFeatures::parseFeatureBits, except that we
96 // get feature name from feature records instead of feature bits.
97 static void printMArch(raw_ostream
&OS
, ArrayRef
<const Record
*> Features
) {
98 RISCVISAUtils::OrderedExtensionMap Extensions
;
101 // Convert features to FeatureVector.
102 for (const Record
*Feature
: Features
) {
103 StringRef FeatureName
= getExtensionName(Feature
);
104 if (Feature
->isSubClassOf("RISCVExtension")) {
105 unsigned Major
= Feature
->getValueAsInt("MajorVersion");
106 unsigned Minor
= Feature
->getValueAsInt("MinorVersion");
107 Extensions
[FeatureName
.str()] = {Major
, Minor
};
108 } else if (FeatureName
== "64bit") {
109 assert(XLen
== 0 && "Already determined XLen");
111 } else if (FeatureName
== "32bit") {
112 assert(XLen
== 0 && "Already determined XLen");
117 assert(XLen
!= 0 && "Unable to determine XLen");
121 ListSeparator
LS("_");
122 for (auto const &Ext
: Extensions
)
123 OS
<< LS
<< Ext
.first
<< Ext
.second
.Major
<< 'p' << Ext
.second
.Minor
;
126 static void printProfileTable(raw_ostream
&OS
,
127 ArrayRef
<const Record
*> Profiles
,
129 OS
<< "static constexpr RISCVProfile Supported";
131 OS
<< "Experimental";
132 OS
<< "Profiles[] = {\n";
134 for (const Record
*Rec
: Profiles
) {
135 if (Rec
->getValueAsBit("Experimental") != Experimental
)
138 StringRef Name
= Rec
->getValueAsString("Name");
139 Name
.consume_front("experimental-");
140 OS
.indent(4) << "{\"" << Name
<< "\",\"";
141 printMArch(OS
, Rec
->getValueAsListOfDefs("Implies"));
148 static void emitRISCVProfiles(const RecordKeeper
&Records
, raw_ostream
&OS
) {
149 OS
<< "#ifdef GET_SUPPORTED_PROFILES\n";
150 OS
<< "#undef GET_SUPPORTED_PROFILES\n\n";
152 auto Profiles
= Records
.getAllDerivedDefinitionsIfDefined("RISCVProfile");
154 if (!Profiles
.empty()) {
155 printProfileTable(OS
, Profiles
, /*Experimental=*/false);
156 bool HasExperimentalProfiles
= any_of(Profiles
, [&](auto &Rec
) {
157 return Rec
->getValueAsBit("Experimental");
159 if (HasExperimentalProfiles
)
160 printProfileTable(OS
, Profiles
, /*Experimental=*/true);
163 OS
<< "#endif // GET_SUPPORTED_PROFILES\n\n";
166 static void emitRISCVProcs(const RecordKeeper
&RK
, raw_ostream
&OS
) {
167 OS
<< "#ifndef PROC\n"
168 << "#define PROC(ENUM, NAME, DEFAULT_MARCH, FAST_SCALAR_UNALIGN"
169 << ", FAST_VECTOR_UNALIGN)\n"
172 // Iterate on all definition records.
173 for (const Record
*Rec
:
174 RK
.getAllDerivedDefinitionsIfDefined("RISCVProcessorModel")) {
175 const std::vector
<const Record
*> &Features
=
176 Rec
->getValueAsListOfDefs("Features");
177 bool FastScalarUnalignedAccess
= any_of(Features
, [&](auto &Feature
) {
178 return Feature
->getValueAsString("Name") == "unaligned-scalar-mem";
181 bool FastVectorUnalignedAccess
= any_of(Features
, [&](auto &Feature
) {
182 return Feature
->getValueAsString("Name") == "unaligned-vector-mem";
185 OS
<< "PROC(" << Rec
->getName() << ", {\"" << Rec
->getValueAsString("Name")
188 StringRef MArch
= Rec
->getValueAsString("DefaultMarch");
190 // Compute MArch from features if we don't specify it.
192 printMArch(OS
, Features
);
195 OS
<< "\"}, " << FastScalarUnalignedAccess
<< ", "
196 << FastVectorUnalignedAccess
<< ")\n";
198 OS
<< "\n#undef PROC\n";
200 OS
<< "#ifndef TUNE_PROC\n"
201 << "#define TUNE_PROC(ENUM, NAME)\n"
204 for (const Record
*Rec
:
205 RK
.getAllDerivedDefinitionsIfDefined("RISCVTuneProcessorModel")) {
206 OS
<< "TUNE_PROC(" << Rec
->getName() << ", "
207 << "\"" << Rec
->getValueAsString("Name") << "\")\n";
210 OS
<< "\n#undef TUNE_PROC\n";
213 static void emitRISCVExtensionBitmask(const RecordKeeper
&RK
, raw_ostream
&OS
) {
214 std::vector
<const Record
*> Extensions
=
215 RK
.getAllDerivedDefinitionsIfDefined("RISCVExtensionBitmask");
216 llvm::sort(Extensions
, [](const Record
*Rec1
, const Record
*Rec2
) {
217 return getExtensionName(Rec1
) < getExtensionName(Rec2
);
221 llvm::DenseSet
<std::pair
<uint64_t, uint64_t>> Seen
;
224 OS
<< "#ifdef GET_RISCVExtensionBitmaskTable_IMPL\n";
225 OS
<< "static const RISCVExtensionBitmask ExtensionBitmask[]={\n";
226 for (const Record
*Rec
: Extensions
) {
227 unsigned GroupIDVal
= Rec
->getValueAsInt("GroupID");
228 unsigned BitPosVal
= Rec
->getValueAsInt("BitPos");
230 StringRef ExtName
= Rec
->getValueAsString("Name");
231 ExtName
.consume_front("experimental-");
234 assert(Seen
.insert(std::make_pair(GroupIDVal
, BitPosVal
)).second
&&
235 "duplicated bitmask");
239 << "\"" << ExtName
<< "\""
240 << ", " << GroupIDVal
<< ", " << BitPosVal
<< "ULL"
247 static void emitRiscvTargetDef(const RecordKeeper
&RK
, raw_ostream
&OS
) {
248 emitRISCVExtensions(RK
, OS
);
249 emitRISCVProfiles(RK
, OS
);
250 emitRISCVProcs(RK
, OS
);
251 emitRISCVExtensionBitmask(RK
, OS
);
254 static TableGen::Emitter::Opt
X("gen-riscv-target-def", emitRiscvTargetDef
,
255 "Generate the list of CPUs and extensions for "