mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-05 17:14:08 +00:00
tee: Allow logging command output to a given scratchpad value
This commit is contained in:
parent
a64ed824ed
commit
ed02d52f30
|
@ -40,6 +40,7 @@ YOSYS_NAMESPACE_BEGIN
|
||||||
|
|
||||||
std::vector<FILE*> log_files;
|
std::vector<FILE*> log_files;
|
||||||
std::vector<std::ostream*> log_streams;
|
std::vector<std::ostream*> log_streams;
|
||||||
|
std::vector<std::string> log_scratchpads;
|
||||||
std::map<std::string, std::set<std::string>> log_hdump;
|
std::map<std::string, std::set<std::string>> log_hdump;
|
||||||
std::vector<YS_REGEX_TYPE> log_warn_regexes, log_nowarn_regexes, log_werror_regexes;
|
std::vector<YS_REGEX_TYPE> log_warn_regexes, log_nowarn_regexes, log_werror_regexes;
|
||||||
dict<std::string, LogExpectedItem> log_expect_log, log_expect_warning, log_expect_error;
|
dict<std::string, LogExpectedItem> log_expect_log, log_expect_warning, log_expect_error;
|
||||||
|
@ -158,6 +159,11 @@ void logv(const char *format, va_list ap)
|
||||||
for (auto f : log_streams)
|
for (auto f : log_streams)
|
||||||
*f << str;
|
*f << str;
|
||||||
|
|
||||||
|
RTLIL::Design *design = yosys_get_design();
|
||||||
|
if (design != nullptr)
|
||||||
|
for (auto &scratchpad : log_scratchpads)
|
||||||
|
design->scratchpad[scratchpad].append(str);
|
||||||
|
|
||||||
static std::string linebuffer;
|
static std::string linebuffer;
|
||||||
static bool log_warn_regex_recusion_guard = false;
|
static bool log_warn_regex_recusion_guard = false;
|
||||||
|
|
||||||
|
|
|
@ -133,6 +133,7 @@ struct log_cmd_error_exception { };
|
||||||
|
|
||||||
extern std::vector<FILE*> log_files;
|
extern std::vector<FILE*> log_files;
|
||||||
extern std::vector<std::ostream*> log_streams;
|
extern std::vector<std::ostream*> log_streams;
|
||||||
|
extern std::vector<std::string> log_scratchpads;
|
||||||
extern std::map<std::string, std::set<std::string>> log_hdump;
|
extern std::map<std::string, std::set<std::string>> log_hdump;
|
||||||
extern std::vector<YS_REGEX_TYPE> log_warn_regexes, log_nowarn_regexes, log_werror_regexes;
|
extern std::vector<YS_REGEX_TYPE> log_warn_regexes, log_nowarn_regexes, log_werror_regexes;
|
||||||
extern std::set<std::string> log_warnings, log_experimentals, log_experimentals_ignored;
|
extern std::set<std::string> log_warnings, log_experimentals, log_experimentals_ignored;
|
||||||
|
|
|
@ -45,6 +45,9 @@ struct TeePass : public Pass {
|
||||||
log(" -a logfile\n");
|
log(" -a logfile\n");
|
||||||
log(" Write output to this file, append if exists.\n");
|
log(" Write output to this file, append if exists.\n");
|
||||||
log("\n");
|
log("\n");
|
||||||
|
log(" -s scratchpad\n");
|
||||||
|
log(" Write output to this scratchpad value, truncate if it exists.\n");
|
||||||
|
log("\n");
|
||||||
log(" +INT, -INT\n");
|
log(" +INT, -INT\n");
|
||||||
log(" Add/subtract INT from the -v setting for this command.\n");
|
log(" Add/subtract INT from the -v setting for this command.\n");
|
||||||
log("\n");
|
log("\n");
|
||||||
|
@ -53,9 +56,11 @@ struct TeePass : public Pass {
|
||||||
{
|
{
|
||||||
std::vector<FILE*> backup_log_files, files_to_close;
|
std::vector<FILE*> backup_log_files, files_to_close;
|
||||||
std::vector<std::ostream*> backup_log_streams;
|
std::vector<std::ostream*> backup_log_streams;
|
||||||
|
std::vector<std::string> backup_log_scratchpads;
|
||||||
int backup_log_verbose_level = log_verbose_level;
|
int backup_log_verbose_level = log_verbose_level;
|
||||||
backup_log_streams = log_streams;
|
backup_log_streams = log_streams;
|
||||||
backup_log_files = log_files;
|
backup_log_files = log_files;
|
||||||
|
backup_log_scratchpads = log_scratchpads;
|
||||||
|
|
||||||
size_t argidx;
|
size_t argidx;
|
||||||
for (argidx = 1; argidx < args.size(); argidx++)
|
for (argidx = 1; argidx < args.size(); argidx++)
|
||||||
|
@ -78,6 +83,12 @@ struct TeePass : public Pass {
|
||||||
files_to_close.push_back(f);
|
files_to_close.push_back(f);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
if (args[argidx] == "-s" && argidx+1 < args.size()) {
|
||||||
|
auto name = args[++argidx];
|
||||||
|
design->scratchpad[name] = "";
|
||||||
|
log_scratchpads.push_back(name);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
if (GetSize(args[argidx]) >= 2 && (args[argidx][0] == '-' || args[argidx][0] == '+') && args[argidx][1] >= '0' && args[argidx][1] <= '9') {
|
if (GetSize(args[argidx]) >= 2 && (args[argidx][0] == '-' || args[argidx][0] == '+') && args[argidx][1] >= '0' && args[argidx][1] <= '9') {
|
||||||
log_verbose_level += atoi(args[argidx].c_str());
|
log_verbose_level += atoi(args[argidx].c_str());
|
||||||
continue;
|
continue;
|
||||||
|
@ -93,6 +104,7 @@ struct TeePass : public Pass {
|
||||||
fclose(cf);
|
fclose(cf);
|
||||||
log_files = backup_log_files;
|
log_files = backup_log_files;
|
||||||
log_streams = backup_log_streams;
|
log_streams = backup_log_streams;
|
||||||
|
log_scratchpads = backup_log_scratchpads;
|
||||||
throw;
|
throw;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -102,6 +114,7 @@ struct TeePass : public Pass {
|
||||||
log_verbose_level = backup_log_verbose_level;
|
log_verbose_level = backup_log_verbose_level;
|
||||||
log_files = backup_log_files;
|
log_files = backup_log_files;
|
||||||
log_streams = backup_log_streams;
|
log_streams = backup_log_streams;
|
||||||
|
log_scratchpads = backup_log_scratchpads;
|
||||||
}
|
}
|
||||||
} TeePass;
|
} TeePass;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue