diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-04-25 17:11:18 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-04-25 17:11:18 -0700 |
commit | feff9764540cbf1152459cb377fc68d8e10c7153 (patch) | |
tree | 451373dbb62c2c2eaf8a34a2577e84d6cfe54d7e /techlibs/xilinx | |
parent | eec314e2621d3d055d7810f4b7e573a99e0239b2 (diff) | |
download | yosys-feff9764540cbf1152459cb377fc68d8e10c7153.tar.gz yosys-feff9764540cbf1152459cb377fc68d8e10c7153.tar.bz2 yosys-feff9764540cbf1152459cb377fc68d8e10c7153.zip |
synth_xilinx to call bitblast_shiftx
Diffstat (limited to 'techlibs/xilinx')
-rw-r--r-- | techlibs/xilinx/synth_xilinx.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/techlibs/xilinx/synth_xilinx.cc b/techlibs/xilinx/synth_xilinx.cc index 9e4a86a84..d787687aa 100644 --- a/techlibs/xilinx/synth_xilinx.cc +++ b/techlibs/xilinx/synth_xilinx.cc @@ -126,6 +126,7 @@ struct SynthXilinxPass : public Pass log("\n"); log(" map_cells:\n"); log(" pmux2shiftx (without '-nosrl' and '-nomux' only)\n"); + log(" bitblast_shiftx (without '-nosrl' and '-nomux' only)\n"); log(" simplemap t:$dff t:$dffe (without '-nosrl' only)\n"); log(" opt_expr -mux_undef (without '-nosrl' only)\n"); log(" shregmap -tech xilinx -minlen 3 (without '-nosrl' only)\n"); @@ -309,8 +310,10 @@ struct SynthXilinxPass : public Pass // cells for identifying variable-length shift registers, // so attempt to convert $pmux-es to the former // Also: wide multiplexer inference benefits from this too - if (!nosrl || !nomux) + if (!nosrl || !nomux) { Pass::call(design, "pmux2shiftx"); + Pass::call(design, "bitblast_shiftx"); + } if (!nosrl) { // shregmap operates on bit-level flops, not word-level, |