summaryrefslogtreecommitdiff
path: root/sim/testsuite/sim/sh64/compact/not.cgs
blob: 380808ddb573256948d58d4e219b00e4a769e8c2 (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 not $rm64, $rn64 -*- Asm -*-
# mach: all
# as: -isa=shcompact
# ld: -m shelf32

	.include "compact/testutils.inc"

	start

	.global not
not:
	mov #0, r0
	or #192, r0
	not r0, r1

	mov #0, r0
	or #255, r0
	shll8 r0
	or #255, r0
	shll8 r0
	or #255, r0
	shll8 r0
	or #63, r0

	cmp/eq r0, r1
	bf wrong

ones:
	mov #0, r1
	not r1, r2

	mov #0, r0
	or #255, r0
	shll8 r0
	or #255, r0
	shll8 r0
	or #255, r0
	shll8 r0
	or #255, r0
	cmp/eq r0, r2
	bf wrong

okay:
	pass

wrong:
	fail