Re: [Qemu-devel] [PATCH 1.1] target-xtensa: fix CCOUNT for conditional branches

2012-06-09 Thread Blue Swirl
Thanks, applied. On Sun, May 27, 2012 at 11:18 PM, Max Filippov wrote: > Taken conditional branches fail to update CCOUNT register because > accumulated ccount_delta is reset during translation of non-taken > branch. To fix it only update CCOUNT once per conditional branch > instruction translati

[Qemu-devel] [PATCH 1.1] target-xtensa: fix CCOUNT for conditional branches

2012-05-27 Thread Max Filippov
Taken conditional branches fail to update CCOUNT register because accumulated ccount_delta is reset during translation of non-taken branch. To fix it only update CCOUNT once per conditional branch instruction translation. This fixes guest linux freeze on LTP waitpid06 test. Signed-off-by: Max Fil