sim: pru: Fix behaviour when loop count is zero
authorDimitar Dimitrov <dimitar@dinux.eu>
Fri, 11 Nov 2022 18:14:13 +0000 (20:14 +0200)
committerDimitar Dimitrov <dimitar@dinux.eu>
Sat, 12 Nov 2022 13:10:07 +0000 (15:10 +0200)
commit7bee555bb712b74749b749d80566f9c0d2094312
tree3a88471f78ae789677ea9146ba39f886601d58d0
parent7149607f6ae572fa198116b0d0fb69a3e0fde458
sim: pru: Fix behaviour when loop count is zero

If the counter for LOOP instruction is provided by a register with
value zero, then the instruction must cause a PC jump directly to the
loop end.  But in that particular case simulator must not initialize
its internal loop variables, because loop body will not be executed.
Instead, simulator must obtain the loop's end address directly from
the LOOP instruction.

Signed-off-by: Dimitar Dimitrov <dimitar@dinux.eu>
sim/pru/pru.isa
sim/testsuite/pru/loop-zero.s [new file with mode: 0644]