aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/rtlil.cc
diff options
context:
space:
mode:
authorJason Lowdermilk <jlowder@chipscan.us>2017-08-30 11:47:06 -0600
committerJason Lowdermilk <jlowder@chipscan.us>2017-08-30 11:47:06 -0600
commit71d43cfc08b1949d5d07d6715107cd87c40e4465 (patch)
tree8fb7118d1af688cf23cb08148b069386107cec37 /kernel/rtlil.cc
parent271e8ba7cdc223ba8ee745ac1a5c837235398c54 (diff)
parentc0034f51e6540ab945e88843bb20035bfa7b333b (diff)
downloadyosys-71d43cfc08b1949d5d07d6715107cd87c40e4465.tar.gz
yosys-71d43cfc08b1949d5d07d6715107cd87c40e4465.tar.bz2
yosys-71d43cfc08b1949d5d07d6715107cd87c40e4465.zip
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'kernel/rtlil.cc')
-rw-r--r--kernel/rtlil.cc16
1 files changed, 16 insertions, 0 deletions
diff --git a/kernel/rtlil.cc b/kernel/rtlil.cc
index 9a97faf45..faddcd994 100644
--- a/kernel/rtlil.cc
+++ b/kernel/rtlil.cc
@@ -234,6 +234,22 @@ pool<string> RTLIL::AttrObject::get_strpool_attribute(RTLIL::IdString id) const
return data;
}
+void RTLIL::AttrObject::set_src_attribute(const std::string &src)
+{
+ if (src.empty())
+ attributes.erase("\\src");
+ else
+ attributes["\\src"] = src;
+}
+
+std::string RTLIL::AttrObject::get_src_attribute() const
+{
+ std::string src;
+ if (attributes.count("\\src"))
+ src = attributes.at("\\src").decode_string();
+ return src;
+}
+
bool RTLIL::Selection::selected_module(RTLIL::IdString mod_name) const
{
if (full_selection)