mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-09 18:44:58 -06:00
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:
parent
e71fdc4f1b
commit
585a86b104
27 changed files with 766 additions and 1 deletions
30
tests/tcg/hexagon/test_fibonacci.S
Normal file
30
tests/tcg/hexagon/test_fibonacci.S
Normal file
|
@ -0,0 +1,30 @@
|
|||
/* Purpose: computes the Fibonacci series up to a constant number. */
|
||||
|
||||
.text
|
||||
.globl _start
|
||||
|
||||
_start:
|
||||
{
|
||||
r2 = #100
|
||||
}
|
||||
{
|
||||
p0 = cmp.gt(r2, #0); if (!p0.new) jump:nt .LBB0_3
|
||||
}
|
||||
{
|
||||
r3 = #0
|
||||
r4 = #1
|
||||
}
|
||||
.LBB0_2:
|
||||
{
|
||||
r5 = r4
|
||||
}
|
||||
{
|
||||
p0 = cmp.gt(r2, r5); if (p0.new) jump:nt .LBB0_2
|
||||
r4 = add(r3, r4)
|
||||
r3 = r5
|
||||
}
|
||||
.LBB0_3:
|
||||
{
|
||||
p0 = cmp.eq(r3, #144); if (p0.new) jump:t pass
|
||||
jump fail
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue