summaryrefslogtreecommitdiff
path: root/sim/testsuite/sim/sh64/compact/addv.cgs
blob: 0267e5dfa00e9daf7d92cb868e9d9fdfc7eefd8b (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
# sh testcase for addv $rm, $rn -*- Asm -*-
# mach: all
# as: -isa=shcompact
# ld: -m shelf32

	.include "compact/testutils.inc"

	start
zero:
	mov #0, r0
	mov #0, r1
	addv r0, r1
	# Assert !T and #0.
	bt wrong
	assert r1, #0

one:
	mov #0, r0
	mov #1, r1
	addv r0, r1
	# Assert !T and #1.
	bt wrong
	assert r1, #1

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

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

	# Add them and overflow.
	addv r0, r1

	# Assert T and overflowed value.
	bf wrong
	mov #1, r7
	rotr r7
	add #2, r7
	cmp/eq r1, r7
	bf wrong

okay:
	pass
wrong:
	fail