mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-10 11:04:58 -06:00
tcg/optimize: Fix sign_mask for logical right-shift
The 'sign' computation is attempting to locate the sign bit that has
been repeated, so that we can test if that bit is known zero. That
computation can be zero if there are no known sign repetitions.
Cc: qemu-stable@nongnu.org
Fixes: 93a967fbb5
("tcg/optimize: Propagate sign info for shifting")
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2248
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
This commit is contained in:
parent
889cd5a8e2
commit
2911e9b95f
3 changed files with 30 additions and 1 deletions
28
tests/tcg/aarch64/test-2248.c
Normal file
28
tests/tcg/aarch64/test-2248.c
Normal file
|
@ -0,0 +1,28 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||
/* See https://gitlab.com/qemu-project/qemu/-/issues/2248 */
|
||||
|
||||
#include <assert.h>
|
||||
|
||||
__attribute__((noinline))
|
||||
long test(long x, long y, long sh)
|
||||
{
|
||||
long r;
|
||||
asm("cmp %1, %2\n\t"
|
||||
"cset x12, lt\n\t"
|
||||
"and w11, w12, #0xff\n\t"
|
||||
"cmp w11, #0\n\t"
|
||||
"csetm x14, ne\n\t"
|
||||
"lsr x13, x14, %3\n\t"
|
||||
"sxtb %0, w13"
|
||||
: "=r"(r)
|
||||
: "r"(x), "r"(y), "r"(sh)
|
||||
: "x11", "x12", "x13", "x14");
|
||||
return r;
|
||||
}
|
||||
|
||||
int main()
|
||||
{
|
||||
long r = test(0, 1, 2);
|
||||
assert(r == -1);
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue