summaryrefslogtreecommitdiff
path: root/sim/testsuite/sim/sh64/compact/subv.cgs
blob: ceb8c64e7fd0927e7143d39f834fe16717d89193 (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
48
49
50
51
52
53
54
55
# sh testcase for subv $rm, $rn -*- Asm -*-
# mach: all
# as: -isa=shcompact
# ld: -m shelf32

	.include "compact/testutils.inc"

	start
zero:
	mov #0, r0
	mov #0, r1
	subv r0, r1
	bt wrong
	assert r1, #0

one:
	mov #10, r0
	mov #0, r1
	subv r0, r1
	bt wrong
	not r1, r1
	assert r1, #9

large:
	# Produce MAXINT in R0.
	mov #0, r0
	not r0, r0
	shlr r0

	# Put -3 into R1.
	mov #3, r1
	neg r1, r1

	# Subtract them and underflow.
	subv r0, r1
	bf wrong

another:
	# Produce MAXINT in R0.
	mov #0, r0
	not r0, r0
	shlr r0
	
	# Put -3 into R1.
	mov #3, r1
	neg r1, r1
	
	# Subtract them and overflow.
	subv r1, r0
	bf wrong
		
okay:
	pass
wrong:
	fail