mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-02 20:31:22 +00:00
Rework help_mode for synth_xilinx -widemux
This commit is contained in:
parent
da870e62d9
commit
cae69a3edd
1 changed files with 23 additions and 22 deletions
|
@ -276,29 +276,30 @@ struct SynthXilinxPass : public ScriptPass
|
||||||
run("memory_map");
|
run("memory_map");
|
||||||
run("dffsr2dff");
|
run("dffsr2dff");
|
||||||
run("dff2dffe");
|
run("dff2dffe");
|
||||||
if (widemux > 0 || help_mode) {
|
if (help_mode) {
|
||||||
run("simplemap t:$mux", " ('-widemux' only)");
|
run("simplemap t:$mux", " ('-widemux' only)");
|
||||||
if (widemux > 0 || help_mode) {
|
run("muxcover -dmux=0 -mux8=<cost> -mux16=<cost>, ('-widemux' only)");
|
||||||
std::string muxcover_args = " -dmux=0";
|
}
|
||||||
switch (widemux) {
|
else if (widemux > 0) {
|
||||||
// NB: Cost of mux2 is 100; mux8 should cost between 3 and 4
|
std::string muxcover_args = " -dmux=0";
|
||||||
// of those so that 4:1 muxes and below are implemented
|
switch (widemux) {
|
||||||
// out of mux2s
|
// NB: Cost of mux2 is 100; mux8 should cost between 3 and 4
|
||||||
case 5: muxcover_args += " -mux8=350 -mux16=400"; break;
|
// of those so that 4:1 muxes and below are implemented
|
||||||
case 6: muxcover_args += " -mux8=450 -mux16=500"; break;
|
// out of mux2s
|
||||||
case 7: muxcover_args += " -mux8=550 -mux16=600"; break;
|
case 5: muxcover_args += " -mux8=350 -mux16=400"; break;
|
||||||
case 8: muxcover_args += " -mux8=650 -mux16=700"; break;
|
case 6: muxcover_args += " -mux8=450 -mux16=500"; break;
|
||||||
case 9: muxcover_args += " -mux16=750"; break;
|
case 7: muxcover_args += " -mux8=550 -mux16=600"; break;
|
||||||
case 10: muxcover_args += " -mux16=850"; break;
|
case 8: muxcover_args += " -mux8=650 -mux16=700"; break;
|
||||||
case 11: muxcover_args += " -mux16=950"; break;
|
case 9: muxcover_args += " -mux16=750"; break;
|
||||||
case 12: muxcover_args += " -mux16=1050"; break;
|
case 10: muxcover_args += " -mux16=850"; break;
|
||||||
case 13: muxcover_args += " -mux16=1150"; break;
|
case 11: muxcover_args += " -mux16=950"; break;
|
||||||
case 14: muxcover_args += " -mux16=1250"; break;
|
case 12: muxcover_args += " -mux16=1050"; break;
|
||||||
case 15: muxcover_args += " -mux16=1350"; break;
|
case 13: muxcover_args += " -mux16=1150"; break;
|
||||||
default: muxcover_args += " -mux16=1450"; break;
|
case 14: muxcover_args += " -mux16=1250"; break;
|
||||||
}
|
case 15: muxcover_args += " -mux16=1350"; break;
|
||||||
run("muxcover " + muxcover_args, "('-widemux' only)");
|
default: muxcover_args += " -mux16=1450"; break;
|
||||||
}
|
}
|
||||||
|
run("muxcover " + muxcover_args);
|
||||||
}
|
}
|
||||||
run("opt -full");
|
run("opt -full");
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue