mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-31 08:23:19 +00:00
Renamed opt_rmunused to opt_clean
This commit is contained in:
parent
29d6ebd961
commit
c32b918681
7 changed files with 17 additions and 17 deletions
|
@ -31,17 +31,17 @@ struct FsmPass : public Pass {
|
|||
log(" fsm [options] [selection]\n");
|
||||
log("\n");
|
||||
log("This pass calls all the other fsm_* passes in a useful order. This performs\n");
|
||||
log("FSM extraction and optimiziation. It also calls opt_rmunused as needed:\n");
|
||||
log("FSM extraction and optimiziation. It also calls opt_clean as needed:\n");
|
||||
log("\n");
|
||||
log(" fsm_detect unless got option -nodetect\n");
|
||||
log(" fsm_extract\n");
|
||||
log("\n");
|
||||
log(" fsm_opt\n");
|
||||
log(" opt_rmunused\n");
|
||||
log(" opt_clean\n");
|
||||
log(" fsm_opt\n");
|
||||
log("\n");
|
||||
log(" fsm_expand if got option -expand\n");
|
||||
log(" opt_rmunused if got option -expand\n");
|
||||
log(" opt_clean if got option -expand\n");
|
||||
log(" fsm_opt if got option -expand\n");
|
||||
log("\n");
|
||||
log(" fsm_recode unless got option -norecode\n");
|
||||
|
@ -114,12 +114,12 @@ struct FsmPass : public Pass {
|
|||
Pass::call(design, "fsm_extract");
|
||||
|
||||
Pass::call(design, "fsm_opt");
|
||||
Pass::call(design, "opt_rmunused");
|
||||
Pass::call(design, "opt_clean");
|
||||
Pass::call(design, "fsm_opt");
|
||||
|
||||
if (flag_expand) {
|
||||
Pass::call(design, "fsm_expand");
|
||||
Pass::call(design, "opt_rmunused");
|
||||
Pass::call(design, "opt_clean");
|
||||
Pass::call(design, "fsm_opt");
|
||||
}
|
||||
|
||||
|
|
|
@ -329,7 +329,7 @@ struct FsmExtractPass : public Pass {
|
|||
log("\n");
|
||||
log("The generated FSM cell still generates the original state signal with its\n");
|
||||
log("original encoding. The 'fsm_opt' pass can be used in combination with the\n");
|
||||
log("'opt_rmunused' pass to eliminate this signal.\n");
|
||||
log("'opt_clean' pass to eliminate this signal.\n");
|
||||
log("\n");
|
||||
}
|
||||
virtual void execute(std::vector<std::string> args, RTLIL::Design *design)
|
||||
|
|
|
@ -278,7 +278,7 @@ struct FsmOptPass : public Pass {
|
|||
log("\n");
|
||||
log("This pass optimizes FSM cells. It detects which output signals are actually\n");
|
||||
log("not used and removes them from the FSM. This pass is usually used in\n");
|
||||
log("combination with the 'opt_rmunused' pass (see also 'help fsm').\n");
|
||||
log("combination with the 'opt_clean' pass (see also 'help fsm').\n");
|
||||
log("\n");
|
||||
}
|
||||
virtual void execute(std::vector<std::string> args, RTLIL::Design *design)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue