summaryrefslogtreecommitdiff
path: root/sim/testsuite/sim/aarch64/ldn_single.s
blob: 9681520550cae510696ee71514fb2fe103843037 (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# mach: aarch64

# Check the load single 1-element structure to one lane instructions:
# ld1, ld2, ld3, ld4.
# Check the addressing modes: no offset, post-index immediate offset,
# post-index register offset.

.include "testutils.inc"

	.data
	.align 4
input:
	.word 0x04030201
	.word 0x08070605
	.word 0x0c0b0a09
	.word 0x100f0e0d
	.word 0x14131211
	.word 0x18171615
	.word 0x1c1b1a19
	.word 0x201f1e1d

	start
	adrp x0, input
	add x0, x0, :lo12:input

	mov x2, x0
	mov x3, #1
	mov x4, #4
	ld1 {v0.b}[0], [x2], 1
	ld1 {v0.b}[1], [x2], x3
	ld1 {v0.h}[1], [x2], 2
	ld1 {v0.s}[1], [x2], x4
	ld1 {v0.d}[1], [x2]
	addv b1, v0.16b
	mov x5, v1.d[0]
	cmp x5, #136
	bne .Lfailure

	mov x2, x0
	mov x3, #16
	mov x4, #4
	ld2 {v0.d, v1.d}[0], [x2], x3
	ld2 {v0.s, v1.s}[2], [x2], 8
	ld2 {v0.h, v1.h}[6], [x2], x4
	ld2 {v0.b, v1.b}[14], [x2], 2
	ld2 {v0.b, v1.b}[15], [x2]
	addv b2, v0.16b
	addv b3, v1.16b
	mov x5, v2.d[0]
	mov x6, v3.d[0]
	cmp x5, #221
	bne .Lfailure
	cmp x6, #51
	bne .Lfailure

	mov x2, x0
	ld3 {v0.s, v1.s, v2.s}[0], [x2], 12
	ld3 {v0.s, v1.s, v2.s}[1], [x2]
	mov x2, x0
	mov x3, #12
	ld3 {v0.s, v1.s, v2.s}[2], [x2], x3
	ld3 {v0.s, v1.s, v2.s}[3], [x2]
	addv b3, v0.16b
	addv b4, v1.16b
	addv b5, v2.16b
	mov x4, v3.d[0]
	mov x5, v4.d[0]
	mov x6, v5.d[0]
	cmp x4, #136
	bne .Lfailure
	cmp x5, #200
	bne .Lfailure
	cmp x6, #8
	bne .Lfailure

	mov x2, x0
	ld4 {v0.s, v1.s, v2.s, v3.s}[0], [x2], 16
	ld4 {v0.s, v1.s, v2.s, v3.s}[1], [x2]
	mov x2, x0
	mov x3, #16
	ld4 {v0.s, v1.s, v2.s, v3.s}[2], [x2], x3
	ld4 {v0.s, v1.s, v2.s, v3.s}[3], [x2]
	addv b4, v0.16b
	addv b5, v1.16b
	addv b6, v2.16b
	addv b7, v3.16b
	mov x4, v4.d[0]
	mov x5, v5.d[0]
	mov x6, v6.d[0]
	mov x7, v7.d[0]
	cmp x4, #168
	bne .Lfailure
	cmp x5, #232
	bne .Lfailure
	cmp x6, #40
	bne .Lfailure
	cmp x7, #104
	bne .Lfailure

	pass
.Lfailure:
	fail