aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Ravensloft <dan.ravensloft@gmail.com>2021-03-05 22:13:15 +0000
committerMarcelina Koƛcielnicka <mwk@0x04.net>2021-03-07 18:52:14 +0100
commit9cdc6b5f2e416cd469a2480460986189f61b10a7 (patch)
treef95a183ccc8a201df95dddce5466d37c51fdef72
parent9bb839c613aff1d7658eac8ec46c3dcd3b220c5f (diff)
downloadyosys-9cdc6b5f2e416cd469a2480460986189f61b10a7.tar.gz
yosys-9cdc6b5f2e416cd469a2480460986189f61b10a7.tar.bz2
yosys-9cdc6b5f2e416cd469a2480460986189f61b10a7.zip
Replace assert in abc9_ops with more useful error message
-rw-r--r--passes/techmap/abc9_ops.cc10
1 files changed, 9 insertions, 1 deletions
diff --git a/passes/techmap/abc9_ops.cc b/passes/techmap/abc9_ops.cc
index 98d0207c4..3f3e667de 100644
--- a/passes/techmap/abc9_ops.cc
+++ b/passes/techmap/abc9_ops.cc
@@ -778,7 +778,15 @@ void prep_xaiger(RTLIL::Module *module, bool dff)
continue;
if (!box_module->get_bool_attribute(ID::abc9_box))
continue;
- log_assert(cell->parameters.empty());
+ if (!cell->parameters.empty())
+ // At this stage of the ABC9 flow, all modules must be nonparametric, because ABC itself requires concrete netlists, and the presence of
+ // parameters implies a non-concrete netlist. This error needs some explaining, because there are (at least) two ways to get this:
+ // 1) You have an (* abc9_box *) parametric whitebox but due to a bug somewhere this hasn't been monomorphised into a concrete blackbox.
+ // This is a bug, and a bug report would be welcomed.
+ // 2) You have an (* abc9_box *) parametric blackbox (e.g. to store associated cell data) but want to provide timing data for ABC9.
+ // This is not supported due to the presence of parameters. If you want to store associated cell data for a box, one approach could be
+ // to techmap the parameters to constant module inputs, and then after ABC9 use _TECHMAP_CONSTVAL_XX_ to retrieve the values again.
+ log_error("Black box '%s' is marked (* abc9_box *) and has parameters, which is forbidden in prep_xaiger\n", log_id(cell_name));
log_assert(box_module->get_blackbox_attribute());
cell->attributes[ID::abc9_box_seq] = box_count++;