summaryrefslogtreecommitdiff
path: root/sim/testsuite/sim/sh64/media/bgeu.cgs
blob: da469d0e4ae5b452ed8bd23e22aae1246ffeb1f5 (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
41
42
43
44
45
46
47
# sh testcase for bgeu$likely $rm, $rn, $tra -*- Asm -*-
# mach: all
# as: -isa=shmedia
# ld: -m shelf64

	.include "media/testutils.inc"

	start

	.global bgeu
init:
	movi 0, r0
	
bgeu1:
	# Compare r0 with itself.
	pta bgeu2, tr0
	bgeu/l r0, r0, tr0
	# We should branch here.
	fail

bgeu2:
	movi 1, r1
	movi 1, r2
	pta bge3, tr0
	bgeu r1, r2, tr0
	# We should branch here.
	fail

bge3:
	movi -1, r1
	movi 1, r2
	# We SHOULD branch here.
	pta bge4, tr0
	bgeu r1, r2, tr0
	fail

bge4:
	movi 1, r1
	movi -1, r2
	# We should not branch here.
	pta wrong, tr0
	bgeu r1, r2, tr0
okay:
	pass

wrong:
	fail