Skip to content

Commit

Permalink
Increased utilization of the speculative queue of store buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
fatimasaleem committed Sep 8, 2023
1 parent 1c847c3 commit 69a3dc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/store_buffer.sv
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ module store_buffer import ariane_pkg::*; #(
speculative_status_cnt = speculative_status_cnt_q;

// we are ready if the speculative and the commit queue have a space left
ready_o = (speculative_status_cnt_q < (DEPTH_SPEC - 1)) || commit_i;
ready_o = (speculative_status_cnt_n < (DEPTH_SPEC)) || commit_i;
// default assignments
speculative_status_cnt_n = speculative_status_cnt_q;
speculative_read_pointer_n = speculative_read_pointer_q;
Expand Down

0 comments on commit 69a3dc9

Please sign in to comment.