Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
target/tricore: Correctly fix saving PSW.CDE to CSA on call
we don't want to save PSW.CDC to the CSA, but PSW.CDE must be saved.

Resolves: https://gitlab.com/qemu-project/qemu/-/issues/1699
Signed-off-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
Message-Id: <20230612113245.56667-3-kbastian@mail.uni-paderborn.de>
  • Loading branch information
bkoppelmann committed Jun 21, 2023
1 parent d34b092 commit 5434557
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion target/tricore/op_helper.c
Expand Up @@ -2499,7 +2499,12 @@ void helper_call(CPUTriCoreState *env, uint32_t next_pc)
}
/* PSW.CDE = 1;*/
psw |= MASK_PSW_CDE;
psw_write(env, psw);
/*
* we need to save PSW.CDE and not PSW.CDC into the CSAs. psw already
* contains the CDC from cdc_increment(), so we cannot call psw_write()
* here.
*/
env->PSW |= MASK_PSW_CDE;

/* tmp_FCX = FCX; */
tmp_FCX = env->FCX;
Expand Down

0 comments on commit 5434557

Please sign in to comment.