aboutsummaryrefslogtreecommitdiffstats
path: root/passes/proc/proc_arst.cc
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-07-26 16:00:30 +0200
committerClifford Wolf <clifford@clifford.at>2014-07-26 16:00:30 +0200
commita84cb0493566f8f5eb610c6d7b67dda85b0f227b (patch)
treee4b1c2f97db2c317f8b986635141dfd7bb8e78d8 /passes/proc/proc_arst.cc
parentcd6574ecf652901573cbc6b89e1a59dd383ec496 (diff)
parentf8fdc47d3361c1a3445a9357ca26cfe75907d6b0 (diff)
downloadyosys-a84cb0493566f8f5eb610c6d7b67dda85b0f227b.tar.gz
yosys-a84cb0493566f8f5eb610c6d7b67dda85b0f227b.tar.bz2
yosys-a84cb0493566f8f5eb610c6d7b67dda85b0f227b.zip
Merge automatic and manual code changes for new cell connections API
Diffstat (limited to 'passes/proc/proc_arst.cc')
-rw-r--r--passes/proc/proc_arst.cc44
1 files changed, 22 insertions, 22 deletions
diff --git a/passes/proc/proc_arst.cc b/passes/proc/proc_arst.cc
index ce3133601..114f2567e 100644
--- a/passes/proc/proc_arst.cc
+++ b/passes/proc/proc_arst.cc
@@ -35,40 +35,40 @@ static bool check_signal(RTLIL::Module *mod, RTLIL::SigSpec signal, RTLIL::SigSp
for (auto &cell_it : mod->cells) {
RTLIL::Cell *cell = cell_it.second;
- if (cell->type == "$reduce_or" && cell->connections_["\\Y"] == signal)
- return check_signal(mod, cell->connections_["\\A"], ref, polarity);
- if (cell->type == "$reduce_bool" && cell->connections_["\\Y"] == signal)
- return check_signal(mod, cell->connections_["\\A"], ref, polarity);
- if (cell->type == "$logic_not" && cell->connections_["\\Y"] == signal) {
+ if (cell->type == "$reduce_or" && cell->get("\\Y") == signal)
+ return check_signal(mod, cell->get("\\A"), ref, polarity);
+ if (cell->type == "$reduce_bool" && cell->get("\\Y") == signal)
+ return check_signal(mod, cell->get("\\A"), ref, polarity);
+ if (cell->type == "$logic_not" && cell->get("\\Y") == signal) {
polarity = !polarity;
- return check_signal(mod, cell->connections_["\\A"], ref, polarity);
+ return check_signal(mod, cell->get("\\A"), ref, polarity);
}
- if (cell->type == "$not" && cell->connections_["\\Y"] == signal) {
+ if (cell->type == "$not" && cell->get("\\Y") == signal) {
polarity = !polarity;
- return check_signal(mod, cell->connections_["\\A"], ref, polarity);
+ return check_signal(mod, cell->get("\\A"), ref, polarity);
}
- if ((cell->type == "$eq" || cell->type == "$eqx") && cell->connections_["\\Y"] == signal) {
- if (cell->connections_["\\A"].is_fully_const()) {
- if (!cell->connections_["\\A"].as_bool())
+ if ((cell->type == "$eq" || cell->type == "$eqx") && cell->get("\\Y") == signal) {
+ if (cell->get("\\A").is_fully_const()) {
+ if (!cell->get("\\A").as_bool())
polarity = !polarity;
- return check_signal(mod, cell->connections_["\\B"], ref, polarity);
+ return check_signal(mod, cell->get("\\B"), ref, polarity);
}
- if (cell->connections_["\\B"].is_fully_const()) {
- if (!cell->connections_["\\B"].as_bool())
+ if (cell->get("\\B").is_fully_const()) {
+ if (!cell->get("\\B").as_bool())
polarity = !polarity;
- return check_signal(mod, cell->connections_["\\A"], ref, polarity);
+ return check_signal(mod, cell->get("\\A"), ref, polarity);
}
}
- if ((cell->type == "$ne" || cell->type == "$nex") && cell->connections_["\\Y"] == signal) {
- if (cell->connections_["\\A"].is_fully_const()) {
- if (cell->connections_["\\A"].as_bool())
+ if ((cell->type == "$ne" || cell->type == "$nex") && cell->get("\\Y") == signal) {
+ if (cell->get("\\A").is_fully_const()) {
+ if (cell->get("\\A").as_bool())
polarity = !polarity;
- return check_signal(mod, cell->connections_["\\B"], ref, polarity);
+ return check_signal(mod, cell->get("\\B"), ref, polarity);
}
- if (cell->connections_["\\B"].is_fully_const()) {
- if (cell->connections_["\\B"].as_bool())
+ if (cell->get("\\B").is_fully_const()) {
+ if (cell->get("\\B").as_bool())
polarity = !polarity;
- return check_signal(mod, cell->connections_["\\A"], ref, polarity);
+ return check_signal(mod, cell->get("\\A"), ref, polarity);
}
}
}