3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 01:24:10 +00:00

More cleanups related to RTLIL::IdString usage

This commit is contained in:
Clifford Wolf 2014-08-02 13:11:01 +02:00
parent 14412e6c95
commit b9bd22b8c8
33 changed files with 237 additions and 261 deletions

View file

@ -209,7 +209,7 @@ struct BlifDumper
continue; continue;
} }
fprintf(f, ".%s %s", subckt_or_gate(cell->type), cstr(cell->type)); fprintf(f, ".%s %s", subckt_or_gate(cell->type.str()), cstr(cell->type));
for (auto &conn : cell->connections()) for (auto &conn : cell->connections())
for (int i = 0; i < conn.second.size(); i++) { for (int i = 0; i < conn.second.size(); i++) {
if (conn.second.size() == 1) if (conn.second.size() == 1)

View file

@ -428,7 +428,7 @@ struct BtorDumper
{ {
cell_line = ++line_num; cell_line = ++line_num;
bool reduced = (cell->type == "$not" || cell->type == "$neg") ? false : true; bool reduced = (cell->type == "$not" || cell->type == "$neg") ? false : true;
str = stringf ("%d %s %d %d", cell_line, cell_type_translation.at(cell->type).c_str(), reduced?output_width:w, l); str = stringf ("%d %s %d %d", cell_line, cell_type_translation.at(cell->type.str()).c_str(), reduced?output_width:w, l);
fprintf(f, "%s\n", str.c_str()); fprintf(f, "%s\n", str.c_str());
} }
if(output_width < w && (cell->type == "$not" || cell->type == "$neg" || cell->type == "$pos")) if(output_width < w && (cell->type == "$not" || cell->type == "$neg" || cell->type == "$pos"))
@ -487,13 +487,13 @@ struct BtorDumper
int l2 = dump_sigspec(&cell->getPort(RTLIL::IdString("\\B")), l2_width); int l2 = dump_sigspec(&cell->getPort(RTLIL::IdString("\\B")), l2_width);
++line_num; ++line_num;
std::string op = cell_type_translation.at(cell->type); std::string op = cell_type_translation.at(cell->type.str());
if(cell->type == "$lt" || cell->type == "$le" || if(cell->type == "$lt" || cell->type == "$le" ||
cell->type == "$eq" || cell->type == "$ne" || cell->type == "$eqx" || cell->type == "$nex" || cell->type == "$eq" || cell->type == "$ne" || cell->type == "$eqx" || cell->type == "$nex" ||
cell->type == "$ge" || cell->type == "$gt") cell->type == "$ge" || cell->type == "$gt")
{ {
if(l1_signed) if(l1_signed)
op = s_cell_type_translation.at(cell->type); op = s_cell_type_translation.at(cell->type.str());
} }
str = stringf ("%d %s %d %d %d", line_num, op.c_str(), output_width, l1, l2); str = stringf ("%d %s %d %d %d", line_num, op.c_str(), output_width, l1, l2);
@ -521,9 +521,9 @@ struct BtorDumper
int l2 = dump_sigspec(&cell->getPort(RTLIL::IdString("\\B")), l2_width); int l2 = dump_sigspec(&cell->getPort(RTLIL::IdString("\\B")), l2_width);
++line_num; ++line_num;
std::string op = cell_type_translation.at(cell->type); std::string op = cell_type_translation.at(cell->type.str());
if(cell->type == "$div" && l1_signed) if(cell->type == "$div" && l1_signed)
op = s_cell_type_translation.at(cell->type); op = s_cell_type_translation.at(cell->type.str());
else if(cell->type == "$mod") else if(cell->type == "$mod")
{ {
if(l1_signed) if(l1_signed)
@ -555,7 +555,7 @@ struct BtorDumper
int l1 = dump_sigspec(&cell->getPort(RTLIL::IdString("\\A")), l1_width); int l1 = dump_sigspec(&cell->getPort(RTLIL::IdString("\\A")), l1_width);
int l2 = dump_sigspec(&cell->getPort(RTLIL::IdString("\\B")), ceil(log(l1_width)/log(2))); int l2 = dump_sigspec(&cell->getPort(RTLIL::IdString("\\B")), ceil(log(l1_width)/log(2)));
int cell_output = ++line_num; int cell_output = ++line_num;
str = stringf ("%d %s %d %d %d", line_num, cell_type_translation.at(cell->type).c_str(), l1_width, l1, l2); str = stringf ("%d %s %d %d %d", line_num, cell_type_translation.at(cell->type.str()).c_str(), l1_width, l1, l2);
fprintf(f, "%s\n", str.c_str()); fprintf(f, "%s\n", str.c_str());
if(l2_width > ceil(log(l1_width)/log(2))) if(l2_width > ceil(log(l1_width)/log(2)))
@ -635,7 +635,7 @@ struct BtorDumper
int s = dump_sigspec(&cell->getPort(RTLIL::IdString("\\S")), 1); int s = dump_sigspec(&cell->getPort(RTLIL::IdString("\\S")), 1);
++line_num; ++line_num;
str = stringf ("%d %s %d %d %d %d", str = stringf ("%d %s %d %d %d %d",
line_num, cell_type_translation.at(cell->type).c_str(), output_width, s, l2, l1);//if s is 0 then l1, if s is 1 then l2 //according to the implementation of mux cell line_num, cell_type_translation.at(cell->type.str()).c_str(), output_width, s, l2, l1);//if s is 0 then l1, if s is 1 then l2 //according to the implementation of mux cell
fprintf(f, "%s\n", str.c_str()); fprintf(f, "%s\n", str.c_str());
line_ref[cell->name]=line_num; line_ref[cell->name]=line_num;
} }
@ -697,7 +697,7 @@ struct BtorDumper
fprintf(f, "%s\n", str.c_str()); fprintf(f, "%s\n", str.c_str());
} }
++line_num; ++line_num;
str = stringf ("%d %s %d %d %d", line_num, cell_type_translation.at(cell->type).c_str(), str = stringf ("%d %s %d %d %d", line_num, cell_type_translation.at(cell->type.str()).c_str(),
output_width, reg, next); output_width, reg, next);
fprintf(f, "%s\n", str.c_str()); fprintf(f, "%s\n", str.c_str());
} }
@ -768,7 +768,7 @@ struct BtorDumper
log_assert(output->size() == output_width); log_assert(output->size() == output_width);
int offset = cell->parameters.at(RTLIL::IdString("\\OFFSET")).as_int(); int offset = cell->parameters.at(RTLIL::IdString("\\OFFSET")).as_int();
++line_num; ++line_num;
str = stringf("%d %s %d %d %d %d", line_num, cell_type_translation.at(cell->type).c_str(), output_width, input_line, output_width+offset-1, offset); str = stringf("%d %s %d %d %d %d", line_num, cell_type_translation.at(cell->type.str()).c_str(), output_width, input_line, output_width+offset-1, offset);
fprintf(f, "%s\n", str.c_str()); fprintf(f, "%s\n", str.c_str());
line_ref[cell->name]=line_num; line_ref[cell->name]=line_num;
} }
@ -784,7 +784,7 @@ struct BtorDumper
log_assert(input_b->size() == input_b_width); log_assert(input_b->size() == input_b_width);
int input_b_line = dump_sigspec(input_b, input_b_width); int input_b_line = dump_sigspec(input_b, input_b_width);
++line_num; ++line_num;
str = stringf("%d %s %d %d %d", line_num, cell_type_translation.at(cell->type).c_str(), input_a_width+input_b_width, str = stringf("%d %s %d %d %d", line_num, cell_type_translation.at(cell->type.str()).c_str(), input_a_width+input_b_width,
input_a_line, input_b_line); input_a_line, input_b_line);
fprintf(f, "%s\n", str.c_str()); fprintf(f, "%s\n", str.c_str());
line_ref[cell->name]=line_num; line_ref[cell->name]=line_num;
@ -888,7 +888,7 @@ struct BtorDumper
inputs[wire->port_id] = wire; inputs[wire->port_id] = wire;
if (wire->port_output) { if (wire->port_output) {
outputs[wire->port_id] = wire; outputs[wire->port_id] = wire;
if (wire->name.find("safety") != std::string::npos ) if (wire->name.str().find("safety") != std::string::npos )
safety.push_back(wire); safety.push_back(wire);
} }
} }

View file

