You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix illegal instruction handling for SLLI, SRLI, and SRAI
According to the RISC-V specification, specifically for RV32I,
instructions like SLLI, SRLI, and SRAI should generate an illegal
instruction exception if the imm[5] bit is not zero. However, the
current implementation does not handle this error condition.
Addresse the issue by adding proper handling for illegal instruction
exceptions in cases where imm[5] is non-zero for SLLI, SRLI, and SRAI
instructions.
0 commit comments