[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] qemu-arm: wrong execution of post-indexed loads when Rm and
From: |
Lauro Ramos Venancio |
Subject: |
[Qemu-devel] qemu-arm: wrong execution of post-indexed loads when Rm and Rd are the same register |
Date: |
Thu, 15 Mar 2007 16:35:24 -0300 |
Qemu-arm is wrongly executing post-indexed loads when Rm and Rd are
the same register. For example:
ldr r0, [r1], +r0
Current behavior:
r0 <- [r1]
r1 <- r1 + r0
Expected behavior:
addr <- r1
r1 <- r1 + r0
r0 <- [addr]
The attached patch fixes this bug. Patched by me and Rodrigo Vivi.
This patch was made based on qemu 0.9.
Lauro Venancio
- [Qemu-devel] qemu-arm: wrong execution of post-indexed loads when Rm and Rd are the same register,
Lauro Ramos Venancio <=
- [Qemu-devel] Re: qemu-arm: wrong execution of post-indexed loads when Rm and Rd are the same register, Lauro Ramos Venancio, 2007/03/15
- Re: [Qemu-devel] qemu-arm: wrong execution of post-indexed loads when Rm and Rd are the same register, Paul Brook, 2007/03/15
- Re: [Qemu-devel] qemu-arm: wrong execution of post-indexed loads when Rm and Rd are the same register, Rodrigo Vivi, 2007/03/15
- Re: [Qemu-devel] qemu-arm: wrong execution of post-indexed loads when Rm and Rd are the same register, Paul Brook, 2007/03/15
- Re: [Qemu-devel] qemu-arm: wrong execution of post-indexed loads when Rm and Rd are the same register, Rodrigo Vivi, 2007/03/15
- Re: [Qemu-devel] qemu-arm: wrong execution of post-indexed loads when Rm and Rd are the same register, Laurent Desnogues, 2007/03/15
- Re: [Qemu-devel] qemu-arm: wrong execution of post-indexed loads when Rm and Rd are the same register, Paul Brook, 2007/03/15
- Re: [Qemu-devel] qemu-arm: wrong execution of post-indexed loads when Rm and Rd are the same register, Lauro Ramos Venancio, 2007/03/16