aboutsummaryrefslogtreecommitdiffstats
path: root/passes/techmap/attrmap.cc
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-07-15 09:49:41 -0700
committerEddie Hung <eddie@fpgeh.com>2019-07-15 09:49:41 -0700
commit146451a767bc0ba77da86bdb8ebec5d3387b49ca (patch)
tree4477f092c352de034fef1a315a542778185d90ce /passes/techmap/attrmap.cc
parentb33ecd2a746b734fda33d8535afecf76bd35f59c (diff)
parenta97d30d2f88d2f7a41abf8b913bbc017b60d8c7d (diff)
downloadyosys-146451a767bc0ba77da86bdb8ebec5d3387b49ca.tar.gz
yosys-146451a767bc0ba77da86bdb8ebec5d3387b49ca.tar.bz2
yosys-146451a767bc0ba77da86bdb8ebec5d3387b49ca.zip
Merge remote-tracking branch 'origin/master' into xc7dsp
Diffstat (limited to 'passes/techmap/attrmap.cc')
-rw-r--r--passes/techmap/attrmap.cc19
1 files changed, 19 insertions, 0 deletions
diff --git a/passes/techmap/attrmap.cc b/passes/techmap/attrmap.cc
index aa48e1125..a38638e0b 100644
--- a/passes/techmap/attrmap.cc
+++ b/passes/techmap/attrmap.cc
@@ -263,6 +263,25 @@ struct AttrmapPass : public Pass {
for (auto cell : module->selected_cells())
attrmap_apply(stringf("%s.%s", log_id(module), log_id(cell)), actions, cell->attributes);
+
+ for (auto proc : module->processes)
+ {
+ if (!design->selected(module, proc.second))
+ continue;
+ attrmap_apply(stringf("%s.%s", log_id(module), log_id(proc.first)), actions, proc.second->attributes);
+
+ std::vector<RTLIL::CaseRule*> all_cases = {&proc.second->root_case};
+ while (!all_cases.empty()) {
+ RTLIL::CaseRule *cs = all_cases.back();
+ all_cases.pop_back();
+ attrmap_apply(stringf("%s.%s (case)", log_id(module), log_id(proc.first)), actions, cs->attributes);
+
+ for (auto &sw : cs->switches) {
+ attrmap_apply(stringf("%s.%s (switch)", log_id(module), log_id(proc.first)), actions, sw->attributes);
+ all_cases.insert(all_cases.end(), sw->cases.begin(), sw->cases.end());
+ }
+ }
+ }
}
}
}