From aa0568628ffb373d07dcf01586ae643500509780 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sat, 1 Jun 2019 11:41:34 +0200 Subject: Add writing routing data to json --- json/jsonwrite.cc | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/json/jsonwrite.cc b/json/jsonwrite.cc index f41fbebc..bedb2449 100644 --- a/json/jsonwrite.cc +++ b/json/jsonwrite.cc @@ -48,7 +48,7 @@ std::string get_name(IdString name, Context *ctx) return get_string(name.c_str(ctx)); } -void write_parameters(std::ostream &f, Context *ctx, const std::unordered_map ¶meters, bool for_module=false) +bool write_parameters(std::ostream &f, Context *ctx, const std::unordered_map ¶meters, bool for_module=false) { bool first = true; for (auto ¶m : parameters) { @@ -57,7 +57,27 @@ void write_parameters(std::ostream &f, Context *ctx, const std::unordered_mapwires) { + routing += first2 ? "" : ";"; + routing += ctx->getWireName(item.first).c_str(ctx); + routing += ","; + if (item.second.pip != PipId()) + routing += ctx->getPipName(item.second.pip).c_str(ctx); + first2 = false; + } + + f << stringf("%s\n", first ? "" : ","); + f << stringf(" \"NEXTPNR_ROUTING\": "); + f << get_string(routing); +} + void write_module(std::ostream &f, Context *ctx) { f << stringf(" %s: {\n", get_string("top").c_str()); @@ -128,7 +148,8 @@ void write_module(std::ostream &f, Context *ctx) f << stringf(" \"hide_name\": %s,\n", w->name.c_str(ctx)[0] == '$' ? "1" : "0"); f << stringf(" \"bits\": [ %d ] ,\n", fn(pair.first)); f << stringf(" \"attributes\": {"); - write_parameters(f, ctx, w->attrs); + bool first2 = write_parameters(f, ctx, w->attrs); + write_routing(f, ctx, w.get(), first2); f << stringf("\n }\n"); f << stringf(" }"); first = false; -- cgit v1.2.3