aboutsummaryrefslogtreecommitdiff
path: root/deps/lightning/check/ldstxi-c.tst
blob: 1ad0168952e1a9bc2ce9730cc3036c5583b22fe5 (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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
#include "ldst.inc"

#if __WORDSIZE == 64
#  define LDSTL(N, R0, R1)					\
	stxi_i $offui %R0 %R1					\
	movi %R1 L##N						\
	stxi_l $offl %R0 %R1

#  define SI(C, N, x, X, R0)					\
	ldxi_##x %R0 %R0 $off##x				\
	beqi L##x##C %R0 L##X##N				\
	calli @abort						\
L##x##C:

#  define LDRL(C, N, R0, R1)					\
	UI(C, N, i, I, R0)					\
	movi %R0 t0						\
	SI(C, N, l, L, R0)
#else
#  define LDSTL(C, R0, R1)
#  define SI(C, N, x, X, R0)					\
	ldxi_##x %R0 %R0 $off##x				\
	beqi L##x##C %R0 I##X##N				\
	calli @abort						\
L##x##C:

#  define LDRL(C, N, R0, R1)

#endif

#define UI(C, N, x, X, R0)					\
	ldxi_u##x %R0 %R0 $offu##x				\
	beqi Lu##x##C %R0 X##N					\
	calli @abort						\
Lu##x##C:

#define LDST1(X, N, R0, R1)					\
	movi %R0 t0						\
	movi %R1 C##N						\
	stxi_c $offc %R0 %R1					\
	stxi_c $offuc %R0 %R1					\
	movi %R1 S##N						\
	stxi_s $offs %R0 %R1					\
	stxi_s $offus %R0 %R1					\
	movi %R1 I##N						\
	stxi_i $offi %R0 %R1					\
	LDSTL(N, R0, R1)					\
	SI(X, N, c, C, R0)					\
	movi %R0 t0						\
	UI(X, N, c, C, R0)					\
	movi %R0 t0						\
	SI(X, N, s, S, R0)					\
	movi %R0 t0						\
	UI(X, N, s, S, R0)					\
	movi %R0 t0						\
	SI(X, N, i, I, R0)					\
	movi %R0 t0						\
	LDRL(X, N, R0, R1)					\

#define LDST0(R0, R1)						\
	LDST1(0_##R0##_##R1, 0, R0, R1)				\
	LDST1(1_##R0##_##R1, 1, R0, R1)				\
	LDST1(2_##R0##_##R1, 2, R0, R1)				\
	LDST1(3_##R0##_##R1, 3, R0, R1)

#define LDST(V0, V1, V2, R0, R1, R2)				\
	LDST0(V0, V1)						\
	LDST0(V0, V2)						\
	LDST0(V0, R0)						\
	LDST0(V0, R1)						\
	LDST0(V0, R2)						\
	LDST0(V1, V2)						\
	LDST0(V1, R0)						\
	LDST0(V1, R1)						\
	LDST0(V1, R2)						\
	LDST0(V2, R0)						\
	LDST0(V2, R1)						\
	LDST0(V2, R2)						\
	LDST0(R0, V0)						\
	LDST0(R0, V1)						\
	LDST0(R0, V2)						\
	LDST0(R0, R1)						\
	LDST0(R0, R2)						\
	LDST0(R1, V0)						\
	LDST0(R1, V1)						\
	LDST0(R1, V2)						\
	LDST0(R1, R0)						\
	LDST0(R1, R2)						\
	LDST0(R2, V0)						\
	LDST0(R2, V1)						\
	LDST0(R2, V2)						\
	LDST0(R2, R0)						\
	LDST0(R2, R1)

.code
	prolog

	/* Simple test to simplify validating encodings before
	 * brute force tests */
	movi %r0 t0
	movi %r1 0x81
	stxi_c $offc %r0 %r1
	stxi_c $offuc %r0 %r1
	movi %r1 0x8001
	stxi_s $offs %r0 %r1
	stxi_s $offus %r0 %r1
	movi %r1 0x80000001
	stxi_i $offi %r0 %r1
#if __WORDSIZE == 64
	stxi_i $offui %r0 %r1
	movi %r1 0x8000000000000001
	stxi_l $offl %r0 %r1
#endif
	ldxi_c %r0 %r0 $offc
	beqi Lc %r0 XC
	calli @abort
Lc:
	movi %r0 t0
	ldxi_uc %r0 %r0 $offuc
	beqi Luc %r0 0x81
	calli @abort
Luc:
	movi %r0 t0
	ldxi_s %r0 %r0 $offs
	beqi Ls %r0 XS
	calli @abort
Ls:
	movi %r0 t0
	ldxi_us %r0 %r0 $offus
	beqi Lus %r0 0x8001
	calli @abort
Lus:
	movi %r0 t0
	ldxi_i %r0 %r0 $offi
	beqi Li %r0 XI
	calli @abort
Li:
#if __WORDSIZE == 64
	movi %r0 t0
	ldxi_ui %r0 %r0 $offui
	beqi Lui %r0 0x80000001
	calli @abort
Lui:
	movi %r0 t0
	ldxi_l %r0 %r0 $offl
	beqi Ll %r0 0x8000000000000001
	calli @abort
Ll:
#endif

	LDST(v0, v1, v2, r0, r1, r2)
	// just to know did not abort
	prepare
		pushargi ok
		ellipsis
	finishi @printf
	ret
	epilog