aboutsummaryrefslogtreecommitdiffstats
path: root/backends/aiger
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2020-04-16 14:02:42 -0700
committerEddie Hung <eddie@fpgeh.com>2020-05-14 10:33:56 -0700
commite357b40e7ae8a907ef38b2d32c920aada3f1ed5a (patch)
tree384edfa61ecc0a6a84d3e9f0b9be6e1607ad1fb5 /backends/aiger
parent4017cc6380c3b13f416e55e4e65cf98e7caf45e1 (diff)
downloadyosys-e357b40e7ae8a907ef38b2d32c920aada3f1ed5a.tar.gz
yosys-e357b40e7ae8a907ef38b2d32c920aada3f1ed5a.tar.bz2
yosys-e357b40e7ae8a907ef38b2d32c920aada3f1ed5a.zip
xaiger: no longer use nonstandard even/odd to designate +ve/-ve polarity
Diffstat (limited to 'backends/aiger')
-rw-r--r--backends/aiger/xaiger.cc21
1 files changed, 5 insertions, 16 deletions
diff --git a/backends/aiger/xaiger.cc b/backends/aiger/xaiger.cc
index abb9ae30f..e1962119c 100644
--- a/backends/aiger/xaiger.cc
+++ b/backends/aiger/xaiger.cc
@@ -620,27 +620,16 @@ struct XAigerWriter
auto write_s_buffer = std::bind(write_buffer, std::ref(s_buffer), std::placeholders::_1);
write_s_buffer(ff_bits.size());
- dict<SigBit, int> clk_to_mergeability;
- for (const auto &i : ff_bits) {
- const Cell *cell = i.second;
- log_assert(cell->type.in(ID($_DFF_N_), ID($_DFF_P_)));
-
- SigBit clock = sigmap(cell->getPort(ID::C));
- clk_to_mergeability.insert(std::make_pair(clock, clk_to_mergeability.size()*2+1));
- }
-
+ dict<SigSpec, int> clk_to_mergeability;
for (const auto &i : ff_bits) {
const SigBit &d = i.first;
const Cell *cell = i.second;
- SigBit clock = sigmap(cell->getPort(ID::C));
- int mergeability = clk_to_mergeability.at(clock);
+ SigSpec clk_and_pol{sigmap(cell->getPort(ID::C)), cell->type[6] == 'P' ? State::S1 : State::S0};
+ auto r = clk_to_mergeability.insert(std::make_pair(clk_and_pol, clk_to_mergeability.size()+1));
+ int mergeability = r.first->second;
log_assert(mergeability > 0);
- if (cell->type == ID($_DFF_N_))
- write_r_buffer(mergeability);
- else if (cell->type == ID($_DFF_P_))
- write_r_buffer(mergeability+1);
- else log_abort();
+ write_r_buffer(mergeability);
SigBit Q = sigmap(cell->getPort(ID::Q));
State init = init_map.at(Q, State::Sx);