SigBit wirebit(wire, i);
SigBit bit = sigmap(wirebit);
- if (bit.wire == nullptr) {
- if (wire->port_output) {
- aig_map[wirebit] = (bit == State::S1) ? 1 : 0;
- output_bits.insert(wirebit);
- }
- continue;
- }
-
undriven_bits.insert(bit);
unused_bits.insert(bit);
}
if (wire->port_output || keep) {
- if (bit != wirebit)
+ if (bit != wirebit) {
alias_map[wirebit] = bit;
+ undriven_bits.insert(wirebit);
+ }
output_bits.insert(wirebit);
}
}
for (auto bit : input_bits)
undriven_bits.erase(sigmap(bit));
-
for (auto bit : output_bits)
if (!bit.wire->port_input)
unused_bits.erase(bit);
TopoSort<IdString, RTLIL::sort_by_id_str> toposort;
bool abc_box_seen = false;
- for (auto cell : module->cells())
- {
+ for (auto cell : module->cells()) {
RTLIL::Module* inst_module = module->design->module(cell->type);
bool builtin_type = yosys_celltypes.cell_known(cell->type);
bool abc_type = inst_module && inst_module->attributes.count("\\abc_box_id");
else {
for (const auto &c : cell->connections()) {
if (c.second.is_fully_const()) continue;
- for (auto b : c.second.bits()) {
- Wire *w = b.wire;
- if (!w) continue;
- auto is_input = cell->input(c.first);
- auto is_output = cell->output(c.first);
- log_assert(is_input || is_output);
- if (is_input) {
- if (!w->port_input) {
+ auto is_input = cell->input(c.first);
+ auto is_output = cell->output(c.first);
+ log_assert(is_input || is_output);
+
+ if (is_input) {
+ for (auto b : c.second.bits()) {
+ Wire *w = b.wire;
+ if (!w) continue;
+ if (!w->port_output) {
SigBit I = sigmap(b);
if (I != b)
alias_map[b] = I;
unused_bits.erase(b);
}
}
- if (is_output) {
+ }
+ if (is_output) {
+ for (auto b : c.second.bits()) {
+ Wire *w = b.wire;
+ if (!w) continue;
input_bits.insert(b);
SigBit O = sigmap(b);
if (O != b)
wire [2*M-1:0] mask = {M{1'b1}};
assign dout = (mask << din[N-1:0]) >> M;
endmodule
+
+module abc9_test024(input [3:0] i, output [3:0] o);
+abc9_test024_sub a(i[1:0], o[1:0]);
+endmodule
+
+module abc9_test024_sub(input [1:0] i, output [1:0] o);
+assign o = i;
+endmodule
+
+module abc9_test025(input [3:0] i, output [3:0] o);
+abc9_test024_sub a(i[2:1], o[2:1]);
+endmodule