summaryrefslogtreecommitdiff
path: root/sim/testsuite/sim/sh64/media/beqi.cgs
blob: c2b4ea8acf52ad207994dfbe6ea66cbb0b1eb673 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# sh testcase for beqi$likely $rm, $imm6, $tra -*- Asm -*-
# mach: all
# as: -isa=shmedia
# ld: -m shelf64

	.include "media/testutils.inc"

	start

	.global beqi
init:
	# Load up the branch target registers.
	pta beqi2, tr0
	pta beqi3, tr1
	pta wrong, tr2

beqi1:
	# Always true, so branch likely.
	movi 1, r0
	beqi/l r0, 1, tr0
	# We should branch over this.
	fail

beqi2:
	movi 22, r3
	beqi r3, 22, tr1
	# We should branch over this.
	fail

beqi3:	
	movi 27, r7
	# We shouldn't branch here.
	beqi/u r7, 23, tr2
	# We should proceed to pass here.

okay:
	pass
	
wrong:
	fail