mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
target/microblaze: Split out MSR[C] to its own variable
Having the MSR[C] bit separate will improve arithmetic that operates on the carry bit. Having mb_cpu_read_msr() populate MSR[CC] will prevent the carry copy not matching the carry bit. Tested-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com> Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
480d29a8fa
commit
1074c0fb91
6 changed files with 82 additions and 96 deletions
|
@ -1039,7 +1039,7 @@ static void elf_core_copy_regs(target_elf_gregset_t *regs, const CPUMBState *env
|
|||
}
|
||||
|
||||
(*regs)[pos++] = tswapreg(env->pc);
|
||||
(*regs)[pos++] = tswapreg(env->msr);
|
||||
(*regs)[pos++] = tswapreg(mb_cpu_read_msr(env));
|
||||
(*regs)[pos++] = 0;
|
||||
(*regs)[pos++] = tswapreg(env->ear);
|
||||
(*regs)[pos++] = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue