yosys/passes/opt/opt.cc

169 lines
5.4 KiB
C++
Raw Normal View History

2013-01-05 04:13:26 -06:00
/*
* yosys -- Yosys Open SYnthesis Suite
*
* Copyright (C) 2012 Clifford Wolf <clifford@clifford.at>
2015-07-02 04:14:30 -05:00
*
2013-01-05 04:13:26 -06:00
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
2015-07-02 04:14:30 -05:00
*
2013-01-05 04:13:26 -06:00
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
*/
#include "kernel/register.h"
#include "kernel/log.h"
#include <stdlib.h>
#include <stdio.h>
2014-09-27 09:17:53 -05:00
USING_YOSYS_NAMESPACE
PRIVATE_NAMESPACE_BEGIN
2013-01-05 04:13:26 -06:00
struct OptPass : public Pass {
2013-03-01 01:58:55 -06:00
OptPass() : Pass("opt", "perform simple optimizations") { }
void help() YS_OVERRIDE
2013-03-01 01:58:55 -06:00
{
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
log("\n");
2014-07-21 14:38:55 -05:00
log(" opt [options] [selection]\n");
2013-03-01 01:58:55 -06:00
log("\n");
2013-03-01 05:35:12 -06:00
log("This pass calls all the other opt_* passes in a useful order. This performs\n");
2013-03-01 01:58:55 -06:00
log("a series of trivial optimizations and cleanups. This pass executes the other\n");
log("passes in the following order:\n");
log("\n");
2016-03-31 01:43:28 -05:00
log(" opt_expr [-mux_undef] [-mux_bool] [-undriven] [-clkinv] [-fine] [-full] [-keepdc]\n");
2016-03-31 01:52:49 -05:00
log(" opt_merge [-share_all] -nomux\n");
2013-03-01 01:58:55 -06:00
log("\n");
log(" do\n");
log(" opt_muxtree\n");
log(" opt_reduce [-fine] [-full]\n");
2016-03-31 01:52:49 -05:00
log(" opt_merge [-share_all]\n");
2016-09-30 10:02:38 -05:00
log(" opt_rmdff [-keepdc]\n");
log(" opt_clean [-purge]\n");
2016-03-31 01:43:28 -05:00
log(" opt_expr [-mux_undef] [-mux_bool] [-undriven] [-clkinv] [-fine] [-full] [-keepdc]\n");
2014-07-21 14:38:55 -05:00
log(" while <changed design>\n");
log("\n");
2014-08-16 08:34:15 -05:00
log("When called with -fast the following script is used instead:\n");
log("\n");
log(" do\n");
2016-03-31 01:43:28 -05:00
log(" opt_expr [-mux_undef] [-mux_bool] [-undriven] [-clkinv] [-fine] [-full] [-keepdc]\n");
2016-03-31 01:52:49 -05:00
log(" opt_merge [-share_all]\n");
2016-09-30 10:02:38 -05:00
log(" opt_rmdff [-keepdc]\n");
2014-08-16 08:34:15 -05:00
log(" opt_clean [-purge]\n");
log(" while <changed design in opt_rmdff>\n");
log("\n");
2014-07-21 14:38:55 -05:00
log("Note: Options in square brackets (such as [-keepdc]) are passed through to\n");
log("the opt_* commands when given to 'opt'.\n");
2013-03-01 01:58:55 -06:00
log("\n");
2014-08-16 08:34:15 -05:00
log("\n");
2013-03-01 01:58:55 -06:00
}
void execute(std::vector<std::string> args, RTLIL::Design *design) YS_OVERRIDE
2013-01-05 04:13:26 -06:00
{
std::string opt_clean_args;
2016-03-31 01:43:28 -05:00
std::string opt_expr_args;
std::string opt_reduce_args;
2016-03-31 01:52:49 -05:00
std::string opt_merge_args;
2016-09-30 10:02:38 -05:00
std::string opt_rmdff_args;
2014-08-16 08:34:15 -05:00
bool fast_mode = false;
2014-02-02 15:11:08 -06:00
2016-04-21 16:28:37 -05:00
log_header(design, "Executing OPT pass (performing simple optimizations).\n");
2013-01-05 04:13:26 -06:00
log_push();
2014-02-02 15:11:08 -06:00
size_t argidx;
for (argidx = 1; argidx < args.size(); argidx++) {
if (args[argidx] == "-purge") {
opt_clean_args += " -purge";
continue;
}
2014-02-02 15:11:08 -06:00
if (args[argidx] == "-mux_undef") {
2016-03-31 01:43:28 -05:00
opt_expr_args += " -mux_undef";
2014-02-02 15:11:08 -06:00
continue;
}
if (args[argidx] == "-mux_bool") {
2016-03-31 01:43:28 -05:00
opt_expr_args += " -mux_bool";
2014-02-02 15:11:08 -06:00
continue;
}
2014-02-06 08:49:03 -06:00
if (args[argidx] == "-undriven") {
2016-03-31 01:43:28 -05:00
opt_expr_args += " -undriven";
2014-02-06 08:49:03 -06:00
continue;
}
2015-07-01 03:49:21 -05:00
if (args[argidx] == "-clkinv") {
2016-03-31 01:43:28 -05:00
opt_expr_args += " -clkinv";
2015-07-01 03:49:21 -05:00
continue;
}
if (args[argidx] == "-fine") {
2016-03-31 01:43:28 -05:00
opt_expr_args += " -fine";
opt_reduce_args += " -fine";
continue;
}
if (args[argidx] == "-full") {
2016-03-31 01:43:28 -05:00
opt_expr_args += " -full";
opt_reduce_args += " -full";
continue;
}
2014-07-21 14:38:55 -05:00
if (args[argidx] == "-keepdc") {
2016-03-31 01:43:28 -05:00
opt_expr_args += " -keepdc";
2016-09-30 10:02:38 -05:00
opt_rmdff_args += " -keepdc";
2014-07-21 14:38:55 -05:00
continue;
}
2015-05-31 07:24:34 -05:00
if (args[argidx] == "-share_all") {
2016-03-31 01:52:49 -05:00
opt_merge_args += " -share_all";
2015-05-31 07:24:34 -05:00
continue;
}
2014-08-16 08:34:15 -05:00
if (args[argidx] == "-fast") {
fast_mode = true;
continue;
}
2014-02-02 15:11:08 -06:00
break;
}
extra_args(args, argidx, design);
2013-01-05 04:13:26 -06:00
2014-08-16 08:34:15 -05:00
if (fast_mode)
{
while (1) {
2016-03-31 01:43:28 -05:00
Pass::call(design, "opt_expr" + opt_expr_args);
2016-03-31 01:52:49 -05:00
Pass::call(design, "opt_merge" + opt_merge_args);
2014-08-30 12:37:12 -05:00
design->scratchpad_unset("opt.did_something");
2016-09-30 10:02:38 -05:00
Pass::call(design, "opt_rmdff" + opt_rmdff_args);
2014-08-30 12:37:12 -05:00
if (design->scratchpad_get_bool("opt.did_something") == false)
2014-08-16 08:34:15 -05:00
break;
Pass::call(design, "opt_clean" + opt_clean_args);
2016-04-21 16:28:37 -05:00
log_header(design, "Rerunning OPT passes. (Removed registers in this run.)\n");
2014-08-16 08:34:15 -05:00
}
Pass::call(design, "opt_clean" + opt_clean_args);
2014-08-16 08:34:15 -05:00
}
else
{
2016-03-31 01:43:28 -05:00
Pass::call(design, "opt_expr" + opt_expr_args);
2016-03-31 01:52:49 -05:00
Pass::call(design, "opt_merge -nomux" + opt_merge_args);
2014-08-16 08:34:15 -05:00
while (1) {
2014-08-30 12:37:12 -05:00
design->scratchpad_unset("opt.did_something");
2014-08-16 08:34:15 -05:00
Pass::call(design, "opt_muxtree");
Pass::call(design, "opt_reduce" + opt_reduce_args);
2016-03-31 01:52:49 -05:00
Pass::call(design, "opt_merge" + opt_merge_args);
2016-09-30 10:02:38 -05:00
Pass::call(design, "opt_rmdff" + opt_rmdff_args);
2014-08-16 08:34:15 -05:00
Pass::call(design, "opt_clean" + opt_clean_args);
2016-03-31 01:43:28 -05:00
Pass::call(design, "opt_expr" + opt_expr_args);
2014-08-30 12:37:12 -05:00
if (design->scratchpad_get_bool("opt.did_something") == false)
2014-08-16 08:34:15 -05:00
break;
2016-04-21 16:28:37 -05:00
log_header(design, "Rerunning OPT passes. (Maybe there is more to do..)\n");
2014-08-16 08:34:15 -05:00
}
2013-01-05 04:13:26 -06:00
}
2015-02-24 15:31:30 -06:00
design->optimize();
design->sort();
design->check();
2016-04-21 16:28:37 -05:00
log_header(design, fast_mode ? "Finished fast OPT passes.\n" : "Finished OPT passes. (There is nothing left to do.)\n");
2013-01-05 04:13:26 -06:00
log_pop();
}
} OptPass;
2015-07-02 04:14:30 -05:00
2014-09-27 09:17:53 -05:00
PRIVATE_NAMESPACE_END