-
Notifications
You must be signed in to change notification settings - Fork 273
Expand file tree
/
Copy pathgalois_gen_switch_arm64.go
More file actions
285 lines (272 loc) · 7.52 KB
/
Copy pathgalois_gen_switch_arm64.go
File metadata and controls
285 lines (272 loc) · 7.52 KB
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
//go:build !appengine && !noasm && gc && !nogen && !nopshufb
package reedsolomon
import (
"fmt"
)
const (
codeGen = true
codeGenMaxGoroutines = 16
codeGenMaxInputs = 10
codeGenMaxOutputs = 10
minCodeGenSize = 64
// ARM64 asm always reads 10 inputs; pad matrix and in-slice to this minimum.
codeGenPadInputs = codeGenMaxInputs
)
var (
fSve = galMulSlicesSve
fSveXor = galMulSlicesSveXor
fNeon = galMulSlicesNeon
fNeonXor = galMulSlicesNeonXor
)
func (r *reedSolomon) hasCodeGen(byteCount int, inputs, outputs int) (_, _ *func(matrix []byte, in, out [][]byte, start, stop int) int, ok bool) {
if r.o.useSVE {
return &fSve, &fSveXor, codeGen && pshufb &&
byteCount >= codeGenMinSize && inputs+outputs >= codeGenMinShards &&
inputs <= codeGenMaxInputs && outputs <= codeGenMaxOutputs
}
return &fNeon, &fNeonXor, codeGen && pshufb && r.o.useNEON &&
byteCount >= codeGenMinSize && inputs+outputs >= codeGenMinShards &&
inputs <= codeGenMaxInputs && outputs <= codeGenMaxOutputs
}
func (r *reedSolomon) canGFNI(byteCount int, inputs, outputs int) (_, _ *func(matrix []uint64, in, out [][]byte, start, stop int) int, ok bool) {
return nil, nil, false
}
func galMulSlicesSve(matrix []byte, in, out [][]byte, start, stop int) (n int) {
n = stop - start
if raceEnabled {
defer func() {
raceReadSlices(in, start, n)
raceWriteSlices(out, start, n)
}()
}
if len(in) < codeGenMaxInputs {
var padded [codeGenMaxInputs][]byte
copy(padded[:], in)
for i := len(in); i < codeGenMaxInputs; i++ {
padded[i] = in[0]
}
in = padded[:]
}
switch len(out) {
case 1:
mulSve_10x1_64(matrix, in, out, start, n)
return n & (maxInt - 63)
case 2:
mulSve_10x2_64(matrix, in, out, start, n)
return n & (maxInt - 63)
case 3:
mulSve_10x3_64(matrix, in, out, start, n)
return n & (maxInt - 63)
case 4:
mulSve_10x4(matrix, in, out, start, n)
return n & (maxInt - 31)
case 5:
mulSve_10x5(matrix, in, out, start, n)
return n & (maxInt - 31)
case 6:
mulSve_10x6(matrix, in, out, start, n)
return n & (maxInt - 31)
case 7:
mulSve_10x7(matrix, in, out, start, n)
return n & (maxInt - 31)
case 8:
mulSve_10x8(matrix, in, out, start, n)
return n & (maxInt - 31)
case 9:
mulSve_10x9(matrix, in, out, start, n)
return n & (maxInt - 31)
case 10:
mulSve_10x10(matrix, in, out, start, n)
return n & (maxInt - 31)
}
panic(fmt.Sprintf("ARM SVE: unhandled size: %dx%d", len(in), len(out)))
}
func galMulSlicesSveXor(matrix []byte, in, out [][]byte, start, stop int) (n int) {
n = (stop - start)
if raceEnabled {
defer func() {
raceReadSlices(in, start, n)
raceWriteSlices(out, start, n)
}()
}
if len(in) < codeGenMaxInputs {
var padded [codeGenMaxInputs][]byte
copy(padded[:], in)
for i := len(in); i < codeGenMaxInputs; i++ {
padded[i] = in[0]
}
in = padded[:]
}
switch len(out) {
case 1:
mulSve_10x1_64Xor(matrix, in, out, start, n)
return n & (maxInt - 63)
case 2:
mulSve_10x2_64Xor(matrix, in, out, start, n)
return n & (maxInt - 63)
case 3:
mulSve_10x3_64Xor(matrix, in, out, start, n)
return n & (maxInt - 63)
case 4:
mulSve_10x4Xor(matrix, in, out, start, n)
return n & (maxInt - 31)
case 5:
mulSve_10x5Xor(matrix, in, out, start, n)
return n & (maxInt - 31)
case 6:
mulSve_10x6Xor(matrix, in, out, start, n)
return n & (maxInt - 31)
case 7:
mulSve_10x7Xor(matrix, in, out, start, n)
return n & (maxInt - 31)
case 8:
mulSve_10x8Xor(matrix, in, out, start, n)
return n & (maxInt - 31)
case 9:
mulSve_10x9Xor(matrix, in, out, start, n)
return n & (maxInt - 31)
case 10:
mulSve_10x10Xor(matrix, in, out, start, n)
return n & (maxInt - 31)
}
panic(fmt.Sprintf("ARM SVE: unhandled size: %dx%d", len(in), len(out)))
}
// isFirstParityRowAllOne checks if the first parity row (first output) has all
// coefficients equal to 1 in the generator matrix.
//
// In Jerasure matrix, the first parity row is always all-ones, enabling XOR-only
// optimization for the first output. Subsequent parity rows typically have non-unity
// coefficients and require full GF multiplication.
//
// The matrix layout in memory is: (input * outputs + output_index) * 64
// This function checks only output_index=0 (first parity row).
func isFirstParityRowAllOne(matrix []byte, inputs, outputs int) bool {
for i := 0; i < inputs; i++ {
checkIndex := (i*outputs+0)*64 + 1
if checkIndex >= len(matrix) {
return false
}
if matrix[checkIndex] != 0x1 {
return false
}
}
return true
}
func galMulSlicesNeon(matrix []byte, in, out [][]byte, start, stop int) (n int) {
n = stop - start
if raceEnabled {
defer func() {
raceReadSlices(in, start, n)
raceWriteSlices(out, start, n)
}()
}
actualInputs := len(in)
if len(in) < codeGenMaxInputs {
var padded [codeGenMaxInputs][]byte
copy(padded[:], in)
for i := len(in); i < codeGenMaxInputs; i++ {
padded[i] = in[0]
}
in = padded[:]
}
if 0 < len(out) && len(out) <= 4 && isFirstParityRowAllOne(matrix, actualInputs, len(out)) {
eorIn := in[:actualInputs]
switch len(out) {
case 1:
mulNeon_10x1_64eor(matrix, eorIn, out, start, n)
return n & (maxInt - 63)
case 2:
mulNeon_10x2_64eor(matrix, eorIn, out, start, n)
return n & (maxInt - 63)
case 3:
mulNeon_10x3_64eor(matrix, eorIn, out, start, n)
return n & (maxInt - 63)
case 4:
mulNeon_10x4eor(matrix, eorIn, out, start, n)
return n & (maxInt - 31)
}
}
switch len(out) {
case 1:
mulNeon_10x1_64(matrix, in, out, start, n)
return n & (maxInt - 63)
case 2:
mulNeon_10x2_64(matrix, in, out, start, n)
return n & (maxInt - 63)
case 3:
mulNeon_10x3_64(matrix, in, out, start, n)
return n & (maxInt - 63)
case 4:
mulNeon_10x4(matrix, in, out, start, n)
return n & (maxInt - 31)
case 5:
mulNeon_10x5(matrix, in, out, start, n)
return n & (maxInt - 31)
case 6:
mulNeon_10x6(matrix, in, out, start, n)
return n & (maxInt - 31)
case 7:
mulNeon_10x7(matrix, in, out, start, n)
return n & (maxInt - 31)
case 8:
mulNeon_10x8(matrix, in, out, start, n)
return n & (maxInt - 31)
case 9:
mulNeon_10x9(matrix, in, out, start, n)
return n & (maxInt - 31)
case 10:
mulNeon_10x10(matrix, in, out, start, n)
return n & (maxInt - 31)
}
panic(fmt.Sprintf("ARM NEON: unhandled size: %dx%d", len(in), len(out)))
}
func galMulSlicesNeonXor(matrix []byte, in, out [][]byte, start, stop int) (n int) {
n = (stop - start)
if raceEnabled {
defer func() {
raceReadSlices(in, start, n)
raceWriteSlices(out, start, n)
}()
}
if len(in) < codeGenMaxInputs {
var padded [codeGenMaxInputs][]byte
copy(padded[:], in)
for i := len(in); i < codeGenMaxInputs; i++ {
padded[i] = in[0]
}
in = padded[:]
}
switch len(out) {
case 1:
mulNeon_10x1_64Xor(matrix, in, out, start, n)
return n & (maxInt - 63)
case 2:
mulNeon_10x2_64Xor(matrix, in, out, start, n)
return n & (maxInt - 63)
case 3:
mulNeon_10x3_64Xor(matrix, in, out, start, n)
return n & (maxInt - 63)
case 4:
mulNeon_10x4Xor(matrix, in, out, start, n)
return n & (maxInt - 31)
case 5:
mulNeon_10x5Xor(matrix, in, out, start, n)
return n & (maxInt - 31)
case 6:
mulNeon_10x6Xor(matrix, in, out, start, n)
return n & (maxInt - 31)
case 7:
mulNeon_10x7Xor(matrix, in, out, start, n)
return n & (maxInt - 31)
case 8:
mulNeon_10x8Xor(matrix, in, out, start, n)
return n & (maxInt - 31)
case 9:
mulNeon_10x9Xor(matrix, in, out, start, n)
return n & (maxInt - 31)
case 10:
mulNeon_10x10Xor(matrix, in, out, start, n)
return n & (maxInt - 31)
}
panic(fmt.Sprintf("ARM NEON: unhandled size: %dx%d", len(in), len(out)))
}