3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 01:24:10 +00:00

Fix pmgen for in-tree builds

Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
Clifford Wolf 2019-02-28 14:56:05 -08:00
parent 41e5028f98
commit 68a6937173
2 changed files with 9 additions and 8 deletions

View file

@ -5,4 +5,4 @@ EXTRA_OBJS += passes/pmgen/ice40_dsp_pm.h
.SECONDARY: passes/pmgen/ice40_dsp_pm.h .SECONDARY: passes/pmgen/ice40_dsp_pm.h
passes/pmgen/ice40_dsp_pm.h: passes/pmgen/pmgen.py passes/pmgen/ice40_dsp.pmg passes/pmgen/ice40_dsp_pm.h: passes/pmgen/pmgen.py passes/pmgen/ice40_dsp.pmg
$(P) mkdir -p passes/pmgen && cd passes/pmgen && python3 $^ $(P) mkdir -p passes/pmgen && python3 $^

View file

@ -7,8 +7,9 @@ import pprint
pp = pprint.PrettyPrinter(indent=4) pp = pprint.PrettyPrinter(indent=4)
pmgfile = sys.argv[1] pmgfile = sys.argv[1]
prefix = pmgfile.split("/")[-1] assert pmgfile.endswith(".pmg")
prefix = prefix.split(".")[0] prefix = pmgfile[0:-4]
pmname = prefix.split('/')[-1]
state_types = dict() state_types = dict()
udata_types = dict() udata_types = dict()
@ -189,10 +190,10 @@ with open("%s_pm.h" % prefix, "w") as f:
print("YOSYS_NAMESPACE_BEGIN", file=f) print("YOSYS_NAMESPACE_BEGIN", file=f)
print("", file=f) print("", file=f)
print("struct {}_pm {{".format(prefix), file=f) print("struct {}_pm {{".format(pmname), file=f)
print(" Module *module;", file=f) print(" Module *module;", file=f)
print(" SigMap sigmap;", file=f) print(" SigMap sigmap;", file=f)
print(" std::function<void()> on_accept;".format(prefix), file=f) print(" std::function<void()> on_accept;".format(pmname), file=f)
print("", file=f) print("", file=f)
for index in range(len(blocks)): for index in range(len(blocks)):
@ -290,7 +291,7 @@ with open("%s_pm.h" % prefix, "w") as f:
print(" }", file=f) print(" }", file=f)
print("", file=f) print("", file=f)
print(" {}_pm(Module *module, const vector<Cell*> &cells) :".format(prefix), file=f) print(" {}_pm(Module *module, const vector<Cell*> &cells) :".format(pmname), file=f)
print(" module(module), sigmap(module) {", file=f) print(" module(module), sigmap(module) {", file=f)
for s, t in sorted(udata_types.items()): for s, t in sorted(udata_types.items()):
if t.endswith("*"): if t.endswith("*"):
@ -320,7 +321,7 @@ with open("%s_pm.h" % prefix, "w") as f:
print(" }", file=f) print(" }", file=f)
print("", file=f) print("", file=f)
print(" ~{}_pm() {{".format(prefix), file=f) print(" ~{}_pm() {{".format(pmname), file=f)
print(" for (auto cell : autoremove_cells)", file=f) print(" for (auto cell : autoremove_cells)", file=f)
print(" module->remove(cell);", file=f) print(" module->remove(cell);", file=f)
print(" }", file=f) print(" }", file=f)
@ -339,7 +340,7 @@ with open("%s_pm.h" % prefix, "w") as f:
print(" }", file=f) print(" }", file=f)
print("", file=f) print("", file=f)
print(" void run(std::function<void({}_pm&)> on_accept_f) {{".format(prefix), file=f) print(" void run(std::function<void({}_pm&)> on_accept_f) {{".format(pmname), file=f)
print(" run([&](){on_accept_f(*this);});", file=f) print(" run([&](){on_accept_f(*this);});", file=f)
print(" }", file=f) print(" }", file=f)
print("", file=f) print("", file=f)