code
stringlengths
35
6.69k
score
float64
6.5
11.5
module std_reg #( parameter WIDTH = 32 ) ( input wire [ WIDTH-1:0] in, input wire write_en, input wire clk, input wire reset, // output output logic [WIDTH - 1:0] out, output logic done ); always_ff @(posedge clk) begin if (reset) begin out <= 0; done <= 0; end else if (write_en) begin out <= in; done <= 1'd1; end else done <= 1'd0; end endmodule
7.672256
module std_mem_d1 #( parameter WIDTH = 32, parameter SIZE = 16, parameter IDX_SIZE = 4 ) ( input wire logic [IDX_SIZE-1:0] addr0, input wire logic [ WIDTH-1:0] write_data, input wire logic write_en, input wire logic clk, output logic [ WIDTH-1:0] read_data, output logic done ); logic [WIDTH-1:0] mem[SIZE-1:0]; /* verilator lint_off WIDTH */ assign read_data = mem[addr0]; always_ff @(posedge clk) begin if (write_en) begin mem[addr0] <= write_data; done <= 1'd1; end else done <= 1'd0; end // Check for out of bounds access `ifdef VERILATOR always_comb begin if (addr0 >= SIZE) $error("std_mem_d1: Out of bounds access\n", "addr0: %0d\n", addr0, "SIZE: %0d", SIZE); end `endif endmodule
8.560454
module std_mem_d2 #( parameter WIDTH = 32, parameter D0_SIZE = 16, parameter D1_SIZE = 16, parameter D0_IDX_SIZE = 4, parameter D1_IDX_SIZE = 4 ) ( input wire logic [D0_IDX_SIZE-1:0] addr0, input wire logic [D1_IDX_SIZE-1:0] addr1, input wire logic [ WIDTH-1:0] write_data, input wire logic write_en, input wire logic clk, output logic [ WIDTH-1:0] read_data, output logic done ); /* verilator lint_off WIDTH */ logic [WIDTH-1:0] mem[D0_SIZE-1:0][D1_SIZE-1:0]; assign read_data = mem[addr0][addr1]; always_ff @(posedge clk) begin if (write_en) begin mem[addr0][addr1] <= write_data; done <= 1'd1; end else done <= 1'd0; end // Check for out of bounds access `ifdef VERILATOR always_comb begin if (addr0 >= D0_SIZE) $error("std_mem_d2: Out of bounds access\n", "addr0: %0d\n", addr0, "D0_SIZE: %0d", D0_SIZE); if (addr1 >= D1_SIZE) $error("std_mem_d2: Out of bounds access\n", "addr1: %0d\n", addr1, "D1_SIZE: %0d", D1_SIZE); end `endif endmodule
8.570777
module std_mem_d3 #( parameter WIDTH = 32, parameter D0_SIZE = 16, parameter D1_SIZE = 16, parameter D2_SIZE = 16, parameter D0_IDX_SIZE = 4, parameter D1_IDX_SIZE = 4, parameter D2_IDX_SIZE = 4 ) ( input wire logic [D0_IDX_SIZE-1:0] addr0, input wire logic [D1_IDX_SIZE-1:0] addr1, input wire logic [D2_IDX_SIZE-1:0] addr2, input wire logic [ WIDTH-1:0] write_data, input wire logic write_en, input wire logic clk, output logic [ WIDTH-1:0] read_data, output logic done ); /* verilator lint_off WIDTH */ logic [WIDTH-1:0] mem[D0_SIZE-1:0][D1_SIZE-1:0][D2_SIZE-1:0]; assign read_data = mem[addr0][addr1][addr2]; always_ff @(posedge clk) begin if (write_en) begin mem[addr0][addr1][addr2] <= write_data; done <= 1'd1; end else done <= 1'd0; end // Check for out of bounds access `ifdef VERILATOR always_comb begin if (addr0 >= D0_SIZE) $error("std_mem_d3: Out of bounds access\n", "addr0: %0d\n", addr0, "D0_SIZE: %0d", D0_SIZE); if (addr1 >= D1_SIZE) $error("std_mem_d3: Out of bounds access\n", "addr1: %0d\n", addr1, "D1_SIZE: %0d", D1_SIZE); if (addr2 >= D2_SIZE) $error("std_mem_d3: Out of bounds access\n", "addr2: %0d\n", addr2, "D2_SIZE: %0d", D2_SIZE); end `endif endmodule
9.018781
module std_mem_d4 #( parameter WIDTH = 32, parameter D0_SIZE = 16, parameter D1_SIZE = 16, parameter D2_SIZE = 16, parameter D3_SIZE = 16, parameter D0_IDX_SIZE = 4, parameter D1_IDX_SIZE = 4, parameter D2_IDX_SIZE = 4, parameter D3_IDX_SIZE = 4 ) ( input wire logic [D0_IDX_SIZE-1:0] addr0, input wire logic [D1_IDX_SIZE-1:0] addr1, input wire logic [D2_IDX_SIZE-1:0] addr2, input wire logic [D3_IDX_SIZE-1:0] addr3, input wire logic [ WIDTH-1:0] write_data, input wire logic write_en, input wire logic clk, output logic [ WIDTH-1:0] read_data, output logic done ); /* verilator lint_off WIDTH */ logic [WIDTH-1:0] mem[D0_SIZE-1:0][D1_SIZE-1:0][D2_SIZE-1:0][D3_SIZE-1:0]; assign read_data = mem[addr0][addr1][addr2][addr3]; always_ff @(posedge clk) begin if (write_en) begin mem[addr0][addr1][addr2][addr3] <= write_data; done <= 1'd1; end else done <= 1'd0; end // Check for out of bounds access `ifdef VERILATOR always_comb begin if (addr0 >= D0_SIZE) $error("std_mem_d4: Out of bounds access\n", "addr0: %0d\n", addr0, "D0_SIZE: %0d", D0_SIZE); if (addr1 >= D1_SIZE) $error("std_mem_d4: Out of bounds access\n", "addr1: %0d\n", addr1, "D1_SIZE: %0d", D1_SIZE); if (addr2 >= D2_SIZE) $error("std_mem_d4: Out of bounds access\n", "addr2: %0d\n", addr2, "D2_SIZE: %0d", D2_SIZE); if (addr3 >= D3_SIZE) $error("std_mem_d4: Out of bounds access\n", "addr3: %0d\n", addr3, "D3_SIZE: %0d", D3_SIZE); end `endif endmodule
9.168498
module std_fp_add #( parameter WIDTH = 32, parameter INT_WIDTH = 16, parameter FRAC_WIDTH = 16 ) ( input logic [WIDTH-1:0] left, input logic [WIDTH-1:0] right, output logic [WIDTH-1:0] out ); assign out = left + right; endmodule
9.124708
module std_fp_sub #( parameter WIDTH = 32, parameter INT_WIDTH = 16, parameter FRAC_WIDTH = 16 ) ( input logic [WIDTH-1:0] left, input logic [WIDTH-1:0] right, output logic [WIDTH-1:0] out ); assign out = left - right; endmodule
8.85803
module std_fp_mult_pipe #( parameter WIDTH = 32, parameter INT_WIDTH = 16, parameter FRAC_WIDTH = 16, parameter SIGNED = 0 ) ( input logic [WIDTH-1:0] left, input logic [WIDTH-1:0] right, input logic go, input logic clk, input logic reset, output logic [WIDTH-1:0] out, output logic done ); logic [ WIDTH-1:0] rtmp; logic [ WIDTH-1:0] ltmp; logic [(WIDTH << 1) - 1:0] out_tmp; // Buffer used to walk through the 3 cycles of the pipeline. logic done_buf[2:0]; assign done = done_buf[2]; assign out = out_tmp[(WIDTH<<1)-INT_WIDTH-1 : WIDTH-INT_WIDTH]; // If the done buffer is completely empty and go is high then execution // just started. logic start; assign start = go & done_buf[0] == 0 & done_buf[1] == 0; // Start sending the done signal. always_ff @(posedge clk) begin if (start) done_buf[0] <= 1; else done_buf[0] <= 0; end // Push the done signal through the pipeline. always_ff @(posedge clk) begin if (go) begin done_buf[2] <= done_buf[1]; done_buf[1] <= done_buf[0]; end else begin done_buf[2] <= 0; done_buf[1] <= 0; end end // Move the multiplication computation through the pipeline. always_ff @(posedge clk) begin if (reset) begin rtmp <= 0; ltmp <= 0; out_tmp <= 0; end else if (go) begin if (SIGNED) begin rtmp <= $signed(right); ltmp <= $signed(left); out_tmp <= $signed({{WIDTH{ltmp[WIDTH-1]}}, ltmp} * {{WIDTH{rtmp[WIDTH-1]}}, rtmp}); end else begin rtmp <= right; ltmp <= left; out_tmp <= ltmp * rtmp; end end else begin rtmp <= 0; ltmp <= 0; out_tmp <= out_tmp; end end endmodule
6.609331
module std_fp_div_pipe #( parameter WIDTH = 32, parameter INT_WIDTH = 16, parameter FRAC_WIDTH = 16 ) ( input logic go, input logic clk, input logic reset, input logic [WIDTH-1:0] left, input logic [WIDTH-1:0] right, output logic [WIDTH-1:0] out_remainder, output logic [WIDTH-1:0] out_quotient, output logic done ); localparam ITERATIONS = WIDTH + FRAC_WIDTH; logic [WIDTH-1:0] quotient, quotient_next; logic [WIDTH:0] acc, acc_next; logic [$clog2(ITERATIONS)-1:0] idx; logic start, running, finished, dividend_is_zero; assign start = go && !running; assign dividend_is_zero = start && left == 0; assign finished = idx == ITERATIONS - 1 && running; always_ff @(posedge clk) begin if (reset || finished || dividend_is_zero) running <= 0; else if (start) running <= 1; else running <= running; end always_comb begin if (acc >= {1'b0, right}) begin acc_next = acc - right; {acc_next, quotient_next} = {acc_next[WIDTH-1:0], quotient, 1'b1}; end else begin {acc_next, quotient_next} = {acc, quotient} << 1; end end // `done` signaling always_ff @(posedge clk) begin if (dividend_is_zero || finished) done <= 1; else done <= 0; end always_ff @(posedge clk) begin if (running) idx <= idx + 1; else idx <= 0; end always_ff @(posedge clk) begin if (reset) begin out_quotient <= 0; out_remainder <= 0; end else if (start) begin out_quotient <= 0; out_remainder <= left; end else if (go == 0) begin out_quotient <= out_quotient; out_remainder <= out_remainder; end else if (dividend_is_zero) begin out_quotient <= 0; out_remainder <= 0; end else if (finished) begin out_quotient <= quotient_next; out_remainder <= out_remainder; end else begin out_quotient <= out_quotient; if (right <= out_remainder) out_remainder <= out_remainder - right; else out_remainder <= out_remainder; end end always_ff @(posedge clk) begin if (reset) begin acc <= 0; quotient <= 0; end else if (start) begin {acc, quotient} <= {{WIDTH{1'b0}}, left, 1'b0}; end else begin acc <= acc_next; quotient <= quotient_next; end end endmodule
7.871496
module std_fp_gt #( parameter WIDTH = 32, parameter INT_WIDTH = 16, parameter FRAC_WIDTH = 16 ) ( input logic [WIDTH-1:0] left, input logic [WIDTH-1:0] right, output logic out ); assign out = left > right; endmodule
8.426383
module std_fp_sadd #( parameter WIDTH = 32, parameter INT_WIDTH = 16, parameter FRAC_WIDTH = 16 ) ( input signed [WIDTH-1:0] left, input signed [WIDTH-1:0] right, output signed [WIDTH-1:0] out ); assign out = $signed(left + right); endmodule
8.768295
module std_fp_ssub #( parameter WIDTH = 32, parameter INT_WIDTH = 16, parameter FRAC_WIDTH = 16 ) ( input signed [WIDTH-1:0] left, input signed [WIDTH-1:0] right, output signed [WIDTH-1:0] out ); assign out = $signed(left - right); endmodule
8.839041
module std_fp_smult_pipe #( parameter WIDTH = 32, parameter INT_WIDTH = 16, parameter FRAC_WIDTH = 16 ) ( input [WIDTH-1:0] left, input [WIDTH-1:0] right, input logic reset, input logic go, input logic clk, output logic [WIDTH-1:0] out, output logic done ); std_fp_mult_pipe #( .WIDTH(WIDTH), .INT_WIDTH(INT_WIDTH), .FRAC_WIDTH(FRAC_WIDTH), .SIGNED(1) ) comp ( .clk(clk), .done(done), .reset(reset), .go(go), .left(left), .right(right), .out(out) ); endmodule
7.173413
module std_fp_sdiv_pipe #( parameter WIDTH = 32, parameter INT_WIDTH = 16, parameter FRAC_WIDTH = 16 ) ( input clk, input go, input reset, input signed [WIDTH-1:0] left, input signed [WIDTH-1:0] right, output signed [WIDTH-1:0] out_quotient, output signed [WIDTH-1:0] out_remainder, output logic done ); logic signed [WIDTH-1:0] left_abs, right_abs, comp_out_q, comp_out_r, right_save, out_rem_intermediate; // Registers to figure out how to transform outputs. logic different_signs, left_sign, right_sign; // Latch the value of control registers so that their available after // go signal becomes low. always_ff @(posedge clk) begin if (go) begin right_save <= right_abs; left_sign <= left[WIDTH-1]; right_sign <= right[WIDTH-1]; end else begin left_sign <= left_sign; right_save <= right_save; right_sign <= right_sign; end end assign right_abs = right[WIDTH-1] ? -right : right; assign left_abs = left[WIDTH-1] ? -left : left; assign different_signs = left_sign ^ right_sign; assign out_quotient = different_signs ? -comp_out_q : comp_out_q; // Remainder is computed as: // t0 = |left| % |right| // t1 = if left * right < 0 and t0 != 0 then |right| - t0 else t0 // rem = if right < 0 then -t1 else t1 assign out_rem_intermediate = different_signs & |comp_out_r ? $signed( right_save - comp_out_r ) : comp_out_r; assign out_remainder = right_sign ? -out_rem_intermediate : out_rem_intermediate; std_fp_div_pipe #( .WIDTH(WIDTH), .INT_WIDTH(INT_WIDTH), .FRAC_WIDTH(FRAC_WIDTH) ) comp ( .reset(reset), .clk(clk), .done(done), .go(go), .left(left_abs), .right(right_abs), .out_quotient(comp_out_q), .out_remainder(comp_out_r) ); endmodule
8.37227
module std_fp_sgt #( parameter WIDTH = 32, parameter INT_WIDTH = 16, parameter FRAC_WIDTH = 16 ) ( input logic signed [WIDTH-1:0] left, input logic signed [WIDTH-1:0] right, output logic signed out ); assign out = $signed(left > right); endmodule
8.236193
module std_fp_slt #( parameter WIDTH = 32, parameter INT_WIDTH = 16, parameter FRAC_WIDTH = 16 ) ( input logic signed [WIDTH-1:0] left, input logic signed [WIDTH-1:0] right, output logic signed out ); assign out = $signed(left < right); endmodule
8.595041
module std_mult_pipe #( parameter WIDTH = 32 ) ( input logic [WIDTH-1:0] left, input logic [WIDTH-1:0] right, input logic reset, input logic go, input logic clk, output logic [WIDTH-1:0] out, output logic done ); std_fp_mult_pipe #( .WIDTH(WIDTH), .INT_WIDTH(WIDTH), .FRAC_WIDTH(0), .SIGNED(0) ) comp ( .reset(reset), .clk(clk), .done(done), .go(go), .left(left), .right(right), .out(out) ); endmodule
7.504255
module std_div_pipe #( parameter WIDTH = 32 ) ( input reset, input clk, input go, input [WIDTH-1:0] left, input [WIDTH-1:0] right, output logic [WIDTH-1:0] out_remainder, output logic [WIDTH-1:0] out_quotient, output logic done ); logic [WIDTH-1:0] dividend; logic [(WIDTH-1)*2:0] divisor; logic [WIDTH-1:0] quotient; logic [WIDTH-1:0] quotient_msk; logic start, running, finished, dividend_is_zero; assign start = go && !running; assign finished = quotient_msk == 0 && running; assign dividend_is_zero = start && left == 0; always_ff @(posedge clk) begin // Early return if the divisor is zero. if (finished || dividend_is_zero) done <= 1; else done <= 0; end always_ff @(posedge clk) begin if (reset || finished || dividend_is_zero) running <= 0; else if (start) running <= 1; else running <= running; end // Outputs always_ff @(posedge clk) begin if (dividend_is_zero || start) begin out_quotient <= 0; out_remainder <= 0; end else if (finished) begin out_quotient <= quotient; out_remainder <= dividend; end else begin // Otherwise, explicitly latch the values. out_quotient <= out_quotient; out_remainder <= out_remainder; end end // Calculate the quotient mask. always_ff @(posedge clk) begin if (start) quotient_msk <= 1 << WIDTH - 1; else if (running) quotient_msk <= quotient_msk >> 1; else quotient_msk <= quotient_msk; end // Calculate the quotient. always_ff @(posedge clk) begin if (start) quotient <= 0; else if (divisor <= dividend) quotient <= quotient | quotient_msk; else quotient <= quotient; end // Calculate the dividend. always_ff @(posedge clk) begin if (start) dividend <= left; else if (divisor <= dividend) dividend <= dividend - divisor; else dividend <= dividend; end always_ff @(posedge clk) begin if (start) begin divisor <= right << WIDTH - 1; end else if (finished) begin divisor <= 0; end else begin divisor <= divisor >> 1; end end // Simulation self test against unsynthesizable implementation. `ifdef VERILATOR logic [WIDTH-1:0] l, r; always_ff @(posedge clk) begin if (go) begin l <= left; r <= right; end else begin l <= l; r <= r; end end always @(posedge clk) begin if (done && $unsigned(out_remainder) != $unsigned(l % r)) $error( "\nstd_div_pipe (Remainder): Computed and golden outputs do not match!\n", "left: %0d", $unsigned( l ), " right: %0d\n", $unsigned( r ), "expected: %0d", $unsigned( l % r ), " computed: %0d", $unsigned( out_remainder ) ); if (done && $unsigned(out_quotient) != $unsigned(l / r)) $error( "\nstd_div_pipe (Quotient): Computed and golden outputs do not match!\n", "left: %0d", $unsigned( l ), " right: %0d\n", $unsigned( r ), "expected: %0d", $unsigned( l / r ), " computed: %0d", $unsigned( out_quotient ) ); end `endif endmodule
6.929139
module std_sadd #( parameter WIDTH = 32 ) ( input signed [WIDTH-1:0] left, input signed [WIDTH-1:0] right, output signed [WIDTH-1:0] out ); assign out = $signed(left + right); endmodule
8.670882
module std_ssub #( parameter WIDTH = 32 ) ( input signed [WIDTH-1:0] left, input signed [WIDTH-1:0] right, output signed [WIDTH-1:0] out ); assign out = $signed(left - right); endmodule
8.103836
module std_smult_pipe #( parameter WIDTH = 32 ) ( input logic reset, input logic go, input logic clk, input signed [WIDTH-1:0] left, input signed [WIDTH-1:0] right, output logic signed [WIDTH-1:0] out, output logic done ); std_fp_mult_pipe #( .WIDTH(WIDTH), .INT_WIDTH(WIDTH), .FRAC_WIDTH(0), .SIGNED(1) ) comp ( .reset(reset), .clk(clk), .done(done), .go(go), .left(left), .right(right), .out(out) ); endmodule
6.968167
module std_sdiv_pipe #( parameter WIDTH = 32 ) ( input reset, input clk, input go, input logic signed [WIDTH-1:0] left, input logic signed [WIDTH-1:0] right, output logic signed [WIDTH-1:0] out_quotient, output logic signed [WIDTH-1:0] out_remainder, output logic done ); logic signed [WIDTH-1:0] left_abs, right_abs, comp_out_q, comp_out_r, right_save, out_rem_intermediate; // Registers to figure out how to transform outputs. logic different_signs, left_sign, right_sign; // Latch the value of control registers so that their available after // go signal becomes low. always_ff @(posedge clk) begin if (go) begin right_save <= right_abs; left_sign <= left[WIDTH-1]; right_sign <= right[WIDTH-1]; end else begin left_sign <= left_sign; right_save <= right_save; right_sign <= right_sign; end end assign right_abs = right[WIDTH-1] ? -right : right; assign left_abs = left[WIDTH-1] ? -left : left; assign different_signs = left_sign ^ right_sign; assign out_quotient = different_signs ? -comp_out_q : comp_out_q; // Remainder is computed as: // t0 = |left| % |right| // t1 = if left * right < 0 and t0 != 0 then |right| - t0 else t0 // rem = if right < 0 then -t1 else t1 assign out_rem_intermediate = different_signs & |comp_out_r ? $signed( right_save - comp_out_r ) : comp_out_r; assign out_remainder = right_sign ? -out_rem_intermediate : out_rem_intermediate; std_div_pipe #( .WIDTH(WIDTH) ) comp ( .reset(reset), .clk(clk), .done(done), .go(go), .left(left_abs), .right(right_abs), .out_quotient(comp_out_q), .out_remainder(comp_out_r) ); // Simulation self test against unsynthesizable implementation. `ifdef VERILATOR logic signed [WIDTH-1:0] l, r; always_ff @(posedge clk) begin if (go) begin l <= left; r <= right; end else begin l <= l; r <= r; end end always @(posedge clk) begin if (done && out_quotient != $signed(l / r)) $error( "\nstd_sdiv_pipe (Quotient): Computed and golden outputs do not match!\n", "left: %0d", l, " right: %0d\n", r, "expected: %0d", $signed( l / r ), " computed: %0d", $signed( out_quotient ), ); if (done && out_remainder != $signed(((l % r) + r) % r)) $error( "\nstd_sdiv_pipe (Remainder): Computed and golden outputs do not match!\n", "left: %0d", l, " right: %0d\n", r, "expected: %0d", $signed( ((l % r) + r) % r ), " computed: %0d", $signed( out_remainder ), ); end `endif endmodule
7.505299
module std_sgt #( parameter WIDTH = 32 ) ( input signed [WIDTH-1:0] left, input signed [WIDTH-1:0] right, output signed out ); assign out = $signed(left > right); endmodule
7.663941
module std_slt #( parameter WIDTH = 32 ) ( input signed [WIDTH-1:0] left, input signed [WIDTH-1:0] right, output signed out ); assign out = $signed(left < right); endmodule
8.095256
module std_seq #( parameter WIDTH = 32 ) ( input signed [WIDTH-1:0] left, input signed [WIDTH-1:0] right, output signed out ); assign out = $signed(left == right); endmodule
8.302327
module std_sneq #( parameter WIDTH = 32 ) ( input signed [WIDTH-1:0] left, input signed [WIDTH-1:0] right, output signed out ); assign out = $signed(left != right); endmodule
7.44378
module std_sge #( parameter WIDTH = 32 ) ( input signed [WIDTH-1:0] left, input signed [WIDTH-1:0] right, output signed out ); assign out = $signed(left >= right); endmodule
7.297458
module std_sle #( parameter WIDTH = 32 ) ( input signed [WIDTH-1:0] left, input signed [WIDTH-1:0] right, output signed out ); assign out = $signed(left <= right); endmodule
8.057164
module std_slsh #( parameter WIDTH = 32 ) ( input signed [WIDTH-1:0] left, input signed [WIDTH-1:0] right, output signed [WIDTH-1:0] out ); assign out = left <<< right; endmodule
7.70425
module std_srsh #( parameter WIDTH = 32 ) ( input signed [WIDTH-1:0] left, input signed [WIDTH-1:0] right, output signed [WIDTH-1:0] out ); assign out = left >>> right; endmodule
8.663189
module std_const #( parameter WIDTH = 32, parameter VALUE = 0 ) ( output logic [WIDTH - 1:0] out ); assign out = VALUE; endmodule
8.794277
module std_wire #( parameter WIDTH = 32 ) ( input wire logic [WIDTH - 1:0] in, output logic [WIDTH - 1:0] out ); assign out = in; endmodule
8.485736
module std_slice #( parameter IN_WIDTH = 32, parameter OUT_WIDTH = 32 ) ( input wire logic [ IN_WIDTH-1:0] in, output logic [OUT_WIDTH-1:0] out ); assign out = in[OUT_WIDTH-1:0]; `ifdef VERILATOR always_comb begin if (IN_WIDTH < OUT_WIDTH) $error( "std_slice: Input width less than output width\n", "IN_WIDTH: %0d", IN_WIDTH, "OUT_WIDTH: %0d", OUT_WIDTH ); end `endif endmodule
8.248138
module std_pad #( parameter IN_WIDTH = 32, parameter OUT_WIDTH = 32 ) ( input wire logic [ IN_WIDTH-1:0] in, output logic [OUT_WIDTH-1:0] out ); localparam EXTEND = OUT_WIDTH - IN_WIDTH; assign out = {{EXTEND{1'b0}}, in}; `ifdef VERILATOR always_comb begin if (IN_WIDTH > OUT_WIDTH) $error( "std_pad: Output width less than input width\n", "IN_WIDTH: %0d", IN_WIDTH, "OUT_WIDTH: %0d", OUT_WIDTH ); end `endif endmodule
8.450332
module std_not #( parameter WIDTH = 32 ) ( input wire logic [WIDTH-1:0] in, output logic [WIDTH-1:0] out ); assign out = ~in; endmodule
8.707194
module std_and #( parameter WIDTH = 32 ) ( input wire logic [WIDTH-1:0] left, input wire logic [WIDTH-1:0] right, output logic [WIDTH-1:0] out ); assign out = left & right; endmodule
8.159461
module std_or #( parameter WIDTH = 32 ) ( input wire logic [WIDTH-1:0] left, input wire logic [WIDTH-1:0] right, output logic [WIDTH-1:0] out ); assign out = left | right; endmodule
8.160076
module std_xor #( parameter WIDTH = 32 ) ( input wire logic [WIDTH-1:0] left, input wire logic [WIDTH-1:0] right, output logic [WIDTH-1:0] out ); assign out = left ^ right; endmodule
8.185133
module std_add #( parameter WIDTH = 32 ) ( input wire logic [WIDTH-1:0] left, input wire logic [WIDTH-1:0] right, output logic [WIDTH-1:0] out ); assign out = left + right; endmodule
7.105468
module std_sub #( parameter WIDTH = 32 ) ( input wire logic [WIDTH-1:0] left, input wire logic [WIDTH-1:0] right, output logic [WIDTH-1:0] out ); assign out = left - right; endmodule
7.29825
module std_gt #( parameter WIDTH = 32 ) ( input wire logic [WIDTH-1:0] left, input wire logic [WIDTH-1:0] right, output logic out ); assign out = left > right; endmodule
7.445889
module std_lt #( parameter WIDTH = 32 ) ( input wire logic [WIDTH-1:0] left, input wire logic [WIDTH-1:0] right, output logic out ); assign out = left < right; endmodule
7.925865
module std_eq #( parameter WIDTH = 32 ) ( input wire logic [WIDTH-1:0] left, input wire logic [WIDTH-1:0] right, output logic out ); assign out = left == right; endmodule
8.155468
module std_neq #( parameter WIDTH = 32 ) ( input wire logic [WIDTH-1:0] left, input wire logic [WIDTH-1:0] right, output logic out ); assign out = left != right; endmodule
7.624981
module std_ge #( parameter WIDTH = 32 ) ( input wire logic [WIDTH-1:0] left, input wire logic [WIDTH-1:0] right, output logic out ); assign out = left >= right; endmodule
6.896227
module std_le #( parameter WIDTH = 32 ) ( input wire logic [WIDTH-1:0] left, input wire logic [WIDTH-1:0] right, output logic out ); assign out = left <= right; endmodule
8.161124
module std_lsh #( parameter WIDTH = 32 ) ( input wire logic [WIDTH-1:0] left, input wire logic [WIDTH-1:0] right, output logic [WIDTH-1:0] out ); assign out = left << right; endmodule
8.684363
module std_rsh #( parameter WIDTH = 32 ) ( input wire logic [WIDTH-1:0] left, input wire logic [WIDTH-1:0] right, output logic [WIDTH-1:0] out ); assign out = left >> right; endmodule
8.622539
module std_mux #( parameter WIDTH = 32 ) ( input wire logic cond, input wire logic [WIDTH-1:0] tru, input wire logic [WIDTH-1:0] fal, output logic [WIDTH-1:0] out ); assign out = cond ? tru : fal; endmodule
9.56204
module std_reg #( parameter WIDTH = 32 ) ( input wire [ WIDTH-1:0] in, input wire write_en, input wire clk, input wire reset, // output output logic [WIDTH - 1:0] out, output logic done ); always_ff @(posedge clk) begin if (reset) begin out <= 0; done <= 0; end else if (write_en) begin out <= in; done <= 1'd1; end else done <= 1'd0; end endmodule
7.672256
module std_mem_d1 #( parameter WIDTH = 32, parameter SIZE = 16, parameter IDX_SIZE = 4 ) ( input wire logic [IDX_SIZE-1:0] addr0, input wire logic [ WIDTH-1:0] write_data, input wire logic write_en, input wire logic clk, output logic [ WIDTH-1:0] read_data, output logic done ); logic [WIDTH-1:0] mem[SIZE-1:0]; /* verilator lint_off WIDTH */ assign read_data = mem[addr0]; always_ff @(posedge clk) begin if (write_en) begin mem[addr0] <= write_data; done <= 1'd1; end else done <= 1'd0; end // Check for out of bounds access `ifdef VERILATOR always_comb begin if (addr0 >= SIZE) $error("std_mem_d1: Out of bounds access\n", "addr0: %0d\n", addr0, "SIZE: %0d", SIZE); end `endif endmodule
8.560454
module std_mem_d2 #( parameter WIDTH = 32, parameter D0_SIZE = 16, parameter D1_SIZE = 16, parameter D0_IDX_SIZE = 4, parameter D1_IDX_SIZE = 4 ) ( input wire logic [D0_IDX_SIZE-1:0] addr0, input wire logic [D1_IDX_SIZE-1:0] addr1, input wire logic [ WIDTH-1:0] write_data, input wire logic write_en, input wire logic clk, output logic [ WIDTH-1:0] read_data, output logic done ); /* verilator lint_off WIDTH */ logic [WIDTH-1:0] mem[D0_SIZE-1:0][D1_SIZE-1:0]; assign read_data = mem[addr0][addr1]; always_ff @(posedge clk) begin if (write_en) begin mem[addr0][addr1] <= write_data; done <= 1'd1; end else done <= 1'd0; end // Check for out of bounds access `ifdef VERILATOR always_comb begin if (addr0 >= D0_SIZE) $error("std_mem_d2: Out of bounds access\n", "addr0: %0d\n", addr0, "D0_SIZE: %0d", D0_SIZE); if (addr1 >= D1_SIZE) $error("std_mem_d2: Out of bounds access\n", "addr1: %0d\n", addr1, "D1_SIZE: %0d", D1_SIZE); end `endif endmodule
8.570777
module std_mem_d3 #( parameter WIDTH = 32, parameter D0_SIZE = 16, parameter D1_SIZE = 16, parameter D2_SIZE = 16, parameter D0_IDX_SIZE = 4, parameter D1_IDX_SIZE = 4, parameter D2_IDX_SIZE = 4 ) ( input wire logic [D0_IDX_SIZE-1:0] addr0, input wire logic [D1_IDX_SIZE-1:0] addr1, input wire logic [D2_IDX_SIZE-1:0] addr2, input wire logic [ WIDTH-1:0] write_data, input wire logic write_en, input wire logic clk, output logic [ WIDTH-1:0] read_data, output logic done ); /* verilator lint_off WIDTH */ logic [WIDTH-1:0] mem[D0_SIZE-1:0][D1_SIZE-1:0][D2_SIZE-1:0]; assign read_data = mem[addr0][addr1][addr2]; always_ff @(posedge clk) begin if (write_en) begin mem[addr0][addr1][addr2] <= write_data; done <= 1'd1; end else done <= 1'd0; end // Check for out of bounds access `ifdef VERILATOR always_comb begin if (addr0 >= D0_SIZE) $error("std_mem_d3: Out of bounds access\n", "addr0: %0d\n", addr0, "D0_SIZE: %0d", D0_SIZE); if (addr1 >= D1_SIZE) $error("std_mem_d3: Out of bounds access\n", "addr1: %0d\n", addr1, "D1_SIZE: %0d", D1_SIZE); if (addr2 >= D2_SIZE) $error("std_mem_d3: Out of bounds access\n", "addr2: %0d\n", addr2, "D2_SIZE: %0d", D2_SIZE); end `endif endmodule
9.018781
module std_mem_d4 #( parameter WIDTH = 32, parameter D0_SIZE = 16, parameter D1_SIZE = 16, parameter D2_SIZE = 16, parameter D3_SIZE = 16, parameter D0_IDX_SIZE = 4, parameter D1_IDX_SIZE = 4, parameter D2_IDX_SIZE = 4, parameter D3_IDX_SIZE = 4 ) ( input wire logic [D0_IDX_SIZE-1:0] addr0, input wire logic [D1_IDX_SIZE-1:0] addr1, input wire logic [D2_IDX_SIZE-1:0] addr2, input wire logic [D3_IDX_SIZE-1:0] addr3, input wire logic [ WIDTH-1:0] write_data, input wire logic write_en, input wire logic clk, output logic [ WIDTH-1:0] read_data, output logic done ); /* verilator lint_off WIDTH */ logic [WIDTH-1:0] mem[D0_SIZE-1:0][D1_SIZE-1:0][D2_SIZE-1:0][D3_SIZE-1:0]; assign read_data = mem[addr0][addr1][addr2][addr3]; always_ff @(posedge clk) begin if (write_en) begin mem[addr0][addr1][addr2][addr3] <= write_data; done <= 1'd1; end else done <= 1'd0; end // Check for out of bounds access `ifdef VERILATOR always_comb begin if (addr0 >= D0_SIZE) $error("std_mem_d4: Out of bounds access\n", "addr0: %0d\n", addr0, "D0_SIZE: %0d", D0_SIZE); if (addr1 >= D1_SIZE) $error("std_mem_d4: Out of bounds access\n", "addr1: %0d\n", addr1, "D1_SIZE: %0d", D1_SIZE); if (addr2 >= D2_SIZE) $error("std_mem_d4: Out of bounds access\n", "addr2: %0d\n", addr2, "D2_SIZE: %0d", D2_SIZE); if (addr3 >= D3_SIZE) $error("std_mem_d4: Out of bounds access\n", "addr3: %0d\n", addr3, "D3_SIZE: %0d", D3_SIZE); end `endif endmodule
9.168498
module BUF_X1 ( A, Z ); input A; output Z; buf (Z, A); specify (A => Z) = (0.1, 0.1); endspecify endmodule
6.571469
module BUF_X16 ( A, Z ); input A; output Z; buf (Z, A); specify (A => Z) = (0.1, 0.1); endspecify endmodule
7.879658
module BUF_X2 ( A, Z ); input A; output Z; buf (Z, A); specify (A => Z) = (0.1, 0.1); endspecify endmodule
7.223756
module BUF_X32 ( A, Z ); input A; output Z; buf (Z, A); specify (A => Z) = (0.1, 0.1); endspecify endmodule
7.349807
module BUF_X4 ( A, Z ); input A; output Z; buf (Z, A); specify (A => Z) = (0.1, 0.1); endspecify endmodule
6.611767
module BUF_X8 ( A, Z ); input A; output Z; buf (Z, A); specify (A => Z) = (0.1, 0.1); endspecify endmodule
7.092578
module INV_X16 ( A, ZN ); input A; output ZN; not (ZN, A); specify (A => ZN) = (0.1, 0.1); endspecify endmodule
8.023048
module INV_X2 ( A, ZN ); input A; output ZN; not (ZN, A); specify (A => ZN) = (0.1, 0.1); endspecify endmodule
7.014744
module INV_X32 ( A, ZN ); input A; output ZN; not (ZN, A); specify (A => ZN) = (0.1, 0.1); endspecify endmodule
8.062159
module INV_X4 ( A, ZN ); input A; output ZN; not (ZN, A); specify (A => ZN) = (0.1, 0.1); endspecify endmodule
6.507839
module INV_X8 ( A, ZN ); input A; output ZN; not (ZN, A); specify (A => ZN) = (0.1, 0.1); endspecify endmodule
7.151064
module NAND2_X2 ( A1, A2, ZN ); input A1; input A2; output ZN; not (ZN, i_22); and (i_22, A1, A2); specify (A1 => ZN) = (0.1, 0.1); (A2 => ZN) = (0.1, 0.1); endspecify endmodule
6.53744
module NAND4_X4 ( A1, A2, A3, A4, ZN ); input A1; input A2; input A3; input A4; output ZN; not (ZN, i_12); and (i_12, i_13, A4); and (i_13, i_14, A3); and (i_14, A1, A2); specify (A1 => ZN) = (0.1, 0.1); (A2 => ZN) = (0.1, 0.1); (A3 => ZN) = (0.1, 0.1); (A4 => ZN) = (0.1, 0.1); endspecify endmodule
6.619037
module NOR2_X1 ( A1, A2, ZN ); input A1; input A2; output ZN; not (ZN, i_10); or (i_10, A1, A2); specify (A1 => ZN) = (0.1, 0.1); (A2 => ZN) = (0.1, 0.1); endspecify endmodule
6.668687
module NOR2_X2 ( A1, A2, ZN ); input A1; input A2; output ZN; not (ZN, i_10); or (i_10, A1, A2); specify (A1 => ZN) = (0.1, 0.1); (A2 => ZN) = (0.1, 0.1); endspecify endmodule
6.765978
module NOR2_X4 ( A1, A2, ZN ); input A1; input A2; output ZN; not (ZN, i_16); or (i_16, A1, A2); specify (A1 => ZN) = (0.1, 0.1); (A2 => ZN) = (0.1, 0.1); endspecify endmodule
6.953394
module NOR4_X1 ( A1, A2, A3, A4, ZN ); input A1; input A2; input A3; input A4; output ZN; not (ZN, i_12); or (i_12, i_13, A4); or (i_13, i_14, A3); or (i_14, A1, A2); specify (A1 => ZN) = (0.1, 0.1); (A2 => ZN) = (0.1, 0.1); (A3 => ZN) = (0.1, 0.1); (A4 => ZN) = (0.1, 0.1); endspecify endmodule
6.722937
module NOR4_X2 ( A1, A2, A3, A4, ZN ); input A1; input A2; input A3; input A4; output ZN; not (ZN, i_12); or (i_12, i_13, A4); or (i_13, i_14, A3); or (i_14, A1, A2); specify (A1 => ZN) = (0.1, 0.1); (A2 => ZN) = (0.1, 0.1); (A3 => ZN) = (0.1, 0.1); (A4 => ZN) = (0.1, 0.1); endspecify endmodule
6.751345
module NOR4_X4 ( A1, A2, A3, A4, ZN ); input A1; input A2; input A3; input A4; output ZN; not (ZN, i_12); or (i_12, i_13, A4); or (i_13, i_14, A3); or (i_14, A1, A2); specify (A1 => ZN) = (0.1, 0.1); (A2 => ZN) = (0.1, 0.1); (A3 => ZN) = (0.1, 0.1); (A4 => ZN) = (0.1, 0.1); endspecify endmodule
6.983012
module OR2_X2 ( A1, A2, ZN ); input A1; input A2; output ZN; or (ZN, A1, A2); specify (A1 => ZN) = (0.1, 0.1); (A2 => ZN) = (0.1, 0.1); endspecify endmodule
6.532144
module OR2_X4 ( A1, A2, ZN ); input A1; input A2; output ZN; or (ZN, A1, A2); specify (A1 => ZN) = (0.1, 0.1); (A2 => ZN) = (0.1, 0.1); endspecify endmodule
6.535811
module OR3_X4 ( A1, A2, A3, ZN ); input A1; input A2; input A3; output ZN; or (ZN, i_4, A3); or (i_4, A1, A2); specify (A1 => ZN) = (0.1, 0.1); (A2 => ZN) = (0.1, 0.1); (A3 => ZN) = (0.1, 0.1); endspecify endmodule
6.542007
module \$__shift ( X, A, Y ); parameter WIDTH = 1; parameter SHIFT = 0; input X; input [WIDTH-1:0] A; output [WIDTH-1:0] Y; genvar i; generate for (i = 0; i < WIDTH; i = i + 1) begin : V if (i + SHIFT < 0) begin assign Y[i] = 0; end else if (i + SHIFT < WIDTH) begin assign Y[i] = A[i+SHIFT]; end else begin assign Y[i] = X; end end endgenerate endmodule
7.797818
module \$shl ( A, B, Y ); parameter A_SIGNED = 0; parameter B_SIGNED = 0; parameter A_WIDTH = 1; parameter B_WIDTH = 1; parameter Y_WIDTH = 1; parameter WIDTH = Y_WIDTH; localparam BB_WIDTH = $clog2(WIDTH) + 2 < B_WIDTH ? $clog2(WIDTH) + 2 : B_WIDTH; input [A_WIDTH-1:0] A; input [B_WIDTH-1:0] B; output [Y_WIDTH-1:0] Y; genvar i; generate wire [WIDTH*(BB_WIDTH+1)-1:0] chain; \$bu0 #( .A_SIGNED(A_SIGNED), .A_WIDTH (A_WIDTH), .Y_WIDTH (WIDTH) ) expand ( .A(A), .Y(chain[WIDTH-1:0]) ); assign Y = chain[WIDTH*(BB_WIDTH+1)-1 : WIDTH*BB_WIDTH]; for (i = 0; i < BB_WIDTH; i = i + 1) begin : V wire [WIDTH-1:0] unshifted, shifted, result; assign unshifted = chain[WIDTH*i+WIDTH-1 : WIDTH*i]; assign chain[WIDTH*(i+1)+WIDTH-1 : WIDTH*(i+1)] = result; wire BBIT; if (i == BB_WIDTH - 1 && BB_WIDTH < B_WIDTH) assign BBIT = |B[B_WIDTH-1:BB_WIDTH-1]; else assign BBIT = B[i]; \$__shift #( .WIDTH(WIDTH), .SHIFT(0 - (2 ** (i > 30 ? 30 : i))) ) sh ( .X(0), .A(unshifted), .Y(shifted) ); \$mux #( .WIDTH(WIDTH) ) mux ( .A(unshifted), .B(shifted), .Y(result), .S(BBIT) ); end endgenerate endmodule
7.084445
module \$shr ( A, B, Y ); parameter A_SIGNED = 0; parameter B_SIGNED = 0; parameter A_WIDTH = 1; parameter B_WIDTH = 1; parameter Y_WIDTH = 1; localparam WIDTH = A_WIDTH > Y_WIDTH ? A_WIDTH : Y_WIDTH; localparam BB_WIDTH = $clog2(WIDTH) + 2 < B_WIDTH ? $clog2(WIDTH) + 2 : B_WIDTH; input [A_WIDTH-1:0] A; input [B_WIDTH-1:0] B; output [Y_WIDTH-1:0] Y; genvar i; generate wire [WIDTH*(BB_WIDTH+1)-1:0] chain; \$bu0 #( .A_SIGNED(A_SIGNED), .A_WIDTH (A_WIDTH), .Y_WIDTH (WIDTH) ) expand ( .A(A), .Y(chain[WIDTH-1:0]) ); assign Y = chain[WIDTH*(BB_WIDTH+1)-1 : WIDTH*BB_WIDTH]; for (i = 0; i < BB_WIDTH; i = i + 1) begin : V wire [WIDTH-1:0] unshifted, shifted, result; assign unshifted = chain[WIDTH*i+WIDTH-1 : WIDTH*i]; assign chain[WIDTH*(i+1)+WIDTH-1 : WIDTH*(i+1)] = result; wire BBIT; if (i == BB_WIDTH - 1 && BB_WIDTH < B_WIDTH) assign BBIT = |B[B_WIDTH-1:BB_WIDTH-1]; else assign BBIT = B[i]; \$__shift #( .WIDTH(WIDTH), .SHIFT(2 ** (i > 30 ? 30 : i)) ) sh ( .X(0), .A(unshifted), .Y(shifted) ); \$mux #( .WIDTH(WIDTH) ) mux ( .A(unshifted), .B(shifted), .Y(result), .S(BBIT) ); end endgenerate endmodule
6.908879
module \$sshl ( A, B, Y ); parameter A_SIGNED = 0; parameter B_SIGNED = 0; parameter A_WIDTH = 1; parameter B_WIDTH = 1; parameter Y_WIDTH = 1; localparam WIDTH = Y_WIDTH; localparam BB_WIDTH = $clog2(WIDTH) + 2 < B_WIDTH ? $clog2(WIDTH) + 2 : B_WIDTH; input [A_WIDTH-1:0] A; input [B_WIDTH-1:0] B; output [Y_WIDTH-1:0] Y; genvar i; generate wire [WIDTH*(BB_WIDTH+1)-1:0] chain; \$bu0 #( .A_SIGNED(A_SIGNED), .A_WIDTH (A_WIDTH), .Y_WIDTH (WIDTH) ) expand ( .A(A), .Y(chain[WIDTH-1:0]) ); assign Y = chain[WIDTH*(BB_WIDTH+1)-1 : WIDTH*BB_WIDTH]; for (i = 0; i < BB_WIDTH; i = i + 1) begin : V wire [WIDTH-1:0] unshifted, shifted, result; assign unshifted = chain[WIDTH*i+WIDTH-1 : WIDTH*i]; assign chain[WIDTH*(i+1)+WIDTH-1 : WIDTH*(i+1)] = result; wire BBIT; if (i == BB_WIDTH - 1 && BB_WIDTH < B_WIDTH) assign BBIT = |B[B_WIDTH-1:BB_WIDTH-1]; else assign BBIT = B[i]; \$__shift #( .WIDTH(WIDTH), .SHIFT(0 - (2 ** (i > 30 ? 30 : i))) ) sh ( .X(0), .A(unshifted), .Y(shifted) ); \$mux #( .WIDTH(WIDTH) ) mux ( .A(unshifted), .B(shifted), .Y(result), .S(BBIT) ); end endgenerate endmodule
6.957695
module \$sshr ( A, B, Y ); parameter A_SIGNED = 0; parameter B_SIGNED = 0; parameter A_WIDTH = 1; parameter B_WIDTH = 1; parameter Y_WIDTH = 1; localparam WIDTH = A_WIDTH > Y_WIDTH ? A_WIDTH : Y_WIDTH; localparam BB_WIDTH = $clog2(WIDTH) + 2 < B_WIDTH ? $clog2(WIDTH) + 2 : B_WIDTH; input [A_WIDTH-1:0] A; input [B_WIDTH-1:0] B; output [Y_WIDTH-1:0] Y; genvar i; generate wire [WIDTH*(BB_WIDTH+1)-1:0] chain; \$bu0 #( .A_SIGNED(A_SIGNED), .A_WIDTH (A_WIDTH), .Y_WIDTH (WIDTH) ) expand ( .A(A), .Y(chain[WIDTH-1:0]) ); for (i = 0; i < Y_WIDTH; i = i + 1) begin : Y if (i < WIDTH) begin assign Y[i] = chain[WIDTH*BB_WIDTH+i]; end else if (A_SIGNED) begin assign Y[i] = chain[WIDTH*BB_WIDTH+WIDTH-1]; end else begin assign Y[i] = 0; end end for (i = 0; i < BB_WIDTH; i = i + 1) begin : V wire [WIDTH-1:0] unshifted, shifted, result; assign unshifted = chain[WIDTH*i+WIDTH-1 : WIDTH*i]; assign chain[WIDTH*(i+1)+WIDTH-1 : WIDTH*(i+1)] = result; wire BBIT; if (i == BB_WIDTH - 1 && BB_WIDTH < B_WIDTH) assign BBIT = |B[B_WIDTH-1:BB_WIDTH-1]; else assign BBIT = B[i]; \$__shift #( .WIDTH(WIDTH), .SHIFT(2 ** (i > 30 ? 30 : i)) ) sh ( .X(A_SIGNED && A[A_WIDTH-1]), .A(unshifted), .Y(shifted) ); \$mux #( .WIDTH(WIDTH) ) mux ( .A(unshifted), .B(shifted), .Y(result), .S(BBIT) ); end endgenerate endmodule
6.890784
module \$__fulladd ( A, B, C, X, Y ); // {X, Y} = A + B + C input A, B, C; output X, Y; // {t1, t2} = A + B wire t1, t2, t3; //\$_AND_ gate1 ( .A(A), .B(B), .Y(t1) ); //\$_XOR_ gate2 ( .A(A), .B(B), .Y(t2) ); //\$_AND_ gate3 ( .A(t2), .B(C), .Y(t3) ); //\$_XOR_ gate4 ( .A(t2), .B(C), .Y(Y) ); //\$_OR_ gate5 ( .A(t1), .B(t3), .Y(X) ); \$_XOR_ gate1 ( .A(A), .B(C), .Y(t1) ); \$_XOR_ gate2 ( .A(B), .B(C), .Y(t2) ); \$_AND_ gate3 ( .A(t1), .B(t2), .Y(t3) ); \$_XOR_ gate4 ( .A(t1), .B(B), .Y(Y) ); \$_XOR_ gate5 ( .A(t3), .B(C), .Y(X) ); endmodule
6.568587
module \$__alu ( A, B, Cin, Y, Cout, Csign ); parameter WIDTH = 1; input [WIDTH-1:0] A, B; input Cin; output [WIDTH-1:0] Y; output Cout, Csign; wire [WIDTH:0] carry; assign carry[0] = Cin; assign Cout = carry[WIDTH]; assign Csign = carry[WIDTH-1]; genvar i; generate for (i = 0; i < WIDTH; i = i + 1) begin : V \$__fulladd adder ( .A(A[i]), .B(B[i]), .C(carry[i]), .X(carry[i+1]), .Y(Y[i]) ); end endgenerate endmodule
8.239613
module \$lt ( A, B, Y ); parameter A_SIGNED = 0; parameter B_SIGNED = 0; parameter A_WIDTH = 1; parameter B_WIDTH = 1; parameter Y_WIDTH = 1; localparam WIDTH = A_WIDTH > B_WIDTH ? A_WIDTH : B_WIDTH; input [A_WIDTH-1:0] A; input [B_WIDTH-1:0] B; output [Y_WIDTH-1:0] Y; wire carry, carry_sign; wire [WIDTH-1:0] A_buf, B_buf, Y_buf; \$pos #( .A_SIGNED(A_SIGNED), .A_WIDTH (A_WIDTH), .Y_WIDTH (WIDTH) ) A_conv ( .A(A), .Y(A_buf) ); \$pos #( .A_SIGNED(B_SIGNED), .A_WIDTH (B_WIDTH), .Y_WIDTH (WIDTH) ) B_conv ( .A(B), .Y(B_buf) ); \$__alu #( .WIDTH(WIDTH) ) alu ( .A(A_buf), .B(~B_buf), .Cin(1'b1), .Y(Y_buf), .Cout(carry), .Csign(carry_sign) ); // ALU flags wire cf, of, zf, sf; assign cf = !carry; assign of = carry ^ carry_sign; assign zf = ~|Y_buf; assign sf = Y_buf[WIDTH-1]; generate if (A_SIGNED && B_SIGNED) begin assign Y = of != sf; end else begin assign Y = cf; end endgenerate endmodule
7.78936
module \$le ( A, B, Y ); parameter A_SIGNED = 0; parameter B_SIGNED = 0; parameter A_WIDTH = 1; parameter B_WIDTH = 1; parameter Y_WIDTH = 1; localparam WIDTH = A_WIDTH > B_WIDTH ? A_WIDTH : B_WIDTH; input [A_WIDTH-1:0] A; input [B_WIDTH-1:0] B; output [Y_WIDTH-1:0] Y; wire carry, carry_sign; wire [WIDTH-1:0] A_buf, B_buf, Y_buf; \$pos #( .A_SIGNED(A_SIGNED), .A_WIDTH (A_WIDTH), .Y_WIDTH (WIDTH) ) A_conv ( .A(A), .Y(A_buf) ); \$pos #( .A_SIGNED(B_SIGNED), .A_WIDTH (B_WIDTH), .Y_WIDTH (WIDTH) ) B_conv ( .A(B), .Y(B_buf) ); \$__alu #( .WIDTH(WIDTH) ) alu ( .A(A_buf), .B(~B_buf), .Cin(1'b1), .Y(Y_buf), .Cout(carry), .Csign(carry_sign) ); // ALU flags wire cf, of, zf, sf; assign cf = !carry; assign of = carry ^ carry_sign; assign zf = ~|Y_buf; assign sf = Y_buf[WIDTH-1]; generate if (A_SIGNED && B_SIGNED) begin assign Y = zf || (of != sf); end else begin assign Y = zf || cf; end endgenerate endmodule
7.392377
module \$eq ( A, B, Y ); parameter A_SIGNED = 0; parameter B_SIGNED = 0; parameter A_WIDTH = 1; parameter B_WIDTH = 1; parameter Y_WIDTH = 1; localparam WIDTH = A_WIDTH > B_WIDTH ? A_WIDTH : B_WIDTH; input [A_WIDTH-1:0] A; input [B_WIDTH-1:0] B; output [Y_WIDTH-1:0] Y; wire carry, carry_sign; wire [WIDTH-1:0] A_buf, B_buf; \$bu0 #( .A_SIGNED(A_SIGNED), .A_WIDTH (A_WIDTH), .Y_WIDTH (WIDTH) ) A_conv ( .A(A), .Y(A_buf) ); \$bu0 #( .A_SIGNED(B_SIGNED), .A_WIDTH (B_WIDTH), .Y_WIDTH (WIDTH) ) B_conv ( .A(B), .Y(B_buf) ); assign Y = ~|(A_buf ^ B_buf); endmodule
7.584929
module \$ne ( A, B, Y ); parameter A_SIGNED = 0; parameter B_SIGNED = 0; parameter A_WIDTH = 1; parameter B_WIDTH = 1; parameter Y_WIDTH = 1; localparam WIDTH = A_WIDTH > B_WIDTH ? A_WIDTH : B_WIDTH; input [A_WIDTH-1:0] A; input [B_WIDTH-1:0] B; output [Y_WIDTH-1:0] Y; wire carry, carry_sign; wire [WIDTH-1:0] A_buf, B_buf; \$bu0 #( .A_SIGNED(A_SIGNED), .A_WIDTH (A_WIDTH), .Y_WIDTH (WIDTH) ) A_conv ( .A(A), .Y(A_buf) ); \$bu0 #( .A_SIGNED(B_SIGNED), .A_WIDTH (B_WIDTH), .Y_WIDTH (WIDTH) ) B_conv ( .A(B), .Y(B_buf) ); assign Y = |(A_buf ^ B_buf); endmodule
7.456013
module \$eqx ( A, B, Y ); parameter A_SIGNED = 0; parameter B_SIGNED = 0; parameter A_WIDTH = 1; parameter B_WIDTH = 1; parameter Y_WIDTH = 1; localparam WIDTH = A_WIDTH > B_WIDTH ? A_WIDTH : B_WIDTH; input [A_WIDTH-1:0] A; input [B_WIDTH-1:0] B; output [Y_WIDTH-1:0] Y; wire carry, carry_sign; wire [WIDTH-1:0] A_buf, B_buf; \$pos #( .A_SIGNED(A_SIGNED), .A_WIDTH (A_WIDTH), .Y_WIDTH (WIDTH) ) A_conv ( .A(A), .Y(A_buf) ); \$pos #( .A_SIGNED(B_SIGNED), .A_WIDTH (B_WIDTH), .Y_WIDTH (WIDTH) ) B_conv ( .A(B), .Y(B_buf) ); assign Y = ~|(A_buf ^ B_buf); endmodule
7.413778
module \$nex ( A, B, Y ); parameter A_SIGNED = 0; parameter B_SIGNED = 0; parameter A_WIDTH = 1; parameter B_WIDTH = 1; parameter Y_WIDTH = 1; localparam WIDTH = A_WIDTH > B_WIDTH ? A_WIDTH : B_WIDTH; input [A_WIDTH-1:0] A; input [B_WIDTH-1:0] B; output [Y_WIDTH-1:0] Y; wire carry, carry_sign; wire [WIDTH-1:0] A_buf, B_buf; \$pos #( .A_SIGNED(A_SIGNED), .A_WIDTH (A_WIDTH), .Y_WIDTH (WIDTH) ) A_conv ( .A(A), .Y(A_buf) ); \$pos #( .A_SIGNED(B_SIGNED), .A_WIDTH (B_WIDTH), .Y_WIDTH (WIDTH) ) B_conv ( .A(B), .Y(B_buf) ); assign Y = |(A_buf ^ B_buf); endmodule
7.347189
module \$gt ( A, B, Y ); parameter A_SIGNED = 0; parameter B_SIGNED = 0; parameter A_WIDTH = 1; parameter B_WIDTH = 1; parameter Y_WIDTH = 1; input [A_WIDTH-1:0] A; input [B_WIDTH-1:0] B; output [Y_WIDTH-1:0] Y; \$lt #( .A_SIGNED(B_SIGNED), .B_SIGNED(A_SIGNED), .A_WIDTH (B_WIDTH), .B_WIDTH (A_WIDTH), .Y_WIDTH (Y_WIDTH) ) gt_via_lt ( .A(B), .B(A), .Y(Y) ); endmodule
6.991416
module \$add ( A, B, C, Y ); parameter A_SIGNED = 0; parameter B_SIGNED = 0; parameter A_WIDTH = 1; parameter B_WIDTH = 1; parameter C_WIDTH = 1; parameter Y_WIDTH = 1; input [A_WIDTH-1:0] A; input [B_WIDTH-1:0] B; input [C_WIDTH-1:0] C; output [Y_WIDTH-1:0] Y; wire [Y_WIDTH-1:0] A_buf, B_buf; \$pos #( .A_SIGNED(A_SIGNED), .A_WIDTH (A_WIDTH), .Y_WIDTH (Y_WIDTH) ) A_conv ( .A(A), .Y(A_buf) ); \$pos #( .A_SIGNED(B_SIGNED), .A_WIDTH (B_WIDTH), .Y_WIDTH (Y_WIDTH) ) B_conv ( .A(B), .Y(B_buf) ); \$__alu #( .WIDTH(Y_WIDTH) ) alu ( .A (A_buf), .B (B_buf), .Cin(C), .Y (Y) ); endmodule
7.120414
module \$sub ( A, B, Y ); parameter A_SIGNED = 0; parameter B_SIGNED = 0; parameter A_WIDTH = 1; parameter B_WIDTH = 1; parameter Y_WIDTH = 1; input [A_WIDTH-1:0] A; input [B_WIDTH-1:0] B; output [Y_WIDTH-1:0] Y; wire [Y_WIDTH-1:0] A_buf, B_buf; \$pos #( .A_SIGNED(A_SIGNED), .A_WIDTH (A_WIDTH), .Y_WIDTH (Y_WIDTH) ) A_conv ( .A(A), .Y(A_buf) ); \$pos #( .A_SIGNED(B_SIGNED), .A_WIDTH (B_WIDTH), .Y_WIDTH (Y_WIDTH) ) B_conv ( .A(B), .Y(B_buf) ); \$__alu #( .WIDTH(Y_WIDTH) ) alu ( .A (A_buf), .B (~B_buf), .Cin(1'b1), .Y (Y) ); endmodule
6.972919
module \$__arraymul ( A, B, Y ); parameter WIDTH = 8; input [WIDTH-1:0] A, B; output [WIDTH-1:0] Y; wire [WIDTH*WIDTH-1:0] partials; genvar i; assign partials[WIDTH-1 : 0] = A[0] ? B : 0; generate for (i = 1; i < WIDTH; i = i + 1) begin : gen assign partials[WIDTH*(i+1)-1 : WIDTH*i] = (A[i] ? B << i : 0) + partials[WIDTH*i-1 : WIDTH*(i-1)]; end endgenerate assign Y = partials[WIDTH*WIDTH-1 : WIDTH*(WIDTH-1)]; endmodule
8.363186
module \$mul ( A, B, Y ); parameter A_SIGNED = 0; parameter B_SIGNED = 0; parameter A_WIDTH = 1; parameter B_WIDTH = 1; parameter Y_WIDTH = 1; input [A_WIDTH-1:0] A; input [B_WIDTH-1:0] B; output [Y_WIDTH-1:0] Y; wire [Y_WIDTH-1:0] A_buf, B_buf; \$pos #( .A_SIGNED(A_SIGNED), .A_WIDTH (A_WIDTH), .Y_WIDTH (Y_WIDTH) ) A_conv ( .A(A), .Y(A_buf) ); \$pos #( .A_SIGNED(B_SIGNED), .A_WIDTH (B_WIDTH), .Y_WIDTH (Y_WIDTH) ) B_conv ( .A(B), .Y(B_buf) ); \$__arraymul #( .WIDTH(Y_WIDTH) ) arraymul ( .A(A_buf), .B(B_buf), .Y(Y) ); endmodule
7.524175
module \$__div_mod_u ( A, B, Y, R ); parameter WIDTH = 1; input [WIDTH-1:0] A, B; output [WIDTH-1:0] Y, R; wire [WIDTH*WIDTH-1:0] chaindata; assign R = chaindata[WIDTH*WIDTH-1:WIDTH*(WIDTH-1)]; genvar i; generate begin for (i = 0; i < WIDTH; i = i + 1) begin : stage wire [WIDTH-1:0] stage_in; if (i == 0) begin : cp assign stage_in = A; end else begin : cp assign stage_in = chaindata[i*WIDTH-1:(i-1)*WIDTH]; end assign Y[WIDTH-(i+1)] = stage_in >= {B, {WIDTH - (i + 1) {1'b0}}}; assign chaindata[(i+1)*WIDTH-1:i*WIDTH] = Y[WIDTH-(i+1)] ? stage_in - {B, {WIDTH-(i+1){1'b0}}} : stage_in; end end endgenerate endmodule
7.101288
module \$__div_mod ( A, B, Y, R ); parameter A_SIGNED = 0; parameter B_SIGNED = 0; parameter A_WIDTH = 1; parameter B_WIDTH = 1; parameter Y_WIDTH = 1; localparam WIDTH = A_WIDTH >= B_WIDTH && A_WIDTH >= Y_WIDTH ? A_WIDTH : B_WIDTH >= A_WIDTH && B_WIDTH >= Y_WIDTH ? B_WIDTH : Y_WIDTH; input [A_WIDTH-1:0] A; input [B_WIDTH-1:0] B; output [Y_WIDTH-1:0] Y, R; wire [WIDTH-1:0] A_buf, B_buf; \$pos #( .A_SIGNED(A_SIGNED), .A_WIDTH (A_WIDTH), .Y_WIDTH (WIDTH) ) A_conv ( .A(A), .Y(A_buf) ); \$pos #( .A_SIGNED(B_SIGNED), .A_WIDTH (B_WIDTH), .Y_WIDTH (WIDTH) ) B_conv ( .A(B), .Y(B_buf) ); wire [WIDTH-1:0] A_buf_u, B_buf_u, Y_u, R_u; assign A_buf_u = A_SIGNED && A_buf[WIDTH-1] ? -A_buf : A_buf; assign B_buf_u = B_SIGNED && B_buf[WIDTH-1] ? -B_buf : B_buf; \$__div_mod_u #( .WIDTH(WIDTH) ) div_mod_u ( .A(A_buf_u), .B(B_buf_u), .Y(Y_u), .R(R_u) ); assign Y = A_SIGNED && B_SIGNED && (A_buf[WIDTH-1] != B_buf[WIDTH-1]) ? -Y_u : Y_u; assign R = A_SIGNED && B_SIGNED && A_buf[WIDTH-1] ? -R_u : R_u; endmodule
6.657259
module \$div ( A, B, Y ); parameter A_SIGNED = 0; parameter B_SIGNED = 0; parameter A_WIDTH = 1; parameter B_WIDTH = 1; parameter Y_WIDTH = 1; input [A_WIDTH-1:0] A; input [B_WIDTH-1:0] B; output [Y_WIDTH-1:0] Y; \$__div_mod #( .A_SIGNED(A_SIGNED), .B_SIGNED(B_SIGNED), .A_WIDTH (A_WIDTH), .B_WIDTH (B_WIDTH), .Y_WIDTH (Y_WIDTH) ) div_mod ( .A(A), .B(B), .Y(Y) ); endmodule
6.678757
module \$mod ( A, B, Y ); parameter A_SIGNED = 0; parameter B_SIGNED = 0; parameter A_WIDTH = 1; parameter B_WIDTH = 1; parameter Y_WIDTH = 1; input [A_WIDTH-1:0] A; input [B_WIDTH-1:0] B; output [Y_WIDTH-1:0] Y; \$__div_mod #( .A_SIGNED(A_SIGNED), .B_SIGNED(B_SIGNED), .A_WIDTH (A_WIDTH), .B_WIDTH (B_WIDTH), .Y_WIDTH (Y_WIDTH) ) div_mod ( .A(A), .B(B), .R(Y) ); endmodule
6.567228
module \$pow ( A, B, Y ); parameter A_SIGNED = 0; parameter B_SIGNED = 0; parameter A_WIDTH = 1; parameter B_WIDTH = 1; parameter Y_WIDTH = 1; input [A_WIDTH-1:0] A; input [B_WIDTH-1:0] B; output [Y_WIDTH-1:0] Y; wire signed [A_WIDTH:0] buffer_a = A_SIGNED ? $signed(A) : A; wire signed [B_WIDTH:0] buffer_b = B_SIGNED ? $signed(B) : B; assign Y = buffer_a ** buffer_b; endmodule
7.160984
module \$pmux ( A, B, S, Y ); parameter WIDTH = 1; parameter S_WIDTH = 1; input [WIDTH-1:0] A; input [WIDTH*S_WIDTH-1:0] B; input [S_WIDTH-1:0] S; output [WIDTH-1:0] Y; wire [WIDTH-1:0] Y_B; genvar i, j; generate wire [WIDTH*S_WIDTH-1:0] B_AND_S; for (i = 0; i < S_WIDTH; i = i + 1) begin : B_AND assign B_AND_S[WIDTH*(i+1)-1:WIDTH*i] = B[WIDTH*(i+1)-1:WIDTH*i] & {WIDTH{S[i]}}; end : B_AND for (i = 0; i < WIDTH; i = i + 1) begin : B_OR wire [S_WIDTH-1:0] B_AND_BITS; for (j = 0; j < S_WIDTH; j = j + 1) begin : B_AND_BITS_COLLECT assign B_AND_BITS[j] = B_AND_S[WIDTH*j+i]; end : B_AND_BITS_COLLECT assign Y_B[i] = |B_AND_BITS; end : B_OR endgenerate assign Y = |S ? Y_B : A; endmodule
7.211627