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