2013-01-05 04:13:26 -06:00
|
|
|
/*
|
|
|
|
* yosys -- Yosys Open SYnthesis Suite
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Clifford Wolf <clifford@clifford.at>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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 <stdio.h>
|
|
|
|
#include <readline/readline.h>
|
|
|
|
#include <readline/history.h>
|
2013-03-28 06:26:17 -05:00
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2013-06-08 17:07:26 -05:00
|
|
|
#include <libgen.h>
|
2013-03-28 06:26:17 -05:00
|
|
|
#include <dlfcn.h>
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2013-06-08 18:04:23 -05:00
|
|
|
#include <algorithm>
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
#include "kernel/rtlil.h"
|
|
|
|
#include "kernel/register.h"
|
|
|
|
#include "kernel/log.h"
|
|
|
|
|
2013-08-20 02:48:12 -05:00
|
|
|
// from kernel/version_*.o (cc source generated from Makefile)
|
|
|
|
extern const char *yosys_version_str;
|
|
|
|
|
2013-04-01 07:38:05 -05:00
|
|
|
bool fgetline(FILE *f, std::string &buffer)
|
|
|
|
{
|
|
|
|
buffer = "";
|
|
|
|
char block[4096];
|
|
|
|
while (1) {
|
|
|
|
if (fgets(block, 4096, f) == NULL)
|
|
|
|
return false;
|
|
|
|
buffer += block;
|
|
|
|
if (buffer.size() > 0 && (buffer[buffer.size()-1] == '\n' || buffer[buffer.size()-1] == '\r'))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
static void run_frontend(std::string filename, std::string command, RTLIL::Design *design, std::string *backend_command)
|
|
|
|
{
|
|
|
|
if (command == "auto") {
|
|
|
|
if (filename.size() > 2 && filename.substr(filename.size()-2) == ".v")
|
|
|
|
command = "verilog";
|
|
|
|
else if (filename.size() > 3 && filename.substr(filename.size()-3) == ".il")
|
|
|
|
command = "ilang";
|
|
|
|
else if (filename.size() > 3 && filename.substr(filename.size()-3) == ".ys")
|
|
|
|
command = "script";
|
|
|
|
else if (filename == "-")
|
2013-02-27 16:38:38 -06:00
|
|
|
command = "script";
|
2013-01-05 04:13:26 -06:00
|
|
|
else
|
|
|
|
log_error("Can't guess frontend for input file `%s' (missing -f option)!\n", filename.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (command == "script") {
|
|
|
|
log("\n-- Executing script file `%s' --\n", filename.c_str());
|
2013-02-27 16:38:38 -06:00
|
|
|
FILE *f = stdin;
|
|
|
|
if (filename != "-")
|
|
|
|
f = fopen(filename.c_str(), "r");
|
2013-01-05 04:13:26 -06:00
|
|
|
if (f == NULL)
|
2013-02-27 16:38:38 -06:00
|
|
|
log_error("Can't open script file `%s' for reading: %s\n", filename.c_str(), strerror(errno));
|
2013-04-01 07:38:05 -05:00
|
|
|
std::string command;
|
|
|
|
while (fgetline(f, command)) {
|
|
|
|
Pass::call(design, command);
|
|
|
|
design->check();
|
|
|
|
}
|
|
|
|
if (!command.empty()) {
|
|
|
|
Pass::call(design, command);
|
2013-01-05 04:13:26 -06:00
|
|
|
design->check();
|
|
|
|
}
|
2013-02-27 16:38:38 -06:00
|
|
|
if (filename != "-")
|
|
|
|
fclose(f);
|
2013-01-05 04:13:26 -06:00
|
|
|
if (backend_command != NULL && *backend_command == "auto")
|
|
|
|
*backend_command = "";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (filename == "-") {
|
|
|
|
log("\n-- Parsing stdin using frontend `%s' --\n", command.c_str());
|
|
|
|
} else {
|
|
|
|
log("\n-- Parsing `%s' using frontend `%s' --\n", filename.c_str(), command.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
Frontend::frontend_call(design, NULL, filename, command);
|
|
|
|
design->check();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void run_pass(std::string command, RTLIL::Design *design)
|
|
|
|
{
|
|
|
|
log("\n-- Running pass `%s' --\n", command.c_str());
|
|
|
|
|
|
|
|
Pass::call(design, command);
|
|
|
|
design->check();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void run_backend(std::string filename, std::string command, RTLIL::Design *design)
|
|
|
|
{
|
|
|
|
if (command == "auto") {
|
|
|
|
if (filename.size() > 2 && filename.substr(filename.size()-2) == ".v")
|
|
|
|
command = "verilog";
|
|
|
|
else if (filename.size() > 3 && filename.substr(filename.size()-3) == ".il")
|
|
|
|
command = "ilang";
|
|
|
|
else if (filename == "-")
|
|
|
|
command = "ilang";
|
2013-03-21 03:12:32 -05:00
|
|
|
else if (filename.empty())
|
|
|
|
return;
|
2013-01-05 04:13:26 -06:00
|
|
|
else
|
|
|
|
log_error("Can't guess frontend for input file `%s' (missing -f option)!\n", filename.c_str());
|
|
|
|
}
|
|
|
|
|
2013-03-21 03:12:32 -05:00
|
|
|
if (filename.empty())
|
|
|
|
filename = "-";
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
if (filename == "-") {
|
|
|
|
log("\n-- Writing to stdout using backend `%s' --\n", command.c_str());
|
|
|
|
} else {
|
|
|
|
log("\n-- Writing to `%s' using backend `%s' --\n", filename.c_str(), command.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
Backend::backend_call(design, NULL, filename, command);
|
|
|
|
design->check();
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *readline_cmd_generator(const char *text, int state)
|
|
|
|
{
|
|
|
|
static std::map<std::string, Pass*>::iterator it;
|
|
|
|
static int len;
|
|
|
|
|
|
|
|
if (!state) {
|
|
|
|
it = REGISTER_INTERN::pass_register.begin();
|
|
|
|
len = strlen(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (; it != REGISTER_INTERN::pass_register.end(); it++) {
|
|
|
|
if (it->first.substr(0, len) == text)
|
|
|
|
return strdup((it++)->first.c_str());
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-06-08 18:04:23 -05:00
|
|
|
static char *readline_obj_generator(const char *text, int state)
|
|
|
|
{
|
|
|
|
static std::vector<char*> obj_names;
|
|
|
|
static size_t idx;
|
|
|
|
|
|
|
|
if (!state)
|
|
|
|
{
|
|
|
|
idx = 0;
|
|
|
|
obj_names.clear();
|
|
|
|
|
|
|
|
RTLIL::Design *design = yosys_get_design();
|
|
|
|
int len = strlen(text);
|
|
|
|
|
|
|
|
if (design->selected_active_module.empty())
|
|
|
|
{
|
|
|
|
for (auto &it : design->modules)
|
|
|
|
if (RTLIL::unescape_id(it.first).substr(0, len) == text)
|
|
|
|
obj_names.push_back(strdup(RTLIL::id2cstr(it.first.c_str())));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
if (design->modules.count(design->selected_active_module) > 0)
|
|
|
|
{
|
|
|
|
RTLIL::Module *module = design->modules.at(design->selected_active_module);
|
|
|
|
|
|
|
|
for (auto &it : module->wires)
|
|
|
|
if (RTLIL::unescape_id(it.first).substr(0, len) == text)
|
|
|
|
obj_names.push_back(strdup(RTLIL::id2cstr(it.first.c_str())));
|
|
|
|
|
|
|
|
for (auto &it : module->memories)
|
|
|
|
if (RTLIL::unescape_id(it.first).substr(0, len) == text)
|
|
|
|
obj_names.push_back(strdup(RTLIL::id2cstr(it.first.c_str())));
|
|
|
|
|
|
|
|
for (auto &it : module->cells)
|
|
|
|
if (RTLIL::unescape_id(it.first).substr(0, len) == text)
|
|
|
|
obj_names.push_back(strdup(RTLIL::id2cstr(it.first.c_str())));
|
|
|
|
|
|
|
|
for (auto &it : module->processes)
|
|
|
|
if (RTLIL::unescape_id(it.first).substr(0, len) == text)
|
|
|
|
obj_names.push_back(strdup(RTLIL::id2cstr(it.first.c_str())));
|
|
|
|
}
|
|
|
|
|
|
|
|
std::sort(obj_names.begin(), obj_names.end());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (idx < obj_names.size())
|
|
|
|
return strdup(obj_names[idx++]);
|
|
|
|
|
|
|
|
idx = 0;
|
|
|
|
obj_names.clear();
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
static char **readline_completion(const char *text, int start, int)
|
|
|
|
{
|
|
|
|
if (start == 0)
|
|
|
|
return rl_completion_matches(text, readline_cmd_generator);
|
2013-06-08 18:04:23 -05:00
|
|
|
if (strncmp(rl_line_buffer, "read_", 5) && strncmp(rl_line_buffer, "write_", 6))
|
|
|
|
return rl_completion_matches(text, readline_obj_generator);
|
2013-01-05 04:13:26 -06:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-05-01 07:21:03 -05:00
|
|
|
static const char *create_prompt(RTLIL::Design *design, int recursion_counter)
|
2013-01-05 04:13:26 -06:00
|
|
|
{
|
|
|
|
static char buffer[100];
|
2013-05-01 07:21:03 -05:00
|
|
|
std::string str = "\n";
|
|
|
|
if (recursion_counter > 1)
|
|
|
|
str += stringf("(%d) ", recursion_counter);
|
|
|
|
str += "yosys";
|
2013-01-05 04:13:26 -06:00
|
|
|
if (!design->selected_active_module.empty())
|
|
|
|
str += stringf(" [%s]", design->selected_active_module.c_str());
|
|
|
|
if (!design->selection_stack.back().full_selection) {
|
|
|
|
if (design->selected_active_module.empty())
|
|
|
|
str += "*";
|
|
|
|
else if (design->selection_stack.back().selected_modules.size() != 1 || design->selection_stack.back().selected_members.size() != 0 ||
|
|
|
|
design->selection_stack.back().selected_modules.count(design->selected_active_module) == 0)
|
|
|
|
str += "*";
|
|
|
|
}
|
|
|
|
snprintf(buffer, 100, "%s> ", str.c_str());
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
2013-01-06 06:50:30 -06:00
|
|
|
static void shell(RTLIL::Design *design)
|
|
|
|
{
|
2013-05-01 07:21:03 -05:00
|
|
|
static int recursion_counter = 0;
|
2013-02-28 09:53:34 -06:00
|
|
|
|
2013-05-01 07:21:03 -05:00
|
|
|
recursion_counter++;
|
2013-01-06 06:50:30 -06:00
|
|
|
log_cmd_error_throw = true;
|
|
|
|
|
|
|
|
rl_readline_name = "yosys";
|
|
|
|
rl_attempted_completion_function = readline_completion;
|
2013-06-09 04:51:06 -05:00
|
|
|
rl_basic_word_break_characters = " \t\n";
|
2013-01-06 06:50:30 -06:00
|
|
|
|
|
|
|
char *command = NULL;
|
2013-05-01 07:21:03 -05:00
|
|
|
while ((command = readline(create_prompt(design, recursion_counter))) != NULL)
|
2013-01-06 06:50:30 -06:00
|
|
|
{
|
|
|
|
if (command[strspn(command, " \t\r\n")] == 0)
|
|
|
|
continue;
|
|
|
|
add_history(command);
|
|
|
|
|
2013-05-01 07:21:03 -05:00
|
|
|
char *p = command + strspn(command, " \t\r\n");
|
|
|
|
if (!strncmp(p, "exit", 4)) {
|
|
|
|
p += 4;
|
|
|
|
p += strspn(p, " \t\r\n");
|
|
|
|
if (*p == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2013-01-06 06:50:30 -06:00
|
|
|
try {
|
|
|
|
assert(design->selection_stack.size() == 1);
|
|
|
|
Pass::call(design, command);
|
|
|
|
} catch (int) {
|
|
|
|
while (design->selection_stack.size() > 1)
|
|
|
|
design->selection_stack.pop_back();
|
|
|
|
log_reset_stack();
|
|
|
|
}
|
|
|
|
}
|
2013-05-01 07:21:03 -05:00
|
|
|
if (command == NULL)
|
|
|
|
printf("exit\n");
|
2013-01-06 06:50:30 -06:00
|
|
|
|
2013-05-01 07:21:03 -05:00
|
|
|
recursion_counter--;
|
2013-01-06 06:50:30 -06:00
|
|
|
log_cmd_error_throw = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ShellPass : public Pass {
|
2013-02-28 06:13:56 -06:00
|
|
|
ShellPass() : Pass("shell", "enter interactive command mode") { }
|
|
|
|
virtual void help() {
|
|
|
|
log("\n");
|
|
|
|
log(" shell\n");
|
|
|
|
log("\n");
|
|
|
|
log("This command enters the interactive command mode. This can be useful\n");
|
|
|
|
log("in a script to interrupt the script at a certain point and allow for\n");
|
|
|
|
log("interactive inspection or manual synthesis of the design at this point.\n");
|
|
|
|
log("\n");
|
2013-02-28 09:53:34 -06:00
|
|
|
log("The command prompt of the interactive shell indicates the current\n");
|
|
|
|
log("selection (see 'help select'):\n");
|
|
|
|
log("\n");
|
|
|
|
log(" yosys>\n");
|
|
|
|
log(" the entire design is selected\n");
|
|
|
|
log("\n");
|
|
|
|
log(" yosys*>\n");
|
|
|
|
log(" only part of the design is selected\n");
|
|
|
|
log("\n");
|
|
|
|
log(" yosys [modname]>\n");
|
|
|
|
log(" the entire module 'modname' is selected using 'select -module modname'\n");
|
|
|
|
log("\n");
|
|
|
|
log(" yosys [modname]*>\n");
|
|
|
|
log(" only part of current module 'modname' is selected\n");
|
|
|
|
log("\n");
|
2013-03-17 16:02:30 -05:00
|
|
|
log("When in interactive shell, some errors (e.g. invalid command arguments)\n");
|
2013-02-28 09:53:34 -06:00
|
|
|
log("do not terminate yosys but return to the command prompt.\n");
|
|
|
|
log("\n");
|
|
|
|
log("This command is the default action if nothing else has been specified\n");
|
|
|
|
log("on the command line.\n");
|
|
|
|
log("\n");
|
2013-05-01 07:21:03 -05:00
|
|
|
log("Press Ctrl-D or type 'exit' to leave the interactive shell.\n");
|
2013-02-28 17:36:19 -06:00
|
|
|
log("\n");
|
2013-02-28 06:13:56 -06:00
|
|
|
}
|
2013-03-03 03:05:37 -06:00
|
|
|
virtual void execute(std::vector<std::string> args, RTLIL::Design *design) {
|
|
|
|
extra_args(args, 1, design, false);
|
2013-01-06 06:50:30 -06:00
|
|
|
shell(design);
|
|
|
|
}
|
|
|
|
} ShellPass;
|
|
|
|
|
2013-03-31 11:05:31 -05:00
|
|
|
struct ScriptPass : public Pass {
|
2013-05-01 07:21:03 -05:00
|
|
|
ScriptPass() : Pass("script", "execute commands from script file") { }
|
2013-03-31 11:05:31 -05:00
|
|
|
virtual void help() {
|
|
|
|
log("\n");
|
|
|
|
log(" script <filename>\n");
|
|
|
|
log("\n");
|
|
|
|
log("This command executes the yosys commands in the specified file.\n");
|
|
|
|
log("\n");
|
|
|
|
}
|
|
|
|
virtual void execute(std::vector<std::string> args, RTLIL::Design *design) {
|
2013-05-01 07:21:03 -05:00
|
|
|
if (args.size() < 2)
|
|
|
|
log_cmd_error("Missing script file.\n");
|
|
|
|
if (args.size() > 2)
|
2013-03-31 11:05:31 -05:00
|
|
|
extra_args(args, 1, design, false);
|
|
|
|
run_frontend(args[1], "script", design, NULL);
|
|
|
|
}
|
|
|
|
} ScriptPass;
|
|
|
|
|
2013-05-01 07:21:03 -05:00
|
|
|
#ifdef YOSYS_ENABLE_TCL
|
2013-05-23 05:56:23 -05:00
|
|
|
static Tcl_Interp *yosys_tcl_interp = NULL;
|
2013-05-01 07:21:03 -05:00
|
|
|
|
2013-05-02 08:27:01 -05:00
|
|
|
static int tcl_yosys_cmd(ClientData, Tcl_Interp *interp, int argc, const char *argv[])
|
2013-05-01 07:21:03 -05:00
|
|
|
{
|
|
|
|
std::vector<std::string> args;
|
|
|
|
for (int i = 1; i < argc; i++)
|
|
|
|
args.push_back(argv[i]);
|
2013-05-02 08:27:01 -05:00
|
|
|
|
|
|
|
if (args.size() >= 1 && args[0] == "-import") {
|
|
|
|
for (auto &it : REGISTER_INTERN::pass_register) {
|
|
|
|
std::string tcl_command_name = it.first;
|
|
|
|
if (tcl_command_name == "proc")
|
|
|
|
tcl_command_name = "procs";
|
|
|
|
Tcl_CmdInfo info;
|
|
|
|
if (Tcl_GetCommandInfo(interp, tcl_command_name.c_str(), &info) != 0) {
|
|
|
|
log("[TCL: yosys -import] Command name collision: found pre-existing command `%s' -> skip.\n", it.first.c_str());
|
|
|
|
} else {
|
|
|
|
std::string tcl_script = stringf("proc %s args { yosys %s {*}$args }", tcl_command_name.c_str(), it.first.c_str());
|
|
|
|
Tcl_Eval(interp, tcl_script.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (args.size() == 1) {
|
2013-06-08 18:04:23 -05:00
|
|
|
Pass::call(yosys_get_design(), args[0]);
|
2013-05-02 08:27:01 -05:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
2013-06-08 18:04:23 -05:00
|
|
|
Pass::call(yosys_get_design(), args);
|
2013-05-01 07:21:03 -05:00
|
|
|
return TCL_OK;
|
|
|
|
}
|
2013-05-23 05:56:23 -05:00
|
|
|
|
|
|
|
extern Tcl_Interp *yosys_get_tcl_interp()
|
|
|
|
{
|
|
|
|
if (yosys_tcl_interp == NULL) {
|
|
|
|
yosys_tcl_interp = Tcl_CreateInterp();
|
|
|
|
Tcl_CreateCommand(yosys_tcl_interp, "yosys", tcl_yosys_cmd, NULL, NULL);
|
|
|
|
}
|
|
|
|
return yosys_tcl_interp;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct TclPass : public Pass {
|
|
|
|
TclPass() : Pass("tcl", "execute a TCL script file") { }
|
|
|
|
virtual void help() {
|
|
|
|
log("\n");
|
|
|
|
log(" tcl <filename>\n");
|
|
|
|
log("\n");
|
|
|
|
log("This command executes the tcl commands in the specified file.\n");
|
|
|
|
log("Use 'yosys cmd' to run the yosys command 'cmd' from tcl.\n");
|
|
|
|
log("\n");
|
|
|
|
log("The tcl command 'yosys -import' can be used to import all yosys\n");
|
|
|
|
log("commands directly as tcl commands to the tcl shell. The yosys\n");
|
|
|
|
log("command 'proc' is wrapped using the tcl command 'procs' in order\n");
|
|
|
|
log("to avoid a name collision with the tcl builting command 'proc'.\n");
|
|
|
|
log("\n");
|
|
|
|
}
|
|
|
|
virtual void execute(std::vector<std::string> args, RTLIL::Design *design) {
|
|
|
|
if (args.size() < 2)
|
|
|
|
log_cmd_error("Missing script file.\n");
|
|
|
|
if (args.size() > 2)
|
|
|
|
extra_args(args, 1, design, false);
|
|
|
|
if (Tcl_EvalFile(yosys_get_tcl_interp(), args[1].c_str()) != TCL_OK)
|
|
|
|
log_cmd_error("TCL interpreter returned an error: %s\n", Tcl_GetStringResult(yosys_get_tcl_interp()));
|
|
|
|
}
|
|
|
|
} TclPass;
|
2013-05-01 07:21:03 -05:00
|
|
|
#endif
|
|
|
|
|
2013-06-08 18:04:23 -05:00
|
|
|
static RTLIL::Design *yosys_design = NULL;
|
|
|
|
|
|
|
|
extern RTLIL::Design *yosys_get_design()
|
|
|
|
{
|
|
|
|
return yosys_design;
|
|
|
|
}
|
|
|
|
|
2013-06-08 17:07:26 -05:00
|
|
|
std::string rewrite_yosys_exe(std::string exe)
|
|
|
|
{
|
|
|
|
char buffer[1024];
|
|
|
|
ssize_t buflen = readlink("/proc/self/exe", buffer, sizeof(buffer)-1);
|
|
|
|
|
|
|
|
if (buflen < 0)
|
|
|
|
return exe;
|
|
|
|
|
|
|
|
buffer[buflen] = 0;
|
|
|
|
std::string newexe = stringf("%s/%s", dirname(buffer), exe.c_str());
|
|
|
|
if (access(newexe.c_str(), X_OK) == 0)
|
|
|
|
return newexe;
|
|
|
|
|
|
|
|
return exe;
|
|
|
|
}
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
std::string frontend_command = "auto";
|
|
|
|
std::string backend_command = "auto";
|
|
|
|
std::vector<std::string> passes_commands;
|
2013-03-06 04:58:07 -06:00
|
|
|
std::vector<void*> loaded_modules;
|
2013-03-21 03:12:32 -05:00
|
|
|
std::string output_filename = "";
|
2013-01-05 04:13:26 -06:00
|
|
|
std::string scriptfile = "";
|
2013-03-28 06:26:17 -05:00
|
|
|
bool scriptfile_tcl = false;
|
2013-01-05 04:13:26 -06:00
|
|
|
bool got_output_filename = false;
|
|
|
|
|
2013-06-10 08:42:52 -05:00
|
|
|
int history_offset = 0;
|
|
|
|
std::string history_file;
|
|
|
|
if (getenv("HOME") != NULL) {
|
|
|
|
history_file = stringf("%s/.yosys_history", getenv("HOME"));
|
|
|
|
read_history(history_file.c_str());
|
|
|
|
history_offset = where_history();
|
|
|
|
}
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
int opt;
|
2013-08-20 02:48:12 -05:00
|
|
|
while ((opt = getopt(argc, argv, "VSm:f:b:o:p:l:qts:c:")) != -1)
|
2013-01-05 04:13:26 -06:00
|
|
|
{
|
|
|
|
switch (opt)
|
|
|
|
{
|
2013-08-20 02:48:12 -05:00
|
|
|
case 'V':
|
|
|
|
printf("%s\n", yosys_version_str);
|
|
|
|
exit(0);
|
2013-03-21 03:52:21 -05:00
|
|
|
case 'S':
|
|
|
|
backend_command = "verilog -noattr";
|
|
|
|
passes_commands.push_back("hierarchy");
|
|
|
|
passes_commands.push_back("proc");
|
|
|
|
passes_commands.push_back("opt");
|
|
|
|
passes_commands.push_back("memory");
|
|
|
|
passes_commands.push_back("techmap");
|
|
|
|
passes_commands.push_back("opt");
|
|
|
|
break;
|
2013-03-06 04:58:07 -06:00
|
|
|
case 'm':
|
|
|
|
loaded_modules.push_back(dlopen(optarg, RTLD_LAZY|RTLD_GLOBAL));
|
|
|
|
if (loaded_modules.back() == NULL) {
|
2013-03-06 11:30:45 -06:00
|
|
|
fprintf(stderr, "Can't load module `%s': %s\n", optarg, dlerror());
|
2013-03-06 04:58:07 -06:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
break;
|
2013-01-05 04:13:26 -06:00
|
|
|
case 'f':
|
|
|
|
frontend_command = optarg;
|
|
|
|
break;
|
|
|
|
case 'b':
|
|
|
|
backend_command = optarg;
|
|
|
|
break;
|
|
|
|
case 'p':
|
|
|
|
passes_commands.push_back(optarg);
|
|
|
|
break;
|
|
|
|
case 'o':
|
|
|
|
output_filename = optarg;
|
|
|
|
got_output_filename = true;
|
|
|
|
break;
|
|
|
|
case 'l':
|
|
|
|
log_files.push_back(fopen(optarg, "wt"));
|
|
|
|
if (log_files.back() == NULL) {
|
|
|
|
fprintf(stderr, "Can't open log file `%s' for writing!\n", optarg);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'q':
|
|
|
|
log_errfile = stderr;
|
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
log_time = true;
|
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
scriptfile = optarg;
|
2013-03-28 06:26:17 -05:00
|
|
|
scriptfile_tcl = false;
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
scriptfile = optarg;
|
|
|
|
scriptfile_tcl = true;
|
2013-01-05 04:13:26 -06:00
|
|
|
break;
|
|
|
|
default:
|
2013-02-28 06:13:56 -06:00
|
|
|
fprintf(stderr, "\n");
|
2013-08-20 02:48:12 -05:00
|
|
|
fprintf(stderr, "Usage: %s [-V] [-S] [-q] [-t] [-l logfile] [-o <outfile>] [-f <frontend>] [{-s|-c} <scriptfile>]\n", argv[0]);
|
2013-03-06 04:58:07 -06:00
|
|
|
fprintf(stderr, " %*s[-p <pass> [-p ..]] [-b <backend>] [-m <module_file>] [<infile> [..]]\n", int(strlen(argv[0])+1), "");
|
2013-02-28 06:13:56 -06:00
|
|
|
fprintf(stderr, "\n");
|
|
|
|
fprintf(stderr, " -q\n");
|
|
|
|
fprintf(stderr, " quiet operation. only write error messages to console\n");
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
fprintf(stderr, " -t\n");
|
|
|
|
fprintf(stderr, " annotate all log messages with a time stamp\n");
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
fprintf(stderr, " -l logfile\n");
|
|
|
|
fprintf(stderr, " write log messages to the specified file\n");
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
fprintf(stderr, " -o outfile\n");
|
|
|
|
fprintf(stderr, " write the design to the specified file on exit\n");
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
fprintf(stderr, " -b backend\n");
|
|
|
|
fprintf(stderr, " use this backend for the output file specified on the command line\n");
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
fprintf(stderr, " -f backend\n");
|
|
|
|
fprintf(stderr, " use the specified front for the input files on the command line\n");
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
fprintf(stderr, " -s scriptfile\n");
|
|
|
|
fprintf(stderr, " execute the commands in the script file\n");
|
|
|
|
fprintf(stderr, "\n");
|
2013-03-28 06:26:17 -05:00
|
|
|
fprintf(stderr, " -c tcl_scriptfile\n");
|
2013-05-02 08:27:01 -05:00
|
|
|
fprintf(stderr, " execute the commands in the tcl script file (see 'help tcl' for details)\n");
|
2013-03-28 06:26:17 -05:00
|
|
|
fprintf(stderr, "\n");
|
2013-02-28 06:13:56 -06:00
|
|
|
fprintf(stderr, " -p command\n");
|
|
|
|
fprintf(stderr, " execute the commands\n");
|
|
|
|
fprintf(stderr, "\n");
|
2013-03-06 04:58:07 -06:00
|
|
|
fprintf(stderr, " -m module_file\n");
|
|
|
|
fprintf(stderr, " load the specified module (aka plugin)\n");
|
|
|
|
fprintf(stderr, "\n");
|
2013-08-20 02:48:12 -05:00
|
|
|
fprintf(stderr, " -V\n");
|
|
|
|
fprintf(stderr, " print version information and exit\n");
|
|
|
|
fprintf(stderr, "\n");
|
2013-03-21 03:52:21 -05:00
|
|
|
fprintf(stderr, "The option -S is an alias for the following options that perform a simple\n");
|
|
|
|
fprintf(stderr, "transformation of the input to a gate-level netlist. This can be helpful when\n");
|
|
|
|
fprintf(stderr, "e.g. using yosys as a pre-processor for a tool that can't understand full verilog.\n");
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
fprintf(stderr, " -b 'verilog -noattr' -p hierarchy -p proc -p opt -p memory -p techmap -p opt\n");
|
|
|
|
fprintf(stderr, "\n");
|
2013-02-28 06:13:56 -06:00
|
|
|
fprintf(stderr, "For more complex synthesis jobs it is recommended to use the read_* and write_*\n");
|
|
|
|
fprintf(stderr, "commands in a script file instead of specifying input and output files on the\n");
|
|
|
|
fprintf(stderr, "command line.\n");
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
fprintf(stderr, "When no commands, script files and input files are specified on the command\n");
|
|
|
|
fprintf(stderr, "line, yosys automatically enters the interactive command mode. Use the 'help'\n");
|
|
|
|
fprintf(stderr, "command to get information on the individual commands.\n");
|
|
|
|
fprintf(stderr, "\n");
|
2013-01-05 04:13:26 -06:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (log_errfile == NULL)
|
|
|
|
log_files.push_back(stderr);
|
|
|
|
|
2013-02-28 06:13:56 -06:00
|
|
|
log("\n");
|
|
|
|
log(" /-----------------------------------------------------------------------------\\\n");
|
|
|
|
log(" | |\n");
|
|
|
|
log(" | yosys -- Yosys Open SYnthesis Suite |\n");
|
|
|
|
log(" | |\n");
|
|
|
|
log(" | Copyright (C) 2012 Clifford Wolf <clifford@clifford.at> |\n");
|
|
|
|
log(" | |\n");
|
|
|
|
log(" | Permission to use, copy, modify, and/or distribute this software for any |\n");
|
|
|
|
log(" | purpose with or without fee is hereby granted, provided that the above |\n");
|
|
|
|
log(" | copyright notice and this permission notice appear in all copies. |\n");
|
|
|
|
log(" | |\n");
|
|
|
|
log(" | THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |\n");
|
|
|
|
log(" | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |\n");
|
|
|
|
log(" | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |\n");
|
|
|
|
log(" | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |\n");
|
|
|
|
log(" | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |\n");
|
|
|
|
log(" | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |\n");
|
|
|
|
log(" | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |\n");
|
|
|
|
log(" | |\n");
|
|
|
|
log(" \\-----------------------------------------------------------------------------/\n");
|
|
|
|
log("\n");
|
2013-08-20 02:48:12 -05:00
|
|
|
log(" %s\n", yosys_version_str);
|
|
|
|
log("\n");
|
2013-02-28 06:13:56 -06:00
|
|
|
|
2013-03-06 04:58:07 -06:00
|
|
|
Pass::init_register();
|
|
|
|
|
2013-06-08 18:04:23 -05:00
|
|
|
yosys_design = new RTLIL::Design;
|
|
|
|
yosys_design->selection_stack.push_back(RTLIL::Selection());
|
2013-03-06 04:58:07 -06:00
|
|
|
log_push();
|
|
|
|
|
2013-01-06 06:50:30 -06:00
|
|
|
if (optind == argc && passes_commands.size() == 0 && scriptfile.empty()) {
|
2013-01-05 04:13:26 -06:00
|
|
|
if (!got_output_filename)
|
|
|
|
backend_command = "";
|
2013-06-08 18:04:23 -05:00
|
|
|
shell(yosys_design);
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
while (optind < argc)
|
2013-06-08 18:04:23 -05:00
|
|
|
run_frontend(argv[optind++], frontend_command, yosys_design, output_filename == "-" ? &backend_command : NULL);
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2013-03-28 06:26:17 -05:00
|
|
|
if (!scriptfile.empty()) {
|
|
|
|
if (scriptfile_tcl) {
|
|
|
|
#ifdef YOSYS_ENABLE_TCL
|
2013-05-23 05:56:23 -05:00
|
|
|
if (Tcl_EvalFile(yosys_get_tcl_interp(), scriptfile.c_str()) != TCL_OK)
|
|
|
|
log_error("TCL interpreter returned an error: %s\n", Tcl_GetStringResult(yosys_get_tcl_interp()));
|
2013-03-28 06:26:17 -05:00
|
|
|
#else
|
|
|
|
log_error("Can't exectue TCL script: this version of yosys is not built with TCL support enabled.\n");
|
|
|
|
#endif
|
|
|
|
} else
|
2013-06-08 18:04:23 -05:00
|
|
|
run_frontend(scriptfile, "script", yosys_design, output_filename == "-" ? &backend_command : NULL);
|
2013-03-28 06:26:17 -05:00
|
|
|
}
|
2013-01-05 04:13:26 -06:00
|
|
|
|
|
|
|
for (auto it = passes_commands.begin(); it != passes_commands.end(); it++)
|
2013-06-08 18:04:23 -05:00
|
|
|
run_pass(*it, yosys_design);
|
2013-01-05 04:13:26 -06:00
|
|
|
|
|
|
|
if (!backend_command.empty())
|
2013-06-08 18:04:23 -05:00
|
|
|
run_backend(output_filename, backend_command, yosys_design);
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2013-06-08 18:04:23 -05:00
|
|
|
delete yosys_design;
|
|
|
|
yosys_design = NULL;
|
2013-03-28 06:26:17 -05:00
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
log("\nREADY.\n");
|
|
|
|
log_pop();
|
|
|
|
|
2013-06-10 08:42:52 -05:00
|
|
|
if (!history_file.empty()) {
|
|
|
|
if (history_offset > 0) {
|
|
|
|
history_truncate_file(history_file.c_str(), 100);
|
|
|
|
append_history(where_history() - history_offset, history_file.c_str());
|
|
|
|
} else
|
|
|
|
write_history(history_file.c_str());
|
|
|
|
}
|
|
|
|
|
2013-08-06 08:03:46 -05:00
|
|
|
clear_history();
|
|
|
|
HIST_ENTRY **hist_list = history_list();
|
|
|
|
if (hist_list != NULL)
|
|
|
|
free(hist_list);
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
for (auto f : log_files)
|
|
|
|
if (f != stderr)
|
|
|
|
fclose(f);
|
|
|
|
log_errfile = NULL;
|
|
|
|
log_files.clear();
|
|
|
|
|
2013-01-06 06:50:30 -06:00
|
|
|
Pass::done_register();
|
|
|
|
|
2013-03-06 04:58:07 -06:00
|
|
|
for (auto mod : loaded_modules)
|
|
|
|
dlclose(mod);
|
|
|
|
|
2013-03-28 06:26:17 -05:00
|
|
|
#ifdef YOSYS_ENABLE_TCL
|
2013-05-23 05:56:23 -05:00
|
|
|
if (yosys_tcl_interp != NULL) {
|
|
|
|
Tcl_DeleteInterp(yosys_tcl_interp);
|
|
|
|
Tcl_Finalize();
|
|
|
|
yosys_tcl_interp = NULL;
|
|
|
|
}
|
2013-03-28 06:26:17 -05:00
|
|
|
#endif
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|