mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
Get wire via SigBit
This commit is contained in:
parent
52fea5b658
commit
cab2bd083e
|
@ -11,7 +11,7 @@ endcode
|
||||||
match first
|
match first
|
||||||
select first->type.in($_DFF_N_, $_DFF_P_, $_DFFE_NN_, $_DFFE_NP_, $_DFFE_PN_, $_DFFE_PP_, \FDRE, \FDRE_1)
|
select first->type.in($_DFF_N_, $_DFF_P_, $_DFFE_NN_, $_DFFE_NP_, $_DFFE_PN_, $_DFFE_PP_, \FDRE, \FDRE_1)
|
||||||
select !first->get_bool_attribute(\keep)
|
select !first->get_bool_attribute(\keep)
|
||||||
select !port(first, \Q).as_wire()->get_bool_attribute(\keep)
|
select !port(first, \Q)[0].wire->get_bool_attribute(\keep)
|
||||||
filter !non_first_cells.count(first)
|
filter !non_first_cells.count(first)
|
||||||
//generate
|
//generate
|
||||||
// SigSpec A = module->addWire(NEW_ID);
|
// SigSpec A = module->addWire(NEW_ID);
|
||||||
|
@ -49,13 +49,13 @@ subpattern setup
|
||||||
match first
|
match first
|
||||||
select first->type.in($_DFF_N_, $_DFF_P_, $_DFFE_NN_, $_DFFE_NP_, $_DFFE_PN_, $_DFFE_PP_, \FDRE, \FDRE_1)
|
select first->type.in($_DFF_N_, $_DFF_P_, $_DFFE_NN_, $_DFFE_NP_, $_DFFE_PN_, $_DFFE_PP_, \FDRE, \FDRE_1)
|
||||||
select !first->get_bool_attribute(\keep)
|
select !first->get_bool_attribute(\keep)
|
||||||
select !port(first, \Q).as_wire()->get_bool_attribute(\keep)
|
select !port(first, \Q)[0].wire->get_bool_attribute(\keep)
|
||||||
endmatch
|
endmatch
|
||||||
|
|
||||||
match next
|
match next
|
||||||
select next->type.in($_DFF_N_, $_DFF_P_, $_DFFE_NN_, $_DFFE_NP_, $_DFFE_PN_, $_DFFE_PP_, \FDRE, \FDRE_1)
|
select next->type.in($_DFF_N_, $_DFF_P_, $_DFFE_NN_, $_DFFE_NP_, $_DFFE_PN_, $_DFFE_PP_, \FDRE, \FDRE_1)
|
||||||
select !next->get_bool_attribute(\keep)
|
select !next->get_bool_attribute(\keep)
|
||||||
select !port(next, \Q).as_wire()->get_bool_attribute(\keep)
|
select !port(next, \Q)[0].wire->get_bool_attribute(\keep)
|
||||||
select nusers(port(next, \Q)) == 2
|
select nusers(port(next, \Q)) == 2
|
||||||
index <IdString> next->type === first->type
|
index <IdString> next->type === first->type
|
||||||
index <SigSpec> port(next, \Q) === port(first, \D)
|
index <SigSpec> port(next, \Q) === port(first, \D)
|
||||||
|
@ -74,7 +74,7 @@ match next
|
||||||
semioptional
|
semioptional
|
||||||
select next->type.in($_DFF_N_, $_DFF_P_, $_DFFE_NN_, $_DFFE_NP_, $_DFFE_PN_, $_DFFE_PP_, \FDRE, \FDRE_1)
|
select next->type.in($_DFF_N_, $_DFF_P_, $_DFFE_NN_, $_DFFE_NP_, $_DFFE_PN_, $_DFFE_PP_, \FDRE, \FDRE_1)
|
||||||
select !next->get_bool_attribute(\keep)
|
select !next->get_bool_attribute(\keep)
|
||||||
select !port(next, \Q).as_wire()->get_bool_attribute(\keep)
|
select !port(next, \Q)[0].wire->get_bool_attribute(\keep)
|
||||||
select nusers(port(next, \Q)) == 2
|
select nusers(port(next, \Q)) == 2
|
||||||
index <IdString> next->type === chain.back()->type
|
index <IdString> next->type === chain.back()->type
|
||||||
index <SigSpec> port(next, \Q) === port(chain.back(), \D)
|
index <SigSpec> port(next, \Q) === port(chain.back(), \D)
|
||||||
|
|
Loading…
Reference in a new issue