SymbioticEDA / riscv-formal

RISC-V Formal Verification Framework
ISC License
584 stars 98 forks source link

Misaligned JAL(R) RD register writeback expectations #38

Closed ultraembedded closed 4 years ago

ultraembedded commented 4 years ago

Hi,

If I've read this thread correctly;

https://github.com/riscv/riscv-isa-manual/issues/269 @kasanovic says 'Misaligned address trap should be taken precisely, implying rd would not be updated.'

This appears to be not what the RVFI checkers are expecting when rvfi_trap is raised on an unaligned branch, as they barf on mismatching rd_addr/rd_wdata (if the DUT has indeed squashed the writeback to RD of the faulting JAL/JALR instructions).

Any thoughts?

ultraembedded commented 4 years ago

I guess this is effectively a duplicate of issue #26 so I’ll guess it will get same response!

cliffordwolf commented 4 years ago

This appears to be not what the RVFI checkers are expecting when rvfi_trap is raised on an unaligned branch, as they barf on mismatching rd_addr/rd_wdata (if the DUT has indeed squashed the writeback to RD of the faulting JAL/JALR instructions).

I don't think this is a dup of #26 because in #26 the core said it wrote a register when it should not, but you are saying the core reports that it does not write the destination register for a misaligned branch (as is the correct behavior) and the check is still complaining? That is weird.

Are you sure the riscv-formal spec agrees that the instruction should trap, i.e. is spec_trap high? Because from the little information you provided I would guess you have configured riscv-formal for a core with support for compressed instructions (RISCV_FORMAL_COMPRESSED), and then the core should never encounter an instruction address misaligned trap.

ultraembedded commented 4 years ago

The checker was in agreement that the trap should happen (spec_trap was high), however it also expects that the core continues to writeback to RD. This is not the case with my core or the spike reference model, as the faulting instruction (a branch to a misaligned destination) should be stopped from causing architectural side effects and should fault instead (effectively the instruction would be left un-executed). This would make it a precise fault, e.g. like a recoverable fault like a page fault.

I am not using compressed instructions.

I can’t see that the checker has enough information to disambiguate what to do on the various fault causes.

cliffordwolf commented 4 years ago

The checker was in agreement that the trap should happen (spec_trap was high), however it also expects that the core continues to writeback to RD.

I don't think this is true. Currently the insn checker only checks rd writeback when spec_trap is low:

https://github.com/SymbioticEDA/riscv-formal/blob/726255fd2a758aa25ca7c1d448576ee0a632c937/checks/rvfi_insn_check.sv#L149-L158

Arguably it should check that rd_addr = 0 and rd_wdata = 0 when spec_trap is high, but right now it doesn't check rd writeback at all in case of a trap.