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>
This commit is contained in:
Niccolò Izzo 2022-09-23 19:38:31 +02:00 committed by Taylor Simpson
parent e71fdc4f1b
commit 585a86b104
27 changed files with 766 additions and 1 deletions

View file

@ -0,0 +1,36 @@
/* Purpose: test the soundness of the lsr operation */
.text
.globl _start
_start:
{
r0 = #-56984
r1 = #2147483647
}
{
r2 = #0x19
}
{
r0 &= lsr(r1, r2)
}
{
p0 = cmp.eq(r0, #0x28); if (p0.new) jump:t test2
jump fail
}
test2:
{
r0 = #0x0000000a
r1 = #0x00000000
}
{
r2 = #-1
}
{
r1:0 = lsl(r1:0, r2)
}
{
p0 = cmp.eq(r0, #0x5); if (p0.new) jump:t pass
jump fail
}