From: Aki Van Ness Date: Tue, 16 Nov 2021 20:25:14 +0000 (-0500) Subject: pass metadata: added the output of parameters, X-Git-Tag: smtlib2-expr-support-on-0.13-old~21 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=afb6c4fbc420d6ae8f0d3991530517a201fa53e3;p=yosys.git pass metadata: added the output of parameters, it's kinda dumb at the moment and needs parsing based on type but it's a start (cherry picked from commit 7a275567df5231673cb8832bb6e97e0aaa2b82d8) --- diff --git a/backends/metadata/metadata.cc b/backends/metadata/metadata.cc index eea8e8338..d5726d4d3 100644 --- a/backends/metadata/metadata.cc +++ b/backends/metadata/metadata.cc @@ -177,13 +177,41 @@ struct MetadataWriter { log_assert(cell != nullptr); - f << stringf(" {\n"); - f << stringf(" \"name\": %s,\n", get_string(RTLIL::unescape_id(cell->name)).c_str()); - f << stringf(" \"attributes\": {\n"); - f << stringf(" },\n"); - f << stringf(" \"parameters\": {\n"); - f << stringf(" },\n"); - f << stringf(" }"); + f << stringf(" {\n"); + f << stringf(" \"name\": %s,\n", get_string(RTLIL::unescape_id(cell->name)).c_str()); + f << stringf(" \"attributes\": {\n"); + + bool first_attr{true}; + for (auto& attr : cell->attributes) { + if (!first_attr) + f << stringf(",\n"); + const auto attr_val = attr.second.decode_string(); + if (attr_val.size() > 0) + f << stringf(" %s: \"%s\"\n", get_string(RTLIL::unescape_id(attr.first)).c_str(), attr_val.c_str()); + else + f << stringf(" %s: true\n", get_string(RTLIL::unescape_id(attr.first)).c_str()); + + first_attr = false; + } + + f << stringf(" },\n"); + f << stringf(" \"parameters\": {\n"); + + bool first_param{true}; + for (auto& param : cell->parameters) { + if (!first_param) + f << stringf(",\n"); + const auto param_val = param.second.decode_string(); + if (param_val.size() > 0) + f << stringf(" %s: \"%s\"\n", get_string(RTLIL::unescape_id(param.first)).c_str(), param_val.c_str()); + else + f << stringf(" %s: true\n", get_string(RTLIL::unescape_id(param.first)).c_str()); + + first_param = false; + } + + f << stringf(" },\n"); + f << stringf(" }"); } };