diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-05-02 11:25:34 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-05-02 11:25:34 -0700 |
commit | 8829cba9016fb43ba393eeff887e7788abaec242 (patch) | |
tree | a44171fe85cc41197ee834daa34ee545b4b49473 /passes/opt | |
parent | 95867109ea4201d77a95a22f51cd3c4309ff8240 (diff) | |
parent | b515fd2d25851c90c9a0b08414c5ea5edeb916a0 (diff) | |
download | yosys-8829cba9016fb43ba393eeff887e7788abaec242.tar.gz yosys-8829cba9016fb43ba393eeff887e7788abaec242.tar.bz2 yosys-8829cba9016fb43ba393eeff887e7788abaec242.zip |
Merge remote-tracking branch 'origin/clifford/pmgenstuff' into xc7mux
Diffstat (limited to 'passes/opt')
-rw-r--r-- | passes/opt/wreduce.cc | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/passes/opt/wreduce.cc b/passes/opt/wreduce.cc index f3b982e6c..96a77c119 100644 --- a/passes/opt/wreduce.cc +++ b/passes/opt/wreduce.cc @@ -533,6 +533,42 @@ struct WreducePass : public Pass { module->connect(sig, Const(0, GetSize(sig))); } } + + if (c->type.in("$div", "$mod", "$pow")) + { + SigSpec A = c->getPort("\\A"); + int original_a_width = GetSize(A); + if (c->getParam("\\A_SIGNED").as_bool()) { + while (GetSize(A) > 1 && A[GetSize(A)-1] == State::S0 && A[GetSize(A)-2] == State::S0) + A.remove(GetSize(A)-1, 1); + } else { + while (GetSize(A) > 0 && A[GetSize(A)-1] == State::S0) + A.remove(GetSize(A)-1, 1); + } + if (original_a_width != GetSize(A)) { + log("Removed top %d bits (of %d) from port A of cell %s.%s (%s).\n", + original_a_width-GetSize(A), original_a_width, log_id(module), log_id(c), log_id(c->type)); + c->setPort("\\A", A); + c->setParam("\\A_WIDTH", GetSize(A)); + } + + SigSpec B = c->getPort("\\B"); + int original_b_width = GetSize(B); + if (c->getParam("\\B_SIGNED").as_bool()) { + while (GetSize(B) > 1 && B[GetSize(B)-1] == State::S0 && B[GetSize(B)-2] == State::S0) + B.remove(GetSize(B)-1, 1); + } else { + while (GetSize(B) > 0 && B[GetSize(B)-1] == State::S0) + B.remove(GetSize(B)-1, 1); + } + if (original_b_width != GetSize(B)) { + log("Removed top %d bits (of %d) from port B of cell %s.%s (%s).\n", + original_b_width-GetSize(B), original_b_width, log_id(module), log_id(c), log_id(c->type)); + c->setPort("\\B", B); + c->setParam("\\B_WIDTH", GetSize(B)); + } + } + if (!opt_memx && c->type.in("$memrd", "$memwr", "$meminit")) { IdString memid = c->getParam("\\MEMID").decode_string(); RTLIL::Memory *mem = module->memories.at(memid); |