summaryrefslogtreecommitdiff
path: root/sim/testsuite/sim/sh64/media/and.cgs
blob: c2d42339bcfb1f377a1d9c2e6a33c45447e9498b (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
56
57
58
59
60
61
62
63
64
65
66
67
68
# sh testcase for and $rm, $rn, $rd -*- Asm -*-
# mach: all
# as: -isa=shmedia
# ld: -m shelf64

	.include "media/testutils.inc"

	start

init:
	pta wrong, tr0
	
and0:
	# 0 and 0 is 0.
	movi 0, r0
	movi 0, r1
	and r0, r1, r2
	bnei r2, 0, tr0

and1:
	# 0 and 1 is 0.
	movi 0, r0
	movi 1, r1
	and r0, r1, r2
	bnei r2, 0, tr0

and2:
	# 1 and 0 is 0.
	movi 1, r0
	movi 0, r1
	and r0, r1, r2
	bnei r2, 0, tr0

and3:
	# 1 and 1 is 1.
	movi 1, r0
	movi 1, r1
	and r0, r1, r2
	bnei r2, 1, tr0

and4:
	movi 1, r0
	shlli r0, 63, r0
	movi 1, r1
	shlli r1, 63, r1
	and r0, r1, r2
	# Check it.
	movi 1, r3
	shlli r3, 63, r3
	bne r2, r3, tr0

and5:
	movi 1, r0
	shlli r0, 63, r0
	movi 1, r1
	shlli r1, 63, r1
	ori r1, 1, r1
	and r0, r1, r2
	# Check it.
	movi 1, r3
	shlli r1, 63, r1
	bne r1, r2, tr0

okay:
	pass

wrong:
	fail