71cf2e921e6e185e2e294fb9f7d7b2fc22c4f02d
[libreriscv.git] / openpower / sv / bitmanip.mdwn
1 [[!tag standards]]
2
3 # Implementation Log
4
5 * ternlogi <https://bugs.libre-soc.org/show_bug.cgi?id=745>
6 * grev <https://bugs.libre-soc.org/show_bug.cgi?id=755>
7 * remove Rc=1 from ternlog due to conflicts in encoding as well
8 as saving space <https://bugs.libre-soc.org/show_bug.cgi?id=753#c5>
9 * GF2^M <https://bugs.libre-soc.org/show_bug.cgi?id=782>
10
11 # bitmanipulation
12
13 **DRAFT STATUS**
14
15 pseudocode: <https://libre-soc.org/openpower/isa/bitmanip/>
16
17 this extension amalgamates bitmanipulation primitives from many sources, including RISC-V bitmanip, Packed SIMD, AVX-512 and OpenPOWER VSX. Vectorisation and SIMD are removed: these are straight scalar (element) operations making them suitable for embedded applications.
18 Vectorisation Context is provided by [[openpower/sv]].
19
20 When combined with SV, scalar variants of bitmanip operations found in VSX are added so that VSX may be retired as "legacy" in the far future (10 to 20 years). Also, VSX is hundreds of opcodes, requires 128 bit pathways, and is wholly unsuited to low power or embedded scenarios.
21
22 ternlogv is experimental and is the only operation that may be considered a "Packed SIMD". It is added as a variant of the already well-justified ternlog operation (done in AVX512 as an immediate only) "because it looks fun". As it is based on the LUT4 concept it will allow accelerated emulation of FPGAs. Other vendors of ISAs are buying FPGA companies to achieve similar objectives.
23
24 general-purpose Galois Field 2^M operations are added so as to avoid huge custom opcode proliferation across many areas of Computer Science. however for convenience and also to avoid setup costs, some of the more common operations (clmul, crc32) are also added. The expectation is that these operations would all be covered by the same pipeline.
25
26 note that there are brownfield spaces below that could incorporate some of the set-before-first and other scalar operations listed in [[sv/vector_ops]], and
27 the [[sv/av_opcodes]] as well as [[sv/setvl]]
28
29 Useful resource:
30
31 * <https://en.wikiversity.org/wiki/Reed%E2%80%93Solomon_codes_for_coders>
32 * <https://maths-people.anu.edu.au/~brent/pd/rpb232tr.pdf>
33
34 # summary
35
36 two major opcodes are needed
37
38 ternlog has its own major opcode
39
40 | 29.30 |31| name |
41 | ------ |--| --------- |
42 | 00 |Rc| ternlogi |
43 | 01 |sz| ternlogv |
44 | 10 |0 | crternlog |
45
46 2nd major opcode for other bitmanip: minor opcode allocation
47
48 | 28.30 |31| name |
49 | ------ |--| --------- |
50 | -00 |0 | |
51 | -00 |1 | grevlog |
52 | -01 | | grevlogi |
53 | 010 |Rc| bitmask |
54 | 011 | | gf/cl madd* |
55 | 110 |Rc| 1/2-op |
56 | 111 | | bmrevi |
57
58
59 1-op and variants
60
61 | dest | src1 | subop | op |
62 | ---- | ---- | ----- | -------- |
63 | RT | RA | .. | bmatflip |
64
65 2-op and variants
66
67 | dest | src1 | src2 | subop | op |
68 | ---- | ---- | ---- | ----- | -------- |
69 | RT | RA | RB | or | bmatflip |
70 | RT | RA | RB | xor | bmatflip |
71 | RT | RA | RB | | grev |
72 | RT | RA | RB | | clmul* |
73 | RT | RA | RB | | gorc |
74 | RT | RA | RB | shuf | shuffle |
75 | RT | RA | RB | unshuf| shuffle |
76 | RT | RA | RB | width | xperm |
77 | RT | RA | RB | type | minmax |
78 | RT | RA | RB | | av abs avgadd |
79 | RT | RA | RB | type | vmask ops |
80 | RT | RA | RB | | |
81
82 3 ops
83
84 * grevlog
85 * GF mul-add
86 * bitmask-reverse
87
88 TODO: convert all instructions to use RT and not RS
89
90 | 0.5|6.10|11.15|16.20 |21..25 | 26....30 |31| name |
91 | -- | -- | --- | --- | ----- | -------- |--| ------ |
92 | NN | RT | RA |itype/| im0-4 | im5-7 00 |0 | xpermi |
93 | NN | RT | RA | RB | im0-4 | im5-7 00 |1 | grevlog |
94 | NN | RT | RA | s0-4 | im0-4 | im5-7 01 |s5| grevlogi |
95 | NN | RT | RA | RB | RC | mode 010 |Rc| bitmask* |
96 | NN | RS | RA | RB | RC | 00 011 |0 | gfbmadd |
97 | NN | RS | RA | RB | RC | 00 011 |1 | gfbmaddsub |
98 | NN | RS | RA | RB | RC | 01 011 |0 | clmadd |
99 | NN | RS | RA | RB | RC | 01 011 |1 | clmaddsub |
100 | NN | RS | RA | RB | RC | 10 011 |0 | gfpmadd |
101 | NN | RS | RA | RB | RC | 10 011 |1 | gfpmaddsub |
102 | NN | RS | RA | RB | RC | 11 011 | | rsvd |
103 | NN | RT | RA | RB | sh0-4 | sh5 1 111 |Rc| bmrevi |
104
105 ops (note that av avg and abs as well as vec scalar mask
106 are included here)
107
108 TODO: convert from RA, RB, and RC to correct field names of RT, RA, and RB, and
109 double check that instructions didn't need 3 inputs.
110
111 | 0.5|6.10|11.15|16.20| 21 | 22.23 | 24....30 |31| name |
112 | -- | -- | --- | --- | -- | ----- | -------- |--| ---- |
113 | NN | RT | RA | RB | 0 | | 0000 110 |Rc| rsvd |
114 | NN | RT | RA | RB | 1 | itype | 0000 110 |Rc| xperm |
115 | NN | RA | RB | RC | 0 | itype | 0100 110 |Rc| minmax |
116 | NN | RA | RB | RC | 1 | 00 | 0100 110 |Rc| av avgadd |
117 | NN | RA | RB | RC | 1 | 01 | 0100 110 |Rc| av abs |
118 | NN | RA | RB | | 1 | 10 | 0100 110 |Rc| rsvd |
119 | NN | RA | RB | | 1 | 11 | 0100 110 |Rc| rsvd |
120 | NN | RA | RB | sh | SH | itype | 1000 110 |Rc| bmopsi |
121 | NN | RT | RA | RB | | | 1100 110 |Rc| srsvd |
122 | NN | RT | RA | RB | 1 | 00 | 0001 110 |Rc| cldiv |
123 | NN | RT | RA | RB | 1 | 01 | 0001 110 |Rc| clmod |
124 | NN | RT | RA | RB | 1 | 10 | 0001 110 |Rc| |
125 | NN | RT | RB | RB | 1 | 11 | 0001 110 |Rc| clinv |
126 | NN | RA | RB | RC | 0 | 00 | 0001 110 |Rc| vec sbfm |
127 | NN | RA | RB | RC | 0 | 01 | 0001 110 |Rc| vec sofm |
128 | NN | RA | RB | RC | 0 | 10 | 0001 110 |Rc| vec sifm |
129 | NN | RA | RB | RC | 0 | 11 | 0001 110 |Rc| vec cprop |
130 | NN | RA | RB | | 0 | | 0101 110 |Rc| rsvd |
131 | NN | RA | RB | RC | 0 | 00 | 0010 110 |Rc| gorc |
132 | NN | RA | RB | sh | SH | 00 | 1010 110 |Rc| gorci |
133 | NN | RA | RB | RC | 0 | 00 | 0110 110 |Rc| gorcw |
134 | NN | RA | RB | sh | 0 | 00 | 1110 110 |Rc| gorcwi |
135 | NN | RA | RB | RC | 1 | 00 | 1110 110 |Rc| bmator |
136 | NN | RA | RB | RC | 0 | 01 | 0010 110 |Rc| grev |
137 | NN | RA | RB | RC | 1 | 01 | 0010 110 |Rc| clmul |
138 | NN | RA | RB | sh | SH | 01 | 1010 110 |Rc| grevi |
139 | NN | RA | RB | RC | 0 | 01 | 0110 110 |Rc| grevw |
140 | NN | RA | RB | sh | 0 | 01 | 1110 110 |Rc| grevwi |
141 | NN | RA | RB | RC | 1 | 01 | 1110 110 |Rc| bmatxor |
142 | NN | RA | RB | RC | 0 | 10 | 0010 110 |Rc| shfl |
143 | NN | RA | RB | sh | SH | 10 | 1010 110 |Rc| shfli |
144 | NN | RA | RB | RC | 0 | 10 | 0110 110 |Rc| shflw |
145 | NN | RA | RB | RC | | 10 | 1110 110 |Rc| rsvd |
146 | NN | RA | RB | RC | 0 | 11 | 1110 110 |Rc| clmulr |
147 | NN | RA | RB | RC | 1 | 11 | 1110 110 |Rc| clmulh |
148 | NN | | | | | | --11 110 |Rc| setvl |
149
150 # ternlog bitops
151
152 Similar to FPGA LUTs: for every bit perform a lookup into a table using an 8bit immediate, or in another register.
153
154 Like the x86 AVX512F [vpternlogd/vpternlogq](https://www.felixcloutier.com/x86/vpternlogd:vpternlogq) instructions.
155
156 ## ternlogi
157
158
159 | 0.5|6.10|11.15|16.20| 21..28|29.30|31|
160 | -- | -- | --- | --- | ----- | --- |--|
161 | NN | RT | RA | RB | im0-7 | 00 |Rc|
162
163 lut3(imm, a, b, c):
164 idx = c << 2 | b << 1 | a
165 return imm[idx] # idx by LSB0 order
166
167 for i in range(64):
168 RT[i] = lut3(imm, RB[i], RA[i], RT[i])
169
170 ## ternlogv
171
172 also, another possible variant involving swizzle-like selection
173 and masking, this only requires 3 64 bit registers (RA, RS, RB) and
174 only 16 LUT3s.
175
176 Note however that unless XLEN matches sz, this instruction
177 is a Read-Modify-Write: RS must be read as a second operand
178 and all unmodified bits preserved. SVP64 may provide limited
179 alternative destination for RS from RS-as-source, but again
180 all unmodified bits must still be copied.
181
182 | 0.5|6.10|11.15|16.20|21.28 | 29.30 |31|
183 | -- | -- | --- | --- | ---- | ----- |--|
184 | NN | RS | RA | RB |idx0-3| 01 |sz|
185
186 SZ = (1+sz) * 8 # 8 or 16
187 raoff = MIN(XLEN, idx0 * SZ)
188 rboff = MIN(XLEN, idx1 * SZ)
189 rcoff = MIN(XLEN, idx2 * SZ)
190 rsoff = MIN(XLEN, idx3 * SZ)
191 imm = RB[0:8]
192 for i in range(MIN(XLEN, SZ)):
193 ra = RA[raoff:+i]
194 rb = RA[rboff+i]
195 rc = RA[rcoff+i]
196 res = lut3(imm, ra, rb, rc)
197 RS[rsoff+i] = res
198
199 ## ternlogcr
200
201 another mode selection would be CRs not Ints.
202
203 | 0.5|6.8 | 9.11|12.14|15.17|18.20|21.28 | 29.30|31|
204 | -- | -- | --- | --- | --- |-----|----- | -----|--|
205 | NN | BT | BA | BB | BC |m0-3 | imm | 10 |m4|
206
207 mask = m0-3,m4
208 for i in range(4):
209 if not mask[i] continue
210 crregs[BT][i] = lut3(imm,
211 crregs[BA][i],
212 crregs[BB][i],
213 crregs[BC][i])
214
215
216 # int min/max
217
218 signed and unsigned min/max for integer. this is sort-of partly synthesiseable in [[sv/svp64]] with pred-result as long as the dest reg is one of the sources, but not both signed and unsigned. when the dest is also one of the srces and the mv fails due to the CR bittest failing this will only overwrite the dest where the src is greater (or less).
219
220 signed/unsigned min/max gives more flexibility.
221
222 ```
223 uint_xlen_t min(uint_xlen_t rs1, uint_xlen_t rs2)
224 { return (int_xlen_t)rs1 < (int_xlen_t)rs2 ? rs1 : rs2;
225 }
226 uint_xlen_t max(uint_xlen_t rs1, uint_xlen_t rs2)
227 { return (int_xlen_t)rs1 > (int_xlen_t)rs2 ? rs1 : rs2;
228 }
229 uint_xlen_t minu(uint_xlen_t rs1, uint_xlen_t rs2)
230 { return rs1 < rs2 ? rs1 : rs2;
231 }
232 uint_xlen_t maxu(uint_xlen_t rs1, uint_xlen_t rs2)
233 { return rs1 > rs2 ? rs1 : rs2;
234 }
235 ```
236
237
238 ## cmix
239
240 based on RV bitmanip, covered by ternlog bitops
241
242 ```
243 uint_xlen_t cmix(uint_xlen_t RA, uint_xlen_t RB, uint_xlen_t RC) {
244 return (RA & RB) | (RC & ~RB);
245 }
246 ```
247
248
249 # bitmask set
250
251 based on RV bitmanip singlebit set, instruction format similar to shift
252 [[isa/fixedshift]]. bmext is actually covered already (shift-with-mask rldicl but only immediate version).
253 however bitmask-invert is not, and set/clr are not covered, although they can use the same Shift ALU.
254
255 bmext (RB) version is not the same as rldicl because bmext is a right shift by RC, where rldicl is a left rotate. for the immediate version this does not matter, so a bmexti is not required.
256 bmrev however there is no direct equivalent and consequently a bmrevi is required.
257
258 bmset (register for mask amount) is particularly useful for creating
259 predicate masks where the length is a dynamic runtime quantity.
260 bmset(RA=0, RB=0, RC=mask) will produce a run of ones of length "mask" in a single instruction without needing to initialise or depend on any other registers.
261
262 | 0.5|6.10|11.15|16.20|21.25| 26..30 |31| name |
263 | -- | -- | --- | --- | --- | ------- |--| ----- |
264 | NN | RS | RA | RB | RC | mode 010 |Rc| bm* |
265
266 Immediate-variant is an overwrite form:
267
268 | 0.5|6.10|11.15|16.20| 21 | 22.23 | 24....30 |31| name |
269 | -- | -- | --- | --- | -- | ----- | -------- |--| ---- |
270 | NN | RS | RB | sh | SH | itype | 1000 110 |Rc| bm*i |
271
272 ```
273 uint_xlen_t bmset(RS, RB, sh)
274 {
275 int shamt = RB & (XLEN - 1);
276 mask = (2<<sh)-1;
277 return RS | (mask << shamt);
278 }
279
280 uint_xlen_t bmclr(RS, RB, sh)
281 {
282 int shamt = RB & (XLEN - 1);
283 mask = (2<<sh)-1;
284 return RS & ~(mask << shamt);
285 }
286
287 uint_xlen_t bminv(RS, RB, sh)
288 {
289 int shamt = RB & (XLEN - 1);
290 mask = (2<<sh)-1;
291 return RS ^ (mask << shamt);
292 }
293
294 uint_xlen_t bmext(RS, RB, sh)
295 {
296 int shamt = RB & (XLEN - 1);
297 mask = (2<<sh)-1;
298 return mask & (RS >> shamt);
299 }
300 ```
301
302 bitmask extract with reverse. can be done by bitinverting all of RB and getting bits of RB from the opposite end.
303
304 when RA is zero, no shift occurs. this makes bmextrev useful for
305 simply reversing all bits of a register.
306
307 ```
308 msb = ra[5:0];
309 rev[0:msb] = rb[msb:0];
310 rt = ZE(rev[msb:0]);
311
312 uint_xlen_t bmextrev(RA, RB, sh)
313 {
314 int shamt = XLEN-1;
315 if (RA != 0) (GPR(RA) & (XLEN - 1));
316 shamt = (XLEN-1)-shamt; # shift other end
317 bra = bitreverse(RB) # swap LSB-MSB
318 mask = (2<<sh)-1;
319 return mask & (bra >> shamt);
320 }
321 ```
322
323 | 0.5|6.10|11.15|16.20|21.26| 27..30 |31| name |
324 | -- | -- | --- | --- | --- | ------- |--| ------ |
325 | NN | RT | RA | RB | sh | 1 011 |Rc| bmrevi |
326
327
328 # grevlut
329
330 generalised reverse combined with a pair of LUT2s and allowing
331 zero when RA=0 provides a wide range of instructions
332 and a means to set regular 64 bit patterns in one
333 32 bit instruction.
334
335 the two LUT2s are applied left-half (when not swapping)
336 and right-half (when swapping) so as to allow a wider
337 range of options
338
339 grevlut should be arranged so as to produce the constants
340 needed to put into bext (bitextract) so as in turn to
341 be able to emulate x86 pmovmask instructions <https://www.felixcloutier.com/x86/pmovmskb>
342
343 <img src="/openpower/sv/grevlut2x2.jpg" width=700 />
344
345 ```
346 lut2(imm, a, b):
347 idx = b << 1 | a
348 return imm[idx] # idx by LSB0 order
349
350 dorow(imm8, step_i, chunksize):
351 for j in 0 to 63:
352 if (j&chunk_size) == 0
353 imm = imm8[0..3]
354 else
355 imm = imm8[4..7]
356 step_o[j] = lut2(imm, step_i[j], step_i[j ^ chunk_size])
357 return step_o
358
359 uint64_t grevlut64(uint64_t RA, uint64_t RB, uint8 imm)
360 {
361 uint64_t x = RA;
362 int shamt = RB & 63;
363 for i in 0 to 6
364 step = 1<<i
365 if (shamt & step) x = dorow(imm, x, step)
366 return x;
367 }
368
369 ```
370
371 # grev
372
373 based on RV bitmanip, this is also known as a butterfly network. however
374 where a butterfly network allows setting of every crossbar setting in
375 every row and every column, generalised-reverse (grev) only allows
376 a per-row decision: every entry in the same row must either switch or
377 not-switch.
378
379 <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/8/8c/Butterfly_Network.jpg/474px-Butterfly_Network.jpg" />
380
381 ```
382 uint64_t grev64(uint64_t RA, uint64_t RB)
383 {
384 uint64_t x = RA;
385 int shamt = RB & 63;
386 if (shamt & 1) x = ((x & 0x5555555555555555LL) << 1) |
387 ((x & 0xAAAAAAAAAAAAAAAALL) >> 1);
388 if (shamt & 2) x = ((x & 0x3333333333333333LL) << 2) |
389 ((x & 0xCCCCCCCCCCCCCCCCLL) >> 2);
390 if (shamt & 4) x = ((x & 0x0F0F0F0F0F0F0F0FLL) << 4) |
391 ((x & 0xF0F0F0F0F0F0F0F0LL) >> 4);
392 if (shamt & 8) x = ((x & 0x00FF00FF00FF00FFLL) << 8) |
393 ((x & 0xFF00FF00FF00FF00LL) >> 8);
394 if (shamt & 16) x = ((x & 0x0000FFFF0000FFFFLL) << 16) |
395 ((x & 0xFFFF0000FFFF0000LL) >> 16);
396 if (shamt & 32) x = ((x & 0x00000000FFFFFFFFLL) << 32) |
397 ((x & 0xFFFFFFFF00000000LL) >> 32);
398 return x;
399 }
400
401 ```
402
403 # shuffle / unshuffle
404
405 based on RV bitmanip
406
407 ```
408 uint32_t shfl32(uint32_t RA, uint32_t RB)
409 {
410 uint32_t x = RA;
411 int shamt = RB & 15;
412 if (shamt & 8) x = shuffle32_stage(x, 0x00ff0000, 0x0000ff00, 8);
413 if (shamt & 4) x = shuffle32_stage(x, 0x0f000f00, 0x00f000f0, 4);
414 if (shamt & 2) x = shuffle32_stage(x, 0x30303030, 0x0c0c0c0c, 2);
415 if (shamt & 1) x = shuffle32_stage(x, 0x44444444, 0x22222222, 1);
416 return x;
417 }
418 uint32_t unshfl32(uint32_t RA, uint32_t RB)
419 {
420 uint32_t x = RA;
421 int shamt = RB & 15;
422 if (shamt & 1) x = shuffle32_stage(x, 0x44444444, 0x22222222, 1);
423 if (shamt & 2) x = shuffle32_stage(x, 0x30303030, 0x0c0c0c0c, 2);
424 if (shamt & 4) x = shuffle32_stage(x, 0x0f000f00, 0x00f000f0, 4);
425 if (shamt & 8) x = shuffle32_stage(x, 0x00ff0000, 0x0000ff00, 8);
426 return x;
427 }
428
429 uint64_t shuffle64_stage(uint64_t src, uint64_t maskL, uint64_t maskR, int N)
430 {
431 uint64_t x = src & ~(maskL | maskR);
432 x |= ((src << N) & maskL) | ((src >> N) & maskR);
433 return x;
434 }
435 uint64_t shfl64(uint64_t RA, uint64_t RB)
436 {
437 uint64_t x = RA;
438 int shamt = RB & 31;
439 if (shamt & 16) x = shuffle64_stage(x, 0x0000ffff00000000LL,
440 0x00000000ffff0000LL, 16);
441 if (shamt & 8) x = shuffle64_stage(x, 0x00ff000000ff0000LL,
442 0x0000ff000000ff00LL, 8);
443 if (shamt & 4) x = shuffle64_stage(x, 0x0f000f000f000f00LL,
444 0x00f000f000f000f0LL, 4);
445 if (shamt & 2) x = shuffle64_stage(x, 0x3030303030303030LL,
446 0x0c0c0c0c0c0c0c0cLL, 2);
447 if (shamt & 1) x = shuffle64_stage(x, 0x4444444444444444LL,
448 0x2222222222222222LL, 1);
449 return x;
450 }
451 uint64_t unshfl64(uint64_t RA, uint64_t RB)
452 {
453 uint64_t x = RA;
454 int shamt = RB & 31;
455 if (shamt & 1) x = shuffle64_stage(x, 0x4444444444444444LL,
456 0x2222222222222222LL, 1);
457 if (shamt & 2) x = shuffle64_stage(x, 0x3030303030303030LL,
458 0x0c0c0c0c0c0c0c0cLL, 2);
459 if (shamt & 4) x = shuffle64_stage(x, 0x0f000f000f000f00LL,
460 0x00f000f000f000f0LL, 4);
461 if (shamt & 8) x = shuffle64_stage(x, 0x00ff000000ff0000LL,
462 0x0000ff000000ff00LL, 8);
463 if (shamt & 16) x = shuffle64_stage(x, 0x0000ffff00000000LL,
464 0x00000000ffff0000LL, 16);
465 return x;
466 }
467 ```
468
469 # xperm
470
471 based on RV bitmanip.
472
473 RB contains a vector of indices to select parts of RA to be
474 copied to RT.
475
476 ```
477 uint_xlen_t xperm(uint_xlen_t RA, uint_xlen_t RB, int sz_log2)
478 {
479 uint_xlen_t r = 0;
480 uint_xlen_t sz = 1LL << sz_log2;
481 uint_xlen_t mask = (1LL << sz) - 1;
482 for (int i = 0; i < XLEN; i += sz) {
483 uint_xlen_t pos = ((RB >> i) & mask) << sz_log2;
484 if (pos < XLEN)
485 r |= ((RA >> pos) & mask) << i;
486 }
487 return r;
488 }
489 uint_xlen_t xperm_n (uint_xlen_t RA, uint_xlen_t RB)
490 { return xperm(RA, RB, 2); }
491 uint_xlen_t xperm_b (uint_xlen_t RA, uint_xlen_t RB)
492 { return xperm(RA, RB, 3); }
493 uint_xlen_t xperm_h (uint_xlen_t RA, uint_xlen_t RB)
494 { return xperm(RA, RB, 4); }
495 uint_xlen_t xperm_w (uint_xlen_t RA, uint_xlen_t RB)
496 { return xperm(RA, RB, 5); }
497 ```
498
499 # gorc
500
501 based on RV bitmanip
502
503 ```
504 uint32_t gorc32(uint32_t RA, uint32_t RB)
505 {
506 uint32_t x = RA;
507 int shamt = RB & 31;
508 if (shamt & 1) x |= ((x & 0x55555555) << 1) | ((x & 0xAAAAAAAA) >> 1);
509 if (shamt & 2) x |= ((x & 0x33333333) << 2) | ((x & 0xCCCCCCCC) >> 2);
510 if (shamt & 4) x |= ((x & 0x0F0F0F0F) << 4) | ((x & 0xF0F0F0F0) >> 4);
511 if (shamt & 8) x |= ((x & 0x00FF00FF) << 8) | ((x & 0xFF00FF00) >> 8);
512 if (shamt & 16) x |= ((x & 0x0000FFFF) << 16) | ((x & 0xFFFF0000) >> 16);
513 return x;
514 }
515 uint64_t gorc64(uint64_t RA, uint64_t RB)
516 {
517 uint64_t x = RA;
518 int shamt = RB & 63;
519 if (shamt & 1) x |= ((x & 0x5555555555555555LL) << 1) |
520 ((x & 0xAAAAAAAAAAAAAAAALL) >> 1);
521 if (shamt & 2) x |= ((x & 0x3333333333333333LL) << 2) |
522 ((x & 0xCCCCCCCCCCCCCCCCLL) >> 2);
523 if (shamt & 4) x |= ((x & 0x0F0F0F0F0F0F0F0FLL) << 4) |
524 ((x & 0xF0F0F0F0F0F0F0F0LL) >> 4);
525 if (shamt & 8) x |= ((x & 0x00FF00FF00FF00FFLL) << 8) |
526 ((x & 0xFF00FF00FF00FF00LL) >> 8);
527 if (shamt & 16) x |= ((x & 0x0000FFFF0000FFFFLL) << 16) |
528 ((x & 0xFFFF0000FFFF0000LL) >> 16);
529 if (shamt & 32) x |= ((x & 0x00000000FFFFFFFFLL) << 32) |
530 ((x & 0xFFFFFFFF00000000LL) >> 32);
531 return x;
532 }
533
534 ```
535
536 # Instructions for Carry-less Operations aka. Polynomials with coefficients in `GF(2)`
537
538 Carry-less addition/subtraction is simply XOR, so a `cladd`
539 instruction is not provided since the `xor[i]` instruction can be used instead.
540
541 These are operations on polynomials with coefficients in `GF(2)`, with the
542 polynomial's coefficients packed into integers with the following algorithm:
543
544 ```python
545 def pack_poly(poly):
546 """`poly` is a list where `poly[i]` is the coefficient for `x ** i`"""
547 retval = 0
548 for i, v in enumerate(poly):
549 retval |= v << i
550 return retval
551
552 def unpack_poly(v):
553 """returns a list `poly`, where `poly[i]` is the coefficient for `x ** i`.
554 """
555 poly = []
556 while v != 0:
557 poly.append(v & 1)
558 v >>= 1
559 return poly
560 ```
561
562 ## Carry-less Multiply Instructions
563
564 based on RV bitmanip
565 see <https://en.wikipedia.org/wiki/CLMUL_instruction_set> and
566 <https://www.felixcloutier.com/x86/pclmulqdq> and
567 <https://en.m.wikipedia.org/wiki/Carry-less_product>
568
569 They are worth adding as their own non-overwrite operations
570 (in the same pipeline).
571
572 ### `clmul` Carry-less Multiply
573
574 ```c
575 uint_xlen_t clmul(uint_xlen_t RA, uint_xlen_t RB)
576 {
577 uint_xlen_t x = 0;
578 for (int i = 0; i < XLEN; i++)
579 if ((RB >> i) & 1)
580 x ^= RA << i;
581 return x;
582 }
583 ```
584
585 ### `clmulh` Carry-less Multiply High
586
587 ```c
588 uint_xlen_t clmulh(uint_xlen_t RA, uint_xlen_t RB)
589 {
590 uint_xlen_t x = 0;
591 for (int i = 1; i < XLEN; i++)
592 if ((RB >> i) & 1)
593 x ^= RA >> (XLEN-i);
594 return x;
595 }
596 ```
597
598 ### `clmulr` Carry-less Multiply (Reversed)
599
600 Useful for CRCs. Equivalent to bit-reversing the result of `clmul` on
601 bit-reversed inputs.
602
603 ```c
604 uint_xlen_t clmulr(uint_xlen_t RA, uint_xlen_t RB)
605 {
606 uint_xlen_t x = 0;
607 for (int i = 0; i < XLEN; i++)
608 if ((RB >> i) & 1)
609 x ^= RA >> (XLEN-i-1);
610 return x;
611 }
612 ```
613
614 ## `clmadd` Carry-less Multiply-Add
615
616 ```
617 clmadd RT, RA, RB, RC
618 ```
619
620 ```
621 (RT) = clmul((RA), (RB)) ^ (RC)
622 ```
623
624 ## `cltmadd` Twin Carry-less Multiply-Add (for FFTs)
625
626 ```
627 cltmadd RT, RA, RB, RC
628 ```
629
630 TODO: add link to explanation for where `RS` comes from.
631
632 ```
633 temp = clmul((RA), (RB)) ^ (RC)
634 (RT) = temp
635 (RS) = temp
636 ```
637
638 ## `cldiv` Carry-less Division
639
640 ```
641 cldiv RT, RA, RB
642 ```
643
644 TODO: decide what happens on division by zero
645
646 ```
647 (RT) = cldiv((RA), (RB))
648 ```
649
650 ## `clrem` Carry-less Remainder
651
652 ```
653 clrem RT, RA, RB
654 ```
655
656 TODO: decide what happens on division by zero
657
658 ```
659 (RT) = clrem((RA), (RB))
660 ```
661
662 # Instructions for Binary Galois Fields `GF(2^m)`
663
664 see:
665
666 * <https://courses.csail.mit.edu/6.857/2016/files/ffield.py>
667 * <https://engineering.purdue.edu/kak/compsec/NewLectures/Lecture7.pdf>
668 * <https://foss.heptapod.net/math/libgf2/-/blob/branch/default/src/libgf2/gf2.py>
669
670 Binary Galois Field addition/subtraction is simply XOR, so a `gfbadd`
671 instruction is not provided since the `xor[i]` instruction can be used instead.
672
673 ## `GFBREDPOLY` SPR -- Reducing Polynomial
674
675 In order to save registers and to make operations orthogonal with standard
676 arithmetic, the reducing polynomial is stored in a dedicated SPR `GFBREDPOLY`.
677 This also allows hardware to pre-compute useful parameters (such as the
678 degree, or look-up tables) based on the reducing polynomial, and store them
679 alongside the SPR in hidden registers, only recomputing them whenever the SPR
680 is written to, rather than having to recompute those values for every
681 instruction.
682
683 Because Galois Fields require the reducing polynomial to be an irreducible
684 polynomial, that guarantees that any polynomial of `degree > 1` must have
685 the LSB set, since otherwise it would be divisible by the polynomial `x`,
686 making it reducible, making whatever we're working on no longer a Field.
687 Therefore, we can reuse the LSB to indicate `degree == XLEN`.
688
689 ```python
690 def decode_reducing_polynomial(GFBREDPOLY, XLEN):
691 """returns the decoded coefficient list in LSB to MSB order,
692 len(retval) == degree + 1"""
693 v = GFBREDPOLY & ((1 << XLEN) - 1) # mask to XLEN bits
694 if v == 0 or v == 2: # GF(2)
695 return [0, 1] # degree = 1, poly = x
696 if v & 1:
697 degree = floor_log2(v)
698 else:
699 # all reducing polynomials of degree > 1 must have the LSB set,
700 # because they must be irreducible polynomials (meaning they
701 # can't be factored), if the LSB was clear, then they would
702 # have `x` as a factor. Therefore, we can reuse the LSB clear
703 # to instead mean the polynomial has degree XLEN.
704 degree = XLEN
705 v |= 1 << XLEN
706 v |= 1 # LSB must be set
707 return [(v >> i) & 1 for i in range(1 + degree)]
708 ```
709
710 ## `gfbredpoly` -- Set the Reducing Polynomial SPR `GFBREDPOLY`
711
712 unless this is an immediate op, `mtspr` is completely sufficient.
713
714 ## `gfbmul` -- Binary Galois Field `GF(2^m)` Multiplication
715
716 ```
717 gfbmul RT, RA, RB
718 ```
719
720 ```
721 (RT) = gfbmul((RA), (RB))
722 ```
723
724 ## `gfbmadd` -- Binary Galois Field `GF(2^m)` Multiply-Add
725
726 ```
727 gfbmadd RT, RA, RB, RC
728 ```
729
730 ```
731 (RT) = gfbadd(gfbmul((RA), (RB)), (RC))
732 ```
733
734 ## `gfbtmadd` -- Binary Galois Field `GF(2^m)` Twin Multiply-Add (for FFT)
735
736 ```
737 gfbtmadd RT, RA, RB, RC
738 ```
739
740 TODO: add link to explanation for where `RS` comes from.
741
742 ```
743 temp = gfbadd(gfbmul((RA), (RB)), (RC))
744 (RT) = temp
745 (RS) = temp
746 ```
747
748 ## `gfbinv` -- Binary Galois Field `GF(2^m)` Inverse
749
750 ```
751 gfbinv RT, RA
752 ```
753
754 ```
755 (RT) = gfbinv((RA))
756 ```
757
758 # Instructions for Prime Galois Fields `GF(p)`
759
760 ## Helper algorithms
761
762 ```python
763 def int_to_gfp(int_value, prime):
764 return int_value % prime # follows Python remainder semantics
765 ```
766
767 ## `GFPRIME` SPR -- Prime Modulus For `gfp*` Instructions
768
769 ## `gfpadd` Prime Galois Field `GF(p)` Addition
770
771 ```
772 gfpadd RT, RA, RB
773 ```
774
775 ```
776 (RT) = int_to_gfp((RA) + (RB), GFPRIME)
777 ```
778
779 the addition happens on infinite-precision integers
780
781 ## `gfpsub` Prime Galois Field `GF(p)` Subtraction
782
783 ```
784 gfpsub RT, RA, RB
785 ```
786
787 ```
788 (RT) = int_to_gfp((RA) - (RB), GFPRIME)
789 ```
790
791 the subtraction happens on infinite-precision integers
792
793 ## `gfpmul` Prime Galois Field `GF(p)` Multiplication
794
795 ```
796 gfpmul RT, RA, RB
797 ```
798
799 ```
800 (RT) = int_to_gfp((RA) * (RB), GFPRIME)
801 ```
802
803 the multiplication happens on infinite-precision integers
804
805 ## `gfpinv` Prime Galois Field `GF(p)` Invert
806
807 ```
808 gfpinv RT, RA
809 ```
810
811 Some potential hardware implementations are found in:
812 <https://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.90.5233&rep=rep1&type=pdf>
813
814 ```
815 (RT) = gfpinv((RA), GFPRIME)
816 ```
817
818 the multiplication happens on infinite-precision integers
819
820 ## `gfpmadd` Prime Galois Field `GF(p)` Multiply-Add
821
822 ```
823 gfpmadd RT, RA, RB, RC
824 ```
825
826 ```
827 (RT) = int_to_gfp((RA) * (RB) + (RC), GFPRIME)
828 ```
829
830 the multiplication and addition happens on infinite-precision integers
831
832 ## `gfpmsub` Prime Galois Field `GF(p)` Multiply-Subtract
833
834 ```
835 gfpmsub RT, RA, RB, RC
836 ```
837
838 ```
839 (RT) = int_to_gfp((RA) * (RB) - (RC), GFPRIME)
840 ```
841
842 the multiplication and subtraction happens on infinite-precision integers
843
844 ## `gfpmsubr` Prime Galois Field `GF(p)` Multiply-Subtract-Reversed
845
846 ```
847 gfpmsubr RT, RA, RB, RC
848 ```
849
850 ```
851 (RT) = int_to_gfp((RC) - (RA) * (RB), GFPRIME)
852 ```
853
854 the multiplication and subtraction happens on infinite-precision integers
855
856 ## `gfpmaddsubr` Prime Galois Field `GF(p)` Multiply-Add and Multiply-Sub-Reversed (for FFT)
857
858 ```
859 gfpmaddsubr RT, RA, RB, RC
860 ```
861
862 TODO: add link to explanation for where `RS` comes from.
863
864 ```
865 product = (RA) * (RB)
866 term = (RC)
867 (RT) = int_to_gfp(product + term, GFPRIME)
868 (RS) = int_to_gfp(term - product, GFPRIME)
869 ```
870
871 the multiplication, addition, and subtraction happens on infinite-precision integers
872
873 ## Twin Butterfly (Tukey-Cooley) Mul-add-sub
874
875 used in combination with SV FFT REMAP to perform
876 a full NTT in-place. possible by having 3-in 2-out,
877 to avoid the need for a temp register. RS is written
878 to as well as RT.
879
880 gffmadd RT,RA,RC,RB (Rc=0)
881 gffmadd. RT,RA,RC,RB (Rc=1)
882
883 Pseudo-code:
884
885 RT <- GFADD(GFMUL(RA, RC), RB))
886 RS <- GFADD(GFMUL(RA, RC), RB))
887
888
889 ## Multiply
890
891 with the modulo and degree being in an SPR, multiply can be identical
892 equivalent to standard integer add
893
894 RS = GFMUL(RA, RB)
895
896 | 0.5|6.10|11.15|16.20|21.25| 26..30 |31|
897 | -- | -- | --- | --- | --- | ------ |--|
898 | NN | RT | RA | RB |11000| 01110 |Rc|
899
900
901
902 ```
903 from functools import reduce
904
905 def gf_degree(a) :
906 res = 0
907 a >>= 1
908 while (a != 0) :
909 a >>= 1;
910 res += 1;
911 return res
912
913 # constants used in the multGF2 function
914 mask1 = mask2 = polyred = None
915
916 def setGF2(irPoly):
917 """Define parameters of binary finite field GF(2^m)/g(x)
918 - irPoly: coefficients of irreducible polynomial g(x)
919 """
920 # degree: extension degree of binary field
921 degree = gf_degree(irPoly)
922
923 def i2P(sInt):
924 """Convert an integer into a polynomial"""
925 return [(sInt >> i) & 1
926 for i in reversed(range(sInt.bit_length()))]
927
928 global mask1, mask2, polyred
929 mask1 = mask2 = 1 << degree
930 mask2 -= 1
931 polyred = reduce(lambda x, y: (x << 1) + y, i2P(irPoly)[1:])
932
933 def multGF2(p1, p2):
934 """Multiply two polynomials in GF(2^m)/g(x)"""
935 p = 0
936 while p2:
937 # standard long-multiplication: check LSB and add
938 if p2 & 1:
939 p ^= p1
940 p1 <<= 1
941 # standard modulo: check MSB and add polynomial
942 if p1 & mask1:
943 p1 ^= polyred
944 p2 >>= 1
945 return p & mask2
946
947 if __name__ == "__main__":
948
949 # Define binary field GF(2^3)/x^3 + x + 1
950 setGF2(0b1011) # degree 3
951
952 # Evaluate the product (x^2 + x + 1)(x^2 + 1)
953 print("{:02x}".format(multGF2(0b111, 0b101)))
954
955 # Define binary field GF(2^8)/x^8 + x^4 + x^3 + x + 1
956 # (used in the Advanced Encryption Standard-AES)
957 setGF2(0b100011011) # degree 8
958
959 # Evaluate the product (x^7)(x^7 + x + 1)
960 print("{:02x}".format(multGF2(0b10000000, 0b10000011)))
961 ```
962
963 ## GF(2^M) Inverse
964
965 ```
966 # https://bugs.libre-soc.org/show_bug.cgi?id=782#c33
967 # https://ftp.libre-soc.org/ARITH18_Kobayashi.pdf
968 def gf_invert(a) :
969
970 s = getGF2() # get the full polynomial (including the MSB)
971 r = a
972 v = 0
973 u = 1
974 j = 0
975
976 for i in range(1, 2*degree+1):
977 # could use count-trailing-1s here to skip ahead
978 if r & mask1: # test MSB of r
979 if s & mask1: # test MSB of s
980 s ^= r
981 v ^= u
982 s <<= 1 # shift left 1
983 if j == 0:
984 r, s = s, r # swap r,s
985 u, v = v<<1, u # shift v and swap
986 j = 1
987 else:
988 u >>= 1 # right shift left
989 j -= 1
990 else:
991 r <<= 1 # shift left 1
992 u <<= 1 # shift left 1
993 j += 1
994
995 return u
996 ```
997
998 # GF2 (Carryless)
999
1000 ## GF2 (carryless) div and mod
1001
1002 ```
1003 def gf_degree(a) :
1004 res = 0
1005 a >>= 1
1006 while (a != 0) :
1007 a >>= 1;
1008 res += 1;
1009 return res
1010
1011 def FullDivision(self, f, v):
1012 """
1013 Takes two arguments, f, v
1014 fDegree and vDegree are the degrees of the field elements
1015 f and v represented as a polynomials.
1016 This method returns the field elements a and b such that
1017
1018 f(x) = a(x) * v(x) + b(x).
1019
1020 That is, a is the divisor and b is the remainder, or in
1021 other words a is like floor(f/v) and b is like f modulo v.
1022 """
1023
1024 fDegree, vDegree = gf_degree(f), gf_degree(v)
1025 res, rem = 0, f
1026 for i in reversed(range(vDegree, fDegree+1):
1027 if ((rem >> i) & 1): # check bit
1028 res ^= (1 << (i - vDegree))
1029 rem ^= ( v << (i - vDegree)))
1030 return (res, rem)
1031 ```
1032
1033 | 0.5|6.10|11.15|16.20| 21 | 22.23 | 24....30 |31| name |
1034 | -- | -- | --- | --- | -- | ----- | -------- |--| ---- |
1035 | NN | RT | RA | RB | 1 | 00 | 0001 110 |Rc| cldiv |
1036 | NN | RT | RA | RB | 1 | 01 | 0001 110 |Rc| clmod |
1037
1038 ## GF2 carryless mul
1039
1040 based on RV bitmanip
1041 see <https://en.wikipedia.org/wiki/CLMUL_instruction_set> and
1042 <https://www.felixcloutier.com/x86/pclmulqdq> and
1043 <https://en.m.wikipedia.org/wiki/Carry-less_product>
1044
1045 these are GF2 operations with the modulo set to 2^degree.
1046 they are worth adding as their own non-overwrite operations
1047 (in the same pipeline).
1048
1049 ```
1050 uint_xlen_t clmul(uint_xlen_t RA, uint_xlen_t RB)
1051 {
1052 uint_xlen_t x = 0;
1053 for (int i = 0; i < XLEN; i++)
1054 if ((RB >> i) & 1)
1055 x ^= RA << i;
1056 return x;
1057 }
1058 uint_xlen_t clmulh(uint_xlen_t RA, uint_xlen_t RB)
1059 {
1060 uint_xlen_t x = 0;
1061 for (int i = 1; i < XLEN; i++)
1062 if ((RB >> i) & 1)
1063 x ^= RA >> (XLEN-i);
1064 return x;
1065 }
1066 uint_xlen_t clmulr(uint_xlen_t RA, uint_xlen_t RB)
1067 {
1068 uint_xlen_t x = 0;
1069 for (int i = 0; i < XLEN; i++)
1070 if ((RB >> i) & 1)
1071 x ^= RA >> (XLEN-i-1);
1072 return x;
1073 }
1074 ```
1075 ## carryless Twin Butterfly (Tukey-Cooley) Mul-add-sub
1076
1077 used in combination with SV FFT REMAP to perform
1078 a full NTT in-place. possible by having 3-in 2-out,
1079 to avoid the need for a temp register. RS is written
1080 to as well as RT.
1081
1082 clfmadd RT,RA,RC,RB (Rc=0)
1083 clfmadd. RT,RA,RC,RB (Rc=1)
1084
1085 Pseudo-code:
1086
1087 RT <- CLMUL(RA, RC) ^ RB
1088 RS <- CLMUL(RA, RC) ^ RB
1089
1090
1091 # bitmatrix
1092
1093 ```
1094 uint64_t bmatflip(uint64_t RA)
1095 {
1096 uint64_t x = RA;
1097 x = shfl64(x, 31);
1098 x = shfl64(x, 31);
1099 x = shfl64(x, 31);
1100 return x;
1101 }
1102 uint64_t bmatxor(uint64_t RA, uint64_t RB)
1103 {
1104 // transpose of RB
1105 uint64_t RBt = bmatflip(RB);
1106 uint8_t u[8]; // rows of RA
1107 uint8_t v[8]; // cols of RB
1108 for (int i = 0; i < 8; i++) {
1109 u[i] = RA >> (i*8);
1110 v[i] = RBt >> (i*8);
1111 }
1112 uint64_t x = 0;
1113 for (int i = 0; i < 64; i++) {
1114 if (pcnt(u[i / 8] & v[i % 8]) & 1)
1115 x |= 1LL << i;
1116 }
1117 return x;
1118 }
1119 uint64_t bmator(uint64_t RA, uint64_t RB)
1120 {
1121 // transpose of RB
1122 uint64_t RBt = bmatflip(RB);
1123 uint8_t u[8]; // rows of RA
1124 uint8_t v[8]; // cols of RB
1125 for (int i = 0; i < 8; i++) {
1126 u[i] = RA >> (i*8);
1127 v[i] = RBt >> (i*8);
1128 }
1129 uint64_t x = 0;
1130 for (int i = 0; i < 64; i++) {
1131 if ((u[i / 8] & v[i % 8]) != 0)
1132 x |= 1LL << i;
1133 }
1134 return x;
1135 }
1136
1137 ```
1138
1139 # Already in POWER ISA
1140
1141 ## count leading/trailing zeros with mask
1142
1143 in v3.1 p105
1144
1145 ```
1146 count = 0
1147 do i = 0 to 63 if((RB)i=1) then do
1148 if((RS)i=1) then break end end count ← count + 1
1149 RA ← EXTZ64(count)
1150 ```
1151
1152 ## bit deposit
1153
1154 vpdepd VRT,VRA,VRB, identical to RV bitmamip bdep, found already in v3.1 p106
1155
1156 do while(m < 64)
1157 if VSR[VRB+32].dword[i].bit[63-m]=1 then do
1158 result = VSR[VRA+32].dword[i].bit[63-k]
1159 VSR[VRT+32].dword[i].bit[63-m] = result
1160 k = k + 1
1161 m = m + 1
1162
1163 ```
1164
1165 uint_xlen_t bdep(uint_xlen_t RA, uint_xlen_t RB)
1166 {
1167 uint_xlen_t r = 0;
1168 for (int i = 0, j = 0; i < XLEN; i++)
1169 if ((RB >> i) & 1) {
1170 if ((RA >> j) & 1)
1171 r |= uint_xlen_t(1) << i;
1172 j++;
1173 }
1174 return r;
1175 }
1176
1177 ```
1178
1179 # bit extract
1180
1181 other way round: identical to RV bext, found in v3.1 p196
1182
1183 ```
1184 uint_xlen_t bext(uint_xlen_t RA, uint_xlen_t RB)
1185 {
1186 uint_xlen_t r = 0;
1187 for (int i = 0, j = 0; i < XLEN; i++)
1188 if ((RB >> i) & 1) {
1189 if ((RA >> i) & 1)
1190 r |= uint_xlen_t(1) << j;
1191 j++;
1192 }
1193 return r;
1194 }
1195 ```
1196
1197 # centrifuge
1198
1199 found in v3.1 p106 so not to be added here
1200
1201 ```
1202 ptr0 = 0
1203 ptr1 = 0
1204 do i = 0 to 63
1205 if((RB)i=0) then do
1206 resultptr0 = (RS)i
1207 end
1208 ptr0 = ptr0 + 1
1209 if((RB)63-i==1) then do
1210 result63-ptr1 = (RS)63-i
1211 end
1212 ptr1 = ptr1 + 1
1213 RA = result
1214 ```
1215
1216 # bit to byte permute
1217
1218 similar to matrix permute in RV bitmanip, which has XOR and OR variants,
1219 these perform a transpose.
1220
1221 do j = 0 to 7
1222 do k = 0 to 7
1223 b = VSR[VRB+32].dword[i].byte[k].bit[j]
1224 VSR[VRT+32].dword[i].byte[j].bit[k] = b
1225