qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] x86: Fixed incorrect segment base address addit


From: Max Filippov
Subject: Re: [Qemu-devel] [PATCH] x86: Fixed incorrect segment base address addition
Date: Mon, 2 Jul 2012 19:18:06 +0400

On Mon, Jul 2, 2012 at 2:29 PM, Vitaly Chipounov
<address@hidden> wrote:
> An instruction with address and segment size override triggers the bug.
> inc dword ptr gs:260h[ebx*4] gets incorrectly translated to:
> (uint32_t)(gs.base + ebx * 4 + 0x260)
> instead of
> gs.base + (uint32_t)(ebx * 4 + 0x260)

Do I understand it right that this fixes address calculation for
64-bit mode but breaks it for compatibility mode?

Quote from "Intel® 64 and IA-32 Architectures Software Developer’s Manual
Volume 3", "3.4.4 Segment Loading Instructions in IA-32e Mode":

When in compatibility mode, FS and GS overrides operate as defined by
32-bit mode
behavior regardless of the value loaded into the upper 32
linear-address bits of the
hidden descriptor register base field. Compatibility mode ignores the
upper 32 bits
when calculating an effective address.

>
> Signed-off-by: Vitaly Chipounov <address@hidden>
> ---
>  target-i386/translate.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/target-i386/translate.c b/target-i386/translate.c
> index a902f4a..9ca7375 100644
> --- a/target-i386/translate.c
> +++ b/target-i386/translate.c
> @@ -459,10 +459,10 @@ static inline void gen_op_movl_A0_seg(int reg)
>  static inline void gen_op_addl_A0_seg(int reg)
>  {
>      tcg_gen_ld_tl(cpu_tmp0, cpu_env, offsetof(CPUX86State, segs[reg].base));
> -    tcg_gen_add_tl(cpu_A0, cpu_A0, cpu_tmp0);
>  #ifdef TARGET_X86_64
>      tcg_gen_andi_tl(cpu_A0, cpu_A0, 0xffffffff);
>  #endif
> +    tcg_gen_add_tl(cpu_A0, cpu_A0, cpu_tmp0);
>  }
>
>  #ifdef TARGET_X86_64
> --
> 1.7.4.1
>
>



-- 
Thanks.
-- Max



reply via email to

[Prev in Thread] Current Thread [Next in Thread]