Re: [Qemu-devel] [PATCH] target-arm: Don't update base register on abort in Thumb T1 LDM

2011-04-27 Thread Yuyeon Oh
It looks very good. I hope that it will patch soon. Thank you. --- Original Message --- Sender : Peter Maydell Date : 2011-04-27 02:17 (GMT+09:00) Title : [PATCH] target-arm: Don't update base register on abort in Thumb T1 LDM   Make sure the base register isn't updated if it is in the loa

[Qemu-devel] [PATCH] target-arm: fix LDMIA bug on page boundary

2011-04-24 Thread YuYeon Oh
-off-by: Yuyeon Oh --- target-arm/translate.c | 10 +- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/target-arm/translate.c b/target-arm/translate.c index e1bda57..410e7c4 100644 --- a/target-arm/translate.c +++ b/target-arm/translate.c @@ -7967,7 +7967,8 @@ static int

Re: [Qemu-devel] [PATCH] target-arm: fix LDMIA bug on page boundary

2011-04-24 Thread YuYeon Oh
2011/4/24 Peter Maydell >Thanks for finding this. I agree the fix is required, but I think I'd >prefer it if the thumb code for this case handled it in the same way >the disas_arm_insn() code does: > > loaded_base = 0; > TCGV_UNUSED(loaded_var); > [...] > tmp = gen_ld32(addr, IS_USER(s))