mirror of
https://github.com/Motorhead1991/qemu.git
synced 2026-02-26 22:25:12 -07:00
target: Use cpu_pointer_wrap_uint32 for 32-bit targets
M68K, MicroBlaze, OpenRISC, RX, TriCore and Xtensa are all 32-bit targets. AVR is more complicated, but using a 32-bit wrap preserves current behaviour. Cc: Michael Rolnik <mrolnik@gmail.com> Cc: Laurent Vivier <laurent@vivier.eu> Cc: Stafford Horne <shorne@gmail.com> Cc: Yoshinori Sato <ysato@users.sourceforge.jp> Cc: Max Filippov <jcmvbkbc@gmail.com> Tested-by Bastian Koppelmann <kbastian@mail.uni-paderborn.de> (tricore) Reviewed-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Edgar E. Iglesias <edgar.iglesias@amd.com> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
a4027ed7d4
commit
981f2beb16
9 changed files with 19 additions and 0 deletions
|
|
@ -2946,3 +2946,9 @@ vaddr cpu_pointer_wrap_notreached(CPUState *cs, int idx, vaddr res, vaddr base)
|
|||
{
|
||||
g_assert_not_reached();
|
||||
}
|
||||
|
||||
/* To be used for strict 32-bit targets. */
|
||||
vaddr cpu_pointer_wrap_uint32(CPUState *cs, int idx, vaddr res, vaddr base)
|
||||
{
|
||||
return (uint32_t)res;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -326,6 +326,7 @@ int cpu_watchpoint_address_matches(CPUState *cpu, vaddr addr, vaddr len);
|
|||
* Common pointer_wrap implementations.
|
||||
*/
|
||||
vaddr cpu_pointer_wrap_notreached(CPUState *, int, vaddr, vaddr);
|
||||
vaddr cpu_pointer_wrap_uint32(CPUState *, int, vaddr, vaddr);
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
|||
|
|
@ -250,6 +250,12 @@ static const TCGCPUOps avr_tcg_ops = {
|
|||
.cpu_exec_reset = cpu_reset,
|
||||
.tlb_fill = avr_cpu_tlb_fill,
|
||||
.do_interrupt = avr_cpu_do_interrupt,
|
||||
/*
|
||||
* TODO: code and data wrapping are different, but for the most part
|
||||
* AVR only references bytes or aligned code fetches. But we use
|
||||
* non-aligned MO_16 accesses for stack push/pop.
|
||||
*/
|
||||
.pointer_wrap = cpu_pointer_wrap_uint32,
|
||||
};
|
||||
|
||||
static void avr_cpu_class_init(ObjectClass *oc, const void *data)
|
||||
|
|
|
|||
|
|
@ -619,6 +619,7 @@ static const TCGCPUOps m68k_tcg_ops = {
|
|||
|
||||
#ifndef CONFIG_USER_ONLY
|
||||
.tlb_fill = m68k_cpu_tlb_fill,
|
||||
.pointer_wrap = cpu_pointer_wrap_uint32,
|
||||
.cpu_exec_interrupt = m68k_cpu_exec_interrupt,
|
||||
.cpu_exec_halt = m68k_cpu_has_work,
|
||||
.cpu_exec_reset = cpu_reset,
|
||||
|
|
|
|||
|
|
@ -447,6 +447,7 @@ static const TCGCPUOps mb_tcg_ops = {
|
|||
|
||||
#ifndef CONFIG_USER_ONLY
|
||||
.tlb_fill = mb_cpu_tlb_fill,
|
||||
.pointer_wrap = cpu_pointer_wrap_uint32,
|
||||
.cpu_exec_interrupt = mb_cpu_exec_interrupt,
|
||||
.cpu_exec_halt = mb_cpu_has_work,
|
||||
.cpu_exec_reset = cpu_reset,
|
||||
|
|
|
|||
|
|
@ -265,6 +265,7 @@ static const TCGCPUOps openrisc_tcg_ops = {
|
|||
|
||||
#ifndef CONFIG_USER_ONLY
|
||||
.tlb_fill = openrisc_cpu_tlb_fill,
|
||||
.pointer_wrap = cpu_pointer_wrap_uint32,
|
||||
.cpu_exec_interrupt = openrisc_cpu_exec_interrupt,
|
||||
.cpu_exec_halt = openrisc_cpu_has_work,
|
||||
.cpu_exec_reset = cpu_reset,
|
||||
|
|
|
|||
|
|
@ -225,6 +225,7 @@ static const TCGCPUOps rx_tcg_ops = {
|
|||
.restore_state_to_opc = rx_restore_state_to_opc,
|
||||
.mmu_index = rx_cpu_mmu_index,
|
||||
.tlb_fill = rx_cpu_tlb_fill,
|
||||
.pointer_wrap = cpu_pointer_wrap_uint32,
|
||||
|
||||
.cpu_exec_interrupt = rx_cpu_exec_interrupt,
|
||||
.cpu_exec_halt = rx_cpu_has_work,
|
||||
|
|
|
|||
|
|
@ -190,6 +190,7 @@ static const TCGCPUOps tricore_tcg_ops = {
|
|||
.restore_state_to_opc = tricore_restore_state_to_opc,
|
||||
.mmu_index = tricore_cpu_mmu_index,
|
||||
.tlb_fill = tricore_cpu_tlb_fill,
|
||||
.pointer_wrap = cpu_pointer_wrap_uint32,
|
||||
.cpu_exec_interrupt = tricore_cpu_exec_interrupt,
|
||||
.cpu_exec_halt = tricore_cpu_has_work,
|
||||
.cpu_exec_reset = cpu_reset,
|
||||
|
|
|
|||
|
|
@ -318,6 +318,7 @@ static const TCGCPUOps xtensa_tcg_ops = {
|
|||
|
||||
#ifndef CONFIG_USER_ONLY
|
||||
.tlb_fill = xtensa_cpu_tlb_fill,
|
||||
.pointer_wrap = cpu_pointer_wrap_uint32,
|
||||
.cpu_exec_interrupt = xtensa_cpu_exec_interrupt,
|
||||
.cpu_exec_halt = xtensa_cpu_has_work,
|
||||
.cpu_exec_reset = cpu_reset,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue