forked from Mirrors/opensbi
lib: sbi_misaligned_ldst: Fix handling of C.SWSP and C.SDSP
Unlike C.LWSP/C.LDSP, these encodings can be used with the zero register, so checking that the rs2 field is non-zero is unnecessary. Additionally, the previous check was incorrect since it was checking the immediate field of the instruction instead of the rs2 field. Signed-off-by: Amanieu d'Antras <amanieu@gmail.com> Reviewed-by: Anup Patel <anup@brainfault.org>
This commit is contained in:

committed by
Anup Patel

parent
3632f2b5c4
commit
ec0559eb31
@@ -211,16 +211,14 @@ int sbi_misaligned_store_handler(ulong addr, ulong tval2, ulong tinst,
|
|||||||
} else if ((insn & INSN_MASK_C_SD) == INSN_MATCH_C_SD) {
|
} else if ((insn & INSN_MASK_C_SD) == INSN_MATCH_C_SD) {
|
||||||
len = 8;
|
len = 8;
|
||||||
val.data_ulong = GET_RS2S(insn, regs);
|
val.data_ulong = GET_RS2S(insn, regs);
|
||||||
} else if ((insn & INSN_MASK_C_SDSP) == INSN_MATCH_C_SDSP &&
|
} else if ((insn & INSN_MASK_C_SDSP) == INSN_MATCH_C_SDSP) {
|
||||||
((insn >> SH_RD) & 0x1f)) {
|
|
||||||
len = 8;
|
len = 8;
|
||||||
val.data_ulong = GET_RS2C(insn, regs);
|
val.data_ulong = GET_RS2C(insn, regs);
|
||||||
#endif
|
#endif
|
||||||
} else if ((insn & INSN_MASK_C_SW) == INSN_MATCH_C_SW) {
|
} else if ((insn & INSN_MASK_C_SW) == INSN_MATCH_C_SW) {
|
||||||
len = 4;
|
len = 4;
|
||||||
val.data_ulong = GET_RS2S(insn, regs);
|
val.data_ulong = GET_RS2S(insn, regs);
|
||||||
} else if ((insn & INSN_MASK_C_SWSP) == INSN_MATCH_C_SWSP &&
|
} else if ((insn & INSN_MASK_C_SWSP) == INSN_MATCH_C_SWSP) {
|
||||||
((insn >> SH_RD) & 0x1f)) {
|
|
||||||
len = 4;
|
len = 4;
|
||||||
val.data_ulong = GET_RS2C(insn, regs);
|
val.data_ulong = GET_RS2C(insn, regs);
|
||||||
#ifdef __riscv_flen
|
#ifdef __riscv_flen
|
||||||
|
Reference in New Issue
Block a user