diff options
author | Clifford Wolf <clifford@clifford.at> | 2013-11-24 20:29:07 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2013-11-24 20:29:07 +0100 |
commit | 8dafecd34d772b1d9ec190b39913b236cdc8fb17 (patch) | |
tree | 263b31c6aaa6ef8df765a2ad8c66212b414d793f /passes/techmap | |
parent | 4011d476469a761ed05f91d11935f8ad07f901ba (diff) | |
download | yosys-8dafecd34d772b1d9ec190b39913b236cdc8fb17.tar.gz yosys-8dafecd34d772b1d9ec190b39913b236cdc8fb17.tar.bz2 yosys-8dafecd34d772b1d9ec190b39913b236cdc8fb17.zip |
Added module->avail_parameters (for advanced techmap features)
Diffstat (limited to 'passes/techmap')
-rw-r--r-- | passes/techmap/techmap.cc | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/passes/techmap/techmap.cc b/passes/techmap/techmap.cc index 0bef2b62f..bd3d223b6 100644 --- a/passes/techmap/techmap.cc +++ b/passes/techmap/techmap.cc @@ -223,7 +223,7 @@ static bool techmap_module(RTLIL::Design *design, RTLIL::Module *module, RTLIL:: continue; if (tpl->wires.count(conn.first) > 0 && tpl->wires.at(conn.first)->port_id > 0) continue; - if (!conn.second.is_fully_const() || parameters.count(conn.first) > 0) + if (!conn.second.is_fully_const() || parameters.count(conn.first) > 0 || tpl->avail_parameters.count(conn.first) == 0) goto next_tpl; parameters[conn.first] = conn.second.as_const(); } @@ -232,6 +232,9 @@ static bool techmap_module(RTLIL::Design *design, RTLIL::Module *module, RTLIL:: next_tpl: continue; } + + if (tpl->avail_parameters.count("\\_TECHMAP_CELLTYPE_") != 0) + parameters["\\_TECHMAP_CELLTYPE_"] = RTLIL::unescape_id(cell->type); } std::pair<RTLIL::IdString, std::map<RTLIL::IdString, RTLIL::Const>> key(tpl_name, parameters); @@ -475,7 +478,10 @@ struct TechmapPass : public Pass { std::map<RTLIL::IdString, std::set<RTLIL::IdString>> celltypeMap; for (auto &it : map->modules) { if (it.second->attributes.count("\\techmap_celltype") && !it.second->attributes.at("\\techmap_celltype").str.empty()) { - celltypeMap[RTLIL::escape_id(it.second->attributes.at("\\techmap_celltype").str)].insert(it.first); + char *p = strdup(it.second->attributes.at("\\techmap_celltype").str.c_str()); + for (char *q = strtok(p, " \t\r\n"); q; q = strtok(NULL, " \t\r\n")) + celltypeMap[RTLIL::escape_id(q)].insert(it.first); + free(p); } else celltypeMap[it.first].insert(it.first); } |