Skip to content

Commit

Permalink
mock: faster tests data_2048x8 mocked
Browse files Browse the repository at this point in the history
Signed-off-by: Øyvind Harboe <[email protected]>
  • Loading branch information
oharboe committed May 13, 2024
1 parent c552621 commit 21c541d
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 2 deletions.
5 changes: 3 additions & 2 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ all_source_files = [
"rtl/CompareRecFN.sv",
"rtl/ComposedBranchPredictorBank.sv",
"rtl/CSRFile.sv",
"rtl/data_2048x8.sv",
"mock/data_2048x8.sv",
"mock/dataArrayB_256x64.sv",
"rtl/DebugTransportModuleJTAG.sv",
"rtl/DecodeUnit.sv",
Expand Down Expand Up @@ -741,7 +741,8 @@ digital_top_srams=[
'ebtb_128x40':'mock',
'ghist_40x64':'mock',
'l2_tlb_ram_0_512x45':'mock',
'tag_array_64x184':'mock'}.get(ram, "rtl") + "/" + ram + ".sv"],
'tag_array_64x184':'mock',
'data_2048x8':'mock'}.get(ram, "rtl") + "/" + ram + ".sv"],
sdc_constraints = ":constraints-sram",
stage_args={
'synth': ['SYNTH_MEMORY_MAX_BITS=16384'],
Expand Down
55 changes: 55 additions & 0 deletions mock/data_2048x8.sv
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
// Standard header to adapt well known macros for prints and assertions.

// Users can define 'ASSERT_VERBOSE_COND' to add an extra gate to assert error printing.
`ifndef ASSERT_VERBOSE_COND_
`ifdef ASSERT_VERBOSE_COND
`define ASSERT_VERBOSE_COND_ (`ASSERT_VERBOSE_COND)
`else // ASSERT_VERBOSE_COND
`define ASSERT_VERBOSE_COND_ 1
`endif // ASSERT_VERBOSE_COND
`endif // not def ASSERT_VERBOSE_COND_

// Users can define 'STOP_COND' to add an extra gate to stop conditions.
`ifndef STOP_COND_
`ifdef STOP_COND
`define STOP_COND_ (`STOP_COND)
`else // STOP_COND
`define STOP_COND_ 1
`endif // STOP_COND
`endif // not def STOP_COND_

// VCS coverage exclude_file
module data_2048x8(
input [10:0] R0_addr,
input R0_en,
R0_clk,
output [7:0] R0_data,
input [10:0] W0_addr,
input W0_en,
W0_clk,
input [7:0] W0_data,
input [3:0] W0_mask
);

reg [7:0] Memory[0:3]; // Reduced to 4 rows
reg _R0_en_d0;
reg [1:0] _R0_addr_d0; // Reduced to 2 bits
reg [1:0] _W0_addr_d0; // Reduced to 2 bits
always @(posedge R0_clk) begin
_R0_en_d0 <= R0_en;
_R0_addr_d0 <= R0_addr[1:0] ^ R0_addr[5:4] ^ R0_addr[9:8]; // XOR upper and lower bits
end // always @(posedge)
always @(posedge W0_clk) begin
_W0_addr_d0 <= W0_addr[1:0] ^ W0_addr[5:4] ^ W0_addr[9:8]; // XOR upper and lower bits
if (W0_en & W0_mask[0])
Memory[_W0_addr_d0][32'h0 +: 2] <= W0_data[1:0];
if (W0_en & W0_mask[1])
Memory[_W0_addr_d0][32'h2 +: 2] <= W0_data[3:2];
if (W0_en & W0_mask[2])
Memory[_W0_addr_d0][32'h4 +: 2] <= W0_data[5:4];
if (W0_en & W0_mask[3])
Memory[_W0_addr_d0][32'h6 +: 2] <= W0_data[7:6];
end // always @(posedge)
assign R0_data = _R0_en_d0 ? Memory[_R0_addr_d0] : 8'bx;
endmodule

0 comments on commit 21c541d

Please sign in to comment.