qemu/tests/tcg/hexagon/test_vavgw.S
Niccolò Izzo 585a86b104 target/hexagon: import additional tests
Signed-off-by: Alessandro Di Federico <ale@rev.ng>
Signed-off-by: Niccolò Izzo <nizzo@rev.ng>
Signed-off-by: Anton Johansson <anjo@rev.ng>
Signed-off-by: Taylor Simpson <tsimpson@quicinc.com>
Reviewed-by: Taylor Simpson <tsimpson@quicinc.com>
Message-Id: <20220923173831.227551-12-anjo@rev.ng>
2022-12-16 12:30:28 -08:00

32 lines
491 B
ArmAsm

/*
* Purpose: test example, verify the soundness of the vavgw operation.
*
* 0x00030001 averaged with 0x00010003 results 0x00020002.
*/
.text
.globl _start
_start:
{
r0 = #3
r1 = #1
}
{
r2 = #1
r3 = #3
}
{
r1:0 = vavgw(r1:0, r3:2):crnd
}
{
p0 = cmp.eq(r0, #2); if (p0.new) jump:t test2
jump fail
}
test2:
{
p0 = cmp.eq(r1, #2); if (p0.new) jump:t pass
jump fail
}