@ -108,7 +108,7 @@ struct EdifBackend : public Backend {
log_header("Executing EDIF backend.\n"); log_header("Executing EDIF backend.\n");
std::string top_module_name; std::string top_module_name;
std::map<std::string, std::set<std::string>> lib_cell_ports; std::map<RTLIL::IdString, std::set<RTLIL::IdString>> lib_cell_ports;
CellTypes ct(design); CellTypes ct(design);
EdifNames edif_names; EdifNames edif_names;

View file

@ -39,14 +39,14 @@ namespace {
bool norename, noattr, attr2comment, noexpr; bool norename, noattr, attr2comment, noexpr;
int auto_name_counter, auto_name_offset, auto_name_digits; int auto_name_counter, auto_name_offset, auto_name_digits;
std::map<std::string, int> auto_name_map; std::map<RTLIL::IdString, int> auto_name_map;
std::set<std::string> reg_wires; std::set<RTLIL::IdString> reg_wires;
CellTypes reg_ct; CellTypes reg_ct;
RTLIL::Module *active_module; RTLIL::Module *active_module;
void reset_auto_counter_id(const std::string &id, bool may_rename) void reset_auto_counter_id(RTLIL::IdString id, bool may_rename)
{ {
const char *str = id.c_str(); const char *str = id.c_str();
@ -94,7 +94,7 @@ void reset_auto_counter(RTLIL::Module *module)
log(" renaming `%s' to `_%0*d_'.\n", it->first.c_str(), auto_name_digits, auto_name_offset + it->second); log(" renaming `%s' to `_%0*d_'.\n", it->first.c_str(), auto_name_digits, auto_name_offset + it->second);
} }
std::string id(std::string internal_id, bool may_rename = true) std::string id(RTLIL::IdString internal_id, bool may_rename = true)
{ {
const char *str = internal_id.c_str(); const char *str = internal_id.c_str();
bool do_escape = false; bool do_escape = false;
@ -324,7 +324,7 @@ std::string cellname(RTLIL::Cell *cell)
if (wire->name[0] != '\\') if (wire->name[0] != '\\')
goto no_special_reg_name; goto no_special_reg_name;
std::string cell_name = wire->name; std::string cell_name = wire->name.str();
size_t pos = cell_name.find('['); size_t pos = cell_name.find('[');
if (pos != std::string::npos) if (pos != std::string::npos)
@ -715,7 +715,7 @@ void dump_cell(FILE *f, std::string indent, RTLIL::Cell *cell)
fprintf(f, " %s (", cell_name.c_str()); fprintf(f, " %s (", cell_name.c_str());
bool first_arg = true; bool first_arg = true;
std::set<std::string> numbered_ports; std::set<RTLIL::IdString> numbered_ports;
for (int i = 1; true; i++) { for (int i = 1; true; i++) {
char str[16]; char str[16];
snprintf(str, 16, "$%d", i); snprintf(str, 16, "$%d", i);

View file

@ -48,7 +48,7 @@ static RTLIL::SigSpec uniop2rtlil(AstNode *that, std::string type, int result_wi
RTLIL::Cell *cell = current_module->addCell(sstr.str(), type); RTLIL::Cell *cell = current_module->addCell(sstr.str(), type);
cell->attributes["\\src"] = stringf("%s:%d", that->filename.c_str(), that->linenum); cell->attributes["\\src"] = stringf("%s:%d", that->filename.c_str(), that->linenum);
RTLIL::Wire *wire = current_module->addWire(cell->name + "_Y", result_width); RTLIL::Wire *wire = current_module->addWire(cell->name.str() + "_Y", result_width);
wire->attributes["\\src"] = stringf("%s:%d", that->filename.c_str(), that->linenum); wire->attributes["\\src"] = stringf("%s:%d", that->filename.c_str(), that->linenum);
if (gen_attributes) if (gen_attributes)
@ -82,7 +82,7 @@ static void widthExtend(AstNode *that, RTLIL::SigSpec &sig, int width, bool is_s
RTLIL::Cell *cell = current_module->addCell(sstr.str(), celltype); RTLIL::Cell *cell = current_module->addCell(sstr.str(), celltype);
cell->attributes["\\src"] = stringf("%s:%d", that->filename.c_str(), that->linenum); cell->attributes["\\src"] = stringf("%s:%d", that->filename.c_str(), that->linenum);
RTLIL::Wire *wire = current_module->addWire(cell->name + "_Y", width); RTLIL::Wire *wire = current_module->addWire(cell->name.str() + "_Y", width);
wire->attributes["\\src"] = stringf("%s:%d", that->filename.c_str(), that->linenum); wire->attributes["\\src"] = stringf("%s:%d", that->filename.c_str(), that->linenum);
if (that != NULL) if (that != NULL)
@ -111,7 +111,7 @@ static RTLIL::SigSpec binop2rtlil(AstNode *that, std::string type, int result_wi
RTLIL::Cell *cell = current_module->addCell(sstr.str(), type); RTLIL::Cell *cell = current_module->addCell(sstr.str(), type);
cell->attributes["\\src"] = stringf("%s:%d", that->filename.c_str(), that->linenum); cell->attributes["\\src"] = stringf("%s:%d", that->filename.c_str(), that->linenum);
RTLIL::Wire *wire = current_module->addWire(cell->name + "_Y", result_width); RTLIL::Wire *wire = current_module->addWire(cell->name.str() + "_Y", result_width);
wire->attributes["\\src"] = stringf("%s:%d", that->filename.c_str(), that->linenum); wire->attributes["\\src"] = stringf("%s:%d", that->filename.c_str(), that->linenum);
for (auto &attr : that->attributes) { for (auto &attr : that->attributes) {
@ -146,7 +146,7 @@ static RTLIL::SigSpec mux2rtlil(AstNode *that, const RTLIL::SigSpec &cond, const
RTLIL::Cell *cell = current_module->addCell(sstr.str(), "$mux"); RTLIL::Cell *cell = current_module->addCell(sstr.str(), "$mux");
cell->attributes["\\src"] = stringf("%s:%d", that->filename.c_str(), that->linenum); cell->attributes["\\src"] = stringf("%s:%d", that->filename.c_str(), that->linenum);
RTLIL::Wire *wire = current_module->addWire(cell->name + "_Y", left.size()); RTLIL::Wire *wire = current_module->addWire(cell->name.str() + "_Y", left.size());
wire->attributes["\\src"] = stringf("%s:%d", that->filename.c_str(), that->linenum); wire->attributes["\\src"] = stringf("%s:%d", that->filename.c_str(), that->linenum);
for (auto &attr : that->attributes) { for (auto &attr : that->attributes) {
@ -295,7 +295,7 @@ struct AST_INTERNAL::ProcessGenerator
do { do {
wire_name = stringf("$%d%s[%d:%d]", new_temp_count[chunk.wire]++, wire_name = stringf("$%d%s[%d:%d]", new_temp_count[chunk.wire]++,
chunk.wire->name.c_str(), chunk.width+chunk.offset-1, chunk.offset);; chunk.wire->name.c_str(), chunk.width+chunk.offset-1, chunk.offset);;
if (chunk.wire->name.find('$') != std::string::npos) if (chunk.wire->name.str().find('$') != std::string::npos)
wire_name += stringf("$%d", autoidx++); wire_name += stringf("$%d", autoidx++);
} while (current_module->wires_.count(wire_name) > 0); } while (current_module->wires_.count(wire_name) > 0);
@ -1196,7 +1196,7 @@ RTLIL::SigSpec AstNode::genRTLIL(int width_hint, bool sign_hint)
RTLIL::Cell *cell = current_module->addCell(sstr.str(), "$memrd"); RTLIL::Cell *cell = current_module->addCell(sstr.str(), "$memrd");
cell->attributes["\\src"] = stringf("%s:%d", filename.c_str(), linenum); cell->attributes["\\src"] = stringf("%s:%d", filename.c_str(), linenum);
RTLIL::Wire *wire = current_module->addWire(cell->name + "_DATA", current_module->memories[str]->width); RTLIL::Wire *wire = current_module->addWire(cell->name.str() + "_DATA", current_module->memories[str]->width);
wire->attributes["\\src"] = stringf("%s:%d", filename.c_str(), linenum); wire->attributes["\\src"] = stringf("%s:%d", filename.c_str(), linenum);
int addr_bits = 1; int addr_bits = 1;

View file

@ -1998,7 +1998,7 @@ void RTLIL::SigSpec::hash() const
for (auto &v : c.data.bits) for (auto &v : c.data.bits)
DJB2(that->hash_, v); DJB2(that->hash_, v);
} else { } else {
for (auto &v : c.wire->name) for (auto &v : c.wire->name.str())
DJB2(that->hash_, v); DJB2(that->hash_, v);
DJB2(that->hash_, c.offset); DJB2(that->hash_, c.offset);
DJB2(that->hash_, c.width); DJB2(that->hash_, c.width);

View file

@ -72,69 +72,42 @@ namespace RTLIL
typedef std::pair<SigSpec, SigSpec> SigSig; typedef std::pair<SigSpec, SigSpec> SigSig;
#if 1 struct IdString
struct IdString : public std::string { {
IdString() { } private:
IdString(std::string str) : std::string(str) { std::string str_;
check();
} public:
IdString(const char *s) : std::string(s) { IdString() : str_() { }
check(); IdString(const char *str) : str_(str) { }
} IdString(const IdString &str) : str_(str.str_) { }
IdString &operator=(const std::string &str) { IdString(const std::string &str) : str_(str) { }
std::string::operator=(str);
check(); void operator=(const char *rhs) { str_ = rhs; }
return *this; void operator=(const IdString &rhs) { str_ = rhs.str_; }
} void operator=(const std::string &rhs) { str_ = rhs; }
IdString &operator=(const char *s) {
std::string::operator=(s); const std::string& str() const { return str_; }
check();
return *this; // The methods below are just convinience functions for better compatibility
} // with std::string. Except clear() they all just deligate to std::string.
bool operator<(const IdString &rhs) {
check(), rhs.check(); operator const char*() const { return str().c_str(); }
return std::string(*this) < std::string(rhs);
} bool operator<(const IdString &rhs) const { return str() < rhs.str(); }
void check() const { bool operator==(const IdString &rhs) const { return str() == rhs.str(); }
log_assert(empty() || (size() >= 2 && (at(0) == '$' || at(0) == '\\'))); bool operator!=(const IdString &rhs) const { return str() != rhs.str(); }
}
const std::string& str() const { bool operator==(const char *rhs) const { return str() == rhs; }
return *this; bool operator!=(const char *rhs) const { return str() != rhs; }
}
char at(size_t i) const { return str().at(i); }
const char*c_str() const { return str().c_str(); }
std::string substr(size_t pos = 0, size_t len = std::string::npos) const { return str().substr(pos, len); }
size_t size() const { return str().size(); }
bool empty() const { return str().empty(); }
void clear() { *this = IdString(); }
}; };
#else
struct IdString {
IdString();
IdString(const char *str);
IdString(const IdString &str);
IdString(const std::string &str);
void operator=(const char *rhs);
void operator=(const IdString &rhs);
void operator=(const std::string &rhs);
operator const char*() const;
const std::string& str() const;
bool operator<(const IdString &rhs) const;
bool operator==(const IdString &rhs) const;
bool operator!=(const IdString &rhs) const;
bool operator==(const char *rhs) const;
bool operator!=(const char *rhs) const;
std::string operator+(const char *other) const;
std::string::const_iterator begin() const;
std::string::const_iterator end() const;
char at(int i) const;
const char*c_str() const;
size_t find(char c) const;
std::string substr(size_t pos = 0, size_t len = std::string::npos) const;
size_t size() const;
bool empty() const;
void clear();
};
#endif
static inline std::string escape_id(std::string str) { static inline std::string escape_id(std::string str) {
if (str.size() > 0 && str[0] != '\\' && str[0] != '$') if (str.size() > 0 && str[0] != '\\' && str[0] != '$')

View file

@ -30,8 +30,8 @@ struct ConnwrappersWorker
bool is_signed; bool is_signed;
}; };
std::set<std::string> decl_celltypes; std::set<RTLIL::IdString> decl_celltypes;
std::map<std::pair<std::string, std::string>, portdecl_t> decls; std::map<std::pair<RTLIL::IdString, RTLIL::IdString>, portdecl_t> decls;
void add_port(std::string celltype, std::string portname, std::string widthparam, std::string signparam) void add_port(std::string celltype, std::string portname, std::string widthparam, std::string signparam)
{ {
@ -76,7 +76,7 @@ struct ConnwrappersWorker
for (auto &conn : cell->connections()) for (auto &conn : cell->connections())
{ {
std::pair<std::string, std::string> key(cell->type, conn.first); std::pair<RTLIL::IdString, RTLIL::IdString> key(cell->type, conn.first);
if (!decls.count(key)) if (!decls.count(key))
continue; continue;

View file

@ -111,7 +111,7 @@ struct ShowWorker
return stringf("style=\"setlinewidth(3)\", label=\"<%d>\"", bits); return stringf("style=\"setlinewidth(3)\", label=\"<%d>\"", bits);
} }
const char *findColor(std::string member_name) const char *findColor(RTLIL::IdString member_name)
{ {
for (auto &s : color_selections) for (auto &s : color_selections)
if (s.second.selected_member(module->name, member_name)) { if (s.second.selected_member(module->name, member_name)) {
@ -121,20 +121,22 @@ struct ShowWorker
return ""; return "";
} }
const char *findLabel(std::string member_name) const char *findLabel(RTLIL::IdString member_name)
{ {
for (auto &s : label_selections) for (auto &s : label_selections)
if (s.second.selected_member(module->name, RTLIL::escape_id(member_name))) if (s.second.selected_member(module->name, member_name))
return escape(s.first); return escape(s.first);
return escape(member_name, true); return escape(member_name, true);
} }
const char *escape(std::string id, bool is_name = false) const char *escape(RTLIL::IdString id, bool is_name = false)
{ {
if (id.size() == 0) std::string id_str = id.str();
if (id_str.size() == 0)
return ""; return "";
if (id[0] == '$' && is_name) { if (id_str[0] == '$' && is_name) {
if (enumerateIds) { if (enumerateIds) {
if (autonames.count(id) == 0) { if (autonames.count(id) == 0) {
autonames[id] = autonames.size() + 1; autonames[id] = autonames.size() + 1;
@ -142,17 +144,17 @@ struct ShowWorker
} }
id = stringf("_%d_", autonames[id]); id = stringf("_%d_", autonames[id]);
} else if (abbreviateIds) { } else if (abbreviateIds) {
const char *p = id.c_str(); const char *p = id_str.c_str();
const char *q = strrchr(p, '$'); const char *q = strrchr(p, '$');
id = std::string(q); id_str = std::string(q);
} }
} }
if (id[0] == '\\') if (id_str[0] == '\\')
id = id.substr(1); id_str = id_str.substr(1);
std::string str; std::string str;
for (char ch : id) { for (char ch : id_str) {
if (ch == '\\' || ch == '"') if (ch == '\\' || ch == '"')
str += "\\"; str += "\\";
str += ch; str += ch;

View file

@ -33,8 +33,8 @@ struct SpliceWorker
bool sel_by_wire; bool sel_by_wire;
bool sel_any_bit; bool sel_any_bit;
bool no_outputs; bool no_outputs;
std::set<std::string> ports; std::set<RTLIL::IdString> ports;
std::set<std::string> no_ports; std::set<RTLIL::IdString> no_ports;
CellTypes ct; CellTypes ct;
SigMap sigmap; SigMap sigmap;
@ -224,7 +224,7 @@ struct SpliceWorker
for (auto &it : rework_wires) for (auto &it : rework_wires)
{ {
std::string orig_name = it.first->name; RTLIL::IdString orig_name = it.first->name;
module->rename(it.first, NEW_ID); module->rename(it.first, NEW_ID);
RTLIL::Wire *new_port = module->addWire(orig_name, it.first); RTLIL::Wire *new_port = module->addWire(orig_name, it.first);
@ -283,7 +283,7 @@ struct SplicePass : public Pass {
bool sel_by_wire = false; bool sel_by_wire = false;
bool sel_any_bit = false; bool sel_any_bit = false;
bool no_outputs = false; bool no_outputs = false;
std::set<std::string> ports, no_ports; std::set<RTLIL::IdString> ports, no_ports;
size_t argidx; size_t argidx;
for (argidx = 1; argidx < args.size(); argidx++) { for (argidx = 1; argidx < args.size(); argidx++) {

View file

@ -28,7 +28,7 @@ struct SplitnetsWorker
void append_wire(RTLIL::Module *module, RTLIL::Wire *wire, int offset, int width, std::string format) void append_wire(RTLIL::Module *module, RTLIL::Wire *wire, int offset, int width, std::string format)
{ {
std::string new_wire_name = wire->name; std::string new_wire_name = wire->name.str();
if (format.size() > 0) if (format.size() > 0)
new_wire_name += format.substr(0, 1); new_wire_name += format.substr(0, 1);

View file

@ -26,7 +26,7 @@
static RTLIL::Module *module; static RTLIL::Module *module;
static SigMap assign_map; static SigMap assign_map;
typedef std::pair<RTLIL::Cell*,std::string> sig2driver_entry_t; typedef std::pair<RTLIL::Cell*, RTLIL::IdString> sig2driver_entry_t;
static SigSet<sig2driver_entry_t> sig2driver, sig2user; static SigSet<sig2driver_entry_t> sig2driver, sig2user;
static std::set<RTLIL::Cell*> muxtree_cells; static std::set<RTLIL::Cell*> muxtree_cells;
static SigPool sig_at_port; static SigPool sig_at_port;

View file

@ -62,7 +62,7 @@ void write_kiss2(struct RTLIL::Module *module, struct RTLIL::Cell *cell, std::st
} }
else { else {
kiss_name.assign(module->name); kiss_name.assign(module->name);
kiss_name.append('-' + cell->name + ".kiss2"); kiss_name.append('-' + cell->name.str() + ".kiss2");
} }
log("\n"); log("\n");

View file

@ -31,7 +31,7 @@
static RTLIL::Module *module; static RTLIL::Module *module;
static SigMap assign_map; static SigMap assign_map;
typedef std::pair<std::string, std::string> sig2driver_entry_t; typedef std::pair<RTLIL::IdString, RTLIL::IdString> sig2driver_entry_t;
static SigSet<sig2driver_entry_t> sig2driver, sig2trigger; static SigSet<sig2driver_entry_t> sig2driver, sig2trigger;
static bool find_states(RTLIL::SigSpec sig, const RTLIL::SigSpec &dff_out, RTLIL::SigSpec &ctrl, std::map<RTLIL::Const, int> &states, RTLIL::Const *reset_state = NULL) static bool find_states(RTLIL::SigSpec sig, const RTLIL::SigSpec &dff_out, RTLIL::SigSpec &ctrl, std::map<RTLIL::Const, int> &states, RTLIL::Const *reset_state = NULL)
@ -277,7 +277,7 @@ static void extract_fsm(RTLIL::Wire *wire)
fsm_cell->parameters["\\ARST_POLARITY"] = RTLIL::Const(arst_polarity ? 1 : 0, 1); fsm_cell->parameters["\\ARST_POLARITY"] = RTLIL::Const(arst_polarity ? 1 : 0, 1);
fsm_cell->setPort("\\CTRL_IN", ctrl_in); fsm_cell->setPort("\\CTRL_IN", ctrl_in);
fsm_cell->setPort("\\CTRL_OUT", ctrl_out); fsm_cell->setPort("\\CTRL_OUT", ctrl_out);
fsm_cell->parameters["\\NAME"] = RTLIL::Const(wire->name); fsm_cell->parameters["\\NAME"] = RTLIL::Const(wire->name.str());
fsm_cell->attributes = wire->attributes; fsm_cell->attributes = wire->attributes;
fsm_data.copy_to_cell(fsm_cell); fsm_data.copy_to_cell(fsm_cell);

View file

@ -35,7 +35,7 @@ namespace {
static void generate(RTLIL::Design *design, const std::vector<std::string> &celltypes, const std::vector<generate_port_decl_t> &portdecls) static void generate(RTLIL::Design *design, const std::vector<std::string> &celltypes, const std::vector<generate_port_decl_t> &portdecls)
{ {
std::set<std::string> found_celltypes; std::set<RTLIL::IdString> found_celltypes;
for (auto i1 : design->modules_) for (auto i1 : design->modules_)
for (auto i2 : i1.second->cells_) for (auto i2 : i1.second->cells_)
@ -52,9 +52,9 @@ static void generate(RTLIL::Design *design, const std::vector<std::string> &cell
for (auto &celltype : found_celltypes) for (auto &celltype : found_celltypes)
{ {
std::set<std::string> portnames; std::set<RTLIL::IdString> portnames;
std::set<std::string> parameters; std::set<RTLIL::IdString> parameters;
std::map<std::string, int> portwidths; std::map<RTLIL::IdString, int> portwidths;
log("Generate module for cell type %s:\n", celltype.c_str()); log("Generate module for cell type %s:\n", celltype.c_str());
for (auto i1 : design->modules_) for (auto i1 : design->modules_)
@ -94,7 +94,7 @@ static void generate(RTLIL::Design *design, const std::vector<std::string> &cell
} }
while (portnames.size() > 0) { while (portnames.size() > 0) {
std::string portname = *portnames.begin(); RTLIL::IdString portname = *portnames.begin();
for (auto &decl : portdecls) for (auto &decl : portdecls)
if (decl.index == 0 && !fnmatch(decl.portname.c_str(), RTLIL::unescape_id(portname).c_str(), FNM_NOESCAPE)) { if (decl.index == 0 && !fnmatch(decl.portname.c_str(), RTLIL::unescape_id(portname).c_str(), FNM_NOESCAPE)) {
generate_port_decl_t d = decl; generate_port_decl_t d = decl;
@ -144,20 +144,20 @@ static bool expand_module(RTLIL::Design *design, RTLIL::Module *module, bool fla
RTLIL::Cell *cell = cell_it.second; RTLIL::Cell *cell = cell_it.second;
if (cell->type.substr(0, 7) == "$array:") { if (cell->type.substr(0, 7) == "$array:") {
int pos_idx = cell->type.find_first_of(':'); int pos_idx = cell->type.str().find_first_of(':');
int pos_num = cell->type.find_first_of(':', pos_idx + 1); int pos_num = cell->type.str().find_first_of(':', pos_idx + 1);
int pos_type = cell->type.find_first_of(':', pos_num + 1); int pos_type = cell->type.str().find_first_of(':', pos_num + 1);
int idx = atoi(cell->type.substr(pos_idx + 1, pos_num).c_str()); int idx = atoi(cell->type.str().substr(pos_idx + 1, pos_num).c_str());
int num = atoi(cell->type.substr(pos_num + 1, pos_type).c_str()); int num = atoi(cell->type.str().substr(pos_num + 1, pos_type).c_str());
array_cells[cell] = std::pair<int, int>(idx, num); array_cells[cell] = std::pair<int, int>(idx, num);
cell->type = cell->type.substr(pos_type + 1); cell->type = cell->type.str().substr(pos_type + 1);
} }
if (design->modules_.count(cell->type) == 0) if (design->modules_.count(cell->type) == 0)
{ {
if (design->modules_.count("$abstract" + cell->type)) if (design->modules_.count("$abstract" + cell->type.str()))
{ {
cell->type = design->modules_.at("$abstract" + cell->type)->derive(design, cell->parameters); cell->type = design->modules_.at("$abstract" + cell->type.str())->derive(design, cell->parameters);
cell->parameters.clear(); cell->parameters.clear();
did_something = true; did_something = true;
continue; continue;
@ -220,7 +220,7 @@ static bool expand_module(RTLIL::Design *design, RTLIL::Module *module, bool fla
for (auto &conn : cell->connections_) { for (auto &conn : cell->connections_) {
int conn_size = conn.second.size(); int conn_size = conn.second.size();
std::string portname = conn.first; RTLIL::IdString portname = conn.first;
if (portname.substr(0, 1) == "$") { if (portname.substr(0, 1) == "$") {
int port_id = atoi(portname.substr(1).c_str()); int port_id = atoi(portname.substr(1).c_str());
for (auto &wire_it : mod->wires_) for (auto &wire_it : mod->wires_)
@ -447,7 +447,7 @@ struct HierarchyPass : public Pass {
bool did_something_once = false; bool did_something_once = false;
while (did_something) { while (did_something) {
did_something = false; did_something = false;
std::vector<std::string> modnames; std::vector<RTLIL::IdString> modnames;
modnames.reserve(design->modules_.size()); modnames.reserve(design->modules_.size());
for (auto &mod_it : design->modules_) for (auto &mod_it : design->modules_)
modnames.push_back(mod_it.first); modnames.push_back(mod_it.first);

View file

@ -108,7 +108,7 @@ struct SubmodWorker
design->add(new_mod); design->add(new_mod);
int port_counter = 1, auto_name_counter = 1; int port_counter = 1, auto_name_counter = 1;
std::set<std::string> all_wire_names; std::set<RTLIL::IdString> all_wire_names;
for (auto &it : wire_flags) { for (auto &it : wire_flags) {
all_wire_names.insert(it.first->name); all_wire_names.insert(it.first->name);
} }
@ -134,7 +134,7 @@ struct SubmodWorker
if (flags.is_int_driven && flags.is_ext_driven) if (flags.is_int_driven && flags.is_ext_driven)
new_wire_port_input = true, new_wire_port_output = true; new_wire_port_input = true, new_wire_port_output = true;
std::string new_wire_name = wire->name; std::string new_wire_name = wire->name.str();
if (new_wire_port_input || new_wire_port_output) { if (new_wire_port_input || new_wire_port_output) {
while (new_wire_name[0] == '$') { while (new_wire_name[0] == '$') {
std::string next_wire_name = stringf("\\n%d", auto_name_counter++); std::string next_wire_name = stringf("\\n%d", auto_name_counter++);
@ -228,7 +228,7 @@ struct SubmodWorker
if (submodules.count(submod_str) == 0) { if (submodules.count(submod_str) == 0) {
submodules[submod_str].name = submod_str; submodules[submod_str].name = submod_str;
submodules[submod_str].full_name = module->name + "_" + submod_str; submodules[submod_str].full_name = module->name.str() + "_" + submod_str;
while (design->modules_.count(submodules[submod_str].full_name) != 0 || while (design->modules_.count(submodules[submod_str].full_name) != 0 ||
module->count_id(submodules[submod_str].full_name) != 0) module->count_id(submodules[submod_str].full_name) != 0)
submodules[submod_str].full_name += "_"; submodules[submod_str].full_name += "_";
@ -306,12 +306,12 @@ struct SubmodPass : public Pass {
Pass::call(design, "opt_clean"); Pass::call(design, "opt_clean");
log_header("Continuing SUBMOD pass.\n"); log_header("Continuing SUBMOD pass.\n");
std::set<std::string> handled_modules; std::set<RTLIL::IdString> handled_modules;
bool did_something = true; bool did_something = true;
while (did_something) { while (did_something) {
did_something = false; did_something = false;
std::vector<std::string> queued_modules; std::vector<RTLIL::IdString> queued_modules;
for (auto &mod_it : design->modules_) for (auto &mod_it : design->modules_)
if (handled_modules.count(mod_it.first) == 0 && design->selected_whole_module(mod_it.first)) if (handled_modules.count(mod_it.first) == 0 && design->selected_whole_module(mod_it.first))
queued_modules.push_back(mod_it.first); queued_modules.push_back(mod_it.first);

View file

@ -62,7 +62,7 @@ static void handle_memory(RTLIL::Module *module, RTLIL::Memory *memory)
for (auto &cell_it : module->cells_) { for (auto &cell_it : module->cells_) {
RTLIL::Cell *cell = cell_it.second; RTLIL::Cell *cell = cell_it.second;
if ((cell->type == "$memwr" || cell->type == "$memrd") && cell->parameters["\\MEMID"].decode_string() == memory->name) if ((cell->type == "$memwr" || cell->type == "$memrd") && memory->name == cell->parameters["\\MEMID"].decode_string())
memcells.push_back(cell); memcells.push_back(cell);
} }
@ -70,7 +70,7 @@ static void handle_memory(RTLIL::Module *module, RTLIL::Memory *memory)
for (auto cell : memcells) for (auto cell : memcells)
{ {
if (cell->type == "$memwr" && cell->parameters["\\MEMID"].decode_string() == memory->name) if (cell->type == "$memwr" && memory->name == cell->parameters["\\MEMID"].decode_string())
{ {
wr_ports++; wr_ports++;
del_cells.push_back(cell); del_cells.push_back(cell);
@ -97,7 +97,7 @@ static void handle_memory(RTLIL::Module *module, RTLIL::Memory *memory)
sig_wr_en.append(en); sig_wr_en.append(en);
} }
if (cell->type == "$memrd" && cell->parameters["\\MEMID"].decode_string() == memory->name) if (cell->type == "$memrd" && memory->name == cell->parameters["\\MEMID"].decode_string())
{ {
rd_ports++; rd_ports++;
del_cells.push_back(cell); del_cells.push_back(cell);
@ -129,7 +129,7 @@ static void handle_memory(RTLIL::Module *module, RTLIL::Memory *memory)
sstr << "$mem$" << memory->name << "$" << (autoidx++); sstr << "$mem$" << memory->name << "$" << (autoidx++);
RTLIL::Cell *mem = module->addCell(sstr.str(), "$mem"); RTLIL::Cell *mem = module->addCell(sstr.str(), "$mem");
mem->parameters["\\MEMID"] = RTLIL::Const(memory->name); mem->parameters["\\MEMID"] = RTLIL::Const(memory->name.str());
mem->parameters["\\WIDTH"] = RTLIL::Const(memory->width); mem->parameters["\\WIDTH"] = RTLIL::Const(memory->width);
mem->parameters["\\OFFSET"] = RTLIL::Const(memory->start_offset); mem->parameters["\\OFFSET"] = RTLIL::Const(memory->start_offset);
mem->parameters["\\SIZE"] = RTLIL::Const(memory->size); mem->parameters["\\SIZE"] = RTLIL::Const(memory->size);

View file

@ -23,10 +23,10 @@
#include <set> #include <set>
#include <stdlib.h> #include <stdlib.h>
static std::string genid(std::string name, std::string token1 = "", int i = -1, std::string token2 = "", int j = -1, std::string token3 = "", int k = -1, std::string token4 = "") static std::string genid(RTLIL::IdString name, std::string token1 = "", int i = -1, std::string token2 = "", int j = -1, std::string token3 = "", int k = -1, std::string token4 = "")
{ {
std::stringstream sstr; std::stringstream sstr;
sstr << "$memory" << name << token1; sstr << "$memory" << name.str() << token1;
if (i >= 0) if (i >= 0)
sstr << "[" << i << "]"; sstr << "[" << i << "]";

View file

@ -31,7 +31,7 @@ static void handle_memory(RTLIL::Module *module, RTLIL::Cell *memory)
RTLIL::IdString mem_name = RTLIL::escape_id(memory->parameters.at("\\MEMID").decode_string()); RTLIL::IdString mem_name = RTLIL::escape_id(memory->parameters.at("\\MEMID").decode_string());
while (module->memories.count(mem_name) != 0) while (module->memories.count(mem_name) != 0)
mem_name += stringf("_%d", autoidx++); mem_name = mem_name.str() + stringf("_%d", autoidx++);
RTLIL::Memory *mem = new RTLIL::Memory; RTLIL::Memory *mem = new RTLIL::Memory;
mem->name = mem_name; mem->name = mem_name;
@ -47,7 +47,7 @@ static void handle_memory(RTLIL::Module *module, RTLIL::Cell *memory)
for (int i = 0; i < num_rd_ports; i++) for (int i = 0; i < num_rd_ports; i++)
{ {
RTLIL::Cell *cell = module->addCell(NEW_ID, "$memrd"); RTLIL::Cell *cell = module->addCell(NEW_ID, "$memrd");
cell->parameters["\\MEMID"] = mem_name; cell->parameters["\\MEMID"] = mem_name.str();
cell->parameters["\\ABITS"] = memory->parameters.at("\\ABITS"); cell->parameters["\\ABITS"] = memory->parameters.at("\\ABITS");
cell->parameters["\\WIDTH"] = memory->parameters.at("\\WIDTH"); cell->parameters["\\WIDTH"] = memory->parameters.at("\\WIDTH");
cell->parameters["\\CLK_ENABLE"] = RTLIL::SigSpec(memory->parameters.at("\\RD_CLK_ENABLE")).extract(i, 1).as_const(); cell->parameters["\\CLK_ENABLE"] = RTLIL::SigSpec(memory->parameters.at("\\RD_CLK_ENABLE")).extract(i, 1).as_const();
@ -61,7 +61,7 @@ static void handle_memory(RTLIL::Module *module, RTLIL::Cell *memory)
for (int i = 0; i < num_wr_ports; i++) for (int i = 0; i < num_wr_ports; i++)
{ {
RTLIL::Cell *cell = module->addCell(NEW_ID, "$memwr"); RTLIL::Cell *cell = module->addCell(NEW_ID, "$memwr");
cell->parameters["\\MEMID"] = mem_name; cell->parameters["\\MEMID"] = mem_name.str();
cell->parameters["\\ABITS"] = memory->parameters.at("\\ABITS"); cell->parameters["\\ABITS"] = memory->parameters.at("\\ABITS");
cell->parameters["\\WIDTH"] = memory->parameters.at("\\WIDTH"); cell->parameters["\\WIDTH"] = memory->parameters.at("\\WIDTH");
cell->parameters["\\CLK_ENABLE"] = RTLIL::SigSpec(memory->parameters.at("\\WR_CLK_ENABLE")).extract(i, 1).as_const(); cell->parameters["\\CLK_ENABLE"] = RTLIL::SigSpec(memory->parameters.at("\\WR_CLK_ENABLE")).extract(i, 1).as_const();

View file

@ -139,11 +139,12 @@ static bool compare_signals(RTLIL::SigBit &s1, RTLIL::SigBit &s2, SigPool &regs,
static bool check_public_name(RTLIL::IdString id) static bool check_public_name(RTLIL::IdString id)
{ {
if (id[0] == '$') const std::string &id_str = id.str();
if (id_str[0] == '$')
return false; return false;
if (id.substr(0, 2) == "\\_" && (id[id.size()-1] == '_' || id.find("_[") != std::string::npos)) if (id_str.substr(0, 2) == "\\_" && (id_str[id_str.size()-1] == '_' || id_str.find("_[") != std::string::npos))
return false; return false;
if (id.find(".$") != std::string::npos) if (id_str.find(".$") != std::string::npos)
return false; return false;
return true; return true;
} }

View file

@ -183,7 +183,7 @@ static bool group_cell_inputs(RTLIL::Module *module, RTLIL::Cell *cell, bool com
log("\n"); log("\n");
} }
cover_list("opt.opt_const.fine.group", "$not", "$pos", "$bu0", "$and", "$or", "$xor", "$xnor", cell->type); cover_list("opt.opt_const.fine.group", "$not", "$pos", "$bu0", "$and", "$or", "$xor", "$xnor", cell->type.str());
module->remove(cell); module->remove(cell);
OPT_DID_SOMETHING = true; OPT_DID_SOMETHING = true;
@ -288,7 +288,7 @@ static void replace_const_cells(RTLIL::Design *design, RTLIL::Module *module, bo
} }
if (new_a != RTLIL::State::Sm && RTLIL::SigSpec(new_a) != sig_a) { if (new_a != RTLIL::State::Sm && RTLIL::SigSpec(new_a) != sig_a) {
cover_list("opt.opt_const.fine.A", "$logic_not", "$logic_and", "$logic_or", "$reduce_or", "$reduce_bool", cell->type); cover_list("opt.opt_const.fine.A", "$logic_not", "$logic_and", "$logic_or", "$reduce_or", "$reduce_bool", cell->type.str());
log("Replacing port A of %s cell `%s' in module `%s' with constant driver: %s -> %s\n", log("Replacing port A of %s cell `%s' in module `%s' with constant driver: %s -> %s\n",
cell->type.c_str(), cell->name.c_str(), module->name.c_str(), log_signal(sig_a), log_signal(new_a)); cell->type.c_str(), cell->name.c_str(), module->name.c_str(), log_signal(sig_a), log_signal(new_a));
cell->setPort("\\A", sig_a = new_a); cell->setPort("\\A", sig_a = new_a);
@ -315,7 +315,7 @@ static void replace_const_cells(RTLIL::Design *design, RTLIL::Module *module, bo
} }
if (new_b != RTLIL::State::Sm && RTLIL::SigSpec(new_b) != sig_b) { if (new_b != RTLIL::State::Sm && RTLIL::SigSpec(new_b) != sig_b) {
cover_list("opt.opt_const.fine.B", "$logic_and", "$logic_or", cell->type); cover_list("opt.opt_const.fine.B", "$logic_and", "$logic_or", cell->type.str());
log("Replacing port B of %s cell `%s' in module `%s' with constant driver: %s -> %s\n", log("Replacing port B of %s cell `%s' in module `%s' with constant driver: %s -> %s\n",
cell->type.c_str(), cell->name.c_str(), module->name.c_str(), log_signal(sig_b), log_signal(new_b)); cell->type.c_str(), cell->name.c_str(), module->name.c_str(), log_signal(sig_b), log_signal(new_b));
cell->setPort("\\B", sig_b = new_b); cell->setPort("\\B", sig_b = new_b);
@ -361,7 +361,7 @@ static void replace_const_cells(RTLIL::Design *design, RTLIL::Module *module, bo
if (0) { if (0) {
found_the_x_bit: found_the_x_bit:
cover_list("opt.opt_const.xbit", "$reduce_xor", "$reduce_xnor", "$shl", "$shr", "$sshl", "$sshr", "$shift", "$shiftx", cover_list("opt.opt_const.xbit", "$reduce_xor", "$reduce_xnor", "$shl", "$shr", "$sshl", "$sshr", "$shift", "$shiftx",
"$lt", "$le", "$ge", "$gt", "$neg", "$add", "$sub", "$mul", "$div", "$mod", "$pow", cell->type); "$lt", "$le", "$ge", "$gt", "$neg", "$add", "$sub", "$mul", "$div", "$mod", "$pow", cell->type.str());
if (cell->type == "$reduce_xor" || cell->type == "$reduce_xnor" || if (cell->type == "$reduce_xor" || cell->type == "$reduce_xnor" ||
cell->type == "$lt" || cell->type == "$le" || cell->type == "$ge" || cell->type == "$gt") cell->type == "$lt" || cell->type == "$le" || cell->type == "$ge" || cell->type == "$gt")
replace_cell(assign_map, module, cell, "x-bit in input", "\\Y", RTLIL::State::Sx); replace_cell(assign_map, module, cell, "x-bit in input", "\\Y", RTLIL::State::Sx);
@ -373,13 +373,13 @@ static void replace_const_cells(RTLIL::Design *design, RTLIL::Module *module, bo
if ((cell->type == "$_INV_" || cell->type == "$not" || cell->type == "$logic_not") && cell->getPort("\\Y").size() == 1 && if ((cell->type == "$_INV_" || cell->type == "$not" || cell->type == "$logic_not") && cell->getPort("\\Y").size() == 1 &&
invert_map.count(assign_map(cell->getPort("\\A"))) != 0) { invert_map.count(assign_map(cell->getPort("\\A"))) != 0) {
cover_list("opt.opt_const.invert.double", "$_INV_", "$not", "$logic_not", cell->type); cover_list("opt.opt_const.invert.double", "$_INV_", "$not", "$logic_not", cell->type.str());
replace_cell(assign_map, module, cell, "double_invert", "\\Y", invert_map.at(assign_map(cell->getPort("\\A")))); replace_cell(assign_map, module, cell, "double_invert", "\\Y", invert_map.at(assign_map(cell->getPort("\\A"))));
goto next_cell; goto next_cell;
} }
if ((cell->type == "$_MUX_" || cell->type == "$mux") && invert_map.count(assign_map(cell->getPort("\\S"))) != 0) { if ((cell->type == "$_MUX_" || cell->type == "$mux") && invert_map.count(assign_map(cell->getPort("\\S"))) != 0) {
cover_list("opt.opt_const.invert.muxsel", "$_MUX_", "$mux", cell->type); cover_list("opt.opt_const.invert.muxsel", "$_MUX_", "$mux", cell->type.str());
RTLIL::SigSpec tmp = cell->getPort("\\A"); RTLIL::SigSpec tmp = cell->getPort("\\A");
cell->setPort("\\A", cell->getPort("\\B")); cell->setPort("\\A", cell->getPort("\\B"));
cell->setPort("\\B", tmp); cell->setPort("\\B", tmp);
@ -497,7 +497,7 @@ static void replace_const_cells(RTLIL::Design *design, RTLIL::Module *module, bo
log_assert(SIZE(a) == SIZE(b)); log_assert(SIZE(a) == SIZE(b));
for (int i = 0; i < SIZE(a); i++) { for (int i = 0; i < SIZE(a); i++) {
if (a[i].wire == NULL && b[i].wire == NULL && a[i] != b[i] && a[i].data <= RTLIL::State::S1 && b[i].data <= RTLIL::State::S1) { if (a[i].wire == NULL && b[i].wire == NULL && a[i] != b[i] && a[i].data <= RTLIL::State::S1 && b[i].data <= RTLIL::State::S1) {
cover_list("opt.opt_const.eqneq.isneq", "$eq", "$ne", "$eqx", "$nex", cell->type); cover_list("opt.opt_const.eqneq.isneq", "$eq", "$ne", "$eqx", "$nex", cell->type.str());
RTLIL::SigSpec new_y = RTLIL::SigSpec((cell->type == "$eq" || cell->type == "$eqx") ? RTLIL::State::S0 : RTLIL::State::S1); RTLIL::SigSpec new_y = RTLIL::SigSpec((cell->type == "$eq" || cell->type == "$eqx") ? RTLIL::State::S0 : RTLIL::State::S1);
new_y.extend(cell->parameters["\\Y_WIDTH"].as_int(), false); new_y.extend(cell->parameters["\\Y_WIDTH"].as_int(), false);
replace_cell(assign_map, module, cell, "isneq", "\\Y", new_y); replace_cell(assign_map, module, cell, "isneq", "\\Y", new_y);
@ -510,7 +510,7 @@ static void replace_const_cells(RTLIL::Design *design, RTLIL::Module *module, bo
} }
if (new_a.size() == 0) { if (new_a.size() == 0) {
cover_list("opt.opt_const.eqneq.empty", "$eq", "$ne", "$eqx", "$nex", cell->type); cover_list("opt.opt_const.eqneq.empty", "$eq", "$ne", "$eqx", "$nex", cell->type.str());
RTLIL::SigSpec new_y = RTLIL::SigSpec((cell->type == "$eq" || cell->type == "$eqx") ? RTLIL::State::S1 : RTLIL::State::S0); RTLIL::SigSpec new_y = RTLIL::SigSpec((cell->type == "$eq" || cell->type == "$eqx") ? RTLIL::State::S1 : RTLIL::State::S0);
new_y.extend(cell->parameters["\\Y_WIDTH"].as_int(), false); new_y.extend(cell->parameters["\\Y_WIDTH"].as_int(), false);
replace_cell(assign_map, module, cell, "empty", "\\Y", new_y); replace_cell(assign_map, module, cell, "empty", "\\Y", new_y);
@ -518,7 +518,7 @@ static void replace_const_cells(RTLIL::Design *design, RTLIL::Module *module, bo
} }
if (new_a.size() < a.size() || new_b.size() < b.size()) { if (new_a.size() < a.size() || new_b.size() < b.size()) {
cover_list("opt.opt_const.eqneq.resize", "$eq", "$ne", "$eqx", "$nex", cell->type); cover_list("opt.opt_const.eqneq.resize", "$eq", "$ne", "$eqx", "$nex", cell->type.str());
cell->setPort("\\A", new_a); cell->setPort("\\A", new_a);
cell->setPort("\\B", new_b); cell->setPort("\\B", new_b);
cell->parameters["\\A_WIDTH"] = new_a.size(); cell->parameters["\\A_WIDTH"] = new_a.size();
@ -533,7 +533,7 @@ static void replace_const_cells(RTLIL::Design *design, RTLIL::Module *module, bo
RTLIL::SigSpec b = assign_map(cell->getPort("\\B")); RTLIL::SigSpec b = assign_map(cell->getPort("\\B"));
if (a.is_fully_const()) { if (a.is_fully_const()) {
cover_list("opt.opt_const.eqneq.swapconst", "$eq", "$ne", cell->type); cover_list("opt.opt_const.eqneq.swapconst", "$eq", "$ne", cell->type.str());
RTLIL::SigSpec tmp = cell->getPort("\\A"); RTLIL::SigSpec tmp = cell->getPort("\\A");
cell->setPort("\\A", cell->getPort("\\B")); cell->setPort("\\A", cell->getPort("\\B"));
cell->setPort("\\B", tmp); cell->setPort("\\B", tmp);
@ -544,7 +544,7 @@ static void replace_const_cells(RTLIL::Design *design, RTLIL::Module *module, bo
RTLIL::SigSpec input = b; RTLIL::SigSpec input = b;
ACTION_DO("\\Y", cell->getPort("\\A")); ACTION_DO("\\Y", cell->getPort("\\A"));
} else { } else {
cover_list("opt.opt_const.eqneq.isnot", "$eq", "$ne", cell->type); cover_list("opt.opt_const.eqneq.isnot", "$eq", "$ne", cell->type.str());
cell->type = "$not"; cell->type = "$not";
cell->parameters.erase("\\B_WIDTH"); cell->parameters.erase("\\B_WIDTH");
cell->parameters.erase("\\B_SIGNED"); cell->parameters.erase("\\B_SIGNED");
@ -603,9 +603,9 @@ static void replace_const_cells(RTLIL::Design *design, RTLIL::Module *module, bo
if (identity_wrt_a || identity_wrt_b) if (identity_wrt_a || identity_wrt_b)
{ {
if (identity_wrt_a) if (identity_wrt_a)
cover_list("opt.opt_const.identwrt.a", "$add", "$sub", "$or", "$xor", "$shl", "$shr", "$sshl", "$sshr", "$shift", "$shiftx", "$mul", "$div", cell->type); cover_list("opt.opt_const.identwrt.a", "$add", "$sub", "$or", "$xor", "$shl", "$shr", "$sshl", "$sshr", "$shift", "$shiftx", "$mul", "$div", cell->type.str());
if (identity_wrt_b) if (identity_wrt_b)
cover_list("opt.opt_const.identwrt.b", "$add", "$sub", "$or", "$xor", "$shl", "$shr", "$sshl", "$sshr", "$shift", "$shiftx", "$mul", "$div", cell->type); cover_list("opt.opt_const.identwrt.b", "$add", "$sub", "$or", "$xor", "$shl", "$shr", "$sshl", "$sshr", "$shift", "$shiftx", "$mul", "$div", cell->type.str());
log("Replacing %s cell `%s' in module `%s' with identity for port %c.\n", log("Replacing %s cell `%s' in module `%s' with identity for port %c.\n",
cell->type.c_str(), cell->name.c_str(), module->name.c_str(), identity_wrt_a ? 'A' : 'B'); cell->type.c_str(), cell->name.c_str(), module->name.c_str(), identity_wrt_a ? 'A' : 'B');
@ -630,14 +630,14 @@ static void replace_const_cells(RTLIL::Design *design, RTLIL::Module *module, bo
if (mux_bool && (cell->type == "$mux" || cell->type == "$_MUX_") && if (mux_bool && (cell->type == "$mux" || cell->type == "$_MUX_") &&
cell->getPort("\\A") == RTLIL::SigSpec(0, 1) && cell->getPort("\\B") == RTLIL::SigSpec(1, 1)) { cell->getPort("\\A") == RTLIL::SigSpec(0, 1) && cell->getPort("\\B") == RTLIL::SigSpec(1, 1)) {
cover_list("opt.opt_const.mux_bool", "$mux", "$_MUX_", cell->type); cover_list("opt.opt_const.mux_bool", "$mux", "$_MUX_", cell->type.str());
replace_cell(assign_map, module, cell, "mux_bool", "\\Y", cell->getPort("\\S")); replace_cell(assign_map, module, cell, "mux_bool", "\\Y", cell->getPort("\\S"));
goto next_cell; goto next_cell;
} }
if (mux_bool && (cell->type == "$mux" || cell->type == "$_MUX_") && if (mux_bool && (cell->type == "$mux" || cell->type == "$_MUX_") &&
cell->getPort("\\A") == RTLIL::SigSpec(1, 1) && cell->getPort("\\B") == RTLIL::SigSpec(0, 1)) { cell->getPort("\\A") == RTLIL::SigSpec(1, 1) && cell->getPort("\\B") == RTLIL::SigSpec(0, 1)) {
cover_list("opt.opt_const.mux_invert", "$mux", "$_MUX_", cell->type); cover_list("opt.opt_const.mux_invert", "$mux", "$_MUX_", cell->type.str());
cell->setPort("\\A", cell->getPort("\\S")); cell->setPort("\\A", cell->getPort("\\S"));
cell->unsetPort("\\B"); cell->unsetPort("\\B");
cell->unsetPort("\\S"); cell->unsetPort("\\S");
@ -655,7 +655,7 @@ static void replace_const_cells(RTLIL::Design *design, RTLIL::Module *module, bo
} }
if (consume_x && mux_bool && (cell->type == "$mux" || cell->type == "$_MUX_") && cell->getPort("\\A") == RTLIL::SigSpec(0, 1)) { if (consume_x && mux_bool && (cell->type == "$mux" || cell->type == "$_MUX_") && cell->getPort("\\A") == RTLIL::SigSpec(0, 1)) {
cover_list("opt.opt_const.mux_and", "$mux", "$_MUX_", cell->type); cover_list("opt.opt_const.mux_and", "$mux", "$_MUX_", cell->type.str());
cell->setPort("\\A", cell->getPort("\\S")); cell->setPort("\\A", cell->getPort("\\S"));
cell->unsetPort("\\S"); cell->unsetPort("\\S");
if (cell->type == "$mux") { if (cell->type == "$mux") {
@ -674,7 +674,7 @@ static void replace_const_cells(RTLIL::Design *design, RTLIL::Module *module, bo
} }
if (consume_x && mux_bool && (cell->type == "$mux" || cell->type == "$_MUX_") && cell->getPort("\\B") == RTLIL::SigSpec(1, 1)) { if (consume_x && mux_bool && (cell->type == "$mux" || cell->type == "$_MUX_") && cell->getPort("\\B") == RTLIL::SigSpec(1, 1)) {
cover_list("opt.opt_const.mux_or", "$mux", "$_MUX_", cell->type); cover_list("opt.opt_const.mux_or", "$mux", "$_MUX_", cell->type.str());
cell->setPort("\\B", cell->getPort("\\S")); cell->setPort("\\B", cell->getPort("\\S"));
cell->unsetPort("\\S"); cell->unsetPort("\\S");
if (cell->type == "$mux") { if (cell->type == "$mux") {
@ -697,7 +697,7 @@ static void replace_const_cells(RTLIL::Design *design, RTLIL::Module *module, bo
int width = cell->getPort("\\A").size(); int width = cell->getPort("\\A").size();
if ((cell->getPort("\\A").is_fully_undef() && cell->getPort("\\B").is_fully_undef()) || if ((cell->getPort("\\A").is_fully_undef() && cell->getPort("\\B").is_fully_undef()) ||
cell->getPort("\\S").is_fully_undef()) { cell->getPort("\\S").is_fully_undef()) {
cover_list("opt.opt_const.mux_undef", "$mux", "$pmux", cell->type); cover_list("opt.opt_const.mux_undef", "$mux", "$pmux", cell->type.str());
replace_cell(assign_map, module, cell, "mux_undef", "\\Y", cell->getPort("\\A")); replace_cell(assign_map, module, cell, "mux_undef", "\\Y", cell->getPort("\\A"));
goto next_cell; goto next_cell;
} }
@ -716,17 +716,17 @@ static void replace_const_cells(RTLIL::Design *design, RTLIL::Module *module, bo
new_s = new_s.extract(0, new_s.size()-1); new_s = new_s.extract(0, new_s.size()-1);
} }
if (new_s.size() == 0) { if (new_s.size() == 0) {
cover_list("opt.opt_const.mux_empty", "$mux", "$pmux", cell->type); cover_list("opt.opt_const.mux_empty", "$mux", "$pmux", cell->type.str());
replace_cell(assign_map, module, cell, "mux_empty", "\\Y", new_a); replace_cell(assign_map, module, cell, "mux_empty", "\\Y", new_a);
goto next_cell; goto next_cell;
} }
if (new_a == RTLIL::SigSpec(RTLIL::State::S0) && new_b == RTLIL::SigSpec(RTLIL::State::S1)) { if (new_a == RTLIL::SigSpec(RTLIL::State::S0) && new_b == RTLIL::SigSpec(RTLIL::State::S1)) {
cover_list("opt.opt_const.mux_sel01", "$mux", "$pmux", cell->type); cover_list("opt.opt_const.mux_sel01", "$mux", "$pmux", cell->type.str());
replace_cell(assign_map, module, cell, "mux_sel01", "\\Y", new_s); replace_cell(assign_map, module, cell, "mux_sel01", "\\Y", new_s);
goto next_cell; goto next_cell;
} }
if (cell->getPort("\\S").size() != new_s.size()) { if (cell->getPort("\\S").size() != new_s.size()) {
cover_list("opt.opt_const.mux_reduce", "$mux", "$pmux", cell->type); cover_list("opt.opt_const.mux_reduce", "$mux", "$pmux", cell->type.str());
cell->setPort("\\A", new_a); cell->setPort("\\A", new_a);
cell->setPort("\\B", new_b); cell->setPort("\\B", new_b);
cell->setPort("\\S", new_s); cell->setPort("\\S", new_s);

View file

@ -178,7 +178,7 @@ struct OptRmdffPass : public Pass {
dff_init_map.add(it.second, it.second->attributes.at("\\init")); dff_init_map.add(it.second, it.second->attributes.at("\\init"));
mux_drivers.clear(); mux_drivers.clear();
std::vector<std::string> dff_list; std::vector<RTLIL::IdString> dff_list;
for (auto &it : mod_it.second->cells_) { for (auto &it : mod_it.second->cells_) {
if (it.second->type == "$mux" || it.second->type == "$pmux") { if (it.second->type == "$mux" || it.second->type == "$pmux") {
if (it.second->getPort("\\A").size() == it.second->getPort("\\B").size()) if (it.second->getPort("\\A").size() == it.second->getPort("\\B").size())

View file

@ -60,10 +60,10 @@ struct OptShareWorker
if (cell_hash_cache.count(cell) > 0) if (cell_hash_cache.count(cell) > 0)
return cell_hash_cache[cell]; return cell_hash_cache[cell];
std::string hash_string = cell->type + "\n"; std::string hash_string = cell->type.str() + "\n";
for (auto &it : cell->parameters) for (auto &it : cell->parameters)
hash_string += "P " + it.first + "=" + it.second.as_string() + "\n"; hash_string += "P " + it.first.str() + "=" + it.second.as_string() + "\n";
const std::map<RTLIL::IdString, RTLIL::SigSpec> *conn = &cell->connections(); const std::map<RTLIL::IdString, RTLIL::SigSpec> *conn = &cell->connections();
std::map<RTLIL::IdString, RTLIL::SigSpec> alt_conn; std::map<RTLIL::IdString, RTLIL::SigSpec> alt_conn;
@ -95,10 +95,10 @@ struct OptShareWorker
continue; continue;
RTLIL::SigSpec sig = it.second; RTLIL::SigSpec sig = it.second;
assign_map.apply(sig); assign_map.apply(sig);
hash_string += "C " + it.first + "="; hash_string += "C " + it.first.str() + "=";
for (auto &chunk : sig.chunks()) { for (auto &chunk : sig.chunks()) {
if (chunk.wire) if (chunk.wire)
hash_string += "{" + chunk.wire->name + " " + hash_string += "{" + chunk.wire->name.str() + " " +
int_to_hash_string(chunk.offset) + " " + int_to_hash_string(chunk.offset) + " " +
int_to_hash_string(chunk.width) + "}"; int_to_hash_string(chunk.width) + "}";
else else

View file

@ -150,7 +150,7 @@ struct ProcCleanPass : public Pass {
extra_args(args, 1, design); extra_args(args, 1, design);
for (auto mod : design->modules()) { for (auto mod : design->modules()) {
std::vector<std::string> delme; std::vector<RTLIL::IdString> delme;
if (!design->selected(mod)) if (!design->selected(mod))
continue; continue;
for (auto &proc_it : mod->processes) { for (auto &proc_it : mod->processes) {

View file

@ -471,7 +471,7 @@ struct EvalPass : public Pass {
if (shows.size() == 0) { if (shows.size() == 0) {
for (auto &it : module->wires_) for (auto &it : module->wires_)
if (it.second->port_output) if (it.second->port_output)
shows.push_back(it.second->name); shows.push_back(it.second->name.str());
} }
if (tables.empty()) if (tables.empty())

View file

@ -27,7 +27,7 @@ struct dff_map_info_t {
RTLIL::SigSpec sig_d, sig_clk, sig_arst; RTLIL::SigSpec sig_d, sig_clk, sig_arst;
bool clk_polarity, arst_polarity; bool clk_polarity, arst_polarity;
RTLIL::Const arst_value; RTLIL::Const arst_value;
std::vector<std::string> cells; std::vector<RTLIL::IdString> cells;
}; };
struct dff_map_bit_info_t { struct dff_map_bit_info_t {
@ -37,7 +37,7 @@ struct dff_map_bit_info_t {
RTLIL::Cell *cell; RTLIL::Cell *cell;
}; };
static bool consider_wire(RTLIL::Wire *wire, std::map<std::string, dff_map_info_t> &dff_dq_map) static bool consider_wire(RTLIL::Wire *wire, std::map<RTLIL::IdString, dff_map_info_t> &dff_dq_map)
{ {
if (wire->name[0] == '$' || dff_dq_map.count(wire->name)) if (wire->name[0] == '$' || dff_dq_map.count(wire->name))
return false; return false;
@ -46,7 +46,7 @@ static bool consider_wire(RTLIL::Wire *wire, std::map<std::string, dff_map_info_
return true; return true;
} }
static bool consider_cell(RTLIL::Design *design, std::set<std::string> &dff_cells, RTLIL::Cell *cell) static bool consider_cell(RTLIL::Design *design, std::set<RTLIL::IdString> &dff_cells, RTLIL::Cell *cell)
{ {
if (cell->name[0] == '$' || dff_cells.count(cell->name)) if (cell->name[0] == '$' || dff_cells.count(cell->name))
return false; return false;
@ -73,7 +73,7 @@ static bool compare_cells(RTLIL::Cell *cell1, RTLIL::Cell *cell2)
return true; return true;
} }
static void find_dff_wires(std::set<std::string> &dff_wires, RTLIL::Module *module) static void find_dff_wires(std::set<RTLIL::IdString> &dff_wires, RTLIL::Module *module)
{ {
CellTypes ct; CellTypes ct;
ct.setup_internals_mem(); ct.setup_internals_mem();
@ -93,7 +93,7 @@ static void find_dff_wires(std::set<std::string> &dff_wires, RTLIL::Module *modu
} }
} }
static void create_dff_dq_map(std::map<std::string, dff_map_info_t> &map, RTLIL::Design *design, RTLIL::Module *module) static void create_dff_dq_map(std::map<RTLIL::IdString, dff_map_info_t> &map, RTLIL::Design *design, RTLIL::Module *module)
{ {
std::map<RTLIL::SigBit, dff_map_bit_info_t> bit_info; std::map<RTLIL::SigBit, dff_map_bit_info_t> bit_info;
SigMap sigmap(module); SigMap sigmap(module);
@ -160,7 +160,7 @@ static void create_dff_dq_map(std::map<std::string, dff_map_info_t> &map, RTLIL:
} }
} }
std::map<std::string, dff_map_info_t> empty_dq_map; std::map<RTLIL::IdString, dff_map_info_t> empty_dq_map;
for (auto &it : module->wires_) for (auto &it : module->wires_)
{ {
if (!consider_wire(it.second, empty_dq_map)) if (!consider_wire(it.second, empty_dq_map))
@ -208,7 +208,7 @@ static void create_dff_dq_map(std::map<std::string, dff_map_info_t> &map, RTLIL:
} }
} }
static RTLIL::Wire *add_new_wire(RTLIL::Module *module, std::string name, int width = 1) static RTLIL::Wire *add_new_wire(RTLIL::Module *module, RTLIL::IdString name, int width = 1)
{ {
if (module->count_id(name)) if (module->count_id(name))
log_error("Attempting to create wire %s, but a wire of this name exists already! Hint: Try another value for -sep.\n", log_id(name)); log_error("Attempting to create wire %s, but a wire of this name exists already! Hint: Try another value for -sep.\n", log_id(name));
@ -294,13 +294,13 @@ struct ExposePass : public Pass {
CellTypes ct(design); CellTypes ct(design);
std::map<RTLIL::Module*, std::map<std::string, dff_map_info_t>> dff_dq_maps; std::map<RTLIL::Module*, std::map<RTLIL::IdString, dff_map_info_t>> dff_dq_maps;
std::map<RTLIL::Module*, std::set<std::string>> dff_cells; std::map<RTLIL::Module*, std::set<RTLIL::IdString>> dff_cells;
if (flag_evert_dff) if (flag_evert_dff)
{ {
RTLIL::Module *first_module = NULL; RTLIL::Module *first_module = NULL;
std::set<std::string> shared_dff_wires; std::set<RTLIL::IdString> shared_dff_wires;
for (auto &mod_it : design->modules_) for (auto &mod_it : design->modules_)
{ {
@ -317,7 +317,7 @@ struct ExposePass : public Pass {
shared_dff_wires.insert(it.first); shared_dff_wires.insert(it.first);
first_module = mod_it.second; first_module = mod_it.second;
} else { } else {
std::set<std::string> new_shared_dff_wires; std::set<RTLIL::IdString> new_shared_dff_wires;
for (auto &it : shared_dff_wires) { for (auto &it : shared_dff_wires) {
if (!dff_dq_maps[mod_it.second].count(it)) if (!dff_dq_maps[mod_it.second].count(it))
continue; continue;
@ -332,7 +332,7 @@ struct ExposePass : public Pass {
if (flag_shared) if (flag_shared)
for (auto &map_it : dff_dq_maps) for (auto &map_it : dff_dq_maps)
{ {
std::map<std::string, dff_map_info_t> new_map; std::map<RTLIL::IdString, dff_map_info_t> new_map;
for (auto &it : map_it.second) for (auto &it : map_it.second)
if (shared_dff_wires.count(it.first)) if (shared_dff_wires.count(it.first))
new_map[it.first] = it.second; new_map[it.first] = it.second;
@ -345,8 +345,8 @@ struct ExposePass : public Pass {
dff_cells[it1.first].insert(it3); dff_cells[it1.first].insert(it3);
} }
std::set<std::string> shared_wires, shared_cells; std::set<RTLIL::IdString> shared_wires, shared_cells;
std::set<std::string> used_names; std::set<RTLIL::IdString> used_names;
if (flag_shared) if (flag_shared)
{ {
@ -359,7 +359,7 @@ struct ExposePass : public Pass {
if (!design->selected(module)) if (!design->selected(module))
continue; continue;
std::set<std::string> dff_wires; std::set<RTLIL::IdString> dff_wires;
if (flag_dff) if (flag_dff)
find_dff_wires(dff_wires, module); find_dff_wires(dff_wires, module);
@ -379,7 +379,7 @@ struct ExposePass : public Pass {
} }
else else
{ {
std::vector<std::string> delete_shared_wires, delete_shared_cells; std::vector<RTLIL::IdString> delete_shared_wires, delete_shared_cells;
for (auto &it : shared_wires) for (auto &it : shared_wires)
{ {
@ -441,7 +441,7 @@ struct ExposePass : public Pass {
if (!design->selected(module)) if (!design->selected(module))
continue; continue;
std::set<std::string> dff_wires; std::set<RTLIL::IdString> dff_wires;
if (flag_dff && !flag_shared) if (flag_dff && !flag_shared)
find_dff_wires(dff_wires, module); find_dff_wires(dff_wires, module);
@ -467,7 +467,7 @@ struct ExposePass : public Pass {
} }
if (flag_cut) { if (flag_cut) {
RTLIL::Wire *in_wire = add_new_wire(module, it.second->name + sep + "i", it.second->width); RTLIL::Wire *in_wire = add_new_wire(module, it.second->name.str() + sep + "i", it.second->width);
in_wire->port_input = true; in_wire->port_input = true;
out_to_in_map.add(sigmap(it.second), in_wire); out_to_in_map.add(sigmap(it.second), in_wire);
} }
@ -511,7 +511,7 @@ struct ExposePass : public Pass {
cell->setPort("\\Q", cell_q_bits); cell->setPort("\\Q", cell_q_bits);
} }
RTLIL::Wire *wire_q = add_new_wire(module, wire->name + sep + "q", wire->width); RTLIL::Wire *wire_q = add_new_wire(module, wire->name.str() + sep + "q", wire->width);
wire_q->port_input = true; wire_q->port_input = true;
log("New module port: %s/%s\n", RTLIL::id2cstr(module->name), RTLIL::id2cstr(wire_q->name)); log("New module port: %s/%s\n", RTLIL::id2cstr(module->name), RTLIL::id2cstr(wire_q->name));
@ -525,12 +525,12 @@ struct ExposePass : public Pass {
} }
module->connect(connect_q); module->connect(connect_q);
RTLIL::Wire *wire_d = add_new_wire(module, wire->name + sep + "d", wire->width); RTLIL::Wire *wire_d = add_new_wire(module, wire->name.str() + sep + "d", wire->width);
wire_d->port_output = true; wire_d->port_output = true;
log("New module port: %s/%s\n", RTLIL::id2cstr(module->name), RTLIL::id2cstr(wire_d->name)); log("New module port: %s/%s\n", RTLIL::id2cstr(module->name), RTLIL::id2cstr(wire_d->name));
module->connect(RTLIL::SigSig(wire_d, info.sig_d)); module->connect(RTLIL::SigSig(wire_d, info.sig_d));
RTLIL::Wire *wire_c = add_new_wire(module, wire->name + sep + "c"); RTLIL::Wire *wire_c = add_new_wire(module, wire->name.str() + sep + "c");
wire_c->port_output = true; wire_c->port_output = true;
log("New module port: %s/%s\n", RTLIL::id2cstr(module->name), RTLIL::id2cstr(wire_c->name)); log("New module port: %s/%s\n", RTLIL::id2cstr(module->name), RTLIL::id2cstr(wire_c->name));
if (info.clk_polarity) { if (info.clk_polarity) {
@ -546,7 +546,7 @@ struct ExposePass : public Pass {
if (info.sig_arst != RTLIL::State::Sm) if (info.sig_arst != RTLIL::State::Sm)
{ {
RTLIL::Wire *wire_r = add_new_wire(module, wire->name + sep + "r"); RTLIL::Wire *wire_r = add_new_wire(module, wire->name.str() + sep + "r");
wire_r->port_output = true; wire_r->port_output = true;
log("New module port: %s/%s\n", RTLIL::id2cstr(module->name), RTLIL::id2cstr(wire_r->name)); log("New module port: %s/%s\n", RTLIL::id2cstr(module->name), RTLIL::id2cstr(wire_r->name));
if (info.arst_polarity) { if (info.arst_polarity) {
@ -560,7 +560,7 @@ struct ExposePass : public Pass {
c->setPort("\\Y", wire_r); c->setPort("\\Y", wire_r);
} }
RTLIL::Wire *wire_v = add_new_wire(module, wire->name + sep + "v", wire->width); RTLIL::Wire *wire_v = add_new_wire(module, wire->name.str() + sep + "v", wire->width);
wire_v->port_output = true; wire_v->port_output = true;
log("New module port: %s/%s\n", RTLIL::id2cstr(module->name), RTLIL::id2cstr(wire_v->name)); log("New module port: %s/%s\n", RTLIL::id2cstr(module->name), RTLIL::id2cstr(wire_v->name));
module->connect(RTLIL::SigSig(wire_v, info.arst_value)); module->connect(RTLIL::SigSig(wire_v, info.arst_value));
@ -593,7 +593,7 @@ struct ExposePass : public Pass {
if (!p->port_input && !p->port_output) if (!p->port_input && !p->port_output)
continue; continue;
RTLIL::Wire *w = add_new_wire(module, cell->name + sep + RTLIL::unescape_id(p->name), p->width); RTLIL::Wire *w = add_new_wire(module, cell->name.str() + sep + RTLIL::unescape_id(p->name), p->width);
if (p->port_input) if (p->port_input)
w->port_output = true; w->port_output = true;
if (p->port_output) if (p->port_output)
@ -615,7 +615,7 @@ struct ExposePass : public Pass {
{ {
for (auto &it : cell->connections()) for (auto &it : cell->connections())
{ {
RTLIL::Wire *w = add_new_wire(module, cell->name + sep + RTLIL::unescape_id(it.first), it.second.size()); RTLIL::Wire *w = add_new_wire(module, cell->name.str() + sep + RTLIL::unescape_id(it.first), it.second.size());
if (ct.cell_input(cell->type, it.first)) if (ct.cell_input(cell->type, it.first))
w->port_output = true; w->port_output = true;
if (ct.cell_output(cell->type, it.first)) if (ct.cell_output(cell->type, it.first))

View file

@ -1160,19 +1160,19 @@ struct SatPass : public Pass {
if (set_def_inputs) { if (set_def_inputs) {
for (auto &it : module->wires_) for (auto &it : module->wires_)
if (it.second->port_input) if (it.second->port_input)
sets_def.push_back(it.second->name); sets_def.push_back(it.second->name.str());
} }
if (show_inputs) { if (show_inputs) {
for (auto &it : module->wires_) for (auto &it : module->wires_)
if (it.second->port_input) if (it.second->port_input)
shows.push_back(it.second->name); shows.push_back(it.second->name.str());
} }
if (show_outputs) { if (show_outputs) {
for (auto &it : module->wires_) for (auto &it : module->wires_)
if (it.second->port_output) if (it.second->port_output)
shows.push_back(it.second->name); shows.push_back(it.second->name.str());
} }
if (tempinduct) if (tempinduct)

View file

@ -29,13 +29,13 @@ struct ShareWorkerConfig
bool opt_force; bool opt_force;
bool opt_aggressive; bool opt_aggressive;
bool opt_fast; bool opt_fast;
std::set<std::string> generic_uni_ops, generic_bin_ops, generic_cbin_ops; std::set<RTLIL::IdString> generic_uni_ops, generic_bin_ops, generic_cbin_ops;
}; };
struct ShareWorker struct ShareWorker
{ {
ShareWorkerConfig config; ShareWorkerConfig config;
std::set<std::string> generic_ops; std::set<RTLIL::IdString> generic_ops;
RTLIL::Design *design; RTLIL::Design *design;
RTLIL::Module *module; RTLIL::Module *module;

View file

@ -29,7 +29,7 @@ struct cell_mapping {
std::string cell_name; std::string cell_name;
std::map<std::string, char> ports; std::map<std::string, char> ports;
}; };
static std::map<std::string, cell_mapping> cell_mappings; static std::map<RTLIL::IdString, cell_mapping> cell_mappings;
static void logmap(std::string dff) static void logmap(std::string dff)
{ {
@ -319,7 +319,7 @@ static bool expand_cellmap(std::string pattern, std::string inv)
bool return_status = false; bool return_status = false;
for (auto &it : cell_mappings) { for (auto &it : cell_mappings) {
std::string from = it.first, to = it.first; std::string from = it.first.str(), to = it.first.str();
if (from.size() != pattern.size()) if (from.size() != pattern.size())
continue; continue;
for (size_t i = 0; i < from.size(); i++) { for (size_t i = 0; i < from.size(); i++) {

View file

@ -34,7 +34,7 @@ namespace
{ {
public: public:
bool ignore_parameters; bool ignore_parameters;
std::set<std::pair<std::string, std::string>> ignored_parameters; std::set<std::pair<RTLIL::IdString, RTLIL::IdString>> ignored_parameters;
std::set<RTLIL::IdString> cell_attr, wire_attr; std::set<RTLIL::IdString> cell_attr, wire_attr;
SubCircuitSolver() : ignore_parameters(false) SubCircuitSolver() : ignore_parameters(false)
@ -106,10 +106,10 @@ namespace
if (!ignore_parameters) { if (!ignore_parameters) {
std::map<RTLIL::IdString, RTLIL::Const> needle_param, haystack_param; std::map<RTLIL::IdString, RTLIL::Const> needle_param, haystack_param;
for (auto &it : needleCell->parameters) for (auto &it : needleCell->parameters)
if (!ignored_parameters.count(std::pair<std::string, std::string>(needleCell->type, it.first))) if (!ignored_parameters.count(std::pair<RTLIL::IdString, RTLIL::IdString>(needleCell->type, it.first)))
needle_param[it.first] = unified_param(needleCell->type, it.first, it.second); needle_param[it.first] = unified_param(needleCell->type, it.first, it.second);
for (auto &it : haystackCell->parameters) for (auto &it : haystackCell->parameters)
if (!ignored_parameters.count(std::pair<std::string, std::string>(haystackCell->type, it.first))) if (!ignored_parameters.count(std::pair<RTLIL::IdString, RTLIL::IdString>(haystackCell->type, it.first)))
haystack_param[it.first] = unified_param(haystackCell->type, it.first, it.second); haystack_param[it.first] = unified_param(haystackCell->type, it.first, it.second);
if (needle_param != haystack_param) if (needle_param != haystack_param)
return false; return false;
@ -127,7 +127,7 @@ namespace
for (auto &conn : needleCell->connections()) for (auto &conn : needleCell->connections())
{ {
RTLIL::SigSpec needleSig = conn.second; RTLIL::SigSpec needleSig = conn.second;
RTLIL::SigSpec haystackSig = haystackCell->getPort(portMapping.at(conn.first)); RTLIL::SigSpec haystackSig = haystackCell->getPort(portMapping.at(conn.first.str()));
for (int i = 0; i < std::min(needleSig.size(), haystackSig.size()); i++) { for (int i = 0; i < std::min(needleSig.size(), haystackSig.size()); i++) {
RTLIL::Wire *needleWire = needleSig[i].wire, *haystackWire = haystackSig[i].wire; RTLIL::Wire *needleWire = needleSig[i].wire, *haystackWire = haystackSig[i].wire;
@ -201,14 +201,14 @@ namespace
if (sel && !sel->selected(mod, cell)) if (sel && !sel->selected(mod, cell))
continue; continue;
std::string type = cell->type; std::string type = cell->type.str();
if (sel == NULL && type.substr(0, 2) == "\\$") if (sel == NULL && type.substr(0, 2) == "\\$")
type = type.substr(1); type = type.substr(1);
graph.createNode(cell->name, type, (void*)cell); graph.createNode(cell->name.str(), type, (void*)cell);
for (auto &conn : cell->connections()) for (auto &conn : cell->connections())
{ {
graph.createPort(cell->name, conn.first, conn.second.size()); graph.createPort(cell->name.str(), conn.first.str(), conn.second.size());
if (split && split->count(std::pair<RTLIL::IdString, RTLIL::IdString>(cell->type, conn.first)) > 0) if (split && split->count(std::pair<RTLIL::IdString, RTLIL::IdString>(cell->type, conn.first)) > 0)
continue; continue;
@ -226,9 +226,9 @@ namespace
if (bit == RTLIL::State::S0) node = "$const$0"; if (bit == RTLIL::State::S0) node = "$const$0";
if (bit == RTLIL::State::S1) node = "$const$1"; if (bit == RTLIL::State::S1) node = "$const$1";
if (bit == RTLIL::State::Sz) node = "$const$z"; if (bit == RTLIL::State::Sz) node = "$const$z";
graph.createConnection(cell->name, conn.first, i, node, "\\Y", 0); graph.createConnection(cell->name.str(), conn.first.str(), i, node, "\\Y", 0);
} else } else
graph.createConstant(cell->name, conn.first, i, int(bit.data)); graph.createConstant(cell->name.str(), conn.first.str(), i, int(bit.data));
continue; continue;
} }
@ -246,7 +246,7 @@ namespace
} }
bit_ref_t &bit_ref = sig_bit_ref[bit]; bit_ref_t &bit_ref = sig_bit_ref[bit];
graph.createConnection(bit_ref.cell, bit_ref.port, bit_ref.bit, cell->name, conn.first, i); graph.createConnection(bit_ref.cell, bit_ref.port, bit_ref.bit, cell->name.str(), conn.first.str(), i);
} }
} }
} }
@ -293,7 +293,7 @@ namespace
RTLIL::Cell *replace(RTLIL::Module *needle, RTLIL::Module *haystack, SubCircuit::Solver::Result &match) RTLIL::Cell *replace(RTLIL::Module *needle, RTLIL::Module *haystack, SubCircuit::Solver::Result &match)
{ {
SigMap sigmap(needle); SigMap sigmap(needle);
SigSet<std::pair<std::string, int>> sig2port; SigSet<std::pair<RTLIL::IdString, int>> sig2port;
// create new cell // create new cell
RTLIL::Cell *cell = haystack->addCell(stringf("$extract$%s$%d", needle->name.c_str(), autoidx++), needle->name); RTLIL::Cell *cell = haystack->addCell(stringf("$extract$%s$%d", needle->name.c_str(), autoidx++), needle->name);
@ -303,7 +303,7 @@ namespace
RTLIL::Wire *wire = it.second; RTLIL::Wire *wire = it.second;
if (wire->port_id > 0) { if (wire->port_id > 0) {
for (int i = 0; i < wire->width; i++) for (int i = 0; i < wire->width; i++)
sig2port.insert(sigmap(RTLIL::SigSpec(wire, i)), std::pair<std::string, int>(wire->name, i)); sig2port.insert(sigmap(RTLIL::SigSpec(wire, i)), std::pair<RTLIL::IdString, int>(wire->name, i));
cell->setPort(wire->name, RTLIL::SigSpec(RTLIL::State::Sz, wire->width)); cell->setPort(wire->name, RTLIL::SigSpec(RTLIL::State::Sz, wire->width));
} }
} }
@ -320,10 +320,10 @@ namespace
for (auto &conn : needle_cell->connections()) { for (auto &conn : needle_cell->connections()) {
RTLIL::SigSpec sig = sigmap(conn.second); RTLIL::SigSpec sig = sigmap(conn.second);
if (mapping.portMapping.count(conn.first) > 0 && sig2port.has(sigmap(sig))) { if (mapping.portMapping.count(conn.first.str()) > 0 && sig2port.has(sigmap(sig))) {
for (int i = 0; i < sig.size(); i++) for (int i = 0; i < sig.size(); i++)
for (auto &port : sig2port.find(sig[i])) { for (auto &port : sig2port.find(sig[i])) {
RTLIL::SigSpec bitsig = haystack_cell->getPort(mapping.portMapping[conn.first]).extract(i, 1); RTLIL::SigSpec bitsig = haystack_cell->getPort(mapping.portMapping[conn.first.str()]).extract(i, 1);
RTLIL::SigSpec new_sig = cell->getPort(port.first); RTLIL::SigSpec new_sig = cell->getPort(port.first);
new_sig.replace(port.second, bitsig); new_sig.replace(port.second, bitsig);
cell->setPort(port.first, new_sig); cell->setPort(port.first, new_sig);
@ -561,7 +561,7 @@ struct ExtractPass : public Pass {
continue; continue;
} }
if (args[argidx] == "-ignore_param" && argidx+2 < args.size()) { if (args[argidx] == "-ignore_param" && argidx+2 < args.size()) {
solver.ignored_parameters.insert(std::pair<std::string, std::string>(RTLIL::escape_id(args[argidx+1]), RTLIL::escape_id(args[argidx+2]))); solver.ignored_parameters.insert(std::pair<RTLIL::IdString, RTLIL::IdString>(RTLIL::escape_id(args[argidx+1]), RTLIL::escape_id(args[argidx+2])));
argidx += 2; argidx += 2;
continue; continue;
} }

View file

@ -24,7 +24,7 @@
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
extern void simplemap_get_mappers(std::map<std::string, void(*)(RTLIL::Module*, RTLIL::Cell*)> &mappers); extern void simplemap_get_mappers(std::map<RTLIL::IdString, void(*)(RTLIL::Module*, RTLIL::Cell*)> &mappers);
static void simplemap_not(RTLIL::Module *module, RTLIL::Cell *cell) static void simplemap_not(RTLIL::Module *module, RTLIL::Cell *cell)
{ {
@ -382,7 +382,7 @@ static void simplemap_dlatch(RTLIL::Module *module, RTLIL::Cell *cell)
} }
} }
void simplemap_get_mappers(std::map<std::string, void(*)(RTLIL::Module*, RTLIL::Cell*)> &mappers) void simplemap_get_mappers(std::map<RTLIL::IdString, void(*)(RTLIL::Module*, RTLIL::Cell*)> &mappers)
{ {
mappers["$not"] = simplemap_not; mappers["$not"] = simplemap_not;
mappers["$pos"] = simplemap_pos; mappers["$pos"] = simplemap_pos;
@ -431,7 +431,7 @@ struct SimplemapPass : public Pass {
log_header("Executing SIMPLEMAP pass (map simple cells to gate primitives).\n"); log_header("Executing SIMPLEMAP pass (map simple cells to gate primitives).\n");
extra_args(args, 1, design); extra_args(args, 1, design);
std::map<std::string, void(*)(RTLIL::Module*, RTLIL::Cell*)> mappers; std::map<RTLIL::IdString, void(*)(RTLIL::Module*, RTLIL::Cell*)> mappers;
simplemap_get_mappers(mappers); simplemap_get_mappers(mappers);
for (auto mod : design->modules()) { for (auto mod : design->modules()) {

View file

@ -29,7 +29,7 @@
#include "passes/techmap/techmap.inc" #include "passes/techmap/techmap.inc"
// see simplemap.cc // see simplemap.cc
extern void simplemap_get_mappers(std::map<std::string, void(*)(RTLIL::Module*, RTLIL::Cell*)> &mappers); extern void simplemap_get_mappers(std::map<RTLIL::IdString, void(*)(RTLIL::Module*, RTLIL::Cell*)> &mappers);
static void apply_prefix(std::string prefix, std::string &id) static void apply_prefix(std::string prefix, std::string &id)
{ {
@ -44,7 +44,7 @@ static void apply_prefix(std::string prefix, RTLIL::SigSpec &sig, RTLIL::Module
std::vector<RTLIL::SigChunk> chunks = sig; std::vector<RTLIL::SigChunk> chunks = sig;
for (auto &chunk : chunks) for (auto &chunk : chunks)
if (chunk.wire != NULL) { if (chunk.wire != NULL) {
std::string wire_name = chunk.wire->name; std::string wire_name = chunk.wire->name.str();
apply_prefix(prefix, wire_name); apply_prefix(prefix, wire_name);
log_assert(module->wires_.count(wire_name) > 0); log_assert(module->wires_.count(wire_name) > 0);
chunk.wire = module->wires_[wire_name]; chunk.wire = module->wires_[wire_name];
@ -54,7 +54,7 @@ static void apply_prefix(std::string prefix, RTLIL::SigSpec &sig, RTLIL::Module
struct TechmapWorker struct TechmapWorker
{ {
std::map<std::string, void(*)(RTLIL::Module*, RTLIL::Cell*)> simplemap_mappers; std::map<RTLIL::IdString, void(*)(RTLIL::Module*, RTLIL::Cell*)> simplemap_mappers;
std::map<std::pair<RTLIL::IdString, std::map<RTLIL::IdString, RTLIL::Const>>, RTLIL::Module*> techmap_cache; std::map<std::pair<RTLIL::IdString, std::map<RTLIL::IdString, RTLIL::Const>>, RTLIL::Module*> techmap_cache;
std::map<RTLIL::Module*, bool> techmap_do_cache; std::map<RTLIL::Module*, bool> techmap_do_cache;
std::set<RTLIL::Module*> module_queue; std::set<RTLIL::Module*> module_queue;
@ -80,7 +80,7 @@ struct TechmapWorker
std::string constmap_tpl_name(SigMap &sigmap, RTLIL::Module *tpl, RTLIL::Cell *cell, bool verbose) std::string constmap_tpl_name(SigMap &sigmap, RTLIL::Module *tpl, RTLIL::Cell *cell, bool verbose)
{ {
std::string constmap_info; std::string constmap_info;
std::map<RTLIL::SigBit, std::pair<std::string, int>> connbits_map; std::map<RTLIL::SigBit, std::pair<RTLIL::IdString, int>> connbits_map;
for (auto conn : cell->connections()) for (auto conn : cell->connections())
for (int i = 0; i < SIZE(conn.second); i++) { for (int i = 0; i < SIZE(conn.second); i++) {
@ -96,7 +96,7 @@ struct TechmapWorker
constmap_info += stringf("|%s %d %s %d", log_id(conn.first), i, constmap_info += stringf("|%s %d %s %d", log_id(conn.first), i,
log_id(connbits_map.at(bit).first), connbits_map.at(bit).second); log_id(connbits_map.at(bit).first), connbits_map.at(bit).second);
} else } else
connbits_map[bit] = std::pair<std::string, int>(conn.first, i);stringf("%s %d", log_id(conn.first), i, bit.data); connbits_map[bit] = std::pair<RTLIL::IdString, int>(conn.first, i);stringf("%s %d", log_id(conn.first), i, bit.data);
} }
return stringf("$paramod$constmap:%s%s", sha1(constmap_info).c_str(), tpl->name.c_str()); return stringf("$paramod$constmap:%s%s", sha1(constmap_info).c_str(), tpl->name.c_str());
@ -156,7 +156,7 @@ struct TechmapWorker
for (auto &it : tpl->cells_) for (auto &it : tpl->cells_)
if (it.first == "\\_TECHMAP_REPLACE_") { if (it.first == "\\_TECHMAP_REPLACE_") {
orig_cell_name = cell->name; orig_cell_name = cell->name;
module->rename(cell, stringf("$techmap%d", autoidx++) + cell->name); module->rename(cell, stringf("$techmap%d", autoidx++) + cell->name.str());
break; break;
} }
@ -165,8 +165,8 @@ struct TechmapWorker
for (auto &it : tpl->wires_) { for (auto &it : tpl->wires_) {
if (it.second->port_id > 0) if (it.second->port_id > 0)
positional_ports[stringf("$%d", it.second->port_id)] = it.first; positional_ports[stringf("$%d", it.second->port_id)] = it.first;
std::string w_name = it.second->name; std::string w_name = it.second->name.str();
apply_prefix(cell->name, w_name); apply_prefix(cell->name.str(), w_name);
RTLIL::Wire *w = module->addWire(w_name, it.second); RTLIL::Wire *w = module->addWire(w_name, it.second);
w->port_input = false; w->port_input = false;
w->port_output = false; w->port_output = false;
@ -192,11 +192,11 @@ struct TechmapWorker
if (w->port_output) { if (w->port_output) {
c.first = it.second; c.first = it.second;
c.second = RTLIL::SigSpec(w); c.second = RTLIL::SigSpec(w);
apply_prefix(cell->name, c.second, module); apply_prefix(cell->name.str(), c.second, module);
} else { } else {
c.first = RTLIL::SigSpec(w); c.first = RTLIL::SigSpec(w);
c.second = it.second; c.second = it.second;
apply_prefix(cell->name, c.first, module); apply_prefix(cell->name.str(), c.first, module);
} }
if (c.second.size() > c.first.size()) if (c.second.size() > c.first.size())
c.second.remove(c.first.size(), c.second.size() - c.first.size()); c.second.remove(c.first.size(), c.second.size() - c.first.size());
@ -219,12 +219,12 @@ struct TechmapWorker
for (auto &it : tpl->cells_) for (auto &it : tpl->cells_)
{ {
RTLIL::IdString c_name = it.second->name; std::string c_name = it.second->name.str();
if (!flatten_mode && c_name == "\\_TECHMAP_REPLACE_") if (!flatten_mode && c_name == "\\_TECHMAP_REPLACE_")
c_name = orig_cell_name; c_name = orig_cell_name;
else else
apply_prefix(cell->name, c_name); apply_prefix(cell->name.str(), c_name);
RTLIL::Cell *c = module->addCell(c_name, it.second); RTLIL::Cell *c = module->addCell(c_name, it.second);
design->select(module, c); design->select(module, c);
@ -233,15 +233,15 @@ struct TechmapWorker
c->type = c->type.substr(1); c->type = c->type.substr(1);
for (auto &it2 : c->connections_) { for (auto &it2 : c->connections_) {
apply_prefix(cell->name, it2.second, module); apply_prefix(cell->name.str(), it2.second, module);
port_signal_map.apply(it2.second); port_signal_map.apply(it2.second);
} }
} }
for (auto &it : tpl->connections()) { for (auto &it : tpl->connections()) {
RTLIL::SigSig c = it; RTLIL::SigSig c = it;
apply_prefix(cell->name, c.first, module); apply_prefix(cell->name.str(), c.first, module);
apply_prefix(cell->name, c.second, module); apply_prefix(cell->name.str(), c.second, module);
port_signal_map.apply(c.first); port_signal_map.apply(c.first);
port_signal_map.apply(c.second); port_signal_map.apply(c.second);
module->connect(c); module->connect(c);
@ -271,7 +271,7 @@ struct TechmapWorker
continue; continue;
if (celltypeMap.count(cell->type) == 0) { if (celltypeMap.count(cell->type) == 0) {
if (assert_mode && cell->type.back() != '_') if (assert_mode && cell->type.str().back() != '_')
log_error("(ASSERT MODE) No matching template cell for type %s found.\n", log_id(cell->type)); log_error("(ASSERT MODE) No matching template cell for type %s found.\n", log_id(cell->type));
continue; continue;
} }
@ -313,7 +313,7 @@ struct TechmapWorker
for (auto &tpl_name : celltypeMap.at(cell->type)) for (auto &tpl_name : celltypeMap.at(cell->type))
{ {
std::string derived_name = tpl_name; RTLIL::IdString derived_name = tpl_name;
RTLIL::Module *tpl = map->modules_[tpl_name]; RTLIL::Module *tpl = map->modules_[tpl_name];
std::map<RTLIL::IdString, RTLIL::Const> parameters = cell->parameters; std::map<RTLIL::IdString, RTLIL::Const> parameters = cell->parameters;
@ -499,7 +499,7 @@ struct TechmapWorker
if (!wire->port_input || wire->port_output) if (!wire->port_input || wire->port_output)
continue; continue;
std::string port_name = wire->name; RTLIL::IdString port_name = wire->name;
tpl->rename(wire, NEW_ID); tpl->rename(wire, NEW_ID);
RTLIL::Wire *new_wire = tpl->addWire(port_name, wire); RTLIL::Wire *new_wire = tpl->addWire(port_name, wire);

View file

@ -109,8 +109,8 @@ static void autotest(FILE *f, RTLIL::Design *design, int num_iter)
RTLIL::Wire *wire = it2->second; RTLIL::Wire *wire = it2->second;
if (wire->port_output) { if (wire->port_output) {
count_ports++; count_ports++;
signal_out[idy("sig", mod->name, wire->name)] = wire->width; signal_out[idy("sig", mod->name.str(), wire->name.str())] = wire->width;
fprintf(f, "wire [%d:0] %s;\n", wire->width-1, idy("sig", mod->name, wire->name).c_str()); fprintf(f, "wire [%d:0] %s;\n", wire->width-1, idy("sig", mod->name.str(), wire->name.str()).c_str());
} else if (wire->port_input) { } else if (wire->port_input) {
count_ports++; count_ports++;
bool is_clksignal = wire->get_bool_attribute("\\gentb_clock"); bool is_clksignal = wire->get_bool_attribute("\\gentb_clock");
@ -124,25 +124,25 @@ static void autotest(FILE *f, RTLIL::Design *design, int num_iter)
is_clksignal = true; is_clksignal = true;
} }
if (is_clksignal && wire->attributes.count("\\gentb_constant") == 0) { if (is_clksignal && wire->attributes.count("\\gentb_constant") == 0) {
signal_clk[idy("sig", mod->name, wire->name)] = wire->width; signal_clk[idy("sig", mod->name.str(), wire->name.str())] = wire->width;
} else { } else {
signal_in[idy("sig", mod->name, wire->name)] = wire->width; signal_in[idy("sig", mod->name.str(), wire->name.str())] = wire->width;
if (wire->attributes.count("\\gentb_constant") != 0) if (wire->attributes.count("\\gentb_constant") != 0)
signal_const[idy("sig", mod->name, wire->name)] = wire->attributes["\\gentb_constant"].as_string(); signal_const[idy("sig", mod->name.str(), wire->name.str())] = wire->attributes["\\gentb_constant"].as_string();
} }
fprintf(f, "reg [%d:0] %s;\n", wire->width-1, idy("sig", mod->name, wire->name).c_str()); fprintf(f, "reg [%d:0] %s;\n", wire->width-1, idy("sig", mod->name.str(), wire->name.str()).c_str());
} }
} }
fprintf(f, "%s %s(\n", id(mod->name).c_str(), idy("uut", mod->name).c_str()); fprintf(f, "%s %s(\n", id(mod->name.str()).c_str(), idy("uut", mod->name.str()).c_str());
for (auto it2 = mod->wires_.begin(); it2 != mod->wires_.end(); it2++) { for (auto it2 = mod->wires_.begin(); it2 != mod->wires_.end(); it2++) {
RTLIL::Wire *wire = it2->second; RTLIL::Wire *wire = it2->second;
if (wire->port_output || wire->port_input) if (wire->port_output || wire->port_input)
fprintf(f, "\t.%s(%s)%s\n", id(wire->name).c_str(), fprintf(f, "\t.%s(%s)%s\n", id(wire->name.str()).c_str(),
idy("sig", mod->name, wire->name).c_str(), --count_ports ? "," : ""); idy("sig", mod->name.str(), wire->name.str()).c_str(), --count_ports ? "," : "");
} }
fprintf(f, ");\n\n"); fprintf(f, ");\n\n");
fprintf(f, "task %s;\n", idy(mod->name, "reset").c_str()); fprintf(f, "task %s;\n", idy(mod->name.str(), "reset").c_str());
fprintf(f, "begin\n"); fprintf(f, "begin\n");
int delay_counter = 0; int delay_counter = 0;
for (auto it = signal_in.begin(); it != signal_in.end(); it++) for (auto it = signal_in.begin(); it != signal_in.end(); it++)
@ -169,7 +169,7 @@ static void autotest(FILE *f, RTLIL::Design *design, int num_iter)
fprintf(f, "end\n"); fprintf(f, "end\n");
fprintf(f, "endtask\n\n"); fprintf(f, "endtask\n\n");
fprintf(f, "task %s;\n", idy(mod->name, "update_data").c_str()); fprintf(f, "task %s;\n", idy(mod->name.str(), "update_data").c_str());
fprintf(f, "begin\n"); fprintf(f, "begin\n");
delay_counter = 0; delay_counter = 0;
for (auto it = signal_in.begin(); it != signal_in.end(); it++) { for (auto it = signal_in.begin(); it != signal_in.end(); it++) {
@ -181,7 +181,7 @@ static void autotest(FILE *f, RTLIL::Design *design, int num_iter)
fprintf(f, "end\n"); fprintf(f, "end\n");
fprintf(f, "endtask\n\n"); fprintf(f, "endtask\n\n");
fprintf(f, "task %s;\n", idy(mod->name, "update_clock").c_str()); fprintf(f, "task %s;\n", idy(mod->name.str(), "update_clock").c_str());
fprintf(f, "begin\n"); fprintf(f, "begin\n");
if (signal_clk.size()) { if (signal_clk.size()) {
fprintf(f, "\txorshift128;\n"); fprintf(f, "\txorshift128;\n");
@ -203,7 +203,7 @@ static void autotest(FILE *f, RTLIL::Design *design, int num_iter)
std::vector<std::string> header1; std::vector<std::string> header1;
std::string header2 = ""; std::string header2 = "";
fprintf(f, "task %s;\n", idy(mod->name, "print_status").c_str()); fprintf(f, "task %s;\n", idy(mod->name.str(), "print_status").c_str());
fprintf(f, "begin\n"); fprintf(f, "begin\n");
fprintf(f, "\t$display(\"#OUT# %%b %%b %%b %%t %%d\", {"); fprintf(f, "\t$display(\"#OUT# %%b %%b %%b %%t %%d\", {");
if (signal_in.size()) if (signal_in.size())
@ -265,7 +265,7 @@ static void autotest(FILE *f, RTLIL::Design *design, int num_iter)
fprintf(f, "end\n"); fprintf(f, "end\n");
fprintf(f, "endtask\n\n"); fprintf(f, "endtask\n\n");
fprintf(f, "task %s;\n", idy(mod->name, "print_header").c_str()); fprintf(f, "task %s;\n", idy(mod->name.str(), "print_header").c_str());
fprintf(f, "begin\n"); fprintf(f, "begin\n");
fprintf(f, "\t$display(\"#OUT#\");\n"); fprintf(f, "\t$display(\"#OUT#\");\n");
for (auto &hdr : header1) for (auto &hdr : header1)
@ -275,15 +275,15 @@ static void autotest(FILE *f, RTLIL::Design *design, int num_iter)
fprintf(f, "end\n"); fprintf(f, "end\n");
fprintf(f, "endtask\n\n"); fprintf(f, "endtask\n\n");
fprintf(f, "task %s;\n", idy(mod->name, "test").c_str()); fprintf(f, "task %s;\n", idy(mod->name.str(), "test").c_str());
fprintf(f, "begin\n"); fprintf(f, "begin\n");
fprintf(f, "\t$display(\"#OUT#\\n#OUT# ==== %s ====\");\n", idy(mod->name).c_str()); fprintf(f, "\t$display(\"#OUT#\\n#OUT# ==== %s ====\");\n", idy(mod->name.str()).c_str());
fprintf(f, "\t%s;\n", idy(mod->name, "reset").c_str()); fprintf(f, "\t%s;\n", idy(mod->name.str(), "reset").c_str());
fprintf(f, "\tfor (i=0; i<%d; i=i+1) begin\n", num_iter); fprintf(f, "\tfor (i=0; i<%d; i=i+1) begin\n", num_iter);
fprintf(f, "\t\tif (i %% 20 == 0) %s;\n", idy(mod->name, "print_header").c_str()); fprintf(f, "\t\tif (i %% 20 == 0) %s;\n", idy(mod->name.str(), "print_header").c_str());
fprintf(f, "\t\t#100; %s;\n", idy(mod->name, "update_data").c_str()); fprintf(f, "\t\t#100; %s;\n", idy(mod->name.str(), "update_data").c_str());
fprintf(f, "\t\t#100; %s;\n", idy(mod->name, "update_clock").c_str()); fprintf(f, "\t\t#100; %s;\n", idy(mod->name.str(), "update_clock").c_str());
fprintf(f, "\t\t#100; %s;\n", idy(mod->name, "print_status").c_str()); fprintf(f, "\t\t#100; %s;\n", idy(mod->name.str(), "print_status").c_str());
fprintf(f, "\tend\n"); fprintf(f, "\tend\n");
fprintf(f, "end\n"); fprintf(f, "end\n");
fprintf(f, "endtask\n\n"); fprintf(f, "endtask\n\n");
@ -294,7 +294,7 @@ static void autotest(FILE *f, RTLIL::Design *design, int num_iter)
fprintf(f, "\t// $dumpvars(0, testbench);\n"); fprintf(f, "\t// $dumpvars(0, testbench);\n");
for (auto it = design->modules_.begin(); it != design->modules_.end(); it++) for (auto it = design->modules_.begin(); it != design->modules_.end(); it++)
if (!it->second->get_bool_attribute("\\gentb_skip")) if (!it->second->get_bool_attribute("\\gentb_skip"))
fprintf(f, "\t%s;\n", idy(it->first, "test").c_str()); fprintf(f, "\t%s;\n", idy(it->first.str(), "test").c_str());
fprintf(f, "\t$finish;\n"); fprintf(f, "\t$finish;\n");
fprintf(f, "end\n\n"); fprintf(f, "end\n\n");