2014-07-30 07:10:15 -05:00
|
|
|
/*
|
|
|
|
* yosys -- Yosys Open SYnthesis Suite
|
|
|
|
*
|
2021-06-07 17:39:36 -05:00
|
|
|
* Copyright (C) 2012 Claire Xenia Wolf <claire@yosyshq.com>
|
2015-07-02 04:14:30 -05:00
|
|
|
*
|
2014-07-30 07:10:15 -05: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
|
|
|
*
|
2014-07-30 07:10:15 -05: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/yosys.h"
|
2014-12-29 07:30:33 -06:00
|
|
|
#include "kernel/celltypes.h"
|
2014-07-30 07:10:15 -05:00
|
|
|
|
2014-08-22 09:09:13 -05:00
|
|
|
#ifdef YOSYS_ENABLE_READLINE
|
|
|
|
# include <readline/readline.h>
|
|
|
|
# include <readline/history.h>
|
|
|
|
#endif
|
2014-07-31 06:19:47 -05:00
|
|
|
|
2017-11-07 19:54:24 -06:00
|
|
|
#ifdef YOSYS_ENABLE_EDITLINE
|
|
|
|
# include <editline/readline.h>
|
|
|
|
#endif
|
|
|
|
|
2014-10-11 03:57:46 -05:00
|
|
|
#ifdef YOSYS_ENABLE_PLUGINS
|
2014-10-10 11:19:18 -05:00
|
|
|
# include <dlfcn.h>
|
|
|
|
#endif
|
|
|
|
|
2019-03-11 03:08:36 -05:00
|
|
|
#if defined(_WIN32)
|
2014-10-11 04:08:52 -05:00
|
|
|
# include <windows.h>
|
2014-10-17 05:04:40 -05:00
|
|
|
# include <io.h>
|
2014-10-12 05:18:38 -05:00
|
|
|
#elif defined(__APPLE__)
|
|
|
|
# include <mach-o/dyld.h>
|
2014-10-18 14:26:49 -05:00
|
|
|
# include <unistd.h>
|
|
|
|
# include <dirent.h>
|
|
|
|
# include <sys/stat.h>
|
2014-10-12 05:18:38 -05:00
|
|
|
#else
|
2014-10-16 11:06:54 -05:00
|
|
|
# include <unistd.h>
|
|
|
|
# include <dirent.h>
|
2014-10-12 05:18:38 -05:00
|
|
|
# include <sys/types.h>
|
|
|
|
# include <sys/stat.h>
|
2019-11-11 03:23:06 -06:00
|
|
|
# if !defined(YOSYS_DISABLE_SPAWN)
|
|
|
|
# include <sys/wait.h>
|
|
|
|
# endif
|
2019-03-11 03:08:36 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(_WIN32) && defined(YOSYS_ENABLE_GLOB)
|
2016-08-22 08:05:57 -05:00
|
|
|
# include <glob.h>
|
2014-10-11 04:08:52 -05:00
|
|
|
#endif
|
|
|
|
|
2018-05-05 06:02:44 -05:00
|
|
|
#ifdef __FreeBSD__
|
|
|
|
# include <sys/sysctl.h>
|
|
|
|
#endif
|
|
|
|
|
2018-08-20 07:44:03 -05:00
|
|
|
#ifdef WITH_PYTHON
|
|
|
|
#if PY_MAJOR_VERSION >= 3
|
|
|
|
# define INIT_MODULE PyInit_libyosys
|
|
|
|
extern "C" PyObject* INIT_MODULE();
|
|
|
|
#else
|
|
|
|
# define INIT_MODULE initlibyosys
|
2019-04-01 06:36:01 -05:00
|
|
|
extern "C" void INIT_MODULE();
|
2018-08-20 07:44:03 -05:00
|
|
|
#endif
|
2021-06-18 21:59:57 -05:00
|
|
|
#include <signal.h>
|
2018-08-20 07:44:03 -05:00
|
|
|
#endif
|
|
|
|
|
2014-07-31 06:19:47 -05:00
|
|
|
#include <limits.h>
|
2014-08-22 09:09:13 -05:00
|
|
|
#include <errno.h>
|
2014-07-31 06:19:47 -05:00
|
|
|
|
|
|
|
YOSYS_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
int autoidx = 1;
|
2014-12-29 06:33:33 -06:00
|
|
|
int yosys_xtrace = 0;
|
2014-07-31 06:19:47 -05:00
|
|
|
RTLIL::Design *yosys_design = NULL;
|
2014-12-29 07:30:33 -06:00
|
|
|
CellTypes yosys_celltypes;
|
2014-07-31 06:19:47 -05:00
|
|
|
|
|
|
|
#ifdef YOSYS_ENABLE_TCL
|
|
|
|
Tcl_Interp *yosys_tcl_interp = NULL;
|
|
|
|
#endif
|
|
|
|
|
2018-01-07 09:36:13 -06:00
|
|
|
std::set<std::string> yosys_input_files, yosys_output_files;
|
|
|
|
|
2014-12-28 14:27:51 -06:00
|
|
|
bool memhasher_active = false;
|
2014-12-28 14:43:14 -06:00
|
|
|
uint32_t memhasher_rng = 123456;
|
2014-12-28 14:27:51 -06:00
|
|
|
std::vector<void*> memhasher_store;
|
|
|
|
|
2020-11-06 07:17:15 -06:00
|
|
|
std::string yosys_share_dirname;
|
|
|
|
std::string yosys_abc_executable;
|
|
|
|
|
|
|
|
void init_share_dirname();
|
|
|
|
void init_abc_executable_name();
|
|
|
|
|
2014-12-28 14:27:51 -06:00
|
|
|
void memhasher_on()
|
|
|
|
{
|
2018-05-05 06:02:44 -05:00
|
|
|
#if defined(__linux__) || defined(__FreeBSD__)
|
2014-12-28 14:27:51 -06:00
|
|
|
memhasher_rng += time(NULL) << 16 ^ getpid();
|
2014-12-28 14:43:14 -06:00
|
|
|
#endif
|
2014-12-28 14:27:51 -06:00
|
|
|
memhasher_store.resize(0x10000);
|
|
|
|
memhasher_active = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void memhasher_off()
|
|
|
|
{
|
|
|
|
for (auto p : memhasher_store)
|
|
|
|
if (p) free(p);
|
|
|
|
memhasher_store.clear();
|
|
|
|
memhasher_active = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void memhasher_do()
|
|
|
|
{
|
|
|
|
memhasher_rng ^= memhasher_rng << 13;
|
|
|
|
memhasher_rng ^= memhasher_rng >> 17;
|
|
|
|
memhasher_rng ^= memhasher_rng << 5;
|
|
|
|
|
|
|
|
int size, index = (memhasher_rng >> 4) & 0xffff;
|
|
|
|
switch (memhasher_rng & 7) {
|
|
|
|
case 0: size = 16; break;
|
|
|
|
case 1: size = 256; break;
|
|
|
|
case 2: size = 1024; break;
|
|
|
|
case 3: size = 4096; break;
|
|
|
|
default: size = 0;
|
|
|
|
}
|
|
|
|
if (index < 16) size *= 16;
|
|
|
|
memhasher_store[index] = realloc(memhasher_store[index], size);
|
|
|
|
}
|
|
|
|
|
2015-01-31 17:39:59 -06:00
|
|
|
void yosys_banner()
|
|
|
|
{
|
|
|
|
log("\n");
|
|
|
|
log(" /----------------------------------------------------------------------------\\\n");
|
|
|
|
log(" | |\n");
|
|
|
|
log(" | yosys -- Yosys Open SYnthesis Suite |\n");
|
|
|
|
log(" | |\n");
|
2021-06-07 17:39:36 -05:00
|
|
|
log(" | Copyright (C) 2012 - 2020 Claire Xenia Wolf <claire@yosyshq.com> |\n");
|
2015-01-31 17:39:59 -06:00
|
|
|
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");
|
|
|
|
log(" %s\n", yosys_version_str);
|
|
|
|
log("\n");
|
|
|
|
}
|
|
|
|
|
2016-02-13 09:52:16 -06:00
|
|
|
int ceil_log2(int x)
|
|
|
|
{
|
2019-05-06 18:33:56 -05:00
|
|
|
#if defined(__GNUC__)
|
|
|
|
return x > 1 ? (8*sizeof(int)) - __builtin_clz(x-1) : 0;
|
|
|
|
#else
|
2016-02-13 09:52:16 -06:00
|
|
|
if (x <= 0)
|
|
|
|
return 0;
|
2016-02-15 16:06:18 -06:00
|
|
|
for (int i = 0; i < 32; i++)
|
|
|
|
if (((x-1) >> i) == 0)
|
|
|
|
return i;
|
|
|
|
log_abort();
|
2019-05-06 18:33:56 -05:00
|
|
|
#endif
|
2016-02-13 09:52:16 -06:00
|
|
|
}
|
|
|
|
|
2014-07-30 07:10:15 -05:00
|
|
|
std::string stringf(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
std::string string;
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
2014-08-01 12:43:28 -05:00
|
|
|
string = vstringf(fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
return string;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string vstringf(const char *fmt, va_list ap)
|
|
|
|
{
|
|
|
|
std::string string;
|
|
|
|
char *str = NULL;
|
|
|
|
|
2018-12-20 01:29:46 -06:00
|
|
|
#if defined(_WIN32 )|| defined(__CYGWIN__)
|
2014-10-10 11:19:18 -05:00
|
|
|
int sz = 64, rc;
|
|
|
|
while (1) {
|
|
|
|
va_list apc;
|
|
|
|
va_copy(apc, ap);
|
|
|
|
str = (char*)realloc(str, sz);
|
|
|
|
rc = vsnprintf(str, sz, fmt, apc);
|
|
|
|
va_end(apc);
|
|
|
|
if (rc >= 0 && rc < sz)
|
|
|
|
break;
|
|
|
|
sz *= 2;
|
|
|
|
}
|
|
|
|
#else
|
2014-07-30 07:10:15 -05:00
|
|
|
if (vasprintf(&str, fmt, ap) < 0)
|
|
|
|
str = NULL;
|
2014-10-10 11:19:18 -05:00
|
|
|
#endif
|
2014-07-30 07:10:15 -05:00
|
|
|
|
|
|
|
if (str != NULL) {
|
|
|
|
string = str;
|
|
|
|
free(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
return string;
|
|
|
|
}
|
|
|
|
|
2014-10-23 03:47:21 -05:00
|
|
|
int readsome(std::istream &f, char *s, int n)
|
|
|
|
{
|
2016-02-13 10:31:24 -06:00
|
|
|
int rc = int(f.readsome(s, n));
|
2014-10-23 03:47:21 -05:00
|
|
|
|
|
|
|
// f.readsome() sometimes returns 0 on a non-empty stream..
|
|
|
|
if (rc == 0) {
|
|
|
|
int c = f.get();
|
|
|
|
if (c != EOF) {
|
|
|
|
*s = c;
|
|
|
|
rc = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2015-04-08 05:14:34 -05:00
|
|
|
std::string next_token(std::string &text, const char *sep, bool long_strings)
|
2014-10-10 11:33:55 -05:00
|
|
|
{
|
|
|
|
size_t pos_begin = text.find_first_not_of(sep);
|
|
|
|
|
2014-10-10 11:38:40 -05:00
|
|
|
if (pos_begin == std::string::npos)
|
2014-10-10 11:33:55 -05:00
|
|
|
pos_begin = text.size();
|
|
|
|
|
2015-04-08 05:14:34 -05:00
|
|
|
if (long_strings && pos_begin != text.size() && text[pos_begin] == '"') {
|
|
|
|
string sep_string = sep;
|
2019-03-12 15:14:50 -05:00
|
|
|
for (size_t i = pos_begin+1; i < text.size(); i++) {
|
2015-04-08 05:14:34 -05:00
|
|
|
if (text[i] == '"' && (i+1 == text.size() || sep_string.find(text[i+1]) != std::string::npos)) {
|
|
|
|
std::string token = text.substr(pos_begin, i-pos_begin+1);
|
|
|
|
text = text.substr(i+1);
|
|
|
|
return token;
|
|
|
|
}
|
2019-03-12 15:14:50 -05:00
|
|
|
if (i+1 < text.size() && text[i] == '"' && text[i+1] == ';' && (i+2 == text.size() || sep_string.find(text[i+2]) != std::string::npos)) {
|
|
|
|
std::string token = text.substr(pos_begin, i-pos_begin+1);
|
|
|
|
text = text.substr(i+2);
|
|
|
|
return token + ";";
|
|
|
|
}
|
|
|
|
}
|
2015-04-08 05:14:34 -05:00
|
|
|
}
|
|
|
|
|
2014-10-10 11:33:55 -05:00
|
|
|
size_t pos_end = text.find_first_of(sep, pos_begin);
|
|
|
|
|
2014-10-10 11:38:40 -05:00
|
|
|
if (pos_end == std::string::npos)
|
2014-10-10 11:33:55 -05:00
|
|
|
pos_end = text.size();
|
|
|
|
|
|
|
|
std::string token = text.substr(pos_begin, pos_end-pos_begin);
|
|
|
|
text = text.substr(pos_end);
|
|
|
|
return token;
|
|
|
|
}
|
|
|
|
|
2015-04-24 15:04:05 -05:00
|
|
|
std::vector<std::string> split_tokens(const std::string &text, const char *sep)
|
|
|
|
{
|
|
|
|
std::vector<std::string> tokens;
|
|
|
|
std::string current_token;
|
|
|
|
for (char c : text) {
|
|
|
|
if (strchr(sep, c)) {
|
|
|
|
if (!current_token.empty()) {
|
|
|
|
tokens.push_back(current_token);
|
|
|
|
current_token.clear();
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
current_token += c;
|
|
|
|
}
|
|
|
|
if (!current_token.empty()) {
|
|
|
|
tokens.push_back(current_token);
|
|
|
|
current_token.clear();
|
|
|
|
}
|
|
|
|
return tokens;
|
|
|
|
}
|
|
|
|
|
2014-10-10 11:19:00 -05:00
|
|
|
// this is very similar to fnmatch(). the exact rules used by this
|
|
|
|
// function are:
|
|
|
|
//
|
|
|
|
// ? matches any character except
|
|
|
|
// * matches any sequence of characters
|
|
|
|
// [...] matches any of the characters in the list
|
|
|
|
// [!..] matches any of the characters not in the list
|
|
|
|
//
|
|
|
|
// a backslash may be used to escape the next characters in the
|
|
|
|
// pattern. each special character can also simply match itself.
|
|
|
|
//
|
2014-10-10 11:33:55 -05:00
|
|
|
bool patmatch(const char *pattern, const char *string)
|
2014-10-10 11:19:00 -05:00
|
|
|
{
|
|
|
|
if (*pattern == 0)
|
|
|
|
return *string == 0;
|
|
|
|
|
|
|
|
if (*pattern == '\\') {
|
|
|
|
if (pattern[1] == string[0] && patmatch(pattern+2, string+1))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*pattern == '?') {
|
|
|
|
if (*string == 0)
|
|
|
|
return false;
|
|
|
|
return patmatch(pattern+1, string+1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*pattern == '*') {
|
|
|
|
while (*string) {
|
|
|
|
if (patmatch(pattern+1, string++))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return pattern[1] == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*pattern == '[') {
|
|
|
|
bool found_match = false;
|
|
|
|
bool inverted_list = pattern[1] == '!';
|
|
|
|
const char *p = pattern + (inverted_list ? 1 : 0);
|
|
|
|
|
|
|
|
while (*++p) {
|
|
|
|
if (*p == ']') {
|
|
|
|
if (found_match != inverted_list && patmatch(p+1, string+1))
|
|
|
|
return true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*p == '\\') {
|
|
|
|
if (*++p == *string)
|
|
|
|
found_match = true;
|
|
|
|
} else
|
|
|
|
if (*p == *string)
|
|
|
|
found_match = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*pattern == *string)
|
|
|
|
return patmatch(pattern+1, string+1);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-11-11 03:23:06 -06:00
|
|
|
#if !defined(YOSYS_DISABLE_SPAWN)
|
2014-10-12 03:57:15 -05:00
|
|
|
int run_command(const std::string &command, std::function<void(const std::string&)> process_line)
|
|
|
|
{
|
|
|
|
if (!process_line)
|
|
|
|
return system(command.c_str());
|
|
|
|
|
|
|
|
FILE *f = popen(command.c_str(), "r");
|
|
|
|
if (f == nullptr)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
std::string line;
|
|
|
|
char logbuf[128];
|
|
|
|
while (fgets(logbuf, 128, f) != NULL) {
|
|
|
|
line += logbuf;
|
|
|
|
if (!line.empty() && line.back() == '\n')
|
|
|
|
process_line(line), line.clear();
|
|
|
|
}
|
|
|
|
if (!line.empty())
|
|
|
|
process_line(line);
|
|
|
|
|
|
|
|
int ret = pclose(f);
|
|
|
|
if (ret < 0)
|
|
|
|
return -1;
|
2014-10-12 05:11:57 -05:00
|
|
|
#ifdef _WIN32
|
|
|
|
return ret;
|
|
|
|
#else
|
2014-10-12 03:57:15 -05:00
|
|
|
return WEXITSTATUS(ret);
|
2014-10-12 05:11:57 -05:00
|
|
|
#endif
|
|
|
|
}
|
2019-11-11 03:23:06 -06:00
|
|
|
#endif
|
2014-10-12 05:11:57 -05:00
|
|
|
|
|
|
|
std::string make_temp_file(std::string template_str)
|
|
|
|
{
|
2019-11-11 03:23:06 -06:00
|
|
|
#if defined(__wasm)
|
|
|
|
size_t pos = template_str.rfind("XXXXXX");
|
|
|
|
log_assert(pos != std::string::npos);
|
|
|
|
static size_t index = 0;
|
|
|
|
template_str.replace(pos, 6, stringf("%06zu", index++));
|
|
|
|
#elif defined(_WIN32)
|
2014-10-12 05:11:57 -05:00
|
|
|
if (template_str.rfind("/tmp/", 0) == 0) {
|
2014-10-17 08:51:33 -05:00
|
|
|
# ifdef __MINGW32__
|
|
|
|
char longpath[MAX_PATH + 1];
|
|
|
|
char shortpath[MAX_PATH + 1];
|
|
|
|
# else
|
|
|
|
WCHAR longpath[MAX_PATH + 1];
|
|
|
|
TCHAR shortpath[MAX_PATH + 1];
|
|
|
|
# endif
|
|
|
|
if (!GetTempPath(MAX_PATH+1, longpath))
|
|
|
|
log_error("GetTempPath() failed.\n");
|
|
|
|
if (!GetShortPathName(longpath, shortpath, MAX_PATH + 1))
|
|
|
|
log_error("GetShortPathName() failed.\n");
|
2014-10-18 10:51:50 -05:00
|
|
|
std::string path;
|
|
|
|
for (int i = 0; shortpath[i]; i++)
|
|
|
|
path += char(shortpath[i]);
|
|
|
|
template_str = stringf("%s\\%s", path.c_str(), template_str.c_str() + 5);
|
2014-10-12 05:11:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t pos = template_str.rfind("XXXXXX");
|
|
|
|
log_assert(pos != std::string::npos);
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
for (int i = 0; i < 6; i++) {
|
|
|
|
static std::string y = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
2014-10-18 08:20:38 -05:00
|
|
|
static uint32_t x = 314159265 ^ uint32_t(time(NULL));
|
2014-10-12 05:11:57 -05:00
|
|
|
x ^= x << 13, x ^= x >> 17, x ^= x << 5;
|
|
|
|
template_str[pos+i] = y[x % y.size()];
|
|
|
|
}
|
2014-10-17 05:04:40 -05:00
|
|
|
if (_access(template_str.c_str(), 0) != 0)
|
2014-10-12 05:11:57 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
size_t pos = template_str.rfind("XXXXXX");
|
|
|
|
log_assert(pos != std::string::npos);
|
|
|
|
|
|
|
|
int suffixlen = GetSize(template_str) - pos - 6;
|
|
|
|
|
|
|
|
char *p = strdup(template_str.c_str());
|
|
|
|
close(mkstemps(p, suffixlen));
|
|
|
|
template_str = p;
|
|
|
|
free(p);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return template_str;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string make_temp_dir(std::string template_str)
|
|
|
|
{
|
2019-11-11 03:23:06 -06:00
|
|
|
#if defined(_WIN32)
|
2014-10-12 05:11:57 -05:00
|
|
|
template_str = make_temp_file(template_str);
|
|
|
|
mkdir(template_str.c_str());
|
|
|
|
return template_str;
|
2019-11-11 03:23:06 -06:00
|
|
|
#elif defined(__wasm)
|
|
|
|
template_str = make_temp_file(template_str);
|
|
|
|
mkdir(template_str.c_str(), 0777);
|
|
|
|
return template_str;
|
2014-10-12 05:11:57 -05:00
|
|
|
#else
|
2015-01-24 05:16:46 -06:00
|
|
|
# ifndef NDEBUG
|
2014-10-12 05:11:57 -05:00
|
|
|
size_t pos = template_str.rfind("XXXXXX");
|
|
|
|
log_assert(pos != std::string::npos);
|
|
|
|
|
|
|
|
int suffixlen = GetSize(template_str) - pos - 6;
|
|
|
|
log_assert(suffixlen == 0);
|
2015-01-24 05:16:46 -06:00
|
|
|
# endif
|
2014-10-12 05:11:57 -05:00
|
|
|
|
|
|
|
char *p = strdup(template_str.c_str());
|
2014-10-14 19:48:51 -05:00
|
|
|
p = mkdtemp(p);
|
|
|
|
log_assert(p != NULL);
|
2014-10-12 05:11:57 -05:00
|
|
|
template_str = p;
|
|
|
|
free(p);
|
|
|
|
|
|
|
|
return template_str;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2014-10-17 05:04:40 -05:00
|
|
|
#ifdef _WIN32
|
|
|
|
bool check_file_exists(std::string filename, bool)
|
|
|
|
{
|
2014-10-17 07:01:47 -05:00
|
|
|
return _access(filename.c_str(), 0) == 0;
|
2014-10-17 05:04:40 -05:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
bool check_file_exists(std::string filename, bool is_exec)
|
|
|
|
{
|
2014-10-17 07:01:47 -05:00
|
|
|
return access(filename.c_str(), is_exec ? X_OK : F_OK) == 0;
|
2014-10-17 05:04:40 -05:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-03-22 05:03:56 -05:00
|
|
|
bool is_absolute_path(std::string filename)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
return filename[0] == '/' || filename[0] == '\\' || (filename[0] != 0 && filename[1] == ':');
|
|
|
|
#else
|
|
|
|
return filename[0] == '/';
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2014-10-12 05:11:57 -05:00
|
|
|
void remove_directory(std::string dirname)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
run_command(stringf("rmdir /s /q \"%s\"", dirname.c_str()));
|
|
|
|
#else
|
|
|
|
struct stat stbuf;
|
|
|
|
struct dirent **namelist;
|
|
|
|
int n = scandir(dirname.c_str(), &namelist, nullptr, alphasort);
|
|
|
|
log_assert(n >= 0);
|
|
|
|
for (int i = 0; i < n; i++) {
|
|
|
|
if (strcmp(namelist[i]->d_name, ".") && strcmp(namelist[i]->d_name, "..")) {
|
2014-10-12 05:18:38 -05:00
|
|
|
std::string buffer = stringf("%s/%s", dirname.c_str(), namelist[i]->d_name);
|
2014-10-12 05:11:57 -05:00
|
|
|
if (!stat(buffer.c_str(), &stbuf) && S_ISREG(stbuf.st_mode)) {
|
|
|
|
remove(buffer.c_str());
|
|
|
|
} else
|
|
|
|
remove_directory(buffer);
|
|
|
|
}
|
|
|
|
free(namelist[i]);
|
|
|
|
}
|
|
|
|
free(namelist);
|
|
|
|
rmdir(dirname.c_str());
|
|
|
|
#endif
|
2014-10-12 03:57:15 -05:00
|
|
|
}
|
|
|
|
|
2019-04-29 05:20:33 -05:00
|
|
|
std::string escape_filename_spaces(const std::string& filename)
|
2019-04-29 02:13:34 -05:00
|
|
|
{
|
2019-04-29 05:20:33 -05:00
|
|
|
std::string out;
|
|
|
|
out.reserve(filename.size());
|
|
|
|
for (auto c : filename)
|
|
|
|
{
|
|
|
|
if (c == ' ')
|
|
|
|
out += "\\ ";
|
|
|
|
else
|
|
|
|
out.push_back(c);
|
|
|
|
}
|
|
|
|
return out;
|
2019-04-29 02:13:34 -05:00
|
|
|
}
|
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
int GetSize(RTLIL::Wire *wire)
|
2014-08-01 09:53:15 -05:00
|
|
|
{
|
|
|
|
return wire->width;
|
|
|
|
}
|
|
|
|
|
2018-08-16 09:00:11 -05:00
|
|
|
bool already_setup = false;
|
|
|
|
|
2014-07-31 06:19:47 -05:00
|
|
|
void yosys_setup()
|
|
|
|
{
|
2018-08-16 09:00:11 -05:00
|
|
|
if(already_setup)
|
|
|
|
return;
|
|
|
|
already_setup = true;
|
2020-11-06 07:17:15 -06:00
|
|
|
init_share_dirname();
|
|
|
|
init_abc_executable_name();
|
2014-12-29 07:30:33 -06:00
|
|
|
|
2020-03-12 14:54:30 -05:00
|
|
|
#define X(_id) RTLIL::ID::_id = "\\" # _id;
|
2020-04-09 11:14:03 -05:00
|
|
|
#include "kernel/constids.inc"
|
2020-03-12 14:54:30 -05:00
|
|
|
#undef X
|
2019-08-10 05:24:16 -05:00
|
|
|
|
2018-08-16 09:00:11 -05:00
|
|
|
#ifdef WITH_PYTHON
|
2018-08-20 07:44:03 -05:00
|
|
|
PyImport_AppendInittab((char*)"libyosys", INIT_MODULE);
|
2018-08-16 09:00:11 -05:00
|
|
|
Py_Initialize();
|
|
|
|
PyRun_SimpleString("import sys");
|
2021-06-16 06:34:36 -05:00
|
|
|
signal(SIGINT, SIG_DFL);
|
2018-08-16 09:00:11 -05:00
|
|
|
#endif
|
|
|
|
|
2014-07-31 06:19:47 -05:00
|
|
|
Pass::init_register();
|
|
|
|
yosys_design = new RTLIL::Design;
|
2014-12-29 07:30:33 -06:00
|
|
|
yosys_celltypes.setup();
|
2014-07-31 06:19:47 -05:00
|
|
|
log_push();
|
|
|
|
}
|
|
|
|
|
2018-08-20 07:44:03 -05:00
|
|
|
bool yosys_already_setup()
|
|
|
|
{
|
|
|
|
return already_setup;
|
|
|
|
}
|
|
|
|
|
2018-08-16 09:00:11 -05:00
|
|
|
bool already_shutdown = false;
|
|
|
|
|
2014-07-31 06:19:47 -05:00
|
|
|
void yosys_shutdown()
|
|
|
|
{
|
2018-08-16 09:00:11 -05:00
|
|
|
if(already_shutdown)
|
|
|
|
return;
|
|
|
|
already_shutdown = true;
|
2014-07-31 06:19:47 -05:00
|
|
|
log_pop();
|
|
|
|
|
2020-01-09 14:36:34 -06:00
|
|
|
Pass::done_register();
|
|
|
|
|
2014-08-01 12:43:28 -05:00
|
|
|
delete yosys_design;
|
|
|
|
yosys_design = NULL;
|
|
|
|
|
2014-07-31 06:19:47 -05:00
|
|
|
for (auto f : log_files)
|
|
|
|
if (f != stderr)
|
|
|
|
fclose(f);
|
|
|
|
log_errfile = NULL;
|
|
|
|
log_files.clear();
|
|
|
|
|
2014-12-29 07:30:33 -06:00
|
|
|
yosys_celltypes.clear();
|
2014-07-31 06:19:47 -05:00
|
|
|
|
|
|
|
#ifdef YOSYS_ENABLE_TCL
|
|
|
|
if (yosys_tcl_interp != NULL) {
|
|
|
|
Tcl_DeleteInterp(yosys_tcl_interp);
|
|
|
|
Tcl_Finalize();
|
|
|
|
yosys_tcl_interp = NULL;
|
|
|
|
}
|
|
|
|
#endif
|
2014-08-22 06:58:36 -05:00
|
|
|
|
2014-10-11 03:57:46 -05:00
|
|
|
#ifdef YOSYS_ENABLE_PLUGINS
|
2014-08-22 06:58:36 -05:00
|
|
|
for (auto &it : loaded_plugins)
|
|
|
|
dlclose(it.second);
|
|
|
|
|
|
|
|
loaded_plugins.clear();
|
2018-08-16 09:00:11 -05:00
|
|
|
#ifdef WITH_PYTHON
|
|
|
|
loaded_python_plugins.clear();
|
|
|
|
#endif
|
2014-08-22 06:58:36 -05:00
|
|
|
loaded_plugin_aliases.clear();
|
2014-10-16 11:06:54 -05:00
|
|
|
#endif
|
2014-12-29 14:26:15 -06:00
|
|
|
|
2018-08-16 09:00:11 -05:00
|
|
|
#ifdef WITH_PYTHON
|
|
|
|
Py_Finalize();
|
|
|
|
#endif
|
2014-07-31 06:19:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::IdString new_id(std::string file, int line, std::string func)
|
|
|
|
{
|
2014-10-18 12:26:03 -05:00
|
|
|
#ifdef _WIN32
|
|
|
|
size_t pos = file.find_last_of("/\\");
|
|
|
|
#else
|
2014-07-31 06:19:47 -05:00
|
|
|
size_t pos = file.find_last_of('/');
|
2014-10-18 12:26:03 -05:00
|
|
|
#endif
|
|
|
|
if (pos != std::string::npos)
|
|
|
|
file = file.substr(pos+1);
|
|
|
|
|
|
|
|
pos = func.find_last_of(':');
|
|
|
|
if (pos != std::string::npos)
|
|
|
|
func = func.substr(pos+1);
|
|
|
|
|
|
|
|
return stringf("$auto$%s:%d:%s$%d", file.c_str(), line, func.c_str(), autoidx++);
|
2014-07-31 06:19:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::Design *yosys_get_design()
|
|
|
|
{
|
|
|
|
return yosys_design;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *create_prompt(RTLIL::Design *design, int recursion_counter)
|
|
|
|
{
|
|
|
|
static char buffer[100];
|
|
|
|
std::string str = "\n";
|
|
|
|
if (recursion_counter > 1)
|
|
|
|
str += stringf("(%d) ", recursion_counter);
|
|
|
|
str += "yosys";
|
|
|
|
if (!design->selected_active_module.empty())
|
2014-08-02 09:03:18 -05:00
|
|
|
str += stringf(" [%s]", RTLIL::unescape_id(design->selected_active_module).c_str());
|
2014-07-31 06:19:47 -05:00
|
|
|
if (!design->selection_stack.empty() && !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;
|
|
|
|
}
|
|
|
|
|
2016-08-22 08:05:57 -05:00
|
|
|
std::vector<std::string> glob_filename(const std::string &filename_pattern)
|
|
|
|
{
|
|
|
|
std::vector<std::string> results;
|
|
|
|
|
2019-03-11 03:08:36 -05:00
|
|
|
#if defined(_WIN32) || !defined(YOSYS_ENABLE_GLOB)
|
2016-08-22 08:05:57 -05:00
|
|
|
results.push_back(filename_pattern);
|
|
|
|
#else
|
|
|
|
glob_t globbuf;
|
|
|
|
|
|
|
|
int err = glob(filename_pattern.c_str(), 0, NULL, &globbuf);
|
|
|
|
|
|
|
|
if(err == 0) {
|
|
|
|
for (size_t i = 0; i < globbuf.gl_pathc; i++)
|
|
|
|
results.push_back(globbuf.gl_pathv[i]);
|
|
|
|
globfree(&globbuf);
|
|
|
|
} else {
|
|
|
|
results.push_back(filename_pattern);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return results;
|
|
|
|
}
|
|
|
|
|
2015-04-08 05:14:34 -05:00
|
|
|
void rewrite_filename(std::string &filename)
|
|
|
|
{
|
2019-08-07 14:20:08 -05:00
|
|
|
if (filename.compare(0, 1, "\"") == 0 && filename.compare(GetSize(filename)-1, std::string::npos, "\"") == 0)
|
2015-04-08 05:14:34 -05:00
|
|
|
filename = filename.substr(1, GetSize(filename)-2);
|
2019-08-07 14:20:08 -05:00
|
|
|
if (filename.compare(0, 2, "+/") == 0)
|
2015-04-08 05:14:34 -05:00
|
|
|
filename = proc_share_dirname() + filename.substr(2);
|
2019-06-17 16:45:11 -05:00
|
|
|
#ifndef _WIN32
|
2019-08-07 14:20:08 -05:00
|
|
|
if (filename.compare(0, 2, "~/") == 0)
|
2019-06-17 16:45:11 -05:00
|
|
|
filename = filename.replace(0, 1, getenv("HOME"));
|
|
|
|
#endif
|
2015-04-08 05:14:34 -05:00
|
|
|
}
|
|
|
|
|
2014-07-31 06:19:47 -05:00
|
|
|
#ifdef YOSYS_ENABLE_TCL
|
|
|
|
static int tcl_yosys_cmd(ClientData, Tcl_Interp *interp, int argc, const char *argv[])
|
|
|
|
{
|
|
|
|
std::vector<std::string> args;
|
|
|
|
for (int i = 1; i < argc; i++)
|
|
|
|
args.push_back(argv[i]);
|
|
|
|
|
|
|
|
if (args.size() >= 1 && args[0] == "-import") {
|
|
|
|
for (auto &it : pass_register) {
|
|
|
|
std::string tcl_command_name = it.first;
|
|
|
|
if (tcl_command_name == "proc")
|
|
|
|
tcl_command_name = "procs";
|
2018-03-20 17:50:50 -05:00
|
|
|
else if (tcl_command_name == "rename")
|
|
|
|
tcl_command_name = "renames";
|
2014-07-31 06:19:47 -05:00
|
|
|
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) {
|
|
|
|
Pass::call(yosys_get_design(), args[0]);
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
Pass::call(yosys_get_design(), args);
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
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") { }
|
2020-06-18 18:34:52 -05:00
|
|
|
void help() override {
|
2018-12-20 01:29:46 -06:00
|
|
|
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
|
2014-07-31 06:19:47 -05:00
|
|
|
log("\n");
|
2018-12-20 01:29:46 -06:00
|
|
|
log(" tcl <filename> [args]\n");
|
2014-07-31 06:19:47 -05:00
|
|
|
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");
|
2018-03-20 17:50:50 -05:00
|
|
|
log("commands directly as tcl commands to the tcl shell. Yosys commands\n");
|
|
|
|
log("'proc' and 'rename' are wrapped to tcl commands 'procs' and 'renames'\n");
|
|
|
|
log("in order to avoid a name collision with the built in commands.\n");
|
2014-07-31 06:19:47 -05:00
|
|
|
log("\n");
|
2018-12-20 01:29:46 -06:00
|
|
|
log("If any arguments are specified, these arguments are provided to the script via\n");
|
|
|
|
log("the standard $argc and $argv variables.\n");
|
|
|
|
log("\n");
|
2014-07-31 06:19:47 -05:00
|
|
|
}
|
2020-06-18 18:34:52 -05:00
|
|
|
void execute(std::vector<std::string> args, RTLIL::Design *) override {
|
2014-07-31 06:19:47 -05:00
|
|
|
if (args.size() < 2)
|
|
|
|
log_cmd_error("Missing script file.\n");
|
2018-12-20 01:29:46 -06:00
|
|
|
|
|
|
|
std::vector<Tcl_Obj*> script_args;
|
|
|
|
for (auto it = args.begin() + 2; it != args.end(); ++it)
|
|
|
|
script_args.push_back(Tcl_NewStringObj((*it).c_str(), (*it).size()));
|
|
|
|
|
|
|
|
Tcl_Interp *interp = yosys_get_tcl_interp();
|
|
|
|
Tcl_ObjSetVar2(interp, Tcl_NewStringObj("argc", 4), NULL, Tcl_NewIntObj(script_args.size()), 0);
|
|
|
|
Tcl_ObjSetVar2(interp, Tcl_NewStringObj("argv", 4), NULL, Tcl_NewListObj(script_args.size(), script_args.data()), 0);
|
|
|
|
Tcl_ObjSetVar2(interp, Tcl_NewStringObj("argv0", 5), NULL, Tcl_NewStringObj(args[1].c_str(), args[1].size()), 0);
|
|
|
|
if (Tcl_EvalFile(interp, args[1].c_str()) != TCL_OK)
|
|
|
|
log_cmd_error("TCL interpreter returned an error: %s\n", Tcl_GetStringResult(interp));
|
2014-07-31 06:19:47 -05:00
|
|
|
}
|
|
|
|
} TclPass;
|
|
|
|
#endif
|
|
|
|
|
2016-08-07 15:34:33 -05:00
|
|
|
#if defined(__linux__) || defined(__CYGWIN__)
|
2014-10-10 11:19:18 -05:00
|
|
|
std::string proc_self_dirname()
|
2014-07-31 06:19:47 -05:00
|
|
|
{
|
2014-10-11 04:08:52 -05:00
|
|
|
char path[PATH_MAX];
|
2014-07-31 06:19:47 -05:00
|
|
|
ssize_t buflen = readlink("/proc/self/exe", path, sizeof(path));
|
|
|
|
if (buflen < 0) {
|
2014-08-16 19:25:59 -05:00
|
|
|
log_error("readlink(\"/proc/self/exe\") failed: %s\n", strerror(errno));
|
2014-07-31 06:19:47 -05:00
|
|
|
}
|
|
|
|
while (buflen > 0 && path[buflen-1] != '/')
|
|
|
|
buflen--;
|
|
|
|
return std::string(path, buflen);
|
|
|
|
}
|
2018-05-05 06:02:44 -05:00
|
|
|
#elif defined(__FreeBSD__)
|
|
|
|
std::string proc_self_dirname()
|
|
|
|
{
|
|
|
|
int mib[4] = {CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, -1};
|
|
|
|
size_t buflen;
|
|
|
|
char *buffer;
|
|
|
|
std::string path;
|
|
|
|
if (sysctl(mib, 4, NULL, &buflen, NULL, 0) != 0)
|
|
|
|
log_error("sysctl failed: %s\n", strerror(errno));
|
|
|
|
buffer = (char*)malloc(buflen);
|
|
|
|
if (buffer == NULL)
|
|
|
|
log_error("malloc failed: %s\n", strerror(errno));
|
|
|
|
if (sysctl(mib, 4, buffer, &buflen, NULL, 0) != 0)
|
|
|
|
log_error("sysctl failed: %s\n", strerror(errno));
|
|
|
|
while (buflen > 0 && buffer[buflen-1] != '/')
|
|
|
|
buflen--;
|
|
|
|
path.assign(buffer, buflen);
|
|
|
|
free(buffer);
|
|
|
|
return path;
|
|
|
|
}
|
2014-07-31 06:19:47 -05:00
|
|
|
#elif defined(__APPLE__)
|
2014-10-10 11:19:18 -05:00
|
|
|
std::string proc_self_dirname()
|
2014-07-31 06:19:47 -05:00
|
|
|
{
|
2014-10-11 04:08:52 -05:00
|
|
|
char *path = NULL;
|
2014-07-31 06:19:47 -05:00
|
|
|
uint32_t buflen = 0;
|
|
|
|
while (_NSGetExecutablePath(path, &buflen) != 0)
|
|
|
|
path = (char *) realloc((void *) path, buflen);
|
|
|
|
while (buflen > 0 && path[buflen-1] != '/')
|
|
|
|
buflen--;
|
2021-06-14 10:59:01 -05:00
|
|
|
std::string str(path, buflen);
|
|
|
|
free(path);
|
|
|
|
return str;
|
2014-07-31 06:19:47 -05:00
|
|
|
}
|
2014-10-10 11:19:18 -05:00
|
|
|
#elif defined(_WIN32)
|
|
|
|
std::string proc_self_dirname()
|
|
|
|
{
|
2014-10-17 08:51:33 -05:00
|
|
|
int i = 0;
|
|
|
|
# ifdef __MINGW32__
|
|
|
|
char longpath[MAX_PATH + 1];
|
|
|
|
char shortpath[MAX_PATH + 1];
|
|
|
|
# else
|
|
|
|
WCHAR longpath[MAX_PATH + 1];
|
|
|
|
TCHAR shortpath[MAX_PATH + 1];
|
|
|
|
# endif
|
2014-10-12 07:48:19 -05:00
|
|
|
if (!GetModuleFileName(0, longpath, MAX_PATH+1))
|
2014-10-11 04:08:52 -05:00
|
|
|
log_error("GetModuleFileName() failed.\n");
|
2014-10-12 07:48:19 -05:00
|
|
|
if (!GetShortPathName(longpath, shortpath, MAX_PATH+1))
|
|
|
|
log_error("GetShortPathName() failed.\n");
|
2014-10-17 08:51:33 -05:00
|
|
|
while (shortpath[i] != 0)
|
|
|
|
i++;
|
|
|
|
while (i > 0 && shortpath[i-1] != '/' && shortpath[i-1] != '\\')
|
|
|
|
shortpath[--i] = 0;
|
2014-10-18 10:51:50 -05:00
|
|
|
std::string path;
|
|
|
|
for (i = 0; shortpath[i]; i++)
|
|
|
|
path += char(shortpath[i]);
|
|
|
|
return path;
|
2014-10-10 11:19:18 -05:00
|
|
|
}
|
2019-11-11 03:23:06 -06:00
|
|
|
#elif defined(EMSCRIPTEN) || defined(__wasm)
|
2014-10-10 11:19:18 -05:00
|
|
|
std::string proc_self_dirname()
|
2014-08-22 09:09:13 -05:00
|
|
|
{
|
|
|
|
return "/";
|
|
|
|
}
|
2014-07-31 06:19:47 -05:00
|
|
|
#else
|
2018-12-07 13:14:07 -06:00
|
|
|
#error "Don't know how to determine process executable base path!"
|
2014-07-31 06:19:47 -05:00
|
|
|
#endif
|
|
|
|
|
2019-11-11 03:23:06 -06:00
|
|
|
#if defined(EMSCRIPTEN) || defined(__wasm)
|
2020-11-06 07:17:15 -06:00
|
|
|
void init_share_dirname()
|
2015-02-15 10:14:09 -06:00
|
|
|
{
|
2020-11-06 07:17:15 -06:00
|
|
|
yosys_share_dirname = "/share/";
|
2015-02-15 10:14:09 -06:00
|
|
|
}
|
|
|
|
#else
|
2020-11-06 07:17:15 -06:00
|
|
|
void init_share_dirname()
|
2014-07-31 06:19:47 -05:00
|
|
|
{
|
|
|
|
std::string proc_self_path = proc_self_dirname();
|
2016-08-16 13:41:37 -05:00
|
|
|
# if defined(_WIN32) && !defined(YOSYS_WIN32_UNIX_DIR)
|
2014-10-18 10:51:50 -05:00
|
|
|
std::string proc_share_path = proc_self_path + "share\\";
|
2020-11-06 07:17:15 -06:00
|
|
|
if (check_file_exists(proc_share_path, true)) {
|
|
|
|
yosys_share_dirname = proc_share_path;
|
|
|
|
return;
|
|
|
|
}
|
2014-10-18 10:51:50 -05:00
|
|
|
proc_share_path = proc_self_path + "..\\share\\";
|
2020-11-06 07:17:15 -06:00
|
|
|
if (check_file_exists(proc_share_path, true)) {
|
|
|
|
yosys_share_dirname = proc_share_path;
|
|
|
|
return;
|
|
|
|
}
|
2015-02-15 10:14:09 -06:00
|
|
|
# else
|
2014-07-31 06:19:47 -05:00
|
|
|
std::string proc_share_path = proc_self_path + "share/";
|
2020-11-06 07:17:15 -06:00
|
|
|
if (check_file_exists(proc_share_path, true)) {
|
|
|
|
yosys_share_dirname = proc_share_path;
|
|
|
|
return;
|
|
|
|
}
|
2020-04-10 03:38:40 -05:00
|
|
|
proc_share_path = proc_self_path + "../share/" + proc_program_prefix()+ "yosys/";
|
2020-11-06 07:17:15 -06:00
|
|
|
if (check_file_exists(proc_share_path, true)) {
|
|
|
|
yosys_share_dirname = proc_share_path;
|
|
|
|
return;
|
|
|
|
}
|
2016-03-26 03:01:53 -05:00
|
|
|
# ifdef YOSYS_DATDIR
|
|
|
|
proc_share_path = YOSYS_DATDIR "/";
|
2020-11-06 07:17:15 -06:00
|
|
|
if (check_file_exists(proc_share_path, true)) {
|
|
|
|
yosys_share_dirname = proc_share_path;
|
|
|
|
return;
|
|
|
|
}
|
2016-03-26 03:01:53 -05:00
|
|
|
# endif
|
2015-02-15 10:14:09 -06:00
|
|
|
# endif
|
2014-07-31 06:19:47 -05:00
|
|
|
}
|
2015-02-15 10:14:09 -06:00
|
|
|
#endif
|
2014-07-31 06:19:47 -05:00
|
|
|
|
2020-11-06 07:17:15 -06:00
|
|
|
void init_abc_executable_name()
|
|
|
|
{
|
|
|
|
#ifdef ABCEXTERNAL
|
|
|
|
std::string exe_file;
|
|
|
|
if (std::getenv("ABC")) {
|
|
|
|
yosys_abc_executable = std::getenv("ABC");
|
|
|
|
} else {
|
|
|
|
yosys_abc_executable = ABCEXTERNAL;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
yosys_abc_executable = proc_self_dirname() + proc_program_prefix()+ "yosys-abc";
|
|
|
|
#endif
|
|
|
|
#ifdef _WIN32
|
|
|
|
#ifndef ABCEXTERNAL
|
|
|
|
if (!check_file_exists(yosys_abc_executable + ".exe") && check_file_exists(proc_self_dirname() + "..\\" + proc_program_prefix() + "yosys-abc.exe"))
|
|
|
|
yosys_abc_executable = proc_self_dirname() + "..\\" + proc_program_prefix() + "yosys-abc";
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string proc_share_dirname()
|
|
|
|
{
|
|
|
|
if (yosys_share_dirname.empty())
|
|
|
|
log_error("init_share_dirname: unable to determine share/ directory!\n");
|
|
|
|
return yosys_share_dirname;
|
|
|
|
}
|
|
|
|
|
2020-04-10 03:38:40 -05:00
|
|
|
std::string proc_program_prefix()
|
|
|
|
{
|
|
|
|
std::string program_prefix;
|
|
|
|
#ifdef YOSYS_PROGRAM_PREFIX
|
|
|
|
program_prefix = YOSYS_PROGRAM_PREFIX;
|
|
|
|
#endif
|
|
|
|
return program_prefix;
|
|
|
|
}
|
|
|
|
|
2014-07-31 06:19:47 -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')) {
|
|
|
|
while (buffer.size() > 0 && (buffer[buffer.size()-1] == '\n' || buffer[buffer.size()-1] == '\r'))
|
|
|
|
buffer.resize(buffer.size()-1);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handle_label(std::string &command, bool &from_to_active, const std::string &run_from, const std::string &run_to)
|
|
|
|
{
|
|
|
|
int pos = 0;
|
|
|
|
std::string label;
|
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
while (pos < GetSize(command) && (command[pos] == ' ' || command[pos] == '\t'))
|
2014-07-31 06:19:47 -05:00
|
|
|
pos++;
|
|
|
|
|
2015-04-16 11:13:41 -05:00
|
|
|
if (pos < GetSize(command) && command[pos] == '#')
|
|
|
|
return;
|
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
while (pos < GetSize(command) && command[pos] != ' ' && command[pos] != '\t' && command[pos] != '\r' && command[pos] != '\n')
|
2014-07-31 06:19:47 -05:00
|
|
|
label += command[pos++];
|
|
|
|
|
2018-10-28 09:49:09 -05:00
|
|
|
if (GetSize(label) > 1 && label.back() == ':')
|
2014-07-31 06:19:47 -05:00
|
|
|
{
|
2014-10-10 09:59:44 -05:00
|
|
|
label = label.substr(0, GetSize(label)-1);
|
2014-07-31 06:19:47 -05:00
|
|
|
command = command.substr(pos);
|
|
|
|
|
|
|
|
if (label == run_from)
|
|
|
|
from_to_active = true;
|
|
|
|
else if (label == run_to || (run_from == run_to && !run_from.empty()))
|
|
|
|
from_to_active = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-09 15:24:58 -06:00
|
|
|
bool run_frontend(std::string filename, std::string command, RTLIL::Design *design, std::string *from_to_label)
|
2014-07-31 06:19:47 -05:00
|
|
|
{
|
2015-02-01 06:38:46 -06:00
|
|
|
if (design == nullptr)
|
|
|
|
design = yosys_design;
|
|
|
|
|
2014-07-31 06:19:47 -05:00
|
|
|
if (command == "auto") {
|
2019-07-26 04:29:05 -05:00
|
|
|
std::string filename_trim = filename;
|
2019-08-07 14:20:08 -05:00
|
|
|
if (filename_trim.size() > 3 && filename_trim.compare(filename_trim.size()-3, std::string::npos, ".gz") == 0)
|
2019-07-26 04:29:05 -05:00
|
|
|
filename_trim.erase(filename_trim.size()-3);
|
2019-08-07 14:20:08 -05:00
|
|
|
if (filename_trim.size() > 2 && filename_trim.compare(filename_trim.size()-2, std::string::npos, ".v") == 0)
|
2021-12-09 03:33:55 -06:00
|
|
|
command = " -vlog2k";
|
2019-08-07 14:20:08 -05:00
|
|
|
else if (filename_trim.size() > 2 && filename_trim.compare(filename_trim.size()-3, std::string::npos, ".sv") == 0)
|
2021-12-09 03:33:55 -06:00
|
|
|
command = " -sv";
|
2019-08-07 14:20:08 -05:00
|
|
|
else if (filename_trim.size() > 3 && filename_trim.compare(filename_trim.size()-4, std::string::npos, ".vhd") == 0)
|
2021-12-09 03:33:55 -06:00
|
|
|
command = " -vhdl";
|
2019-08-07 14:20:08 -05:00
|
|
|
else if (filename_trim.size() > 4 && filename_trim.compare(filename_trim.size()-5, std::string::npos, ".blif") == 0)
|
2015-05-17 08:25:03 -05:00
|
|
|
command = "blif";
|
2019-08-07 14:20:08 -05:00
|
|
|
else if (filename_trim.size() > 5 && filename_trim.compare(filename_trim.size()-6, std::string::npos, ".eblif") == 0)
|
2018-08-13 16:02:53 -05:00
|
|
|
command = "blif";
|
2019-08-07 14:20:08 -05:00
|
|
|
else if (filename_trim.size() > 4 && filename_trim.compare(filename_trim.size()-5, std::string::npos, ".json") == 0)
|
2017-08-09 06:28:52 -05:00
|
|
|
command = "json";
|
2019-08-07 14:20:08 -05:00
|
|
|
else if (filename_trim.size() > 3 && filename_trim.compare(filename_trim.size()-3, std::string::npos, ".il") == 0)
|
2020-08-26 12:29:32 -05:00
|
|
|
command = "rtlil";
|
2019-08-07 14:20:08 -05:00
|
|
|
else if (filename_trim.size() > 3 && filename_trim.compare(filename_trim.size()-3, std::string::npos, ".ys") == 0)
|
2014-07-31 06:19:47 -05:00
|
|
|
command = "script";
|
2019-08-07 14:20:08 -05:00
|
|
|
else if (filename_trim.size() > 3 && filename_trim.compare(filename_trim.size()-4, std::string::npos, ".tcl") == 0)
|
2017-03-28 05:13:58 -05:00
|
|
|
command = "tcl";
|
2014-07-31 06:19:47 -05:00
|
|
|
else if (filename == "-")
|
|
|
|
command = "script";
|
|
|
|
else
|
|
|
|
log_error("Can't guess frontend for input file `%s' (missing -f option)!\n", filename.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (command == "script")
|
|
|
|
{
|
|
|
|
std::string run_from, run_to;
|
|
|
|
bool from_to_active = true;
|
|
|
|
|
|
|
|
if (from_to_label != NULL) {
|
|
|
|
size_t pos = from_to_label->find(':');
|
|
|
|
if (pos == std::string::npos) {
|
|
|
|
run_from = *from_to_label;
|
|
|
|
run_to = *from_to_label;
|
|
|
|
} else {
|
|
|
|
run_from = from_to_label->substr(0, pos);
|
|
|
|
run_to = from_to_label->substr(pos+1);
|
|
|
|
}
|
|
|
|
from_to_active = run_from.empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
log("\n-- Executing script file `%s' --\n", filename.c_str());
|
|
|
|
|
|
|
|
FILE *f = stdin;
|
|
|
|
|
2018-01-07 09:36:13 -06:00
|
|
|
if (filename != "-") {
|
2014-07-31 06:19:47 -05:00
|
|
|
f = fopen(filename.c_str(), "r");
|
2018-01-07 09:36:13 -06:00
|
|
|
yosys_input_files.insert(filename);
|
|
|
|
}
|
2014-07-31 06:19:47 -05:00
|
|
|
|
|
|
|
if (f == NULL)
|
|
|
|
log_error("Can't open script file `%s' for reading: %s\n", filename.c_str(), strerror(errno));
|
|
|
|
|
|
|
|
FILE *backup_script_file = Frontend::current_script_file;
|
|
|
|
Frontend::current_script_file = f;
|
|
|
|
|
|
|
|
try {
|
|
|
|
std::string command;
|
|
|
|
while (fgetline(f, command)) {
|
|
|
|
while (!command.empty() && command[command.size()-1] == '\\') {
|
|
|
|
std::string next_line;
|
|
|
|
if (!fgetline(f, next_line))
|
|
|
|
break;
|
|
|
|
command.resize(command.size()-1);
|
|
|
|
command += next_line;
|
|
|
|
}
|
|
|
|
handle_label(command, from_to_active, run_from, run_to);
|
2019-08-06 12:21:37 -05:00
|
|
|
if (from_to_active) {
|
2014-07-31 06:19:47 -05:00
|
|
|
Pass::call(design, command);
|
2019-08-06 12:21:37 -05:00
|
|
|
design->check();
|
|
|
|
}
|
2014-07-31 06:19:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!command.empty()) {
|
|
|
|
handle_label(command, from_to_active, run_from, run_to);
|
2019-08-06 12:21:37 -05:00
|
|
|
if (from_to_active) {
|
2014-07-31 06:19:47 -05:00
|
|
|
Pass::call(design, command);
|
2019-08-06 12:21:37 -05:00
|
|
|
design->check();
|
|
|
|
}
|
2014-07-31 06:19:47 -05:00
|
|
|
}
|
|
|
|
}
|
2015-01-25 15:57:09 -06:00
|
|
|
catch (...) {
|
2014-07-31 06:19:47 -05:00
|
|
|
Frontend::current_script_file = backup_script_file;
|
2015-01-25 15:57:09 -06:00
|
|
|
throw;
|
2014-07-31 06:19:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
Frontend::current_script_file = backup_script_file;
|
|
|
|
|
|
|
|
if (filename != "-")
|
|
|
|
fclose(f);
|
|
|
|
|
2021-12-09 15:24:58 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-07-31 06:19:47 -05:00
|
|
|
|
2021-12-09 15:24:58 -06:00
|
|
|
if (command == "tcl") {
|
|
|
|
Pass::call(design, vector<string>({command, filename}));
|
|
|
|
return true;
|
2014-07-31 06:19:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
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());
|
|
|
|
}
|
|
|
|
|
2021-12-09 15:24:58 -06:00
|
|
|
if (command[0] == ' ') {
|
2021-12-09 03:33:55 -06:00
|
|
|
auto argv = split_tokens("read" + command);
|
|
|
|
argv.push_back(filename);
|
|
|
|
Pass::call(design, argv);
|
|
|
|
} else
|
2017-03-28 05:13:58 -05:00
|
|
|
Frontend::frontend_call(design, NULL, filename, command);
|
2014-07-31 06:19:47 -05:00
|
|
|
|
2021-12-09 15:24:58 -06:00
|
|
|
design->check();
|
|
|
|
return false;
|
2015-02-01 06:38:46 -06:00
|
|
|
}
|
|
|
|
|
2014-07-31 06:19:47 -05:00
|
|
|
void run_pass(std::string command, RTLIL::Design *design)
|
|
|
|
{
|
2015-02-01 06:38:46 -06:00
|
|
|
if (design == nullptr)
|
|
|
|
design = yosys_design;
|
|
|
|
|
2015-01-31 14:26:53 -06:00
|
|
|
log("\n-- Running command `%s' --\n", command.c_str());
|
2014-07-31 06:19:47 -05:00
|
|
|
|
|
|
|
Pass::call(design, command);
|
|
|
|
}
|
|
|
|
|
|
|
|
void run_backend(std::string filename, std::string command, RTLIL::Design *design)
|
|
|
|
{
|
2015-02-01 06:38:46 -06:00
|
|
|
if (design == nullptr)
|
|
|
|
design = yosys_design;
|
|
|
|
|
2014-07-31 06:19:47 -05:00
|
|
|
if (command == "auto") {
|
2019-08-07 14:20:08 -05:00
|
|
|
if (filename.size() > 2 && filename.compare(filename.size()-2, std::string::npos, ".v") == 0)
|
2014-07-31 06:19:47 -05:00
|
|
|
command = "verilog";
|
2020-07-16 05:34:21 -05:00
|
|
|
else if (filename.size() > 3 && filename.compare(filename.size()-3, std::string::npos, ".sv") == 0)
|
|
|
|
command = "verilog -sv";
|
2019-08-07 14:20:08 -05:00
|
|
|
else if (filename.size() > 3 && filename.compare(filename.size()-3, std::string::npos, ".il") == 0)
|
2020-08-26 12:29:32 -05:00
|
|
|
command = "rtlil";
|
2019-11-30 19:51:16 -06:00
|
|
|
else if (filename.size() > 3 && filename.compare(filename.size()-3, std::string::npos, ".cc") == 0)
|
|
|
|
command = "cxxrtl";
|
2019-08-07 14:20:08 -05:00
|
|
|
else if (filename.size() > 4 && filename.compare(filename.size()-4, std::string::npos, ".aig") == 0)
|
2016-12-21 03:16:47 -06:00
|
|
|
command = "aiger";
|
2019-08-07 14:20:08 -05:00
|
|
|
else if (filename.size() > 5 && filename.compare(filename.size()-5, std::string::npos, ".blif") == 0)
|
2014-07-31 06:19:47 -05:00
|
|
|
command = "blif";
|
2019-08-07 14:20:08 -05:00
|
|
|
else if (filename.size() > 5 && filename.compare(filename.size()-5, std::string::npos, ".edif") == 0)
|
2015-04-09 08:37:54 -05:00
|
|
|
command = "edif";
|
2019-08-07 14:20:08 -05:00
|
|
|
else if (filename.size() > 5 && filename.compare(filename.size()-5, std::string::npos, ".json") == 0)
|
2015-04-09 08:37:54 -05:00
|
|
|
command = "json";
|
2014-07-31 06:19:47 -05:00
|
|
|
else if (filename == "-")
|
2020-08-26 12:29:32 -05:00
|
|
|
command = "rtlil";
|
2014-07-31 06:19:47 -05:00
|
|
|
else if (filename.empty())
|
|
|
|
return;
|
|
|
|
else
|
|
|
|
log_error("Can't guess backend for output file `%s' (missing -b option)!\n", filename.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (filename.empty())
|
|
|
|
filename = "-";
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2017-11-07 19:54:24 -06:00
|
|
|
#if defined(YOSYS_ENABLE_READLINE) || defined(YOSYS_ENABLE_EDITLINE)
|
2014-07-31 06:19:47 -05:00
|
|
|
static char *readline_cmd_generator(const char *text, int state)
|
|
|
|
{
|
|
|
|
static std::map<std::string, Pass*>::iterator it;
|
|
|
|
static int len;
|
|
|
|
|
|
|
|
if (!state) {
|
|
|
|
it = pass_register.begin();
|
|
|
|
len = strlen(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (; it != pass_register.end(); it++) {
|
2019-08-07 14:20:08 -05:00
|
|
|
if (it->first.compare(0, len, text) == 0)
|
2014-07-31 06:19:47 -05:00
|
|
|
return strdup((it++)->first.c_str());
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
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())
|
|
|
|
{
|
2020-03-31 21:53:56 -05:00
|
|
|
for (auto mod : design->modules())
|
|
|
|
if (RTLIL::unescape_id(mod->name).compare(0, len, text) == 0)
|
|
|
|
obj_names.push_back(strdup(log_id(mod->name)));
|
2014-07-31 06:19:47 -05:00
|
|
|
}
|
2020-03-31 21:53:56 -05:00
|
|
|
else if (design->module(design->selected_active_module) != nullptr)
|
2014-07-31 06:19:47 -05:00
|
|
|
{
|
2020-03-31 21:53:56 -05:00
|
|
|
RTLIL::Module *module = design->module(design->selected_active_module);
|
2014-07-31 06:19:47 -05:00
|
|
|
|
2020-03-31 21:53:56 -05:00
|
|
|
for (auto w : module->wires())
|
|
|
|
if (RTLIL::unescape_id(w->name).compare(0, len, text) == 0)
|
|
|
|
obj_names.push_back(strdup(log_id(w->name)));
|
2014-07-31 06:19:47 -05:00
|
|
|
|
|
|
|
for (auto &it : module->memories)
|
2019-08-07 14:20:08 -05:00
|
|
|
if (RTLIL::unescape_id(it.first).compare(0, len, text) == 0)
|
2020-03-31 21:53:56 -05:00
|
|
|
obj_names.push_back(strdup(log_id(it.first)));
|
2014-07-31 06:19:47 -05:00
|
|
|
|
2020-03-31 21:53:56 -05:00
|
|
|
for (auto cell : module->cells())
|
|
|
|
if (RTLIL::unescape_id(cell->name).compare(0, len, text) == 0)
|
|
|
|
obj_names.push_back(strdup(log_id(cell->name)));
|
2014-07-31 06:19:47 -05:00
|
|
|
|
|
|
|
for (auto &it : module->processes)
|
2019-08-07 14:20:08 -05:00
|
|
|
if (RTLIL::unescape_id(it.first).compare(0, len, text) == 0)
|
2020-03-31 21:53:56 -05:00
|
|
|
obj_names.push_back(strdup(log_id(it.first)));
|
2014-07-31 06:19:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char **readline_completion(const char *text, int start, int)
|
|
|
|
{
|
|
|
|
if (start == 0)
|
|
|
|
return rl_completion_matches(text, readline_cmd_generator);
|
|
|
|
if (strncmp(rl_line_buffer, "read_", 5) && strncmp(rl_line_buffer, "write_", 6))
|
|
|
|
return rl_completion_matches(text, readline_obj_generator);
|
|
|
|
return NULL;
|
|
|
|
}
|
2014-08-22 09:09:13 -05:00
|
|
|
#endif
|
2014-07-31 06:19:47 -05:00
|
|
|
|
|
|
|
void shell(RTLIL::Design *design)
|
|
|
|
{
|
|
|
|
static int recursion_counter = 0;
|
|
|
|
|
|
|
|
recursion_counter++;
|
|
|
|
log_cmd_error_throw = true;
|
|
|
|
|
2017-11-07 19:54:24 -06:00
|
|
|
#if defined(YOSYS_ENABLE_READLINE) || defined(YOSYS_ENABLE_EDITLINE)
|
|
|
|
rl_readline_name = (char*)"yosys";
|
2014-07-31 06:19:47 -05:00
|
|
|
rl_attempted_completion_function = readline_completion;
|
2017-11-07 19:54:24 -06:00
|
|
|
rl_basic_word_break_characters = (char*)" \t\n";
|
2014-08-22 09:09:13 -05:00
|
|
|
#endif
|
2014-07-31 06:19:47 -05:00
|
|
|
|
|
|
|
char *command = NULL;
|
2017-11-07 19:54:24 -06:00
|
|
|
#if defined(YOSYS_ENABLE_READLINE) || defined(YOSYS_ENABLE_EDITLINE)
|
2014-07-31 06:19:47 -05:00
|
|
|
while ((command = readline(create_prompt(design, recursion_counter))) != NULL)
|
2014-10-18 10:51:50 -05:00
|
|
|
{
|
2014-08-22 09:09:13 -05:00
|
|
|
#else
|
|
|
|
char command_buffer[4096];
|
2014-10-18 10:51:50 -05:00
|
|
|
while (1)
|
2014-07-31 06:19:47 -05:00
|
|
|
{
|
2014-10-18 10:51:50 -05:00
|
|
|
fputs(create_prompt(design, recursion_counter), stdout);
|
|
|
|
fflush(stdout);
|
|
|
|
if ((command = fgets(command_buffer, 4096, stdin)) == NULL)
|
|
|
|
break;
|
|
|
|
#endif
|
2014-07-31 06:19:47 -05:00
|
|
|
if (command[strspn(command, " \t\r\n")] == 0)
|
|
|
|
continue;
|
2017-11-07 19:54:24 -06:00
|
|
|
#if defined(YOSYS_ENABLE_READLINE) || defined(YOSYS_ENABLE_EDITLINE)
|
2014-07-31 06:19:47 -05:00
|
|
|
add_history(command);
|
2014-08-22 09:09:13 -05:00
|
|
|
#endif
|
2014-07-31 06:19:47 -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;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
log_assert(design->selection_stack.size() == 1);
|
|
|
|
Pass::call(design, command);
|
2014-11-07 05:48:15 -06:00
|
|
|
} catch (log_cmd_error_exception) {
|
2014-07-31 06:19:47 -05:00
|
|
|
while (design->selection_stack.size() > 1)
|
|
|
|
design->selection_stack.pop_back();
|
|
|
|
log_reset_stack();
|
|
|
|
}
|
2019-08-06 12:21:37 -05:00
|
|
|
design->check();
|
2014-07-31 06:19:47 -05:00
|
|
|
}
|
|
|
|
if (command == NULL)
|
|
|
|
printf("exit\n");
|
|
|
|
|
|
|
|
recursion_counter--;
|
|
|
|
log_cmd_error_throw = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ShellPass : public Pass {
|
|
|
|
ShellPass() : Pass("shell", "enter interactive command mode") { }
|
2020-06-18 18:34:52 -05:00
|
|
|
void help() override {
|
2014-07-31 06:19:47 -05:00
|
|
|
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");
|
|
|
|
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");
|
|
|
|
log("When in interactive shell, some errors (e.g. invalid command arguments)\n");
|
|
|
|
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");
|
|
|
|
log("Press Ctrl-D or type 'exit' to leave the interactive shell.\n");
|
|
|
|
log("\n");
|
|
|
|
}
|
2020-06-18 18:34:52 -05:00
|
|
|
void execute(std::vector<std::string> args, RTLIL::Design *design) override {
|
2014-07-31 06:19:47 -05:00
|
|
|
extra_args(args, 1, design, false);
|
|
|
|
shell(design);
|
|
|
|
}
|
|
|
|
} ShellPass;
|
|
|
|
|
2017-11-07 19:54:24 -06:00
|
|
|
#if defined(YOSYS_ENABLE_READLINE) || defined(YOSYS_ENABLE_EDITLINE)
|
2014-07-31 06:19:47 -05:00
|
|
|
struct HistoryPass : public Pass {
|
|
|
|
HistoryPass() : Pass("history", "show last interactive commands") { }
|
2020-06-18 18:34:52 -05:00
|
|
|
void help() override {
|
2014-07-31 06:19:47 -05:00
|
|
|
log("\n");
|
|
|
|
log(" history\n");
|
|
|
|
log("\n");
|
|
|
|
log("This command prints all commands in the shell history buffer. This are\n");
|
|
|
|
log("all commands executed in an interactive session, but not the commands\n");
|
|
|
|
log("from executed scripts.\n");
|
|
|
|
log("\n");
|
|
|
|
}
|
2020-06-18 18:34:52 -05:00
|
|
|
void execute(std::vector<std::string> args, RTLIL::Design *design) override {
|
2014-07-31 06:19:47 -05:00
|
|
|
extra_args(args, 1, design, false);
|
2017-11-07 19:54:24 -06:00
|
|
|
#ifdef YOSYS_ENABLE_READLINE
|
2014-07-31 06:19:47 -05:00
|
|
|
for(HIST_ENTRY **list = history_list(); *list != NULL; list++)
|
|
|
|
log("%s\n", (*list)->line);
|
2017-11-07 19:54:24 -06:00
|
|
|
#else
|
|
|
|
for (int i = where_history(); history_get(i); i++)
|
|
|
|
log("%s\n", history_get(i)->line);
|
|
|
|
#endif
|
2014-07-31 06:19:47 -05:00
|
|
|
}
|
|
|
|
} HistoryPass;
|
2014-08-22 09:09:13 -05:00
|
|
|
#endif
|
2014-07-31 06:19:47 -05:00
|
|
|
|
2016-03-31 04:16:34 -05:00
|
|
|
struct ScriptCmdPass : public Pass {
|
2019-06-28 15:36:33 -05:00
|
|
|
ScriptCmdPass() : Pass("script", "execute commands from file or wire") { }
|
2020-06-18 18:34:52 -05:00
|
|
|
void help() override {
|
2019-06-28 15:36:33 -05:00
|
|
|
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
|
2014-07-31 06:19:47 -05:00
|
|
|
log("\n");
|
|
|
|
log(" script <filename> [<from_label>:<to_label>]\n");
|
2019-07-02 10:17:26 -05:00
|
|
|
log(" script -scriptwire [selection]\n");
|
2014-07-31 06:19:47 -05:00
|
|
|
log("\n");
|
2019-06-28 15:36:33 -05:00
|
|
|
log("This command executes the yosys commands in the specified file (default\n");
|
|
|
|
log("behaviour), or commands embedded in the constant text value connected to the\n");
|
|
|
|
log("selected wires.\n");
|
2014-07-31 06:19:47 -05:00
|
|
|
log("\n");
|
2019-06-28 15:36:33 -05:00
|
|
|
log("In the default (file) case, the 2nd argument can be used to only execute the\n");
|
|
|
|
log("section of the file between the specified labels. An empty from label is\n");
|
|
|
|
log("synonymous with the beginning of the file and an empty to label is synonymous\n");
|
|
|
|
log("with the end of the file.\n");
|
2014-07-31 06:19:47 -05:00
|
|
|
log("\n");
|
|
|
|
log("If only one label is specified (without ':') then only the block\n");
|
|
|
|
log("marked with that label (until the next label) is executed.\n");
|
|
|
|
log("\n");
|
2019-07-08 21:21:21 -05:00
|
|
|
log("In \"-scriptwire\" mode, the commands on the selected wire(s) will be executed\n");
|
|
|
|
log("in the scope of (and thus, relative to) the wires' owning module(s). This\n");
|
|
|
|
log("'-module' mode can be exited by using the 'cd' command.\n");
|
|
|
|
log("\n");
|
2014-07-31 06:19:47 -05:00
|
|
|
}
|
2020-06-18 18:34:52 -05:00
|
|
|
void execute(std::vector<std::string> args, RTLIL::Design *design) override
|
2019-06-28 15:36:33 -05:00
|
|
|
{
|
2019-07-02 10:17:26 -05:00
|
|
|
bool scriptwire = false;
|
2019-06-28 15:36:33 -05:00
|
|
|
|
|
|
|
size_t argidx;
|
|
|
|
for (argidx = 1; argidx < args.size(); argidx++) {
|
2019-07-02 10:17:26 -05:00
|
|
|
if (args[argidx] == "-scriptwire") {
|
|
|
|
scriptwire = true;
|
2019-06-28 15:36:33 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2019-07-02 10:17:26 -05:00
|
|
|
if (scriptwire) {
|
2019-06-28 15:36:33 -05:00
|
|
|
extra_args(args, argidx, design);
|
|
|
|
|
|
|
|
for (auto mod : design->selected_modules())
|
|
|
|
for (auto &c : mod->connections()) {
|
|
|
|
if (!c.first.is_wire())
|
|
|
|
continue;
|
|
|
|
auto w = c.first.as_wire();
|
|
|
|
if (!mod->selected(w))
|
|
|
|
continue;
|
|
|
|
if (!c.second.is_fully_const())
|
|
|
|
log_error("RHS of selected wire %s.%s is not constant.\n", log_id(mod), log_id(w));
|
|
|
|
auto v = c.second.as_const();
|
2019-07-02 10:20:37 -05:00
|
|
|
Pass::call_on_module(design, mod, v.decode_string());
|
2019-06-28 15:36:33 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (args.size() < 2)
|
2014-07-31 06:19:47 -05:00
|
|
|
log_cmd_error("Missing script file.\n");
|
|
|
|
else if (args.size() == 2)
|
2015-02-01 06:38:46 -06:00
|
|
|
run_frontend(args[1], "script", design);
|
2014-07-31 06:19:47 -05:00
|
|
|
else if (args.size() == 3)
|
2021-12-09 15:24:58 -06:00
|
|
|
run_frontend(args[1], "script", design, &args[2]);
|
2014-07-31 06:19:47 -05:00
|
|
|
else
|
|
|
|
extra_args(args, 2, design, false);
|
|
|
|
}
|
2016-03-31 04:16:34 -05:00
|
|
|
} ScriptCmdPass;
|
2014-07-31 06:19:47 -05:00
|
|
|
|
|
|
|
YOSYS_NAMESPACE_END
|