mirror of https://github.com/YosysHQ/yosys.git
Merge remote-tracking branch 'origin/xaig' into xc7mux
This commit is contained in:
commit
6c2cb51996
|
@ -16,16 +16,17 @@ Yosys 0.8 .. Yosys 0.8-dev
|
||||||
- Added "gate2lut.v" techmap rule
|
- Added "gate2lut.v" techmap rule
|
||||||
- Added "rename -src"
|
- Added "rename -src"
|
||||||
- Added "equiv_opt" pass
|
- Added "equiv_opt" pass
|
||||||
|
- Added "shregmap -tech xilinx"
|
||||||
- Added "read_aiger" frontend
|
- Added "read_aiger" frontend
|
||||||
- Added "shregmap -tech xilinx"
|
- Added "shregmap -tech xilinx"
|
||||||
- "synth_xilinx" to now infer hard shift registers (-nosrl to disable)
|
|
||||||
- Added "abc9" pass for timing-aware techmapping (experimental, FPGA only, no FFs)
|
- Added "abc9" pass for timing-aware techmapping (experimental, FPGA only, no FFs)
|
||||||
- Added "synth_xilinx -abc9" (experimental)
|
- Added "synth_xilinx -abc9" (experimental)
|
||||||
- Added "synth_ice40 -abc9" (experimental)
|
- Added "synth_ice40 -abc9" (experimental)
|
||||||
- Added "synth -abc9" (experimental)
|
- Added "synth -abc9" (experimental)
|
||||||
|
- Added "muxpack" pass
|
||||||
- Extended "muxcover -mux{4,8,16}=<cost>"
|
- Extended "muxcover -mux{4,8,16}=<cost>"
|
||||||
- Fixed sign extension of unsized constants with 'bx and 'bz MSB
|
- Fixed sign extension of unsized constants with 'bx and 'bz MSB
|
||||||
- Added "muxpack" pass
|
- "synth_xilinx" to now infer hard shift registers (-nosrl to disable)
|
||||||
- "synth_xilinx" to now infer wide multiplexers (-nomux to disable)
|
- "synth_xilinx" to now infer wide multiplexers (-nomux to disable)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -189,6 +189,10 @@ struct JsonWriter
|
||||||
f << stringf(" %s: {\n", get_name(w->name).c_str());
|
f << stringf(" %s: {\n", get_name(w->name).c_str());
|
||||||
f << stringf(" \"hide_name\": %s,\n", w->name[0] == '$' ? "1" : "0");
|
f << stringf(" \"hide_name\": %s,\n", w->name[0] == '$' ? "1" : "0");
|
||||||
f << stringf(" \"bits\": %s,\n", get_bits(w).c_str());
|
f << stringf(" \"bits\": %s,\n", get_bits(w).c_str());
|
||||||
|
if (w->start_offset)
|
||||||
|
f << stringf(" \"offset\": %d,\n", w->start_offset);
|
||||||
|
if (w->upto)
|
||||||
|
f << stringf(" \"upto\": 1,\n");
|
||||||
f << stringf(" \"attributes\": {");
|
f << stringf(" \"attributes\": {");
|
||||||
write_parameters(w->attributes);
|
write_parameters(w->attributes);
|
||||||
f << stringf("\n }\n");
|
f << stringf("\n }\n");
|
||||||
|
|
|
@ -372,6 +372,18 @@ void json_import(Design *design, string &modname, JsonNode *node)
|
||||||
if (wire == nullptr)
|
if (wire == nullptr)
|
||||||
wire = module->addWire(net_name, GetSize(bits_node->data_array));
|
wire = module->addWire(net_name, GetSize(bits_node->data_array));
|
||||||
|
|
||||||
|
if (net_node->data_dict.count("upto") != 0) {
|
||||||
|
JsonNode *val = net_node->data_dict.at("upto");
|
||||||
|
if (val->type == 'N')
|
||||||
|
wire->upto = val->data_number != 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (net_node->data_dict.count("offset") != 0) {
|
||||||
|
JsonNode *val = net_node->data_dict.at("offset");
|
||||||
|
if (val->type == 'N')
|
||||||
|
wire->start_offset = val->data_number;
|
||||||
|
}
|
||||||
|
|
||||||
for (int i = 0; i < GetSize(bits_node->data_array); i++)
|
for (int i = 0; i < GetSize(bits_node->data_array); i++)
|
||||||
{
|
{
|
||||||
JsonNode *bitval_node = bits_node->data_array.at(i);
|
JsonNode *bitval_node = bits_node->data_array.at(i);
|
||||||
|
|
|
@ -545,6 +545,7 @@ void Backend::extra_args(std::ostream *&f, std::string &filename, std::vector<st
|
||||||
}
|
}
|
||||||
|
|
||||||
filename = arg;
|
filename = arg;
|
||||||
|
rewrite_filename(filename);
|
||||||
std::ofstream *ff = new std::ofstream;
|
std::ofstream *ff = new std::ofstream;
|
||||||
ff->open(filename.c_str(), std::ofstream::trunc);
|
ff->open(filename.c_str(), std::ofstream::trunc);
|
||||||
yosys_output_files.insert(filename);
|
yosys_output_files.insert(filename);
|
||||||
|
|
|
@ -659,6 +659,7 @@ struct SatHelper
|
||||||
|
|
||||||
void dump_model_to_vcd(std::string vcd_file_name)
|
void dump_model_to_vcd(std::string vcd_file_name)
|
||||||
{
|
{
|
||||||
|
rewrite_filename(vcd_file_name);
|
||||||
FILE *f = fopen(vcd_file_name.c_str(), "w");
|
FILE *f = fopen(vcd_file_name.c_str(), "w");
|
||||||
if (!f)
|
if (!f)
|
||||||
log_cmd_error("Can't open output file `%s' for writing: %s\n", vcd_file_name.c_str(), strerror(errno));
|
log_cmd_error("Can't open output file `%s' for writing: %s\n", vcd_file_name.c_str(), strerror(errno));
|
||||||
|
@ -761,6 +762,7 @@ struct SatHelper
|
||||||
|
|
||||||
void dump_model_to_json(std::string json_file_name)
|
void dump_model_to_json(std::string json_file_name)
|
||||||
{
|
{
|
||||||
|
rewrite_filename(json_file_name);
|
||||||
FILE *f = fopen(json_file_name.c_str(), "w");
|
FILE *f = fopen(json_file_name.c_str(), "w");
|
||||||
if (!f)
|
if (!f)
|
||||||
log_cmd_error("Can't open output file `%s' for writing: %s\n", json_file_name.c_str(), strerror(errno));
|
log_cmd_error("Can't open output file `%s' for writing: %s\n", json_file_name.c_str(), strerror(errno));
|
||||||
|
@ -1505,6 +1507,7 @@ struct SatPass : public Pass {
|
||||||
{
|
{
|
||||||
if (!cnf_file_name.empty())
|
if (!cnf_file_name.empty())
|
||||||
{
|
{
|
||||||
|
rewrite_filename(cnf_file_name);
|
||||||
FILE *f = fopen(cnf_file_name.c_str(), "w");
|
FILE *f = fopen(cnf_file_name.c_str(), "w");
|
||||||
if (!f)
|
if (!f)
|
||||||
log_cmd_error("Can't open output file `%s' for writing: %s\n", cnf_file_name.c_str(), strerror(errno));
|
log_cmd_error("Can't open output file `%s' for writing: %s\n", cnf_file_name.c_str(), strerror(errno));
|
||||||
|
@ -1608,6 +1611,7 @@ struct SatPass : public Pass {
|
||||||
|
|
||||||
if (!cnf_file_name.empty())
|
if (!cnf_file_name.empty())
|
||||||
{
|
{
|
||||||
|
rewrite_filename(cnf_file_name);
|
||||||
FILE *f = fopen(cnf_file_name.c_str(), "w");
|
FILE *f = fopen(cnf_file_name.c_str(), "w");
|
||||||
if (!f)
|
if (!f)
|
||||||
log_cmd_error("Can't open output file `%s' for writing: %s\n", cnf_file_name.c_str(), strerror(errno));
|
log_cmd_error("Can't open output file `%s' for writing: %s\n", cnf_file_name.c_str(), strerror(errno));
|
||||||
|
|
|
@ -293,10 +293,22 @@ struct ShregmapWorker
|
||||||
|
|
||||||
if (opts.init || sigbit_init.count(q_bit) == 0)
|
if (opts.init || sigbit_init.count(q_bit) == 0)
|
||||||
{
|
{
|
||||||
if (sigbit_chain_next.count(d_bit)) {
|
auto r = sigbit_chain_next.insert(std::make_pair(d_bit, cell));
|
||||||
|
if (!r.second) {
|
||||||
|
// Insertion not successful means that d_bit is already
|
||||||
|
// connected to another register, thus mark it as a
|
||||||
|
// non chain user ...
|
||||||
sigbit_with_non_chain_users.insert(d_bit);
|
sigbit_with_non_chain_users.insert(d_bit);
|
||||||
} else
|
// ... and clone d_bit into another wire, and use that
|
||||||
sigbit_chain_next[d_bit] = cell;
|
// wire as a different key in the d_bit-to-cell dictionary
|
||||||
|
// so that it can be identified as another chain
|
||||||
|
// (omitting this common flop)
|
||||||
|
// Link: https://github.com/YosysHQ/yosys/pull/1085
|
||||||
|
Wire *wire = module->addWire(NEW_ID);
|
||||||
|
module->connect(wire, d_bit);
|
||||||
|
sigmap.add(wire, d_bit);
|
||||||
|
sigbit_chain_next.insert(std::make_pair(wire, cell));
|
||||||
|
}
|
||||||
|
|
||||||
sigbit_chain_prev[q_bit] = cell;
|
sigbit_chain_prev[q_bit] = cell;
|
||||||
continue;
|
continue;
|
||||||
|
|
|
@ -50,20 +50,21 @@ module _80_ecp5_alu (A, B, CI, BI, X, Y, CO);
|
||||||
|
|
||||||
wire [Y_WIDTH2-1:0] AA = A_buf;
|
wire [Y_WIDTH2-1:0] AA = A_buf;
|
||||||
wire [Y_WIDTH2-1:0] BB = BI ? ~B_buf : B_buf;
|
wire [Y_WIDTH2-1:0] BB = BI ? ~B_buf : B_buf;
|
||||||
|
wire [Y_WIDTH2-1:0] BX = B_buf;
|
||||||
wire [Y_WIDTH2-1:0] C = {CO, CI};
|
wire [Y_WIDTH2-1:0] C = {CO, CI};
|
||||||
wire [Y_WIDTH2-1:0] FCO, Y1;
|
wire [Y_WIDTH2-1:0] FCO, Y1;
|
||||||
|
|
||||||
genvar i;
|
genvar i;
|
||||||
generate for (i = 0; i < Y_WIDTH2; i = i + 2) begin:slice
|
generate for (i = 0; i < Y_WIDTH2; i = i + 2) begin:slice
|
||||||
CCU2C #(
|
CCU2C #(
|
||||||
.INIT0(16'b0110011010101010),
|
.INIT0(16'b1001011010101010),
|
||||||
.INIT1(16'b0110011010101010),
|
.INIT1(16'b1001011010101010),
|
||||||
.INJECT1_0("NO"),
|
.INJECT1_0("NO"),
|
||||||
.INJECT1_1("NO")
|
.INJECT1_1("NO")
|
||||||
) ccu2c_i (
|
) ccu2c_i (
|
||||||
.CIN(C[i]),
|
.CIN(C[i]),
|
||||||
.A0(AA[i]), .B0(BB[i]), .C0(1'b0), .D0(1'b1),
|
.A0(AA[i]), .B0(BX[i]), .C0(BI), .D0(1'b1),
|
||||||
.A1(AA[i+1]), .B1(BB[i+1]), .C1(1'b0), .D1(1'b1),
|
.A1(AA[i+1]), .B1(BX[i+1]), .C1(BI), .D1(1'b1),
|
||||||
.S0(Y[i]), .S1(Y1[i]),
|
.S0(Y[i]), .S1(Y1[i]),
|
||||||
.COUT(FCO[i])
|
.COUT(FCO[i])
|
||||||
);
|
);
|
||||||
|
|
|
@ -0,0 +1,48 @@
|
||||||
|
module shregmap_static_test(input i, clk, output [1:0] q);
|
||||||
|
reg head = 1'b0;
|
||||||
|
reg [3:0] shift1 = 4'b0000;
|
||||||
|
reg [3:0] shift2 = 4'b0000;
|
||||||
|
|
||||||
|
always @(posedge clk) begin
|
||||||
|
head <= i;
|
||||||
|
shift1 <= {shift1[2:0], head};
|
||||||
|
shift2 <= {shift2[2:0], head};
|
||||||
|
end
|
||||||
|
|
||||||
|
assign q = {shift2[3], shift1[3]};
|
||||||
|
endmodule
|
||||||
|
|
||||||
|
module $__SHREG_DFF_P_(input C, D, output Q);
|
||||||
|
parameter DEPTH = 1;
|
||||||
|
parameter [DEPTH-1:0] INIT = {DEPTH{1'b0}};
|
||||||
|
reg [DEPTH-1:0] r = INIT;
|
||||||
|
always @(posedge C)
|
||||||
|
r <= { r[DEPTH-2:0], D };
|
||||||
|
assign Q = r[DEPTH-1];
|
||||||
|
endmodule
|
||||||
|
|
||||||
|
module shregmap_variable_test(input i, clk, input [1:0] l1, l2, output [1:0] q);
|
||||||
|
reg head = 1'b0;
|
||||||
|
reg [3:0] shift1 = 4'b0000;
|
||||||
|
reg [3:0] shift2 = 4'b0000;
|
||||||
|
|
||||||
|
always @(posedge clk) begin
|
||||||
|
head <= i;
|
||||||
|
shift1 <= {shift1[2:0], head};
|
||||||
|
shift2 <= {shift2[2:0], head};
|
||||||
|
end
|
||||||
|
|
||||||
|
assign q = {shift2[l2], shift1[l1]};
|
||||||
|
endmodule
|
||||||
|
|
||||||
|
module $__XILINX_SHREG_(input C, D, input [1:0] L, output Q);
|
||||||
|
parameter CLKPOL = 1;
|
||||||
|
parameter ENPOL = 1;
|
||||||
|
parameter DEPTH = 1;
|
||||||
|
parameter [DEPTH-1:0] INIT = {DEPTH{1'b0}};
|
||||||
|
reg [DEPTH-1:0] r = INIT;
|
||||||
|
wire clk = C ^ CLKPOL;
|
||||||
|
always @(posedge C)
|
||||||
|
r <= { r[DEPTH-2:0], D };
|
||||||
|
assign Q = r[L];
|
||||||
|
endmodule
|
|
@ -0,0 +1,66 @@
|
||||||
|
read_verilog shregmap.v
|
||||||
|
design -save read
|
||||||
|
|
||||||
|
design -copy-to model $__SHREG_DFF_P_
|
||||||
|
hierarchy -top shregmap_static_test
|
||||||
|
prep
|
||||||
|
design -save gold
|
||||||
|
|
||||||
|
techmap
|
||||||
|
shregmap -init
|
||||||
|
|
||||||
|
opt
|
||||||
|
|
||||||
|
stat
|
||||||
|
# show -width
|
||||||
|
select -assert-count 1 t:$_DFF_P_
|
||||||
|
select -assert-count 2 t:$__SHREG_DFF_P_
|
||||||
|
|
||||||
|
design -stash gate
|
||||||
|
|
||||||
|
design -import gold -as gold
|
||||||
|
design -import gate -as gate
|
||||||
|
design -copy-from model -as $__SHREG_DFF_P_ \$__SHREG_DFF_P_
|
||||||
|
prep
|
||||||
|
|
||||||
|
miter -equiv -flatten -make_assert -make_outputs gold gate miter
|
||||||
|
sat -verify -prove-asserts -show-ports -seq 5 miter
|
||||||
|
|
||||||
|
design -load gold
|
||||||
|
stat
|
||||||
|
|
||||||
|
design -load gate
|
||||||
|
stat
|
||||||
|
|
||||||
|
##########
|
||||||
|
|
||||||
|
design -load read
|
||||||
|
design -copy-to model $__XILINX_SHREG_
|
||||||
|
hierarchy -top shregmap_variable_test
|
||||||
|
prep
|
||||||
|
design -save gold
|
||||||
|
|
||||||
|
simplemap t:$dff t:$dffe
|
||||||
|
shregmap -tech xilinx
|
||||||
|
|
||||||
|
stat
|
||||||
|
# show -width
|
||||||
|
write_verilog -noexpr -norename
|
||||||
|
select -assert-count 1 t:$_DFF_P_
|
||||||
|
select -assert-count 2 t:$__XILINX_SHREG_
|
||||||
|
|
||||||
|
design -stash gate
|
||||||
|
|
||||||
|
design -import gold -as gold
|
||||||
|
design -import gate -as gate
|
||||||
|
design -copy-from model -as $__XILINX_SHREG_ \$__XILINX_SHREG_
|
||||||
|
prep
|
||||||
|
|
||||||
|
miter -equiv -flatten -make_assert -make_outputs gold gate miter
|
||||||
|
sat -verify -prove-asserts -show-ports -seq 5 miter
|
||||||
|
|
||||||
|
design -load gold
|
||||||
|
stat
|
||||||
|
|
||||||
|
design -load gate
|
||||||
|
stat
|
Loading…
Reference in New Issue