Skip to content

Commit

Permalink
Merge pull request openhwgroup#986 from YoannPruvost/dev_RVFI_mastus_…
Browse files Browse the repository at this point in the history
…fs_when_frm

Setting correct mstatus fs write mask when csrw to frm and correcting cv.beqimm & cv.bneimm printing in log file
  • Loading branch information
davideschiavone authored Apr 26, 2024
2 parents cdd6955 + 90e982e commit 1f744c6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bhv/cv32e40p_instr_trace.svh
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ class instr_trace_t;
begin
mnemonic = {compressed ? "c." : "", mnemonic};
regs_read.push_back('{rs1, rs1_value, 0});
str = $sformatf("%-16s %s, %0d", mnemonic, regAddrToStr(rs1), $signed(imm_sb_type));
str = $sformatf("%-16s %s, %0d, %0d", mnemonic, regAddrToStr(rs1), $signed(imm_s2_type), $signed(imm_sb_type));
end
endfunction // printSBInstr

Expand Down
5 changes: 4 additions & 1 deletion bhv/pipe_freeze_trace.sv
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,10 @@ function compute_csr_we();
r_pipe_freeze_trace.csr.fflags_we = 1'b1;
r_pipe_freeze_trace.csr.mstatus_fs_we = 1'b1;
end
CSR_FRM: r_pipe_freeze_trace.csr.frm_we = 1'b1;
CSR_FRM: begin
r_pipe_freeze_trace.csr.frm_we = 1'b1;
r_pipe_freeze_trace.csr.mstatus_fs_we = 1'b1;
end
CSR_FCSR: begin
r_pipe_freeze_trace.csr.fcsr_we = 1'b1;
r_pipe_freeze_trace.csr.mstatus_fs_we = 1'b1;
Expand Down

0 comments on commit 1f744c6

Please sign in to comment.