(no commit message)
[libreriscv.git] / openpower / sv / bitmanip.mdwn
1 [[!tag standards]]
2
3 [[!toc levels=1]]
4
5 # Implementation Log
6
7 * ternlogi <https://bugs.libre-soc.org/show_bug.cgi?id=745>
8 * grev <https://bugs.libre-soc.org/show_bug.cgi?id=755>
9 * GF2^M <https://bugs.libre-soc.org/show_bug.cgi?id=782>
10
11
12 # bitmanipulation
13
14 **DRAFT STATUS**
15
16 pseudocode: [[openpower/isa/bitmanip]]
17
18 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.
19 Vectorisation Context is provided by [[openpower/sv]].
20
21 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.
22
23 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.
24
25 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.
26
27 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
28 the [[sv/av_opcodes]] as well as [[sv/setvl]]
29
30 Useful resource:
31
32 * <https://en.wikiversity.org/wiki/Reed%E2%80%93Solomon_codes_for_coders>
33 * <https://maths-people.anu.edu.au/~brent/pd/rpb232tr.pdf>
34
35 # summary
36
37 two major opcodes are needed
38
39 ternlog has its own major opcode
40
41 | 29.30 |31| name |
42 | ------ |--| --------- |
43 | 0 0 |Rc| ternlogi |
44 | 0 1 |sz| ternlogv |
45 | 1 iv | | grevlogi |
46
47 2nd major opcode for other bitmanip: minor opcode allocation
48
49 | 28.30 |31| name |
50 | ------ |--| --------- |
51 | -00 |0 | xpermi |
52 | -00 |1 | grevlog |
53 | -01 | | crternlog |
54 | 010 |Rc| bitmask |
55 | 011 | | gf/cl madd* |
56 | 110 |Rc| 1/2-op |
57 | 111 | | bmrevi |
58
59
60 1-op and variants
61
62 | dest | src1 | subop | op |
63 | ---- | ---- | ----- | -------- |
64 | RT | RA | .. | bmatflip |
65
66 2-op and variants
67
68 | dest | src1 | src2 | subop | op |
69 | ---- | ---- | ---- | ----- | -------- |
70 | RT | RA | RB | or | bmatflip |
71 | RT | RA | RB | xor | bmatflip |
72 | RT | RA | RB | | grev |
73 | RT | RA | RB | | clmul* |
74 | RT | RA | RB | | gorc |
75 | RT | RA | RB | shuf | shuffle |
76 | RT | RA | RB | unshuf| shuffle |
77 | RT | RA | RB | width | xperm |
78 | RT | RA | RB | type | av minmax |
79 | RT | RA | RB | | av abs avgadd |
80 | RT | RA | RB | type | vmask ops |
81 | RT | RA | RB | | |
82
83 3 ops
84
85 * grevlog
86 * GF mul-add
87 * bitmask-reverse
88
89 TODO: convert all instructions to use RT and not RS
90
91 | 0.5|6.8 | 9.11|12.14|15.17|18.20|21.28 | 29.30|31|name|
92 | -- | -- | --- | --- | --- |-----|----- | -----|--|----|
93 | NN | BT | BA | BB | BC |m0-2 | imm | 10 |m3|crternlog|
94
95 | 0.5|6.10|11.15|16.20 |21..25 | 26....30 |31| name |
96 | -- | -- | --- | --- | ----- | -------- |--| ------ |
97 | NN | RT | RA |itype/| im0-4 | im5-7 00 |0 | xpermi |
98 | NN | RT | RA | RB | im0-4 | im5-7 00 |1 | grevlog |
99 | NN | | | | | ..... 01 |0 | crternlog |
100 | NN | RT | RA | RB | RC | mode 010 |Rc| bitmask* |
101 | NN | | | | | 00 011 | | rsvd |
102 | NN | | | | | 01 011 |0 | svshape |
103 | NN | | | | | 01 011 |1 | rsvd |
104 | NN | | | | | 10 011 |Rc| svstep |
105 | NN | | | | | 11 011 |Rc| setvl |
106 | NN | RT | RA | RB | sh0-4 | sh5 1 111 |Rc| bmrevi |
107
108 ops (note that av avg and abs as well as vec scalar mask
109 are included here [[sv/vector_ops]], and
110 the [[sv/av_opcodes]])
111
112 TODO: convert from RA, RB, and RC to correct field names of RT, RA, and RB, and
113 double check that instructions didn't need 3 inputs.
114
115 | 0.5|6.10|11.15|16.20| 21 | 22.23 | 24....30 |31| name |
116 | -- | -- | --- | --- | -- | ----- | -------- |--| ---- |
117 | NN | RS | me | sh | SH | ME 0 | nn00 110 |Rc| bmopsi |
118 | NN | RS | RB | sh | SH | 0 1 | nn00 110 |Rc| bmopsi |
119 | NN | RT | RA | RB | 1 | 00 | 0001 110 |Rc| cldiv |
120 | NN | RT | RA | RB | 1 | 01 | 0001 110 |Rc| clmod |
121 | NN | RT | RA | RB | 1 | 10 | 0001 110 |Rc| |
122 | NN | RT | RB | RB | 1 | 11 | 0001 110 |Rc| clinv |
123 | NN | RA | RB | RC | 0 | 00 | 0001 110 |Rc| vec sbfm |
124 | NN | RA | RB | RC | 0 | 01 | 0001 110 |Rc| vec sofm |
125 | NN | RA | RB | RC | 0 | 10 | 0001 110 |Rc| vec sifm |
126 | NN | RA | RB | RC | 0 | 11 | 0001 110 |Rc| vec cprop |
127 | NN | RT | RA | RB | 0 | | 0101 110 |Rc| rsvd |
128 | NN | RT | RA | RB | 1 | itype | 0101 110 |Rc| xperm |
129 | NN | RA | RB | RC | 0 | itype | 1001 110 |Rc| av minmax |
130 | NN | RA | RB | RC | 1 | 00 | 1001 110 |Rc| av abss |
131 | NN | RA | RB | RC | 1 | 01 | 1001 110 |Rc| av absu|
132 | NN | RA | RB | | 1 | 10 | 1001 110 |Rc| av avgadd |
133 | NN | RA | RB | | 1 | 11 | 1001 110 |Rc| rsvd |
134 | NN | RT | | | | | 1101 110 |Rc| svremap |
135 | NN | RA | RB | RC | 0 | 00 | 0010 110 |Rc| gorc |
136 | NN | RA | RB | sh | SH | 00 | 1010 110 |Rc| gorci |
137 | NN | RA | RB | RC | 0 | 00 | 0110 110 |Rc| gorcw |
138 | NN | RA | RB | sh | 0 | 00 | 1110 110 |Rc| gorcwi |
139 | NN | RA | RB | RC | 1 | 00 | 1110 110 |Rc| bmator |
140 | NN | RA | RB | RC | 0 | 01 | 0010 110 |Rc| grev |
141 | NN | RA | RB | RC | 1 | 01 | 0010 110 |Rc| clmul |
142 | NN | RA | RB | sh | SH | 01 | 1010 110 |Rc| grevi |
143 | NN | RA | RB | RC | 0 | 01 | 0110 110 |Rc| grevw |
144 | NN | RA | RB | sh | 0 | 01 | 1110 110 |Rc| grevwi |
145 | NN | RA | RB | RC | 1 | 01 | 1110 110 |Rc| bmatxor |
146 | NN | RA | RB | RC | | 10 | --10 110 |Rc| rsvd |
147 | NN | RA | RB | RC | 0 | 11 | 1110 110 |Rc| clmulr |
148 | NN | RA | RB | RC | 1 | 11 | 1110 110 |Rc| clmulh |
149 | NN | | | | | | --11 110 |Rc| rsvd |
150
151 # ternlog bitops
152
153 Similar to FPGA LUTs: for every bit perform a lookup into a table using an 8bit immediate, or in another register.
154
155 Like the x86 AVX512F [vpternlogd/vpternlogq](https://www.felixcloutier.com/x86/vpternlogd:vpternlogq) instructions.
156
157 ## ternlogi
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-2 | imm | 10 |m3|
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 required for
219 the [[sv/av_opcodes]]
220
221 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).
222
223 signed/unsigned min/max gives more flexibility.
224
225 ```
226 uint_xlen_t min(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 max(uint_xlen_t rs1, uint_xlen_t rs2)
230 { return (int_xlen_t)rs1 > (int_xlen_t)rs2 ? rs1 : rs2;
231 }
232 uint_xlen_t minu(uint_xlen_t rs1, uint_xlen_t rs2)
233 { return rs1 < rs2 ? rs1 : rs2;
234 }
235 uint_xlen_t maxu(uint_xlen_t rs1, uint_xlen_t rs2)
236 { return rs1 > rs2 ? rs1 : rs2;
237 }
238 ```
239
240
241 ## cmix
242
243 based on RV bitmanip, covered by ternlog bitops
244
245 ```
246 uint_xlen_t cmix(uint_xlen_t RA, uint_xlen_t RB, uint_xlen_t RC) {
247 return (RA & RB) | (RC & ~RB);
248 }
249 ```
250
251
252 # bitmask set
253
254 based on RV bitmanip singlebit set, instruction format similar to shift
255 [[isa/fixedshift]]. bmext is actually covered already (shift-with-mask rldicl but only immediate version).
256 however bitmask-invert is not, and set/clr are not covered, although they can use the same Shift ALU.
257
258 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.
259 bmrev however there is no direct equivalent and consequently a bmrevi is required.
260
261 bmset (register for mask amount) is particularly useful for creating
262 predicate masks where the length is a dynamic runtime quantity.
263 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.
264
265 | 0.5|6.10|11.15|16.20|21.25| 26..30 |31| name |
266 | -- | -- | --- | --- | --- | ------- |--| ----- |
267 | NN | RS | RA | RB | RC | mode 010 |Rc| bm* |
268
269 Immediate-variant is an overwrite form:
270
271 | 0.5|6.10|11.15|16.20| 21 | 22.23 | 24....30 |31| name |
272 | -- | -- | --- | --- | -- | ----- | -------- |--| ---- |
273 | NN | RS | RB | sh | SH | itype | 1000 110 |Rc| bm*i |
274
275 ```
276 def MASK(x, y):
277 if x < y:
278 x = x+1
279 mask_a = ((1 << x) - 1) & ((1 << 64) - 1)
280 mask_b = ((1 << y) - 1) & ((1 << 64) - 1)
281 elif x == y:
282 return 1 << x
283 else:
284 x = x+1
285 mask_a = ((1 << x) - 1) & ((1 << 64) - 1)
286 mask_b = (~((1 << y) - 1)) & ((1 << 64) - 1)
287 return mask_a ^ mask_b
288
289
290 uint_xlen_t bmset(RS, RB, sh)
291 {
292 int shamt = RB & (XLEN - 1);
293 mask = (2<<sh)-1;
294 return RS | (mask << shamt);
295 }
296
297 uint_xlen_t bmclr(RS, RB, sh)
298 {
299 int shamt = RB & (XLEN - 1);
300 mask = (2<<sh)-1;
301 return RS & ~(mask << shamt);
302 }
303
304 uint_xlen_t bminv(RS, RB, sh)
305 {
306 int shamt = RB & (XLEN - 1);
307 mask = (2<<sh)-1;
308 return RS ^ (mask << shamt);
309 }
310
311 uint_xlen_t bmext(RS, RB, sh)
312 {
313 int shamt = RB & (XLEN - 1);
314 mask = (2<<sh)-1;
315 return mask & (RS >> shamt);
316 }
317 ```
318
319 bitmask extract with reverse. can be done by bit-order-inverting all of RB and getting bits of RB from the opposite end.
320
321 when RA is zero, no shift occurs. this makes bmextrev useful for
322 simply reversing all bits of a register.
323
324 ```
325 msb = ra[5:0];
326 rev[0:msb] = rb[msb:0];
327 rt = ZE(rev[msb:0]);
328
329 uint_xlen_t bmextrev(RA, RB, sh)
330 {
331 int shamt = XLEN-1;
332 if (RA != 0) shamt = (GPR(RA) & (XLEN - 1));
333 shamt = (XLEN-1)-shamt; # shift other end
334 bra = bitreverse(RB) # swap LSB-MSB
335 mask = (2<<sh)-1;
336 return mask & (bra >> shamt);
337 }
338 ```
339
340 | 0.5|6.10|11.15|16.20|21.26| 27..30 |31| name |
341 | -- | -- | --- | --- | --- | ------- |--| ------ |
342 | NN | RT | RA | RB | sh | 1 011 |Rc| bmrevi |
343
344
345 # grevlut
346
347 generalised reverse combined with a pair of LUT2s and allowing
348 a constant `0b0101...0101` when RA=0, and an option to invert
349 (including when RA=0, giving a constant 0b1010...1010 as the
350 initial value) provides a wide range of instructions
351 and a means to set regular 64 bit patterns in one
352 32 bit instruction.
353
354 the two LUT2s are applied left-half (when not swapping)
355 and right-half (when swapping) so as to allow a wider
356 range of options.
357
358 <img src="/openpower/sv/grevlut2x2.jpg" width=700 />
359
360 * A value of `0b11001010` for the immediate provides
361 the functionality of a standard "grev".
362 * `0b11101110` provides gorc
363
364 grevlut should be arranged so as to produce the constants
365 needed to put into bext (bitextract) so as in turn to
366 be able to emulate x86 pmovmask instructions <https://www.felixcloutier.com/x86/pmovmskb>.
367 This only requires 2 instructions (grevlut, bext).
368
369 Note that if the mask is required to be placed
370 directly into CR Fields (for use as CR Predicate
371 masks rather than a integer mask) then sv.ori
372 may be used instead, bearing in mind that sv.ori
373 is a 64-bit instruction, and `VL` must have been
374 set to the required length:
375
376 sv.ori./elwid=8 r10.v, r10.v, 0
377
378 The following settings provide the required mask constants:
379
380 | RA | RB | imm | iv | result |
381 | ------- | ------- | ---------- | -- | ---------- |
382 | 0x555.. | 0b10 | 0b01101100 | 0 | 0x111111... |
383 | 0x555.. | 0b110 | 0b01101100 | 0 | 0x010101... |
384 | 0x555.. | 0b1110 | 0b01101100 | 0 | 0x00010001... |
385 | 0x555.. | 0b10 | 0b11000110 | 1 | 0x88888... |
386 | 0x555.. | 0b110 | 0b11000110 | 1 | 0x808080... |
387 | 0x555.. | 0b1110 | 0b11000110 | 1 | 0x80008000... |
388
389 Better diagram showing the correct ordering of shamt (RB). A LUT2
390 is applied to all locations marked in red using the first 4
391 bits of the immediate, and a separate LUT2 applied to all
392 locations in green using the upper 4 bits of the immediate.
393
394 <img src="/openpower/sv/grevlut.png" width=700 />
395
396 demo code [[openpower/sv/grevlut.py]]
397
398 ```
399 lut2(imm, a, b):
400 idx = b << 1 | a
401 return imm[idx] # idx by LSB0 order
402
403 dorow(imm8, step_i, chunksize):
404 for j in 0 to 63:
405 if (j&chunk_size) == 0
406 imm = imm8[0..3]
407 else
408 imm = imm8[4..7]
409 step_o[j] = lut2(imm, step_i[j], step_i[j ^ chunk_size])
410 return step_o
411
412 uint64_t grevlut64(uint64_t RA, uint64_t RB, uint8 imm, bool iv)
413 {
414 uint64_t x = 0x5555_5555_5555_5555;
415 if (RA != 0) x = GPR(RA);
416 if (iv) x = ~x;
417 int shamt = RB & 63;
418 for i in 0 to 6
419 step = 1<<i
420 if (shamt & step) x = dorow(imm, x, step)
421 return x;
422 }
423
424 ```
425
426 | 0.5|6.10|11.15|16.20 |21..25 | 26....30 |31| name |
427 | -- | -- | --- | --- | ----- | -------- |--| ------ |
428 | NN | RT | RA | s0-4 | im0-4 | im5-7 1 iv |s5| grevlogi |
429 | NN | RT | RA | RB | im0-4 | im5-7 00 |1 | grevlog |
430
431
432 # grev
433
434 based on RV bitmanip, this is also known as a butterfly network. however
435 where a butterfly network allows setting of every crossbar setting in
436 every row and every column, generalised-reverse (grev) only allows
437 a per-row decision: every entry in the same row must either switch or
438 not-switch.
439
440 <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/8/8c/Butterfly_Network.jpg/474px-Butterfly_Network.jpg" />
441
442 ```
443 uint64_t grev64(uint64_t RA, uint64_t RB)
444 {
445 uint64_t x = RA;
446 int shamt = RB & 63;
447 if (shamt & 1) x = ((x & 0x5555555555555555LL) << 1) |
448 ((x & 0xAAAAAAAAAAAAAAAALL) >> 1);
449 if (shamt & 2) x = ((x & 0x3333333333333333LL) << 2) |
450 ((x & 0xCCCCCCCCCCCCCCCCLL) >> 2);
451 if (shamt & 4) x = ((x & 0x0F0F0F0F0F0F0F0FLL) << 4) |
452 ((x & 0xF0F0F0F0F0F0F0F0LL) >> 4);
453 if (shamt & 8) x = ((x & 0x00FF00FF00FF00FFLL) << 8) |
454 ((x & 0xFF00FF00FF00FF00LL) >> 8);
455 if (shamt & 16) x = ((x & 0x0000FFFF0000FFFFLL) << 16) |
456 ((x & 0xFFFF0000FFFF0000LL) >> 16);
457 if (shamt & 32) x = ((x & 0x00000000FFFFFFFFLL) << 32) |
458 ((x & 0xFFFFFFFF00000000LL) >> 32);
459 return x;
460 }
461
462 ```
463
464 # xperm
465
466 based on RV bitmanip.
467
468 RA contains a vector of indices to select parts of RB to be
469 copied to RT. The immediate-variant allows up to an 8 bit
470 pattern (repeated) to be targetted at different parts of RT
471
472 ```
473 uint_xlen_t xpermi(uint8_t imm8, uint_xlen_t RB, int sz_log2)
474 {
475 uint_xlen_t r = 0;
476 uint_xlen_t sz = 1LL << sz_log2;
477 uint_xlen_t mask = (1LL << sz) - 1;
478 uint_xlen_t RA = imm8 | imm8<<8 | ... | imm8<<56;
479 for (int i = 0; i < XLEN; i += sz) {
480 uint_xlen_t pos = ((RA >> i) & mask) << sz_log2;
481 if (pos < XLEN)
482 r |= ((RB >> pos) & mask) << i;
483 }
484 return r;
485 }
486 uint_xlen_t xperm(uint_xlen_t RA, uint_xlen_t RB, int sz_log2)
487 {
488 uint_xlen_t r = 0;
489 uint_xlen_t sz = 1LL << sz_log2;
490 uint_xlen_t mask = (1LL << sz) - 1;
491 for (int i = 0; i < XLEN; i += sz) {
492 uint_xlen_t pos = ((RA >> i) & mask) << sz_log2;
493 if (pos < XLEN)
494 r |= ((RB >> pos) & mask) << i;
495 }
496 return r;
497 }
498 uint_xlen_t xperm_n (uint_xlen_t RA, uint_xlen_t RB)
499 { return xperm(RA, RB, 2); }
500 uint_xlen_t xperm_b (uint_xlen_t RA, uint_xlen_t RB)
501 { return xperm(RA, RB, 3); }
502 uint_xlen_t xperm_h (uint_xlen_t RA, uint_xlen_t RB)
503 { return xperm(RA, RB, 4); }
504 uint_xlen_t xperm_w (uint_xlen_t RA, uint_xlen_t RB)
505 { return xperm(RA, RB, 5); }
506 ```
507
508 # gorc
509
510 based on RV bitmanip
511
512 ```
513 uint32_t gorc32(uint32_t RA, uint32_t RB)
514 {
515 uint32_t x = RA;
516 int shamt = RB & 31;
517 if (shamt & 1) x |= ((x & 0x55555555) << 1) | ((x & 0xAAAAAAAA) >> 1);
518 if (shamt & 2) x |= ((x & 0x33333333) << 2) | ((x & 0xCCCCCCCC) >> 2);
519 if (shamt & 4) x |= ((x & 0x0F0F0F0F) << 4) | ((x & 0xF0F0F0F0) >> 4);
520 if (shamt & 8) x |= ((x & 0x00FF00FF) << 8) | ((x & 0xFF00FF00) >> 8);
521 if (shamt & 16) x |= ((x & 0x0000FFFF) << 16) | ((x & 0xFFFF0000) >> 16);
522 return x;
523 }
524 uint64_t gorc64(uint64_t RA, uint64_t RB)
525 {
526 uint64_t x = RA;
527 int shamt = RB & 63;
528 if (shamt & 1) x |= ((x & 0x5555555555555555LL) << 1) |
529 ((x & 0xAAAAAAAAAAAAAAAALL) >> 1);
530 if (shamt & 2) x |= ((x & 0x3333333333333333LL) << 2) |
531 ((x & 0xCCCCCCCCCCCCCCCCLL) >> 2);
532 if (shamt & 4) x |= ((x & 0x0F0F0F0F0F0F0F0FLL) << 4) |
533 ((x & 0xF0F0F0F0F0F0F0F0LL) >> 4);
534 if (shamt & 8) x |= ((x & 0x00FF00FF00FF00FFLL) << 8) |
535 ((x & 0xFF00FF00FF00FF00LL) >> 8);
536 if (shamt & 16) x |= ((x & 0x0000FFFF0000FFFFLL) << 16) |
537 ((x & 0xFFFF0000FFFF0000LL) >> 16);
538 if (shamt & 32) x |= ((x & 0x00000000FFFFFFFFLL) << 32) |
539 ((x & 0xFFFFFFFF00000000LL) >> 32);
540 return x;
541 }
542
543 ```
544 # Introduction to Carry-less and GF arithmetic
545
546 * obligatory xkcd <https://xkcd.com/2595/>
547
548 There are three completely separate types of Galois-Field-based
549 arithmetic that we implement which are not well explained even in introductory literature. A slightly oversimplified explanation
550 is followed by more accurate descriptions:
551
552 * `GF(2)` carry-less binary arithmetic. this is not actually a Galois Field,
553 but is accidentally referred to as GF(2) - see below as to why.
554 * `GF(p)` modulo arithmetic with a Prime number, these are "proper" Galois Fields
555 * `GF(2^N)` carry-less binary arithmetic with two limits: modulo a power-of-2
556 (2^N) and a second "reducing" polynomial (similar to a prime number), these
557 are said to be GF(2^N) arithmetic.
558
559 further detailed and more precise explanations are provided below
560
561 * **Polynomials with coefficients in `GF(2)`**
562 (aka. Carry-less arithmetic -- the `cl*` instructions).
563 This isn't actually a Galois Field, but its coefficients are. This is
564 basically binary integer addition, subtraction, and multiplication like
565 usual, except that carries aren't propagated at all, effectively turning
566 both addition and subtraction into the bitwise xor operation. Division and
567 remainder are defined to match how addition and multiplication works.
568 * **Galois Fields with a prime size**
569 (aka. `GF(p)` or Prime Galois Fields -- the `gfp*` instructions).
570 This is basically just the integers mod `p`.
571 * **Galois Fields with a power-of-a-prime size**
572 (aka. `GF(p^n)` or `GF(q)` where `q == p^n` for prime `p` and
573 integer `n > 0`).
574 We only implement these for `p == 2`, called Binary Galois Fields
575 (`GF(2^n)` -- the `gfb*` instructions).
576 For any prime `p`, `GF(p^n)` is implemented as polynomials with
577 coefficients in `GF(p)` and degree `< n`, where the polynomials are the
578 remainders of dividing by a specificly chosen polynomial in `GF(p)` called
579 the Reducing Polynomial (we will denote that by `red_poly`). The Reducing
580 Polynomial must be an irreducable polynomial (like primes, but for
581 polynomials), as well as have degree `n`. All `GF(p^n)` for the same `p`
582 and `n` are isomorphic to each other -- the choice of `red_poly` doesn't
583 affect `GF(p^n)`'s mathematical shape, all that changes is the specific
584 polynomials used to implement `GF(p^n)`.
585
586 Many implementations and much of the literature do not make a clear
587 distinction between these three categories, which makes it confusing
588 to understand what their purpose and value is.
589
590 * carry-less multiply is extremely common and is used for the ubiquitous
591 CRC32 algorithm. [TODO add many others, helps justify to ISA WG]
592 * GF(2^N) forms the basis of Rijndael (the current AES standard) and
593 has significant uses throughout cryptography
594 * GF(p) is the basis again of a significant quantity of algorithms
595 (TODO, list them, jacob knows what they are), even though the
596 modulo is limited to be below 64-bit (size of a scalar int)
597
598 # Instructions for Carry-less Operations
599
600 aka. Polynomials with coefficients in `GF(2)`
601
602 Carry-less addition/subtraction is simply XOR, so a `cladd`
603 instruction is not provided since the `xor[i]` instruction can be used instead.
604
605 These are operations on polynomials with coefficients in `GF(2)`, with the
606 polynomial's coefficients packed into integers with the following algorithm:
607
608 ```python
609 [[!inline pagenames="gf_reference/pack_poly.py" raw="yes"]]
610 ```
611
612 ## Carry-less Multiply Instructions
613
614 based on RV bitmanip
615 see <https://en.wikipedia.org/wiki/CLMUL_instruction_set> and
616 <https://www.felixcloutier.com/x86/pclmulqdq> and
617 <https://en.m.wikipedia.org/wiki/Carry-less_product>
618
619 They are worth adding as their own non-overwrite operations
620 (in the same pipeline).
621
622 ### `clmul` Carry-less Multiply
623
624 ```python
625 [[!inline pagenames="gf_reference/clmul.py" raw="yes"]]
626 ```
627
628 ### `clmulh` Carry-less Multiply High
629
630 ```python
631 [[!inline pagenames="gf_reference/clmulh.py" raw="yes"]]
632 ```
633
634 ### `clmulr` Carry-less Multiply (Reversed)
635
636 Useful for CRCs. Equivalent to bit-reversing the result of `clmul` on
637 bit-reversed inputs.
638
639 ```python
640 [[!inline pagenames="gf_reference/clmulr.py" raw="yes"]]
641 ```
642
643 ## `clmadd` Carry-less Multiply-Add
644
645 ```
646 clmadd RT, RA, RB, RC
647 ```
648
649 ```
650 (RT) = clmul((RA), (RB)) ^ (RC)
651 ```
652
653 ## `cltmadd` Twin Carry-less Multiply-Add (for FFTs)
654
655 Used in combination with SV FFT REMAP to perform a full Discrete Fourier
656 Transform of Polynomials over GF(2) in-place. Possible by having 3-in 2-out,
657 to avoid the need for a temp register. RS is written to as well as RT.
658
659 Note: Polynomials over GF(2) are a Ring rather than a Field, so, because the
660 definition of the Inverse Discrete Fourier Transform involves calculating a
661 multiplicative inverse, which may not exist in every Ring, therefore the
662 Inverse Discrete Fourier Transform may not exist. (AFAICT the number of inputs
663 to the IDFT must be odd for the IDFT to be defined for Polynomials over GF(2).
664 TODO: check with someone who knows for sure if that's correct.)
665
666 ```
667 cltmadd RT, RA, RB, RC
668 ```
669
670 TODO: add link to explanation for where `RS` comes from.
671
672 ```
673 a = (RA)
674 c = (RC)
675 # read all inputs before writing to any outputs in case
676 # an input overlaps with an output register.
677 (RT) = clmul(a, (RB)) ^ c
678 (RS) = a ^ c
679 ```
680
681 ## `cldivrem` Carry-less Division and Remainder
682
683 `cldivrem` isn't an actual instruction, but is just used in the pseudo-code
684 for other instructions.
685
686 ```python
687 [[!inline pagenames="gf_reference/cldivrem.py" raw="yes"]]
688 ```
689
690 ## `cldiv` Carry-less Division
691
692 ```
693 cldiv RT, RA, RB
694 ```
695
696 ```
697 n = (RA)
698 d = (RB)
699 q, r = cldivrem(n, d, width=XLEN)
700 (RT) = q
701 ```
702
703 ## `clrem` Carry-less Remainder
704
705 ```
706 clrem RT, RA, RB
707 ```
708
709 ```
710 n = (RA)
711 d = (RB)
712 q, r = cldivrem(n, d, width=XLEN)
713 (RT) = r
714 ```
715
716 # Instructions for Binary Galois Fields `GF(2^m)`
717
718 see:
719
720 * <https://courses.csail.mit.edu/6.857/2016/files/ffield.py>
721 * <https://engineering.purdue.edu/kak/compsec/NewLectures/Lecture7.pdf>
722 * <https://foss.heptapod.net/math/libgf2/-/blob/branch/default/src/libgf2/gf2.py>
723
724 Binary Galois Field addition/subtraction is simply XOR, so a `gfbadd`
725 instruction is not provided since the `xor[i]` instruction can be used instead.
726
727 ## `GFBREDPOLY` SPR -- Reducing Polynomial
728
729 In order to save registers and to make operations orthogonal with standard
730 arithmetic, the reducing polynomial is stored in a dedicated SPR `GFBREDPOLY`.
731 This also allows hardware to pre-compute useful parameters (such as the
732 degree, or look-up tables) based on the reducing polynomial, and store them
733 alongside the SPR in hidden registers, only recomputing them whenever the SPR
734 is written to, rather than having to recompute those values for every
735 instruction.
736
737 Because Galois Fields require the reducing polynomial to be an irreducible
738 polynomial, that guarantees that any polynomial of `degree > 1` must have
739 the LSB set, since otherwise it would be divisible by the polynomial `x`,
740 making it reducible, making whatever we're working on no longer a Field.
741 Therefore, we can reuse the LSB to indicate `degree == XLEN`.
742
743 ```python
744 [[!inline pagenames="gf_reference/decode_reducing_polynomial.py" raw="yes"]]
745 ```
746
747 ## `gfbredpoly` -- Set the Reducing Polynomial SPR `GFBREDPOLY`
748
749 unless this is an immediate op, `mtspr` is completely sufficient.
750
751 ```python
752 [[!inline pagenames="gf_reference/gfbredpoly.py" raw="yes"]]
753 ```
754
755 ## `gfbmul` -- Binary Galois Field `GF(2^m)` Multiplication
756
757 ```
758 gfbmul RT, RA, RB
759 ```
760
761 ```python
762 [[!inline pagenames="gf_reference/gfbmul.py" raw="yes"]]
763 ```
764
765 ## `gfbmadd` -- Binary Galois Field `GF(2^m)` Multiply-Add
766
767 ```
768 gfbmadd RT, RA, RB, RC
769 ```
770
771 ```python
772 [[!inline pagenames="gf_reference/gfbmadd.py" raw="yes"]]
773 ```
774
775 ## `gfbtmadd` -- Binary Galois Field `GF(2^m)` Twin Multiply-Add (for FFT)
776
777 Used in combination with SV FFT REMAP to perform a full `GF(2^m)` Discrete
778 Fourier Transform in-place. Possible by having 3-in 2-out, to avoid the need
779 for a temp register. RS is written to as well as RT.
780
781 ```
782 gfbtmadd RT, RA, RB, RC
783 ```
784
785 TODO: add link to explanation for where `RS` comes from.
786
787 ```
788 a = (RA)
789 c = (RC)
790 # read all inputs before writing to any outputs in case
791 # an input overlaps with an output register.
792 (RT) = gfbmadd(a, (RB), c)
793 # use gfbmadd again since it reduces the result
794 (RS) = gfbmadd(a, 1, c) # "a * 1 + c"
795 ```
796
797 ## `gfbinv` -- Binary Galois Field `GF(2^m)` Inverse
798
799 ```
800 gfbinv RT, RA
801 ```
802
803 ```python
804 [[!inline pagenames="gf_reference/gfbinv.py" raw="yes"]]
805 ```
806
807 # Instructions for Prime Galois Fields `GF(p)`
808
809 ## `GFPRIME` SPR -- Prime Modulus For `gfp*` Instructions
810
811 ## `gfpadd` Prime Galois Field `GF(p)` Addition
812
813 ```
814 gfpadd RT, RA, RB
815 ```
816
817 ```python
818 [[!inline pagenames="gf_reference/gfpadd.py" raw="yes"]]
819 ```
820
821 the addition happens on infinite-precision integers
822
823 ## `gfpsub` Prime Galois Field `GF(p)` Subtraction
824
825 ```
826 gfpsub RT, RA, RB
827 ```
828
829 ```python
830 [[!inline pagenames="gf_reference/gfpsub.py" raw="yes"]]
831 ```
832
833 the subtraction happens on infinite-precision integers
834
835 ## `gfpmul` Prime Galois Field `GF(p)` Multiplication
836
837 ```
838 gfpmul RT, RA, RB
839 ```
840
841 ```python
842 [[!inline pagenames="gf_reference/gfpmul.py" raw="yes"]]
843 ```
844
845 the multiplication happens on infinite-precision integers
846
847 ## `gfpinv` Prime Galois Field `GF(p)` Invert
848
849 ```
850 gfpinv RT, RA
851 ```
852
853 Some potential hardware implementations are found in:
854 <https://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.90.5233&rep=rep1&type=pdf>
855
856 ```python
857 [[!inline pagenames="gf_reference/gfpinv.py" raw="yes"]]
858 ```
859
860 ## `gfpmadd` Prime Galois Field `GF(p)` Multiply-Add
861
862 ```
863 gfpmadd RT, RA, RB, RC
864 ```
865
866 ```python
867 [[!inline pagenames="gf_reference/gfpmadd.py" raw="yes"]]
868 ```
869
870 the multiplication and addition happens on infinite-precision integers
871
872 ## `gfpmsub` Prime Galois Field `GF(p)` Multiply-Subtract
873
874 ```
875 gfpmsub RT, RA, RB, RC
876 ```
877
878 ```python
879 [[!inline pagenames="gf_reference/gfpmsub.py" raw="yes"]]
880 ```
881
882 the multiplication and subtraction happens on infinite-precision integers
883
884 ## `gfpmsubr` Prime Galois Field `GF(p)` Multiply-Subtract-Reversed
885
886 ```
887 gfpmsubr RT, RA, RB, RC
888 ```
889
890 ```python
891 [[!inline pagenames="gf_reference/gfpmsubr.py" raw="yes"]]
892 ```
893
894 the multiplication and subtraction happens on infinite-precision integers
895
896 ## `gfpmaddsubr` Prime Galois Field `GF(p)` Multiply-Add and Multiply-Sub-Reversed (for FFT)
897
898 Used in combination with SV FFT REMAP to perform
899 a full Number-Theoretic-Transform in-place. Possible by having 3-in 2-out,
900 to avoid the need for a temp register. RS is written
901 to as well as RT.
902
903 ```
904 gfpmaddsubr RT, RA, RB, RC
905 ```
906
907 TODO: add link to explanation for where `RS` comes from.
908
909 ```
910 factor1 = (RA)
911 factor2 = (RB)
912 term = (RC)
913 # read all inputs before writing to any outputs in case
914 # an input overlaps with an output register.
915 (RT) = gfpmadd(factor1, factor2, term)
916 (RS) = gfpmsubr(factor1, factor2, term)
917 ```
918
919 # bitmatrix
920
921 ```
922 uint64_t bmatflip(uint64_t RA)
923 {
924 uint64_t x = RA;
925 x = shfl64(x, 31);
926 x = shfl64(x, 31);
927 x = shfl64(x, 31);
928 return x;
929 }
930 uint64_t bmatxor(uint64_t RA, uint64_t RB)
931 {
932 // transpose of RB
933 uint64_t RBt = bmatflip(RB);
934 uint8_t u[8]; // rows of RA
935 uint8_t v[8]; // cols of RB
936 for (int i = 0; i < 8; i++) {
937 u[i] = RA >> (i*8);
938 v[i] = RBt >> (i*8);
939 }
940 uint64_t x = 0;
941 for (int i = 0; i < 64; i++) {
942 if (pcnt(u[i / 8] & v[i % 8]) & 1)
943 x |= 1LL << i;
944 }
945 return x;
946 }
947 uint64_t bmator(uint64_t RA, uint64_t RB)
948 {
949 // transpose of RB
950 uint64_t RBt = bmatflip(RB);
951 uint8_t u[8]; // rows of RA
952 uint8_t v[8]; // cols of RB
953 for (int i = 0; i < 8; i++) {
954 u[i] = RA >> (i*8);
955 v[i] = RBt >> (i*8);
956 }
957 uint64_t x = 0;
958 for (int i = 0; i < 64; i++) {
959 if ((u[i / 8] & v[i % 8]) != 0)
960 x |= 1LL << i;
961 }
962 return x;
963 }
964
965 ```
966
967 # Already in POWER ISA
968
969 ## count leading/trailing zeros with mask
970
971 in v3.1 p105
972
973 ```
974 count = 0
975 do i = 0 to 63 if((RB)i=1) then do
976 if((RS)i=1) then break end end count ← count + 1
977 RA ← EXTZ64(count)
978 ```
979
980 ## bit deposit
981
982 pdepd VRT,VRA,VRB, identical to RV bitmamip bdep, found already in v3.1 p106
983
984 do while(m < 64)
985 if VSR[VRB+32].dword[i].bit[63-m]=1 then do
986 result = VSR[VRA+32].dword[i].bit[63-k]
987 VSR[VRT+32].dword[i].bit[63-m] = result
988 k = k + 1
989 m = m + 1
990
991 ```
992
993 uint_xlen_t bdep(uint_xlen_t RA, uint_xlen_t RB)
994 {
995 uint_xlen_t r = 0;
996 for (int i = 0, j = 0; i < XLEN; i++)
997 if ((RB >> i) & 1) {
998 if ((RA >> j) & 1)
999 r |= uint_xlen_t(1) << i;
1000 j++;
1001 }
1002 return r;
1003 }
1004
1005 ```
1006
1007 ## bit extract
1008
1009 other way round: identical to RV bext: pextd, found in v3.1 p196
1010
1011 ```
1012 uint_xlen_t bext(uint_xlen_t RA, uint_xlen_t RB)
1013 {
1014 uint_xlen_t r = 0;
1015 for (int i = 0, j = 0; i < XLEN; i++)
1016 if ((RB >> i) & 1) {
1017 if ((RA >> i) & 1)
1018 r |= uint_xlen_t(1) << j;
1019 j++;
1020 }
1021 return r;
1022 }
1023 ```
1024
1025 ## centrifuge
1026
1027 found in v3.1 p106 so not to be added here
1028
1029 ```
1030 ptr0 = 0
1031 ptr1 = 0
1032 do i = 0 to 63
1033 if((RB)i=0) then do
1034 resultptr0 = (RS)i
1035 end
1036 ptr0 = ptr0 + 1
1037 if((RB)63-i==1) then do
1038 result63-ptr1 = (RS)63-i
1039 end
1040 ptr1 = ptr1 + 1
1041 RA = result
1042 ```
1043
1044 ## bit to byte permute
1045
1046 similar to matrix permute in RV bitmanip, which has XOR and OR variants,
1047 these perform a transpose. TODO this looks VSX is there a scalar variant
1048 in v3.0/1 already
1049
1050 do j = 0 to 7
1051 do k = 0 to 7
1052 b = VSR[VRB+32].dword[i].byte[k].bit[j]
1053 VSR[VRT+32].dword[i].byte[j].bit[k] = b
1054
1055 # Appendix
1056
1057 see [[bitmanip/appendix]]
1058