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") { }
|
|
|
|
virtual void help()
|
|
|
|
{
|
|
|
|
// |---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");
|
2015-07-01 03:49:21 -05:00
|
|
|
log(" opt_const [-mux_undef] [-mux_bool] [-undriven] [-clkinv] [-fine] [-full] [-keepdc]\n");
|
2015-05-31 07:24:34 -05:00
|
|
|
log(" opt_share [-share_all] -nomux\n");
|
2013-03-01 01:58:55 -06:00
|
|
|
log("\n");
|
|
|
|
log(" do\n");
|
|
|
|
log(" opt_muxtree\n");
|
2014-10-30 21:36:51 -05:00
|
|
|
log(" opt_reduce [-fine] [-full]\n");
|
2015-05-31 07:24:34 -05:00
|
|
|
log(" opt_share [-share_all]\n");
|
2013-03-01 01:58:55 -06:00
|
|
|
log(" opt_rmdff\n");
|
2014-02-08 07:21:34 -06:00
|
|
|
log(" opt_clean [-purge]\n");
|
2015-07-01 03:49:21 -05:00
|
|
|
log(" opt_const [-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");
|
2015-07-01 03:49:21 -05:00
|
|
|
log(" opt_const [-mux_undef] [-mux_bool] [-undriven] [-clkinv] [-fine] [-full] [-keepdc]\n");
|
2015-05-31 07:24:34 -05:00
|
|
|
log(" opt_share [-share_all]\n");
|
2014-08-16 08:34:15 -05:00
|
|
|
log(" opt_rmdff\n");
|
|
|
|
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
|
|
|
}
|
2013-01-05 04:13:26 -06:00
|
|
|
virtual void execute(std::vector<std::string> args, RTLIL::Design *design)
|
|
|
|
{
|
2014-02-08 07:21:34 -06:00
|
|
|
std::string opt_clean_args;
|
2014-02-02 15:11:08 -06:00
|
|
|
std::string opt_const_args;
|
2014-07-21 09:34:16 -05:00
|
|
|
std::string opt_reduce_args;
|
2015-05-31 07:24:34 -05:00
|
|
|
std::string opt_share_args;
|
2014-08-16 08:34:15 -05:00
|
|
|
bool fast_mode = false;
|
2014-02-02 15:11:08 -06:00
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
log_header("Executing OPT pass (performing simple optimizations).\n");
|
|
|
|
log_push();
|
|
|
|
|
2014-02-02 15:11:08 -06:00
|
|
|
size_t argidx;
|
|
|
|
for (argidx = 1; argidx < args.size(); argidx++) {
|
2014-02-08 07:21:34 -06:00
|
|
|
if (args[argidx] == "-purge") {
|
|
|
|
opt_clean_args += " -purge";
|
|
|
|
continue;
|
|
|
|
}
|
2014-02-02 15:11:08 -06:00
|
|
|
if (args[argidx] == "-mux_undef") {
|
|
|
|
opt_const_args += " -mux_undef";
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (args[argidx] == "-mux_bool") {
|
|
|
|
opt_const_args += " -mux_bool";
|
|
|
|
continue;
|
|
|
|
}
|
2014-02-06 08:49:03 -06:00
|
|
|
if (args[argidx] == "-undriven") {
|
|
|
|
opt_const_args += " -undriven";
|
|
|
|
continue;
|
|
|
|
}
|
2015-07-01 03:49:21 -05:00
|
|
|
if (args[argidx] == "-clkinv") {
|
|
|
|
opt_const_args += " -clkinv";
|
|
|
|
continue;
|
|
|
|
}
|
2014-07-21 09:34:16 -05:00
|
|
|
if (args[argidx] == "-fine") {
|
|
|
|
opt_const_args += " -fine";
|
|
|
|
opt_reduce_args += " -fine";
|
|
|
|
continue;
|
|
|
|
}
|
2014-10-30 21:36:51 -05:00
|
|
|
if (args[argidx] == "-full") {
|
|
|
|
opt_const_args += " -full";
|
|
|
|
opt_reduce_args += " -full";
|
|
|
|
continue;
|
|
|
|
}
|
2014-07-21 14:38:55 -05:00
|
|
|
if (args[argidx] == "-keepdc") {
|
|
|
|
opt_const_args += " -keepdc";
|
|
|
|
continue;
|
|
|
|
}
|
2015-05-31 07:24:34 -05:00
|
|
|
if (args[argidx] == "-share_all") {
|
|
|
|
opt_share_args += " -share_all";
|
|
|
|
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) {
|
|
|
|
Pass::call(design, "opt_const" + opt_const_args);
|
2015-05-31 07:24:34 -05:00
|
|
|
Pass::call(design, "opt_share" + opt_share_args);
|
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_rmdff");
|
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);
|
|
|
|
log_header("Rerunning OPT passes. (Removed registers in this run.)\n");
|
|
|
|
}
|
2014-02-08 07:21:34 -06:00
|
|
|
Pass::call(design, "opt_clean" + opt_clean_args);
|
2014-08-16 08:34:15 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-02-02 15:11:08 -06:00
|
|
|
Pass::call(design, "opt_const" + opt_const_args);
|
2015-05-31 07:24:34 -05:00
|
|
|
Pass::call(design, "opt_share -nomux" + opt_share_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);
|
2015-05-31 07:24:34 -05:00
|
|
|
Pass::call(design, "opt_share" + opt_share_args);
|
2014-08-16 08:34:15 -05:00
|
|
|
Pass::call(design, "opt_rmdff");
|
|
|
|
Pass::call(design, "opt_clean" + opt_clean_args);
|
|
|
|
Pass::call(design, "opt_const" + opt_const_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;
|
|
|
|
log_header("Rerunning OPT passes. (Maybe there is more to do..)\n");
|
|
|
|
}
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
|
2015-02-24 15:31:30 -06:00
|
|
|
design->optimize();
|
|
|
|
design->sort();
|
|
|
|
design->check();
|
|
|
|
|
2014-12-30 15:35:38 -06:00
|
|
|
log_header(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
|