diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-09-04 10:55:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-04 10:55:41 -0700 |
commit | 3c462e5eeb5d24f5252bc1e7437f91372ec48fd0 (patch) | |
tree | 0d7524842086e84cb266b6a6e8dac54afe349d2c /passes/hierarchy/hierarchy.cc | |
parent | 58af64b63a3a253ab08b1410422677deac5c6618 (diff) | |
parent | d2306d7b1d9725fef2d1db4e205c1b0cb6c84715 (diff) | |
download | yosys-3c462e5eeb5d24f5252bc1e7437f91372ec48fd0.tar.gz yosys-3c462e5eeb5d24f5252bc1e7437f91372ec48fd0.tar.bz2 yosys-3c462e5eeb5d24f5252bc1e7437f91372ec48fd0.zip |
Merge pull request #1338 from YosysHQ/eddie/deferred_top
hierarchy -auto-top to work with (* top *) modules from read/read_verilog -defer
Diffstat (limited to 'passes/hierarchy/hierarchy.cc')
-rw-r--r-- | passes/hierarchy/hierarchy.cc | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/passes/hierarchy/hierarchy.cc b/passes/hierarchy/hierarchy.cc index fd95b94b2..d8a628448 100644 --- a/passes/hierarchy/hierarchy.cc +++ b/passes/hierarchy/hierarchy.cc @@ -808,6 +808,30 @@ struct HierarchyPass : public Pass { if (mod_it.second->get_bool_attribute("\\top")) top_mod = mod_it.second; + if (top_mod != nullptr && top_mod->name.begins_with("$abstract")) { + IdString top_name = top_mod->name.substr(strlen("$abstract")); + + dict<RTLIL::IdString, RTLIL::Const> top_parameters; + for (auto ¶ : parameters) { + SigSpec sig_value; + if (!RTLIL::SigSpec::parse(sig_value, NULL, para.second)) + log_cmd_error("Can't decode value '%s'!\n", para.second.c_str()); + top_parameters[RTLIL::escape_id(para.first)] = sig_value.as_const(); + } + + top_mod = design->module(top_mod->derive(design, top_parameters)); + + if (top_mod != nullptr && top_mod->name != top_name) { + Module *m = top_mod->clone(); + m->name = top_name; + Module *old_mod = design->module(top_name); + if (old_mod) + design->remove(old_mod); + design->add(m); + top_mod = m; + } + } + if (top_mod == nullptr && auto_top_mode) { log_header(design, "Finding top of design hierarchy..\n"); dict<Module*, int> db; |