From e75e495c2bddb62634c6d50f90e09e0ff358faa5 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Sat, 26 Jul 2014 12:22:58 +0200 Subject: Added new RTLIL::Cell port access methods --- kernel/rtlil.cc | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ kernel/rtlil.h | 8 ++++++++ 2 files changed, 71 insertions(+) diff --git a/kernel/rtlil.cc b/kernel/rtlil.cc index 4d0aadbb..27063aea 100644 --- a/kernel/rtlil.cc +++ b/kernel/rtlil.cc @@ -1330,6 +1330,26 @@ RTLIL::Memory::Memory() size = 0; } +void RTLIL::Cell::unset(RTLIL::IdString portname) +{ + connections_.erase(portname); +} + +void RTLIL::Cell::set(RTLIL::IdString portname, RTLIL::SigSpec signal) +{ + connections_[portname] = signal; +} + +RTLIL::SigSpec RTLIL::Cell::get(RTLIL::IdString portname) const +{ + return connections_.at(portname); +} + +const std::map &RTLIL::Cell::connections() +{ + return connections_; +} + void RTLIL::Cell::check() { #ifndef NDEBUG @@ -1338,6 +1358,49 @@ void RTLIL::Cell::check() #endif } +void RTLIL::Cell::fixup_parameters(bool set_a_signed, bool set_b_signed) +{ + if (type[0] != '$' || type.substr(0, 2) == "$_" || type.substr(0, 8) == "$paramod" || + type.substr(0, 9) == "$verific$" || type.substr(0, 7) == "$array:") + return; + + if (type == "$mux" || type == "$pmux" || type == "$safe_pmux") + { + parameters["\\WIDTH"] = SIZE(connections_["\\Y"]); + if (type == "$pmux" || type == "$safe_pmux") + parameters["\\S_WIDTH"] = SIZE(connections_["\\S"]); + check(); + return; + } + + bool signedness_ab = type != "$slice" && type != "$concat"; + + if (connections_.count("\\A")) { + if (signedness_ab) { + if (set_a_signed) + parameters["\\A_SIGNED"] = true; + else if (parameters.count("\\A_SIGNED") == 0) + parameters["\\A_SIGNED"] = false; + } + parameters["\\A_WIDTH"] = SIZE(connections_["\\A"]); + } + + if (connections_.count("\\B")) { + if (signedness_ab) { + if (set_b_signed) + parameters["\\B_SIGNED"] = true; + else if (parameters.count("\\B_SIGNED") == 0) + parameters["\\B_SIGNED"] = false; + } + parameters["\\B_WIDTH"] = SIZE(connections_["\\B"]); + } + + if (connections_.count("\\Y")) + parameters["\\Y_WIDTH"] = SIZE(connections_["\\Y"]); + + check(); +} + RTLIL::SigChunk::SigChunk() { wire = NULL; diff --git a/kernel/rtlil.h b/kernel/rtlil.h index 96bda753..0b92405e 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -484,7 +484,15 @@ public: std::map connections_; std::map parameters; RTLIL_ATTRIBUTE_MEMBERS + + // access cell ports + void unset(RTLIL::IdString portname); + void set(RTLIL::IdString portname, RTLIL::SigSpec signal); + RTLIL::SigSpec get(RTLIL::IdString portname) const; + const std::map &connections(); + void check(); + void fixup_parameters(bool set_a_signed = false, bool set_b_signed = false); template void rewrite_sigspecs(T functor); }; -- cgit v1.2.3