mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-23 09:05:32 +00:00
renamed SigSpec::to_single_sigbit() to SigSpec::as_bit(), added is_bit()
This commit is contained in:
parent
6af8076967
commit
7f110e7018
8 changed files with 34 additions and 34 deletions
|
@ -64,7 +64,7 @@ struct SpliceWorker
|
|||
return sliced_signals_cache.at(sig);
|
||||
|
||||
int offset = 0;
|
||||
int p = driven_bits_map.at(sig.extract(0, 1).to_single_sigbit()) - 1;
|
||||
int p = driven_bits_map.at(sig.extract(0, 1).as_bit()) - 1;
|
||||
while (driven_bits.at(p) != RTLIL::State::Sm)
|
||||
p--, offset++;
|
||||
|
||||
|
|
|
@ -59,8 +59,8 @@ struct EquivInductWorker
|
|||
cell_warn_cache.insert(cell);
|
||||
}
|
||||
if (cell->type == "$equiv") {
|
||||
SigBit bit_a = sigmap(cell->getPort("\\A")).to_single_sigbit();
|
||||
SigBit bit_b = sigmap(cell->getPort("\\B")).to_single_sigbit();
|
||||
SigBit bit_a = sigmap(cell->getPort("\\A")).as_bit();
|
||||
SigBit bit_b = sigmap(cell->getPort("\\B")).as_bit();
|
||||
if (bit_a != bit_b) {
|
||||
int ez_a = satgen.importSigBit(bit_a, step);
|
||||
int ez_b = satgen.importSigBit(bit_b, step);
|
||||
|
@ -137,8 +137,8 @@ struct EquivInductWorker
|
|||
|
||||
for (auto cell : workset)
|
||||
{
|
||||
SigBit bit_a = sigmap(cell->getPort("\\A")).to_single_sigbit();
|
||||
SigBit bit_b = sigmap(cell->getPort("\\B")).to_single_sigbit();
|
||||
SigBit bit_a = sigmap(cell->getPort("\\A")).as_bit();
|
||||
SigBit bit_b = sigmap(cell->getPort("\\B")).as_bit();
|
||||
|
||||
log(" Trying to prove $equiv for %s:", log_signal(sigmap(cell->getPort("\\Y"))));
|
||||
|
||||
|
|
|
@ -89,8 +89,8 @@ struct EquivSimpleWorker
|
|||
|
||||
bool run_cell()
|
||||
{
|
||||
SigBit bit_a = sigmap(equiv_cell->getPort("\\A")).to_single_sigbit();
|
||||
SigBit bit_b = sigmap(equiv_cell->getPort("\\B")).to_single_sigbit();
|
||||
SigBit bit_a = sigmap(equiv_cell->getPort("\\A")).as_bit();
|
||||
SigBit bit_b = sigmap(equiv_cell->getPort("\\B")).as_bit();
|
||||
int ez_context = ez->frozen_literal();
|
||||
|
||||
if (satgen.model_undef)
|
||||
|
@ -314,7 +314,7 @@ struct EquivSimplePass : public Pass {
|
|||
|
||||
for (auto cell : module->selected_cells())
|
||||
if (cell->type == "$equiv" && cell->getPort("\\A") != cell->getPort("\\B")) {
|
||||
auto bit = sigmap(cell->getPort("\\Y").to_single_sigbit());
|
||||
auto bit = sigmap(cell->getPort("\\Y").as_bit());
|
||||
auto bit_group = bit;
|
||||
if (!nogroup && bit_group.wire)
|
||||
bit_group.offset = 0;
|
||||
|
|
|
@ -78,7 +78,7 @@ struct FsmOpt
|
|||
|
||||
bool signal_is_unused(RTLIL::SigSpec sig)
|
||||
{
|
||||
RTLIL::SigBit bit = sig.to_single_sigbit();
|
||||
RTLIL::SigBit bit = sig.as_bit();
|
||||
|
||||
if (bit.wire == NULL || bit.wire->attributes.count("\\unused_bits") == 0)
|
||||
return false;
|
||||
|
|
|
@ -116,7 +116,7 @@ void create_dff_dq_map(std::map<RTLIL::IdString, dff_map_info_t> &map, RTLIL::De
|
|||
info.cell = it.second;
|
||||
|
||||
if (info.cell->type == "$dff") {
|
||||
info.bit_clk = sigmap(info.cell->getPort("\\CLK")).to_single_sigbit();
|
||||
info.bit_clk = sigmap(info.cell->getPort("\\CLK")).as_bit();
|
||||
info.clk_polarity = info.cell->parameters.at("\\CLK_POLARITY").as_bool();
|
||||
std::vector<RTLIL::SigBit> sig_d = sigmap(info.cell->getPort("\\D")).to_sigbit_vector();
|
||||
std::vector<RTLIL::SigBit> sig_q = sigmap(info.cell->getPort("\\Q")).to_sigbit_vector();
|
||||
|
@ -128,8 +128,8 @@ void create_dff_dq_map(std::map<RTLIL::IdString, dff_map_info_t> &map, RTLIL::De
|
|||
}
|
||||
|
||||
if (info.cell->type == "$adff") {
|
||||
info.bit_clk = sigmap(info.cell->getPort("\\CLK")).to_single_sigbit();
|
||||
info.bit_arst = sigmap(info.cell->getPort("\\ARST")).to_single_sigbit();
|
||||
info.bit_clk = sigmap(info.cell->getPort("\\CLK")).as_bit();
|
||||
info.bit_arst = sigmap(info.cell->getPort("\\ARST")).as_bit();
|
||||
info.clk_polarity = info.cell->parameters.at("\\CLK_POLARITY").as_bool();
|
||||
info.arst_polarity = info.cell->parameters.at("\\ARST_POLARITY").as_bool();
|
||||
std::vector<RTLIL::SigBit> sig_d = sigmap(info.cell->getPort("\\D")).to_sigbit_vector();
|
||||
|
@ -144,21 +144,21 @@ void create_dff_dq_map(std::map<RTLIL::IdString, dff_map_info_t> &map, RTLIL::De
|
|||
}
|
||||
|
||||
if (info.cell->type == "$_DFF_N_" || info.cell->type == "$_DFF_P_") {
|
||||
info.bit_clk = sigmap(info.cell->getPort("\\C")).to_single_sigbit();
|
||||
info.bit_clk = sigmap(info.cell->getPort("\\C")).as_bit();
|
||||
info.clk_polarity = info.cell->type == "$_DFF_P_";
|
||||
info.bit_d = sigmap(info.cell->getPort("\\D")).to_single_sigbit();
|
||||
bit_info[sigmap(info.cell->getPort("\\Q")).to_single_sigbit()] = info;
|
||||
info.bit_d = sigmap(info.cell->getPort("\\D")).as_bit();
|
||||
bit_info[sigmap(info.cell->getPort("\\Q")).as_bit()] = info;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (info.cell->type.size() == 10 && info.cell->type.substr(0, 6) == "$_DFF_") {
|
||||
info.bit_clk = sigmap(info.cell->getPort("\\C")).to_single_sigbit();
|
||||
info.bit_arst = sigmap(info.cell->getPort("\\R")).to_single_sigbit();
|
||||
info.bit_clk = sigmap(info.cell->getPort("\\C")).as_bit();
|
||||
info.bit_arst = sigmap(info.cell->getPort("\\R")).as_bit();
|
||||
info.clk_polarity = info.cell->type[6] == 'P';
|
||||
info.arst_polarity = info.cell->type[7] == 'P';
|
||||
info.arst_value = info.cell->type[0] == '1' ? RTLIL::State::S1 : RTLIL::State::S0;
|
||||
info.bit_d = sigmap(info.cell->getPort("\\D")).to_single_sigbit();
|
||||
bit_info[sigmap(info.cell->getPort("\\Q")).to_single_sigbit()] = info;
|
||||
info.bit_d = sigmap(info.cell->getPort("\\D")).as_bit();
|
||||
bit_info[sigmap(info.cell->getPort("\\Q")).as_bit()] = info;
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue