summaryrefslogtreecommitdiff
path: root/sim/testsuite/sim/sh64/compact/andi.cgs
blob: 32d71c5b477edb043cfb6e3aeddabd45eddc58ac (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
# sh testcase for and #$imm8, r0 -*- Asm -*-
# mach: all
# as: -isa=shcompact
# ld: -m shelf32

	.include "compact/testutils.inc"

	start

	.global andi
andi:
	mov #0, r0
	or #255, r0
	and #0, r0
	assert r0, #0

large:
	mov #0, r0
	or #255, r0
	shll8 r0
	or #255, r0
	shll8 r0
	or #255, r0
	shll8 r0
	or #255, r0

mask:
	and #255, r0
	mov r0, r1
	mov #0, r0
	or #255, r0
	cmp/eq r0, r1
	bf wrong

mask0:
	and #0, r0
	assert r0, #0

okay:
	pass

wrong:
	fail