mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 17:44:09 +00:00
rtlil: add AttrObject::{get,set}_string_attribute.
And make {get,set}_src_attribute use those functions.
This commit is contained in:
parent
b4b2345a10
commit
ff7a1a1568
|
@ -289,6 +289,23 @@ bool RTLIL::AttrObject::get_bool_attribute(RTLIL::IdString id) const
|
||||||
return it->second.as_bool();
|
return it->second.as_bool();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void RTLIL::AttrObject::set_string_attribute(RTLIL::IdString id, string value)
|
||||||
|
{
|
||||||
|
if (value.empty())
|
||||||
|
attributes.erase(id);
|
||||||
|
else
|
||||||
|
attributes[id] = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
string RTLIL::AttrObject::get_string_attribute(RTLIL::IdString id) const
|
||||||
|
{
|
||||||
|
std::string value;
|
||||||
|
const auto it = attributes.find(id);
|
||||||
|
if (it != attributes.end())
|
||||||
|
value = it->second.decode_string();
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
void RTLIL::AttrObject::set_strpool_attribute(RTLIL::IdString id, const pool<string> &data)
|
void RTLIL::AttrObject::set_strpool_attribute(RTLIL::IdString id, const pool<string> &data)
|
||||||
{
|
{
|
||||||
string attrval;
|
string attrval;
|
||||||
|
@ -317,23 +334,6 @@ pool<string> RTLIL::AttrObject::get_strpool_attribute(RTLIL::IdString id) const
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
void RTLIL::AttrObject::set_src_attribute(const std::string &src)
|
|
||||||
{
|
|
||||||
if (src.empty())
|
|
||||||
attributes.erase(ID::src);
|
|
||||||
else
|
|
||||||
attributes[ID::src] = src;
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string RTLIL::AttrObject::get_src_attribute() const
|
|
||||||
{
|
|
||||||
std::string src;
|
|
||||||
const auto it = attributes.find(ID::src);
|
|
||||||
if (it != attributes.end())
|
|
||||||
src = it->second.decode_string();
|
|
||||||
return src;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool RTLIL::Selection::selected_module(RTLIL::IdString mod_name) const
|
bool RTLIL::Selection::selected_module(RTLIL::IdString mod_name) const
|
||||||
{
|
{
|
||||||
if (full_selection)
|
if (full_selection)
|
||||||
|
|
|
@ -663,12 +663,19 @@ struct RTLIL::AttrObject
|
||||||
return get_bool_attribute(ID::blackbox) || (!ignore_wb && get_bool_attribute(ID::whitebox));
|
return get_bool_attribute(ID::blackbox) || (!ignore_wb && get_bool_attribute(ID::whitebox));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void set_string_attribute(RTLIL::IdString id, string value);
|
||||||
|
string get_string_attribute(RTLIL::IdString id) const;
|
||||||
|
|
||||||
void set_strpool_attribute(RTLIL::IdString id, const pool<string> &data);
|
void set_strpool_attribute(RTLIL::IdString id, const pool<string> &data);
|
||||||
void add_strpool_attribute(RTLIL::IdString id, const pool<string> &data);
|
void add_strpool_attribute(RTLIL::IdString id, const pool<string> &data);
|
||||||
pool<string> get_strpool_attribute(RTLIL::IdString id) const;
|
pool<string> get_strpool_attribute(RTLIL::IdString id) const;
|
||||||
|
|
||||||
void set_src_attribute(const std::string &src);
|
void set_src_attribute(const std::string &src) {
|
||||||
std::string get_src_attribute() const;
|
set_string_attribute(ID::src, src);
|
||||||
|
}
|
||||||
|
std::string get_src_attribute() const {
|
||||||
|
return get_string_attribute(ID::src);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
struct RTLIL::SigChunk
|
struct RTLIL::SigChunk
|
||||||
|
|
Loading…
Reference in a new issue