Searched hist:"7 e1df267a7e8b39fc0cf1d84d2afc2e88ccbfeac" (Results 1 – 1 of 1) sorted by relevance
/qemu/tcg/ |
H A D | tcg.c | 7e1df267a7e8b39fc0cf1d84d2afc2e88ccbfeac Thu Jun 04 19:47:07 UTC 2015 Aurelien Jarno <aurelien@aurel32.net> tcg: fix register allocation with two aliased dead inputs
For TCG ops with two outputs registers (add2, sub2, div2, div2u), when the same input temp is used for the two inputs aliased to the two outputs, and when these inputs are both dead, the register allocation code wrongly assigned the same register to the same output.
This happens for example with sub2 t1, t2, t3, t3, t4, t5, when t3 is not used anymore after the TCG op. In that case the same register is used for t1, t2 and t3.
The fix is to look for already allocated aliased input when allocating a dead aliased input and check that the register is not already used.
Cc: Richard Henderson <rth@twiddle.net> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> Message-Id: <1433447228-29425-2-git-send-email-aurelien@aurel32.net> Signed-off-by: Richard Henderson <rth@twiddle.net>
|