diff options
author | whitequark <whitequark@whitequark.org> | 2020-06-09 06:26:02 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-09 06:26:02 +0000 |
commit | 4351194e8ce94e7078b67a20e5fc92777d6cb3e6 (patch) | |
tree | 7d2027cda96eeb6c16506ca8b1c9df2fe475efa7 /kernel/rtlil.cc | |
parent | 83f84afc0b617fe78fb7cfa31fb9d1cd202e22f2 (diff) | |
parent | 53688a24b531adcc99c091f728e9657d16010467 (diff) | |
download | yosys-4351194e8ce94e7078b67a20e5fc92777d6cb3e6.tar.gz yosys-4351194e8ce94e7078b67a20e5fc92777d6cb3e6.tar.bz2 yosys-4351194e8ce94e7078b67a20e5fc92777d6cb3e6.zip |
Merge pull request #2107 from whitequark/flatten-hdlname
flatten: preserve original object names
Diffstat (limited to 'kernel/rtlil.cc')
-rw-r--r-- | kernel/rtlil.cc | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/kernel/rtlil.cc b/kernel/rtlil.cc index 109113370..b876862c8 100644 --- a/kernel/rtlil.cc +++ b/kernel/rtlil.cc @@ -319,7 +319,7 @@ void RTLIL::AttrObject::set_strpool_attribute(RTLIL::IdString id, const pool<str attrval += "|"; attrval += s; } - attributes[id] = RTLIL::Const(attrval); + set_string_attribute(id, attrval); } void RTLIL::AttrObject::add_strpool_attribute(RTLIL::IdString id, const pool<string> &data) @@ -334,11 +334,27 @@ pool<string> RTLIL::AttrObject::get_strpool_attribute(RTLIL::IdString id) const { pool<string> data; if (attributes.count(id) != 0) - for (auto s : split_tokens(attributes.at(id).decode_string(), "|")) + for (auto s : split_tokens(get_string_attribute(id), "|")) data.insert(s); return data; } +void RTLIL::AttrObject::set_hdlname_attribute(const vector<string> &hierarchy) +{ + string attrval; + for (const auto &ident : hierarchy) { + if (!attrval.empty()) + attrval += " "; + attrval += ident; + } + set_string_attribute(ID::hdlname, attrval); +} + +vector<string> RTLIL::AttrObject::get_hdlname_attribute() const +{ + return split_tokens(get_string_attribute(ID::hdlname), " "); +} + bool RTLIL::Selection::selected_module(RTLIL::IdString mod_name) const { if (full_selection) |