CIRCT 20.0.0git
Loading...
Searching...
No Matches
LoweringOptions.cpp
Go to the documentation of this file.
1//===- LoweringOptions.cpp - CIRCT Lowering Options -----------------------===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8//
9// Options for controlling the lowering process. Contains command line
10// option definitions and support.
11//
12//===----------------------------------------------------------------------===//
13
15#include "mlir/IR/BuiltinOps.h"
16
17using namespace circt;
18using namespace mlir;
19
20//===----------------------------------------------------------------------===//
21// LoweringOptions
22//===----------------------------------------------------------------------===//
23
24LoweringOptions::LoweringOptions(StringRef options, ErrorHandlerT errorHandler)
25 : LoweringOptions() {
26 parse(options, errorHandler);
27}
28
30 parseFromAttribute(module);
31}
32
33static std::optional<LoweringOptions::LocationInfoStyle>
34parseLocationInfoStyle(StringRef option) {
35 return llvm::StringSwitch<std::optional<LoweringOptions::LocationInfoStyle>>(
36 option)
37 .Case("plain", LoweringOptions::Plain)
38 .Case("wrapInAtSquareBracket", LoweringOptions::WrapInAtSquareBracket)
39 .Case("none", LoweringOptions::None)
40 .Default(std::nullopt);
41}
42
43static std::optional<LoweringOptions::WireSpillingHeuristic>
44parseWireSpillingHeuristic(StringRef option) {
45 return llvm::StringSwitch<
46 std::optional<LoweringOptions::WireSpillingHeuristic>>(option)
47 .Case("spillLargeTermsWithNamehints",
49 .Default(std::nullopt);
50}
51
52void LoweringOptions::parse(StringRef text, ErrorHandlerT errorHandler) {
53 while (!text.empty()) {
54 // Remove the first option from the text.
55 auto split = text.split(",");
56 auto option = split.first.trim();
57 text = split.second;
58 if (option == "") {
59 // Empty options are fine.
60 } else if (option == "noAlwaysComb") {
61 noAlwaysComb = true;
62 } else if (option == "exprInEventControl") {
64 } else if (option == "disallowPackedArrays") {
66 } else if (option == "disallowPackedStructAssignments") {
68 } else if (option == "disallowLocalVariables") {
70 } else if (option == "verifLabels") {
71 enforceVerifLabels = true;
72 } else if (option.consume_front("emittedLineLength=")) {
73 if (option.getAsInteger(10, emittedLineLength)) {
74 errorHandler("expected integer source width");
76 }
77 } else if (option == "explicitBitcast") {
78 explicitBitcast = true;
79 } else if (option == "emitReplicatedOpsToHeader") {
81 } else if (option.consume_front("maximumNumberOfTermsPerExpression=")) {
82 if (option.getAsInteger(10, maximumNumberOfTermsPerExpression)) {
83 errorHandler("expected integer source width");
85 }
86 } else if (option.consume_front("locationInfoStyle=")) {
87 if (auto style = parseLocationInfoStyle(option)) {
88 locationInfoStyle = *style;
89 } else {
90 errorHandler("expected 'plain', 'wrapInAtSquareBracket', or 'none'");
91 }
92 } else if (option == "disallowPortDeclSharing") {
94 } else if (option == "printDebugInfo") {
95 printDebugInfo = true;
96 } else if (option == "disallowExpressionInliningInPorts") {
98 } else if (option == "disallowMuxInlining") {
100 } else if (option == "mitigateVivadoArrayIndexConstPropBug") {
102 } else if (option.consume_front("wireSpillingHeuristic=")) {
103 if (auto heuristic = parseWireSpillingHeuristic(option)) {
104 wireSpillingHeuristicSet |= *heuristic;
105 } else {
106 errorHandler("expected ''spillLargeTermsWithNamehints'");
107 }
108 } else if (option.consume_front("wireSpillingNamehintTermLimit=")) {
109 if (option.getAsInteger(10, wireSpillingNamehintTermLimit)) {
110 errorHandler(
111 "expected integer for number of namehint heurstic term limit");
113 }
114 } else if (option == "emitWireInPorts") {
115 emitWireInPorts = true;
116 } else if (option == "emitBindComments") {
117 emitBindComments = true;
118 } else if (option == "omitVersionComment") {
119 omitVersionComment = true;
120 } else if (option == "caseInsensitiveKeywords") {
122 } else if (option == "emitVerilogLocations") {
124 } else if (option == "fixUpEmptyModules") {
125 fixUpEmptyModules = true;
126 } else {
127 errorHandler(llvm::Twine("unknown style option \'") + option + "\'");
128 // We continue parsing options after a failure.
129 }
130 }
131}
132
133std::string LoweringOptions::toString() const {
134 std::string options = "";
135 // All options should add a trailing comma to simplify the code.
136 if (noAlwaysComb)
137 options += "noAlwaysComb,";
139 options += "exprInEventControl,";
141 options += "disallowPackedArrays,";
143 options += "disallowPackedStructAssignments,";
145 options += "disallowLocalVariables,";
147 options += "verifLabels,";
148 if (explicitBitcast)
149 options += "explicitBitcast,";
151 options += "emitReplicatedOpsToHeader,";
153 options += "locationInfoStyle=wrapInAtSquareBracket,";
155 options += "locationInfoStyle=none,";
157 options += "disallowPortDeclSharing,";
158 if (printDebugInfo)
159 options += "printDebugInfo,";
162 options += "wireSpillingHeuristic=spillLargeTermsWithNamehints,";
164 options += "disallowExpressionInliningInPorts,";
166 options += "disallowMuxInlining,";
168 options += "mitigateVivadoArrayIndexConstPropBug,";
169
171 options += "emittedLineLength=" + std::to_string(emittedLineLength) + ',';
173 options += "maximumNumberOfTermsPerExpression=" +
174 std::to_string(maximumNumberOfTermsPerExpression) + ',';
175 if (emitWireInPorts)
176 options += "emitWireInPorts,";
178 options += "emitBindComments,";
180 options += "omitVersionComment,";
182 options += "caseInsensitiveKeywords,";
184 options += "emitVerilogLocations,";
186 options += "fixUpEmptyModules,";
187
188 // Remove a trailing comma if present.
189 if (!options.empty()) {
190 assert(options.back() == ',' && "all options should add a trailing comma");
191 options.pop_back();
192 }
193 return options;
194}
195
196StringAttr LoweringOptions::getAttributeFrom(ModuleOp module) {
197 return module->getAttrOfType<StringAttr>("circt.loweringOptions");
198}
199
200void LoweringOptions::setAsAttribute(ModuleOp module) {
201 module->setAttr("circt.loweringOptions",
202 StringAttr::get(module.getContext(), toString()));
203}
204
206 if (auto styleAttr = getAttributeFrom(module))
207 parse(styleAttr.getValue(), [&](Twine error) { module.emitError(error); });
208}
assert(baseType &&"element must be base type")
static std::optional< LoweringOptions::LocationInfoStyle > parseLocationInfoStyle(StringRef option)
static std::optional< LoweringOptions::WireSpillingHeuristic > parseWireSpillingHeuristic(StringRef option)
The InstanceGraph op interface, see InstanceGraphInterface.td for more details.
Options which control the emission from CIRCT to Verilog.
bool isWireSpillingHeuristicEnabled(WireSpillingHeuristic heurisic) const
bool noAlwaysComb
If true, emits sv.alwayscomb as Verilog always @(*) statements.
bool mitigateVivadoArrayIndexConstPropBug
If true, every expression used as an array index is driven by a wire, and the wire is marked as (* ke...
bool disallowLocalVariables
If true, do not emit SystemVerilog locally scoped "automatic" or logic declarations - emit top level ...
bool omitVersionComment
If true, do not emit a version comment at the top of each verilog file.
bool enforceVerifLabels
If true, verification statements like assert, assume, and cover will always be emitted with a label.
bool disallowExpressionInliningInPorts
If true, every expression passed to an instance port is driven by a wire.
bool printDebugInfo
Print debug info.
llvm::function_ref< void(llvm::Twine)> ErrorHandlerT
Error callback type used to indicate errors parsing the options string.
unsigned maximumNumberOfTermsPerExpression
void setAsAttribute(mlir::ModuleOp module)
Write the verilog emitter options to a module's attributes.
enum circt::LoweringOptions::LocationInfoStyle locationInfoStyle
bool disallowPortDeclSharing
If true, every port is declared separately (each includes direction and type (e.g....
bool disallowPackedArrays
If true, eliminate packed arrays for tools that don't support them (e.g.
bool explicitBitcast
Add an explicit bitcast for avoiding bitwidth mismatch LINT errors.
bool disallowMuxInlining
If true, every mux expression is spilled to a wire.
bool fixUpEmptyModules
If true, add a dummy wire to empty modules to prevent tools from regarding the module as blackbox.
bool disallowPackedStructAssignments
If true, eliminate packed struct assignments in favor of a wire + assignments to the individual field...
void parse(llvm::StringRef options, ErrorHandlerT callback)
Read in options from a string, overriding only the set options in the string.
static mlir::StringAttr getAttributeFrom(mlir::ModuleOp module)
Return the value of the circt.loweringOptions in the specified module if present, or a null attribute...
bool caseInsensitiveKeywords
If true, then unique names that collide with keywords case insensitively.
void parseFromAttribute(mlir::ModuleOp module)
Load any emitter options from the module.
bool emitWireInPorts
If true, emit wire in port lists rather than nothing.
bool emitReplicatedOpsToHeader
If true, replicated ops are emitted to a header file.
std::string toString() const
Returns a string representation of the options.
LoweringOptions()=default
Create a LoweringOptions with the default values.
bool allowExprInEventControl
If true, expressions are allowed in the sensitivity list of always statements, otherwise they are for...
bool emitVerilogLocations
If true, then update the the mlir to include output verilog locations.
bool emitBindComments
If true, emit a comment wherever an instance wasn't printed, because it's emitted elsewhere as a bind...