mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-01 17:03:19 +00:00
Added "yosys -D" feature
This commit is contained in:
parent
1565d1af69
commit
0bc95f1e04
113 changed files with 172 additions and 145 deletions
|
@ -389,7 +389,7 @@ struct EvalPass : public Pass {
|
|||
std::vector<std::string> shows, tables;
|
||||
bool set_undef = false;
|
||||
|
||||
log_header("Executing EVAL pass (evaluate the circuit given an input).\n");
|
||||
log_header(design, "Executing EVAL pass (evaluate the circuit given an input).\n");
|
||||
|
||||
size_t argidx;
|
||||
for (argidx = 1; argidx < args.size(); argidx++) {
|
||||
|
|
|
@ -262,7 +262,7 @@ struct ExposePass : public Pass {
|
|||
bool flag_evert_dff = false;
|
||||
std::string sep = ".";
|
||||
|
||||
log_header("Executing EXPOSE pass (exposing internal signals as outputs).\n");
|
||||
log_header(design, "Executing EXPOSE pass (exposing internal signals as outputs).\n");
|
||||
|
||||
size_t argidx;
|
||||
for (argidx = 1; argidx < args.size(); argidx++)
|
||||
|
|
|
@ -798,7 +798,7 @@ struct FreducePass : public Pass {
|
|||
inv_mode = false;
|
||||
dump_prefix = std::string();
|
||||
|
||||
log_header("Executing FREDUCE pass (perform functional reduction).\n");
|
||||
log_header(design, "Executing FREDUCE pass (perform functional reduction).\n");
|
||||
|
||||
size_t argidx;
|
||||
for (argidx = 1; argidx < args.size(); argidx++) {
|
||||
|
|
|
@ -32,7 +32,7 @@ void create_miter_equiv(struct Pass *that, std::vector<std::string> args, RTLIL:
|
|||
bool flag_make_assert = false;
|
||||
bool flag_flatten = false;
|
||||
|
||||
log_header("Executing MITER pass (creating miter circuit).\n");
|
||||
log_header(design, "Executing MITER pass (creating miter circuit).\n");
|
||||
|
||||
size_t argidx;
|
||||
for (argidx = 2; argidx < args.size(); argidx++)
|
||||
|
@ -264,7 +264,7 @@ void create_miter_assert(struct Pass *that, std::vector<std::string> args, RTLIL
|
|||
bool flag_make_outputs = false;
|
||||
bool flag_flatten = false;
|
||||
|
||||
log_header("Executing MITER pass (creating miter circuit).\n");
|
||||
log_header(design, "Executing MITER pass (creating miter circuit).\n");
|
||||
|
||||
size_t argidx;
|
||||
for (argidx = 2; argidx < args.size(); argidx++)
|
||||
|
|
|
@ -1073,7 +1073,7 @@ struct SatPass : public Pass {
|
|||
int tempinduct_skip = 0, stepsize = 1;
|
||||
std::string vcd_file_name, json_file_name, cnf_file_name;
|
||||
|
||||
log_header("Executing SAT pass (solving SAT problems in the circuit).\n");
|
||||
log_header(design, "Executing SAT pass (solving SAT problems in the circuit).\n");
|
||||
|
||||
size_t argidx;
|
||||
for (argidx = 1; argidx < args.size(); argidx++) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue