summaryrefslogtreecommitdiff
path: root/sim/testsuite/sim/sh64/compact/movl2.cgs
blob: bb550612cce16a99ac17797c8d23196c0cf0f537 (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 mov.l $rm, @-$rn -*- Asm -*-
# mach: all
# as: -isa=shcompact
# ld: -m shelf32

	.include "compact/testutils.inc"

	start

	mov #30, r1
	shll8 r1
	# Save address.
	mov r1, r7

init:
	# Build up a distinctive bit pattern.
	mov #1, r2
	shll8 r2
	add #12, r2
	shll8 r2
	add #85, r2
	shll8 r2
	add #170, r2
	mov.l r2, @-r1

check:
	# Compare the value loaded into another reg.
	mov.l @r1, r3
	cmp/eq r2, r3
	bf wrong
	
dec:
	# Ensure address is decremented.
	mov #4, r6
	sub r6, r7
	cmp/eq r1, r7
	bf wrong

okay:	
	pass

wrong:
	fail