aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/xilinx/abc9_map.v
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-12-05 11:11:53 -0800
committerEddie Hung <eddie@fpgeh.com>2019-12-05 11:11:53 -0800
commit864bff14f11fc67bac40f77e5bf17c7fc61ad9f6 (patch)
tree17469a61dc43464cd8281cc046a8c9df3702d0a1 /techlibs/xilinx/abc9_map.v
parent0d248dd7bae707505071b309b55bac75facccab8 (diff)
downloadyosys-864bff14f11fc67bac40f77e5bf17c7fc61ad9f6.tar.gz
yosys-864bff14f11fc67bac40f77e5bf17c7fc61ad9f6.tar.bz2
yosys-864bff14f11fc67bac40f77e5bf17c7fc61ad9f6.zip
Revert "Special abc9_clock wire to contain only clock signal"
This reverts commit 6a2eb5d8f9286b9574647c03e2bdc8b63fccbe4d.
Diffstat (limited to 'techlibs/xilinx/abc9_map.v')
-rw-r--r--techlibs/xilinx/abc9_map.v22
1 files changed, 12 insertions, 10 deletions
diff --git a/techlibs/xilinx/abc9_map.v b/techlibs/xilinx/abc9_map.v
index d2159f82d..4d76a5232 100644
--- a/techlibs/xilinx/abc9_map.v
+++ b/techlibs/xilinx/abc9_map.v
@@ -62,8 +62,10 @@
// The purpose of the following FD* rules are to wrap the flop with:
// (a) a special $__ABC9_FF_ in front of the FD*'s output, indicating to abc9
// the connectivity of its basic D-Q flop
-// (b) a special _TECHMAP_REPLACE_.$abc9_clock wire to indicate its clock
-// signal, used to extract the delay target
+// (b) a special _TECHMAP_REPLACE_.$abc9_clock wire to capture its clock
+// domain (used when partitioning the module so that `abc9' only
+// performs sequential synthesis (with reachability analysis) correctly on
+// one domain at a time) and used to infert the delay target
// (c) a special _TECHMAP_REPLACE_.$abc9_control wire that captures the control
// domain (which, combined with this cell type, encodes to `abc9' which
// flops may be merged together)
@@ -107,7 +109,7 @@ module FDRE (output Q, input C, CE, D, R);
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q(QQ));
// Special signals
- wire [0:0] _TECHMAP_REPLACE_.$abc9_clock = C;
+ wire [1:0] _TECHMAP_REPLACE_.$abc9_clock = {C, IS_C_INVERTED};
wire [3:0] _TECHMAP_REPLACE_.$abc9_control = {CE, IS_D_INVERTED, R, IS_R_INVERTED};
wire [0:0] _TECHMAP_REPLACE_.$abc9_init = 1'b0;
wire [0:0] _TECHMAP_REPLACE_.$abc9_currQ = QQ;
@@ -135,7 +137,7 @@ module FDRE_1 (output Q, input C, CE, D, R);
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q(QQ));
// Special signals
- wire [0:0] _TECHMAP_REPLACE_.$abc9_clock = C;
+ wire [1:0] _TECHMAP_REPLACE_.$abc9_clock = {C, 1'b1 /* IS_C_INVERTED */};
wire [3:0] _TECHMAP_REPLACE_.$abc9_control = {CE, 1'b0 /* IS_D_INVERTED */, R, 1'b0 /* IS_R_INVERTED */};
wire [0:0] _TECHMAP_REPLACE_.$abc9_init = 1'b0;
wire [0:0] _TECHMAP_REPLACE_.$abc9_currQ = QQ;
@@ -185,7 +187,7 @@ module FDCE (output Q, input C, CE, D, CLR);
\$__ABC9_ASYNC abc_async (.A($abc9_currQ), .S(CLR ^ IS_CLR_INVERTED), .Y(QQ));
// Special signals
- wire [0:0] _TECHMAP_REPLACE_.$abc9_clock = C;
+ wire [1:0] _TECHMAP_REPLACE_.$abc9_clock = {C, IS_C_INVERTED};
wire [3:0] _TECHMAP_REPLACE_.$abc9_control = {CE, IS_D_INVERTED, CLR, IS_CLR_INVERTED};
wire [0:0] _TECHMAP_REPLACE_.$abc9_init = 1'b0;
wire [0:0] _TECHMAP_REPLACE_.$abc9_currQ = $abc9_currQ;
@@ -223,7 +225,7 @@ module FDCE_1 (output Q, input C, CE, D, CLR);
\$__ABC9_ASYNC abc_async (.A($abc9_currQ), .S(CLR), .Y(QQ));
// Special signals
- wire [0:0] _TECHMAP_REPLACE_.$abc9_clock = C;
+ wire [1:0] _TECHMAP_REPLACE_.$abc9_clock = {C, 1'b1 /* IS_C_INVERTED */};
wire [3:0] _TECHMAP_REPLACE_.$abc9_control = {CE, 1'b0 /* IS_D_INVERTED */, CLR, 1'b0 /* IS_CLR_INVERTED */};
wire [0:0] _TECHMAP_REPLACE_.$abc9_init = 1'b0;
wire [0:0] _TECHMAP_REPLACE_.$abc9_currQ = $abc9_currQ;
@@ -271,7 +273,7 @@ module FDPE (output Q, input C, CE, D, PRE);
\$__ABC9_ASYNC abc_async (.A($abc9_currQ), .S(PRE ^ IS_PRE_INVERTED), .Y(QQ));
// Special signals
- wire [0:0] _TECHMAP_REPLACE_.$abc9_clock = C;
+ wire [1:0] _TECHMAP_REPLACE_.$abc9_clock = {C, IS_C_INVERTED};
wire [3:0] _TECHMAP_REPLACE_.$abc9_control = {CE, IS_D_INVERTED, PRE, IS_PRE_INVERTED};
wire [0:0] _TECHMAP_REPLACE_.$abc9_init = 1'b0;
wire [0:0] _TECHMAP_REPLACE_.$abc9_currQ = $abc9_currQ;
@@ -309,7 +311,7 @@ module FDPE_1 (output Q, input C, CE, D, PRE);
\$__ABC9_ASYNC abc_async (.A($abc9_currQ), .S(PRE), .Y(QQ));
// Special signals
- wire [0:0] _TECHMAP_REPLACE_.$abc9_clock = C;
+ wire [1:0] _TECHMAP_REPLACE_.$abc9_clock = {C, 1'b1 /* IS_C_INVERTED */};
wire [3:0] _TECHMAP_REPLACE_.$abc9_control = {CE, 1'b0 /* IS_D_INVERTED */, PRE, 1'b0 /* IS_PRE_INVERTED */};
wire [0:0] _TECHMAP_REPLACE_.$abc9_init = 1'b0;
wire [0:0] _TECHMAP_REPLACE_.$abc9_currQ = $abc9_currQ;
@@ -346,7 +348,7 @@ module FDSE (output Q, input C, CE, D, S);
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q(QQ));
// Special signals
- wire [0:0] _TECHMAP_REPLACE_.$abc9_clock = C;
+ wire [1:0] _TECHMAP_REPLACE_.$abc9_clock = {C, IS_C_INVERTED};
wire [3:0] _TECHMAP_REPLACE_.$abc9_control = {CE, IS_D_INVERTED, S, IS_S_INVERTED};
wire [0:0] _TECHMAP_REPLACE_.$abc9_init = 1'b0;
wire [0:0] _TECHMAP_REPLACE_.$abc9_currQ = QQ;
@@ -373,7 +375,7 @@ module FDSE_1 (output Q, input C, CE, D, S);
\$__ABC9_FF_ abc_dff (.D($nextQ), .Q(QQ));
// Special signals
- wire [0:0] _TECHMAP_REPLACE_.$abc9_clock = C;
+ wire [1:0] _TECHMAP_REPLACE_.$abc9_clock = {C, 1'b1 /* IS_C_INVERTED */};
wire [3:0] _TECHMAP_REPLACE_.$abc9_control = {CE, 1'b0 /* IS_D_INVERTED */, S, 1'b0 /* IS_S_INVERTED */};
wire [0:0] _TECHMAP_REPLACE_.$abc9_init = 1'b0;
wire [0:0] _TECHMAP_REPLACE_.$abc9_currQ = QQ;