mirror of https://github.com/YosysHQ/yosys.git
Merge branch 'master' into eddie/refactor_synth_xilinx
This commit is contained in:
commit
d9d50b0b0c
8
Makefile
8
Makefile
|
@ -294,7 +294,7 @@ endif
|
||||||
PY_WRAPPER_FILE = kernel/python_wrappers
|
PY_WRAPPER_FILE = kernel/python_wrappers
|
||||||
OBJS += $(PY_WRAPPER_FILE).o
|
OBJS += $(PY_WRAPPER_FILE).o
|
||||||
PY_GEN_SCRIPT= py_wrap_generator
|
PY_GEN_SCRIPT= py_wrap_generator
|
||||||
PY_WRAP_INCLUDES := $(shell python$(PYTHON_VERSION) -c "import $(PY_GEN_SCRIPT); $(PY_GEN_SCRIPT).print_includes()")
|
PY_WRAP_INCLUDES := $(shell python$(PYTHON_VERSION) -c "from misc import $(PY_GEN_SCRIPT); $(PY_GEN_SCRIPT).print_includes()")
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(ENABLE_READLINE),1)
|
ifeq ($(ENABLE_READLINE),1)
|
||||||
|
@ -550,9 +550,9 @@ libyosys.so: $(filter-out kernel/driver.o,$(OBJS))
|
||||||
$(Q) mkdir -p $(dir $@)
|
$(Q) mkdir -p $(dir $@)
|
||||||
$(P) cat $< | grep -E -v "#[ ]*(include|error)" | $(LD) -x c++ -o $@ -E -P -
|
$(P) cat $< | grep -E -v "#[ ]*(include|error)" | $(LD) -x c++ -o $@ -E -P -
|
||||||
|
|
||||||
$(PY_WRAPPER_FILE).cc: $(PY_GEN_SCRIPT).py $(PY_WRAP_INCLUDES)
|
$(PY_WRAPPER_FILE).cc: misc/$(PY_GEN_SCRIPT).py $(PY_WRAP_INCLUDES)
|
||||||
$(Q) mkdir -p $(dir $@)
|
$(Q) mkdir -p $(dir $@)
|
||||||
$(P) python$(PYTHON_VERSION) -c "import $(PY_GEN_SCRIPT); $(PY_GEN_SCRIPT).gen_wrappers(\"$(PY_WRAPPER_FILE).cc\")"
|
$(P) python$(PYTHON_VERSION) -c "from misc import $(PY_GEN_SCRIPT); $(PY_GEN_SCRIPT).gen_wrappers(\"$(PY_WRAPPER_FILE).cc\")"
|
||||||
|
|
||||||
%.o: %.cpp
|
%.o: %.cpp
|
||||||
$(Q) mkdir -p $(dir $@)
|
$(Q) mkdir -p $(dir $@)
|
||||||
|
@ -685,7 +685,7 @@ ifeq ($(ENABLE_LIBYOSYS),1)
|
||||||
ifeq ($(ENABLE_PYOSYS),1)
|
ifeq ($(ENABLE_PYOSYS),1)
|
||||||
$(INSTALL_SUDO) mkdir -p $(PYTHON_DESTDIR)/pyosys
|
$(INSTALL_SUDO) mkdir -p $(PYTHON_DESTDIR)/pyosys
|
||||||
$(INSTALL_SUDO) cp libyosys.so $(PYTHON_DESTDIR)/pyosys
|
$(INSTALL_SUDO) cp libyosys.so $(PYTHON_DESTDIR)/pyosys
|
||||||
$(INSTALL_SUDO) cp __init__.py $(PYTHON_DESTDIR)/pyosys
|
$(INSTALL_SUDO) cp misc/__init__.py $(PYTHON_DESTDIR)/pyosys
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
|
@ -242,8 +242,6 @@ struct VerilogFrontend : public Frontend {
|
||||||
nowb_mode = false;
|
nowb_mode = false;
|
||||||
default_nettype_wire = true;
|
default_nettype_wire = true;
|
||||||
|
|
||||||
log_header(design, "Executing Verilog-2005 frontend.\n");
|
|
||||||
|
|
||||||
args.insert(args.begin()+1, verilog_defaults.begin(), verilog_defaults.end());
|
args.insert(args.begin()+1, verilog_defaults.begin(), verilog_defaults.end());
|
||||||
|
|
||||||
size_t argidx;
|
size_t argidx;
|
||||||
|
@ -415,6 +413,8 @@ struct VerilogFrontend : public Frontend {
|
||||||
}
|
}
|
||||||
extra_args(f, filename, args, argidx);
|
extra_args(f, filename, args, argidx);
|
||||||
|
|
||||||
|
log_header(design, "Executing Verilog-2005 frontend: %s\n", filename.c_str());
|
||||||
|
|
||||||
log("Parsing %s%s input from `%s' to AST representation.\n",
|
log("Parsing %s%s input from `%s' to AST representation.\n",
|
||||||
formal_mode ? "formal " : "", sv_mode ? "SystemVerilog" : "Verilog", filename.c_str());
|
formal_mode ? "formal " : "", sv_mode ? "SystemVerilog" : "Verilog", filename.c_str());
|
||||||
|
|
||||||
|
|
|
@ -529,13 +529,13 @@ int main(int argc, char **argv)
|
||||||
log_error("Can't open dependencies file for writing: %s\n", strerror(errno));
|
log_error("Can't open dependencies file for writing: %s\n", strerror(errno));
|
||||||
bool first = true;
|
bool first = true;
|
||||||
for (auto fn : yosys_output_files) {
|
for (auto fn : yosys_output_files) {
|
||||||
fprintf(f, "%s%s", first ? "" : " ", fn.c_str());
|
fprintf(f, "%s%s", first ? "" : " ", escape_filename_spaces(fn).c_str());
|
||||||
first = false;
|
first = false;
|
||||||
}
|
}
|
||||||
fprintf(f, ":");
|
fprintf(f, ":");
|
||||||
for (auto fn : yosys_input_files) {
|
for (auto fn : yosys_input_files) {
|
||||||
if (yosys_output_files.count(fn) == 0)
|
if (yosys_output_files.count(fn) == 0)
|
||||||
fprintf(f, " %s", fn.c_str());
|
fprintf(f, " %s", escape_filename_spaces(fn).c_str());
|
||||||
}
|
}
|
||||||
fprintf(f, "\n");
|
fprintf(f, "\n");
|
||||||
}
|
}
|
||||||
|
|
|
@ -3456,7 +3456,7 @@ bool RTLIL::SigSpec::operator ==(const RTLIL::SigSpec &other) const
|
||||||
pack();
|
pack();
|
||||||
other.pack();
|
other.pack();
|
||||||
|
|
||||||
if (chunks_.size() != chunks_.size())
|
if (chunks_.size() != other.chunks_.size())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
updhash();
|
updhash();
|
||||||
|
|
|
@ -482,6 +482,20 @@ void remove_directory(std::string dirname)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::string escape_filename_spaces(const std::string& filename)
|
||||||
|
{
|
||||||
|
std::string out;
|
||||||
|
out.reserve(filename.size());
|
||||||
|
for (auto c : filename)
|
||||||
|
{
|
||||||
|
if (c == ' ')
|
||||||
|
out += "\\ ";
|
||||||
|
else
|
||||||
|
out.push_back(c);
|
||||||
|
}
|
||||||
|
return out;
|
||||||
|
}
|
||||||
|
|
||||||
int GetSize(RTLIL::Wire *wire)
|
int GetSize(RTLIL::Wire *wire)
|
||||||
{
|
{
|
||||||
return wire->width;
|
return wire->width;
|
||||||
|
|
|
@ -257,6 +257,7 @@ std::string make_temp_dir(std::string template_str = "/tmp/yosys_XXXXXX");
|
||||||
bool check_file_exists(std::string filename, bool is_exec = false);
|
bool check_file_exists(std::string filename, bool is_exec = false);
|
||||||
bool is_absolute_path(std::string filename);
|
bool is_absolute_path(std::string filename);
|
||||||
void remove_directory(std::string dirname);
|
void remove_directory(std::string dirname);
|
||||||
|
std::string escape_filename_spaces(const std::string& filename);
|
||||||
|
|
||||||
template<typename T> int GetSize(const T &obj) { return obj.size(); }
|
template<typename T> int GetSize(const T &obj) { return obj.size(); }
|
||||||
int GetSize(RTLIL::Wire *wire);
|
int GetSize(RTLIL::Wire *wire);
|
||||||
|
|
|
@ -44,7 +44,10 @@ struct EquivOptPass:public ScriptPass
|
||||||
log(" useful for handling architecture-specific primitives.\n");
|
log(" useful for handling architecture-specific primitives.\n");
|
||||||
log("\n");
|
log("\n");
|
||||||
log(" -assert\n");
|
log(" -assert\n");
|
||||||
log(" produce an error if the circuits are not equivalent\n");
|
log(" produce an error if the circuits are not equivalent.\n");
|
||||||
|
log("\n");
|
||||||
|
log(" -undef\n");
|
||||||
|
log(" enable modelling of undef states during equiv_induct.\n");
|
||||||
log("\n");
|
log("\n");
|
||||||
log("The following commands are executed by this verification command:\n");
|
log("The following commands are executed by this verification command:\n");
|
||||||
help_script();
|
help_script();
|
||||||
|
@ -52,13 +55,14 @@ struct EquivOptPass:public ScriptPass
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string command, techmap_opts;
|
std::string command, techmap_opts;
|
||||||
bool assert;
|
bool assert, undef;
|
||||||
|
|
||||||
void clear_flags() YS_OVERRIDE
|
void clear_flags() YS_OVERRIDE
|
||||||
{
|
{
|
||||||
command = "";
|
command = "";
|
||||||
techmap_opts = "";
|
techmap_opts = "";
|
||||||
assert = false;
|
assert = false;
|
||||||
|
undef = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
void execute(std::vector < std::string > args, RTLIL::Design * design) YS_OVERRIDE
|
void execute(std::vector < std::string > args, RTLIL::Design * design) YS_OVERRIDE
|
||||||
|
@ -84,6 +88,10 @@ struct EquivOptPass:public ScriptPass
|
||||||
assert = true;
|
assert = true;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
if (args[argidx] == "-undef") {
|
||||||
|
undef = true;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -139,7 +147,12 @@ struct EquivOptPass:public ScriptPass
|
||||||
|
|
||||||
if (check_label("prove")) {
|
if (check_label("prove")) {
|
||||||
run("equiv_make gold gate equiv");
|
run("equiv_make gold gate equiv");
|
||||||
run("equiv_induct equiv");
|
if (help_mode)
|
||||||
|
run("equiv_induct [-undef] equiv");
|
||||||
|
else if (undef)
|
||||||
|
run("equiv_induct -undef equiv");
|
||||||
|
else
|
||||||
|
run("equiv_induct equiv");
|
||||||
if (help_mode)
|
if (help_mode)
|
||||||
run("equiv_status [-assert] equiv");
|
run("equiv_status [-assert] equiv");
|
||||||
else if (assert)
|
else if (assert)
|
||||||
|
|
Loading…
Reference in New Issue