mirror of https://github.com/YosysHQ/yosys.git
techmap: use +/techmap.v instead of an ad-hoc code generator.
This commit is contained in:
parent
4b3f48a7ec
commit
68d747f767
|
@ -1 +0,0 @@
|
|||
techmap.inc
|
|
@ -45,18 +45,6 @@ OBJS += passes/techmap/flowmap.o
|
|||
OBJS += passes/techmap/extractinv.o
|
||||
endif
|
||||
|
||||
GENFILES += passes/techmap/techmap.inc
|
||||
|
||||
passes/techmap/techmap.inc: techlibs/common/techmap.v
|
||||
$(Q) mkdir -p $(dir $@)
|
||||
$(P) echo "// autogenerated from $<" > $@.new
|
||||
$(Q) echo "static char stdcells_code[] = {" >> $@.new
|
||||
$(Q) od -v -td1 -An $< | $(SED) -e 's/[0-9][0-9]*/&,/g' >> $@.new
|
||||
$(Q) echo "0};" >> $@.new
|
||||
$(Q) mv $@.new $@
|
||||
|
||||
passes/techmap/techmap.o: passes/techmap/techmap.inc
|
||||
|
||||
ifeq ($(DISABLE_SPAWN),0)
|
||||
TARGETS += $(PROGRAM_PREFIX)yosys-filterlib$(EXE)
|
||||
EXTRA_OBJS += passes/techmap/filterlib.o
|
||||
|
|
|
@ -27,7 +27,6 @@
|
|||
#include <string.h>
|
||||
|
||||
#include "simplemap.h"
|
||||
#include "passes/techmap/techmap.inc"
|
||||
|
||||
YOSYS_NAMESPACE_BEGIN
|
||||
|
||||
|
@ -1282,8 +1281,7 @@ struct TechmapPass : public Pass {
|
|||
|
||||
RTLIL::Design *map = new RTLIL::Design;
|
||||
if (map_files.empty()) {
|
||||
std::istringstream f(stdcells_code);
|
||||
Frontend::frontend_call(map, &f, "<techmap.v>", verilog_frontend);
|
||||
Frontend::frontend_call(map, nullptr, "+/techmap.v", verilog_frontend);
|
||||
} else {
|
||||
for (auto &fn : map_files)
|
||||
if (fn.compare(0, 1, "%") == 0) {
|
||||
|
|
Loading…
Reference in New Issue