(no commit message)
[libreriscv.git] / openpower / sv / svp64.mdwn
1 # SVP64 Zero-Overhead Loop Prefix Subsystem
2
3 * **DRAFT STATUS v0.1 18sep2021** Release notes <https://bugs.libre-soc.org/show_bug.cgi?id=699>
4
5 This document describes [[SV|sv]] augmentation of the [[Power|openpower]] v3.0B [[ISA|openpower/isa/]]. It is in Draft Status and
6 will be submitted to the [[!wikipedia OpenPOWER_Foundation]] ISA WG
7 via the External RFC Process.
8
9 Credits and acknowledgements:
10
11 * Luke Leighton
12 * Jacob Lifshay
13 * Hendrik Boom
14 * Richard Wilbur
15 * Alexandre Oliva
16 * Cesar Strauss
17 * NLnet Foundation, for funding
18 * OpenPOWER Foundation
19 * Paul Mackerras
20 * Toshaan Bharvani
21 * IBM for the Power ISA itself
22
23 Links:
24
25 * <http://lists.libre-soc.org/pipermail/libre-soc-dev/2020-December/001498.html>>
26 * [[svp64/discussion]]
27 * [[svp64/appendix]]
28 * <http://lists.libre-soc.org/pipermail/libre-soc-dev/2020-December/001650.html>
29 * <https://bugs.libre-soc.org/show_bug.cgi?id=550>
30 * <https://bugs.libre-soc.org/show_bug.cgi?id=573> TODO elwidth "infinite" discussion
31 * <https://bugs.libre-soc.org/show_bug.cgi?id=574> Saturating description.
32 * <https://bugs.libre-soc.org/show_bug.cgi?id=905> TODO [[sv/svp64-single]]
33 * <https://bugs.libre-soc.org/show_bug.cgi?id=1045> External RFC ls010
34 * [[sv/branches]] chapter
35 * [[sv/ldst]] chapter
36
37
38 Table of contents
39
40 [[!toc]]
41
42 ## Introduction
43
44 Simple-V is a type of Vectorisation best described as a "Prefix Loop
45 Subsystem" similar to the 5 decades-old Zilog Z80 `LDIR` instruction and
46 to the 8086 `REP` Prefix instruction. More advanced features are similar
47 to the Z80 `CPIR` instruction. If naively viewed one-dimensionally as an
48 actual Vector ISA it introduces over 1.5 million 64-bit True-Scalable
49 Vector instructions on the SFFS Subset and closer to 10 million 64-bit
50 True-Scalable Vector instructions if introduced on VSX. SVP64, the
51 instruction format used by Simple-V, is therefore best viewed as an
52 orthogonal RISC-paradigm "Prefixing" subsystem instead.
53
54 Except where explicitly stated all bit numbers remain as in the rest of
55 the Power ISA: in MSB0 form (the bits are numbered from 0 at the MSB on
56 the left and counting up as you move rightwards to the LSB end). All bit
57 ranges are inclusive (so `4:6` means bits 4, 5, and 6, in MSB0 order).
58 **All register numbering and element numbering however is LSB0 ordering**
59 which is a different convention from that used elsewhere in the Power ISA.
60
61 The SVP64 prefix always comes before the suffix in PC order and must be
62 considered an independent "Defined word" that augments the behaviour of
63 the following instruction, but does **not** change the actual Decoding
64 of that following instruction. **All prefixed 32-bit instructions
65 (Defined Words) retain their non-prefixed encoding and definition**.
66
67 Two apparent exceptions to the above hard rule exist: SV
68 Branch-Conditional operations and LD/ST-update "Post-Increment"
69 Mode. Post-Increment was considered sufficiently high priority
70 (significantly reducing hot-loop instruction count) that one bit in
71 the Prefix is reserved for it (*Note the intention to release that bit
72 and move Post-Increment instructions to EXT2xx, as part of [[ls011]]*).
73 Vectorised Branch-Conditional operations "embed" the original Scalar
74 Branch-Conditional behaviour into a much more advanced variant that is
75 highly suited to High-Performance Computation (HPC), Supercomputing,
76 and parallel GPU Workloads.
77
78 *Architectural Resource Allocation note: it is prohibited to accept RFCs
79 which fundamentally violate this hard requirement. Under no circumstances
80 must the Suffix space have an alternate instruction encoding allocated
81 within SVP64 that is entirely different from the non-prefixed Defined
82 Word. Hardware Implementors critically rely on this inviolate guarantee
83 to implement High-Performance Multi-Issue micro-architectures that can
84 sustain 100% throughput*
85
86 Subset implementations in hardware are permitted, as long as certain
87 rules are followed, allowing for full soft-emulation including future
88 revisions. Compliancy Subsets exist to ensure minimum levels of binary
89 interoperability expectations within certain environments. Details in
90 the [[svp64/appendix]].
91
92 ## Strict Program Order
93
94 Strict Program Order is defined as giving the appearance, as far
95 as programs are concerned, that instructions were executed
96 strictly in the sequence that they occurred. A "Precise"
97 out-of-order
98 Micro-architecture goes to considerable lengths to ensure that
99 this is the case.
100
101 Many Vector ISAs allow interrupts to occur in the middle of
102 processing of large Vector operations, only under the condition
103 that partial results are cleanly discarded, and continuation on return
104 from the Trap Handler will restart the entire operation.
105 The reason is that saving of full Architectural State is
106 not practical.
107
108 Simple-V operates on an entirely different paradigm from traditional
109 Vector ISAs: as a Sub-Program Counter where "Elements" are synonymous
110 with Scalar instructions. With this in mind it is critical for
111 implementations to observe Strict Element-Level Program Order
112 at all times
113 (often simply referred to as just "Strict Program Order"
114 throughout
115 this Chapter).
116 *Any* element is Interruptible and Simple-V has
117 been carefully designed to guarantee that Architectural State may
118 be fully preserved and restored regardless of that same State, but
119 it is not necessarily guaranteed that the amount of time needed to recover
120 will be low latency (particularly if REMAP
121 is active).
122
123 Interrupts still only save `MSR` and `PC` in `SRR0` and `SRR1`
124 but the full SVP64 Architectural State may be saved and
125 restored through manual copying of `SVSTATE` (and the four
126 REMAP SPRs if in use at the time)
127 Whilst this initially sounds unsafe in reality
128 all that Trap Handlers (and function call stack save/restore)
129 need do is avoid
130 use of SVP64 Prefixed instructions to perform the necessary
131 save/restore of Simple-V Architectural State.
132 This capability also allows nested function calls to be made from
133 inside Vector loops, which is very rare for Vector ISAs.
134
135 Strict Program Order is also preserved by the Parallel Reduction
136 REMAP Schedule, but only at the cost of requiring the destination
137 Vector to be used (Deterministically) to store partial progress of the
138 Parallel Reduction Schedule.
139
140 The only major caveat for REMAP is that
141 after an explicit change to
142 Architectural State caused by writing to the
143 Simple-V SPRs, some implementations may find
144 it easier to take longer to calculate where in a given Schedule
145 the re-mapping Indices were. Obvious examples include Interrupts occuring
146 in the middle of a non-RADIX2 Matrix Multiply Schedule (5x3 by 3x3
147 for example), which
148 will force implementations to perform divide and modulo
149 calculations.
150
151 ## SVP64 encoding features
152
153 A number of features need to be compacted into a very small space of
154 only 24 bits:
155
156 * Independent per-register Scalar/Vector tagging and range extension on
157 every register
158 * Element width overrides on both source and destination
159 * Predication on both source and destination
160 * Two different sources of predication: INT and CR Fields
161 * SV Modes including saturation (for Audio, Video and DSP), mapreduce,
162 fail-first and predicate-result mode.
163
164 Different classes of operations require different formats. The earlier
165 sections cover the common formats and the four separate modes follow:
166 CR operations (crops), Arithmetic/Logical (termed "normal"), Load/Store
167 and Branch-Conditional.
168
169 ## Definition of Reserved in this spec.
170
171 For the new fields added in SVP64, instructions that have any of their
172 fields set to a reserved value must cause an illegal instruction trap,
173 to allow emulation of future instruction sets, or for subsets of SVP64 to
174 be implemented in hardware and the rest emulated. This includes SVP64
175 SPRs: reading or writing values which are not supported in hardware
176 must also raise illegal instruction traps in order to allow emulation.
177 Unless otherwise stated, reserved values are always all zeros.
178
179 This is unlike OpenPower ISA v3.1, which in many instances does not
180 require a trap if reserved fields are nonzero. Where the standard Power
181 ISA definition is intended the red keyword `RESERVED` is used.
182
183 ## Definition of "UnVectoriseable"
184
185 Any operation that inherently makes no sense if repeated is termed
186 "UnVectoriseable" or "UnVectorised". Examples include `sc` or `sync`
187 which have no registers. `mtmsr` is also classed as UnVectoriseable
188 because there is only one `MSR`.
189
190 UnVectorised instructions are required to be detected as such if
191 Prefixed (either SVP64 or SVP64Single) and an Illegal Instruction
192 Trap raised.
193
194 *Architectural Note: Given that a "pre-classification" Decode Phase is
195 required (identifying whether the Suffix - Defined Word - is
196 Arithmetic/Logical, CR-op, Load/Store or Branch-Conditional),
197 adding "UnVectorised" to this phase is not unreasonable.*
198
199 ## Register files, elements, and Element-width Overrides
200
201 The relationship between register files, elements, and element-width
202 overrides is expressed as follows:
203
204 * register files are considered to be *byte-level* contiguous SRAMs,
205 accessed exclusively in Little-Endian Byte-Order at all times
206 * elements are sequential contiguous unbounded arrays starting at the "address"
207 of any given 64-bit GPR or FPR, numbered from 0 as the first,
208 "spilling" into numerically-sequentially-increasing GPRs
209 * element-width overrides set the width of the *elements* in the
210 sequentially-numbered contiguous array.
211
212 The relationship is best defined in Canonical form, below, in ANSI c as a
213 union data structure. A key difference is that VSR elements are bounded
214 fixed at 128-bit, where SVP64 elements are conceptually unbounded and
215 only limited by the Maximum Vector Length.
216
217 *Future specification note: SVP64 may be defined on top of VSRs in future.
218 At which point VSX also gains conceptually unbounded VSR register elements*
219
220 In the Upper Compliancy Levels of SVP64 the size of the GPR and FPR
221 Register files are expanded from 32 to 128 entries, and the number of
222 CR Fields expanded from CR0-CR7 to CR0-CR127. (Note: A future version
223 of SVP64 is anticipated to extend the VSR register file).
224
225 Memory access remains exactly the same: the effects of `MSR.LE` remain
226 exactly the same, affecting as they already do and remain **only**
227 on the Load and Store memory-register operation byte-order, and having
228 nothing to do with the ordering of the contents of register files or
229 register-register operations.
230
231 The only major impact on Arithmetic and Logical operations is that all
232 Scalar operations are defined, where practical and workable, to have
233 three new widths: elwidth=32, elwidth=16, elwidth=8. The default of
234 elwidth=64 is the pre-existing (Scalar) behaviour which remains 100%
235 unchanged. Thus, `addi` is now joined by a 32-bit, 16-bit, and 8-bit
236 variant of `addi`, but the sole exclusive difference is the width.
237 *In no way* is the actual `addi` instruction fundamentally altered.
238 FP Operations elwidth overrides are also defined, as explained in
239 the [[svp64/appendix]].
240
241 To be absolutely clear:
242
243 ```
244 There are no conceptual arithmetic ordering or other changes over the
245 Scalar Power ISA definitions to registers or register files or to
246 arithmetic or Logical Operations beyond element-width subdivision
247 ```
248
249 Element offset
250 numbering is naturally **LSB0-sequentially-incrementing from zero, not
251 MSB0-incrementing** including when element-width overrides are used,
252 at which point the elements progress through each register
253 sequentially from the LSB end
254 (confusingly numbered the highest in MSB0 ordering) and progress
255 incrementally to the MSB end (confusingly numbered the lowest in
256 MSB0 ordering).
257
258 When exclusively using MSB0-numbering, SVP64 becomes unnecessarily complex
259 to both express and subsequently understand: the required conditional
260 subtractions from 63, 31, 15 and 7 needed to express the fact that
261 elements are LSB0-sequential unfortunately become a hostile minefield,
262 obscuring both intent and meaning. Therefore for the purposes of this
263 section the more natural **LSB0 numbering is assumed** and it is left
264 to the reader to translate to MSB0 numbering.
265
266 The Canonical specification for how element-sequential numbering and
267 element-width overrides is defined is expressed in the following c
268 structure, assuming a Little-Endian system, and naturally using LSB0
269 numbering everywhere because the ANSI c specification is inherently LSB0.
270 Note the deliberate similarity to how VSX register elements are defined,
271 from Figure 97, Book I, Section 6.3, Page 258:
272
273 ```
274 #pragma pack
275 typedef union {
276 uint8_t actual_bytes[8];
277 // all of these are very deliberately unbounded arrays
278 // that intentionally "wrap" into subsequent actual_bytes...
279 uint8_t bytes[]; // elwidth 8
280 uint16_t hwords[]; // elwidth 16
281 uint32_t words[]; // elwidth 32
282 uint64_t dwords[]; // elwidth 64
283
284 } el_reg_t;
285
286 // ... here, as packed statically-defined GPRs.
287 elreg_t int_regfile[128];
288
289 // use element 0 as the destination
290 void get_register_element(el_reg_t* el, int gpr, int element, int width) {
291 switch (width) {
292 case 64: el->dwords[0] = int_regfile[gpr].dwords[element];
293 case 32: el->words[0] = int_regfile[gpr].words[element];
294 case 16: el->hwords[0] = int_regfile[gpr].hwords[element];
295 case 8 : el->bytes[0] = int_regfile[gpr].bytes[element];
296 }
297 }
298
299 // use element 0 as the source
300 void set_register_element(el_reg_t* el, int gpr, int element, int width) {
301 switch (width) {
302 case 64: int_regfile[gpr].dwords[element] = el->dwords[0];
303 case 32: int_regfile[gpr].words[element] = el->words[0];
304 case 16: int_regfile[gpr].hwords[element] = el->hwords[0];
305 case 8 : int_regfile[gpr].bytes[element] = el->bytes[0];
306 }
307 }
308 ```
309
310 Example Vector-looped add operation implementation when elwidths are 64-bit:
311
312 ```
313 # vector-add RT, RA,RB using the "uint64_t" union member, "dwords"
314 for i in range(VL):
315 int_regfile[RT].dword[i] = int_regfile[RA].dword[i] + int_regfile[RB].dword[i]
316 ```
317
318 However if elwidth overrides are set to 16 for both source and destination:
319
320 ```
321 # vector-add RT, RA, RB using the "uint64_t" union member "hwords"
322 for i in range(VL):
323 int_regfile[RT].hwords[i] = int_regfile[RA].hwords[i] + int_regfile[RB].hwords[i]
324 ```
325
326 The most fundamental aspect here to understand is that the wrapping
327 into subsequent Scalar GPRs that occurs on larger-numbered elements
328 including and especially on smaller element widths is **deliberate
329 and intentional**. From this Canonical definition it should be clear
330 that sequential elements begin at the LSB end of any given underlying
331 Scalar GPR, progress to the MSB end, and then to the LSB end of the
332 *next numerically-larger Scalar GPR*. In the example above if VL=5
333 and RT=1 then the contents of GPR(1) and GPR(2) will be as follows.
334 For clarity in the table below:
335
336 * Both MSB0-ordered bitnumbering *and* LSB-ordered bitnumbering are shown
337 * The GPR-numbering is considered LSB0-ordered
338 * The Element-numbering (result0-result4) is LSB0-ordered
339 * Each of the results (result0-result4) are 16-bit
340 * "same" indicates "no change as a result of the Vectorised add"
341
342 ```
343 | MSB0: | 0:15 | 16:31 | 32:47 | 48:63 |
344 | LSB0: | 63:48 | 47:32 | 31:16 | 15:0 |
345 |--------|---------|---------|---------|---------|
346 | GPR(0) | same | same | same | same |
347 | GPR(1) | result3 | result2 | result1 | result0 |
348 | GPR(2) | same | same | same | result4 |
349 | GPR(3) | same | same | same | same |
350 | ... | ... | ... | ... | ... |
351 | ... | ... | ... | ... | ... |
352 ```
353
354 Note that the upper 48 bits of GPR(2) would **not** be modified due to
355 the example having VL=5. Thus on "wrapping" - sequential progression
356 from GPR(1) into GPR(2) - the 5th result modifies **only** the bottom
357 16 LSBs of GPR(1).
358
359 Hardware Architectural note: to avoid a Read-Modify-Write at the register
360 file it is strongly recommended to implement byte-level write-enable lines
361 exactly as has been implemented in DRAM ICs for many decades. Additionally
362 the predicate mask bit is advised to be associated with the element
363 operation and alongside the result ultimately passed to the register file.
364 When element-width is set to 64-bit the relevant predicate mask bit
365 may be repeated eight times and pull all eight write-port byte-level
366 lines HIGH. Clearly when element-width is set to 8-bit the relevant
367 predicate mask bit corresponds directly with one single byte-level
368 write-enable line. It is up to the Hardware Architect to then amortise
369 (merge) elements together into both PredicatedSIMD Pipelines as well
370 as simultaneous non-overlapping Register File writes, to achieve High
371 Performance designs. Overall it helps to think of the register files
372 as being much more akin to a byte-level-addressable SRAM.
373
374 If the 16-bit operation were to be followed up with a 32-bit Vectorised
375 Operation, the exact same contents would be viewed as follows:
376
377 ```
378 | MSB0: | 0:31 | 32:63 |
379 | LSB0: | 63:32 | 31:0 |
380 |--------|----------------------|----------------------|
381 | GPR(0) | same | same |
382 | GPR(1) | (result3 || result2) | (result1 || result0) |
383 | GPR(2) | same | (same || result4) |
384 | GPR(3) | same | same |
385 | ... | ... | ... |
386 | ... | ... | ... |
387 ```
388
389 In other words, this perspective really is no different from the situation
390 where the actual Register File is treated as an Industry-standard
391 byte-level-addressable Little-Endian-addressed SRAM. Note that
392 this perspective does **not** involve `MSR.LE` in any way shape or
393 form because `MSR.LE` is directly in control of the Memory-to-Register
394 byte-ordering. This section is exclusively about how to correctly perceive
395 Simple-V-Augmented **Register** Files.
396
397 **Comparative equivalent using VSR registers**
398
399 For a comparative data point the VSR Registers may be expressed in the
400 same fashion. The c code below is directly an expression of Figure 97 in
401 Power ISA Public v3.1 Book I Section 6.3 page 258, *after compensating
402 for MSB0 numbering in both bits and elements, adapting in full to LSB0
403 numbering, and obeying LE ordering*.
404
405 **Crucial to understanding why the subtraction from 1,3,7,15 is present is
406 because the Power ISA numbers VSX Registers elements also in MSB0 order**.
407 SVP64 very specifically numbers elements in **LSB0** order with the first
408 element (numbered zero) being at the bitwise-numbered **LSB** end of the
409 register, where VSX does the reverse: places the numerically-*highest*
410 (last-numbered) element at the LSB end of the register.
411
412
413 ```
414 #pragma pack
415 typedef union {
416 // these do NOT match their Power ISA VSX numbering directly, they are all reversed
417 // bytes[15] is actually VSR.byte[0] for example. if this convention is not
418 // followed then everything ends up in the wrong place
419 uint8_t bytes[16]; // elwidth 8, QTY 16 FIXED total
420 uint16_t hwords[8]; // elwidth 16, QTY 8 FIXED total
421 uint32_t words[4]; // elwidth 32, QTY 8 FIXED total
422 uint64_t dwords[2]; // elwidth 64, QTY 2 FIXED total
423 uint8_t actual_bytes[16]; // totals 128-bit
424 } el_reg_t;
425
426 elreg_t VSR_regfile[64];
427
428 static void check_num_elements(int elt, int width) {
429 switch (width) {
430 case 64: assert elt < 2;
431 case 32: assert elt < 4;
432 case 16: assert elt < 8;
433 case 8 : assert elt < 16;
434 }
435 }
436 void get_VSR_element(el_reg_t* el, int gpr, int elt, int width) {
437 check_num_elements(elt, width);
438 switch (width) {
439 case 64: el->dwords[0] = VSR_regfile[gpr].dwords[1-elt];
440 case 32: el->words[0] = VSR_regfile[gpr].words[3-elt];
441 case 16: el->hwords[0] = VSR_regfile[gpr].hwords[7-elt];
442 case 8 : el->bytes[0] = VSR_regfile[gpr].bytes[15-elt];
443 }
444 }
445 void set_VSR_element(el_reg_t* el, int gpr, int elt, int width) {
446 check_num_elements(elt, width);
447 switch (width) {
448 case 64: VSR_regfile[gpr].dwords[1-elt] = el->dwords[0];
449 case 32: VSR_regfile[gpr].words[3-elt] = el->words[0];
450 case 16: VSR_regfile[gpr].hwords[7-elt] = el->hwords[0];
451 case 8 : VSR_regfile[gpr].bytes[15-elt] = el->bytes[0];
452 }
453 }
454 ```
455
456 For VSR Registers one key difference is that the overlay of different
457 element widths is clearly a *bounded static quantity*, whereas for
458 Simple-V the elements are unrestrained and permitted to flow into
459 *successive underlying Scalar registers*. This difference is absolutely
460 critical to a full understanding of the entire Simple-V paradigm and
461 why element-ordering, bit-numbering *and register numbering* are all so
462 strictly defined.
463
464 Implementations are not permitted to violate the Canonical
465 definition. Software will be critically relying on the wrapped (overflow)
466 behaviour inherently implied by the unbounded variable-length c arrays.
467
468 Illustrating the exact same loop with the exact same effect as achieved
469 by Simple-V we are first forced to create wrapper functions, to cater
470 for the fact that VSR register elements are static bounded:
471
472 ```
473 int calc_VSR_reg_offs(int elt, int width) {
474 switch (width) {
475 case 64: return floor(elt / 2);
476 case 32: return floor(elt / 4);
477 case 16: return floor(elt / 8);
478 case 8 : return floor(elt / 16);
479 }
480 }
481 int calc_VSR_elt_offs(int elt, int width) {
482 switch (width) {
483 case 64: return (elt % 2);
484 case 32: return (elt % 4);
485 case 16: return (elt % 8);
486 case 8 : return (elt % 16);
487 }
488 }
489 void _set_VSR_element(el_reg_t* el, int gpr, int elt, int width) {
490 int new_elt = calc_VSR_elt_offs(elt, width);
491 int new_reg = calc_VSR_reg_offs(elt, width);
492 set_VSR_element(el, gpr+new_reg, new_elt, width);
493 }
494 ```
495
496 And finally use these functions:
497
498 ```
499 # VSX-add RT, RA, RB using the "uint64_t" union member "hwords"
500 for i in range(VL):
501 el_reg_t result, ra, rb;
502 _get_VSR_element(&ra, RA, i, 16);
503 _get_VSR_element(&rb, RB, i, 16);
504 result.hwords[0] = ra.hwords[0] + rb.hwords[0]; // use array 0 elements
505 _set_VSR_element(&result, RT, i, 16);
506
507 ```
508
509 ## Scalar Identity Behaviour
510
511 SVP64 is designed so that when the prefix is all zeros, and VL=1, no
512 effect or influence occurs (no augmentation) such that all standard Power
513 ISA v3.0/v3.1 instructions covered by the prefix are "unaltered". This
514 is termed `scalar identity behaviour` (based on the mathematical
515 definition for "identity", as in, "identity matrix" or better "identity
516 transformation").
517
518 Note that this is completely different from when VL=0. VL=0 turns all
519 operations under its influence into `nops` (regardless of the prefix)
520 whereas when VL=1 and the SV prefix is all zeros, the operation simply
521 acts as if SV had not been applied at all to the instruction (an
522 "identity transformation").
523
524 The fact that `VL` is dynamic and can be set to any value at runtime
525 based on program conditions and behaviour means very specifically that
526 `scalar identity behaviour` is **not** a redundant encoding. If the only
527 means by which VL could be set was by way of static-compiled immediates
528 then this assertion would be false. VL should not be confused with
529 MAXVL when understanding this key aspect of SimpleV.
530
531 ## Register Naming and size
532
533 As indicated above SV Registers are simply the GPR, FPR and CR register
534 files extended linearly to larger sizes; SV Vectorisation iterates
535 sequentially through these registers (LSB0 sequential ordering from 0
536 to VL-1).
537
538 Where the integer regfile in standard scalar Power ISA v3.0B/v3.1B is
539 r0 to r31, SV extends this as r0 to r127. Likewise FP registers are
540 extended to 128 (fp0 to fp127), and CR Fields are extended to 128 entries,
541 CR0 thru CR127.
542
543 The names of the registers therefore reflects a simple linear extension
544 of the Power ISA v3.0B / v3.1B register naming, and in hardware this
545 would be reflected by a linear increase in the size of the underlying
546 SRAM used for the regfiles.
547
548 Note: when an EXTRA field (defined below) is zero, SV is deliberately
549 designed so that the register fields are identical to as if SV was not in
550 effect i.e. under these circumstances (EXTRA=0) the register field names
551 RA, RB etc. are interpreted and treated as v3.0B / v3.1B scalar registers.
552 This is part of `scalar identity behaviour` described above.
553
554 **Condition Register(s)**
555
556 The Scalar Power ISA Condition Register is a 64 bit register where
557 the top 32 MSBs (numbered 0:31 in MSB0 numbering) are not used.
558 This convention is *preserved* in SVP64 and an additional 15 Condition
559 Registers provided in order to store the new CR Fields, CR8-CR15,
560 CR16-CR23 etc. sequentially. The top 32 MSBs in each new SVP64 Condition
561 Register are *also* not used: only the bottom 32 bits (numbered 32:63
562 in MSB0 numbering).
563
564 *Programmer's note: using `sv.mfcr` without element-width overrides
565 to take into account the fact that the top 32 MSBs are zero and thus
566 effectively doubling the number of GPR registers required to hold all 128
567 CR Fields would seem the only option because a source elwidth override
568 to 32-bit would take only the bottom 16 LSBs of the Condition Register
569 and set the top 16 LSBs to zeros. However in this case it
570 is possible to use destination element-width overrides (for `sv.mfcr`.
571 source overrides would be used on the GPR of `sv.mtocrf`), whereupon
572 truncation of the 64-bit Condition Register(s) occurs, throwing away
573 the zeros and storing the remaining (valid, desired) 32-bit values
574 sequentially into (LSB0-convention) lower-numbered and upper-numbered
575 halves of GPRs respectively. The programmer is expected to be aware
576 however that the full width of the entire 64-bit Condition Register
577 is considered to be "an element". This is **not** like any other
578 Condition-Register instructions because all other CR instructions,
579 on closer investigation, will be observed to all be CR-bit or CR-Field
580 related. Thus a `VL` of 16 must be used*
581
582 **Condition Register Fields as Predicate Masks**
583
584 Condition Register Fields perform an additional duty in Simple-V: they are
585 used for Predicate Masks. ARM's Scalar Instruction Set calls single-bit
586 predication "Conditional Execution", and utilises Condition Codes for
587 exactly this purpose to solve the problem caused by Branch Speculation.
588 In a Vector ISA context the concept of Predication is naturally extended
589 from single-bit to multi-bit, and the (well-known) benefits become all the
590 more critical given that parallel branches in Vector ISAs are impossible
591 (even a Vector ISA can only have Scalar branches).
592
593 However the Scalar Power ISA does not have Conditional Execution (for
594 which, if it had ever been considered, Condition Register bits would be
595 a perfect natural fit). Thus, when adding Predication using CR Fields
596 via Simple-V it becomes a somewhat disruptive addition to the Power ISA.
597
598 To ameliorate this situation, particularly for pre-existing Hardware
599 designs implementing up to Scalar Power ISA v3.1, some rules are set that
600 allow those pre-existing designs not to require heavy modification to
601 their existing Scalar pipelines. These rules effectively allow Hardware
602 Architects to add the additional CR Fields CR8 to CR127 as if they were
603 an **entirely separate register file**.
604
605 * any instruction involving more than 1 source 1 destination
606 where one of the operands is a Condition Register is prohibited from
607 using registers from both the CR0-7 group and the CR8-127 group at
608 the same time.
609 * any instruction involving 1 source 1 destination where either the
610 source or the destination is a Condition Register is prohibited
611 from setting CR0-7 as a Vector.
612 * prohibitions are required to be enforced by raising Illegal Instruction
613 Traps
614
615 Examples of permitted instructions:
616
617 ```
618 sv.crand *cr8.eq, *cr16.le, *cr40.so # all CR8-CR127
619 sv.mfcr cr5, *cr40 # only one source (CR40) copied to CR5
620 sv.mfcr *cr16, cr40 # Vector-Splat CR40 onto CR16,17,18...
621 ```
622
623 Examples of prohibited instructions:
624
625 ```
626 sv.mfcr *cr0, cr40 # Vector-Splat onto CR0,1,2
627 sv.crand cr7, cr9, cr10 # crosses over between CR0-7 and CR8-127
628 ```
629
630 ## Future expansion.
631
632 With the way that EXTRA fields are defined and applied to register
633 fields, future versions of SV may involve 256 or greater registers
634 in some way as long as the reputation of Power ISA for full backwards
635 binary interoperability is preserved. Backwards binary compatibility
636 may be achieved with a PCR bit (Program Compatibility Register) or an
637 MSR bit analogous to SF. Further discussion is out of scope for this
638 version of SVP64.
639
640 Additionally, a future variant of SVP64 will be applied to the Scalar
641 (Quad-precision and 128-bit) VSX instructions. Element-width overrides are
642 an opportunity to expand a future version of the Power ISA to 256-bit,
643 512-bit and 1024-bit operations, as well as doubling or quadrupling the
644 number of VSX registers to 128 or 256. Again further discussion is out
645 of scope for this version of SVP64.
646
647 --------
648
649 \newpage{}
650
651 ## SVP64 Remapped Encoding (`RM[0:23]`)
652
653 In the SVP64 Vector Prefix spaces, the 24 bits 8-31 are termed `RM`. Bits
654 32-37 are the Primary Opcode of the Suffix "Defined Word". 38-63 are the
655 remainder of the Defined Word. Note that the new EXT232-263 SVP64 area
656 it is obviously mandatory that bit 32 is required to be set to 1.
657
658 | 0-5 | 6 | 7 | 8-31 | 32-37 | 38-64 |Description |
659 |-----|---|---|----------|--------|----------|-----------------------|
660 | PO | 0 | 1 | RM[0:23] | 1nnnnn | xxxxxxxx | SVP64:EXT232-263 |
661 | PO | 1 | 1 | RM[0:23] | nnnnnn | xxxxxxxx | SVP64:EXT000-063 |
662
663 It is important to note that unlike EXT1xx 64-bit prefixed instructions
664 there is insufficient space in `RM` to provide identification of
665 any SVP64 Fields without first partially decoding the 32-bit suffix.
666 Similar to the "Forms" (X-Form, D-Form) the `RM` format is individually
667 associated with every instruction. However this still does not adversely
668 affect Multi-Issue Decoding because the identification of the *length*
669 of anything in the 64-bit space has been kept brutally simple (EXT009),
670 and further decoding of any number of 64-bit Encodings in parallel at
671 that point is fully independent.
672
673 Extreme caution and care must be taken when extending SVP64
674 in future, to not create unnecessary relationships between prefix and
675 suffix that could complicate decoding, adding latency.
676
677 ## Common RM fields
678
679 The following fields are common to all Remapped Encodings:
680
681 | Field Name | Field bits | Description |
682 |------------|------------|----------------------------------------|
683 | MASKMODE | `0` | Execution (predication) Mask Kind |
684 | MASK | `1:3` | Execution Mask |
685 | SUBVL | `8:9` | Sub-vector length |
686
687 The following fields are optional or encoded differently depending
688 on context after decoding of the Scalar suffix:
689
690 | Field Name | Field bits | Description |
691 |------------|------------|----------------------------------------|
692 | ELWIDTH | `4:5` | Element Width |
693 | ELWIDTH_SRC | `6:7` | Element Width for Source |
694 | EXTRA | `10:18` | Register Extra encoding |
695 | MODE | `19:23` | changes Vector behaviour |
696
697 * MODE changes the behaviour of the SV operation (result saturation,
698 mapreduce)
699 * SUBVL groups elements together into vec2, vec3, vec4 for use in 3D
700 and Audio/Video DSP work
701 * ELWIDTH and ELWIDTH_SRC overrides the instruction's destination and
702 source operand width
703 * MASK (and MASK_SRC) and MASKMODE provide predication (two types of
704 sources: scalar INT and Vector CR).
705 * Bits 10 to 18 (EXTRA) are further decoded depending on the RM category
706 for the instruction, which is determined only by decoding the Scalar 32
707 bit suffix.
708
709 Similar to Power ISA `X-Form` etc. EXTRA bits are given designations,
710 such as `RM-1P-3S1D` which indicates for this example that the operation
711 is to be single-predicated and that there are 3 source operand EXTRA
712 tags and one destination operand tag.
713
714 Note that if ELWIDTH != ELWIDTH_SRC this may result in reduced performance
715 or increased latency in some implementations due to lane-crossing.
716
717 ## Mode
718
719 Mode is an augmentation of SV behaviour. Different types of instructions
720 have different needs, similar to Power ISA v3.1 64 bit prefix 8LS and MTRR
721 formats apply to different instruction types. Modes include Reduction,
722 Iteration, arithmetic saturation, and Fail-First. More specific details
723 in each section and in the [[svp64/appendix]]
724
725 * For condition register operations see [[sv/cr_ops]]
726 * For LD/ST Modes, see [[sv/ldst]].
727 * For Branch modes, see [[sv/branches]]
728 * For arithmetic and logical, see [[sv/normal]]
729
730 ## ELWIDTH Encoding
731
732 Default behaviour is set to 0b00 so that zeros follow the convention
733 of `scalar identity behaviour`. In this case it means that elwidth
734 overrides are not applicable. Thus if a 32 bit instruction operates
735 on 32 bit, `elwidth=0b00` specifies that this behaviour is unmodified.
736 Likewise when a processor is switched from 64 bit to 32 bit mode,
737 `elwidth=0b00` states that, again, the behaviour is not to be modified.
738
739 Only when elwidth is nonzero is the element width overridden to the
740 explicitly required value.
741
742 ### Elwidth for Integers:
743
744 | Value | Mnemonic | Description |
745 |-------|----------------|------------------------------------|
746 | 00 | DEFAULT | default behaviour for operation |
747 | 01 | `ELWIDTH=w` | Word: 32-bit integer |
748 | 10 | `ELWIDTH=h` | Halfword: 16-bit integer |
749 | 11 | `ELWIDTH=b` | Byte: 8-bit integer |
750
751 This encoding is chosen such that the byte width may be computed as
752 `8<<(3-ew)`
753
754 ### Elwidth for FP Registers:
755
756 | Value | Mnemonic | Description |
757 |-------|----------------|------------------------------------|
758 | 00 | DEFAULT | default behaviour for FP operation |
759 | 01 | `ELWIDTH=f32` | 32-bit IEEE 754 Single floating-point |
760 | 10 | `ELWIDTH=f16` | 16-bit IEEE 754 Half floating-point |
761 | 11 | `ELWIDTH=bf16` | Reserved for `bf16` |
762
763 Note:
764 [`bf16`](https://en.wikipedia.org/wiki/Bfloat16_floating-point_format)
765 is reserved for a future implementation of SV
766
767 Note that any IEEE754 FP operation in Power ISA ending in "s" (`fadds`)
768 shall perform its operation at **half** the ELWIDTH then padded back out
769 to ELWIDTH. `sv.fadds/ew=f32` shall perform an IEEE754 FP16 operation
770 that is then "padded" to fill out to an IEEE754 FP32. When ELWIDTH=DEFAULT
771 clearly the behaviour of `sv.fadds` is performed at 32-bit accuracy
772 then padded back out to fit in IEEE754 FP64, exactly as for Scalar
773 v3.0B "single" FP. Any FP operation ending in "s" where ELWIDTH=f16 or
774 ELWIDTH=bf16 is reserved and must raise an illegal instruction (IEEE754
775 FP8 or BF8 are not defined).
776
777 ### Elwidth for CRs (no meaning)
778
779 Element-width overrides for CR Fields has no meaning. The bits
780 are therefore used for other purposes, or when Rc=1, the Elwidth
781 applies to the result being tested (a GPR or FPR), but not to the
782 Vector of CR Fields.
783
784 ## SUBVL Encoding
785
786 The default for SUBVL is 1 and its encoding is 0b00 to indicate that
787 SUBVL is effectively disabled (a SUBVL for-loop of only one element). this
788 lines up in combination with all other "default is all zeros" behaviour.
789
790 | Value | Mnemonic | Subvec | Description |
791 |-------|-----------|---------|------------------------|
792 | 00 | `SUBVL=1` | single | Sub-vector length of 1 |
793 | 01 | `SUBVL=2` | vec2 | Sub-vector length of 2 |
794 | 10 | `SUBVL=3` | vec3 | Sub-vector length of 3 |
795 | 11 | `SUBVL=4` | vec4 | Sub-vector length of 4 |
796
797 The SUBVL encoding value may be thought of as an inclusive range of a
798 sub-vector. SUBVL=2 represents a vec2, its encoding is 0b01, therefore
799 this may be considered to be elements 0b00 to 0b01 inclusive.
800
801 ## MASK/MASK_SRC & MASKMODE Encoding
802
803 One bit (`MASKMODE`) indicates the mode: CR or Int predication. The two
804 types may not be mixed.
805
806 Special note: to disable predication this field must be set to zero in
807 combination with Integer Predication also being set to 0b000. this has the
808 effect of enabling "all 1s" in the predicate mask, which is equivalent to
809 "not having any predication at all".
810
811 `MASKMODE` may be set to one of 2 values:
812
813 | Value | Description |
814 |-----------|------------------------------------------------------|
815 | 0 | MASK/MASK_SRC are encoded using Integer Predication |
816 | 1 | MASK/MASK_SRC are encoded using CR-based Predication |
817
818 Integer Twin predication has a second set of 3 bits that uses the same
819 encoding thus allowing either the same register (r3, r10 or r31) to be
820 used for both src and dest, or different regs (one for src, one for dest).
821
822 Likewise CR based twin predication has a second set of 3 bits, allowing
823 a different test to be applied.
824
825 Note that it is assumed that Predicate Masks (whether INT or CR) are
826 read *before* the operations proceed. In practice (for CR Fields)
827 this creates an unnecessary block on parallelism. Therefore, it is up
828 to the programmer to ensure that the CR fields used as Predicate Masks
829 are not being written to by any parallel Vector Loop. Doing so results
830 in **UNDEFINED** behaviour, according to the definition outlined in the
831 Power ISA v3.0B Specification.
832
833 Hardware Implementations are therefore free and clear to delay reading
834 of individual CR fields until the actual predicated element operation
835 needs to take place, safe in the knowledge that no programmer will have
836 issued a Vector Instruction where previous elements could have overwritten
837 (destroyed) not-yet-executed CR-Predicated element operations.
838
839 ### Integer Predication (MASKMODE=0)
840
841 When the predicate mode bit is zero the 3 bits are interpreted as below.
842 Twin predication has an identical 3 bit field similarly encoded.
843
844 `MASK` and `MASK_SRC` may be set to one of 8 values, to provide the
845 following meaning:
846
847 | Value | Mnemonic | Element `i` enabled if: |
848 |-------|----------|------------------------------|
849 | 000 | ALWAYS | predicate effectively all 1s |
850 | 001 | 1 << R3 | `i == R3` |
851 | 010 | R3 | `R3 & (1 << i)` is non-zero |
852 | 011 | ~R3 | `R3 & (1 << i)` is zero |
853 | 100 | R10 | `R10 & (1 << i)` is non-zero |
854 | 101 | ~R10 | `R10 & (1 << i)` is zero |
855 | 110 | R30 | `R30 & (1 << i)` is non-zero |
856 | 111 | ~R30 | `R30 & (1 << i)` is zero |
857
858 r10 and r30 are at the high end of temporary and unused registers,
859 so as not to interfere with register allocation from ABIs.
860
861 ### CR-based Predication (MASKMODE=1)
862
863 When the predicate mode bit is one the 3 bits are interpreted as below.
864 Twin predication has an identical 3 bit field similarly encoded.
865
866 `MASK` and `MASK_SRC` may be set to one of 8 values, to provide the
867 following meaning:
868
869 | Value | Mnemonic | Element `i` is enabled if |
870 |-------|----------|--------------------------|
871 | 000 | lt | `CR[offs+i].LT` is set |
872 | 001 | nl/ge | `CR[offs+i].LT` is clear |
873 | 010 | gt | `CR[offs+i].GT` is set |
874 | 011 | ng/le | `CR[offs+i].GT` is clear |
875 | 100 | eq | `CR[offs+i].EQ` is set |
876 | 101 | ne | `CR[offs+i].EQ` is clear |
877 | 110 | so/un | `CR[offs+i].FU` is set |
878 | 111 | ns/nu | `CR[offs+i].FU` is clear |
879
880 `offs` is defined as CR32 (4x8) so as to mesh cleanly with Vectorised
881 Rc=1 operations (see below). Rc=1 operations start from CR8 (TBD).
882
883 The CR Predicates chosen must start on a boundary that Vectorised CR
884 operations can access cleanly, in full. With EXTRA2 restricting starting
885 points to multiples of 8 (CR0, CR8, CR16...) both Vectorised Rc=1 and
886 CR Predicate Masks have to be adapted to fit on these boundaries as well.
887
888 ## Extra Remapped Encoding <a name="extra_remap"> </a>
889
890 Shows all instruction-specific fields in the Remapped Encoding
891 `RM[10:18]` for all instruction variants. Note that due to the very
892 tight space, the encoding mode is *not* included in the prefix itself.
893 The mode is "applied", similar to Power ISA "Forms" (X-Form, D-Form)
894 on a per-instruction basis, and, like "Forms" are given a designation
895 (below) of the form `RM-nP-nSnD`. The full list of which instructions
896 use which remaps is here [[opcode_regs_deduped]].
897
898 **Please note the following**:
899
900 ```
901 Machine-readable CSV files have been autogenerated which will make the
902 task of creating SV-aware ISA decoders, documentation, assembler tools
903 compiler tools Simulators documentation all aspects of SVP64 easier
904 and less prone to mistakes. Please avoid manual re-creation of
905 information from the written specification wording in this chapter,
906 and use the CSV files or use the Canonical tool which creates the CSV
907 files, named sv_analysis.py. The information contained within
908 sv_analysis.py is considered to be part of this Specification, even
909 encoded as it is in python3.
910 ```
911
912
913 The mappings are part of the SVP64 Specification in exactly the same
914 way as X-Form, D-Form. New Scalar instructions added to the Power ISA
915 will need a corresponding SVP64 Mapping, which can be derived by-rote
916 from examining the Register "Profile" of the instruction.
917
918 There are two categories: Single and Twin Predication. Due to space
919 considerations further subdivision of Single Predication is based on
920 whether the number of src operands is 2 or 3. With only 9 bits available
921 some compromises have to be made.
922
923 * `RM-1P-3S1D` Single Predication dest/src1/2/3, applies to 4-operand
924 instructions (fmadd, isel, madd).
925 * `RM-1P-2S1D` Single Predication dest/src1/2 applies to 3-operand
926 instructions (src1 src2 dest)
927 * `RM-2P-1S1D` Twin Predication (src=1, dest=1)
928 * `RM-2P-2S1D` Twin Predication (src=2, dest=1) primarily for LDST (Indexed)
929 * `RM-2P-1S2D` Twin Predication (src=1, dest=2) primarily for LDST Update
930
931 ### RM-1P-3S1D
932
933 | Field Name | Field bits | Description |
934 |------------|------------|----------------------------------------|
935 | Rdest\_EXTRA2 | `10:11` | extends Rdest (R\*\_EXTRA2 Encoding) |
936 | Rsrc1\_EXTRA2 | `12:13` | extends Rsrc1 (R\*\_EXTRA2 Encoding) |
937 | Rsrc2\_EXTRA2 | `14:15` | extends Rsrc2 (R\*\_EXTRA2 Encoding) |
938 | Rsrc3\_EXTRA2 | `16:17` | extends Rsrc3 (R\*\_EXTRA2 Encoding) |
939 | EXTRA2_MODE | `18` | used by `divmod2du` and `maddedu` for RS |
940
941 These are for 3 operand in and either 1 or 2 out instructions.
942 3-in 1-out includes `madd RT,RA,RB,RC`. (DRAFT) instructions
943 such as `maddedu` have an implicit second destination, RS, the
944 selection of which is determined by bit 18.
945
946 ### RM-1P-2S1D
947
948 | Field Name | Field bits | Description |
949 |------------|------------|-------------------------------------------|
950 | Rdest\_EXTRA3 | `10:12` | extends Rdest |
951 | Rsrc1\_EXTRA3 | `13:15` | extends Rsrc1 |
952 | Rsrc2\_EXTRA3 | `16:18` | extends Rsrc3 |
953
954 These are for 2 operand 1 dest instructions, such as `add RT, RA,
955 RB`. However also included are unusual instructions with an implicit
956 dest that is identical to its src reg, such as `rlwinmi`.
957
958 Normally, with instructions such as `rlwinmi`, the scalar v3.0B ISA would
959 not have sufficient bit fields to allow an alternative destination.
960 With SV however this becomes possible. Therefore, the fact that the
961 dest is implicitly also a src should not mislead: due to the *prefix*
962 they are different SV regs.
963
964 * `rlwimi RA, RS, ...`
965 * Rsrc1_EXTRA3 applies to RS as the first src
966 * Rsrc2_EXTRA3 applies to RA as the secomd src
967 * Rdest_EXTRA3 applies to RA to create an **independent** dest.
968
969 With the addition of the EXTRA bits, the three registers
970 each may be *independently* made vector or scalar, and be independently
971 augmented to 7 bits in length.
972
973 ### RM-2P-1S1D/2S
974
975 | Field Name | Field bits | Description |
976 |------------|------------|----------------------------|
977 | Rdest_EXTRA3 | `10:12` | extends Rdest |
978 | Rsrc1_EXTRA3 | `13:15` | extends Rsrc1 |
979 | MASK_SRC | `16:18` | Execution Mask for Source |
980
981 `RM-2P-2S` is for `stw` etc. and is Rsrc1 Rsrc2.
982
983 | Field Name | Field bits | Description |
984 |------------|------------|----------------------------|
985 | Rsrc1_EXTRA3 | `10:12` | extends Rsrc1 |
986 | Rsrc2_EXTRA3 | `13:15` | extends Rsrc2 |
987 | MASK_SRC | `16:18` | Execution Mask for Source |
988
989 ### RM-1P-2S1D
990
991 single-predicate, three registers (2 read, 1 write)
992
993 | Field Name | Field bits | Description |
994 |------------|------------|----------------------------|
995 | Rdest_EXTRA3 | `10:12` | extends Rdest |
996 | Rsrc1_EXTRA3 | `13:15` | extends Rsrc1 |
997 | Rsrc2_EXTRA3 | `16:18` | extends Rsrc2 |
998
999 ### RM-2P-2S1D/1S2D/3S
1000
1001 The primary purpose for this encoding is for Twin Predication on LOAD
1002 and STORE operations. see [[sv/ldst]] for detailed anslysis.
1003
1004 **RM-2P-2S1D:**
1005
1006 | Field Name | Field bits | Description |
1007 |------------|------------|----------------------------|
1008 | Rdest_EXTRA2 | `10:11` | extends Rdest (R\*\_EXTRA2 Encoding) |
1009 | Rsrc1_EXTRA2 | `12:13` | extends Rsrc1 (R\*\_EXTRA2 Encoding) |
1010 | Rsrc2_EXTRA2 | `14:15` | extends Rsrc2 (R\*\_EXTRA2 Encoding) |
1011 | MASK_SRC | `16:18` | Execution Mask for Source |
1012
1013 **RM-2P-1S2D:**
1014
1015 For RM-2P-1S2D dest2 is in bits 14:15
1016
1017 | Field Name | Field bits | Description |
1018 |------------|------------|----------------------------|
1019 | Rdest_EXTRA2 | `10:11` | extends Rdest (R\*\_EXTRA2 Encoding) |
1020 | Rsrc1_EXTRA2 | `12:13` | extends Rsrc1 (R\*\_EXTRA2 Encoding) |
1021 | Rdest2_EXTRA2 | `14:15` | extends Rdest22 (R\*\_EXTRA2 Encoding) |
1022 | MASK_SRC | `16:18` | Execution Mask for Source |
1023
1024 **RM-2P-3S:**
1025
1026 Also that for RM-2P-3S (to cover `stdx` etc.) the names are switched to 3 src:
1027 Rsrc1_EXTRA2, Rsrc2_EXTRA2, Rsrc3_EXTRA2.
1028
1029 | Field Name | Field bits | Description |
1030 |------------|------------|----------------------------|
1031 | Rsrc1_EXTRA2 | `10:11` | extends Rsrc1 (R\*\_EXTRA2 Encoding) |
1032 | Rsrc2_EXTRA2 | `12:13` | extends Rsrc2 (R\*\_EXTRA2 Encoding) |
1033 | Rsrc3_EXTRA2 | `14:15` | extends Rsrc3 (R\*\_EXTRA2 Encoding) |
1034 | MASK_SRC | `16:18` | Execution Mask for Source |
1035
1036 Note also that LD with update indexed, which takes 2 src and
1037 creates 2 dest registers (e.g. `lhaux RT,RA,RB`), does not have room
1038 for 4 registers and also Twin Predication. Therefore these are treated as
1039 RM-2P-2S1D and the src spec for RA is also used for the same RA as a dest.
1040
1041 Note that if ELWIDTH != ELWIDTH_SRC this may result in reduced performance
1042 or increased latency in some implementations due to lane-crossing.
1043
1044 ## R\*\_EXTRA2/3
1045
1046 EXTRA is the means by which two things are achieved:
1047
1048 1. Registers are marked as either Vector *or Scalar*
1049 2. Register field numbers (limited typically to 5 bit)
1050 are extended in range, both for Scalar and Vector.
1051
1052 The register files are therefore extended:
1053
1054 * INT (GPR) is extended from r0-31 to r0-127
1055 * FP (FPR) is extended from fp0-32 to fp0-fp127
1056 * CR Fields are extended from CR0-7 to CR0-127
1057
1058 However due to pressure in `RM.EXTRA` not all these registers
1059 are accessible by all instructions, particularly those with
1060 a large number of operands (`madd`, `isel`).
1061
1062 In the following tables register numbers are constructed from the
1063 standard v3.0B / v3.1B 32 bit register field (RA, FRA) and the EXTRA2 or
1064 EXTRA3 field from the SV Prefix, determined by the specific RM-xx-yyyy
1065 designation for a given instruction. The prefixing is arranged so that
1066 interoperability between prefixing and nonprefixing of scalar registers
1067 is direct and convenient (when the EXTRA field is all zeros).
1068
1069 A pseudocode algorithm explains the relationship, for INT/FP (see
1070 [[svp64/appendix]] for CRs)
1071
1072 ```
1073 if extra3_mode:
1074 spec = EXTRA3
1075 else:
1076 spec = EXTRA2 << 1 # same as EXTRA3, shifted
1077 if spec[0]: # vector
1078 return (RA << 2) | spec[1:2]
1079 else: # scalar
1080 return (spec[1:2] << 5) | RA
1081 ```
1082
1083 Future versions may extend to 256 by shifting Vector numbering up.
1084 Scalar will not be altered.
1085
1086 Note that in some cases the range of starting points for Vectors
1087 is limited.
1088
1089 ### INT/FP EXTRA3
1090
1091 If EXTRA3 is zero, maps to "scalar identity" (scalar Power ISA field
1092 naming).
1093
1094 Fields are as follows:
1095
1096 * Value: R_EXTRA3
1097 * Mode: register is tagged as scalar or vector
1098 * Range/Inc: the range of registers accessible from this EXTRA
1099 encoding, and the "increment" (accessibility). "/4" means
1100 that this EXTRA encoding may only give access (starting point)
1101 every 4th register.
1102 * MSB..LSB: the bit field showing how the register opcode field
1103 combines with EXTRA to give (extend) the register number (GPR)
1104
1105 Encoding shown in LSB0: MSB down to LSB (MSB 6..0 LSB)
1106
1107 | Value | Mode | Range/Inc | 6..0 |
1108 |-----------|-------|---------------|---------------------|
1109 | 000 | Scalar | `r0-r31`/1 | `0b00 RA` |
1110 | 001 | Scalar | `r32-r63`/1 | `0b01 RA` |
1111 | 010 | Scalar | `r64-r95`/1 | `0b10 RA` |
1112 | 011 | Scalar | `r96-r127`/1 | `0b11 RA` |
1113 | 100 | Vector | `r0-r124`/4 | `RA 0b00` |
1114 | 101 | Vector | `r1-r125`/4 | `RA 0b01` |
1115 | 110 | Vector | `r2-r126`/4 | `RA 0b10` |
1116 | 111 | Vector | `r3-r127`/4 | `RA 0b11` |
1117
1118 ### INT/FP EXTRA2
1119
1120 If EXTRA2 is zero will map to "scalar identity behaviour" i.e Scalar
1121 Power ISA register naming:
1122
1123 Encoding shown in LSB0: MSB down to LSB (MSB 6..0 LSB)
1124
1125 | Value | Mode | Range/inc | 6..0 |
1126 |----------|-------|---------------|-----------|
1127 | 00 | Scalar | `r0-r31`/1 | `0b00 RA` |
1128 | 01 | Scalar | `r32-r63`/1 | `0b01 RA` |
1129 | 10 | Vector | `r0-r124`/4 | `RA 0b00` |
1130 | 11 | Vector | `r2-r126`/4 | `RA 0b10` |
1131
1132 **Note that unlike in EXTRA3, in EXTRA2**:
1133
1134 * the GPR Vectors may only start from
1135 `r0, r2, r4, r6, r8` and likewise FPR Vectors.
1136 * the GPR Scalars may only go from `r0, r1, r2.. r63` and likewise FPR Scalars.
1137
1138 as there is insufficient bits to cover the full range.
1139
1140 ### CR Field EXTRA3
1141
1142 CR Field encoding is essentially the same but made more complex due to CRs
1143 being bit-based, because the application of SVP64 element-numbering applies
1144 to the CR *Field* numbering not the CR register *bit* numbering.
1145 Note that Vectors may only start from `CR0, CR4, CR8, CR12, CR16, CR20`...
1146 and Scalars may only go from `CR0, CR1, ... CR31`
1147
1148 Encoding shown in LSB0: MSB down to LSB (MSB 8..5 4..2 1..0 LSB),
1149 BA ranges are in MSB0.
1150
1151 For a 5-bit operand (BA, BB, BT):
1152
1153 | Value | Mode | Range/Inc | 8..5 | 4..2 | 1..0 |
1154 |-------|------|---------------|-----------| --------|---------|
1155 | 000 | Scalar | `CR0-CR7`/1 | 0b0000 | BA[0:2] | BA[3:4] |
1156 | 001 | Scalar | `CR8-CR15`/1 | 0b0001 | BA[0:2] | BA[3:4] |
1157 | 010 | Scalar | `CR16-CR23`/1 | 0b0010 | BA[0:2] | BA[3:4] |
1158 | 011 | Scalar | `CR24-CR31`/1 | 0b0011 | BA[0:2] | BA[3:4] |
1159 | 100 | Vector | `CR0-CR112`/16 | BA[0:2] 0 | 0b000 | BA[3:4] |
1160 | 101 | Vector | `CR4-CR116`/16 | BA[0:2] 0 | 0b100 | BA[3:4] |
1161 | 110 | Vector | `CR8-CR120`/16 | BA[0:2] 1 | 0b000 | BA[3:4] |
1162 | 111 | Vector | `CR12-CR124`/16 | BA[0:2] 1 | 0b100 | BA[3:4] |
1163
1164 For a 3-bit operand (e.g. BFA):
1165
1166 | Value | Mode | Range/Inc | 6..3 | 2..0 |
1167 |-------|------|---------------|-----------| --------|
1168 | 000 | Scalar | `CR0-CR7`/1 | 0b0000 | BFA |
1169 | 001 | Scalar | `CR8-CR15`/1 | 0b0001 | BFA |
1170 | 010 | Scalar | `CR16-CR23`/1 | 0b0010 | BFA |
1171 | 011 | Scalar | `CR24-CR31`/1 | 0b0011 | BFA |
1172 | 100 | Vector | `CR0-CR112`/16 | BFA 0 | 0b000 |
1173 | 101 | Vector | `CR4-CR116`/16 | BFA 0 | 0b100 |
1174 | 110 | Vector | `CR8-CR120`/16 | BFA 1 | 0b000 |
1175 | 111 | Vector | `CR12-CR124`/16 | BFA 1 | 0b100 |
1176
1177 ### CR EXTRA2
1178
1179 CR encoding is essentially the same but made more complex due to CRs
1180 being bit-based, because the application of SVP64 element-numbering applies
1181 to the CR *Field* numbering not the CR register *bit* numbering.
1182 Note that Vectors may only start from CR0, CR8, CR16, CR24, CR32...
1183
1184 Encoding shown in LSB0: MSB down to LSB (MSB 8..5 4..2 1..0 LSB),
1185 BA ranges are in MSB0.
1186
1187 For a 5-bit operand (BA, BB, BC):
1188
1189 | Value | Mode | Range/Inc | 8..5 | 4..2 | 1..0 |
1190 |-------|--------|----------------|---------|---------|---------|
1191 | 00 | Scalar | `CR0-CR7`/1 | 0b0000 | BA[0:2] | BA[3:4] |
1192 | 01 | Scalar | `CR8-CR15`/1 | 0b0001 | BA[0:2] | BA[3:4] |
1193 | 10 | Vector | `CR0-CR112`/16 | BA[0:2] 0 | 0b000 | BA[3:4] |
1194 | 11 | Vector | `CR8-CR120`/16 | BA[0:2] 1 | 0b000 | BA[3:4] |
1195
1196 For a 3-bit operand (e.g. BFA):
1197
1198 | Value | Mode | Range/Inc | 6..3 | 2..0 |
1199 |-------|------|---------------|-----------| --------|
1200 | 00 | Scalar | `CR0-CR7`/1 | 0b0000 | BFA |
1201 | 01 | Scalar | `CR8-CR15`/1 | 0b0001 | BFA |
1202 | 10 | Vector | `CR0-CR112`/16 | BFA 0 | 0b000 |
1203 | 11 | Vector | `CR8-CR120`/16 | BFA 1 | 0b000 |
1204
1205 ## Appendix
1206
1207 Now at its own page: [[svp64/appendix]]
1208
1209 --------
1210
1211 [[!tag standards]]
1212
1213 \newpage{}